:root {
  --header-bg: rgba(255, 255, 255, 0.80);
  --header-surface: #ffffff;
  --header-surface-soft: #ececf1;
  --header-text: #1D1D1D;
  --header-muted: #5E5C5C;
  --header-border: rgba(0, 0, 0, 0.08);
  --header-accent: #000000;
  --header-button-bg: #07080b;
  --header-button-text: #ffffff;
  --header-pill-bg: rgba(22, 137, 246, 0.2);
  --header-pill-text: #000;
  --menu-open-header-new__bar: #ffffff;
  --black-or-white:#000;
    --header-new__social-card:#F6F8FB;
}

.darkmode {
  --header-bg: rgba(0, 0, 0, 0.2);
  --header-surface: #242628;
  --header-surface-soft: rgba(255, 255, 255, 0.06);
  --header-text: #ffffff;
  --header-muted: #B1BBC5;
  --header-border: rgba(255, 255, 255, 0.15);
  --header-accent: #0056EB;
  --header-button-bg: #f2f2f2;
  --header-button-text: #111319;
  --header-pill-bg: rgba(22, 137, 246, 0.1);
  --header-pill-text: #5bb1ff;
  --menu-open-header-new__bar: #242628;
  --black-or-white:#fff;
  --header-new__social-card:rgba(246, 248, 251, 0.05);
}

.is-menu-open .header-new__bar {
  background: var(--menu-open-header-new__bar) !important;
}

.header-bg-transparent .header-new__bar {
  background: transparent;
}

.header-mobile-lock {
  overflow: hidden;
}

.header-new {
  position: fixed;
  width: 100%;
  z-index: 30;
  color: var(--header-text);
  font-family: "Gilroy-Medium", "Segoe UI", sans-serif;
  transform: none;
  will-change: auto;
}

.header-new.is-mobile-open {top: 0}

.header-new.is-scroll-hidden {
  transform: translate3d(0, -100%, 0);
}

.header-new:not(.is-scroll-hidden) {
  transform: none;
}

.header-new__bar {
  background: var(--header-bg);
  backdrop-filter: blur(20px);
  position: relative;
  z-index: 20;
  display: flex;
  width: 100%;
  justify-content: center;
  transition: color 0.3s ease-in-out,background-color 0s ease-in-out,border-color 0.3s ease-in-out,box-shadow 0.3s ease-in-out;
  -moz-transition: color 0.3s ease-in-out,background-color 0s ease-in-out,border-color 0.3s ease-in-out,box-shadow 0.3s ease-in-out;
  -webkit-transition: color 0.3s ease-in-out,background-color 0s ease-in-out,border-color 0.3s ease-in-out,box-shadow 0.3s ease-in-out;
  -ms-transition: color 0.3s ease-in-out,background-color 0s ease-in-out,border-color 0.3s ease-in-out,box-shadow 0.3s ease-in-out;
  -o-transition: color 0.3s ease-in-out,background-color 0s ease-in-out,border-color 0.3s ease-in-out,box-shadow 0.3s ease-in-out;
}

.header-new__container {
  max-width: none;
  margin: 0;
  height: 70px;
  padding: 0 40px;
  display: flex;
  align-items: center;
  max-width: 1440px;
  width: 100%;
  gap: 24px;
}

#header-new_mobile_lang_code {
  text-transform: uppercase;
}

.header-new__logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.header-new__logo-img {
  display: block;
  width: 167px;

}

.header-new__logo-img--dark {
  display: none;
}

.darkmode .header-new__logo-img--light {
  display: none;
}

.darkmode .header-new__logo-img--dark {
  display: block;
}

.header-new__nav {
  display: flex;
  align-items: center;
  margin-left: auto;
  gap: 20px;
  height: 100%;
  margin-right: auto;
}

.header-new__nav-link {
  border: 0;
  position: relative;
  background: transparent;
  color: var(--header-text);
  display: inline-flex;
  align-items: center;
  padding: 0 10px 0px 10px;
  cursor: pointer;
  font-family: Gilroy-Medium;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
}
.header-new__nav-link:before {
  position: absolute;
  content: '';
  left: 0px;
  top: -18px;
  border-top: 2px solid transparent;
    width: 100%;
    transition: color 0.3s ease-in-out,background-color 0.3s ease-in-out,border-color 0.3s ease-in-out,box-shadow 0.3s ease-in-out;
  -moz-transition: color 0.3s ease-in-out,background-color 0.3s ease-in-out,border-color 0.3s ease-in-out,box-shadow 0.3s ease-in-out;
  -webkit-transition: color 0.3s ease-in-out,background-color 0.3s ease-in-out,border-color 0.3s ease-in-out,box-shadow 0.3s ease-in-out;
  -ms-transition: color 0.3s ease-in-out,background-color 0.3s ease-in-out,border-color 0.3s ease-in-out,box-shadow 0.3s ease-in-out;
  -o-transition: color 0.3s ease-in-out,background-color 0.3s ease-in-out,border-color 0.3s ease-in-out,box-shadow 0.3s ease-in-out;
}
.header-new__nav-link.is-active:before {
  border-top-color: var(--header-accent);
}
.darkmode .header-new__nav-link.is-active:before {
  border-top-width: 3px;
}
.header-new__actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-new__lang-trigger {
  border: 0;
  background: transparent;
  color: var(--header-text);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  cursor: pointer;
  padding: 0;
}

.header-new__lang-trigger img {
  width: 24px;
  height:24px;
}

.header-new__lang-code {
  display: none;
  min-width: 2ch;
}

.header-new__lang-code.is-visible {
  display: inline;margin-left: -7px;font-size: 14px;text-transform: uppercase;
}

.darkmode .header-new__lang-trigger img {
  filter: invert(1);
}

.header-new__caret {
  display: inline-block;
  width: 9px;
  height: 7px;
  margin-top: 2px;
  transform: rotate(0deg);
  transform-origin: center;
  transition: transform 0.25s ease;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='9' height='7' viewBox='0 0 9 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4.95842 5.72063C4.55812 6.24064 3.77391 6.24064 3.37361 5.72063L0.209239 1.60999C-0.296957 0.952424 0.171805 0 1.00164 0L7.33039 0C8.16023 0 8.62899 0.952424 8.12279 1.60999L4.95842 5.72063Z' fill='%231D1D1D'/%3E%3C/svg%3E");
}

.darkmode .header-new__caret {
  background-image: url("data:image/svg+xml,%3Csvg width='9' height='7' viewBox='0 0 9 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4.95842 5.72063C4.55812 6.24064 3.77391 6.24064 3.37361 5.72063L0.209239 1.60999C-0.296957 0.952424 0.171805 0 1.00164 0L7.33039 0C8.16023 0 8.62899 0.952424 8.12279 1.60999L4.95842 5.72063Z' fill='%23FFFFFF'/%3E%3C/svg%3E");
}

.header-new__lang-trigger.is-open .header-new__caret,
.header-new__lang-trigger[aria-expanded='true'] .header-new__caret,
.header-new.is-language-open .header-new__lang-trigger .header-new__caret,
.header-new__mobile-lang-wrap.is-open .header-new__mobile-lang-trigger .header-new__caret,
.header-new__mobile-section.is-open > .header-new__mobile-trigger .header-new__caret {
  transform: rotate(180deg);
}

@media (min-width: 992px) {
  .header-panel-menu-company .header-new__panel-content{padding-bottom: 55px;}
  .header-new:has(.header-new__panel[data-panel='language'].is-open) .header-new__lang-trigger .header-new__caret {
    transform: rotate(180deg) !important;
  }

  .header-new__badge {
    margin-top: 7px;
  }

  .header-new__menu-title img {margin-top: 5px;}
  .header-new__menu-title-img {
    display: flex;
    gap: 0.625rem;
  }
  .header-new__menu-title::after {
    margin-top: 12px;
  }
}

.header-new__mobile-lang-trigger .header-new__caret {
  background-image: url("data:image/svg+xml,%3Csvg width='9' height='7' viewBox='0 0 9 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4.95842 5.72063C4.55812 6.24064 3.77391 6.24064 3.37361 5.72063L0.209239 1.60999C-0.296957 0.952424 0.171805 0 1.00164 0L7.33039 0C8.16023 0 8.62899 0.952424 8.12279 1.60999L4.95842 5.72063Z' fill='%235E5C5C'/%3E%3C/svg%3E");
}

.header-new__mobile-lang-trigger svg {
  color: #5E5C5C !important;
}

.header-new__mobile-lang-trigger svg * {
  stroke: currentColor !important;
}

.darkmode .header-new__mobile-lang-trigger .header-new__caret {
  background-image: url("data:image/svg+xml,%3Csvg width='9' height='7' viewBox='0 0 9 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4.95842 5.72063C4.55812 6.24064 3.77391 6.24064 3.37361 5.72063L0.209239 1.60999C-0.296957 0.952424 0.171805 0 1.00164 0L7.33039 0C8.16023 0 8.62899 0.952424 8.12279 1.60999L4.95842 5.72063Z' fill='%23B1BBC5'/%3E%3C/svg%3E");
}

.darkmode .header-new__mobile-lang-trigger svg {
  color: #B1BBC5 !important;
}

.header-new__mobile-lang-trigger {
  color: #5E5C5C;
}

.darkmode .header-new__mobile-lang-trigger {
  color: #B1BBC5;
}


.btn.btn-w-sm {
  min-width: auto;
} 

.btn.btn-black-or-light {
  border-radius: 10px;
  background: #000;
  color: #fff;
  border-color: #000;
}

.btn.btn-link-new {
  color: var(--header-text);
  font-family: GilroySemiBold;
  font-style: normal;
  font-weight: 400;
  border-radius: 10px;

}

.darkmode .btn.btn-black-or-light {
  background: #fff;
  color: #000;
  border-color: #fff;
}

.btn.btn-black-or-light:hover, 
.btn.btn-black-or-light:active, 
.btn.btn-black-or-light:focus {
  background: #242628;
}
.darkmode .btn.btn-black-or-light:hover, 
.darkmode .btn.btn-black-or-light:active, 
.darkmode .btn.btn-black-or-light:focus {
  background: rgba(255, 255, 255, 0.9);
}

.btn-outline-light-or-dark {
  color: var(--header-text);
  border-color: var(--header-text);
  border-width: 1px;
  border-radius: 10px;
}
.btn-outline-light-or-dark:hover, .btn-outline-light-or-dark:active, .btn-outline-light-or-dark:focus {
  color: #fff;
  border-color: #000;
  background: #000;
}
.darkmode .btn-outline-light-or-dark:hover, .darkmode .btn-outline-light-or-dark:active, .darkmode .btn-outline-light-or-dark:focus {
  color: #000;
  border-color: #fff;
  background: #fff;
}
.header-new__burger {
  display: none;
  border: 0;
  background: transparent;
  width: 36px;
  height: 22px;
  padding: 0;
  position: relative;
}

.header-new__burger span {
  display: block;
  position: absolute;
  right: 0;
  width: 36px;
  height: 2px;
  border-radius: 1px;
  background: var(--header-text);
  transition: transform 0.2s ease, opacity 0.2s ease;
  transform-origin: center;
}

.header-new__burger span:nth-child(1) {
  top: 0;
}

.header-new__burger span:nth-child(2),
.header-new__burger span:nth-child(3) {
  top: 8px;
}
.is-mobile-open .header-new__burger span:nth-child(2),
.is-mobile-open .header-new__burger span:nth-child(3) {
  height: 3px;
}
.header-new__burger span:nth-child(4) {
  top: 16px;
  width: 20px;
}

.header-new__dropdown {
  display: none;
  background: var(--header-surface);
  position: relative;
  z-index: 19;
}

.header-new__dropdown.is-open {
  display: block;
}

.header-new__panel {
  display: none;
}

.header-new__panel.is-open {
  display: block;
}

.header-new__mobile-menu {
  display: none;
}

.header-new__scrim {
  border: 0;
  padding: 0;
  margin: 0;
  position: fixed;
  top: 72px;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.22);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 10;
}

.header-new.is-menu-open .header-new__scrim {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.darkmode .header-new__scrim {
  background: rgba(0, 0, 0, 0.36);
}

.header-new__panel-content {
  max-width: 1040px;
  margin: 0 auto;
  padding: 50px 40px 95px 40px;
  min-height: 290px;
}

.header-new__panel-content h3 {
  font-family: Gilroy-Regular;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  color: #5E5C5C;
  margin-bottom: 36px;
  position: relative;
}
.darkmode .header-new__panel-content h3 {
  color: #B1BBC5;
}

.header-new__menu-grid {
  display: grid;
  gap: 38px 100px;
  position: relative;
}

.header-new__menu-grid--two-cols {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

/*.header-new__menu-grid--company {
  grid-template-columns: minmax(0, 1fr) 170px;
  align-items: start;
}*/

.header-new__menu-card {
  text-decoration: none;
  color: var(--black-or-white);
  min-height: 60px;
  max-width: 85%;
}
.header-new__menu-card:hover {
  color: var(--black-or-white);
}
.header-new__menu-title {
  display: flex;
  align-items: flex-start;
  gap: 10px;  
  font-family: Gilroy-Medium;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 32.4px; 
  position: relative;

}

@media (min-width: 992px) {
  .header-new__menu-title::after {
    content: "";
    width: 11px;
    height: 11px;
    flex: 0 0 11px;
    margin-left: 0;
    opacity: 0;
    transform: translateX(-8px);
    transition: transform 0.25s ease, opacity 0.25s ease, margin-left 0.25s ease;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 11px 11px;
    background-image: url("data:image/svg+xml,%3Csvg width='11' height='11' viewBox='0 0 11 11' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.5 5.5H10.5M5.5 10.5L10.5 5.5L5.5 0.5' stroke='black' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  }

  .header-new__menu-card:hover .header-new__menu-title::after,
  .header-new__menu-card:focus-visible .header-new__menu-title::after {
    opacity: 1;
    transform: translateX(0);
    margin-left: 6px;
  }

  span.header-new__menu-card:hover .header-new__menu-title::after,
  span.header-new__menu-card:focus-visible .header-new__menu-title::after {
    display: none;
  }

  body.darkmode .header-new__menu-title::after {
    width: 12px;
    height: 12px;
    flex-basis: 12px;
    background-size: 12px 12px;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 6H11M6 11L11 6L6 1' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  }
}

.header-new__menu-title img {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.darkmode .header-new__menu-title img {
  filter: brightness(0) invert(1);
}

.header-new__menu-card p {
  margin: 10px 0 0px 0;
  color: #5E5C5C;
  font-family: Gilroy-Medium;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; 
}
.darkmode .header-new__menu-card p {
  color: #F6F8FB;
}
.header-new__badge {
  margin-left: 8px;
  border-radius: 999px;
  background: var(--header-surface-soft);
  color: var(--header-muted);
  font-size: 12px;
  line-height: 1;
  padding: 5px 9px;text-transform: capitalize;
}

.header-new__social-card {
  background: var(--header-new__social-card);
  padding: 16px 18px;
  display: flex;
  width: 144px;
  padding: 10px 16px 16px 16px;
  flex-direction: column;
  gap: 7px;border-radius: 20px;
}

.header-new__social-card p {
  margin: 0px;
  color: var(--header-text);
  font-family: Gilroy-Medium;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  margin-bottom: 5px;
  line-height: 24px;
}

.header-new__social-links {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 24px;justify-content: space-between;
}
.header-new__social-links .icomoonx.iconx-x-logo {
  font-size: 19px;
}
.header-new__social-links a {
  display: flex;color: #242628;
}
.header-new__social-links a:hover {
  color: #0d6efd;
}
.darkmode .header-new__social-links a {
  color: #fff;
}
.darkmode .header-new__social-links a:hover {
  color: #0d6efd;
}
.header-new__language-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px 100px;
}

.header-new__language-option {
  border: 0;
  background: transparent;
  color: var(--header-text);
  font-family: Gilroy-Medium;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  text-align: left;
  padding: 3px 20px;
  border-radius: 20px;
  width: fit-content;
  cursor: pointer;
}

.header-new__language-option.is-selected {
  background: var(--header-pill-bg);
  color: var(--header-pill-text);
}

.header-new__language-option.is-selected::before {
  content: "\2713\00A0";
}

.header-new__mobile-panel {
  display: none;
}

.header-new__mobile-close {
  border: 0;
  background: transparent;
  color: var(--header-text);
  font-size: 33px;
  line-height: 1;
  padding: 0;
}


@media (min-width: 1201px) {

  .header-new__social-card {
    position: absolute;
    right: -144px;top: -28px;
  }
}

@media (max-width: 1200px) and (min-width: 992px){
  .header-new__social-card {
    width: auto;
    display: flex;
    gap: 40px;
    flex-direction: row;
    padding: 14px 20px;
    border-radius: 10px;
  }
  .header-new__social-card p {
    margin-bottom: 0;
  }
  .header-new__social-card .header-new__social-links {
    gap: 30px;
  }

  .header-new__logo-img {
    width: 130px;
  }


}

@media (min-width: 1321px) {

  .header-new__social-card {
    right: -144px;
  }

}

@media (max-width: 1320px) and (min-width: 1201px) {

  .header-new__social-card {
    right: -100px;
  }

}

@media (max-width: 1400px) {
  .header-new__actions {
    gap: 15px;
  }
  .header-new__nav {
    gap: 10px;
  }
}
@media (max-width: 1260px) {
    .header-new__container {
      padding: 0 20px;
  }
}

@media (max-width: 1200px) and  (min-width: 992px) {
  .header-new__nav {
    gap: 5px;
  }

  .header-new__actions {
    gap: 10px;
  }

}

@media (max-width: 991px) {
  .header-new__container {
    max-width: none;
    height: 64px;
    border-bottom: 0;
  }
  .header-new__bar {background: rgba(255, 255, 255, 0.10);backdrop-filter: blur(20px);}
  .darkmode .header-new__bar {background: rgba(0, 0, 0, 0.10);backdrop-filter: blur(20px);}
  .header-new__nav,
  .header-new__lang-trigger,
  .header-new__actions .header-new__login,
  .header-new__actions .header-new__signup,
  .header-new__dropdown {
    display: none;
  }

  .header-new__actions {
    margin-left: auto;
    gap: 0;
  }

  .header-new__burger {
    display: flex;
  }

  .header-new__scrim {
    top: 58px;
  }

  .header-new__mobile-panel {
    display: block;
    position: fixed;
    top: 58px;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--header-surface);
    transform: none;
    opacity: 1;
    visibility: hidden;
    pointer-events: none;
    transition: none;
    border-top: 1px solid var(--header-border);
    z-index: 19;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
  }

  .header-new.is-mobile-open .header-new__mobile-panel {
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .header-new.is-mobile-open .header-new__burger span:nth-child(1) {
    right: 50%;
    top: 6px;
    width: 0;
  }

  .header-new.is-mobile-open .header-new__burger span:nth-child(2) {
    transform: rotate(45deg);
    width: 24px;
    right: 4px;
  }

  .header-new.is-mobile-open .header-new__burger span:nth-child(3) {
    transform: rotate(-45deg);
    width: 24px;
    right: 4px;
  }

  .header-new.is-mobile-open .header-new__burger span:nth-child(4) {
    right: 50%;
    top: 6px;
    width: 0;
  }

  .header-new__mobile-inner {
    padding: 32px 30px 52px 30px;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    margin: 0 auto;
  }

  .header-new__mobile-top {
    display: none;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
  }

  .header-new__mobile-lang-wrap {
    margin-bottom: 10px;
  }

  .header-new__mobile-lang-trigger {
    width: fit-content;
    border: 0;
    background: transparent;
    color: #5E5C5C;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    line-height: 1;font-family: Gilroy-Medium;
    padding: 0;
  }

  .header-new__mobile-lang-trigger svg {
    color: #5E5C5C !important;
  }

  .header-new__mobile-lang-trigger svg circle,
  .header-new__mobile-lang-trigger svg path {
    stroke: #5E5C5C !important;
  }

  .header-new__mobile-lang-trigger .header-new__caret {
    background-image: url("data:image/svg+xml,%3Csvg width='9' height='7' viewBox='0 0 9 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4.95842 5.72063C4.55812 6.24064 3.77391 6.24064 3.37361 5.72063L0.209239 1.60999C-0.296957 0.952424 0.171805 0 1.00164 0L7.33039 0C8.16023 0 8.62899 0.952424 8.12279 1.60999L4.95842 5.72063Z' fill='%235E5C5C'/%3E%3C/svg%3E");
  }

  .darkmode .header-new__mobile-lang-trigger,
  .darkmode .header-new__mobile-lang-trigger {
    color: #B1BBC5;
  }

  .darkmode .header-new__mobile-lang-trigger svg,
  .darkmode .header-new__mobile-lang-trigger svg {
    color: #B1BBC5 !important;
  }

  .darkmode .header-new__mobile-lang-trigger svg circle,
  .darkmode .header-new__mobile-lang-trigger svg path,
  .darkmode .header-new__mobile-lang-trigger svg circle,
  .darkmode .header-new__mobile-lang-trigger svg path {
    stroke: #B1BBC5 !important;
  }

  .darkmode .header-new__mobile-lang-trigger .header-new__caret,
  .darkmode .header-new__mobile-lang-trigger .header-new__caret {
    background-image: url("data:image/svg+xml,%3Csvg width='9' height='7' viewBox='0 0 9 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4.95842 5.72063C4.55812 6.24064 3.77391 6.24064 3.37361 5.72063L0.209239 1.60999C-0.296957 0.952424 0.171805 0 1.00164 0L7.33039 0C8.16023 0 8.62899 0.952424 8.12279 1.60999L4.95842 5.72063Z' fill='%23B1BBC5'/%3E%3C/svg%3E");
  }

  .header-new__mobile-lang-trigger .header-new__caret {
    margin-left: 5px;
  }

  .header-new__mobile-language-grid {
    display: grid;
    margin-top: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4px 18px;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    transition: max-height 0.24s ease, opacity 0.2s ease, margin-top 0.24s ease;
  }

  .header-new__mobile-lang-wrap.is-open .header-new__mobile-language-grid {
    max-height: 100%;
    opacity: 1;
    margin-top: 10px;
    pointer-events: auto;
  }

  .header-new__mobile-language-grid .header-new__language-option {
    padding: 5px 10px;
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: Gilroy-Medium;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;

  }

  .header-new__mobile-language-grid .header-new__language-option.is-selected::before {
    content: none;
  }

  .header-new__mobile-language-grid .header-new__language-option.is-selected::after {
    content: "\2713";
    margin-left: 5px;
    flex-shrink: 0;
  }

  .header-new__mobile-sections {
    display: flex;
    flex-direction: column;
    gap: 28px;margin-top: 14px;
    margin-bottom: 40px;
  }

  .header-new__mobile-trigger {
    width: 100%;
    border: 0;
    background: transparent;
    color: var(--header-text);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 11px;
    font-size: 20px;font-family: Gilroy-Medium;
    line-height: 1;
    padding: 10px 0;
    text-align: left;
  }
  .header-new__caret{margin-top: 3px;}
  .header-new__mobile-submenu {
    display: flex;
    flex-direction: column;
    padding: 0 0 0 10px;
    gap: 27px;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transform: translateY(-4px);
    transform-origin: top left;
    will-change: max-height, opacity, transform, padding;
    transition: max-height 0.28s ease, opacity 0.22s ease, transform 0.28s ease, padding 0.28s ease;
  }

  .header-new__mobile-submenu a, .header-new__mobile-submenu-a {
    color: var(--black-or-white);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: Gilroy-Medium;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
  }

  .header-new__mobile-submenu a img {
    flex-shrink: 0;
  }

  .darkmode .header-new__mobile-submenu a img, .darkmode .header-new__mobile-submenu-a img {
    filter: brightness(0) invert(1);
  }

  .header-new__mobile-section.is-open .header-new__mobile-submenu {
    max-height: 100%;
    opacity: 1;
    transform: translateY(0);
    padding: 25px 0 10px 10px;
  }

  .header-new__mobile-auth {
    margin-top: auto;
    display: grid;
    gap: 10px;
  }

  .header-new__login--mobile,
  .header-new__signup--mobile {
    display: block;
    text-align: center;
    border-radius: 8px;
    font-size: 18px;
    line-height: 1;
    padding: 12px 12px;
  }

  .header-new__login--mobile {
    border: 1px solid var(--header-text);
    color: var(--header-text);
    background: transparent;
  }

  .header-new__signup--mobile {
    border: 1px solid transparent;
  }

  .header-new__social-card--mobile {
    margin-top: 0;
    border-radius: 10px;
    padding: 14px 20px 14px 20px;
    position: relative;
    right: 0px;
    width: auto;
    justify-content: space-between;
  gap: 40px;
    flex-direction: row;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
  }

  .header-new__social-card--mobile p {
    leading-trim: both;
    text-edge: cap;
    font-size: 14px;font-family: Gilroy-Medium;
    margin:0px;
  }
  .header-new__mobile-submenu .header-new__social-card--mobile a {font-size: 24px;}
  .header-new__social-links .icomoonx.iconx-x-logo {
    font-size: 21px;
  }
  .header-new__social-links.social-list {
    gap: 30px;
  } 
  .header-new__social-links.social-list li {
    display: flex;
  }
}

@media (min-width:501px) {
  .header-display-flex {
        display: flex;
  } 
}


@media (max-width: 500px) {
  .header-new__social-card--mobile {
    gap: 20px;
  } 
}

:root {
  --fluid-vw: clamp(320px, 100vw, 1440px);
  --fluid-step: calc((var(--fluid-vw) - 320px) / 1120);
  --fluid-nav-link: clamp(16px, calc(16px + 2 * var(--fluid-step)), 18px);
  --fluid-nav-link-before-top: clamp(-22px, calc(-22px + 4 * var(--fluid-step)), -18px);
}

.header-new__nav-link {
  font-size: var(--fluid-nav-link);
}

.header-new__nav-link:before {
  top: var(--fluid-nav-link-before-top);
}

@media (max-width: 1200px) and  (min-width: 992px) {
  .header-new__nav-link {
    font-size: 16px;
  }

}

@media (max-width: 991px) {
  .header-new__nav-link {
    font-size: var(--fluid-nav-link) !important;
  }

  .header-new__nav-link:before {
    top: var(--fluid-nav-link-before-top) !important;
  }
}

