header{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  padding: 1.6rem 0 2.2rem;
}
.header-black{
  background: var(--dark-black);
}
header.sticky{
  position: fixed;
  background: transparent;
  box-shadow: 0px 2px 3px rgba(9, 9, 57, 0.05);
  -webkit-animation: slideDown 0.3s linear;
  animation: slideDown 0.3s linear;
}
header.sticky::after{
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 0 0 2.4rem 2.4rem;
  z-index: -1;
  background: linear-gradient(180deg, rgba(12, 27, 49, 0.9) 59.6%, rgba(12, 27, 49, 0) 159.6%);
  -webkit-backdrop-filter: blur(0.4rem);
  backdrop-filter: blur(0.4rem);
}
body:has(.menu > ul > li.hasChild:hover) header{
  background: var(--dark-black);
}
@-webkit-keyframes slideDown {
  from {
    transform: translateY(-11.5rem);
  }
  to {
    transform: none;
  }
}
@-moz-keyframes slideDown {
  from {
    transform: translateY(-11.5rem);
  }
  to {
    transform: none;
  }
}
@-ms-keyframes slideDown {
  from {
    transform: translateY(-11.5rem);
  }
  to {
    transform: none;
  }
}
@-o-keyframes slideDown {
  from {
    transform: translateY(-11.5rem);
  }
  to {
    transform: none;
  }
}
@keyframe slideDown {
  from {
    transform: translateY(-11.5rem);
  }
  to {
    transform: none;
  }
}
.header-block{
  min-height: 7.5rem;
}
.logo{
  --width: 10.6rem;
  position: absolute;
  width: var(--width);
  z-index: 1;
  top: 1.6rem;
  left: calc(50% - (var(--width) / 2));
}
.logo a{
  display: block;
}
.logo img{
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 7.7rem;
}
.menu-block{
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.menu{
  width: calc(50% - 8.7rem);
}
.menu ul{
  margin: 0;
}
.menu li{
  padding: 0;
  margin: 0;
}
.menu li::after{
  content: none;
}
.menu > ul{
  display: flex;
  align-items: center;
  padding-left: 7.9rem;
  padding-bottom: 1.3rem;
}
.menu-left > ul{
  justify-content: flex-end;
  padding-left: 0 !important;
  padding-right: 7.9rem;
}
.menu > ul > li{
  position: initial;
}
.menu > ul > li > a{
  padding: 1.1rem 2.3rem;
  position: relative;
  font-size: 1.3rem;
  line-height: 1.66rem;
  display: flex;
  align-items: center;
  font-weight: 500;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.52px;
}
.menu > ul > li:hover > a,
.menu > ul > li.active > a{
  color: var(--light-gold);
  text-shadow: 0 0 var(--light-gold);
}
.menu > ul > li:hover > a::after,
.menu > ul > li.active > a::after{
  position: absolute;
  content: "";
  top: -2.4rem;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 1.414rem;
  height: 1.392rem;
  background: var(--white);
  border-radius: 2px 0 2px 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.menu > ul > li.hasChild a::before{
  position: absolute;
  content: none;
  top: 100%;
  left: 0;
  width: 100%;
  height: 7.8rem;
  z-index: 1;
}
.menu > ul > li.hasChild:hover a::before{
  content: "";
}
.btn-submenu{
  display: none;
}
.submenu{
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: var(--dark-black);
  padding-bottom: 4rem;
  opacity: 0;
  visibility: hidden;
}
.menu > ul > li.hasChild:hover .submenu{
  opacity: 1;
  visibility: visible;
}
body:has(.menu > ul > li.hasChild:hover)::after{
  position: fixed;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  background: #0C1B3199;
  -webkit-backdrop-filter: blur(0.5rem);
  backdrop-filter: blur(0.5rem);
}
.submenu-list{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-end;
  gap: 2rem;
}
.submenu-item{
  width: calc((100% / 6) - 1.67rem);
  padding-left: 0.9rem;
  position: relative;
}
.submenu-img{
  position: relative;
  z-index: 1;
  width: 14.2rem;
  height: 14.2rem;
  background: var(--dark-black);
  overflow: hidden;
  border-radius: 0 2.4rem 0 2.4rem;
}
.submenu-img > img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.submenu-img:has(.submenu-overlay) > img{
  opacity: 0.3;
}
.submenu-tag{
  position: absolute;
  background: var(--gold);
  top: 0.8rem;
  left: 0;
  height: 3rem;
  display: flex;
  z-index: 1;
  align-items: center;
  text-transform: uppercase;
  font-size: 1.4rem;
  line-height: 2rem;
  letter-spacing: 0.56px;
  color: var(--white);
  font-weight: 600;
  padding: 0 0.8rem 0 1rem;
}
.submenu-tag::before{
  position: absolute;
  content: "";
  left: 0;
  bottom: -0.6rem;
  border-left: 0.9rem solid transparent;
  border-top: 0.6rem solid var(--gold);
}
.submenu-tag::after{
  position: absolute;
  content: "";
  top: 0;
  right: -0.9rem;
  width: 0; 
  height: 0; 
  border-top: 1.5rem solid transparent;
  border-bottom: 1.5rem solid transparent;
  border-left: 0.9rem solid var(--gold);
}
.submenu-text{
  width: 14.2rem;
  position: relative;
  margin-left: auto;
  font-size: 1.5rem;
  line-height: 2.4rem;
  color: var(--white);
  text-align: right;
  text-transform: uppercase;
  font-weight: 600;
  padding: 0.5rem 1rem;
}
.submenu-item:has(.submenu-overlay) .submenu-text{
  color: var(--gold);
}
.submenu-item:has(.submenu-overlay):hover .submenu-text{
  color: var(--white);
}
.submenu-text::after{
  position: absolute;
  content: "";
  bottom: 0;
  right: 0;
  width: 100%;
  height: 14.2rem;
  border: 0.13rem solid var(--gold);
  border-radius: 0 2.4rem 0 2.4rem;
}
.submenu-item:hover .submenu-text::after{
  background: var(--gold);
}
.submenu-text span{
  position: relative;
  z-index: 1;
}
.submenu-item > p{
  font-size: 1.4rem;
  line-height: 2.4rem;
  margin-bottom: 0.2rem;
  font-weight: 500;
  color: var(--light-gold);
  text-transform: uppercase;
  letter-spacing: 0.84px;
  text-align: left;
}
.submenu-overlay{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.2rem;
  font-size: 2rem;
  line-height: 2.4rem;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: 0.6px;
}
.submenu-overlay-icon{
  width: 3.6rem;
  height: 3.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.submenu-overlay-icon img{
  max-width: 100%;
  max-height: 100%;
}
.menu-shape {
  width: calc(100% - 0.9rem);
  height: 1px;
  background: var(--gold);
  position: relative;
}
.menu-left .menu-shape{
  margin-left: auto;
  margin-right: 0;
}
.menu-shape::after{
  position: absolute;
  content: "";
  left: -0.6rem;
  top: -1.3rem;
  width: 1.7rem;
  height: 2.7rem;
  background-image: url(../images/icon-shape-left.png);
  background-size: cover;
  background-position: center;
}
.menu-left .menu-shape::after{
  left: auto;
  right: -0.6rem;
  background-image: url(../images/icon-shape-right.png);
}
.menu-shape::before {
  position: absolute;
  content: "";
  right: -0.9rem;
  top: -0.3rem;
  height: 0.8rem;
  width: 0.8rem;
  border: 1px solid var(--gold);
  transform: rotate(45deg);
  border-radius: 2px 0 2px 0;
}
.menu-left .menu-shape::before{
  right: auto;
  left: -0.9rem;
}
.menu-shape-mobile{
  display: none;
}
.toggleMenu {
  position: absolute;
  z-index: 1;
  cursor: pointer;
  height: 2rem;
  width: 2rem;
  top: 0.2rem;
  right: 1.3rem;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.toggleMenu span{
  position: absolute;
  height: 0.2rem;
  width: 100%;
  background: var(--white);
}
.toggleMenu span.bar1 {
  top: 0.3rem;
  transform: rotate(0);
  transition: top .15s ease .15s,transform .15s ease-out .05s;
}
body.showmenu .toggleMenu span.bar1 {
  top: 0.9rem;
  transform: rotate(45deg);
  transition: top .15s ease .05s,transform .15s ease-out .25s;
}
.toggleMenu span.bar2 {
  top: 0.9rem;
  opacity: 1;
  transition: .15s ease .15s;
}
body.showmenu .toggleMenu span.bar2 {
  opacity: 0;
}
.toggleMenu span.bar3 {
  top: 1.5rem;
  transform: rotate(0);
  transition: top .15s ease .15s,transform .15s ease-out .05s;
}
body.showmenu .toggleMenu span.bar3 {
  top: 0.9rem;
  transform: rotate(-45deg);
  transition: top .15s ease .05s,transform .15s ease-out .25s;
}
.mobile-menu-footer{
  display: none;
}
@media(min-width:1200px) and (max-width:1215.98px){
  .menu > ul {
    padding-left: 6.4rem;
  }
  .menu-left > ul {
    padding-right: 6.4rem;
  }
}
@media(min-width:992px) and (max-width:1199.98px){
  .menu-left > ul {
    padding-right: 2.9rem;
  }
  .menu > ul {
    padding-left: 2.9rem;
  }
  .menu > ul > li > a {
    padding: 1.1rem 1.6rem;
  }
  .submenu-list {
    gap: 1.4rem;
  }
  .submenu-img {
    width: 12.2rem;
    height: 12.2rem;
  }
  .submenu-tag {
    font-size: 1.2rem;
    line-height: 1.8rem;
  }
  .submenu-text {
    width: 12.2rem;
    font-size: 1.4rem;
    line-height: 2.2rem;
    margin-right: -0.8rem;
  }
  .submenu-text::after {
    height: 12.2rem;
  }
  .submenu-item > p {
    font-size: 1.2rem;
    line-height: 2.2rem;
  }
  .submenu-overlay {
    font-size: 1.8rem;
    line-height: 2.2rem;
  }
}
@media(max-width:991.98px){
  .showmenu{
    overflow: hidden;
  }
  header {
    padding: 1.2rem 0;
  }
  .showmenu header{
    background: var(--dark-black);
    border-radius: 0;
  }
  .header-block {
    min-height: initial;
    position: relative;
  }
  .logo {
    --width: 100%;
    top: 0;
    position: relative;
    text-align: center;
  }
  .logo a {
    display: inline-block;
  }
  .logo img{
    width: 7.8rem;
  }
  .menu-shape{
    display: none;
  }
  .menu-shape-mobile{
    display: block;
    position: absolute;
  }
  .menu-shape-mobile {
    display: block;
    position: absolute;
    left: 0.8rem;
    top: 3.7rem;
    height: 1px;
    width: calc(50% - 7.2rem);
    background: var(--gold);
  }
  .menu-shape-mobile.right{
    left: auto;
    right: 0.8rem;
  }
  .menu-shape-mobile::after{
    position: absolute;
    content: "";
    left: -0.8rem;
    top: -0.3rem;
    width: 0.8rem;
    height: 0.8rem;
    border: 1px solid var(--gold);
    border-radius: 2px 0 2px 0;
    transform: rotate(45deg);
  }
  .menu-shape-mobile.right::after{
    left: auto;
    right: -0.8rem;
  }
  .menu-shape-mobile::before{
    position: absolute;
    content: "";
    right: -0.7rem;
    top: -13px;
    width: 1.7rem;
    height: 2.7rem;
    background-image: url(../images/menu-shape-left.png);
    background-size: cover;
    background-position: center;
  }
  .menu-shape-mobile.right::before{
    right: auto;
    left: -0.7rem;
    background-image: url(../images/menu-shape-right.png);
  }
  .toggleMenu{
    display: flex;
  }
  .menu-block {
    display: block;
    right: -100%;
    padding-top: 0;
    position: fixed;
    top: 8.766rem;
    z-index: 1;
    background: var(--dark-black);
    height: calc(100vh - 8.766rem);
    height: calc(100dvh - 8.766rem);
    overflow: hidden;
    overflow-y: auto;
    padding: 2.8rem 1.5rem 9rem;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  .showmenu .menu-block{
    right: 0;
  }
  .menu {
    width: 100%;
    max-width: 69rem;
    margin: 0 auto;
  }
  .menu.menu-left {
    margin-bottom: 3.6rem;
  }
  .menu.menu-left:last-child{
    margin-bottom: 0;
  }
  .menu > ul {
    display: block;
    padding-left: 0;
    padding-bottom: 0;
  }
  .menu-left > ul {
    padding-right: 0;
  }
  .menu > ul > li {
    text-align: center;
    line-height: 1.8rem;
    margin-bottom: 3.6rem;
  }
  .menu > ul > li:last-child{
    margin-bottom: 0;
  }
  .menu > ul > li > a {
    padding: 0;
    display: inline-flex;
    font-size: 1.8rem;
    letter-spacing: 0.72px;
  }
  .menu > ul > li.hasChild a::after,
  .menu > ul > li.hasChild a::before{
    content: none !important;
  }
  .menu > ul > li.hasChild > a:after{
    position: relative;
    content: none !important;
    width: 1.2rem;
    height: 1.2rem;
    background-image: url(../images/icon-menu-arrow.png);
    background-size: cover;
    background-position: center;
    top: 0;
    border: 0;
    margin-left: 0.8rem;
    background-color: transparent;
    transform: rotate(0);
    -webkit-transition: transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out;
  }
  .menu > ul > li.hasChild.show > a:after{
    -webkit-transform: rotate(-180deg);
    -moz-transform: rotate(-180deg);
    transform: rotate(-180deg);
  }
  .menu > ul > li:hover > a::after, 
  .menu > ul > li.active > a::after{
    content: none;
  }
  .btn-submenu {
    width: 2.2rem;
    height: 1.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 0.3rem;
    -webkit-transition: transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out;
  }
  .hasChild.show .btn-submenu{
    -webkit-transform: rotate(-180deg);
    -moz-transform: rotate(-180deg);
    transform: rotate(-180deg);
  }
  .submenu {
    position: relative;
    top: 0;
    padding-bottom: 0;
    opacity: 1;
    display: none;
    visibility: visible;
    -webkit-transition: initial;
    transition: initial;
  }
  .submenu .container{
    padding: 0;
  }
  .submenu-list {
    gap: 0;
    margin: 2.8rem auto 0;
    max-width: 55rem;
  }
  .submenu-item {
    width: calc((100% / 3) - 1rem);
    padding-left: 0.9rem;
    margin-left: 1.4rem;
  }
  .submenu-item:nth-child(3n + 1){
    margin-left: 0;
  }
  .submenu-item:nth-child(n + 4){
    margin-top: 2rem;
  }
  .mobile-menu-footer{
    display: block;
    position: fixed;
    right: -100%;
    width: 100%;
    bottom: 0;
    background: var(--dark-black);
    z-index: 1;
    padding: 1.2rem 1.5rem 1.9rem;
    text-align: center;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  .showmenu .mobile-menu-footer{
    right: 0;
  }
  .mobile-menu-footer p{
    color: var(--white);
    font-size: 1.2rem;
    line-height: 2rem;
    letter-spacing: 0.72px;
    font-weight: 200;
    margin: 0 0 0.2rem;
  }
  .mobile-menu-logo-outer{
    position: relative;
    min-height: 2.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 69rem;
    margin: 0 auto;
  }
  .mobile-menu-logo-shape{
    position: absolute;
    content: "";
    left: 0.8rem;
    top: 0;
    bottom: 0;
    margin: auto 0;
    height: 1px;
    width: calc(50% - 66px);
    background: var(--gold);
  }
  .mobile-menu-logo-shape.right{
    left: auto;
    right: 0.8rem;
  }
  .mobile-menu-logo-shape::before{
    position: absolute;
    content: "";
    left: -0.8rem;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 0.8rem;
    height: 0.8rem;
    border: 1px solid var(--gold);
    border-radius: 2px 0 2px 0;
    transform: rotate(45deg);
  }
  .mobile-menu-logo-shape.right::before{
    left: auto;
    right: -0.8rem;
  }
  .mobile-menu-logo-shape::after{
    position: absolute;
    content: "";
    right: -0.7rem;
    top: -13px;
    width: 1.7rem;
    height: 2.7rem;
    background-image: url(../images/menu-shape-left.png);
    background-size: cover;
    background-position: center;
  }
  .mobile-menu-logo-shape.right::after{
    right: auto;
    left: -0.7rem;
    background-image: url(../images/menu-shape-right.png);
  }
  .mobile-menu-logo img{
    width: 8.5rem;
    height: auto;
    max-height: 2rem;
    margin: 0 auto;
    position: relative;
  }
}
@media(max-width:767.98px){
  .header-black {
    background: #0A1626;
  }
  .menu,
  .mobile-menu-logo-outer{
    max-width: 51rem;
  }
  .submenu-list {
    max-width: 36.05rem;
  }
  .submenu-item {
    width: calc((100% / 2) - 0.7rem);
    padding-left: 0.9rem;
    margin-left: 1.4rem !important;
    margin-top: 0 !important;
  }
  .submenu-item:nth-child(2n + 1){
    margin-left: 0 !important;
  }
  .submenu-item:nth-child(n + 3){
    margin-top: 2rem !important;
  }
}