.header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
}

.header__container {
  background: linear-gradient(270deg, rgba(2, 44, 93, 0.83) 21.28%, rgba(7, 19, 53, 0.83) 94.77%);
  backdrop-filter: blur(29.45px);
  border-radius: 0 0 6px 6px;
}

.header-nav {
  border-top: 1px solid rgba(44, 79, 142, .5);
  overflow: hidden;
  padding: 0 24px;
}

.header-nav ul {
  display: flex;
  align-items: center;
  justify-content: space-around;
  height: 39px;
}

.header-nav ul li a {
  font-size: 14px;
  line-height: 20px;
  color: #fff;
  position: relative;
  white-space: nowrap;
  z-index: 2;
}

.header-nav ul li a::before {
  content: '';
  display: block;
  width: 164px;
  height: 1px;
  background: -webkit-linear-gradient(left, rgba(12, 197, 255, 0) 0%, #0CC5FF 51%, rgba(12, 197, 255, 0) 100%);
  background: -o-linear-gradient(left, rgba(12, 197, 255, 0) 0%, #0CC5FF 51%, rgba(12, 197, 255, 0) 100%);
  background: linear-gradient(to right, rgba(12, 197, 255, 0) 0%, #0CC5FF 51%, rgba(12, 197, 255, 0) 100%);
  position: absolute;
  bottom: -9px;
  left: 50%;
  transform: translateX(-50%);
}

.header-nav ul li a::after {
  content: '';
  display: block;
  width: 140px;
  height: 24px;
  position: absolute;
  bottom: -9px;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(48.18% 97.92% at 50% 100%, rgba(0, 209, 255, 0.66) 0%, rgba(0, 209, 255, 0.172206) 52.36%, rgba(0, 209, 255, 0.0395941) 75.85%, rgba(0, 209, 255, 0) 100%);
}

.header-nav ul li a::before,
.header-nav ul li a::after {
  opacity: 0;
  transition: opacity .25s;
}

.header-nav ul li a:hover::before,
.header-nav ul li a:hover::after,
.header-nav ul li a.active::before,
.header-nav ul li a.active::after {
  opacity: 1;
}

.header__wrap {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}

.header-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 18px 18px 24px;
}

.header__col {
  border-left: 1px solid rgba(44, 79, 142, .5);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
  padding: 24px 16px 18px 20px;
}

.header-address {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  font-style: normal;
  font-size: 14px;
  line-height: 120%;
  color: rgba(255, 255, 255, .85);
}

.header-address img {
  width: 40px;
  flex-shrink: 0;
}

.header-tel {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  color: rgba(255, 255, 255, .85);
}

.header-tel img {
  width: 40px;
  flex-shrink: 0;
}

.header-tel__main a {
  color: rgba(255, 255, 255, .85);
  font-weight: 500;
  font-size: 24px;
  line-height: 35px;
  color: #fff;
}

.header-tel__btn {
  font-size: 16px;
  line-height: 16px;
  color: #0CC5FF;
}

.header-tel__btn:hover {
  color: #fff;
}

.header-soc__title {
  margin-bottom: 5px;
  font-size: 14px;
  line-height: 120%;
  color: rgba(255, 255, 255, .85);
}

.soc {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
}

.soc a:hover {
  opacity: .5;
}

@media only screen and (max-width : 1099px) {
  .header-soc__title {
    display: none;
  }
}

@media only screen and (max-width : 1023px) {
  .header {
    background: linear-gradient(154.82deg, rgba(7, 19, 53, 0.83) 27.48%, rgba(2, 44, 93, 0.83) 232.23%);
    backdrop-filter: blur(29.45px);
    position: fixed;
    z-index: 500;
    border-bottom: 1px solid rgba(44, 79, 142, .5);
  }

  .header-logo {
    justify-content: flex-start;
    padding: 15px 15px 15px 0;
    flex-grow: 1;
  }

  .header-logo img {
    max-width: 124px;
  }

  .header__container {
    background: none;
    backdrop-filter: none;
    border-radius: 0;
  }

  .header__col {
    border-right: 1px solid rgba(44, 79, 142, .5);
    flex-grow: 3;
    padding: 15px;
    margin-right: 15px;
  }

  .header-burger.open {
    transform: rotate(-90deg);
  }

  .mob-menu {
    display: block;
    position: fixed;
    top: 82px;
    left: 0;
    width: 100%;
    background: linear-gradient(154.82deg, rgba(7, 19, 53, 0.83) 27.48%, rgba(2, 44, 93, 0.83) 232.23%);
    backdrop-filter: blur(29.45px);
    z-index: 400;
    transform: translateY(-100%);
    margin-top: -83px;
    transition: transform .25s, margin-top .25s;
    max-height: calc(100vh - 82px);
    overflow-y: auto;
  }

  .mob-menu.open {
    transform: translateY(0);
    margin-top: 0;
  }

  .header-nav {
    border-top: none;
    overflow: hidden;
    padding: 18px 15px;
  }

  .header-nav ul {
    align-items: stretch;
    flex-direction: column;
    height: auto;
  }

  .header-nav ul li a {
    display: block;
    font-size: 24px;
    line-height: 1;
    text-align: right;
    letter-spacing: .3px;
    color: rgba(255, 255, 255, .8);
    padding: 22px 90px 22px 22px;
  }

  .header-nav ul li a::before {
    width: 30px;
    background: rgba(2, 93, 153, .62);
    bottom: 0;
    left: auto;
    right: 90px;
    transform: none;
    opacity: 1;
  }

  .header-nav ul li:last-child a::before,
  .header-nav ul li a::after {
    display: none;
  }

  .header-nav ul li a:hover,
  .header-nav ul li a.active {
    background: radial-gradient(100% 2303.4% at 100% 76.32%, rgba(0, 209, 255, 0.66) 0%, rgba(0, 209, 255, 0.172206) 52.36%, rgba(0, 209, 255, 0.0395941) 75.85%, rgba(0, 209, 255, 0) 100%);
  }

  .header-nav ul li a:hover::before,
  .header-nav ul li a.active::before {
    display: none;
  }

  .mob-menu .header__col {
    border: none;
    border-top: 1px solid rgba(44, 79, 142, .5);
    padding: 40px 90px 40px 22px;
    justify-content: flex-end;
    margin: 0;
  }

  .header-address {
    flex-direction: row-reverse;
    gap: 10px;
    font-size: 20px;
    text-align: right;
  }

  .header-tel img,
  .header-address img {
    width: 50px;
  }

  .header-tel {
    flex-direction: row-reverse;
    gap: 10px;
  }

  .header-tel__btn {
    font-size: 20px;
    line-height: 29px;
    text-align: right;
    color: #0CC5FF;
  }

  .header-tel__main {
    display: flex;
    align-items: flex-end;
    flex-direction: column;
  }
}

@media only screen and (max-width : 479px) {

  .mob-menu .header__col,
  .header-nav ul li a {
    padding-right: 63px;
  }

  .header-nav ul li a::before {
    right: 63px;
  }
}

.hero {
  background: url(../img/hero-bg-min.webp) center 0 no-repeat;
  background-size: cover;
  padding-bottom: 84px;
  border-radius: 0 0 40px 40px;
  max-width: 1920px;
  margin: 0 auto;
}

.hero__wrap {
  background: linear-gradient(249.64deg, rgba(1, 28, 79, 0.34) 26.42%, rgba(1, 28, 79, 0) 35.58%);
  backdrop-filter: blur(2px);
  margin-bottom: 90px;
  height: 608px;
  position: relative;
}

.hero__slogan {
  position: absolute;
  top: 147px;
  right: 170px;
  background: rgba(255, 255, 255, .05);
  border-radius: 4px;
  padding: 6px 16px 6px 44px;
  font-size: 20px;
  line-height: 29px;
  color: #fff;
}

.hero__slogan::before {
  content: '';
  display: block;
  position: absolute;
  left: 17px;
  top: 50%;
  width: 8px;
  height: 8px;
  margin-top: -4px;
  border-radius: 50%;
  background: linear-gradient(180deg, #FFF5D2 0%, #FFE484 100%);
  box-shadow: 0 0 4px rgba(255, 241, 190, .41);
}

.hero__title {
  width: 735px;
  position: absolute;
  top: 180px;
  left: 120px;
  font-family: 'Yeseva One', serif;
  font-style: normal;
  font-weight: 400;
  text-align: left;
  text-transform: uppercase;
}

.hero__title span {
  display: block;
}

.hero__title span:first-child {
  font-size: 100px;
  line-height: 134px;
  background: linear-gradient(92.76deg, #A8DBFF 0.31%, #B4E9FF 59.27%, #DEF5FF 148.6%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.hero__title span:last-child {
  text-align: right;
  font-size: 50px;
  line-height: 67px;
  background: linear-gradient(90.67deg, #A1E9FF -22.53%, #FFFFFF 81.03%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.hero__list {
  position: absolute;
  top: 213px;
  right: 45px;
  font-size: 16px;
  line-height: 150%;
  text-align: right;
  letter-spacing: .3px;
  color: rgba(255, 255, 255, .7);
}

.hero__list li {
  margin-bottom: 20px;
}

.action-btn--hero {
  top: 323px;
  left: 307px;
  z-index: 10;
}

.action-btn {
  position: absolute;
  width: 134px;
  height: 134px;
  padding: 4px;
  background: rgba(255, 255, 255, .39);
  box-shadow: 0 0 42.4px rgba(0, 209, 255, .49);
  backdrop-filter: blur(12.7px);
  border-radius: 50%;
}

.action-btn span {
  position: absolute;
  top: 36px;
  left: 0;
  width: 100%;
  font-weight: 600;
  font-size: 15px;
  line-height: 120%;
  text-align: center;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #fff;
  white-space: normal;
  transition: font-size .25s;
}

.action-btn:hover span {
  font-size: 17px;
}

.action-btn::before {
  content: '';
  position: absolute;
  background: url(../img/call-btn-frame.svg) center center no-repeat;
  background-size: contain;
  width: 160px;
  height: 160px;
  top: 50%;
  left: 50%;
  margin: -80px 0 0 -80px;
  animation: rotate 1.5s both infinite linear;
}

.header-logo__pic img {
  height: 52px;
}

.action-btn:hover::before {
  animation-play-state: paused;
}

@-webkit-keyframes rotate {
  from {
    transform: rotate(0);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes rotate {
  from {
    transform: rotate(0);
  }

  to {
    transform: rotate(360deg);
  }
}

.hero__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: linear-gradient(90.01deg, rgba(36, 65, 101, .67) -0.01%, rgba(20, 56, 97, .5159) 99.97%);
  backdrop-filter: blur(35.6px);
  border-radius: 7px;
  padding: 18px 26px;
}

.hero-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.33;
  color: #fff;
}

.hero-item img {
  flex-shrink: 0;
}

@media only screen and (max-width : 1149px) {
  .hero__title {
    left: 20px;
  }

  .action-btn--hero {
    left: 200px;
  }

  .hero-item {
    font-size: 16px;
  }

  .hero__row {
    gap: 16px;
    padding: 18px 20px;
  }

  .hero__wrap {
    margin-bottom: 40px;
  }
}

@media only screen and (max-width : 1023px) {
  .hero {
    padding-bottom: 0;
    border-radius: 0;
    margin-bottom: 140px;
  }

  .hero__wrap {
    width: calc(100% + 30px);
    margin-left: -15px;
    background: linear-gradient(176.31deg, #011C4F 40.41%, rgba(1, 28, 79, 0) 87.32%);
    backdrop-filter: blur(2px);
    margin-bottom: 98px;
    height: auto;
    padding: 160px 15px 24px;
  }

  .hero__slogan {
    position: relative;
    top: 0;
    right: 0;
    margin: 0 auto 22px;
    width: fit-content;
    font-size: 18px;
    letter-spacing: -.3px;
  }

  .hero__title {
    width: 100%;
    position: static;
    text-align: center;
    margin-bottom: 35px;
  }

  .hero__title span:first-child {
    font-size: 68px;
    line-height: 1.1;
    text-transform: uppercase;
    background: linear-gradient(93.64deg, #A8DBFF -9.96%, #DEF5FF 44.48%, #B4E9FF 113.73%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
  }

  .hero__title span:last-child {
    font-size: 40px;
    line-height: 1.1;
    text-align: center;
    background: linear-gradient(90.67deg, #A1E9FF -22.53%, #FFFFFF 81.03%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
  }

  .action-btn.action-btn--hero {
    position: relative;
    top: 0;
    left: 0;
    margin: 0 auto;
  }

  .hero__row {
    align-items: stretch;
    flex-direction: column;
    width: 100%;
    gap: 0;
    padding: 0;
    position: relative;
    bottom: -96px;
  }

  .hero-item {
    justify-content: center;
    gap: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, .05);
    font-size: 16px;
    line-height: 1.33;
    padding: 24px 16px;
  }

  .hero-item img {
    width: 48px;
  }

  .hero-item span {
    display: block;
    width: 274px;
  }
}

.advantages {
  margin: 105px 0 120px;
}

.advantage__wrap::after,
.advantages .container::before,
.advantages .container::after {
  content: '';
  display: block;
  position: absolute;
  background: center center no-repeat;
  background-size: contain;
}

.advantages .container::before {
  background-image: url(../img/advantages_top-left.svg);
  width: 1079px;
  height: 939px;
  top: 0;
  left: 0;
  transform: translate(-40%, -50%);
}

.advantages .container::after {
  background-image: url(../img/advantages_bottom-left.svg);
  width: 752px;
  height: 658px;
  bottom: 0;
  left: 0;
  transform: translate(-50%, 50%);
}

.advantage__wrap::after {
  background-image: url(../img/advantages_right.svg);
  width: 904px;
  height: 1019px;
  top: 50%;
  right: 0;
  transform: translate(50%, -50%);
}

.advantage__wrap {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px 0;
}

.advantage {
  position: relative;
  min-height: 357px;
  padding: 36px 24px 115px 36px;
  border: 1px solid #076DAB;
  background: linear-gradient(178.92deg, rgba(15, 72, 115, 0.4) 1.56%, rgba(21, 26, 62, 0.4) 99.73%);
  backdrop-filter: blur(80.45px);
  overflow: hidden;
  flex-shrink: 0;
}

.advantage--1 {
  width: 37%;
}

.advantage--2 {
  width: 32%;
}

.advantage--3 {
  width: 31%;
}

.advantage--4,
.advantage--5 {
  width: 50%;
}

.advantage--2 {
  z-index: 3;
  box-shadow: 0 0 54.2px rgba(0, 7, 38, .67);
}

.advantage--1 {
  border-radius: 7px 0 0 7px;
  border-right: none;
}

.advantage--3 {
  border-radius: 0 7px 7px 0;
  border-left: none;
}

.advantage--4 {
  border-radius: 7px 0 0 7px;
  z-index: 3;
  box-shadow: 33px 1px 74.1px rgba(17, 23, 49, .66);
}

.advantage--5 {
  border-radius: 0 7px 7px 0;
  border-left: none;
}

.advantage__title {
  margin-bottom: 19px;
  font-family: 'Yeseva One', serif;
  font-weight: 400;
  font-size: 30px;
  line-height: 120%;
  text-transform: uppercase;
  color: #DCF1FF;
}

.advantage__txt {
  font-size: 18px;
  line-height: 133%;
  color: #D1E1FE;
  position: relative;
  z-index: 3;
}

.advantage__pic {
  position: absolute;
}

.advantage--1 .advantage__pic {
  width: 239px;
  bottom: 0;
  right: 12px;
}

.advantage--2 .advantage__pic {
  width: 245px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  margin-left: -5px;
}

.advantage--3 .advantage__pic {
  width: 310px;
  bottom: 0;
  left: 20px;
}

.advantage--4 .advantage__pic {
  width: 544px;
  bottom: 0;
  right: 0;
}

.advantage--5 .advantage__pic {
  width: 554px;
  bottom: 0;
  right: 0;
}

@media only screen and (max-width : 1023px) {
  .advantages {
    margin: 140px 0 42px;
  }

  .advantage__wrap::after,
  .advantages .container::before,
  .advantages .container::after {
    display: none;
  }

  .advantage__wrap {
    display: block;
    gap: 0;
  }

  .advantage {
    width: 100% !important;
    min-height: 390px;
    padding: 42px 20px 86px;
    border: 1px solid #076DAB;
    border-radius: 7px !important;
    background: linear-gradient(178.92deg, rgba(15, 72, 115, 0.4) 1.56%, rgba(21, 26, 62, 0.4) 99.73%);
    backdrop-filter: blur(80.45px);
  }

  .advantage--2 {
    z-index: 2;
    box-shadow: none;
  }

  .advantage--1 {
    z-index: 1;
    border-right: 1px solid #076DAB;
  }

  .advantage--2 {
    z-index: 2;
    box-shadow: none;
  }

  .advantage--3 {
    z-index: 3;
    border-left: 1px solid #076DAB;
  }

  .advantage--4 {
    z-index: 4;
    box-shadow: none;
  }

  .advantage--5 {
    z-index: 5;
    border-left: 1px solid #076DAB;
  }

  .advantage__title {
    text-align: center;
    margin-bottom: 12px;
  }

  .advantage__txt {
    margin: 0 auto;
    max-width: 382px;
  }

  .advantage__pic {
    max-width: 100%;
  }

  .advantage--1 .advantage__pic {
    width: 380px;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }

  .advantage--2 .advantage__pic {
    width: 340px;
    margin-left: 0;
  }

  .advantage--3 .advantage__pic {
    width: 350px;
    left: 50%;
    transform: translateX(-50%);
  }

  .advantage--4 .advantage__pic,
  .advantage--5 .advantage__pic {
    width: 100%;
  }
}

.gallery-sec {
  position: relative;
  margin: 120px 0 114px;
  z-index: 3;
}

.gallery-sec::before,
.gallery-sec::after {
  content: '';
  display: block;
  position: absolute;
  background: center center no-repeat;
  background-size: contain;
}

.gallery-sec::before {
  background-image: url(../img/gallery-left.svg);
  width: 636px;
  height: 1378px;
  top: 0;
  left: 0;
}

.gallery-sec::after {
  background-image: url(../img/gallery-right.svg);
  width: 725px;
  height: 1566px;
  bottom: 0;
  right: 0;
}

.gallery-sec .container::before {
  content: '';
  display: block;
  width: 1764px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: url(../img/gallery-footer-min.webp) center bottom no-repeat #EDFAFF;
  background-size: 100% auto;
  border-radius: 34px;
  z-index: -1;
}

.gallery-sec .container::after {
  content: '';
  display: block;
  width: 1630px;
  height: 901px;
  position: absolute;
  top: -364px;
  left: 50%;
  margin-left: 429px;
  background: url(../img/gallery-book-min.webp) center bottom no-repeat;
  background-size: contain;
}

.gallery-sec__header {
  padding: 108px 0 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.gallery-sec__header .sec-title {
  text-align: right;
  background: linear-gradient(90.46deg, #02285E 4.37%, #04598A 50.22%, #02285E 89.89%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  max-width: calc(50% - 16px);
  width: 485px;
}

.gallery-sec__header .sec-header__txt {
  max-width: calc(50% - 16px);
  width: 485px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 11px;
  grid-row-gap: 11px;
  align-items: stretch;
  position: relative;
  z-index: 2;
  margin-bottom: -182px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  min-height: 333px;
  border-radius: 6px;
}

.gallery-item picture,
.gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: unset;
  object-fit: cover;
}

.gallery-item__main {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  padding: 10px 19px 10px;
  background: linear-gradient(89.91deg, rgba(238, 250, 255, 0.74) 16.83%, rgba(238, 250, 255, 0.24) 99.91%);
  backdrop-filter: blur(14.95px);
}

.gallery-item__title {
  font-weight: 500;
  font-size: 28px;
  line-height: 108%;
  text-transform: uppercase;
  background: linear-gradient(90.46deg, #02285E 4.37%, #04598A 50.22%, #02285E 89.89%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.gallery-item__txt {
  margin-top: 5px;
  font-size: 18px;
  line-height: 119%;
  color: #395277;
}

.gallery-item:nth-child(1) {
  grid-row: span 2;
}

.gallery-item:nth-child(2) {
  grid-column: span 2;
}

.gallery-item:nth-child(2) .gallery-item__main {
  top: 0;
  width: 268px;
}

.gallery-item--darkblue {
  background: radial-gradient(144.9% 99.85% at 50% -2.85%, #045889 8.5%, #03295F 60.03%, #111730 100%);
}

.gallery-item--darkblue .gallery-txt__title {
  background: linear-gradient(92.44deg, #C2DCEC 18.59%, #FFFFFF 51.75%, #C2DCEC 81.77%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.gallery-item--darkblue .gallery-txt__br {
  background-color: rgba(89, 141, 214, .21);
}

.gallery-item--darkblue .gallery-txt__txt {
  color: #8DA8CF;
}

.gallery-item--blue {
  background: radial-gradient(149.25% 102.85% at 50% -2.85%, #ABE9FF 2.88%, #00BCFF 64.13%, #007EC5 100%);
}

.gallery-item--blue .gallery-txt__title {
  background: linear-gradient(138.02deg, #055A8B 33.42%, #012456 68.77%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  font-size: 40px;
  line-height: 1.2;
}

.gallery-item--blue .gallery-txt__br {
  background-color: rgba(18, 82, 156, .17);
  margin: 21px auto;
}

.gallery-item--blue .gallery-txt__txt {
  color: #055A8B;
}

.gallery-item:nth-child(6) {
  grid-row: span 2;
  grid-column: span 2;
}

.gallery-item:nth-child(8) {
  grid-row: span 2;
}

.gallery-txt {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 20px;
}

.gallery-txt__title {
  font-family: 'Yeseva One', serif;
  font-weight: 400;
  font-size: 48px;
  line-height: 1.2;
  text-transform: uppercase;
}

.gallery-txt__br {
  width: 100%;
  max-width: 294px;
  height: 1px;
  margin: 11px auto 18px;
}

.gallery-txt__txt {
  font-size: 24px;
  line-height: 1.25;
  width: 100%;
  max-width: 294px;
  margin: 0 auto;
}

.gallery-txt:last-child .gallery-txt__title {
  font-size: 32px;
  line-height: 1.2;
}

.gallery-txt:last-child .gallery-txt__br {
  margin: 22px auto 28px;
}

.gallery-txt:last-child .gallery-txt__txt {
  max-width: unset;
}

.gallery-footer .form-blc {
  padding-top: 289px;
}

@media only screen and (max-width : 1023px) {
  .gallery-sec {
    margin: 42px 0 62px;
  }

  .gallery-sec::before,
  .gallery-sec::after {
    display: none;
  }

  .gallery-sec .container::before {
    width: 480px;
    max-width: 100vw;
    background-color: #EDFAFF;
    background-position: center bottom 335px;
    background-size: auto 612px;
    border-radius: 24px;
  }

  .gallery-sec .container::after {
    display: none;
  }

  .gallery-sec__header {
    padding: 62px 0 20px;
    flex-direction: column;
    gap: 0;
  }

  .gallery-sec__header .sec-title {
    font-size: 40px;
    line-height: 53px;
    text-align: center;
    text-transform: uppercase;
    background: linear-gradient(90.46deg, #02285E 4.37%, #04598A 50.22%, #02285E 89.89%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    max-width: unset;
    width: 100%;
  }

  .gallery-sec__header .sec-header__txt {
    max-width: unset;
    width: 100%;
    background: none;
  }

  .gallery {
    display: block;
    grid-column-gap: 0;
    grid-row-gap: 10px;
    margin-bottom: 0;
  }

  .gallery-item {
    height: 320px;
    margin-top: 10px;
    overflow: hidden;
    display: block;
  }

  .gallery-item__main {
    padding: 26px 24px 28px;
  }

  .gallery-item:nth-child(1) {
    grid-row: unset;
  }

  .gallery-item:nth-child(2) {
    grid-column: unset;
  }

  .gallery-item:nth-child(2) .gallery-item__main {
    top: auto;
    width: 100%;
  }

  .gallery-item--blue .gallery-txt__title {
    font-size: 32px;
  }

  .gallery-item:nth-child(6) {
    grid-row: unset;
    grid-column: unset;
  }

  .gallery-item:nth-child(8) {
    grid-row: unset;
  }

  .gallery-txt {
    height: auto;
    padding: 56px 20px;
    min-height: unset;
  }

  .gallery-txt__title {
    font-size: 32px;
    line-height: 1.2;
  }

  .gallery-txt__br {
    margin: 21px auto;
  }

  .gallery-txt:last-child .gallery-txt__title {
    font-size: 32px;
    line-height: 1.2;
  }

  .gallery-txt:last-child .gallery-txt__br {
    margin: 22px auto;
  }

  .gallery-footer .form-blc {
    padding-top: 76px;
    background: none;
    backdrop-filter: unset;
    position: relative;
    border-radius: 0 0 24px 24px;
    overflow: hidden;
  }

  .gallery-footer .form-blc::after {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -1;
    user-select: none;
    pointer-events: none;
    height: 440px;
    background: linear-gradient(180deg, rgba(237, 250, 255, 0) 0%, rgba(237, 250, 255, 0.82) 20.07%, rgba(237, 250, 255, 0.91) 82.48%, #fff 100%);
    backdrop-filter: blur(23.75px);
  }
}

.form-blc {
  max-width: 100%;
  width: 620px;
  margin-left: -55px;
  padding: 80px 18px 80px 58px;
  background: linear-gradient(180deg, rgba(237, 250, 255, 0.69) 53.96%, rgba(237, 250, 255, 0.16) 74.03%, rgba(237, 250, 255, 0.91) 86.94%, #FFFFFF 100%);
  backdrop-filter: blur(30.75px);
}

.form-blc__subtitle {
  margin-bottom: 14px;
  font-family: 'Yeseva One', serif;
  font-weight: 400;
  font-size: 58px;
  line-height: 1.2;
  text-transform: uppercase;
  background: linear-gradient(90.46deg, #02285E 4.37%, #04598A 50.22%, #02285E 89.89%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.form-blc__subtitle span {
  display: block;
  margin: 12px 0;
  font-family: 'Jost';
  font-weight: 500;
  font-size: 18px;
  line-height: 133%;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: #7488AB;
}

.form-blc__subtitle span:first-child {
  margin-top: 0;
}

.form-blc__subtitle span:last-child {
  margin-bottom: 0;
}

.form-blc__br {
  display: block;
  height: 1px;
  margin: 14px 0 32px;
  background-color: rgba(89, 141, 214, .21);
  max-width: 485px;
}

.form-blc__txt {
  max-width: 508px;
  font-size: 16px;
  line-height: 1.25;
  color: #395277;
}

.form-blc__txt p:not(:last-child) {
  margin-bottom: 1.25em;
}

.form-blc-quote {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 28px 0 40px;
  gap: 34px;
}

.form-blc-quote__ava {
  width: 97px;
  flex-shrink: 0;
}

.form-blc-quote__cloud {
  flex-grow: 1;
  padding: 20px 18px 24px 37px;
  background-color: #fff;
  font-size: 18px;
  line-height: 1.33;
  color: #395277;
  border-radius: 6px;
  position: relative;
}

.form-blc-quote__cloud::before {
  content: '';
  display: block;
  width: 26px;
  height: 13px;
  border-bottom-left-radius: 4px;
  transform: skewX(-45deg);
  background-color: #fff;
  position: absolute;
  bottom: 0;
  left: -13px;
  transform-origin: 0 100%;
}

.form-blc-quote__cloud b {
  font-weight: 500;
  color: #012456;
}

.form-blc-form {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 4px 6px;
}

.form-blc-form .form-txt,
.form-blc-form .btn--main,
.form-blc-form .input {
  width: calc(50% - 3px);
}

.input {
  display: block;
  width: 100%;
  outline: none;
  border: none;
  background: none;
  transition: .25s ease;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
  padding: 12px 24px;
  height: 65px;
  background: rgba(1, 36, 86, .09);
  box-shadow: inset 0px 0px 18.7px rgba(1, 36, 86, .06);
  border-radius: 3px;
  color: #012456;
  font-size: 16px;
  color: #7A8AA0;
}

.input::-webkit-input-placeholder {
  opacity: 1;
  color: #7A8AA0;
}

.input::-moz-placeholder {
  opacity: 1;
  color: #7A8AA0;
}

.input:-moz-placeholder {
  opacity: 1;
  color: #7A8AA0;
}

.input:-ms-input-placeholder {
  opacity: 1;
  color: #7A8AA0;
}

.input:placeholder {
  opacity: 1;
  color: #7A8AA0;
}

.input.error {
  background-color: red;
}

.input:-webkit-autofill {
  -webkit-box-shadow: inset 0 0 0 100px rgba(1, 36, 86, .09) !important;
  -webkit-text-fill-color: #7A8AA0 !important;
  color: #7A8AA0 !important;
}

.btn--main {
  align-items: center;
  padding: 12px 24px;
  height: 65px;
  background: radial-gradient(317.78% 115.38% at 51.81% -15.38%, #FFE68D 4.66%, #FF9A02 96.99%);
  border-radius: 3px;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 2px;
  color: #fff;
}

.btn--main:hover {
  letter-spacing: 3px;
}

.form-txt {
  font-size: 11px;
  line-height: 1.27;
  color: #85B1C0;
}

.form-txt a {
  color: #DAB5AF;
}

.form-txt a:hover {
  text-decoration: underline;
}

@media only screen and (max-width : 1023px) {
  .form-blc {
    max-width: unset;
    width: calc(100% + 30px);
    margin-left: -15px;
    padding: 42px 15px 62px;
    background: linear-gradient(180deg, rgba(237, 250, 255, 0.5) 0%, rgba(237, 250, 255, 0.91) 32.82%, #FFFFFF 100%);
    backdrop-filter: blur(23.75px);
  }

  .form-blc__subtitle {
    margin-bottom: 32px;
    font-size: 40px;
    line-height: 1.2;
    text-align: center;
  }

  .form-blc__subtitle span {
    font-size: 16px;
    line-height: 150%;
  }

  .form-blc__br {
    display: none;
  }

  .form-blc__txt {
    max-width: 388px;
  }

  .form-blc-quote {
    margin: 226px 0 52px;
    gap: 20px;
    align-items: flex-end;
  }

  .form-blc-quote__cloud {
    padding: 17px 18px 24px 35px;
  }

  .form-blc-form {
    flex-direction: column;
    gap: 8px;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }

  .form-blc-form .form-txt,
  .form-blc-form .btn--main,
  .form-blc-form .input {
    width: 100%;
  }

  .form-txt {
    font-size: 14px;
    line-height: 18px;
    color: #7A8AA0;
  }

  .form-txt a {
    color: #FF9A02;
  }
}

.whater {
  position: relative;
  margin-top: 114px;
}

.whater::after,
.whater::before {
  content: '';
  display: block;
  width: 1920px;
  height: 1984px;
  position: absolute;
  top: -466px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 40px;
}

.whater::before {
  background: url(../img/water-bg-min.webp) center center no-repeat;
  background-size: cover;
  opacity: .85;
}

.whater::after {
  content: '';
  display: block;
  width: 1920px;
  height: 1984px;
  position: absolute;
  top: -466px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(180deg, #0B1537 0%, rgba(17, 27, 61, 0) 36.53%);
  border-radius: 40px;
}

.sec-header {
  margin-bottom: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
}

.whater .sec-title {
  text-align: right;
  background: linear-gradient(99.4deg, #A9DBFF 12.89%, #FFFFFF 47.09%, #F9FDFF 67.52%, #B8EAFF 112.01%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  flex-grow: 1;
}

.whater .sec-title span {
  color: #9CB1D6;
}

.whater .sec-header__txt {
  width: 460px;
  color: #fff;
  background: linear-gradient(84deg, rgba(255, 255, 255, 0.16) -19.79%, rgba(255, 255, 255, 0) 123.38%);
}

.whater__wrap {
  position: relative;
}

.whater__main {
  width: 540px;
  min-height: 624px;
  margin-left: -55px;
  background: radial-gradient(131.86% 155.85% at 121.3% 48.1%, rgba(2, 40, 94, 0.79) 26.05%, rgba(2, 40, 94, 0.5688) 38.64%, rgba(17, 73, 120, 0.476196) 55.42%, rgba(29, 100, 141, 0.400181) 68.35%, rgba(94, 243, 253, 0) 100%);
  backdrop-filter: blur(78.1px);
  border-radius: 6px 6px 0 0;
  position: relative;
}

.whater-item {
  border-bottom: 1px solid rgba(255, 255, 255, .16);
  padding: 40px 40px 37px 55px;
}

.whater-item:nth-child(2) {
  padding-right: 90px;
}

.whater-item:last-child {
  border-bottom: none;
}

.whater-item__title {
  font-family: 'Yeseva One', serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 120%;
  text-transform: uppercase;
  color: #fff;
}

.whater-item__txt {
  font-size: 16px;
  line-height: 120%;
  color: rgba(255, 255, 255, .88);
  margin-top: 11px;
}

.whater-item__txt p:not(:last-child) {
  margin-bottom: 1.2em;
}

.whater__main::before,
.whater__main::after {
  content: '';
  display: block;
  position: absolute;
}

.whater__main::before {
  background: url(../img/water-fig-min.webp) center center no-repeat;
  background-size: contain;
  width: 421px;
  height: 421px;
  position: absolute;
  left: 470px;
  bottom: 110px;
}

.whater__main::after {
  background: url(../img/water-fig-frame.svg) center center no-repeat;
  background-size: contain;
  width: 565px;
  height: 565px;
  position: absolute;
  left: 417px;
  bottom: 35px;
}

.whater__bar {
  position: absolute;
  top: 3px;
  left: 700px;
}

.whater__list {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  flex-direction: column;
  gap: 15px;
}

.whater__list li {
  padding: 17px 28px;
  font-weight: 500;
  font-size: 18px;
  line-height: 120%;
  color: #fff;
  position: relative;
  background-color: rgba(2, 40, 94, .29);
  backdrop-filter: blur(12.45px);
  border-radius: 4px;
}

.whater__list li::before {
  content: '';
  display: block;
  background: url(../img/add-yellow.svg) center center no-repeat;
  background-size: contain;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  position: absolute;
  left: -13px;
  top: 50%;
  margin-top: -13px;
}

.whater__list li:nth-child(1) {
  width: 183px;
  margin-right: 297px;
}

.whater__list li:nth-child(2) {
  width: 280px;
  margin-right: 63px;
}

.whater__list li:nth-child(3) {
  width: 280px;
  margin-right: 2px;
}

.whater__list li:nth-child(4) {
  width: 280px;
  margin-right: -24px;
}

.action-btn--whater {
  z-index: 6;
  top: 360px;
  right: 220px;
}

@media only screen and (max-width : 1199px) {
  .whater__main {
    width: 460px;
  }

  .whater__main::before {
    left: 433px;
    bottom: 137px;
  }

  .whater__main::after {
    left: 380px;
    bottom: 62px;
  }

  .whater__bar {
    left: 663px;
  }
}

@media only screen and (max-width : 1140px) {
  .whater .sec-title {
    max-width: 390px;
  }

  .whater__main {
    width: 460px;
  }

  .whater__main::before {
    left: 413px;
    bottom: 222px;
  }

  .whater__main::after {
    left: 330px;
    bottom: 145px;
  }

  .whater__bar {
    left: 613px;
    top: -81px;
  }

  .whater__list li:nth-child(3) {
    width: 230px;
    margin-right: 48px;
  }

  .whater__list li:nth-child(4) {
    width: 240px;
    margin-right: 15px;
  }

  .action-btn--whater {
    top: 390px;
    right: 235px;
  }
}

@media only screen and (max-width : 1023px) {
  .whater {
    margin-top: 62px;
  }

  .whater::after,
  .whater::before {
    width: 1024px;
    min-width: 100vw;
    height: 1227px;
    top: -53px;
    border-radius: 0;
  }

  .whater::before {
    background-size: auto 100%;
  }

  .sec-header {
    margin-bottom: 32px;
    flex-direction: column;
    gap: 13px;
  }

  .whater .sec-title {
    text-align: center;
    max-width: unset;
  }

  .whater .sec-header__txt {
    max-width: 100%;
  }

  .whater__main {
    width: 100%;
    min-height: unset;
    margin-left: 0;
    background: radial-gradient(227.2% 100% at 42.89% 0%, rgba(29, 100, 141, 0.400181) 11.82%, rgba(17, 73, 120, 0.476196) 40.7%, rgba(2, 40, 94, 0.5688) 73.97%, rgba(2, 40, 94, 0.79) 100%);
    backdrop-filter: blur(78.1px);
  }

  .whater-item {
    padding: 44px 40px 35px;
  }

  .whater-item:nth-child(2) {
    padding-right: 44px;
  }

  .whater__bar {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    padding-bottom: 143px;
  }

  .whater__list {
    gap: 7px;
    max-width: 375px;
    margin: 0 auto;
  }

  .whater__list li {
    padding: 16px 12px 20px 28px;
    width: 246px !important;
    margin: 0 !important;
  }

  .whater__main::before,
  .whater__main::after {
    display: none;
  }

  .action-btn--whater {
    z-index: 6;
    top: auto;
    left: auto;
    bottom: -40px;
    right: 73px;
  }
}

@media only screen and (max-width : 799px) {

  .whater::after,
  .whater::before {
    margin-left: -90px;
  }
}

.project .container::before {
  content: '';
  display: block;
  width: 1764px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background:
    url(../img/project-bottom-min.webp) center bottom no-repeat,
    url(../img/project-left-min.webp) 0 0 no-repeat,
    url(../img/project-right-min.webp) right 0 no-repeat,
    #EDFAFF;
  background-size:
    100% auto,
    804px auto,
    804px auto,
    auto auto;
  border-radius: 34px;
  z-index: -1;
}

.project .sec-header {
  padding: 107px 0 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 47px;
  max-width: 1100px;
  margin: 0 auto;
}

.project .sec-title {
  flex-grow: 1;
  text-align: right;
  background: linear-gradient(90.46deg, #02285E 4.37%, #04598A 50.22%, #02285E 89.89%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.project .sec-header__txt {
  width: 352px;
  flex-shrink: 0;
  padding-right: 24px;
}

.project__wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 9px;
  grid-row-gap: 9px;
  align-items: stretch;
}

.project-item {
  background-color: #F5FDFF;
  border: 1px solid #D2E2EE;
  border-radius: 7px;
  position: relative;
  overflow: hidden;
  min-height: 226px;
}

.project-item img {
  position: absolute;
  max-width: unset;
}

.project-item:nth-child(1) {
  grid-row: span 2;
  padding: 45px 32px 32px 36px;
}

.project-item:nth-child(2),
.project-item:nth-child(3) {
  grid-column: span 2;
  padding: 45px 294px 46px 48px;
}

.project-item__title {
  margin-bottom: 14px;
  font-family: 'Yeseva One', serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 1.2;
  text-transform: uppercase;
  background: linear-gradient(90.46deg, #02285E 4.37%, #04598A 50.22%, #02285E 89.89%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.project-item__txt {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.33;
  color: #395277;
}

.project-item__txt b {
  font-weight: 600;
}

.project-item:nth-child(1) img {
  width: 429px;
  left: 0;
  bottom: -15px;
}

.project-item:nth-child(2) img {
  width: 420px;
  right: -140px;
  top: -10px;
  transform: rotate(-15deg);
}

.project-item:nth-child(3) img {
  width: 500px;
  right: -120px;
  bottom: 0;
}

.project-footer .form-blc {
  background: linear-gradient(180deg, rgba(237, 250, 255, 0.78) 0%, rgba(237, 250, 255, 0.71) 28.02%, rgba(237, 250, 255, 0.89) 100%);
  backdrop-filter: blur(30.75px);
}

.project-footer .form-blc__subtitle {
  font-size: 40px;
  line-height: 1.2;
}

.project-footer .form-blc__subtitle span {
  max-width: 314px;
  color: #7488AB;
  margin-bottom: 15px;
  line-height: 24px;
}

.project-footer .form {
  margin-top: 20px;
}

@media only screen and (max-width : 1099px) {
  .project .sec-header__txt {
    width: 290px;
  }
}

@media only screen and (max-width : 1023px) {
  .project .container::before {
    width: 480px;
    max-width: 100vw;
    background: url(../img/project-bottom-min.webp) right -59px bottom 446px no-repeat #EDFAFF;
    background-size: 1077px auto;
    border-radius: 24px;
  }

  .project .sec-header {
    padding: 63px 0 2px;
    flex-direction: column;
    gap: 0;
  }

  .project .sec-title {
    text-align: center;
  }

  .project .sec-header__txt {
    width: 100%;
    background: none;
  }

  .project__wrap {
    display: block;
    grid-column-gap: 0;
    grid-row-gap: 0;
  }

  .project-item {
    width: 100%;
    height: 428px;
    min-height: unset;
    margin-bottom: 11px;
  }

  .project-item:nth-child(1) {
    grid-row: unset;
    padding: 40px 30px 36px;
  }

  .project-item:nth-child(2),
  .project-item:nth-child(3) {
    grid-row: unset;
    padding: 40px 30px 36px;
  }

  .project-item__title {
    margin-bottom: 20px;
  }

  .project-item__txt {
    position: relative;
    z-index: 3;
  }

  .project-item:nth-child(1) img {
    width: 100%;
    left: 0;
    bottom: 0;
  }

  .project-item:nth-child(2) img {
    width: 100%;
    right: 0;
    top: auto;
    bottom: 0;
    transform: none;
  }

  .project-item:nth-child(3) img {
    width: 100%;
    right: 0;
    bottom: 0;
  }

  .project-footer .form-blc {
    background: none;
    backdrop-filter: unset;
  }

  .project-footer .form-blc::before {
    content: '';
    display: block;
    position: absolute;
    z-index: -1;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 464px;
    background: linear-gradient(180deg, rgba(237, 250, 255, 0.5) 0%, rgba(237, 250, 255, 0.91) 32.82%, #FFFFFF 100%);
    backdrop-filter: blur(23.75px);
    border-radius: 0 0 24px 24px;
  }

  .project-footer .form-blc__txt {
    margin: 377px auto 22px;
    max-width: 388px;
    text-align: center;
  }

  .project-footer .form-blc__subtitle {
    font-size: 32px;
  }

  .project-footer .form-blc__subtitle span {
    max-width: 320px;
    margin: 0 auto 13px;
  }

  .project-footer .form {
    margin-top: 20px;
  }
}

@media only screen and (max-width : 767px) {
  .project .container::before {
    background-position: right -120px bottom 446px;
  }
}

.wecan {
  margin: 120px 0 132px;
}

.wecan .sec-title {
  margin-bottom: 56px;
  text-align: center;
}

.wecan__main {
  position: relative;
}

.wecan-light {
  position: absolute;
  background: url(../img/light.svg) center center no-repeat;
  background-size: contain;
  width: 882px;
  height: 1012px;
}

.wecan-light:nth-child(1) {
  top: 0;
  right: 0;
  transform: translate(50%, -50%);
}

.wecan-light:nth-child(2) {
  top: 25%;
  left: 0;
  transform: translate(-50%, -50%);
}

.wecan-light:nth-child(3) {
  top: 50%;
  right: 0;
  transform: translate(50%, -50%);
}

.wecan-light:nth-child(4) {
  top: 75%;
  left: 0;
  transform: translate(-50%, -50%);
}

.wecan-light:nth-child(5) {
  top: 100%;
  right: 0;
  transform: translate(50%, -50%);
}

.wecan__wrap {
  position: relative;
  z-index: 3;
}

.wecan-item {
  margin-bottom: 10px;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  border-radius: 7px;
  overflow: hidden;
  background: center center no-repeat;
  background-size: cover;
  text-align: right;
  position: relative;
}

.wecan-item:nth-child(odd) {
  flex-direction: row-reverse;
  text-align: left;
}

.wecan-item__main {
  width: 50%;
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-direction: column;
  background: linear-gradient(111.44deg, rgba(21, 26, 62, 0.125) 3.92%, rgba(21, 26, 62, 0.5) 32.66%, rgba(21, 26, 62, 0.5) 72.42%, rgba(17, 24, 59, 0.316249) 99.42%);
  backdrop-filter: blur(15.65px);
  padding: 67px;
  height: 356px;
  flex-shrink: 0;
}

.wecan-item__title {
  font-family: 'Yeseva One', serif;
  font-weight: 400;
  font-size: 30px;
  line-height: 1.27;
  text-transform: uppercase;
  color: #F6FCFF;
  margin-bottom: 19px;
}

.wecan-item__txt {
  font-size: 18px;
  line-height: 1.33;
  color: #D1E1FE;
}

.wecan-item--1 {
  background-image: url(../img/wecan-1-min.webp);
}

.wecan-item--2 {
  background-image: url(../img/wecan-2-min.webp);
}

.wecan-item--3 {
  background-image: url(../img/wecan-3-min.webp);
}

.wecan-item--4 {
  background-image: url(../img/wecan-4-min.webp);
}

.wecan-item--5 {
  background-image: url(../img/wecan-5-min.webp);
}

.wecan-item--6 {
  background-image: url(../img/wecan-6-min.webp);
}

.wecan-item--7 {
  background-image: url(../img/wecan-7-min.webp);
}

.wecan-item__fig {
  position: absolute;
  bottom: 0;
}

.wecan-item--1 .wecan-item__fig {
  width: 588px;
  left: 30px;
  bottom: -33px;
}

.wecan-item--2 .wecan-item__fig {
  width: 357px;
  right: 7%;
  bottom: 0;
}

.wecan-item--3 .wecan-item__fig {
  width: 351px;
  left: 7%;
  bottom: 0;
}

@media only screen and (max-width : 1023px) {
  .wecan {
    margin: 62px 0;
  }

  .wecan .sec-title {
    margin-bottom: 50px;
  }

  .wecan-item {
    margin-bottom: 9px;
    display: block;
    text-align: left;
    height: 633px;
  }

  .wecan-item__main {
    width: 100%;
    display: block;
    padding: 52px 24px;
    height: auto;
    position: absolute;
    bottom: 0;
    left: 0;
    background: linear-gradient(111.44deg, rgba(21, 26, 62, 0.125) 3.92%, rgba(21, 26, 62, 0.5) 32.66%, rgba(21, 26, 62, 0.5) 72.42%, rgba(17, 24, 59, 0.316249) 99.42%);
    backdrop-filter: blur(15.65px);
  }

  .wecan-item__fig {
    bottom: auto;
  }

  .wecan-item--1 .wecan-item__fig {
    width: 110%;
    left: 0;
    top: -20px;
    bottom: auto;
    max-width: unset;
  }

  .wecan-item--2 .wecan-item__fig {
    width: 281px;
    right: 50%;
    bottom: auto;
    top: 44px;
    transform: translateX(50%);
  }

  .wecan-item--3 .wecan-item__fig {
    width: 317px;
    left: 50%;
    bottom: auto;
    top: 91px;
    transform: translateX(-50%);
  }

  .wecan-item--1 {
    background-image: url(../img/wecan-1-mob-min.webp);
  }

  .wecan-item--2 {
    background-image: url(../img/wecan-2-mob-min.webp);
  }

  .wecan-item--3 {
    background-image: url(../img/wecan-3-mob-min.webp);
  }

  .wecan-item--4 {
    background-image: url(../img/wecan-4-mob-min.webp);
  }

  .wecan-item--5 {
    background-image: url(../img/wecan-5-mob-min.webp);
  }

  .wecan-item--6 {
    background-image: url(../img/wecan-6-mob-min.webp);
  }

  .wecan-item--7 {
    background-image: url(../img/wecan-7-mob-min.webp);
  }
}

@media only screen and (max-width : 399px) {
  .wecan-item {
    height: 600px;
  }

  .wecan-item--1 .wecan-item__fig {
    top: 0;
  }

  .wecan-item--2 .wecan-item__fig {
    top: 20px;
  }

  .wecan-item--3 .wecan-item__fig {
    top: 20px;
  }
}

.feedback {
  margin: 132px 0 219px;
  position: relative;
  z-index: 3;
}

.feedback .container::before {
  content: '';
  display: block;
  width: 1764px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: url(../img/feedback-bg-min.webp) center bottom no-repeat #daecfe;
  background-size: 104% auto;
  border-radius: 34px;
  z-index: -1;
  box-shadow: inset 0 0 192.2px #D0EAFF;
}

.feedback__row {
  position: relative;
  padding: 100px 0 0 490px;
}

.feedback__fig {
  position: absolute;
  left: 32px;
  bottom: 150px;
}

.feedback__fig img {
  height: 250px;
}

.feedback-frame {
  position: absolute;
  width: 238px;
  bottom: 48px;
  left: 0;
  z-index: 2;
  background: linear-gradient(250.15deg, #EDFAFF 28.29%, rgba(237, 250, 255, 0.25) 90.12%);
  backdrop-filter: blur(18.8px);
  border-radius: 4px;
  padding: 16px 20px 18px 18px;
  text-align: right;
}

.feedback-frame__name {
  margin-bottom: 4px;
  font-family: 'Yeseva One', serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.33;
  text-transform: uppercase;
  color: #395277;
}

.feedback-frame__state {
  font-size: 14px;
  line-height: 1.29;
  text-align: right;
  color: #687487;
  margin-bottom: 4px;
}

.feedback-frame__tel {
  font-weight: 500;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: .3px;
  color: #395277;
}

.feedback .sec-title {
  margin-bottom: 4px;
  font-family: 'Yeseva One', serif;
  font-weight: 400;
  font-size: 73px;
  line-height: 1.2;
  text-transform: uppercase;
  background: linear-gradient(90.46deg, #02285E 4.37%, #04598A 50.22%, #02285E 89.89%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.feedback-quote {
  font-style: italic;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.17;
  color: #395277;
}

.feedback-quote::before,
.feedback-quote::after {
  display: none;
}

.feedback__main-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: 36px;
  gap: 46px;
}

.feedback-cloud {
  width: 316px;
  flex-shrink: 0;
  padding: 36px 32px 50px;
  position: relative;
  border-radius: 6px;
  background-color: #fff;
  font-size: 18px;
  line-height: 1.89;
  color: rgba(57, 82, 119, .89);
}

.feedback-cloud::before {
  content: '';
  display: block;
  width: 26px;
  height: 13px;
  border-bottom-left-radius: 4px;
  transform: skewX(-45deg);
  background-color: #fff;
  position: absolute;
  bottom: 0;
  left: -13px;
  transform-origin: 0 100%;
}

.feedback-list {
  max-width: 317px;
}

.feedback-list li:not(:last-child) {
  margin-bottom: 16px;
}

.feedback-list li {
  padding-left: 26px;
  position: relative;
  font-size: 18px;
  line-height: 1.33;
  color: #395277;
}

.feedback-list li::before {
  content: '';
  display: block;
  position: absolute;
  top: 7px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(180deg, #FFE484 0%, #FF9A02 100%);
  box-shadow: 0 0 13.5px rgba(255, 154, 2, .53);
}

.feedback-footer {
  top: 80px;
  position: relative;
  z-index: 5;
}

.feedback-footer .feedback-form {
  max-width: 1003px;
  position: relative;
  background: linear-gradient(180deg, #0F4873 0%, #2A6A99 100%);
  border-radius: 20px;
  padding: 52px 64px 68px;
}

.feedback .form-blc__subtitle {
  margin-bottom: 17px;
  font-size: 40px;
  line-height: 53px;
  text-transform: uppercase;
  background: linear-gradient(86.1deg, #DCF1FF 5.23%, #FFFFFF 46.06%, #DCF1FF 90.29%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.feedback .form-blc__subtitle span {
  max-width: 444px;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.33;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: #DCF1FF;
  margin-bottom: 13px;
}

.feedback-footer .form {
  padding: 0;
  background: none;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 11px 6px;
  max-width: 816px;
}

.feedback-footer .form-txt {
  width: 100%;
  color: #85B1C0;
}

.feedback-footer .btn--main {
  width: 250px;
}

.feedback-footer input {
  width: calc((100% - 250px - 12px) / 2);
  border: 1px solid rgba(214, 225, 240, .3);
  border-radius: 3px;
  color: #fff;
}

.feedback-footer .feedback-form::before {
  content: '';
  display: block;
  background: url(../img/feedback-phone-min.webp) center center no-repeat;
  background-size: contain;
  width: 397px;
  height: 463px;
  position: absolute;
  top: -62px;
  right: -147px;
  z-index: 2;
  user-select: none;
  pointer-events: none;
}

@media only screen and (max-width : 1099px) {
  .feedback__main-row {
    align-items: flex-start;
    margin-top: 32px;
    gap: 32px;
    flex-direction: column;
  }

  .feedback-list {
    max-width: unset;
  }

  .feedback__fig {
    bottom: -83px;
  }

  .feedback-cloud {
    width: 100%;
    padding-bottom: 36px;
  }
}

@media only screen and (max-width : 1023px) {
  .feedback .container {
    padding-top: 373px;
  }

  .feedback .container::before {
    width: 480px;
    max-width: 100vw;
    background: url(../img/feedback-bg-min.webp) center 0 no-repeat #daecfe;
    background-size: 170% auto;
    border-radius: 24px;
  }

  .feedback {
    margin: 62px 0 515px;
  }

  .feedback__row {
    position: relative;
    padding: 58px 38px 218px;
    background: linear-gradient(42.99deg, #fff 6.42%, rgba(255, 255, 255, 0.63) 108.89%);
    backdrop-filter: blur(50.7px);
    border-radius: 24px;
    width: calc(100% + 30px);
    margin-left: -15px;
  }

  .feedback__fig {
    left: auto;
    bottom: auto;
    top: -380px;
    right: -15px;
  }

  .feedback__fig img {
    height: 250px;
  }

  .feedback-frame {
    bottom: auto;
    top: -188px;
    left: 64px;
  }

  .feedback .sec-title {
    margin-bottom: 0;
    font-size: 40px;
    line-height: 1.2;
    text-align: left;
    position: absolute;
    top: -360px;
    left: 30px;
    width: 230px;
  }

  .feedback-quote {
    padding-bottom: 32px;
    border-bottom: 1px solid #D5E8F7;
    font-weight: 500;
    display: block;
  }

  .feedback__main-row {
    display: block;
    margin-top: 30px;
    gap: 0;
  }

  .feedback-list {
    max-width: unset;
  }

  .feedback-footer {
    top: 100%;
    left: 15px;
    margin-top: -162px;
    position: absolute;
    right: 15px;
  }

  .feedback-footer .feedback-form {
    padding: 64px 36px;
  }

  .feedback-footer .form-blc__subtitle {
    margin-bottom: 21px;
    text-align: left;
  }

  .feedback-footer .form {
    align-items: stretch;
    flex-direction: column;
    gap: 8px;
    max-width: 320px;
  }

  .feedback-footer .btn--main {
    width: 100%;
  }

  .feedback-footer input {
    width: 100%;
  }

  .feedback-footer .feedback-form::before {
    width: 222px;
    height: 253px;
    top: 23px;
    right: -40px;
  }
}

@media only screen and (max-width : 414px) {
  .feedback {
    margin-bottom: 605px;
  }

  .feedback-footer .feedback-form {
    padding-left: 26px;
    padding-right: 26px;
  }

  .feedback .form-blc__subtitle {
    padding-right: 60px;
  }

  .feedback__fig {
    right: -65px;
  }
}

.create {
  margin: 219px 0 174px;
  position: relative;
}

.create::after,
.create::before {
  content: '';
  display: block;
  width: 1920px;
  height: 1920px;
  position: absolute;
  top: -432px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 40px;
}

.create::before {
  background: url(../img/create-bg-min.webp) center center no-repeat;
  background-size: cover;
}

.create::after {
  background: linear-gradient(180deg, #0B1537 0.52%, rgba(11, 21, 55, 0) 35.64%, rgba(11, 21, 55, 0) 84.35%, #0B1537 100%);
}

.create-header {
  position: relative;
  margin-bottom: 84px;
}

.create-header .sec-title {
  background: linear-gradient(98.41deg, #A9DBFF -50.02%, #A9DBFF -13.29%, #F9FDFF 53.12%, #B8EAFF 163.11%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  text-align: center;
}

.create-header .sec-title span {
  margin-top: 26px;
  background: #9CB1D6;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  text-align: center;
}

.create-header .sec-header__txt {
  position: absolute;
  width: 286px;
  bottom: -16px;
  left: 56px;
  padding: 27px 54px 26px 20px;
  background: linear-gradient(296.04deg, rgba(2, 40, 94, 0.73) -6.64%, rgba(11, 21, 55, 0.24) 104.3%);
  backdrop-filter: blur(13.15px);
  border-radius: 4px;
  color: rgba(255, 255, 255, .6);
  text-align: right;
}

.create-header .sec-header__txt::before {
  left: auto;
  right: 27px;
}

.create-list {
  position: relative;
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  max-width: 984px;
  margin: 0 auto;
  transform: translateX(20px);
}

.create-list::before {
  content: '';
  display: block;
  background: url(../img/create-path.svg) center center no-repeat;
  background-size: contain;
  width: 2008px;
  height: 681px;
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
}

.create-item {
  display: flex;
  justify-content: flex-start;
  text-align: right;
}

.create-item:nth-child(odd) {
  flex-direction: row-reverse;
  text-align: left;
}

.create-item__main {
  width: 452px;
  max-width: calc(50% - 40px);
  background: linear-gradient(270deg, rgba(2, 40, 94, 0.47) 45.05%, rgba(2, 40, 94, 0) 127.54%);
  backdrop-filter: blur(78.1px);
  padding: 30px 22px 30px 26px;
  color: #fff;
  position: relative;
}

.create-item__title {
  margin-bottom: 11px;
  font-family: 'Yeseva One', serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 120%;
  text-transform: uppercase;
}

.create-item__txt {
  font-size: 16px;
  line-height: 120%;
}

.create-item__main::before {
  content: '';
  display: block;
  background: url(../img/add.svg) center center no-repeat;
  background-size: contain;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  position: absolute;
  bottom: -5px;
  filter: drop-shadow(0px 0px 27.4px #00F5F5);
}

.create-item:nth-child(odd) .create-item__main::before {
  left: -53px;
}

.create-item:nth-child(even) .create-item__main::before {
  right: -53px;
}

@media only screen and (max-width : 1199px) {
  .create-header .sec-header__txt {
    left: 0;
  }
}

@media only screen and (max-width : 1099px) {
  .create-header .sec-header__txt {
    position: relative;
    width: 288px;
    margin: 27px auto 0;
    bottom: 0;
    left: 0;
    padding: 51px 22px 130px;
    text-align: center;
    color: #fff;
  }

  .create-header .sec-header__txt::before {
    top: 24px;
    left: 50%;
    margin-left: -4px;
  }

  .create-header {
    margin-bottom: -80px;
  }
}

@media only screen and (max-width : 1023px) {
  .create {
    margin: 515px 0 98px;
  }

  .create::after,
  .create::before {
    width: 1544px;
    height: 1435px;
    top: 0;
    border-radius: 24px;
  }

  .create-list {
    gap: 74px;
    transform: none;
    justify-content: center;
    height: 899px;
    padding-bottom: 30px;
  }

  .create-list::before {
    background-image: url(../img/create-path-mob.svg);
    width: 1054px;
    height: 899px;
    position: absolute;
    top: -30px;
    left: 15px;
    transform: none;
  }

  .create-item {
    display: block;
    text-align: left;
  }

  .create-item__main {
    width: 100%;
    max-width: unset;
    padding: 29px 22px 30px 50px;
  }

  .create-item__main::before {
    bottom: auto;
    top: 27px;
    left: 13px;
  }

  .create-item:nth-child(odd) .create-item__main::before {
    left: 13px;
  }

  .create-item:nth-child(even) .create-item__main::before {
    right: auto;
  }
}

@media only screen and (max-width : 414px) {
  .create-list {
    gap: 30px;
    padding-bottom: 50px;
  }
}


.carusel-sec {
  position: relative;
  z-index: 3;
}

.carusel-sec .container {
  padding-top: 94px;
  padding-bottom: 141px;
}

.carusel-sec .container::before {
  content: '';
  display: block;
  width: 1764px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: #EDFAFF;
  background-size: 104% auto;
  border-radius: 34px;
  z-index: -1;
}

.carusel-sec .sec-title {
  text-align: center;
  margin-bottom: 25px;
  font-family: 'Yeseva One', serif;
  line-height: 1.2;
  background: linear-gradient(90.46deg, #02285E 4.37%, #04598A 50.22%, #02285E 89.89%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.carusel-sec .sec-title span {
  color: #859ECB;
  background: #859ECB;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  margin-bottom: 15px;
}

.carusel {
  padding-bottom: 52px;
  position: relative;
  max-width: 1124px;
  margin: 0 auto;
}

.carusel__row {
  padding: 19px 0 28px;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  gap: 13px;
}

.carusel-item {
  position: relative;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  flex-direction: column;
}

.carusel-item__price {
  position: absolute;
  top: -19px;
  left: 50%;
  transform: translateX(-50%);
  width: fit-content;
  white-space: nowrap;
  padding: 7px 19px;
  background: linear-gradient(92.63deg, rgba(11, 21, 55, 0.78) 0%, rgba(4, 87, 137, 0.78) 48.5%, rgba(11, 21, 55, 0.78) 96.5%);
  backdrop-filter: blur(4.5px);
  border-radius: 3px;
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  text-align: center;
  color: #F5FDFF;
}

.carusel-item__pic {
  border-radius: 7px;
  overflow: hidden;
}

.carusel-item__pic img {
  width: 100%;
  height: 100%;
  max-width: unset;
  object-fit: cover;
  object-position: center;
}

.carusel-item__main {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  border-radius: 0 0 7px 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 29px 24px;
  background: #FFFFFF;
  border: 1px solid #D8E7F2;
  backdrop-filter: blur(29.55px);
  height: 120px;
  overflow: hidden;
}

.carusel-item__title {
  font-family: 'Yeseva One', serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  background: linear-gradient(90.46deg, #02285E 4.37%, #04598A 50.22%, #02285E 89.89%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.carusel-item__btn {
  position: absolute;
  bottom: -28px;
  right: 29px;
  left: 29px;
  z-index: 3;
  text-align: center;
  line-height: 41px;
}

.carusel__pagination {
  bottom: 0;
  position: absolute;
  z-index: 10;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
}

.carusel__pagination .swiper-pagination-bullet {
  margin: 0;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background-color: #395277;
  opacity: .2;
  transition: opacity .25s;
}

.carusel__pagination .swiper-pagination-bullet.swiper-pagination-bullet-active,
.carusel__pagination .swiper-pagination-bullet:hover {
  opacity: 1;
}

.carusel__pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  cursor: default;
}

@media only screen and (max-width : 1023px) {
  .carusel-sec .container::before {
    width: 480px;
    max-width: 100vw;
    border-radius: 24px;
  }

  .carusel-sec .container {
    padding-top: 63px;
    padding-bottom: 63px;
  }

  .carusel-sec .sec-title {
    margin-bottom: 42px;
  }

  .carusel-sec .sec-title span {
    margin-bottom: 13px;
  }

  .carusel__row {
    padding-top: 22px;
    flex-direction: column;
    gap: 102px;
  }

  .carusel-item__price {
    position: absolute;
    top: -22px;
    padding: 8px 22px;
    font-size: 20px;
    line-height: 27px;
  }

  .carusel-item__pic {
    height: 364px;
  }
}

.old {
  margin: 146px 0 106px;
  position: relative;
}

.old::after,
.old::before {
  content: '';
  display: block;
  width: 1920px;
  height: 1312px;
  position: absolute;
  top: -418px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 40px;
}

.old::before {
  background: url(../img/old-bg-2-min.webp) center center no-repeat;
  background-size: cover;
}

.old-header {
  margin-bottom: 104px;
  padding-left: 507px;
  position: relative;
}

.old-fig {
  position: absolute;
  top: -109px;
  left: 102px;
  width: 452px;
}

.old-cloud {
  position: relative;
  z-index: 2;
  width: 562px;
}

.old-cloud .sec-title {
  position: absolute;
  z-index: 2;
  top: 36px;
  left: 69px;
  right: 16px;
  font-family: 'Yeseva One', serif;
  font-weight: 400;
  font-size: 48px;
  line-height: 1.2;
  text-transform: uppercase;
  background: linear-gradient(97.31deg, #02285E 9.78%, #134E94 49.33%, #02285E 98.36%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.old-cloud .sec-title span {
  margin-top: 10px;
  line-height: 24px;
  color: #395277;
  background: #395277;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.old-main {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 16px;
  position: relative;
}

.old-main::before {
  content: '';
  display: block;
  width: 400px;
  height: 400px;
  position: absolute;
  bottom: -134px;
  left: -112px;
  background: #EF001E;
  opacity: .4;
  border-radius: 50%;
  filter: blur(145.3px);
}

.old-main::after {
  content: '';
  display: block;
  width: 400px;
  height: 400px;
  position: absolute;
  bottom: -112px;
  right: -156px;
  background: #01FFE0;
  opacity: .4;
  border-radius: 50%;
  filter: blur(145.3px);
}

.old-item {
  position: relative;
  width: calc(50% - 8px);
  border-radius: 10px;
  z-index: 3;
  min-height: 615px;
}

.old-item__fig {
  position: absolute;
  bottom: 0;
  left: 0;
  border-bottom-left-radius: 10px;
}

.old-item--red {
  background: linear-gradient(180deg, #D36372 -4.47%, #AA192C 100%);
  border: 1px solid rgba(242, 178, 187, .44);
  color: #F6FCFF;
}

.old-item--red .old-item__fig {
  width: 202px;
}

.old-item--green {
  background: #EDFAFF;
  border: 1px solid #99C0DD;
  box-shadow: -48px 2px 148.1px -34px rgba(0, 0, 0, .35);
  color: #02285E;
}

.old-item--green .old-item__fig {
  width: 216px;
  bottom: -1px;
  left: -1px;
}

.old-item__header {
  padding: 55px 20px 34px;
  border-bottom: 1px solid;
  font-family: 'Yeseva One', serif;
  font-weight: 400;
  font-size: 32px;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  position: relative;
}

.old-item__header img {
  position: absolute;
  display: block;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
  border-radius: 50%;
}

.old-item--red .old-item__header {
  border-bottom-color: rgba(255, 255, 255, .12);
  color: #F6FCFF;
}

.old-item--red .old-item__header img {
  filter: drop-shadow(0 0 7.4px rgba(174, 31, 50, .3));
}

.old-item--green .old-item__header {
  border-bottom-color: #C2DFF0;
  background: linear-gradient(91.43deg, #02285E 0%, #04598A 49.24%, #02285E 97.5%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.old-item--green .old-item__header img {
  filter: drop-shadow(0 0 7.4px #00F5F5);
}

.old-item__top {
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(93.18deg, #0B1537 -12.12%, #0487AE 12.11%, #35B8CA 54.73%, #0486AD 89.95%, #0B1537 113.25%);
  box-shadow: 0 21px 27.3px -14px rgba(0, 0, 0, .83);
  border-radius: 3px;
  padding: 10px 23px;
  text-align: center;
  white-space: nowrap;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.33;
  text-transform: uppercase;
  color: #F5FDFF;
}

.old-item__list {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  padding: 42px 34px 24px 40px;
  font-size: 20px;
  line-height: 120%;
  gap: 46px;
}

.old-item__list b {
  font-weight: 600;
}

.old-item--red .old-item__list li:nth-child(2) {
  padding-left: 155px;
}

.old-item--red .old-item__list li:nth-child(3) {
  padding-left: 196px;
}

.old-item--green .old-item__list {
  font-size: 18px;
}

.old-item--green .old-item__list li:nth-child(2) {
  padding-left: 155px;
}

.old-item--green .old-item__list li:nth-child(3) {
  padding-left: 196px;
}

@media only screen and (max-width : 1149px) {
  .old-fig {
    left: 0;
  }

  .old-header {
    padding-left: 417px;
  }
}

@media only screen and (max-width : 1023px) {
  .old {
    margin: 63px 0 85px;
  }

  .old::after,
  .old::before {
    height: 841px;
    top: -28px;
    border-radius: 24px;
  }

  .old::before {
    background: url(../img/old-bg-2-mob-min.webp) center center no-repeat;
    background-size: auto 100%;
  }

  .old-header {
    margin-bottom: 356px;
    padding-left: 0;
    text-align: center;
  }

  .old-cloud {
    width: 100%;
  }

  .old-cloud .sec-title {
    position: static;
    font-size: 40px;
    line-height: 1.2;
    text-align: center;
    background: linear-gradient(96.91deg, #A9DBFF -3.18%, #F9FDFF 32.8%, #F1FBFF 58.2%, #B8EAFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
  }

  .old-cloud .sec-title span {
    margin-top: 12px;
    color: #9CB1D6;
    background: #9CB1D6;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
  }

  .old-main {
    flex-direction: column;
    gap: 40px;
  }

  .old-main::before,
  .old-main::after {
    display: none;
  }

  .old-item {
    width: 100%;
    min-height: unset;
  }

  .old-item::before {
    content: '';
    display: block;
    width: 58px;
    height: 58px;
    top: 0;
    left: 50%;
    margin: -29px 0 0 -29px;
    background: center center no-repeat;
    background-size: contain;
    position: absolute;
  }

  .old-item--red::before {
    background-image: url(../img/old-no-mob-min.webp);
  }

  .old-item--green::before {
    background-image: url(../img/old-yes-mob-min.webp);
  }

  .old-item__fig {
    display: none;
  }

  .old-item__header {
    padding: 55px 20px 25px;
    line-height: 1.22;
  }

  .old-item__header img {
    display: none;
  }

  .old-item__top {
    top: auto;
    bottom: -22px;
  }

  .old-item__list {
    padding: 36px 32px 50px 19px;
    font-size: 18px;
    line-height: 133%;
    gap: 20px;
  }

  .old-item--green .old-item__list {
    padding-bottom: 60px;
  }

  .old-item__list li {
    position: relative;
    padding-left: 46px !important;
  }

  .old-item__list li::before {
    content: '';
    display: block;
    position: absolute;
    top: 12px;
    left: 0;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: center center no-repeat;
    background-size: contain;
  }

  .old-item--red .old-item__list li::before {
    background-image: url(../img/del.svg);
    filter: drop-shadow(0 0 7px rgba(174, 31, 50, .3));
  }

  .old-item--green .old-item__list li::before {
    background-image: url(../img/add.svg);
    filter: drop-shadow(0 0 7px #00F5F5);
  }
}

@media only screen and (max-width : 490px) {
  .old-item__header {
    font-size: 24px;
  }
}

.reviews-sec .container::before {
  content: '';
  display: block;
  width: 1764px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background:
    url(../img/reviews-left-min.webp) 0 86px no-repeat,
    url(../img/reviews-right-min.webp) right 86px no-repeat,
    #EDFAFF;
  background-size:
    435px auto,
    435px auto,
    auto auto;
  border-radius: 34px;
  z-index: -1;
}

.reviews-sec .container::after {
  content: '';
  display: block;
  width: 793px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: 89px;
  background: linear-gradient(180deg, rgba(205, 233, 253, 0) 20.52%, #CDE9FD 72.68%);
  border-radius: 0 34px 34px 0;
  z-index: -1;
}

.reviews-sec .sec-title {
  padding-top: 80px;
  margin: 0 auto 50px;
  max-width: 814px;
  text-align: center;
  background: linear-gradient(90.46deg, #02285E 4.37%, #04598A 50.22%, #02285E 89.89%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.reviews-sec .sec-title span {
  color: #859ECB;
  background: #859ECB;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.reviews-sec__overlay {
  width: 1764px;
  position: relative;
  left: 50%;
  overflow: hidden;
  transform: translateX(-50%);
  padding: 10px 0 62px;
}

.reviews {
  overflow: visible;
}

.reviews .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}

.reviews .swiper-slide .reviews-slide {
  transform: scale(.71145);
  transition: transform .5s, opacity .5s;
  opacity: .46;
}

.reviews .swiper-slide.swiper-slide-prev .reviews-slide,
.reviews .swiper-slide.swiper-slide-next .reviews-slide {
  opacity: 1;
  transform: scale(.85317);
}

.reviews .swiper-slide.swiper-slide-active .reviews-slide {
  opacity: 1;
  transform: scale(1.03743);
  box-shadow: 0 25px 18.8px -16px rgba(0, 0, 0, .4);
}

.reviews .swiper-slide.swiper-slide-prev .reviews-slide {
  transform-origin: 0 50%;
}

.reviews .swiper-slide.swiper-slide-next .reviews-slide {
  transform-origin: 100% 50%;
}

.reviews-slide {
  overflow: hidden;
  border-radius: 7px;
}

.swiper-pagination-horizontal.reviews__pagination {
  bottom: -60px;
  position: absolute;
  z-index: 10;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
}

.reviews__pagination .swiper-pagination-bullet {
  margin: 0;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background-color: #395277;
  opacity: .2;
  transition: opacity .25s;
  margin: 0 !important;
}

.reviews__pagination .swiper-pagination-bullet.swiper-pagination-bullet-active,
.reviews__pagination .swiper-pagination-bullet:hover {
  opacity: 1;
}

.reviews__pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  cursor: default;
}

.reviews-sec__row {
  margin-top: 81px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: 18px;
  position: relative;
}

.reviews-sec__row::after {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: -292px;
  border-bottom-left-radius: 34px;
  background: url(../img/reviews-bg-min.webp) 0 bottom no-repeat;
  background-size: contain;
  width: 807px;
  height: 580px;
}

.reviews-sec__main {
  width: 680px;
  padding-right: 65px;
  flex-shrink: 0;
}

.reviews-sec__main .sec-title {
  text-align: left;
  margin-bottom: 16px;
  padding-top: 0;
}

.reviews-sec__main .sec-title span {
  margin-bottom: 20px;
}

.reviews-sec__txt {
  font-size: 18px;
  line-height: 1.22;
  color: #02285E;
}

.reviews-sec__txt b {
  font-weight: 600;
}

.reviews-sec__txt p:not(:last-child) {
  margin-bottom: 1.22em;
}

.reviews-sec__logo {
  margin: 74px 0 0 280px;
  width: 183px;
}

.reviews-sec__counters {
  flex-grow: 1;
}

.reviews-sec-counter {
  margin-bottom: 32px;
  padding-left: 65px;
  position: relative;
}

.reviews-sec-counter::before {
  content: '';
  display: block;
  width: 38px;
  height: 38px;
  position: absolute;
  top: 26px;
  left: -19px;
  border-radius: 50%;
  background: url(../img/add.svg) center center no-repeat;
  background-size: 100% auto;
}

.reviews-sec-counter:last-child {
  margin-bottom: 0;
}

.reviews-sec-counter__numb {
  font-family: 'Unbounded', sans-serif;
  font-weight: 900;
  font-size: 87px;
  line-height: 92%;
  text-transform: uppercase;
  color: #A4C9E4;
  margin-bottom: 6px;
}

.reviews-sec-counter__txt {
  max-width: 424px;
  font-size: 20px;
  line-height: 1.2;
  color: #395277;
}

@media only screen and (max-width : 1224px) {
  .reviews-sec__main {
    width: calc(50% + 89px);
  }

  .reviews-sec__main .sec-title {
    font-size: 40px;
    line-height: 1.2;
    margin-bottom: 38px;
  }

  .reviews-sec__main .sec-title span {
    margin-bottom: 12px;
  }
}

@media only screen and (max-width : 1023px) {
  .reviews-sec .container::before {
    width: 480px;
    max-width: 100vw;
    border-radius: 24px;
    background: #EDFAFF;
  }

  .reviews-sec .container::after {
    display: none;
  }

  .reviews-sec .sec-title {
    padding-top: 63px;
    margin-bottom: 43px;
  }

  .reviews-sec .sec-title span {
    margin-top: 13px;
  }

  .reviews-sec__overlay {
    width: 480px;
    padding: 0 0 40px;
  }

  .reviews {
    width: 100%;
    max-width: 304px;
    margin: 0 auto;
  }

  .reviews .swiper-slide.swiper-slide-prev .reviews-slide,
  .reviews .swiper-slide.swiper-slide-next .reviews-slide,
  .reviews .swiper-slide .reviews-slide {
    transform: scale(.83551);
    transition: transform .5s, opacity .5s;
    opacity: .71;
    transform-origin: 100% 50%;
  }

  .reviews .swiper-slide.swiper-slide-active .reviews-slide {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 25px 18.8px -16px rgba(0, 0, 0, .4);
  }

  .reviews .swiper-slide.swiper-slide-prev .reviews-slide {
    transform-origin: 100% 50%;
  }

  .reviews .swiper-slide.swiper-slide-next~.swiper-slide .reviews-slide,
  .reviews .swiper-slide.swiper-slide-next .reviews-slide {
    transform-origin: 0 50%;
  }

  .swiper-pagination-horizontal.reviews__pagination {
    bottom: -40px;
    gap: 11px;
  }

  .reviews-sec__row {
    margin-top: 70px;
    display: block;
    padding-bottom: 0;
  }

  .reviews-sec__row::after {
    left: -15px;
    border-radius: 0 0 24px 24px;
    width: 480px;
    max-width: 100vw;
    height: 345px;
    z-index: 10;
    background-size: 480px auto;
  }

  .reviews-sec__main {
    width: 100%;
    padding: 0 20px;
    margin-bottom: 40px;
  }

  .reviews-sec__main .sec-title {
    text-align: center;
    margin-bottom: 38px;
    padding-top: 0;
  }

  .reviews-sec__main .sec-title span {
    margin-bottom: 13px;
  }

  .reviews-sec__logo {
    margin: 0;
    width: 138px;
    position: absolute;
    left: 50%;
    bottom: 120px;
    transform: translateX(-50%);
    z-index: 11;
  }

  .reviews-sec__counters {
    padding-bottom: 265px;
    position: relative;
  }

  .reviews-sec__counters::before {
    content: '';
    display: block;
    position: absolute;
    left: 20px;
    top: -34px;
    bottom: 0;
    right: -15px;
    background: linear-gradient(rgba(205, 233, 253, 0) 0.15%, #CDE9FD 100%);
    border-bottom-right-radius: 24px;
  }

  .reviews-sec-counter {
    padding-left: 58px;
  }

  .reviews-sec-counter::before {
    top: 19px;
    left: 2px;
  }
}

@media only screen and (max-width : 414px) {
  .reviews-sec-counter__txt br {
    display: none;
  }

  .reviews-sec .sec-title {
    font-size: 32px;
    line-height: 1.2;
  }
}

.licens-sec {
  margin: 134px 0 81px;
  position: relative;
}

.licens-sec::after {
  content: '';
  display: block;
  position: absolute;
  width: 1180px;
  height: 174px;
  top: -277px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  background: #00B3FF;
  filter: blur(131.65px);
}

.licens-sec::before {
  content: '';
  display: block;
  width: 1920px;
  height: 1090px;
  position: absolute;
  top: -287px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 40px;
  background: url(../img/licens-bg-min.png) center center no-repeat;
  background-size: cover;
}

.licens__wrap {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
}

.licens__wrap::after {
  content: '';
  display: block;
  position: absolute;
  width: 313px;
  height: 139px;
  bottom: -163px;
  left: -109px;
  border-radius: 50%;
  background: #00B3FF;
  filter: blur(157.65px);
}

.licens__main {
  width: 464px;
  flex-shrink: 0;
  padding-right: 40px;
}

.licens__gallery {
  width: calc(100% - 464px);
}

.licens-sec .sec-title {
  margin-bottom: 32px;
  background: linear-gradient(96.91deg, #A9DBFF -3.18%, #F9FDFF 32.8%, #F1FBFF 58.2%, #B8EAFF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.licens-sec .sec-title span {
  margin-top: 11px;
  color: #9CB1D6;
  background: #9CB1D6;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.licens-sec .sec-header__txt {
  max-width: 379px;
  color: rgba(255, 255, 255, .6);
  background: linear-gradient(296.04deg, rgba(2, 40, 94, 0.73) -6.64%, rgba(11, 21, 55, 0.24) 104.3%);
  backdrop-filter: blur(13.15px);
  padding: 27px 19px 26px 47px;
}

.licens-sec .sec-header__txt::before {
  left: 20px;
}

.licens-slide {
  display: block;
  overflow: hidden;
  border-radius: 7px;
}

.swiper-pagination-horizontal.licens__pagination {
  margin-top: 20px;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 11px;
}

.licens__pagination .swiper-pagination-bullet {
  margin: 0;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background-color: #00B2FF;
  opacity: .23;
  transition: opacity .25s;
  margin: 0 !important;
}

.licens__pagination .swiper-pagination-bullet.swiper-pagination-bullet-active,
.licens__pagination .swiper-pagination-bullet:hover {
  opacity: 1;
}

.licens__pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  cursor: default;
}

@media only screen and (max-width : 1199px) {
  .licens__main {
    width: 416px;
    padding-right: 30px;
    margin-top: -22px;
  }

  .licens__gallery {
    width: calc(100% - 416px);
  }
}

@media only screen and (max-width : 1023px) {
  .licens-sec {
    margin: 63px 0;
  }

  .licens-sec::before {
    height: 1090px;
    top: -6px;
    border-radius: 24px;
    background-size: auto 100%;
  }

  .licens-sec::after {
    width: 416px;
    height: 89px;
    top: -115px;
    filter: blur(88.05px);
  }

  .licens__wrap {
    display: block;
  }

  .licens__wrap::after {
    display: none;
  }

  .licens__main {
    width: 100%;
    padding-right: 0;
    margin-bottom: 40px;
  }

  .licens__gallery {
    width: 100%;
    max-width: 304px;
    margin: 0 auto;
  }

  .licens-sec .sec-title {
    margin-bottom: 26px;
    text-align: center;
  }

  .licens-sec .sec-header__txt {
    max-width: 342px;
    padding: 52px 13px 26px;
    color: #fff;
    margin: 0 auto;
  }

  .licens-sec .sec-header__txt::before {
    left: 50%;
  }

  .licens {
    overflow: visible;
  }

  .swiper-pagination-horizontal.licens__pagination {
    margin-top: 40px;
    justify-content: center;
  }

  .licens .swiper-slide .licens-slide {
    transform: scale(.83551) translateX(60px);
    transition: transform .5s, opacity .5s;
    opacity: .71;
    transform-origin: 100% 50%;
  }

  .licens .swiper-slide.swiper-slide-active .licens-slide {
    opacity: 1;
    transform: scale(1) translateX(0);
    box-shadow: 0 25px 18.8px -16px rgba(0, 0, 0, .4);
    transform-origin: 50% 50%;
  }

  .licens .swiper-slide.swiper-slide-prev .licens-slide,
  .licens .swiper-slide.swiper-slide-next .licens-slide {
    transform: scale(.83551) translateX(0);
  }

  .licens .swiper-slide.swiper-slide-prev .licens-slide {
    transform-origin: 100% 50%;
  }

  .licens .swiper-slide.swiper-slide-next~.swiper-slide .licens-slide,
  .licens .swiper-slide.swiper-slide-next .licens-slide {
    transform-origin: 0 50%;
  }

  .licens .swiper-slide.swiper-slide-next~.swiper-slide .licens-slide {
    transform: scale(.83551) translateX(-60px);
  }
}

.order-sec {
  position: relative;
  z-index: 3;
  margin-bottom: -195px;
}

.order-sec__wrap {
  overflow: hidden;
  background: linear-gradient(180deg, #228BC7 0%, #04598A 100%);
  backdrop-filter: blur(30.75px);
  border-radius: 17px;
  position: relative;
  padding: 64px 70px;
}

.order-sec__wrap::after {
  content: '';
  display: block;
  position: absolute;
  background: url(../img/order-sec-min.webp) right bottom no-repeat;
  background-size: contain;
  width: 587px;
  height: 368px;
  bottom: 0;
  left: 593px;
  z-index: 10;
  user-select: none;
  pointer-events: none;
}

.order-sec__main {
  max-width: 609px;
}

.order-sec__title {
  font-family: 'Yeseva One', serif;
  font-weight: 400;
  font-size: 40px;
  line-height: 1.2;
  text-transform: uppercase;
  background: linear-gradient(97.15deg, #A9DBFF -8.37%, #F9FDFF 21.77%, #F1FBFF 78.38%, #B8EAFF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.order-sec__title span {
  display: block;
  margin-bottom: 12px;
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.33;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: #CBD9F2;
  background: #CBD9F2;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;


}

.order-sec__br {
  margin: 13px 0 23px;
  max-width: 320px;
  height: 1px;
  background-color: #fff;
  opacity: .21;
}

.order-sec__txt {
  max-width: 438px;
  font-size: 16px;
  line-height: 1.25;
  color: #EDFAFF;
}

.order-sec__txt b {
  font-weight: 600;
}

.action-btn--order {
  top: 82px;
  left: 708px;
  z-index: 11;
}

@media only screen and (max-width : 1023px) {
  .order-sec {
    margin-bottom: -340px;
  }

  .order-sec__wrap {
    background: linear-gradient(180deg, #0F4873 0%, #228BC7 100%);
    border-radius: 20px;
    padding: 64px 36px 312px;
  }

  .order-sec__wrap::after {
    width: 487px;
    height: 305px;
    bottom: 0;
    left: auto;
    right: 0;
  }

  .order-sec__title {
    margin-bottom: 12px;
  }

  .order-sec__title span {
    font-size: 16px;
    letter-spacing: 4px;
  }

  .order-sec__br {
    display: none;
  }

  .action-btn--order {
    top: auto;
    bottom: 153px;
    left: 50%;
    transform: translateX(-50%);
  }
}

@media only screen and (max-width : 414px) {
  .order-sec__title {
    font-size: 32px;
  }

  .order-sec__wrap {
    padding-left: 30px;
    padding-right: 30px;
  }
}


.contacts .container::before {
  content: '';
  display: block;
  width: 1764px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: url(../img/contacts-bg-min.webp) center 0 no-repeat #fff;
  background-size: 100% auto;
  border-radius: 34px;
  z-index: -1;
}

.contacts .container {
  padding-top: 293px;
  padding-bottom: 150px;
}

.contacts .sec-title {
  margin-bottom: 30px;
  text-align: center;
  background: linear-gradient(90.46deg, #02285E 4.37%, #04598A 50.22%, #02285E 89.89%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.contacts__top {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 11px;
  margin-bottom: 43px;
}

.contacts__photo {
  width: 504px;
  flex-shrink: 0;
  border-radius: 7px;
  overflow: hidden;
}

.contacts__map {
  flex-grow: 1;
}

.contacts__map {
  border: 1px solid #ADC0DA;
  overflow: hidden;
  border-radius: 7px;
}

.contacts__row {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 30px;
}

.contacts__row-br {
  width: 1px;
  flex-shrink: 0;
  background-color: #C9DFE8;
}

.contacts-col__title {
  margin-bottom: 18px;
  font-weight: 400;
  font-size: 20px;
  line-height: 120%;
  color: #0B1537;
}

.contacts-col__title b {
  font-weight: 500;
}

.contacts-item {
  display: block;
  margin-top: 8px;
  position: relative;
  padding-left: 28px;
}

.contacts-item::before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 18px;
  background: center center no-repeat;
  background-size: contain;
}

.contacts-item__address {
  font-size: 18px;
  line-height: 1.33;
  color: #395277;
  font-style: normal;
  max-width: 355px;
}

.contacts-item__address::before {
  background-image: url(../img/contacts-loc.svg);
}

.contacts-item__tel::before {
  background-image: url(../img/contacts-tel.svg);
}

.contacts-item__mail::before {
  background-image: url(../img/contacts-mail.svg);
}

.contacts-item__tel {
  width: fit-content;
  font-weight: 600;
  font-size: 24px;
  line-height: 1.88;
  text-transform: uppercase;
  color: #0B1537;
}

.contacts-item__mail {
  width: fit-content;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: .3px;
  color: #395277;
}

.contacts-item__mail:hover {
  text-decoration: underline;
}

@media only screen and (max-width : 1023px) {
  .contacts .container::before {
    width: 480px;
    max-width: 100vw;
    border-radius: 0;
    background: #fff;
  }

  .contacts .container {
    padding-top: 400px;
    padding-bottom: 368px;
  }

  .contacts .sec-title {
    margin-bottom: 24px;
  }

  .contacts__top {
    flex-direction: column-reverse;
    gap: 9px;
    margin-bottom: 40px;
  }

  .contacts__photo {
    width: 100%;
  }

  .contacts__map {
    width: 100%;
    height: 400px;
  }

  .contacts__row {
    flex-direction: column;
    max-width: 366px;
    margin: 0 auto;
    gap: 37px;
  }

  .contacts__row-br {
    height: 1px;
    width: 100%;
  }

  .contacts-col__title {
    margin-bottom: 27px;
    font-size: 24px;
    line-height: 1;
  }
}

.footer {
  position: relative;
  z-index: 4;
  margin-top: -87px;
}

.footer::before,
.footer::after {
  content: '';
  display: block;
  position: absolute;
  border-radius: 50%;
}

.footer::before {
  top: 0;
  left: -14px;
  width: 262px;
  height: 268px;
  background-color: #00B3FF;
  filter: blur(199.7px);
}

.footer::after {
  width: 1330px;
  height: 219px;
  bottom: -157px;
  left: 50%;
  transform: translateX(-50%);
  background: #00B3FF;
  filter: blur(171.25px);
}

.footer-frame {
  margin-bottom: 80px;
  background-color: #EDFAFF;
  backdrop-filter: blur(30.75px);
  border-radius: 17px;
  position: relative;
}

.footer-frame--p {
  background: #fff;
  border-radius: 20px;
  backdrop-filter: unset;
}

.footer-frame__img {
  position: absolute;
  width: 236px;
  left: 49px;
  top: -31px;
}

.footer-frame--p .footer-frame__img {
  width: 290px;
  left: -34px;
  top: -21px;
}

.footer-frame__overlay {
  overflow: hidden;
  position: relative;
  padding: 62px 62px 56px 320px;
  border-radius: 17px;
  z-index: 2;
}

.footer-frame__title {
  position: relative;
  z-index: 2;
  margin-bottom: 15px;
  font-family: 'Yeseva One', serif;
  font-weight: 400;
  font-size: 40px;
  line-height: 1.2;
  text-transform: uppercase;
  background: linear-gradient(90.46deg, #02285E 4.37%, #04598A 50.22%, #02285E 89.89%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.footer-frame__title span {
  display: block;
  margin-bottom: 27px;
  font-family: 'Jost';
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.33;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: #7488AB;
  background: #7488AB;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.footer-frame__br {
  max-width: 509px;
  height: 1px;
  background-color: #598DD6;
  opacity: .21;
  margin-bottom: 16px;
}

.footer-frame__txt {
  max-width: 450px;
  font-size: 16px;
  line-height: 1.25;
  color: #395277;
  margin-bottom: 26px;
}

.footer-form {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 15px 5px;
}

.footer-form .btn--main {
  width: 250px;
}

.footer-form .input {
  width: calc((100% - 250px - 10px) / 2);
}

.footer-form .form-txt {
  width: 100%;
}

.footer-frame__overlay::after,
.footer-frame__overlay::before {
  content: '';
  display: block;
  position: absolute;
  background: center center no-repeat;
  background-size: contain;
}

.footer-frame--q .footer-frame__overlay::before {
  background-image: url(../img/order-q-1-min.png);
  width: 147px;
  height: 184px;
  z-index: -1;
  top: 15px;
  right: 150px;
}

.footer-frame--q .footer-frame__overlay::after {
  background-image: url(../img/order-q-2-min.webp);
  width: 316px;
  height: 369px;
  z-index: -1;
  top: 8px;
  right: -65px;
}

.footer-frame--p::before,
.footer-frame--p::after {
  content: '';
  display: block;
  position: absolute;
  background: center center no-repeat;
  background-size: contain;
}

.footer-frame--p::before {
  background-image: url(../img/plain-1-min.png);
  width: 302px;
  height: 169px;
  top: 278px;
  right: 100%;
  margin-right: 126px;
}

.footer-frame--p::after {
  background: url(../img/plain-2-min.png) 0 0 no-repeat, url(../img/plain-3-min.webp) right bottom no-repeat;
  background-size: 167px auto, 234px auto;
  width: 347px;
  height: 286px;
  top: 79px;
  right: -133px;
}

.footer-main__bottom {
  padding: 23px 0 29px;
  border-top: 1px solid rgba(255, 255, 255, .18);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  line-height: 20px;
  color: rgba(255, 255, 255, .39);
  margin-top: 70px;
}

.footer-main__bottom a {
  color: rgba(255, 255, 255, .39);
}

.footer-main__bottom a:hover {
  text-decoration: underline;
}

.footer-main__wrap {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 40px;
  position: relative;
}

.footer-logo {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
}

.footer-logo img {
  width: 52px;
  flex-shrink: 0;
}

.footer-logo__txt {
  font-size: 13px;
  line-height: 19px;
  color: rgba(255, 255, 255, .39);
}

.footer-txt {
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
  flex-direction: column;
  max-width: 298px;
  font-size: 14px;
  line-height: 20px;
  color: rgba(255, 255, 255, .52);
  padding-top: 64px;
}

.footer-txt>* {
  margin-top: 12px;
}

.footer-txt span {
  color: #fff;
}

.footer-nav {
  max-width: 377px;
  flex-grow: 1;
}

.footer-nav ul {
  column-count: 2;
  column-gap: 72px;
}

.footer-nav ul li {
  margin-bottom: 40px;
}

.footer-nav ul li a {
  font-size: 16px;
  line-height: 23px;
  color: #fff;
  white-space: nowrap;
}

.footer-nav ul li:nth-child(4n+4) {
  margin-bottom: 0;
}

.footer-nav ul li a:hover {
  opacity: .5;
}

.footer-contacts {
  width: 258px;
  flex-shrink: 0;
}

.footer-tel {
  margin-bottom: 10px;
  font-weight: 600;
  font-size: 28px;
  line-height: 24px;
  letter-spacing: .3px;
  color: #fff;
  display: block;
  width: fit-content;
}

.footer-mail {
  display: block;
  width: fit-content;
  margin-bottom: 28px;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: .3px;
  color: #fff;
  opacity: .67;
}

.footer-mail:hover {
  opacity: 1;
}

.footer-soc {
  margin-top: 40px;
}

.footer-btn {
  width: 100%;
}

@media only screen and (max-width : 1023px) {
  .footer {
    margin-top: -300px;
  }

  .footer::before,
  .footer::after {
    display: none;
  }

  .footer-frame {
    margin-bottom: 65px;
    background-color: #EDFAFF;
    backdrop-filter: unset;
    border-radius: 20px;
  }

  .footer-frame--p {
    background-color: #fff;
  }

  .footer-frame__overlay {
    overflow: visible;
    padding: 62px 30px;
    border-radius: 0;
  }

  .footer-frame__title {
    text-align: center;
  }

  .footer-frame__title span {
    margin-bottom: 13px;
    font-size: 16px;
    line-height: 1.5;
  }

  .footer-frame--p .footer-frame__title {
    font-size: 32px;
    line-height: 1.2;
  }

  .footer-frame__br {
    max-width: 320px;
    margin: 0 auto 20px;
  }

  .footer-frame__txt {
    max-width: 320px;
    font-size: 16px;
    line-height: 1.25;
    text-align: center;
    margin: 0 auto 20px;
  }

  .footer-form {
    gap: 8px;
    max-width: 320px;
    margin: 0 auto;
  }

  .footer-form .btn--main {
    width: 100%;
  }

  .footer-form .input {
    width: 100%;
  }

  .footer-frame--q .footer-frame__overlay::before {
    width: 108px;
    height: 135px;
    top: 5px;
    right: auto;
    left: 0;
  }

  .footer-frame--q .footer-frame__overlay::after {
    width: 200px;
    height: 246px;
    top: -40px;
    right: -73px;
  }

  .footer-frame--p::after {
    background-size: 119px auto, 180px auto;
    width: 212px;
    height: 189px;
    z-index: -1;
    top: 275px;
    right: -129px;
    z-index: 3;
    user-select: none;
    pointer-events: none;
  }

  .footer-main__bottom {
    max-width: 330px;
    margin: 0 auto;
    padding: 48px 0 40px;
    border-top: none;
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
  }

  .footer-main__bottom>*:nth-child(1) {
    order: 3;
  }

  .footer-main__wrap {
    flex-direction: column;
    gap: 40px;
    padding-top: 123px;
  }

  .footer-logo {
    left: 50%;
    transform: translateX(-50%);
    width: 294px;
  }

  .footer-logo__txt {
    font-size: 14px;
    line-height: 1.2;
  }

  .footer-logo__title {
    font-family: 'Yeseva One', serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 120%;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 4px;
  }

  .footer-txt {
    order: 3;
    max-width: unset;
    padding-top: 0;
    align-items: center;
  }

  .footer-txt>div {
    width: 100%;
    max-width: 332px;
    margin-left: auto;
    margin-right: auto;
  }

  .footer-nav {
    order: 1;
    max-width: unset;
    width: calc(100% + 30px);
    margin-left: -15px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(44, 79, 142, .5);
  }

  .footer-nav ul {
    column-count: 1;
    column-gap: 0;
    max-width: 332px;
    margin: 0 auto;
  }

  .footer-nav ul li:nth-child(4n+4),
  .footer-nav ul li {
    margin-bottom: 44px;
    position: relative;
  }

  .footer-nav ul li::before {
    content: '';
    display: block;
    position: absolute;
    bottom: -23px;
    left: 0;
    width: 29px;
    height: 1px;
    background-color: #025D99;
    opacity: .62;
  }

  .footer-nav ul li:last-child {
    margin-bottom: 0;
  }

  .footer-nav ul li:last-child::before {
    display: none;
  }

  .footer-nav ul li a {
    font-size: 24px;
    line-height: 1;
    letter-spacing: .3px;
    color: rgba(255, 255, 255, .8);
  }

  .footer-contacts {
    order: 2;
    width: calc(100% + 30px);
    margin-left: -15px;
    border-bottom: 1px solid rgba(44, 79, 142, .5);
    padding-bottom: 48px;
  }

  .footer-soc .soc {
    justify-content: center;
    gap: 40px;
  }

  .footer-soc .soc a img {
    width: 100%;
  }

  .footer-soc .soc a:nth-child(1) {
    width: 43px;
  }

  .footer-soc .soc a:nth-child(2) {
    width: 36px;
  }

  .footer-btn {
    max-width: 332px;
    margin: 0 auto;
  }

  .footer-mob-bar {
    border-bottom: 1px solid rgba(44, 79, 142, .5);
    padding-bottom: 48px;
    margin-bottom: 48px;
  }

  .footer-mob-bar .header-address,
  .footer-mob-bar .header-tel {
    max-width: 332px;
    margin: 0 auto;
    justify-content: flex-start;
    flex-direction: row;
    text-align: left;
  }

  .footer-mob-bar .header-tel {
    margin-bottom: 38px;
  }

  .footer-mob-bar .header-tel__main {
    align-items: flex-start;
  }
}

@media only screen and (max-width : 414px) {
  .footer-frame--p .footer-frame__title {
    font-size: 30px;
  }

  .footer-frame--p::after {
    top: 170px;
  }
}

.popup {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: none;
  z-index: 999;
}

.popup.open {
  display: block;
}

.popup__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #404040;
  opacity: .6;
}

.popup__main {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 620px;
  max-width: 100%;
  background-color: #EDFAFF;
  border-radius: 24px;
  padding: 56px 55px 42px;
}

.popup__close {
  position: absolute;
  z-index: 5;
  top: 23px;
  right: 23px;
  width: 24px;
  opacity: .26;
}

.popup__close:hover {
  opacity: 1;
}

.popup__header {
  font-family: 'Yeseva One', serif;
  font-weight: 400;
  font-size: 40px;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  background: linear-gradient(90.46deg, #02285E 4.37%, #04598A 50.22%, #02285E 89.89%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.popup__txt {
  margin-top: 30px;
  font-size: 16px;
  line-height: 1.25;
  text-align: center;
  color: #395277;
}

.popup__form {
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.popup__form .input {
  width: calc(50% - 4px);
}

.popup__form .btn--main {
  width: 100%;
}

.popup__form .form-txt {
  width: 100%;
  color: #85B1C0;
}

@media only screen and (max-width : 767px) {
  .popup__main {
    max-width: calc(100vw - 30px);
    padding: 63px 16px;
  }

  .popup__close {
    top: 30px;
    right: 28px;
  }

  .popup__header {
    font-size: 32px;
    line-height: 1.2;
  }

  .popup__form {
    margin: 20px auto 0;
    max-width: 360px;
  }

  .popup__form .input {
    width: 100%;
  }
}

.detail-gallery {
  padding-top: 217px;
  margin-bottom: 150px;
}

.detail-gallery .container::before,
.detail-gallery .container::after {
  content: '';
  display: block;
  position: absolute;
  border-radius: 50%;
  z-index: -1;
}

.detail-gallery .container::before {
  top: -100px;
  right: -202px;
  width: 405px;
  height: 409px;
  background: rgba(0, 179, 255, .34);
  filter: blur(157.75px);
}

.detail-gallery .container::after {
  top: 700px;
  left: 22px;
  width: 250px;
  height: 130px;
  background-color: #00B3FF;
  filter: blur(131.65px);
}

.detail-gallery-title {
  margin-bottom: 28px;
  font-family: 'Yeseva One', serif;
  font-weight: 400;
  font-size: 48px;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  background: linear-gradient(96.91deg, #A9DBFF -3.18%, #F9FDFF 32.8%, #F1FBFF 58.2%, #B8EAFF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.gallery-slider {
  max-width: 932px;
  margin: 0 auto;
  overflow: visible;
}

.gallery-slide {
  display: block;
  overflow: hidden;
  border-radius: 7px;
  transform: scale(.8691);
  opacity: .43;
}

.swiper-slide.swiper-slide-active .gallery-slide {
  transform: scale(1);
  opacity: 1;
}

.gallery-slider__btn {
  position: absolute;
  z-index: 10;
  top: 50%;
  margin-top: -22.5px;
  width: 45px;
}

.gallery-slider__btn:hover {
  opacity: .8;
}

.gallery-slider__btn--next {
  right: -17px;
}

.gallery-slider__btn--prev {
  left: -17px;
}

.gallery-slider__btn.swiper-button-disabled {
  cursor: default;
  opacity: .2;
}

.swiper-horizontal .gallery-slider__pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  position: absolute;
  width: 100%;
  left: 0;
  bottom: -49px;
}

.gallery-slider__pagination .swiper-pagination-bullet {
  margin: 0;
  width: 11px;
  height: 11px;
  background-color: #00B2FF;
  opacity: .23;
  transition: opacity .25s;
}

.gallery-slider__pagination .swiper-pagination-bullet.swiper-pagination-bullet-active,
.gallery-slider__pagination .swiper-pagination-bullet:hover {
  opacity: 1;
}

.gallery-slider__pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  cursor: default;
}

@media only screen and (max-width : 1023px) {
  .detail-gallery {
    padding-top: 166px;
    margin-bottom: 114px;
  }

  .detail-gallery .container::before,
  .detail-gallery .container::after {
    display: none;
  }

  .detail-gallery-title {
    margin-bottom: 60px;
    font-size: 40px;
    line-height: 1.2;
  }

  .gallery-slider {
    width: calc(100% - 50px);
    max-width: 444px;
  }

  .gallery-slide {
    transform: scale(.905);
    opacity: .68;
    transform-origin: 100% 50%;
  }

  .swiper-slide.swiper-slide-active .gallery-slide {
    transform-origin: 50% 50%;
  }

  .swiper-slide.swiper-slide-active~.swiper-slide .gallery-slide {
    transform-origin: 0 50%;
  }

  .swiper-slide.swiper-slide-active .gallery-slide {
    transform: scale(1);
    opacity: 1;
  }

  .gallery-slider__btn--next {
    right: -22px;
  }

  .gallery-slider__btn--prev {
    left: -22px;
  }

  .swiper-horizontal .gallery-slider__pagination {
    bottom: -51px;
  }
}


.article .container::before {
  content: '';
  display: block;
  width: 1764px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: #EDFAFF;
  border-radius: 34px;
  z-index: -1;
}

.article .container {
  padding-top: 97px;
  padding-bottom: 222px;
}

.article {
  font-size: 20px;
  line-height: 1.3;
  color: #395277;
}

.article p:not(:last-child) {
  margin-bottom: 1.3em;
}

.article p b {
  font-weight: 600;
  color: #02285E;
}

.article-header,
.article p {
  break-inside: avoid;
}

.article-sec {
  column-count: 2;
  column-gap: 24px;
}

.article-header {
  margin-bottom: 40px;
}

.article-title {
  font-family: 'Yeseva One', serif;
  font-weight: 400;
  font-size: 40px;
  line-height: 1.2;
  text-transform: uppercase;
  background: linear-gradient(90.46deg, #02285E 4.37%, #04598A 50.22%, #02285E 89.89%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.article-title span {
  display: block;
  margin-top: 6px;
  font-family: 'Jost';
  font-weight: 500;
  font-size: 18px;
  line-height: 1.33;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: #7488AB;
  text-transform: uppercase;
  background: #7488AB;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.article-sup {
  margin-top: 30px;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.3;
  color: #395277;
}

.article-pic {
  display: block;
  border-radius: 7px;
  overflow: hidden;
  margin: 10px 0;
}

.article-pic--video {
  position: relative;
}

.article-pic--video::before {
  content: 'Нажмите для просмотра';
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding-top: 69px;
  background: url(../img/play.svg) center 0 no-repeat;
  text-align: center;
  font-size: 14px;
  line-height: 120%;
  color: #FFE484;
}

.article-sec__dub {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  margin: 10px 0;
  gap: 10px;
}

.tac {
  text-align: center;
}

.article-sec__dub:first-child,
.article-pic:first-child {
  margin: 0px;
}

.article-sec__dub>.article-pic {
  margin: 0;
  width: calc(50% - 5px);
}

.article-sec__dub:last-child,
.article-pic:last-child {
  margin-bottom: 0;
}

.article p+.article-sec__dub,
.article p+.article-pic {
  margin-top: 40px;
}

.article-sec__dub+p,
.article-pic+p {
  margin-top: 40px;
}

.article-row {
  display: flex;
  align-items: stretch;
  gap: 11px;
  width: 1764px;
  max-width: 100vw;
  margin: 40px 0;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.article-row-item {
  display: block;
  overflow: hidden;
  border-radius: 7px;
}

.article-footer {
  max-width: 544px;
  margin: 40px auto 0;
  text-align: center;
}

@media only screen and (max-width : 1023px) {
  .gallery-sec .container::before {
    width: 480px;
    max-width: 100vw;
    border-radius: 24px 24px 0 0;
  }

  .article .container {
    padding-top: 63px;
    padding-bottom: 325px;
  }

  .article-sec {
    column-count: 1;
    column-gap: 0;
  }

  .article-header {
    margin-bottom: 0;
    text-align: center;
  }

  .article-sup {
    text-align: left;
    margin-bottom: 1em;
    font-size: 20px;
    line-height: 1.3;
    font-weight: 400;
  }

  .article-title span {
    margin-top: 12px;
    font-size: 16px;
    line-height: 1.5;
  }

  .article p:not(:last-child) {
    margin-bottom: 1em;
  }

  .article-pic {
    margin: 8px 0;
  }

  .article-sec__dub {
    margin: 8px 0;
    gap: 6px;
  }

  .article-sec__dub>.article-pic {
    width: calc(50% - 3px);
  }

  .article p+.article-sec__dub,
  .article p+.article-pic {
    margin-top: 30px;
  }

  .article-sec__dub+p,
  .article-pic+p {
    margin-top: 30px;
  }

  .article-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    grid-column-gap: 6px;
    grid-row-gap: 8px;
    width: 100%;
    margin: 30px 0;
    position: relative;
    left: 0;
    transform: none;
  }

  .article-row-item:nth-child(3) {
    grid-row: span 2;
    grid-column: span 2;
  }

  .article-footer {
    max-width: unset;
    margin-top: 30px;
    text-align: left;
  }
}