.header {
    position: relative;
    left: 0;
    right: 0;
    z-index: 50;
    padding: 1rem 4.75rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 5.8rem;
    transition: all 1s;
}
.fake_header {
    display: none;
    height: 5.8rem;
}
.fake_header.scrolled {
    display: block;
}
.header.scrolled {
    background: white;
    position: fixed;
    box-shadow: 0px 5px 5px #0000002b;
    top: -5rem;
    animation: slideDown 0.5s ease forwards;
}
@keyframes slideDown {
    from {
        transform: translateY(0);
    }
    to {
        transform: translateY(5rem);
    }
}
.warpper_nav {
    flex: 1 0 0;
}
.nav-menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    list-style: none;
    width: 100%;
}

.nav-menu li {
    position: relative;
    height: 5.8rem;
}
.megamenu {
    position: absolute;
    top: 100%;
    width: 100%;
    left: 0;
    right: 0;
    height: auto;
    z-index: 50;
    display: none;
	flex-wrap: wrap;
	justify-content: center;
	background: rgba(0, 0, 0, 0.15);
	box-shadow: rgba(0, 0, 0, 0.15) 0px 30px 5px;
/*     grid-template-columns: repeat(3, minmax(0, 1fr)); */
}
.megamenu_item {
    height: 12.5rem;
    width: 33.33%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.megamenu_item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    background-color: #000000;
    opacity: 0.7;
    z-index: 1;
}
.megamenu_item_link {
    position: relative;
    z-index: 2;
    color: white;
    font-family: "Plus Jakarta Sans", Sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.4;
}
.megamenu_item_img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.nav-menu a {
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
    height: 100%;
    align-items: center;
    display: flex;
}

.dropdown::after {
    content: "▼";
    margin-left: 0.5rem;
    font-size: 0.75rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.125rem;
    font-weight: 600;
}

.logo-icon {
    width: 9.5rem;
    height: 4.75rem;
    object-fit: cover;
    filter: brightness(0) invert(1);
}

.cta-button {
    background-image: linear-gradient(90deg, #213acb 0%, #4edceb 100%);
    color: white;
    padding: 0.75rem 1.875rem;
    border-radius: 2rem;
    text-decoration: none;
    transition: all 0.5s ease;
    height: 3.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-button:hover {
    background: #2563eb;
    transform: translateY(-0.125rem);
}
.header.scrolled .logo-icon {
    filter: brightness(1) invert(0);
}
.header.scrolled .nav-menu a {
    color: #1e1e1e;
}
/*  */
.floating-contact {
    position: fixed;
    right: 0rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    z-index: 50;
}

.contact-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.25rem;
    padding: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 1.25rem;
    transition: all 0.3s ease;
    background-color: #213acb;
}

.contact-icon:hover {
    transform: scale(1.1);
}
.contact-icon svg {
    fill: white;
    width: 2rem;
    height: 2rem;
}
.headermenu_mb,
.header_logomb,
.btn_menu_mb,
.warpper_nav_logomb {
    display: none;
}
@media (max-width: 639px) {
    .header {
        padding: 0.25rem 1.188rem;
        height: 3.25rem;
    }
    .fake_header {
        height: 3.25rem;
    }
    .warpper_nav {
        display: none;
    }
    .cta-button {
        height: 2.75rem;
    }
    .header_logomb {
        display: block;
    }
    .header_logomb img {
        width: 5.75rem;
        height: 5.563rem;
        object-fit: contain;
        filter: brightness(0) invert(1);
    }
    .header.scrolled .header_logomb img {
        filter: brightness(1) invert(0);
    }
    .btn_menu_mb {
        position: relative;
        z-index: 10;
        display: block;
    }
    .btn_menu_mb svg {
        width: 2.5rem;
        height: 2.5rem;
        fill: white;
        font-size: 40px;
    }
    .header.scrolled .btn_menu_mb svg path {
        stroke: #1e1e1e;
    }
    .headermenu_mb {
        position: fixed;
        right: 0;
        top: 0;
        bottom: 0;
        z-index: 51;
        width: max-content;
        max-width: 100%;
        padding: 1rem;
        background: white;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 1.5rem;
        transform: translateX(100%);
        transition: all 0.5s;
    }
    .headermenu_mb.open {
        transform: translateX(0);
    }
    .headermenu_item_header {
        display: flex;
        align-items: center;
        gap: 2rem;
    }
    .headermenu_item_content {
        list-style-type: circle;
        padding-left: 2rem;
        overflow: hidden;
        max-height: 0px;
        transition: max-height 0.3s ease;
    }
    .headermenu_item_content li {
        padding: 0.75rem 1rem;
    }
    .headermenu_mb_close {
        position: absolute;
        top: 0.5rem;
        right: 0.5rem;
        width: 2.525rem;
        height: 2.525rem;
    }
}
