#hs_cos_wrapper_Header {
  position: fixed;
  width: 100%;
  z-index: 99;
  left: 0;
  top: 0;
  background-color: #fff;
  transform: translateY(0px);
  transition: 150ms ease-in-out transform;
}

#hs_cos_wrapper_Header.scrolled {
  transform: translateY(-50px);
}

.header {
  background-color: #fff;
  position: relative;
}

.header__container {
  max-width: 1430px;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

.header__top {
  padding: 20px 0 0;
}

.header__top-row {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: end;
  gap: 30px;
}

.header__top-social-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header__top-phone-wrapper {
  display: flex;
  align-items: center;
  gap: 25px;
}

.header__top-social-link {
  display: flex;
}

.header__top-phone-link svg {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.header__top-social-link img {
  width: 30px;
  height: 30px;
  transition: 250ms ease-in-out opacity;
  object-fit: contain;
}

.header__top-social-link:hover img {
  opacity: 0.7;
}

.header__top-phone-link {
  color: var(--brand-navy-blue) !important;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 15.137px;
  letter-spacing: 0.45px;
  text-decoration-line: underline;
}

.header__row {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
  gap: 30px;
  position: relative;
}

.header__logo {
  display: inline;
}

.header__logo img {
  max-width: 250px;
  width: 100%;
  transition: 250ms ease-in-out max-width;
  object-fit: contain;
}

.header__logo.scrolled img {
  max-width: 200px;
}

.header__main {
  height: 140px;
  transition: 250ms ease-in-out height;
}

.header__main.scrolled {
  height: 110px;
}

.header__menu-wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
  height: 100%;
}

.header__button {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none !important;
  border-radius: 65px;
  background: var(--brand-bright-red);
  padding: 9px 27px;
  color: #FFF !important;
  font-size: 18px;
  font-weight: 700 !important;
  line-height: normal;
  letter-spacing: 0.049px;
  text-align: center;
  border: 2px solid transparent;
  transition: 250ms ease-in-out border;
}

.header__button:hover {
  border: 2px solid var(--brand-navy-blue);
}

.header__menu {
  display: flex;
  align-items: center;
  gap: 25px;
  height: 100%;
}

.header__menu-links {
  color: var(--brand-navy-blue);
  font-size: 20px;
  font-weight: 500 !important;
  line-height: normal;
  letter-spacing: 1px;
  text-decoration: none !important;
  position: relative;
  padding: 10px 0;
  transition: 250ms ease-in-out color;
}

.header__menu-links svg {
  fill: var(--brand-navy-blue);
  transition: 250ms ease-in-out fill;
}

.header__menu-links:hover {
  color: var(--brand-bright-red);
}

.header__menu-links:hover.header__menu-links svg{
  fill: var(--brand-bright-red);
}

.header__menu-sublinks {
  color: var(--brand-navy-blue);
  font-size: 20px;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 1px;
  width: 100%;
  text-align: center;
  background: #fff;
  padding: 10px 0;
  cursor: pointer;
  text-decoration: none !important;
/*   transition: 250ms ease-in-out color, 250ms ease-in-out background; */
}

.header__menu-sublinks:last-child, .header__menu-sublinks {
  border-radius: 0 0 9px 9px;
}

.header__menu-sublinks:hover {
  background: var(--brand-navy-blue);
  color: #fff;
  font-weight: 700 !important;
}

.header__wrapper-link {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.header__wrapper-link.item-with-sublinks {
  position: relative;
  height: auto;
}

.header__sublinks-wrapper {
  position: absolute;
  z-index: 91;
  top: 45px;
  /*right: 0;*/
  left: 0;
  display: flex;
  /*width: 200px;*/
   width: 400px;
  /*flex-direction: column;*/
  flex-direction: row;
  align-items: center;
  background: #FFF;
  box-shadow: 0px 5.95px 11.9px rgba(0, 0, 0, 0.25);
  border: 1px solid #FFF;
  border-radius: 0 0 9px 9px;
  opacity: 0;
  pointer-events: none;
  transition: 250ms ease-in-out opacity;
}

.header__sublinks-wrapper.open {
  opacity: 1;
  pointer-events: all;
}

.header__mega-menu {
  max-width: 98vw;
  max-height: calc(100vh - 100px);
  overflow-y: auto;
  position: absolute;
  width: 1430px;
  left: 50%;
  top: 100%;
  z-index: 90;
  display: none;
  transform: translateX(-50%);
  background: #FFF;
  box-shadow: 0px 5.95px 11.9px -2.957px #000;
  transition: 250ms ease-in-out opacity;
  padding: 26px 35px 35px 35px;
}

.header__wrapper-link.item-with-mega-menu:hover .header__mega-menu {
  display: block;
}

.header__mega-menu.active {
  display: block;
}

.header__mega-menu-wrapper {
  display: flex;
  gap: 18px;
}

.header__mega-menu-content {
  width: 33.33%;
  display: flex;
  flex-direction: column;
  padding: 30px;
  border: 2px solid var(--brand-light-gray);
}

.header__mega-menu-content.center-content {
  background-color: var(--brand-light-gray);
  padding: 30px 25px;
}

.header__mega-menu-content.left-side-text {
  gap: 50px;
}

.header__mega-menu-content.left-side-image img {
  max-width: 380px;
  width: 100%;
  object-fit: cover;
}

.header__mega-menu-content.left-side-image h4 {
  color: var(--brand-bright-red);
  margin-bottom: 10px;
  margin-top: 15px;
  font-size: 23px;
  font-style: normal;
  font-weight: 800;
  line-height: 30px; /* 130.435% */
  letter-spacing: 0.078px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.header__mega-menu-content.left-side-image .header__mega-menu-left__button {
  border-radius: 65px;
  border: 2px solid var(--brand-bright-red);
  color: var(--brand-bright-red) !important;
  text-decoration: none !important;
  padding: 8px 25px;
  font-size: 18px;
  font-weight: 800;
  line-height: normal;
  letter-spacing: 0.049px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 5px;
  text-align: center;
  transition: 250ms ease-in-out background, 250ms ease-in-out color;
}

.header__mega-menu-content.left-side-image .header__mega-menu-left__button:hover {
  color: #fff !important;
  background: var(--brand-bright-red);
}

.header__mega-menu-left__title-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 23px;
}

.header__mega-menu-left__title-wrapper img {
  width: 50px;
  object-fit: contain;
}

.header__mega-menu-left__title {
  color: var(--brand-bright-red) !important;
  font-size: 23px;
  font-weight: 800 !important;
  text-decoration: none !important;
  line-height: 30px; /* 130.435% */
  letter-spacing: 0.078px;
}

.header__mega-menu-left__description {
  color: var(--brand-navy-blue);
  font-size: 22px;
  font-weight: 400;
  line-height: 143%;
  margin-bottom: 16px;
}

.header__mega-menu-left__link {
  color: var(--brand-bright-red) !important;
  font-size: 20px;
  font-weight: 500 !important;
  text-decoration: none !important;
  line-height: normal;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  width: max-content;
  gap: 8px;
}

.header__mega-menu-left__link:hover {
  font-weight: 700 !important;
  text-decoration: underline !important;
}

.header__mega-menu-center-link {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--brand-navy-blue);
  font-size: 19px;
  font-weight: 700 !important;
  line-height: normal;
  letter-spacing: 1px;
  transition: 250ms ease-in-out color;
}

.header__mega-menu-center-link:hover {
  color: var(--brand-bright-red);
}

.header__mega-menu-center-link-wrapper {
  border-bottom: 2px solid #C4C4C4;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.header__mega-menu-center-link-wrapper:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.header__mega-menu-content.right-side h4 {
  color: #FFF;
  font-size: 23px;
  font-weight: 800;
  line-height: 30px; /* 130.435% */
  letter-spacing: 0.078px;
  margin-bottom: 15px;
}

.header__mega-menu-content.right-side .header__mega-menu-left__description {
  color: #fff;
}

.header__mega-menu-content.right-side .header__mega-menu-left__link {
  color: #fff !important;
  text-decoration: underline !important;
}

.header__mega-menu-right-item {
  padding-bottom: 15px;
  margin-bottom: 27px;
}

.header__mega-menu-right-item:last-child {
  border-bottom: none !important; 
  padding-bottom: 0;
  margin-bottom: 0;
}

.header__mega-menu-bottom-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 25px;
}

.header__mega-menu-bottom-content-link {
  color: var(--brand-navy-blue);
  font-size: 28px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  letter-spacing: 2.24px;
  text-decoration-line: underline;
}

.header__mega-menu-bottom-button {
  width: 100%;
  max-width: 434px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 65px;
  text-decoration: none !important;
  font-size: 19px;
  font-weight: 800 !important;
  letter-spacing: 0.049px;
  text-align: center;
  padding: 9px 25px;
  transition: 250ms ease-in-out background, 250ms ease-in-out color, 250ms ease-in-out border;
}

.header__mega-menu-bottom-content-link {
  color: var(--brand-navy-blue)
  font-size: 28px;
  font-weight: 800 !important;
  letter-spacing: 2.24px;
  border-right: 2px solid var(--brand-navy-blue);
  padding-right: 10px;
  margin-right: 10px;
  line-height: 1.2;
}

.header__mega-menu-bottom-content-link:last-child {
  border-right: none;
}

.header__mega-menu-bottom-link-wrapper {
  width: 68%;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.header__mega-menu-bottom-button-wrapper {
  width: 32%;
}

.header__mobile-link {
  display: none;
  color: var(--brand-navy-blue);
  font-size: 15px;
  font-weight: 500 !important;
  line-height: 15.137px;
  letter-spacing: 0.45px;
  cursor: pointer;
  text-decoration: underline;
}

.header__hamburger {
  display: none;
  cursor: pointer;
}

.header__mobile-menu-wrapper {
  display: none;
  position: fixed;
  z-index: 90;
  width: 100%;
  height: 100vh;
  left: 0;
  top: 0;
  background: var(--brand-navy-blue);
  transform: translateX(-100%);
  transition: 250ms ease-in-out transform;
}

.header__mobile-menu-wrapper.open {
  transform: translateX(0);
}

.header__mobile-menu-close {
  cursor: pointer;
  position: absolute;
  right: 20px;
  z-index: 10;
}

.header__mobile-menu-close.mobile-box-close {
  position: static;
}

.header__mobile-box {
  margin-bottom: 24px;
}

.header__mobile-box-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.header__mobile-box-item-single {
  color: #fff !important;
  display: block;
  text-decoration: none !important;
  background: var(--brand-bright-red);
  text-align: center;
  font-weight: 700;
  padding: 12px 0;
  text-align: center;
  font-size: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.header__mobile-box-item.active {
  color: #fff;
  background: var(--brand-bright-red);
  text-align: center;
  font-weight: 700;
}

.header__mobile-box-item {
  color: var(--brand-navy-blue);
  padding: 12px 0;
  background: transparent;
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.header__logo.mobile-logo {
  display: none;
  text-align: center;
  padding: 20px 0;
}

.header__logo.mobile-logo img {
  max-width: 250px;
}

.header__mobile-menu-contact {
  background: #fff;
  height: 100vh;
  width: 100%;
  max-width: 100%;
  transform: translate(-100%);
  transition: 250ms ease-in-out transform;
  position: fixed;
  padding: 100px 25px 100px 40px;
  z-index: 80;
  left: 0;
  top: 0;
  display: block;
}

.header__mobile-menu-contact.open {
  transform: translate(0);
}

.header__mobile-menu-contact-close {
  text-align: right;
  margin-bottom: 30px;
}

.header__mobile-menu-contact-heading-wrapper {
  margin-bottom: 64px;
}

.header__mobile-menu-contact-subheading {
  color: var(--brand-bright-red);
  font-size: 18px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  letter-spacing: 0.047px;
  margin-bottom: 5px;
  position: relative;
}

.header__mobile-menu-contact-subheading::after {
  content: '';
  position: absolute;
  width: 32px;
  height: 2px;
  background: var(--brand-bright-red);
  top: 50%;
  left: -38px;
  transform: translateY(-50%);
}

.header__mobile-menu-contact-heading {
  color: #006;
  font-size: 36px !important;
  font-style: normal;
  font-weight: 800;
  line-height: 36.335px;
  letter-spacing: 0.363px;
  margin-bottom: 0;
}

@media(max-width: 1440px) {
  .header__mega-menu { 
    max-height: calc(100vh - 300px);
  }
}

@media(max-width: 1295px) {
  .header__menu {
    gap: 20px;
  }
  
  .header__menu-wrapper {
    gap: 15px;
  }
  
  .header__row {
    gap: 20px;
  }
  
  .header__menu-links {
    font-size: 16px;
  }
  
  .header__menu-sublinks {
    font-size: 16px;
  }
  
  .header__sublinks-wrapper {
    top: 42px;
  }
  
  .header__button {
    font-size: 16px;
    padding: 9px 18px;
  }
  
  .header__mega-menu-bottom-content-link {
    font-size: 20px;
  }
}

@media(max-width: 1110px) {
  .header__logo img {
    max-width: 185px;
  }
}

@media(max-width: 992px) {
  .header {
    padding: 19px 0;
    box-shadow: 0px 0px 14px 0px rgba(0, 0, 0, 0.25);
    z-index: 99;
  }
  
  .header__top {
    display: none;
  }
  
  .header__menu-wrapper {
    display: none;
  }
  
  .header__logo {
    display: none;
  }
  
  .header__logo.mobile-logo {
    display: block;
  }
  
  .header__main {
    height: auto;
  }
  
  .header__mobile-link {
    display: block;
  }
  
  .header__hamburger {
    display: block;
  }
  
  .header__mobile-menu-wrapper {
    display: block;
  }
  
  .header__menu {
    flex-direction: column;
    align-items: start;
    margin-top: 100px;
  }
  
  .header__menu-links {
    color: #fff !important;
    margin-left: 30px;
    position: static !important;
  }
  
  .header__menu-links svg {
    fill: #fff;
    width: 10px;
    height: 10px;
    margin-left: 9px;
  }
  
  .header__menu-links:hover {
    color: #fff;
  }
  
  .header__menu-links:hover.header__menu-links svg{
    fill: #fff;
  }
  
  .header__sublinks-wrapper {
    position: static;
    opacity: 1;
    pointer-events: all;
    width: 100%;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
    border: none;
    overflow: hidden;
    max-height: 0;
    transition: 250ms ease-in-out max-height;
  }
  
  .header__sublinks-wrapper.open {
    max-height: 500px
  }
  
  .header__wrapper-link {
    align-items: start;
    width: 100%;
    position: static !important;
  }
  
  .header__menu-sublinks {
    color: #fff;
    background: transparent;
    border-radius: 0;
    text-align: left;
    padding-left: 60px;
  }
  
  .header__menu-sublinks:last-child, .header__menu-sublinks {
    border-radius: 0 !important;
  }
  
  .header__menu-sublinks:hover {
    background: var(--brand-bright-red);
  }
  
  .header__mega-menu {
    max-height: 100vh;
    width: 100%;
    max-width: 100%;
    position: absolute;
    padding: 116px 25px 100px;
    z-index: 100;
    left: 0;
    right: 0;
    top: 0;
    display: block;
    transform: translateX(-110%);
    transition: 250ms ease-in-out transform;
  }
  
  .header__mega-menu.active {
    transform: translateX(0);
  }
  
  .header__mega-menu-wrapper {
    flex-direction: column;
  }
  
  .header__mega-menu-content  {
    width: 100%;
  }
  
  .header__mega-menu-bottom-content {
    flex-direction: column;
    margin-top: 50px;
  }
  
  .header__mega-menu-bottom-link-wrapper {
    width: 100%;
    justify-content: center;
    align-items: center;
  }
  
  .header__mega-menu-bottom-content-link {
    border-right: none;
    margin-bottom: 35px;
  }
  
  .header__mega-menu-bottom-button-wrapper {
    width: 100%;
  }
  
  .header__mega-menu-left__title {
    font-size: 18px;
    line-height: 23px;
  }
  
  .header__mega-menu-left__title-wrapper img {
    width: 40px;
  }
  
  .header__mega-menu-left__title-wrapper {
    gap: 12px;
    margin-bottom: 17px;
  }
  
  .header__mega-menu-left__description {
    font-size: 17px;
    margin-bottom: 12px;
  }
  
  .header__mega-menu-left__link {
    font-size: 15px;
  }
  
  .header__mega-menu-content.left-side-text {
    gap: 40px;
  }
  
  .header__mega-menu-center-link {
    font-size: 15px;
  }
  
  .header__mega-menu-content.right-side h4 {
    font-size: 18px;
    margin-bottom: 10px;
  }
  
  .header__mega-menu-back {
    color: var(--brand-navy-blue);
    text-align: center;
    font-size: 24.014px;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 1.201px;
    text-align: start;
  }
  
  .header__mega-menu-content.left-side-image h4 {
    font-size: 16px;
    gap: 10px;
  }
  
  .header__mega-menu-content.left-side-image svg {
    width: 10px;
    height: 10px;
  }
  
  .header__mega-menu-left__button {
    font-size: 13px !important;
  }
  
  .header__mega-menu-content.left-side-image {
    min-height: 466px;
  }
  
  .header__mega-menu-back {
    display: block;
  }
  
  .header__mega-menu-content.left-side-image img {
    max-width: 100%;
    width: 100%;
  }
  
  .header__top-row {
    flex-direction: column;
    gap: 70px;
  }
  
  .header__top-phone-wrapper {
    flex-direction: column;
    gap: 35px;
  }
  
  .header__top-social-link img {
    width: 50px;
    height: 50px;
  }
  
  .header__top-social-wrapper {
    gap: 15px;
  }
  
  .header__top-phone-link {
    font-size: 19px;
    gap: 12px;
  }
    
  .header__top-phone-link svg {
    width: 23px;
    height: 23px;
  }
}
