header{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  background: var(--dark-black);
}
header.sticky{
  position: fixed;
  box-shadow: 0px 2px 3px rgba(9, 9, 57, 0.05);
  -webkit-animation: slideDown 0.3s linear;
  animation: slideDown 0.3s linear;
}
.header-white{
  background: var(--white);
}
@-webkit-keyframes slideDown {
  from {
    transform: translateY(-18.5rem);
  }
  to {
    transform: none;
  }
}
@-moz-keyframes slideDown {
  from {
    transform: translateY(-18.5rem);
  }
  to {
    transform: none;
  }
}
@-ms-keyframes slideDown {
  from {
    transform: translateY(-18.5rem);
  }
  to {
    transform: none;
  }
}
@-o-keyframes slideDown {
  from {
    transform: translateY(-18.5rem);
  }
  to {
    transform: none;
  }
}
@keyframe slideDown {
  from {
    transform: translateY(-18.5rem);
  }
  to {
    transform: none;
  }
}
.header-top-block{
  padding: 3.2rem 0;
}
header.sticky .header-top-block{
  padding: 1rem 0;
}
.logo{
  width: 20.1rem;
  height: 4.8rem;
}
.logo a{
  display: block;
}
.logo img{
  max-width: 100%;
  max-height: 100%;
}
.logo-black,
.header-white .logo-white{
  display: none;
}
.header-white .logo-black{
  display: block;
}
.header-white .header-btn .btn{
  border-color: var(--red);
  background: var(--red);
  color: var(--white);
}
.header-white .header-btn .btn:hover{
  border-color: #cd0006;
  background: #cd0006;
}
.header-social{
  margin-left: 2rem;
}
.header-social li{
  margin-left: 0.8rem;
}
.header-social li:first-child{
  margin-left: 0;
}
.header-social a{
  height: 4.4rem;
  width: 4.4rem;
  border-radius: 50%;
  padding: 1rem;
  border: 0.1rem solid var(--white);
}
.header-white .header-social a{
  border-color: var(--dark-black);
}
.header-social a:hover{
  background: var(--white);
}
.header-white .header-social a:hover{
  background: var(--dark-black);
}
.header-social .icon-black,
.header-white .header-social .icon-white{
  display: none;
}
.header-white .header-social .icon-black{
  display: block;
}
.header-social a:hover img{
  -webkit-filter: brightness(0);
  filter: brightness(0);
}
.header-white .header-social a:hover img{
  -webkit-filter: brightness(0) invert(100%);
  filter: brightness(0) invert(100%);
}
.header-dropdown{
  position: relative;
  margin-left: 2rem;
}
.dropdown-btn{
  font-size: 1.6rem;
  line-height: 140%;
  display: flex;
  align-items: center;
  color: var(--white);
  font-weight: bold;
}
.header-white .dropdown-btn{
  color: var(--dark-black);
}
.dropdown-btn::after{
  position: relative;
  content: "";
  margin-left: 0.8rem;
  width: 1.2rem;
  height: 0.8rem;
  background-image: url(../images/icon-dropdown.png);
  background-size: cover;
  background-position: center;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.header-white .dropdown-btn::after{
  background-image: url(../images/icon-dropdown-black.png);
}
.header-dropdown.open .dropdown-btn::after{
  -webkit-transform: rotate(-180deg);
  -moz-transform: rotate(-180deg);
  transform: rotate(-180deg);
}
.dropdownlist{
  position: absolute;
  top: calc(100% + 4.5rem);
  left: -4.1rem;
  min-width: 17.6rem;
  background: var(--dark-black);
  padding: 1.6rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: none;
}
.header-white .dropdownlist{
  border: 0;
}
.header-dropdown.open .dropdownlist{
  display: block;
}
header.sticky .dropdownlist {
  top: calc(100% + 2.3rem);
}
.dropdownlist li{
  margin-bottom: 0.8rem;
}
.dropdownlist a{
  display: flex;
  align-items: center;
  padding: 0.8rem 1rem;
  font-size: 1.6rem;
  line-height: 1;
  position: relative;
  border-radius: 0.4rem;
  color: var(--white);
}
.dropdownlist li.active a{
  background: var(--light-gray);
  color: var(--dark-black);
}
.dropdownlist li.active a::after{
  position: relative;
  content: "";
  margin-left: auto;
  width: 1.1rem;
  height: 0.8rem;
  background: url(../images/icon-tick.png);
  background-size: cover;
  background-position: center;
}
.header-bottom{
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid transparent;
}
.header-white .header-bottom{
  border-color: rgba(var(--black-hex),0.1);
}
nav ul{
  margin: 0;
  padding: 0;
}
nav li{
  margin: 0;
  padding: 0;
}
nav li::after{
  content: none;
}
nav > ul{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
nav > ul > li{
  margin: 0 2rem;
}
nav > ul > li.haschild{
  position: initial;
}
nav > ul > li:first-child{
  margin-left: 0;
}
nav > ul > li:last-child{
  margin-right: 0;
}
nav > ul > li > a{
  position: relative;
  font-size: 1.6rem;
  line-height: 140%;
  padding: 2.4rem 0;
  display: flex;
  align-items: center;
  color: var(--white);
  font-weight: bold;
}
header.sticky nav > ul > li > a{
  padding: 1.6rem 0;
}
.header-white nav > ul > li > a{
  color: var(--dark-black);
}
nav > ul > li.haschild > a:after{
  position: relative;
  content: "";
  margin-left: 0.8rem;
  width: 1.2rem;
  height: 0.8rem;
  background-image: url(../images/icon-dropdown.png);
  background-size: cover;
  background-position: center;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.header-white nav > ul > li.haschild > a:after{
  background-image: url(../images/icon-dropdown-black.png);
}
nav > ul > li.haschild:hover > a:after{
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
}
nav > ul > li:hover > a::before,
nav > ul > li.active > a::before{
  position: absolute;
  content: "";
  left: 0;
  z-index: 1;
  bottom: -1px;
  width: 100%;
  height: 0.4rem;
  background: var(--red);
}
.submenu{
  position: absolute;
  left: calc((100vw - 1535px) / 2);
  top: 100%;
  display: none;
}
.haschild:hover .submenu,
.haschild.active .submenu{
  display: block;
}
.submenu::before{
  --width: calc((100vw - 1535px) / 2);
  position: absolute;
  content: "";
  left: calc(var(--width) * -1);
  height: 100%;
  width: var(--width);
  background: var(--black);
}
.submenu-back{
  display: none;
  align-items: center;
  align-items: center;
  cursor: pointer;
  font-size: 1.4rem;
  line-height: 160%;
  text-transform: uppercase;
  font-weight: bold;
  color: var(--white);
  margin: 0 0 3.2rem;
} 
.submenu-back img{
  margin-right: 0.8rem;
}
.submenu-back a,
.submenu-back u{
  color: var(--white);
  margin-left: 0.4rem;
  text-decoration: underline !important;
  text-decoration-skip-ink: none;
}
.submenu-title{
  display: block;
  font-size: 1.4rem;
  line-height: 160%;
  text-transform: uppercase;
  font-weight: bold;
  color: rgba(255,255,255,0.45);
  margin: 0 0 2rem;
}
.submenu > .submenu-body > .submenu-title{
  display: none;
}
.submenu-body{
  height: calc(100vh - 18.441rem);
  background: var(--black);
  width: 52.3rem;
  padding: 4rem;
  overflow: hidden;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.1) var(--black);
}
.submenu-body::-webkit-scrollbar {
  width: 0.4rem;
}
.submenu-body::-webkit-scrollbar-track {
  background: var(--black);
}
.submenu-body::-webkit-scrollbar-thumb {
  background-color: rgba(255,255,255,0.1);
}
header.sticky .submenu-body{
  height: calc(100vh - 12.441rem);
}
.submenu  > .submenu-body{
  width: 49.3rem;
  padding-left: 0;
}
.submenu-list li.has-subchild{
  position: initial;
}
.sub-submenu{
  position: absolute;
  top: 0;
  left: calc(100% - 1px);
  border-left: 1px solid rgba(255, 255, 255, 0.15);
  display: none;
}
.has-subchild.active > .sub-submenu{
  display: block;
}
.submenu-list li{
  margin-bottom: 2.4rem;
}
.submenu-list li > a{
  position: relative;
  color: var(--white);
  display: flex;
  align-items: center;
  font-size: 1.8rem;
  line-height: 120%;
  font-weight: bold;
  text-transform: initial !important;
  font-family: "Space Grotesk", sans-serif;
}
.has-subchild > a{
  padding-right: 2.4rem;
}
.submenu-list li:hover > a,
a.submenu-title:hover{
  text-decoration: underline !important;
  text-decoration-skip-ink: none;
}
.has-subchild > a::after{
  position: absolute;
  content: "";
  right: 0;
  width: 0.9rem;
  height: 1.4rem;
  background-image: url(../images/icon-chevron-right.png);
  background-size: cover;
  background-position: center;
}
.input-search{
  outline: none;
  background: transparent;
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 500;
  line-height: initial;
  height: 3.6rem;
  border: 0;
  border-bottom: 1px solid transparent;
  width: 8rem;
  padding-left: 3.2rem;
  background-image: url(../images/icon-search-w.png);
  background-repeat: no-repeat;
  background-position: left center;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.header-white .input-search{
  background-image: url(../images/icon-search-black.png);
  font-weight: bold;
  color: var(--dark-black);
}
.input-search::placeholder{
  opacity: 1;
  color: var(--white);
}
.header-white .input-search::placeholder{
  color: var(--dark-black);
}
.input-search:-ms-input-placeholder{
  color: var(--white);
}
.header-white .input-search:-ms-input-placeholder{
  color: var(--dark-black);
}
.input-search:focus,
.has-value .input-search{
  width: 25rem;
  border-color: var(--white);
}
.header-white .input-search:focus,
.header-white .has-value .input-search{
  border-color: var(--dark-black);
}
.toggleMenu {
  position: relative;
  width: 4.4rem;
  height: 4.4rem;
  display: none;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  margin-left: 1.2rem;
}
.toggleMenu span{
  position: absolute;
  width: 2.4rem;
  height: 0.2rem;
  background: var(--white);
  border-radius: 1rem;
}
.header-white .toggleMenu span{
  background: var(--black);
}
.toggleMenu span.bar1 {
  top: 1.2rem;
  transform: rotate(0);
  transition: top .15s ease .15s, transform .15s ease-out .05s;
}
body.showmenu .toggleMenu span.bar1 {
  top: 2.1rem;
  transform: rotate(45deg);
  transition: top .15s ease .05s, transform .15s ease-out .25s;
}
.toggleMenu span.bar2 {
  top: 2.1rem;
  opacity: 1;
  transition: .15s ease .15s;
}
body.showmenu .toggleMenu span.bar2 {
  opacity: 0;
}
.toggleMenu span.bar3 {
  top: 3rem;
  transform: rotate(0);
  transition: top .15s ease .15s, transform .15s ease-out .05s;
}
body.showmenu .toggleMenu span.bar3 {
  top:2.1rem;
  transform: rotate(-45deg);
  transition: top .15s ease .05s, transform .15s ease-out .25s;
}
.header-bottom-mobile{
  display: none;
}
.nav-btn{
  margin-bottom: 2rem;
}
.nav-contact-list{
  padding: 1.2rem 0;
  margin-bottom: 2rem;
}
.nav-contact{
  margin-bottom: 2.4rem;
}
.nav-contact-link{
  display: flex;
  align-items: center;
  color: var(--white);
  font-size: 1.6rem;
  line-height: 180%;
}
.nav-contact-link img{
  flex-shrink: 0;
  margin-right: 1rem;
  max-width: 2.3rem;
}
.nav-btn:last-child,
.nav-contact-list:last-child,
.nav-contact:last-child{
  margin-bottom: 0;
}
.header-bottom-mobile  .header-social{
  margin: 0;
  display: block;
}
.opensubmenu,
.opensubsubmenu{
  position: absolute;
  top: 0;
  right: -1.4rem;
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 100%;
  z-index: 1;
}
@media(min-width:1560px) and (max-width:1579.98px){
  .header-top-block {
    padding: 2.4rem 0;
  }
  nav > ul > li > a {
    padding: 2rem 0;
  }
  .submenu {
    left: calc((100vw - 1460px) / 2);
  }
  .submenu::before {
    --width: calc((100vw - 1460px) / 2);
  }
  .submenu-body {
    height: calc(100vh - 16.041rem);
    width: 50.3rem;
  }
  .submenu > .submenu-body {
    width: 47.3rem;
  }
  .submenu-list li {
    margin-bottom: 2rem;
  }
  .submenu-list li > a {
    font-size: 1.9rem;
  }
}
@media(min-width:1460px) and (max-width:1559.98px){
  .header-top-block {
    padding: 2.4rem 0;
  }
  nav > ul > li > a {
    font-size: 1.5rem;
    padding: 2rem 0;
  }
  .submenu {
    left: calc((100vw - 1387px) / 2);
  }
  .submenu::before {
    --width: calc((100vw - 1387px) / 2);
  }
  .submenu-body {
    height: calc(100vh - 15.9rem);
    width: 46.5rem;
    padding: 3.2rem;
  }
  .submenu > .submenu-body {
    width: 46.5rem;
  }
  .submenu-list li {
    margin-bottom: 2rem;
  }
  .submenu-list li > a {
    font-size: 1.9rem;
  }
  .submenu-title {
    font-size: 1.3rem;
  }
}
@media(min-width:1360px) and (max-width:1459.98px){
  .header-top-block {
    padding: 2.4rem 0;
  }
  nav > ul > li {
    margin: 0 1.4rem;
  }
  nav > ul > li > a {
    font-size: 1.5rem;
    padding: 2rem 0;
  }
  .submenu {
    left: calc((100vw - 1287px) / 2);
  }
  .submenu::before {
    --width: calc((100vw - 1287px) / 2);
  }
  .submenu-body {
    height: calc(100vh - 15.9rem);
    width: 43.3rem;
    padding: 3rem;
  }
  header.sticky .submenu-body {
    height: calc(100vh - 12.3rem);
  }
  .submenu > .submenu-body {
    width: 43.3rem;
  }
  .submenu-list li {
    margin-bottom: 2rem;
  }
  .submenu-list li > a {
    font-size: 1.8rem;
  }
  .submenu-title {
    font-size: 1.3rem;
  }
}
@media(min-width:1200px) and (max-width:1359.98px){
  .header-top-block {
    padding: 2.24rem 0;
  }
  nav > ul > li {
    margin: 0 1.4rem;
  }
  nav > ul > li > a {
    font-size: 1.5rem;
    padding: 2rem 0;
  }
  .input-search:focus, 
  .has-value .input-search {
    width: 23rem;
    border-color: var(--white);
  }
  .submenu {
    left: calc((100vw - 1155px) / 2);
  }
  .submenu::before {
    --width: calc((100vw - 1155px) / 2);
  }
  .submenu-body {
    height: calc(100vh - 15.578rem);
    width: 38.5rem;
    padding: 3rem;
  }
  header.sticky .submenu-body {
    height: calc(100vh - 12.3rem);
  }
  .submenu > .submenu-body {
    width: 38.3rem;
  }
  .submenu-list li {
    margin-bottom: 2rem;
  }
  .submenu-list li > a {
    font-size: 1.8rem;
  }
}
@media(min-width:992px) and (max-width:1199.98px){
  .header-top-block {
    padding: 2rem 0;
  }
  .logo {
    width: 18.1rem;
    height: 4.4rem;
  }
  .header-social a {
    height: 4.2rem;
    width: 4.2rem;
  }
  .dropdown-btn {
    font-size: 1.4rem;
  }
  .dropdownlist {
    top: calc(100% + 3.2rem);
    left: -11.1rem;
    min-width: 15.6rem;
  }
  header.sticky .dropdownlist {
    top: calc(100% + 2.2rem);
  }
  nav > ul > li {
    margin: 0 0.8rem;
  }
  nav > ul > li > a {
    font-size: 1.4rem;
    padding: 2rem 0;
  }
  nav > ul > li.haschild > a:after {
    margin-left: 0.4rem;
  }
  .submenu {
    left: calc((100vw - 945px) / 2);
  }
  .submenu::before {
    --width: calc((100vw - 945px) / 2);
  }
  .submenu-body {
    height: calc(100vh - 14.56rem);
    width: 31.5rem;
    padding: 3rem 2rem;
  }
  header.sticky .submenu-body {
    height: calc(100vh - 11.76rem);
  }
  .submenu > .submenu-body {
    width: 32rem;
  }
  .submenu-list li {
    margin-bottom: 2rem;
  }
  .submenu-list li > a {
    font-size: 1.5rem;
  }
  .input-search {
    padding-left: 2.4rem;
    background-size: 1.7rem;
  }
  .input-search:focus, 
  .has-value .input-search {
    width: 17rem;
  }
}
@media(max-width:991.98px){
  body.showmenu{
    overflow: hidden;
  }
  .header-white {
    box-shadow: 1px 1px 0px rgba(var(--black-hex), 0.1);
  }
  .header-top-block {
    padding: 1.6rem 0 !important;
  }
  .logo {
    width: 15.8rem;
    height: 3.8rem;
  }
  .header-btn,
  .header-social,
  body.showmenu .header-dropdown{
    display: none;
  }
  .dropdownlist {
    top: calc(100% + 2.6rem) !important;
    left: -8.1rem;
  }
  .header-dropdown {
    margin-left: 0;
  }
  .toggleMenu {
    display: flex;
  }
  .header-bottom,
  .submenu,
  .sub-submenu{
    border: 0;
    position: fixed;
    left: auto;
    top: 7.6rem;
    right: -100%;
    width: 100%;
    padding: 3.2rem 0;
    background: var(--black);
    height: calc(100vh - 7.6rem);
    height: calc(100dvh - 7.6rem);
    overflow: hidden;
    overflow-y: auto;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
  }
  .header-bottom:has(.submenu.open),
  .submenu:has(.sub-submenu.open){
    overflow: hidden !important;
  }
  body.showmenu .header-bottom,
  .submenu.open,
  .sub-submenu.open{
    right: 0;
  }
  .header-search {
    width: 100%;
    order: -1;
    margin-bottom: 2.2rem;
  }
  .input-search {
    height: 5.6rem;
    font-size: 1.6rem;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    width: 100% !important;
    border-radius: 4rem;
    padding: 0 5.6rem 0 2rem;
    background-position: right 2rem center;
  }
  .header-white .input-search {
    background-image: url(../images/icon-search-w.png);
    font-weight: 500;
    color: var(--white);
  }
  .header-white .input-search::placeholder{
    color: var(--white);
  }
  .header-white .input-search:-ms-input-placeholder{
    color: var(--white);
  }
  .menu {
    width: 100%;
  } 
  nav > ul {
    display: block;
  }
  nav > ul > li,
  .submenu-list li{
    margin: 0 0 1.2rem;
  }
  nav > ul > li.haschild {
    position: relative;
  }
  nav > ul > li > a,
  .submenu-list li > a{
    padding: 1rem 2.4rem 1rem 0 !important;
    font-size: 1.7rem;
    line-height: 120%;
  }
  .header-white nav > ul > li > a {
    color: var(--white);
  }
  nav > ul > li:hover > a::before, 
  nav > ul > li.active > a::before{
    content: none;
  }
  nav > ul > li.haschild > a:after,
  .header-white nav > ul > li.haschild > a:after{
    position: absolute;
    right: 0;
    width: 0.9rem;
    height: 1.4rem;
    background-image: url(../images/icon-chevron-right.png);
  }
  .opensubmenu,
  .opensubsubmenu{
    display: flex;
  }
  nav > ul > li.haschild:hover > a:after {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  .header-bottom-mobile {
    display: block;
    width: 100%;
  }
  .nav-btn {
    margin-top: 2.2rem;
  }
  .nav-btn .btn{
    width: 100%;
  }
  .submenu-list li.has-subchild {
    position: relative;
  }
  .submenu,
  .sub-submenu{
    display: block;
    padding: 3.2rem 2rem;
    z-index: 1;
  }
  .submenu::before{
    content: none;
  }
  .submenu-back {
    display: flex;
    max-width: 690px;
    margin-left: auto;
    margin-right: auto;
  }
  .submenu-body {
    height: initial !important;
    background: transparent;
    width: 100% !important;
    padding: 0 !important;
    overflow: initial !important;
    max-width: 690px;
    margin: 0 auto;
  }
  .submenu-title{
    margin: 0 0 1rem;
  }
  .submenu > .submenu-body > .submenu-title {
    display: block;
  }
}
@media(max-width:767.98px){
  .submenu-back,
  .submenu-body{
    max-width: 510px;
  }
}
@media(max-width:575.98px){
  .submenu-back,
  .submenu-body{
    max-width: 100%;
  }
}