:root {
  --font-family: "Gilroy",sans-serif;
  --second-family: "Unbounded",sans-serif;
  --font-size: 16px;
  --font-size-desc: 20px;
  --font-weight: 500;
  --line-height: 1.3;
  --main-color: #1d5a87;
  --bg-color: #C7E1E0
}
@font-face {
  font-family: Gilroy;
  font-display: swap;
  src: url(../fonts/Gilroy-Medium.woff2) format("woff2");
  font-weight: 500;
  font-style: normal
}
@font-face {
  font-family: Gilroy;
  font-display: swap;
  src: url(../fonts/Gilroy-SemiBold.woff2) format("woff2");
  font-weight: 600;
  font-style: normal
}
@font-face {
  font-family: Unbounded;
  font-display: swap;
  src: url(../fonts/Unbounded-SemiBold.woff2) format("woff2");
  font-weight: 600;
  font-style: normal
}
@font-face {
  font-family: Unbounded;
  font-display: swap;
  src: url(../fonts/Unbounded-Regular.woff2) format("woff2");
  font-weight: 400;
  font-style: normal
}
@font-face {
  font-family: Unbounded;
  font-display: swap;
  src: url(../fonts/Unbounded-Medium.woff2) format("woff2");
  font-weight: 500;
  font-style: normal
}
* {
  padding: 0;
  margin: 0;
  border: 0
}
*,
*::after,
*::before {
  box-sizing: border-box
}
*::after,
*::before {
  display: inline-block
}
body,
html {
  height: 100%;
  min-width: 320px
}
body {
  font-family: var(--font-family);
  font-size: var(--font-size);
  line-height: var(--line-height);
  font-weight: var(--font-weight);
  color: var(--main-color);
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale
}
button,
input,
textarea {
  font-family: var(--font-family);
  font-size: inherit;
  line-height: inherit;
  color: inherit;
  background-color: rgba(0,0,0,0)
}
input,
textarea {
  width: 100%
}
label {
  display: inline-block
}
button,
option,
select {
  cursor: pointer
}
a {
  display: inline-block;
  color: inherit;
  text-decoration: none
}
ul li {
  list-style: none
}
img {
  vertical-align: top;
  max-width: 100%;
  -o-object-fit: cover;
  object-fit: cover
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
  font-size: inherit
}
body {
  background-color: var(--bg-color)
}
.lock body {
  overflow: hidden;
  touch-action: none;
  -ms-scroll-chaining: none;
  overscroll-behavior: none
}
.wrapper {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden
}
@supports (overflow:clip) {
  .wrapper {
    overflow: clip
  }
}
.wrapper>main {
  flex: 1 1 auto
}
.wrapper>* {
  min-width: 0
}
.container {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px
}
[class*="--gc"] {
  display: grid;
  min-width: 0;
  grid-template-columns: 1.875rem 1fr minmax(auto,73.125rem) 1fr 1.875rem
}
[class*="--gc"]>* {
  min-width: 0;
  grid-column: 3/4
}
.form {
  position: relative;
  width: 100%;
  max-width: 472px
}
.form__row:not(:last-child) {
  margin-bottom: 10px
}
.form__row:last-child {
  margin-top: 13px
}
.form__input {
  padding: 12px 22px;
  border: .5px solid #fff;
  height: 54px;
  border-radius: 8px;
  backdrop-filter: blur(4px);
  box-shadow: inset 0 0 12px 0 hsla(0,0%,100%,.5);
  background: hsla(0,0%,100%,.12);
  color: #fff;
  outline: 0
}
.form__input::-webkit-input-placeholder {
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;
  color: #fff
}
.form__input:-ms-input-placeholder {
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;
  color: #fff
}
.form__input::-ms-input-placeholder {
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;
  color: #fff
}
.form__input::placeholder {
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;
  color: #fff
}
.form__btn {
  padding: 14px 16px;
  height: 54px;
  position: relative;
  border-radius: 8px;
  width: 100%;
  cursor: pointer;
  background-color: #fff;
  transition: all .4s;
  overflow: hidden
}
.form__btn:hover span {
  color: #fff;
  -webkit-text-fill-color: inherit
}
.form__btn:hover::before {
  width: 100%
}
.form__btn::before {
  content: "";
  position: absolute;
  width: 0;
  height: 100%;
  top: 0;
  left: 0;
  background-color: var(--main-color);
  border-radius: 8px;
  transition: all .4s
}
.form__btn span {
  font-family: var(--second-family);
  font-size: 16px;
  line-height: 1.3;
  font-weight: 500;
  text-align: center;
  background: linear-gradient(90deg,#1e6fb2 0,#5f258f 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  position: relative;
  transition: all .4s
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border: 1px solid #2b86a5;
  box-shadow: inset 0 0 12px 0 #6bb1c9;
  background: linear-gradient(121deg,#6bb1c9 0,#6b279c 100%);
  border-radius: 12px;
  overflow: hidden;
  padding: 16px 50px
}
.btn span {
  font-family: var(--second-family);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;
  text-align: center;
  color: #fff;
  transition: all .4s;
  position: relative;
  z-index: 1
}
.btn:hover::before {
  width: 100%
}
.btn::before {
  content: "";
  position: absolute;
  width: 0;
  height: 100%;
  top: 0;
  left: 0;
  background-color: var(--main-color);
  border-radius: 8px;
  transition: all .4s
}
body::after {
  content: "";
  background-color: rgba(0,0,0,.5);
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity .8s ease 0s;
  pointer-events: none;
  z-index: 149
}
.modal-show body::after {
  opacity: 1
}
.modal {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 30px 10px;
  transition: visibility .8s ease 0s;
  visibility: hidden;
  pointer-events: none
}
.modal_show {
  z-index: 150;
  visibility: visible;
  overflow: auto;
  pointer-events: auto
}
.modal_show .modal__content {
  visibility: visible;
  -webkit-transform: scale(1);
  transform: scale(1)
}
.modal__wrapper {
  flex-direction: column;
  min-height: 100%;
  flex: 1 1 auto;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center
}
.modal__content {
  visibility: hidden;
  -webkit-transform: scale(0);
  transform: scale(0);
  transition: -webkit-transform .3s ease 0s;
  transition: transform .3s ease 0s;
  transition: transform .3s ease 0s,-webkit-transform .3s ease 0s;
  background-color: #fff;
  width: 100%;
  max-width: 620px;
  padding: 50px 20px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,.2)
}
.lock .modal__content {
  visibility: visible
}
.modal__close {
  position: absolute;
  top: 20px;
  right: 20px
}
.modal-order .modal__content {
  max-width: 540px;
  background-color: #52a2be;
  box-shadow: 0 0 10px 0 rgba(0,0,0,.2)
}
.modal-order__title {
  font-size: 20px;
  line-height: 1.3;
  text-align: center;
  color: #fff;
  margin-bottom: 30px
}
.modal-order .form {
  margin: 0 auto
}
.ibg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover
}
.ibg--top {
  -o-object-position: top;
  object-position: top
}
.ibg--bottom {
  -o-object-position: bottom;
  object-position: bottom
}
.ibg--left {
  -o-object-position: left;
  object-position: left
}
.ibg--right {
  -o-object-position: right;
  object-position: right
}
.ibg--contain {
  -o-object-fit: contain;
  object-fit: contain
}
.title {
  font-family: var(--second-family);
  font-size: 35px;
  line-height: 1.3;
  font-weight: 400;
  color: #fff;
  margin-bottom: 20px
}
.title-sm {
  font-family: var(--second-family);
  font-size: 26px;
  line-height: 1.3;
  font-weight: 400;
  text-transform: uppercase;
  text-align: center
}
.section {
  position: relative
}
.button-up {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 100;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: 0 0 10px 0 rgba(29,90,135,.3);
  background-color: hsla(0,0%,100%,.6);
  transition: background-color .4s,opacity .4s;
  opacity: 0
}
.button-up.visible {
  opacity: 1
}
.button-up:hover {
  background-color: rgba(29,90,135,.8)
}
.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 17px 0;
  z-index: 100;
  transition: all .4s;
  background-color: #52a2be;
}
.header.main-header{
  background-color: transparent;
}
.header._header-scroll {
  position: fixed;
  background-color: #52a2be;
  box-shadow: 0 0 10px 0 rgba(0,0,0,.2)
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between
}
.header .logo {
  flex-shrink: 0;
  position: relative;
  z-index: 100;
  width: 100%;
  max-width: 158px
}
.menu__burger {
  width: 45px;
  height: 45px;
  border-radius: 8px;
  z-index: 100;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(20px);
  box-shadow: 8px 4px 16px 0 rgba(0,0,0,.08),inset 0 0 8px 0 rgba(13,238,252,.32);
  background: linear-gradient(135deg,rgba(248,251,255,.2) 0,rgba(255,255,255,.2) 100%)
}
.contacts-header {
  position: relative
}
.contacts-header__burger {
  width: 45px;
  height: 45px;
  flex-shrink: 0;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(20px);
  box-shadow: 8px 4px 16px 0 rgba(0,0,0,.08),inset 0 0 8px 0 rgba(13,238,252,.32);
  background: linear-gradient(135deg,rgba(248,251,255,.2) 0,rgba(255,255,255,.2) 100%)
}
.contacts-header__burger svg {
  transition: -webkit-transform .4s;
  transition: transform .4s;
  transition: transform .4s,-webkit-transform .4s
}
.contacts-header__burger.burger-active svg {
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg)
}
.contacts-header__phone {
  display: flex;
  flex-direction: column;
  gap: 7px
}
.contacts-header__phone a {
  font-size: 18px;
  line-height: 1.3;
  cursor: pointer;
  transition: all .4s
}
.contacts-header__social {
  display: flex;
  align-items: center;
  gap: 10px
}
.contacts-header__social a {
  width: 31px;
  height: 31px;
  flex-shrink: 0;
  backdrop-filter: blur(30px);
  border: 1px solid #c0f7ff;
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: -webkit-transform .4s;
  transition: transform .4s;
  transition: transform .4s,-webkit-transform .4s
}
.contacts-header__social a:hover {
  -webkit-transform: scale(1.1);
  transform: scale(1.1)
}
.contacts-header__social a.telegram {
  background-color: #27a6e5
}
.contacts-header__social a.viber {
  background-color: #5b20bd
}
.icon-menu {
  display: none
}
.footer {
  padding: 30px 0;
  background-color: #1f394f
}
.footer__copyright {
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
  text-align: center;
  color: #fff
}
.hero {
  padding: 105px 0 40px 0;
  margin-bottom: 60px
}
.hero::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(180deg,rgba(0,0,0,.2) 0,rgba(0,0,0,.2) 100%)
}
.hero__heading {
  position: relative
}
.hero__subtitle {
  font-family: var(--font-family);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.3;
  text-wrap: balance;
  color: #fff;
  margin-bottom: 35px
}
.hero__form-title {
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;
  text-wrap: balance;
  color: #fff;
  position: relative;
  margin-bottom: 20px
}
.hero__img {
  position: relative;
  text-align: center
}
.hero__img img {
  max-height: 416px
}
.hero__bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1
}
.proposals {
  margin-bottom: 70px
}
.proposals__title {
  margin-bottom: 30px
}
.block-proposal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 85px
}
.block-proposal:last-child {
  margin-bottom: 0
}
.block-proposal.center .block-proposal__icon img {
  top: 5px;
  left: 27%
}
.block-proposal__title {
  font-family: var(--second-family);
  font-size: 20px;
  line-height: 1.3;
  font-weight: 400;
  text-wrap: balance;
  margin-bottom: 25px
}
.block-proposal__info {
  display: flex;
  justify-content: flex-start;
  gap: 15px;
  margin-bottom: 20px
}
.block-proposal__info span {
  font-family: var(--second-family);
  font-size: 15px;
  line-height: 1.3;
  font-weight: 400;
  text-transform: uppercase;
  padding: 16px 22px;
  border-radius: 8px;
  background-color: #fff
}
.block-proposal__text {
  margin-bottom: 20px
}
.block-proposal__line {
  flex: 1 1 30%
}
.block-proposal__icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 144px;
  height: 144px;
  flex-shrink: 0;
  border-radius: 100%;
  border: 1px solid #fff;
  box-shadow: inset 0 0 12px 0 hsla(0,0%,100%,.5);
  background-color: hsla(0,0%,100%,.3);
  margin-bottom: 25px
}
.block-proposal__icon img {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 1;
  max-width: 130px
}
.about {
  margin-bottom: 60px
}
.about__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 570px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-image: url(../img/about-bg.webp);
  z-index: -1
}
.about__inner {
  display: flex;
  justify-content: space-between
}
.about__column.center {
  align-self: center
}
.block-about {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 30px;
  background-color: #fff;
  border-radius: 12px;
  flex: 1
}
.block-about__icon {
  width: 47px;
  height: 47px;
  border-radius: 50%;
  background: linear-gradient(180deg,#0fc9f2 0,#8434bd 100%);
  display: flex;
  align-items: center;
  justify-content: center
}
.block-about__title {
  font-family: var(--second-family);
  font-size: 18px;
  line-height: 1.3;
  font-weight: 500;
  text-transform: uppercase
}
.block-about__text {
  font-family: var(--font-family);
  font-size: 18px;
  line-height: 1.3;
  font-weight: 500;
  flex-grow: 1
}
.img-about {
  position: relative;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center
}
.img-about img {
  max-height: 359px
}
.img-about__decor-big {
  position: absolute;
  top: 10%;
  width: 616px;
  height: 616px;
  background: url(../img/about-decor-big.svg) center/cover no-repeat;
  z-index: -1
}
.img-about__decor-sm {
  position: absolute;
  top: 16%;
  width: 557px;
  height: 547px;
  background: url(../img/about-decor-sm.svg) center/cover no-repeat;
  z-index: -1
}
.products {
  margin-bottom: 80px
}
.products::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  width: 310px;
  height: 968px;
  mix-blend-mode: color-burn;
  background: url(../img/products-decor-left.webp) center/cover no-repeat;
  z-index: -1
}
.products::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 0;
  width: 310px;
  height: 968px;
  mix-blend-mode: color-burn;
  background: url(../img/products-decor-right.webp) center/cover no-repeat;
  z-index: -1
}
.products__title {
  margin-bottom: 40px
}
.products .container {
  max-width: 865px
}
.card-product {
  position: relative;
  padding: 0 15px 30px 15px
}
.card-product::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 70%;
  min-height: 335px;
  border: 1px solid #fff;
  border-radius: 12px;
  box-shadow: inset 0 0 12px 0 hsla(0,0%,100%,.5);
  background: hsla(0,0%,100%,.45);
  z-index: -1
}
.card-product__img {
  position: relative;
  text-align: center;
  margin-bottom: 40px;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center
}
.card-product__text {
  margin-bottom: 15px
}
.card-product__desc {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  -webkit-column-gap: 35px;
  -moz-column-gap: 35px;
  column-gap: 35px;
  row-gap: 15px;
  flex-grow: 1;
  margin-bottom: 32px
}
.card-product__group {
  padding: 5px 16px 5px 5px;
  background: #fff;
  border-radius: 200px;
  display: inline-flex;
  align-items: center;
  gap: 10px
}
.card-product__group img {
  flex: 0 0 27px
}
.card-product__group span {
  font-family: var(--second-family);
  font-size: 15px;
  font-weight: 400;
  text-wrap: nowrap
}
.card-product__price {
  display: inline-flex;
  font-family: var(--second-family);
  font-size: 18px;
  line-height: 1.3;
  font-weight: 600;
  text-transform: uppercase
}
.card-product__btn {
  width: 100%
}
.card-product__btn span {
  color: #fff
}
.delivery {
  margin-bottom: 80px
}
.delivery::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(to bottom,transparent,rgba(255,255,255,.5882352941) 50%,transparent);
  z-index: -1
}
.delivery__title {
  margin-bottom: 30px
}
.block-delivery {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  height: 100%
}
.block-delivery__label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin-bottom: 20px
}
.block-delivery__label-icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 12px 0 hsla(0,0%,100%,.5);
  background-color: hsla(0,0%,100%,.3);
  border: 1px solid #fff
}
.block-delivery__label-text {
  font-family: var(--second-family);
  font-size: 13px;
  line-height: 1.1;
  font-weight: 500;
  text-transform: uppercase;
  text-align: center;
  padding: 12px 28px;
  border: 1px solid #fff;
  border-radius: 96px;
  box-shadow: inset 0 0 12px 0 hsla(0,0%,100%,.5);
  background: hsla(0,0%,100%,.3)
}
.block-delivery__schedule h4 {
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 15px
}
.block-delivery__schedule p {
  font-size: 18px;
  line-height: 133%
}
.block-delivery__schedule p:not(:last-child) {
  margin-bottom: 10px
}
.block-delivery__line {
  flex: 0 1 52px;
  margin: 9px 0 27px 0
}
.block-delivery__line svg {
  width: 6px;
  height: 100%
}
.block-delivery__accept {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
  min-height: 214px;
  padding: 20px 28px 20px 40px;
  box-shadow: inset 0 0 12px 0 hsla(0,0%,100%,.5);
  background: hsla(0,0%,100%,.45);
  border: 1px solid #fff;
  border-radius: 12px
}
.block-delivery__accept h4 {
  font-family: var(--second-family);
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 16px
}
.block-delivery__accept p {
  font-size: 18px;
  font-weight: 500;
  line-height: 117%;
  position: relative
}
.block-delivery__accept p:not(:last-child) {
  margin-bottom: 20px
}
.block-delivery__accept p:nth-of-type(1)::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  background-color: #52a2be;
  width: 100%;
  height: 1px
}
.block-delivery__price h4 {
  font-family: var(--second-family);
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 16px
}
.block-delivery__price p {
  font-size: 18px;
  font-weight: 500;
  line-height: 133%;
  position: relative
}
.block-delivery__price p:not(:last-child) {
  margin-bottom: 20px
}
.block-delivery__price span {
  display: inline-block;
  padding: 8px 13px;
  border: 1px solid #52a2be;
  border-radius: 27px;
  box-shadow: inset 0 0 12px 0 #6bb1c9;
  background: linear-gradient(121deg,#6bb1c9 0,#d4edf6 100%);
  font-size: 18px;
  text-transform: uppercase;
  text-align: center;
  color: #fff
}
.block-delivery__price span:last-child {
  text-transform: none
}
.block-delivery__text {
  font-size: 18px;
  font-weight: 500;
  max-width: 450px
}
.block-delivery__info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  text-align: left;
  min-height: 214px;
  padding: 20px;
  box-shadow: inset 0 0 12px 0 hsla(0,0%,100%,.5);
  background: hsla(0,0%,100%,.45);
  border: 1px solid #fff;
  border-radius: 12px
}
.block-delivery__info h4 {
  font-family: var(--second-family);
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 26px
}
.block-delivery__info p {
  font-size: 18px;
  font-weight: 500;
  line-height: 133%;
  position: relative
}
.block-delivery__info p:not(:last-child) {
  margin-bottom: 20px
}
.block-delivery__info span {
  padding: 8px 18px;
  border: 1px solid #52a2be;
  border-radius: 27px;
  box-shadow: inset 0 0 12px 0 #6bb1c9;
  background: linear-gradient(121deg,#6bb1c9 0,#d4edf6 100%);
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
  color: #fff
}
.block-delivery__img {
  text-align: center;
  margin-bottom: 40px
}
.block-delivery__img img {
  max-width: 320px
}
.documents {
  margin-bottom: 60px
}
.documents::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(to bottom,transparent,#fff 50%,transparent);
  z-index: -1
}
.documents__title {
  margin-bottom: 30px
}
.documents__text {
  text-align: center;
  max-width: 670px;
  margin: 0 auto;
  margin-bottom: 40px
}
.documents__body {
  border: 1px solid #52a2be;
  border-radius: 12px;
  box-shadow: inset 0 0 12px 0 #6bb1c9;
  background: linear-gradient(127deg,#6bb1c9 0,#d7edf0 100%);
  padding: 40px 19px
}
.documents__label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-bottom: 25px
}
.documents__label-icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 12px 0 hsla(0,0%,100%,.5);
  background-color: hsla(0,0%,100%,.3);
  border: 1px solid #fff
}
.documents__label-text {
  font-family: var(--second-family);
  font-size: 13px;
  line-height: 1.1;
  font-weight: 500;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  padding: 12px 28px;
  border: 1px solid #fff;
  border-radius: 96px;
  box-shadow: inset 0 0 12px 0 hsla(0,0%,100%,.5);
  background: hsla(0,0%,100%,.3)
}
.documents__text-body {
  font-size: 18px;
  line-height: 133%;
  font-weight: 500;
  text-align: center;
  color: #fff;
  text-wrap: balance;
  margin-bottom: 25px
}
.documents__items {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px
}
.item-documents {
  padding: 15px;
  border: 1px solid #52a2be;
  border-radius: 12px;
  background-color: #fff
}
.benefit {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 80px
}
.benefit__inner {
  position: relative;
  padding: 60px 20px 100px 20px;
  border-radius: 12px;
  overflow: hidden
}
.benefit__inner::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(to right,rgba(23,56,84,.7) 25%,transparent 100%)
}
.benefit__heading {
  position: relative;
  margin-bottom: 40px
}
.benefit__title {
  color: #fff;
  -webkit-text-fill-color: inherit;
  text-align: left
}
.benefit__label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px
}
.benefit__label-icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 12px 0 hsla(0,0%,100%,.5);
  background-color: hsla(0,0%,100%,.3);
  border: 1px solid #fff
}
.benefit__label-text {
  font-family: var(--second-family);
  font-size: 13px;
  line-height: 1.1;
  font-weight: 500;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  padding: 12px 28px;
  border: 1px solid #fff;
  border-radius: 96px;
  box-shadow: inset 0 0 12px 0 hsla(0,0%,100%,.5);
  background: hsla(0,0%,100%,.3)
}
.benefit__text {
  position: relative;
  max-width: 705px;
  margin-bottom: 60px
}
.benefit__text p {
  font-size: 18px;
  line-height: 133%;
  font-weight: 500;
  color: #fff
}
.benefit__text p:not(:last-child) {
  margin-bottom: 30px
}
.benefit__btn {
  width: 100%;
  max-width: 315px;
  color: #fff
}
.benefit__bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1
}
.advant {
  margin-bottom: 60px
}
.advant__title {
  margin-bottom: 40px
}
.advant__items {
  margin-bottom: 80px
}
.item-advant {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  margin-bottom: 30px
}
.item-advant:last-child {
  margin-bottom: 0
}
.item-advant__icon {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  border-radius: 50%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 12px 0 hsla(0,0%,100%,.5);
  background-color: hsla(0,0%,100%,.3);
  border: 1px solid #fff
}
.item-advant__text {
  font-size: 18px;
  line-height: 133%;
  font-weight: 500;
  text-wrap: balance
}
.info-advant {
  padding: 60px 20px;
  box-shadow: inset 0 0 12px 0 hsla(0,0%,100%,.5);
  background: hsla(0,0%,100%,.2);
  border: 1px solid #fff;
  border-radius: 12px
}
.info-advant__title {
  font-family: var(--second-family);
  font-size: 24px;
  line-height: 1.3;
  font-weight: 400;
  margin-bottom: 30px
}
.info-advant__text {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  -webkit-column-gap: 27px;
  -moz-column-gap: 27px;
  column-gap: 27px;
  row-gap: 15px;
  font-size: 18px;
  line-height: 1.3;
  font-weight: 400
}
.info-advant__text span {
  display: inline-block;
  font-family: var(--second-family);
  font-size: 18px;
  line-height: 1.3;
  font-weight: 400;
  text-transform: uppercase;
  padding: 15px;
  border-radius: 8px;
  background-color: #fff
}
.info-advant__line {
  flex: 1;
  display: none
}
.info-advant__images {
  display: flex;
  justify-content: center;
  gap: 55px
}
.info-advant__img {
  width: 103px;
  height: 103px;
  flex-shrink: 0;
  border-radius: 50%;
  background-color: hsla(0,0%,100%,.3);
  box-shadow: inset 0 0 12px 0 hsla(0,0%,100%,.5);
  border: 1px solid #fff;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center
}
.info-advant__img:last-child img {
  margin-left: -55px;
  margin-bottom: 13px
}
.info-advant__img img {
  position: relative;
  width: 103px;
  align-self: end
}
.contacts {
  padding: 40px 0
}
.contacts::before {
  content: "";
  position: absolute;
  width: 100%;
  min-height: 1160px;
  top: 0;
  left: 0;
  background: url(../img/contacts-bg.webp) center/cover no-repeat;
  z-index: -1
}
.contacts__title {
  margin-bottom: 40px
}
.contacts__body {
  text-align: center
}
.contacts__items {
  padding: 40px 20px 32px 20px;
  border-radius: 12px;
  background-color: #fff;
  border: 1px solid #fff
}
.contacts__btn {
  width: 100%;
  max-width: 358px
}
.contacts__map {
  position: relative;
  width: 100%;
  border-radius: 12px;
  border: 1px solid #fff;
  overflow: hidden
}
.contacts__map iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0
}
.item-contact {
  margin-bottom: 20px
}
.item-contact:last-child {
  margin-bottom: 0
}
.item-contact__icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative
}
.item-contact__icon::before {
  content: "";
  position: absolute;
  width: 105%;
  height: 105%;
  border-radius: 50%;
  background: linear-gradient(to bottom,#0fc9f2,#8434bd)
}
.item-contact__icon::after {
  content: "";
  position: absolute;
  width: 99%;
  height: 99%;
  top: 0;
  left: 0;
  background-color: #fff;
  border-radius: 50%
}
.item-contact__icon img {
  position: relative;
  z-index: 1
}
.item-contact__title {
  font-family: var(--second-family);
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  text-wrap: balance
}
.item-contact__info {
  font-family: var(--font-family);
  font-size: 18px;
  font-weight: 500;
  line-height: 133%;
  text-align: center
}
.item-contact__info a {
  font-family: var(--font-family);
  font-size: 18px;
  font-weight: 500;
  line-height: 133%;
  text-wrap: balance
}
@font-face {
  font-family: lg;
  src: url(data:font/woff2;base64,d09GMgABAAAAAAkcAAsAAAAAEogAAAjNAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAABmAAgSQRCAqcLJZKCzoAATYCJANwBCAFgkoHIBupDgDm53Gzej8JpU0wqygVVyoWwphIsuuw60jpmBY6ppTa7mk7jtx57UQ0V2ulvfmteSIQji061T2HvfDEECASKizU5VUQXFjFRtgYTVg+woiYDVezOThR4tAvr/YYgOO/RZ+BAABzYtMA8Kl8Neg3UIDCoCkOyWBuLcCvSHycH78QvhFxmUCK03A0RwGSvXBAHgR8UB8DMvocJYAgbiZiJnqmYGbXjG3mz7P8nHhe8Uvxr0j+fzwPABAjWT1E83IJHh/x87G/jv1l7JtYR+y+WF2MKAai/qfDtfIRt7hBikI8D1IpipXqWqYSDgDBfwE7qDLw5EEALqFRDMKAsApNwchXAJgFL/WETMbKcDVSifR6QkjwkDaRTEugqlBtKVcL6Smi1dHlIqUmuii6Pic1JTIlFTX3uRenMNpiCiKOCZBm2ges0b/ScigDVgcb2MEHfloel7e1z208KrZUeQFjK0dIkbl6FOFczRhFE6zaRklPlz52tOXcKtmpdqisgHnbxRatg66vsZNHaWMPQ/eZmH6jaavlNASsipbKwVZSYrRm1mywI0670UEdhLy+yuscolSZJHKwg5IyNzRJQbKRZiicwnYiChjO1vSbKCBpkAgCjGIb6KCvA5GL0VHeUDwAQEHkSC2ToBJhKN9KAneim2ekLf1vENf3mjT3vAS295XY2MMgzRpSqTVWpt4ang+ksXynRUQPlkFOu+b6Yw0jBp8krbXbYbjc5mn6KpsNWKtqtcNz0D8xTTQKzthbZYAxLev3NkFgyYWsngBjGo8jg6a9Y3rKR9Pfqun10RvJi9X9foZGvrltMkJgWR7dhI7SSITEaBWIQQTMUSOJkTi5nlqpZUfNKcYD1Do/ZdkbR8UeVpKLSbMVgKLX0flzQYqCrLpll+/vus2IM9+lbdTgWWRLQJqvaq7eHKulgL2ssp7LrpxR2DBI/ja1zXvi7cS1E0Gr0uhy7PUGwPmdkkdjEY.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) format("woff2"),url(data:font/woff;base64,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) format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: block
}
.lg-icon {
  font-family: lg!important;
  speak: never;
  font-style: normal;
  font-weight: 400;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale
}
.lg-container {
  font-family: system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Liberation Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"
}
.lg-next,
.lg-prev {
  background-color: rgba(0,0,0,.45);
  border-radius: 2px;
  color: #999;
  cursor: pointer;
  display: block;
  font-size: 22px;
  margin-top: -10px;
  padding: 8px 10px 9px;
  position: absolute;
  top: 50%;
  z-index: 1080;
  outline: 0;
  border: none
}
.lg-next.disabled,
.lg-prev.disabled {
  opacity: 0!important;
  cursor: default
}
.lg-next:hover:not(.disabled),
.lg-prev:hover:not(.disabled) {
  color: #fff
}
.lg-single-item .lg-next,
.lg-single-item .lg-prev {
  display: none
}
.lg-next {
  right: 20px
}
.lg-next:before {
  content: ""
}
.lg-prev {
  left: 20px
}
.lg-prev:after {
  content: ""
}
@-webkit-keyframes lg-right-end {
  0% {
    left: 0
  }
  50% {
    left: -30px
  }
  100% {
    left: 0
  }
}
@keyframes lg-right-end {
  0% {
    left: 0
  }
  50% {
    left: -30px
  }
  100% {
    left: 0
  }
}
@-webkit-keyframes lg-left-end {
  0% {
    left: 0
  }
  50% {
    left: 30px
  }
  100% {
    left: 0
  }
}
@keyframes lg-left-end {
  0% {
    left: 0
  }
  50% {
    left: 30px
  }
  100% {
    left: 0
  }
}
.lg-outer.lg-right-end .lg-object {
  -webkit-animation: lg-right-end .3s;
  animation: lg-right-end .3s;
  position: relative
}
.lg-outer.lg-left-end .lg-object {
  -webkit-animation: lg-left-end .3s;
  animation: lg-left-end .3s;
  position: relative
}
.lg-toolbar {
  z-index: 1082;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%
}
.lg-media-overlap .lg-toolbar {
  background-image: linear-gradient(0deg,rgba(0,0,0,0),rgba(0,0,0,.4))
}
.lg-toolbar .lg-icon {
  color: #999;
  cursor: pointer;
  float: right;
  font-size: 24px;
  height: 47px;
  line-height: 27px;
  padding: 10px 0;
  text-align: center;
  width: 50px;
  text-decoration: none!important;
  outline: medium none;
  will-change: color;
  transition: color .2s linear;
  background: 0 0;
  border: none;
  box-shadow: none
}
.lg-toolbar .lg-icon.lg-icon-18 {
  font-size: 18px
}
.lg-toolbar .lg-icon:hover {
  color: #fff
}
.lg-toolbar .lg-close:after {
  content: ""
}
.lg-toolbar .lg-maximize {
  font-size: 22px
}
.lg-toolbar .lg-maximize:after {
  content: ""
}
.lg-toolbar .lg-download:after {
  content: ""
}
.lg-sub-html {
  color: #eee;
  font-size: 16px;
  padding: 10px 40px;
  text-align: center;
  z-index: 1080;
  opacity: 0;
  transition: opacity .2s ease-out 0s
}
.lg-sub-html h4 {
  margin: 0;
  font-size: 13px;
  font-weight: 700
}
.lg-sub-html p {
  font-size: 12px;
  margin: 5px 0 0
}
.lg-sub-html a {
  color: inherit
}
.lg-sub-html a:hover {
  text-decoration: underline
}
.lg-media-overlap .lg-sub-html {
  background-image: linear-gradient(180deg,rgba(0,0,0,0),rgba(0,0,0,.6))
}
.lg-item .lg-sub-html {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0
}
.lg-error-msg {
  font-size: 14px;
  color: #999
}
.lg-counter {
  color: #999;
  display: inline-block;
  font-size: 16px;
  padding-left: 20px;
  padding-top: 12px;
  height: 47px;
  vertical-align: middle
}
.lg-closing .lg-next,
.lg-closing .lg-prev,
.lg-closing .lg-sub-html,
.lg-closing .lg-toolbar {
  opacity: 0;
  transition: opacity .08 cubic-bezier(0,0,.25,1) 0s,color .08 linear,-webkit-transform .08 cubic-bezier(0,0,.25,1) 0s;
  transition: transform .08 cubic-bezier(0,0,.25,1) 0s,opacity .08 cubic-bezier(0,0,.25,1) 0s,color .08 linear;
  transition: transform .08 cubic-bezier(0,0,.25,1) 0s,opacity .08 cubic-bezier(0,0,.25,1) 0s,color .08 linear,-webkit-transform .08 cubic-bezier(0,0,.25,1) 0s
}
body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-item:not(.lg-zoomable) .lg-img-wrap,
body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-item:not(.lg-zoomable) .lg-video-cont {
  opacity: 0;
  -webkit-transform: scale3d(.5,.5,.5);
  transform: scale3d(.5,.5,.5);
  will-change: transform,opacity;
  transition: opacity 250ms cubic-bezier(0,0,.25,1),-webkit-transform 250ms cubic-bezier(0,0,.25,1) 0s!important;
  transition: transform 250ms cubic-bezier(0,0,.25,1) 0s,opacity 250ms cubic-bezier(0,0,.25,1)!important;
  transition: transform 250ms cubic-bezier(0,0,.25,1) 0s,opacity 250ms cubic-bezier(0,0,.25,1),-webkit-transform 250ms cubic-bezier(0,0,.25,1) 0s!important
}
body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-item:not(.lg-zoomable).lg-complete .lg-img-wrap,
body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-item:not(.lg-zoomable).lg-complete .lg-video-cont {
  opacity: 1;
  -webkit-transform: scale3d(1,1,1);
  transform: scale3d(1,1,1)
}
.lg-group:after {
  content: "";
  display: table;
  clear: both
}
.lg-container {
  display: none;
  outline: 0
}
.lg-container.lg-show {
  display: block
}
.lg-on {
  scroll-behavior: unset
}
.lg-hide-sub-html .lg-sub-html,
.lg-next,
.lg-pager-outer,
.lg-prev,
.lg-toolbar {
  opacity: 0;
  will-change: transform,opacity;
  transition: opacity .25s cubic-bezier(0,0,.25,1) 0s,-webkit-transform .25s cubic-bezier(0,0,.25,1) 0s;
  transition: transform .25s cubic-bezier(0,0,.25,1) 0s,opacity .25s cubic-bezier(0,0,.25,1) 0s;
  transition: transform .25s cubic-bezier(0,0,.25,1) 0s,opacity .25s cubic-bezier(0,0,.25,1) 0s,-webkit-transform .25s cubic-bezier(0,0,.25,1) 0s
}
.lg-show-in .lg-next,
.lg-show-in .lg-pager-outer,
.lg-show-in .lg-prev,
.lg-show-in .lg-toolbar {
  opacity: 1
}
.lg-show-in.lg-hide-sub-html .lg-sub-html {
  opacity: 1
}
.lg-show-in .lg-hide-items .lg-prev {
  opacity: 0;
  -webkit-transform: translate3d(-10px,0,0);
  transform: translate3d(-10px,0,0)
}
.lg-show-in .lg-hide-items .lg-next {
  opacity: 0;
  -webkit-transform: translate3d(10px,0,0);
  transform: translate3d(10px,0,0)
}
.lg-show-in .lg-hide-items .lg-toolbar {
  opacity: 0;
  -webkit-transform: translate3d(0,-10px,0);
  transform: translate3d(0,-10px,0)
}
.lg-show-in .lg-hide-items.lg-hide-sub-html .lg-sub-html {
  opacity: 0;
  -webkit-transform: translate3d(0,20px,0);
  transform: translate3d(0,20px,0)
}
.lg-outer {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  text-align: left;
  opacity: .001;
  outline: 0;
  will-change: auto;
  overflow: hidden;
  transition: opacity .15s ease 0s
}
.lg-outer * {
  box-sizing: border-box
}
.lg-outer.lg-zoom-from-image {
  opacity: 1
}
.lg-outer.lg-visible {
  opacity: 1
}
.lg-outer.lg-css3 .lg-item:not(.lg-start-end-progress).lg-current,
.lg-outer.lg-css3 .lg-item:not(.lg-start-end-progress).lg-next-slide,
.lg-outer.lg-css3 .lg-item:not(.lg-start-end-progress).lg-prev-slide {
  transition-duration: inherit!important;
  transition-timing-function: inherit!important
}
.lg-outer.lg-css3.lg-dragging .lg-item.lg-current,
.lg-outer.lg-css3.lg-dragging .lg-item.lg-next-slide,
.lg-outer.lg-css3.lg-dragging .lg-item.lg-prev-slide {
  transition-duration: 0s!important;
  opacity: 1
}
.lg-outer.lg-grab img.lg-object {
  cursor: -webkit-grab;
  cursor: -o-grab;
  cursor: -ms-grab;
  cursor: grab
}
.lg-outer.lg-grabbing img.lg-object {
  cursor: move;
  cursor: -webkit-grabbing;
  cursor: -o-grabbing;
  cursor: -ms-grabbing;
  cursor: grabbing
}
.lg-outer .lg-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0
}
.lg-outer .lg-inner {
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  transition: opacity 0s;
  white-space: nowrap
}
.lg-outer .lg-item {
  will-change: transform,opacity;
  display: none!important
}
.lg-outer .lg-item:not(.lg-start-end-progress) {
  background: url(data:image.webp;base64,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) no-repeat scroll center center rgba(0,0,0,0)
}
.lg-outer.lg-css3 .lg-current,
.lg-outer.lg-css3 .lg-next-slide,
.lg-outer.lg-css3 .lg-prev-slide {
  display: inline-block!important
}
.lg-outer.lg-css .lg-current {
  display: inline-block!important
}
.lg-outer .lg-img-wrap,
.lg-outer .lg-item {
  display: inline-block;
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%
}
.lg-outer .lg-img-wrap:before,
.lg-outer .lg-item:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle
}
.lg-outer .lg-img-wrap {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  white-space: nowrap;
  font-size: 0
}
.lg-outer .lg-item.lg-complete {
  background-image: none
}
.lg-outer .lg-item.lg-current {
  z-index: 1060
}
.lg-outer .lg-object {
  display: inline-block;
  vertical-align: middle;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  position: relative
}
.lg-outer .lg-empty-html .lg-sub-html,
.lg-outer .lg-empty-html.lg-sub-html {
  display: none
}
.lg-outer.lg-hide-download .lg-download {
  opacity: .75;
  pointer-events: none
}
.lg-outer .lg-first-slide .lg-dummy-img {
  position: absolute;
  top: 50%;
  left: 50%
}
.lg-outer.lg-components-open:not(.lg-zoomed) .lg-components {
  -webkit-transform: translate3d(0,0,0);
  transform: translate3d(0,0,0);
  opacity: 1
}
.lg-outer.lg-components-open:not(.lg-zoomed) .lg-sub-html {
  opacity: 1;
  transition: opacity .2s ease-out .15s
}
.lg-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1040;
  background-color: #000;
  opacity: 0;
  will-change: auto;
  transition: opacity 333ms ease-in 0s
}
.lg-backdrop.in {
  opacity: 1
}
.lg-css3.lg-no-trans .lg-current,
.lg-css3.lg-no-trans .lg-next-slide,
.lg-css3.lg-no-trans .lg-prev-slide {
  transition: none 0s ease 0s!important
}
.lg-css3.lg-use-css3 .lg-item {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden
}
.lg-css3.lg-fade .lg-item {
  opacity: 0
}
.lg-css3.lg-fade .lg-item.lg-current {
  opacity: 1
}
.lg-css3.lg-fade .lg-item.lg-current,
.lg-css3.lg-fade .lg-item.lg-next-slide,
.lg-css3.lg-fade .lg-item.lg-prev-slide {
  transition: opacity .1s ease 0s
}
.lg-css3.lg-use-css3 .lg-item.lg-start-progress {
  transition: -webkit-transform 1s cubic-bezier(.175,.885,.32,1.275) 0s;
  transition: transform 1s cubic-bezier(.175,.885,.32,1.275) 0s;
  transition: transform 1s cubic-bezier(.175,.885,.32,1.275) 0s,-webkit-transform 1s cubic-bezier(.175,.885,.32,1.275) 0s
}
.lg-css3.lg-use-css3 .lg-item.lg-start-end-progress {
  transition: -webkit-transform 1s cubic-bezier(0,0,.25,1) 0s;
  transition: transform 1s cubic-bezier(0,0,.25,1) 0s;
  transition: transform 1s cubic-bezier(0,0,.25,1) 0s,-webkit-transform 1s cubic-bezier(0,0,.25,1) 0s
}
.lg-css3.lg-slide.lg-use-css3 .lg-item {
  opacity: 0
}
.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-prev-slide {
  -webkit-transform: translate3d(-100%,0,0);
  transform: translate3d(-100%,0,0)
}
.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-next-slide {
  -webkit-transform: translate3d(100%,0,0);
  transform: translate3d(100%,0,0)
}
.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-current {
  -webkit-transform: translate3d(0,0,0);
  transform: translate3d(0,0,0);
  opacity: 1
}
.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-current,
.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-next-slide,
.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-prev-slide {
  transition: opacity .1s ease 0s,-webkit-transform 1s cubic-bezier(0,0,.25,1) 0s;
  transition: transform 1s cubic-bezier(0,0,.25,1) 0s,opacity .1s ease 0s;
  transition: transform 1s cubic-bezier(0,0,.25,1) 0s,opacity .1s ease 0s,-webkit-transform 1s cubic-bezier(0,0,.25,1) 0s
}
.lg-container {
  display: none
}
.lg-container.lg-show {
  display: block
}
.lg-container.lg-dragging-vertical .lg-backdrop {
  transition-duration: 0s!important
}
.lg-container.lg-dragging-vertical .lg-css3 .lg-item.lg-current {
  transition-duration: 0s!important;
  opacity: 1
}
.lg-inline .lg-backdrop,
.lg-inline .lg-outer {
  position: absolute
}
.lg-inline .lg-backdrop {
  z-index: 1
}
.lg-inline .lg-outer {
  z-index: 2
}
.lg-inline .lg-maximize:after {
  content: ""
}
.lg-components {
  -webkit-transform: translate3d(0,100%,0);
  transform: translate3d(0,100%,0);
  will-change: transform;
  transition: -webkit-transform .35s ease-out 0s;
  transition: transform .35s ease-out 0s;
  transition: transform .35s ease-out 0s,-webkit-transform .35s ease-out 0s;
  z-index: 1080;
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0
}
@media (min-width:767.98px) {
  .hero__inner {
    display: flex;
    align-items: flex-end
  }
  .hero__inner>* {
    flex: 0 1 50%
  }
  .block-proposal.center {
    flex-direction: row-reverse
  }
  .block-proposal.center .block-proposal__img {
    margin-left: 0;
    margin-right: 20px
  }
  .block-proposal.center .block-proposal__line {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg)
  }
  .block-proposal__body {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    gap: 40px;
    width: 100%;
    max-width: 640px;
    min-height: 266px;
    padding: 25px;
    box-shadow: inset 0 30px 20px 0 hsla(0,0%,100%,.25),10px 10px 12px 0 rgba(176,211,210,.5);
    background: hsla(0,0%,100%,.2);
    border: 1px solid #fff;
    border-radius: 12px
  }
  .block-proposal__img {
    margin-left: 20px
  }
  .about__column {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 20px;
    max-width: 310px
  }
  .products__cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    -webkit-column-gap: 32px;
    -moz-column-gap: 32px;
    column-gap: 32px;
    row-gap: 90px
  }
  .card-product {
    flex: 0 1 calc(50% - 16px);
    max-width: 372px;
    display: flex;
    flex-direction: column
  }
  .advant__items {
    display: flex;
    gap: 20px
  }
  .item-advant {
    flex: 1;
    margin-bottom: 0
  }
}
@media (min-width:991.98px) {
  body {
    font-size: var(--font-size-desc)
  }
  .form__row:last-child {
    margin-top: 17px
  }
  .modal-order__title {
    font-size: 28px
  }
  .title {
    font-size: 48px;
    line-height: 112%;
    margin-bottom: 40px
  }
  .title-sm {
    font-size: 35px;
    line-height: 1.3
  }
  .menu__burger {
    display: none
  }
  .menu__list {
    display: flex;
    align-items: center;
    gap: 20px
  }
  .menu__list li a {
    font-size: 18px;
    line-height: 1.3;
    color: #fff;
    transition: color .4s;
    position: relative
  }
  .menu__list li a::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    height: 2px;
    width: 0;
    background-color: #fff;
    transition: all .25s
  }
  .menu__list li a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -3px;
    height: 2px;
    width: 0;
    background-color: #fff;
    transition: all .25s
  }
  .menu__list li a:hover {
    color: #1e6fb2
  }
  .menu__list li a:hover::before {
    width: 50%;
    -webkit-transform: translateX(50%);
    transform: translateX(50%);
    min-width: 12px
  }
  .menu__list li a:hover::after {
    width: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    min-width: 16px
  }
  .contacts-header__burger {
    display: none
  }
  .contacts-header__body {
    display: flex;
    align-items: center;
    gap: 24px
  }
  .contacts-header__phone a {
    color: #fff
  }
  .contacts-header__phone a:hover {
    color: #1e6fb2
  }
  .hero {
    margin-bottom: 120px
  }
  .hero__form-title {
    margin-bottom: 24px
  }
  .proposals {
    margin-bottom: 120px
  }
  .proposals__title {
    margin-bottom: 90px
  }
  .about {
    margin-bottom: 120px
  }
  .about__bg {
    height: 970px
  }
  .products {
    margin-bottom: 120px
  }
  .products__title {
    margin-bottom: 62px
  }
  .card-product__price {
    font-size: 24px;
    line-height: 1.3
  }
  .delivery {
    margin-bottom: 150px
  }
  .delivery__title {
    margin-bottom: 75px
  }
  .delivery__body {
    display: flex
  }
  .delivery__column.left {
    flex: 0 1 25%
  }
  .delivery__column.center {
    flex: 1;
    padding-bottom: 30px
  }
  .delivery__column.right {
    flex: 0 1 25%
  }
  .block-delivery__price p {
    display: none
  }
  .documents__title {
    margin-bottom: 40px
  }
  .documents__body {
    padding: 40px 75px 95px 75px
  }
  .documents__text-body {
    margin-bottom: 45px
  }
  .item-documents {
    flex: 1
  }
  .benefit {
    margin-bottom: 120px
  }
  .benefit__heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 50px
  }
  .benefit__label {
    flex-direction: row;
    gap: 7px
  }
  .advant {
    margin-bottom: 120px
  }
  .advant__title {
    margin-bottom: 60px
  }
  .info-advant {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px
  }
  .info-advant__title {
    font-size: 29px;
    line-height: 1.3;
    margin-bottom: 40px
  }
  .info-advant__line {
    display: block;
    padding-bottom: 10px
  }
  .contacts {
    padding: 60px 0
  }
  .contacts__title {
    margin-bottom: 60px
  }
  .contacts__body {
    display: flex;
    gap: 20px;
    text-align: left
  }
  .contacts__body>* {
    flex: 0 1 50%
  }
  .contacts__items {
    padding: 60px
  }
  .item-contact {
    margin-bottom: 35px
  }
  .item-contact__group {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 18px
  }
  .item-contact__info {
    display: flex;
    align-items: center;
    gap: 15px
  }
}
@media (min-width:1230px) {
  .header .logo {
    max-width: 285px
  }
  .menu__list {
    gap: 40px
  }
  .hero {
    padding: 158px 0
  }
  .block-proposal.center .block-proposal__img {
    margin-right: 40px
  }
  .block-proposal__body {
    padding: 30px 60px;
    gap: 80px
  }
  .block-proposal__text {
    font-size: 18px;
    line-height: 1.3
  }
  .block-proposal__img {
    margin-left: 40px
  }
  .about__bg {
    top: -300px;
    height: 1306px
  }
  .about__inner {
    align-items: flex-end
  }
  .about__column {
    min-height: 420px
  }
  .img-about img {
    max-height: 565px
  }
  .block-delivery__img img {
    max-width: 525px
  }
  .benefit__inner {
    padding: 60px 75px 90px 75px
  }
  .benefit__text {
    margin-bottom: 120px
  }
  .advant__items {
    margin-bottom: 120px
  }
  .item-advant {
    flex: auto;
    flex-direction: row;
    text-align: left
  }
  .item-advant__text {
    text-align: left
  }
  .info-advant {
    padding: 60px 30px 60px 85px
  }
  .info-advant__img {
    width: 144px;
    height: 144px
  }
  .info-advant__img:last-child img {
    margin-left: -75px;
    margin-bottom: 18px
  }
  .info-advant__img img {
    width: 144px
  }
}
@media (min-width:1380px) {
  .title {
    font-size: 80px;
    line-height: 112%;
    margin-bottom: 60px
  }
  .hero__inner {
    align-items: flex-start
  }
  .hero__subtitle {
    position: absolute;
    right: 60px;
    bottom: 8px;
    max-width: 302px;
    margin-bottom: 0
  }
  .hero__img img {
    max-height: 761px
  }
  .about {
    margin-bottom: 218px
  }
}
@media (max-width:991.98px) {
  .header .logo {
    order: 1
  }
  .header__menu {
    order: 3
  }
  .header__contacts {
    order: 2
  }
  .menu__navigation {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    padding: 110px 15px 30px 15px;
    overflow: auto;
    transition: right .5s;
    background-color: #1f394f;
    z-index: 99
  }
  .menu-open .menu__navigation {
    right: 0
  }
  .menu__list li {
    text-align: center
  }
  .menu__list li:not(:last-child) {
    margin-bottom: 20px
  }
  .menu__list li a {
    font-size: 22px;
    line-height: 1.3;
    color: #fff
  }
  .contacts-header {
    margin-left: auto;
    margin-right: 15px
  }
  .contacts-header__body {
    position: absolute;
    top: 110%;
    right: 0;
    min-width: 210px;
    padding: 20px;
    background-color: #fff;
    border-radius: 12px
  }
  .contacts-header__phone {
    margin-bottom: 23px
  }
  .icon-menu {
    display: block;
    position: relative;
    width: 28px;
    height: 20px;
    z-index: 100
  }
  .icon-menu span,
  .icon-menu::after,
  .icon-menu::before {
    content: "";
    transition: all .3s ease 0s;
    left: 0;
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: #fff;
    border-radius: 2px
  }
  .icon-menu::before {
    top: 0;
    width: 24px
  }
  .icon-menu::after {
    bottom: 0;
    width: 19px
  }
  .icon-menu span {
    top: calc(50% - 1.5px)
  }
  .menu-open .icon-menu span {
    width: 0
  }
  .menu-open .icon-menu::before {
    top: calc(50% - 1.5px);
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    width: 28px
  }
  .menu-open .icon-menu::after {
    bottom: calc(50% - 1.5px);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    width: 28px
  }
  .img-about__decor-big {
    width: 335px;
    height: 335px
  }
  .img-about__decor-sm {
    width: 297px;
    height: 297px
  }
  .delivery__column:not(:last-child) {
    margin-bottom: 40px
  }
  .block-delivery__price span:last-child {
    display: none
  }
  .documents__items {
    flex-direction: column
  }
  .benefit__title {
    text-align: center;
    margin-bottom: 25px
  }
  .info-advant__content {
    text-align: center
  }
  .info-advant__text {
    gap: 20px;
    margin-bottom: 50px
  }
  .contacts__map {
    display: none
  }
  .item-contact__icon {
    margin-bottom: 13px
  }
  .item-contact__title {
    margin-bottom: 15px
  }
}
@media (max-width:991.98px)and (any-hover:none) {
  .icon-menu {
    cursor: default
  }
}
@media (max-width:767.98px) {
  .form {
    max-width: inherit;
    margin-bottom: 30px
  }
  .hero {
    text-align: center
  }
  .block-proposal {
    flex-direction: column;
    padding: 40px 15px 35px 15px;
    box-shadow: inset 0 30px 20px 0 hsla(0,0%,100%,.25),10px 10px 12px 0 rgba(176,211,210,.5);
    background: hsla(0,0%,100%,.2);
    border: 1px solid #fff;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 30px
  }
  .block-proposal.last .block-proposal__img {
    display: none
  }
  .block-proposal__info {
    flex-direction: column;
    align-items: center
  }
  .block-proposal__line {
    display: none
  }
  .block-proposal__img {
    max-width: 220px
  }
  .about__inner {
    flex-direction: column
  }
  .about__column:not(:last-child) {
    margin-bottom: 15px
  }
  .about__column.left {
    order: 2
  }
  .about__column.center {
    order: 1;
    margin-bottom: 90px
  }
  .about__column.right {
    order: 3
  }
  .block-about {
    padding: 30px 40px 55px 40px;
    text-align: center;
    align-items: center
  }
  .block-about:not(:last-child) {
    margin-bottom: 15px
  }
  .products::before {
    top: 25%
  }
  .products::after {
    top: auto;
    bottom: 0
  }
  .card-product:not(:last-child) {
    margin-bottom: 45px
  }
  .card-product__img img {
    max-height: 350px;
    max-width: 160px
  }
  .benefit .container {
    padding: 0
  }
}
@media (max-width:360px) {
  .info-advant__text {
    flex-direction: column
  }
}
@media (min-width:767.98px)and (max-width:1230px) {
  .block-proposal__info span {
    font-size: 12px;
    padding: 10px
  }
}
@media (min-width:991.98px)and (max-width:1230px) {
  .block-delivery__price span:last-child {
    display: block;
    margin-top: 10px
  }
}