:root{
  --white-text: #F8FCFF;
  --accent-text: #1D6FB6;
}
body{
    font-family: 'Montserrat', sans-serif;
    line-height: calc(20 / 16);
    color: #25282B;
    background: var(--white-text);
}

.container{
    max-width: 1230px;
    padding: 0 15px;
    margin: 0 auto;
    height: 100%;
}
/* ------------------------------------------------------------------------ */
.header {
  line-height: 1.5;
}
.header__inner {
  min-height: 108px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 10px 15px;
  align-content: center;
  align-items: center;
}
.nav {
}
.nav__list {
  display: flex;
  gap: 10px 30px;
  flex-wrap: wrap;
}
.nav__item {
}
.nav__link {
}
.header__logo {
  max-width: 54px;
}
.header__socials{
  justify-content: end;
}
.socials {
  display: flex;
  gap: 10px 30px;
  flex-wrap: wrap;
}
.socials__item {
  
}
.socials__link {
}
/* ------------------------------------------------------------------------ */
.hero {
  position: relative;
  background-color: #102e49cc;
  padding: 120px 0;
  line-height: 1.5;
  color: var(--white-text);
}
.hero__inner{
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero__title {
  font-weight: 600;
  font-size: 52px;
  margin-bottom: 30px;
}
.hero__list {
  font-size: 24px;
  margin-bottom: 40px;
}
.hero__list-item {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 15px;
  transition: all .5s;
}
.hero__list-item path{
  transition: all .5s;
}
.hero__list-item:hover {
  color: var(--accent-text);
  cursor: pointer;
}
.hero__list-item:hover path{
  fill: var(--accent-text);
}
.hero__list-item:last-child{
  margin-bottom: 0;
}
.hero__button {
}
.hero__video{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}
.button {
  font-weight: 500;
  font-size: 16px;
  line-height: calc(20 / 16);
  padding: 18px 113px;
  color: var(--accent-text);
  background: #D0DCE7;
  max-width: 288px;
  border-radius: 100px;
  transition: all .5s;
}
.button:hover{
  color: var(--white-text);
  background: #83ADD3;
}
/* ------------------------------------------------------------------------ */

.main__general {
  padding: 120px 0;
}
.main__wrapper {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: start;
}
.main__sidebar{
  position: sticky;
  top: 5vh;
}
.main__body {
  width: 100%;
  max-width: 792px;
}
.main__gallery{
  margin-bottom: 120px;
}
.sidebar {
  font-weight: 500;
  padding: 30px;
  border: 2px solid #D0DCE7;
  max-width: 282px;
  width: 100%;
  min-height: 60vh;
  margin-bottom: 20px;
}
.sidebar__nav {
  
}
.sidebar__list {
}
.sidebar__item {
  margin-bottom: 20px;
}
.sidebar__item:last-child{
  margin-bottom: 0;
}
.sidebar__link {
}
/* ------------------------------------------------------------------------ */

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-flow: dense;
  gap: 24px;
  font-weight: 500;
  color: var(--white-text);
}
.gallery__img{
  display: block;
  position: relative;
  overflow: hidden;
  padding-bottom: 100%;
}
.gallery__img img {
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}
.gallery__img--large-left{
  grid-column: 1 / 3;
  grid-row: span 2;
}
.gallery__img--large-right{
  grid-column: -1 / -3;
  grid-row: span 2;
}
.gallery__hint{
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: #1D6FB6b3;
  height: 53px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s;
  transform: translateY(100%);
  opacity: 0;
}
.gallery__img:hover .gallery__hint{
  transform: translateY(0%);
  opacity: 1;
}
.gallery__img--large-left .gallery__hint , .gallery__img--large-right .gallery__hint {
  height: 103px;
  font-size: 24px;
  line-height: 29px;
}
/* ------------------------------------------------------------------------ */

.products {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.products__item {
}
.products__item-img{
  position: relative;
  padding-bottom: 62%;
}
.products__item-badge{
  position: absolute;
  left: 0;
  top: 12.6%;
  border-radius: 0 100px 100px 0;
  padding: 18px 15px;
  background: var(--white-text);
  font-weight: 500;
  color: var(--accent-text);
  min-width: 33.9%;
  text-align: center;
  animation: badge-action 2s infinite alternate;
}
@keyframes badge-action{
  0%{
    min-width: 33.9%;
  }
  66.333%{
    min-width: 33.9%;
  }
  100%{
    min-width: 37.3%;
  }
}
.products__item-img img{
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;

}
.products__button {
}
.products__item-body{
  border: 1px solid #D0DCE7;
  border-top: none;
  padding: 30px 15px;
}
.products__item-button{
  display: block;
  margin: 0 auto;
}
/* ------------------------------------------------------------------------ */
.footer{
  color: var(--white-text);
  text-align: center;
  background-color: #788088;
  padding: 30px 0;
}
.footer__inner{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

