.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100px;

    position: fixed;
    /* width: calc(100% - 119px * 2); */
    width: 100vw;
    padding: 0 119px;
    box-sizing: border-box;
    margin-left: -119px;

    background-color: #fff;
    z-index: 6969;
}

.header .logo {
    width: 160px;
    flex-shrink: 0;
}

.header .logo img {
    width: 100%;
}

.header .burger_icon img {
    width: 100%;
}

.header .menu {
    display: flex;
    gap: 70px;
    font-size: 15px;
    font-weight: 700;
    line-height: 20px;
}

.header .menu .menu_button {
    all: unset;

    color: #1A1A1A;
    cursor: pointer;
    transition: all 150ms ease-in-out;
}

.header .menu .menu_button:hover {
    color: #1c9ed4;
}
.header .phone_numbers a {
    transition: all 150ms ease-in-out;
}
.header .phone_numbers a:hover {
    color: #1c9ed4;
}
.header .menu .menu_button:active
{
    scale: .95;
}
.header .menu .menu_button.active {
    color: #0050EC;
}

.header .contact_info {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 25px;
}


.header .contact_info .phone_numbers {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.header .contact_info .social_media {
    display: flex;
    gap: 15px;
}

.header .contact_info .social_media .icon {
    all: unset;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 32px;
    aspect-ratio: 1/1;
    border-radius: 100%;
    background: var(--1, linear-gradient(155deg, rgba(255, 255, 255, 0.20) 0%, rgba(255, 255, 255, 0.20) 38.36%, rgba(255, 255, 255, 0.28) 38.37%, rgba(255, 255, 255, 0.00) 80.52%), #0050EC);
    cursor: pointer;
}

.header .contact_info .social_media .icon:hover {
    background: linear-gradient(102deg, rgba(255, 255, 255, 0.20) 0%, rgba(255, 255, 255, 0.20) 21.5%, rgba(255, 255, 255, 0.28) 21.51%, rgba(255, 255, 255, 0.00) 45.14%), radial-gradient(145.35% 141.42% at 0% 0%, #0D81EC 0%, #20A5CF 100%);
}

.header .contact_info .social_media .icon img {
    width: 16px;
    height: auto;
}

.header .burger_menu {
    display: none;

    z-index: 100;
}

.header .burger_icon {
    display: none;
}

.header .burger_menu .mobile_nav {
    display: none;
}

.header .burger_menu .mobile_nav .bar {
    width: 320px;
    height: 100vh;
    position: fixed;
    top: 0;
    right: 0;
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.10);

    padding: 28px 28px 35px 35px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 52px;
}

.header .burger_menu .mobile_nav .bar .close_icon {
    align-self: flex-end;
}

.header .burger_menu .mobile_nav .bar .menu {
    display: flex;
    flex-direction: column;
    gap: 32px;

    font-size: 16px;
    font-weight: 500;
}

.header .burger_menu .mobile_nav .bar .menu .menu_button.active {
    font-weight: 700;
    color: #0050EC;
}

.header .burger_menu .mobile_nav .contact_info {
    gap: 0;
    justify-content: space-between;
    margin-top: auto;
}

.header .burger_menu .blur_background {
    /* display: none; */
    position: fixed;
    background-color: rgba(255, 255, 255, 0.01);
    backdrop-filter: blur(2.5px);
    width: 100vw;
    height: 100vh;
    right: 0;
    top: 0;
    z-index: -1;
}

/* .burger_menu .mobile_nav a {
    display: block;
    padding: 10px 15px;
    border-bottom: 1px solid #e1e1e1;
}

.burger_menu .mobile_nav a:last-child {
    border-bottom: none;
} */