.h-menu,
.header-nav__link,
.header-controls__lang {
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  /* 163.636% */
}
.section__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 12px;
}

.section__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 12px;
}

.section__header + * {
  margin-top: 40px;
}
.header {
  position: sticky;
  top: 0;
  z-index: 10;
  background-color: #fff;
  padding: 24px 0px;
}

.header__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 40px;
}

.header__logo {
  height: 36px;
  flex-shrink: 0;
  margin-bottom: 21px;
}

.header__logo-img {
  height: 36px;
}

.header > .header-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 32px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
}
.header.open-menu > .container {
   position: static;
}
.header.open-form > .container {
  position: static;
}
.header.open-search > .container {
  position: static;
}

.header-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 40px;
  padding: 0;
}

.header-nav__link {
  position: relative;
  color: var(--color-p-text);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.header-nav__link:not(a) {
  cursor: pointer;
}

.header-nav-more {
  position: absolute;
  top: calc(100% + 24px);
  background: #fff;
  border-top: 7px solid #03BE93;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 20px 24px;
  opacity: 0;
  pointer-events: none;
  -webkit-transform: translateY(-20px);
  -ms-transform: translateY(-20px);
  transform: translateY(-20px);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.header-nav-more--row {
  left: 0;
}
.header-nav-more__title {
  color: #465C5B;
  font-size: 14px;
  font-weight: 700;
}

.header-nav-more__links {
  /*min-width: 420px;*/
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
}

.header-nav-more__link {
  color: #465C5B;
  font-size: 18px;
  font-weight: 400;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  width: fit-content;
}

.header-nav-more__link--active {
  color: #03BE93;
}

.header-nav-more__column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
  max-width: 420px;
  width: 0px;
  overflow: hidden;
}

.header-nav-more__column--active,
.header-nav-more__column--always-active {
  width: 100%;
}

.header-nav-more__column + .header-nav-more__column--active {
  position: relative;
  margin-top: -20px;
  margin-bottom: -20px;
  padding-top: 20px;
  padding-left: 24px;
  margin-left: 24px;
  padding-bottom: 20px;
}

.header-nav-more__column + .header-nav-more__column--active::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  border-left: 1px solid #ECECEC;
}

.header-nav-more--row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  width: 100%;
  max-width: 100%;
  gap: 0;
  max-height: 100vh;
}

.header-nav-more--active {
  opacity: 1;
  pointer-events: all;
  -webkit-transform: translateY(0px);
  -ms-transform: translateY(0px);
  transform: translateY(0px);
}

.header-nav-more#moreNavAbout {
  /*top: 100%;*/
}

.header-controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 22px;
}

.header-controls__lang {
  color: var(--color-p-text);
}

.header-burger {
  display: none;
  padding: 14px 24px;
  position: fixed;
  bottom: 12px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  z-index: var(--z-index-default);
  background: var(--BASE-DARK-GREY);
  border-radius: 100px;
  gap: 4px;
  width: 72px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.header-burger span {
  width: 24px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  height: 2px;
  background: var(--WHITE);
}

.header.active .header-burger {
  background: var(--CLOVER);
  width: calc(100% - 24px);
}

.header.active .header-burger span:nth-child(1) {
  -webkit-transform: translateY(6px) rotate(-45deg);
  -ms-transform: translateY(6px) rotate(-45deg);
  transform: translateY(6px) rotate(-45deg);
}

.header.active .header-burger span:nth-child(2) {
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
}

.header.active .header-burger span:nth-child(3) {
  -webkit-transform: translateY(-6px) rotate(45deg);
  -ms-transform: translateY(-6px) rotate(45deg);
  transform: translateY(-6px) rotate(45deg);
}
.burger {
  position: relative;
  width: 40px;
  height: 40px;
  padding: 0;
  cursor: pointer;
  background: #03be93;
  border-radius: 50%;
  display: none;
  flex-shrink: 0;
}

.burger__line {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 2px;
  background: #fff;
  transition: ease .3s
}

.burger__line:after, .burger__line:before {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #fff;
  transition: ease .3s
}

.burger__line:before {
  top: -5px
}

.burger__line:after {
  bottom: -5px
}

.burger._active {
  background: #07302d
}

.burger._active .burger__line {
  background: 0 0
}

.burger._active .burger__line:before {
  transform: rotate(45deg);
  top: 0
}

.burger._active .burger__line:after {
  transform: rotate(-45deg);
  bottom: 0
}
.header.open-menu .burger {
    background: #07302d
}

.header.open-menu .burger__line {
    background: 0 0
}

.header.open-menu .burger__line:before {
    transform: rotate(45deg);
    top: 0
}

.header.open-menu .burger__line:after {
    transform: rotate(-45deg);
    bottom: 0
}

.base-button {
  padding: 8px 20px;
  background: var(--primary);
  border-radius: 100px;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  color: #FFF;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  line-height: 24px;
  text-transform: uppercase;
  border: 1px solid var(--primary);
}

.base-button--outline {
  color: var(--primary);
  background: transparent;
}


.header__search.d-sm-none {
    display: none !important
}

/*.header__search-icon, .header__search-title {*/
/*    display: none*/
/*}*/

.header__search-open {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 30px;
    cursor: pointer
}

.header__search-open svg {
    width: 20px;
    height: 20px;
    fill: #555
}

.header__search-wrap {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    transform: translateY(-100%);
    width: 100%;

    background: #fff;
    transition: .2s
}

.header__search-wrap._active {
    transform: translateY(0)
}

.header__search-close {
    position: absolute;
    right: 15px;
  top: 26px;
  background: #fff !important;

}
.open-search .header__search-close {
  display: block;
}
.header__search-close .burger__line:after, .header__search-close .burger__line:before {
  background: #465c5b;
}
.header__search-title {
  display: block;
  margin-bottom: 30px;
  font-weight: 500;
  font-size: 30px;
  line-height: 40px;
  color: #222;
}
.header__search-box {
  position: relative;
  margin-bottom: 30px;
}
.header__search-icon {
  position: absolute;
  top: 23px;
  left: 0;
  display: block;
  width: 20px;
  height: 20px;
  fill: #555;
}
.header__search-input:placeholder {
  font-size: 14px;
  line-height: 22px;
  font-weight: 400;
  color: rgba(34,34,34,.5);
}

.header__search-input {
    height: 60px;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    border-bottom: 1px solid #d9d9d9;
  padding: 0 10px 0 30px;
}

.header__search-input::placeholder {
    font-size: 18px;
    line-height: 28px;
    color: rgba(34, 34, 34, .5)
}

.header__search-btn {
    margin-left: auto
}
.header__search-inner {
  max-width: 480px;
  position: relative;
  padding-top: 80px;
  padding-bottom: 60px;
}

.header__lang {
  margin-right: auto;
  font-weight: 400;
  font-size: 22px;
  line-height: 36px;
  color: #465c5b;
}
.header-nav__link {
  font-size: 28px;
  line-height: 36px;
}
.subm.container {
  position: relative;
}
.header__menu > .container {
  padding: 0;
}
.header__menu_mobile {
  display: none;
}
.header__relation {
  position: absolute;
  top: 0;
  left: 0;
  transform: translateX(-100%);
  z-index: 10;
  width: 100%;
  height: 100vh;
  padding-top: 60px;
  background: #fff;
  transition: .2s
}

.header__relation._active {
  transform: translateX(0)
}

.header__relation-close {
  position: absolute;
  top: 10px;
  right: 15px;

}

.header__relation-title {
  display: none
}

.header__relation-btn {
  margin-top: 50px
}

.header__relation-check {
  margin-top: 40px
}

.header__relation .form-wrap__text {
  color: #465c5b
}








@media (min-width: 768px) {
  .header__lang {
    display: block;
    margin: 0;
    font-size: 18px;
    line-height: 28px;
  }
  .header-nav__link {
    font-size: 18px;
    line-height: 24px;
  }
  .header__relation {
    transform: translate(0) !important;
    z-index: -1;
    opacity: 0;
    visibility: hidden;
    height: auto;
    padding-top: 0
  }

  .header__relation-inner {
    position: relative;
    max-width: 620px;
    padding-top: 80px;
    padding-bottom: 170px
  }

  .header__relation-close {
    top: 26px;
    background: #fff !important;

  }
  .open-form .header__relation-close {
    display: block;
  }
  .header__relation-close .burger__line:after, .header__relation-close .burger__line:before {
    background: #465c5b
  }

  .header__relation-title {
    display: block;
    margin-bottom: 80px;
    font-weight: 500;
    font-size: 30px;
    line-height: 40px;
    text-align: center
  }

  .header__relation-btn {
    margin-right: auto;
    margin-left: auto
  }

  .header__relation._active {
    z-index: 10;
    visibility: visible;
    opacity: 1
  }
}
@media all and (min-width: 1024px) {

  .header__relation-inner {
    max-width: 860px
  }
}
@media all and (min-width: 1280px) {
  .header__relation-inner {
    max-width: 790px
  }
}
@media (min-width: 1920px) {
  .header__lang {
    margin-left: 40px;
    font-size: 22px;
    line-height: 36px;
  }
  .header-nav__link {
    font-size: 22px;
    line-height: 36px;
  }
  .header__relation-inner {
    max-width: 920px;
    padding-bottom: 100px;
    padding-right: 0;
    padding-left: 0
  }
}



@media screen and (max-width: 1259px) {
  .header__menu_mobile {
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    height: calc(100vh - 60px);
    padding: 60px 0 80px;
    background: linear-gradient(162.76deg, #07302d 0, #038073 99.54%);
    min-height: auto;
    overflow: auto;
    -ms-overflow-style: none;
    overflow: -moz-scrollbars-none;
    scrollbar-width: none;
  }
  .header > .container {
    position: static;
  }
  .header-nav_mobile {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .header-nav-more_sub {
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .header-nav-more_sub .header-nav-more__link {
     color: #fff;
  }
  .main_link {
    font-weight: 700;
    font-size: 22px;
  }
  .main_linkb {
    font-weight: 700;
  }
  .header__row {
    /*display: contents;*/
  }
  .header__lang {
    display: block;
    margin: 0;
    font-size: 18px;
    line-height: 28px;
  }
  .header-nav {
    position: relative;
    gap: 32px;
    max-width: 240px;
    margin-bottom: 0;
    color: #fff;
  }
  .header {
    padding: 10px 0;
  }
  .header__menu {
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    height: calc(100vh - 60px);
    padding: 60px 0 80px;
    background: linear-gradient(162.76deg, #07302d 0, #038073 99.54%);
    min-height: auto;
    overflow: auto;
    -ms-overflow-style: none;
    overflow: -moz-scrollbars-none;
    scrollbar-width: none;
    display: none;
  }

  .header__menu .header-nav {
    position: relative;
    gap: 32px;
    max-width: 240px;
    margin-bottom: 0;
    display: grid;
    color: #fff;
  }
    /*.header.open-menu .header-nav {*/
  /*  display: grid;*/
  /*  position: relative;*/
  /*  gap: 32px;*/
  /*  max-width: 240px;*/
  /*  margin-bottom: 0;*/
  /*}*/
  /*.header-nav__link {*/
  /*  font-size: 18px;*/
  /*  line-height: 24px;*/
  /*  color: #fff;*/
  /*}*/
  .header-nav__link {
    color: #fff;
  }
  .header__menu::-webkit-scrollbar {
    display: none
  }

  .header__menu::-moz-scrollbar {
    width: 0;
    height: 0;
    margin-right: -16px
  }

  .header__menu-items {
    display: grid;
    gap: 20px;
    margin-bottom: 80px
  }

  .header__menu-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap
  }

  .header__menu-open {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    cursor: pointer;
    transition: .2s
  }

  .header__menu-open._active {
    transform: rotate(30deg)
  }

  .header__menu-open svg {
    width: 16px;
    height: 12px;
    fill: #d9d9d9
  }

  .header__menu-link {
    font-size: 28px;
    line-height: 36px;
    color: #fff
  }

  .header__menu-sub {
    display: none;
    padding: 10px 40px 0 10px
  }

  .header__menu-ref {
    display: block;
    margin-bottom: 6px;
    font-size: 20px;
    line-height: 27px;
    color: #fff
  }
  .burger {
    display: block;
  }
  .header__logo {
    margin-bottom: 8px;
  }
}
@media screen and (max-width: 1024px) {
  .header__row {
    gap: 20px;
  }
  .header-controls {
    gap: 12px;
  }
}

@media screen and (max-width: 980px) {
  /*.header-nav {*/
  /*  position: fixed;*/
  /*  bottom: 58px;*/
  /*  left: 50%;*/
  /*  margin: 0;*/
  /*  opacity: 0;*/
  /*  display: -webkit-box;*/
  /*  display: -ms-flexbox;*/
  /*  display: flex;*/
  /*  -webkit-box-orient: vertical;*/
  /*  -webkit-box-direction: normal;*/
  /*  -ms-flex-direction: column;*/
  /*  flex-direction: column;*/
  /*  height: auto;*/
  /*  padding: 32px 0px;*/
  /*  overflow: hidden;*/
  /*  gap: 24px;*/
  /*  border-radius: 16px;*/
  /*  -webkit-transition: 0.3s ease;*/
  /*  transition: 0.3s ease;*/
  /*  background: var(--WHITE);*/
  /*  -webkit-transform: translateX(-50%);*/
  /*  -ms-transform: translateX(-50%);*/
  /*  transform: translateX(-50%);*/
  /*  width: 0px;*/
  /*  border: 0px solid var(--SILVER-50);*/
  /*}*/

  /*.header-nav__link {*/
  /*  padding: 0px 24px;*/
  /*  white-space: nowrap;*/
  /*  text-align: left;*/
  /*  opacity: 0;*/
  /*  -webkit-box-align: start;*/
  /*  -ms-flex-align: start;*/
  /*  align-items: flex-start;*/
  /*  width: 100%;*/
  /*  -webkit-box-pack: start;*/
  /*  -ms-flex-pack: start;*/
  /*  justify-content: flex-start;*/
  /*}*/

  /*.header-nav__link:before {*/
  /*  width: 3px;*/
  /*  height: 100%;*/
  /*  border-radius: 0px 10px 10px 0px;*/
  /*  left: -3px;*/
  /*  bottom: -5px;*/
  /*  padding: 5px 0px;*/
  /*}*/

  /*.header-nav__link--active:before {*/
  /*  bottom: -5px;*/
  /*  left: 0;*/
  /*}*/

  /*.header.active .header-nav {*/
  /*  width: calc(100% - 24px);*/
  /*  border-width: 1px;*/
  /*  opacity: 1;*/
  /*}*/

  /*.header.active .header-nav__link {*/
  /*  opacity: 1;*/
  /*}*/

  .header-burger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media (max-width: 768px) {
  .header__menu {
    height: auto;
    padding: 60px 0 80px;
  }
  .header__logo {
    margin-bottom: 0;
  }
  .header__logo-img {
    height: auto;
  }
}
@media screen and (max-width: 768px) {
  .header {
    padding: 12px 0px;
  }

  .header > .container {
    padding: 0px 16px;
  }
  .header-controls__lang, .header-controls__search, .header-controls__callback {
    display: none;
  }
  .header__menu > .container {
    padding: 0px 16px;
  }
}
@media (hover: hover) {
  /*.header-nav__link:hover {*/
  /*  color: #03BE93;*/
  /*}*/

  /*.header-nav-more__link:hover {*/
  /*  color: #03BE93;*/
  /*}*/
}
@media screen and (max-width: 768px) {
  .header__logo-img {
    width: 136px;
  }
}
@media screen and (max-width: 450px) {
  .header__logo-img {
    width: 122px;
  }
  .header__row {
    gap: 5px;
  }
}

.open-menu .header__menu {
    display: block;
    width: 100%;
    height: calc(100vh - 60px);
    padding: 60px 0 80px;
    background: linear-gradient(162.76deg, #07302d 0, #038073 99.54%);
}
