.container__header {
    height: 46px;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
}

/* === Desktop shared navbar: alignment + sizing ===
   Scoped to #header_large_screen so the mobile header (#header_small_screen,
   whose dropdown is hard-pinned at top:46px) and the separate homepage navbar
   (.header.js-header, styled by style.css) are left untouched. Bar height and
   the absolutely-positioned logo are intentionally left as-is. */
#header_large_screen .container__header {
    overflow: visible;      /* was clipping the 1.5px pill hover borders */
    align-items: center;    /* vertically center logo / menu / login row */
    column-gap: 16px;       /* even spacing between the three groups */
}
#header_large_screen .header__menu-list {
    align-items: center;
    column-gap: 4px;        /* even, consistent gaps between menu pills */
    margin: 0;              /* kill Bootstrap reboot's default ul margin-bottom:1rem,
                               which left 16px of empty space under the list and pushed
                               the menu pills / Login button ~8px above the bar's center */
}
#header_large_screen .nav-icon {
    padding-top: 10px;      /* was 14px — breathing room inside the 46px bar */
    padding-bottom: 10px;
}
.header__logo {
    display: inline-block;
    height: 38px;
    width: 126px;
    margin-top: 4px;
    margin-right: 0;
}

.header__menu-list{
    list-style: none;
    display: flex;
    justify-content: center;
}
.header__menu-item a{
    text-decoration: none;
    line-height: 100%;
}
.header__menu-item svg{
    margin-left: 3px;
  }
.header__menu-item:hover .nav-icon{
    background-color:  #E0F2FE;
    backdrop-filter: blur(25px);
    border: 1.5px solid var(--prime-45, #0074A3);
  
    /* padding: 14px 12px; */
}
.header__menu-item{
  cursor: pointer;
}
.menu-scroll-down-2 {
    width: 300px;
    position: absolute;
    right: 0;
    top: 46px;
    z-index: 2;
    overflow: scroll;
    height: 100vh;
    visibility: hidden;
    transition: opacity 0.6s cubic-bezier(0.38, 0.005, 0.215, 1), visibility 0.6s cubic-bezier(0.38, 0.005, 0.215, 1), pointer-events 0.6s cubic-bezier(0.38, 0.005, 0.215, 1);
}
.nav-icon {
    align-items: center;
    width: fit-content;
    display: flex;
    padding: 14px 22px;
    border-radius: 24px;
    transition: all .3s ease-in;
    border: 1.5px solid #FAFCFC;
    color: var(--Text-color-Text-7, #475467);
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%; /* 16.8px */
    letter-spacing: -0.14px;
}
.menu-scroll-down{
    z-index: 100;
    width: 280px;
    position: absolute;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s cubic-bezier(0.38, 0.005, 0.215, 1),
      visibility 0.6s cubic-bezier(0.38, 0.005, 0.215, 1),
      pointer-events 0.6s cubic-bezier(0.38, 0.005, 0.215, 1);
    overflow: hidden;
  }

.transition_menu_scroll {
    background: #FCFCFD;
    transform: translateY(-100%);
    border: 1.5px solid var(--Text-color-Text-4, #D0D5DD);
    transition: transform 0.6s cubic-bezier(0.38, 0.005, 0.215, 1);
    will-change: transform;
}
.menu-scroll-down-ul{
  padding: 4px;
  border-radius: 8px 8px 8px 8px;
}
.menu-scroll-down-ul li{
  padding: 0 5px;
  border-radius: 3px;
  transition: background .4s ease;

}
.menu-scroll-down-ul li a{
  display: flex;
  column-gap: 8px;
  padding: 10px 0;
  text-decoration: none;
}
.menu-scroll-down-ul li:hover{
  background: var(--text-color-text-4, #E0F2FE);
}
.menu-scroll-down-ul li:hover .p-menu{
  color: #0074A3 !important;
}

.menu-scroll-down-ul li:hover .svg-menu path{
  fill: #006994;
}
.menu-scroll-down-ul li p{
  color: #475467;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: -0.14px;
  margin-bottom: 0;
}
.menu-scroll-down-ul li a{
  color: #475467;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: -0.14px;
  margin-bottom: 0;
}
.height-menu-scroll{
  height: calc(10vw + 60px);
}

.max-height_500{
  /* max-height: 500px !important; */
  transform: translateY(0) !important;
}
.menu_active{
  opacity: 1;
  visibility: visible !important;
}
.hover-navbar{
    background-color: #E0F2FE;
    padding: 14px 22px;
    border: 1.5px solid var(--prime-45, #0074A3);
}
.hover-navbar a{
    color: #006994;
}
.hover-navbar .header-svg path{
    color: #006994;
}

.button__header-login{
    padding: 12px 31px;
    border-radius: 24px;
    font-weight: 600;
    background: var(--text-color-text-4, #D0D5DD);
    color: #101828;
    transition: background .3s ease;
    text-wrap: nowrap;
}
.button__header-login:hover{
    background: var(--text-color-text-4, #E0F2FE);
  }
.button__header-register{
    padding: 12px 20px;
    border-radius: 24px;
    background: var(--text-color-text-4, #101828) !important;
    color: #FCFCFD !important;
    font-weight: 600;
    transition: background .3s ease;
}
.button__header-register:hover{
    background: var(--text-color-text-4, #007DB0) !important;
    color: #FCFCFD !important;
    box-shadow: 2px 2px 8px 1px rgba(0, 125, 176, 0.32);
}
.menu-expand{
    cursor: pointer;
}


#header_small_screen .accordion-button::after {
    background-image: url(../new-img/chevron-down.svg);
    margin-left: 8px;
}
#header_small_screen .accordion-button-link::after{
  background-image:none;
}
#header_small_screen .accordion-item:not(:last-child)::after{
  height: 0;
}
#header_small_screen .accordion-item{
  border-bottom: 1.5px solid #D0D5DD;
}
#header_small_screen .accordion-button{
  font-size: 16px;
  color: var(--Text-color-Text-7, #475467);
  font-family: Inter;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  letter-spacing: -0.14px;
  text-decoration: none;
  padding: 16px 0 16px 8px;
  
}
#header_small_screen .accordion-body{
  padding-bottom: 0;
}

#header_small_screen .accordion-button:not(.collapsed){
  background-color: #E0F2FE;
  color: #0074A3;
}
#header_small_screen .small-screen-list-item{
  list-style: none;
  color: var(--Text-color-Text-7, #475467);
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%; /* 16.8px */
  letter-spacing: -0.14px;
  margin-bottom: 0;
  transform: translateY(-5px);
}
#header_small_screen .small-screen-list-item li a{

}
#header_small_screen .accordion-item:first-of-type,
#header_small_screen .accordion-item:last-of-type .accordion-button.collapsed{
  border-radius: 0px;
}
#header_small_screen .accordion-item:first-of-type .accordion-button{
  border-radius: 0px;
}
#header_small_screen .accordion{
  border-radius: 0px;
}
.accordion-button:focus{
  box-shadow: none;
}
.icon__warning_header_show{
  border-radius: 4px;
  border: 1px solid var(--Text-color-Text-5, #98A2B3);
  background: var(--Text-color-Text-0, #FCFCFD);
  width: 200px;
  padding: 7px 8px;
  position: fixed;
  top: 40px;
  z-index: 100;
}


.footer {
    margin-top: auto;
    overflow: hidden;
}

.footer__inner {
    display: flex;
    flex-wrap: wrap;
    padding-bottom: calc(-0.625vw + 28px);
    padding-top: calc(2.5vw + 22px);
    position: relative;
    z-index: 2;
}

.footer__left {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-left: calc(0.9375vw + 7px);
    width: 50%;
}

.footer__center {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
    border-top: 1px solid #475467;
    padding-top: 20px;
}

.footer__right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: calc(0.9375vw + 7px);
    gap: calc(2vw + 10px);
    width: 50%;
}

.footer__email {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: calc(3vw + 22.4px);
    font-style: normal;
    font-weight: 500;
    letter-spacing: calc(-0.2vw - 0.16px);
    line-height: calc(1.5625vw + 30px);
    margin-top: calc(18.3125vw - 58.6px);
    transition: opacity 0.6s cubic-bezier(0.38, 0.005, 0.215, 1);
}

    .footer__email:active {
        opacity: 0.5;
    }

.footer__list {
    padding: 0 10px;
}

    .footer__list li {
        padding: 16px 0 0 0px;
    }

.footer__link {
    align-items: center;
    display: inline-flex;
    font-family: 'Inter', sans-serif;
    color: #E4E7EC;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    text-decoration: none;
    transition: opacity 0.6s cubic-bezier(0.38, 0.005, 0.215, 1);
}

.footer__item
.footer__link:active {
    opacity: 0.5;
}

.footer__link svg {
    display: block;
    /* height: 1em; */
    margin-left: 0.6em;
}

.footer__bottom {
    align-items: center;
    display: flex;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #475467;
    width: 100%;
}

.footer__copyright {
}

.footer__copyright,
.footer__dev {
    font-family: 'Inter', sans-serif;
    font-size: calc(0.6vw + 7.4px);
    font-style: normal;
    font-weight: 400;
    color: var(--Text-color-Text-4, #D0D5DD);
}

    .footer__copyright img {
/*        width: 63px;
        height: 21px;*/
        object-fit: cover;
        border-radius: 32px;
        /*filter: grayscale(100%);*/
        margin-left: 5px;
    }

.footer__dev {
    letter-spacing: calc(0.03281vw - 0.105px);
    margin-left: auto;
}

.footer__dev-span {
    text-decoration: underline;
}

.footer__dev-link {
    transition: opacity 0.6s cubic-bezier(0.38, 0.005, 0.215, 1);
}

    .footer__dev-link:active {
        opacity: 0.5;
    }

.footer__lines {
    left: 25%;
    z-index: -1;
}

.footer__lines,
.footer__lines-item {
    height: 100%;
    position: absolute;
    top: 0;
    width: 50%;
}

    .footer__lines-item,
    .footer__lines-item:first-child {
        left: 0;
    }

        .footer__lines-item:nth-child(2) {
            left: 50%;
        }

        .footer__lines-item:nth-child(3) {
            left: 100%;
        }

        .footer__lines-item:before {
            background-color: currentColor;
            content: "";
            height: 100%;
            left: 0;
            opacity: 0.3;
            position: absolute;
            top: 0;
            width: 1px;
        }

        .footer__lines-item:nth-child(2):before,
        .footer__lines-item:nth-child(4):before {
            opacity: 1;
        }

.footer-video {
    width: 60%;
    opacity: 0.1;
    margin: auto;
}

.button-send {
    border-radius: 200px;
    background-color: #E4E7EC;
    text-decoration: none;
    padding: 16px 28px;
    font-family: 'Inter', sans-serif;
    font-size: calc(.6vw + 7.4px);
    font-style: normal;
    font-weight: 700;
    color: #344054;
    line-height: 100%;
}

.form-footer input {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: calc(0.6vw + 7.4px);
    width: 100%;
    border: 0;
    color: #E4E7EC;
    border-bottom: 2px solid #98A2B3;
    padding-bottom: 5px;
    background-color: transparent;
}

    .form-footer input:focus-visible {
        outline: none;
    }

.form-footer p {
    padding: 20px 0;
}

.uspa {
    display: flex;
    flex-direction: row;
    gap: 12px;
    padding: 14px 16px;
    background-color: #344054;
    border-radius: 8px;
    align-items: center;
    height: fit-content;
}

.container-uspa {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.uspa-contact {
    align-self: end;
}

    .uspa-contact a:not(:last-child) {
        margin-right: 10px;
    }

.footer__list {
    list-style: none;
    color: var(--Text-color-Text-3, #E4E7EC);
}

.intro__heading {
    color: var(--Text-color-Text-0, #FCFCFD);
    text-transform: none;
    font-size: calc(2vw + 20px);
    letter-spacing: 1.64px;
    color: #FCFCFD;
    font-weight: 600;
}
.container-account{
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 38px;
  margin-top: 4px;
  background-color: #D0D5DD;
  border-radius: 200px;
  cursor: pointer;
}
.container-account img{
  width: 31px;
  height: 31px;
  border-radius: 50%;
  margin-left: 2px;
}
.container-account svg{
  margin-right: 5px;
}

.badge-num {
    box-sizing: border-box;
    font-family: 'Trebuchet MS', sans-serif;
    background: #ff0000;
    cursor: default;
    border-radius: 50%;
    color: #fff;
    font-weight: bold;
    font-size: 1rem;
    height: 1.5rem;
    letter-spacing: -.1rem;
    margin-left: .1rem;
    border: .2rem solid #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 1.5rem;
    box-shadow: 1px 1px 5px rgba(0,0,0, .2);
    animation: pulse 1.5s 1;
}

    .badge-num:after {
        content: '';
        position: absolute;
        left: 50%;
        top: 50%;
        transform:translate(50%, 50%);
        border: 2px solid rgba(255,0,0,.5);
        opacity: 0;
        border-radius: 50%;
        animation: sonar 1.5s 1;
    }

.badge-num2 {
    box-sizing: border-box;
    font-family: 'Trebuchet MS', sans-serif;
    background: #ff0000;
    cursor: default;
    border-radius: 50%;
    color: #fff;
    font-weight: bold;
    font-size: 1rem;
    height: 1.5rem;
    letter-spacing: -.1rem;
    margin-left: .1rem;
    border: .2rem solid #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 1.5rem;
    box-shadow: 1px 1px 5px rgba(0,0,0, .2);
    animation: pulse 1.5s 1;
}

    .badge-num2:after {
        content: '';
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(50%, 50%);
        border: 2px solid rgba(255,0,0,.5);
        opacity: 0;
        border-radius: 50%;
        animation: sonar 1.5s 1;
    }

@keyframes sonar {
    0% {
        transform: scale(.9);
        opacity: 1;
    }

    100% {
        transform: scale(2);
        opacity: 0;
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    20% {
        transform: scale(1.4);
    }

    50% {
        transform: scale(.9);
    }

    80% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

@media (max-width: 1199px){
    .nav-icon{
        padding: 14px 12px;
    }
    .footer-video {
        width: 80%;
    }
}
@media (max-width: 1400px){
    .hover-navbar {
        padding: 14px 15px;
    }
    .nav-icon {
        padding: 14px 15px;
    }
}
@media (max-width: 768px){
    
    .footer__left{
        width: 100%;
        padding-left: 0;
    }
    .footer__right {
        margin-top: 20px;
        width: 100%;
        padding-left: 0;
    }
}