@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

header nav {
    position: fixed;
    z-index: 999999;
    width: 100%;
    background: #f2f6ff;
}

.empty_height {
    height: 11%;
}

header nav .wrapper {
    position: relative;
    max-width: 1300px;
    padding: 0px 30px;
    height: 70px;
    line-height: 70px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.wrapper .logo a {
    color: #f2f2f2;
    font-size: 30px;
    font-weight: 600;
    text-decoration: none;
}

.wrapper .nav-links {
    display: inline-flex;
}

.nav-links li {
    list-style: none;
}

.nav-links li a {
    color: rgba(0, 0, 0, .9);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 9px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
    /* position: relative; */
}

.mega-box .row a {
    padding: 5px 0px !important;
    display: inline-block;
}


/* .nav-links li a:hover {
    background: #e2e8f4;
} */


/* @media only screen and (max-width: 991px) {
    .nav-links li a:hover::after {
        content: "";
        border-bottom: 3px solid #F1833B !important;
        width: 45px;
        margin: 0 auto;
        display: inline-block;
        position: absolute;
        left: 15px;
        right: auto;
        bottom: 3px;
    }
} */

.nav-links .mobile-item {
    display: none;
}

.nav-links .drop-menu {
    position: absolute;
    background: #242526;
    width: 180px;
    line-height: 45px;
    top: 85px;
    opacity: 0;
    visibility: hidden;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.nav-links li:hover .drop-menu,
.nav-links li:hover .mega-box {
    transition: all 0.3s ease;
    top: 70px;
    opacity: 1;
    visibility: visible;
}

.drop-menu li a {
    width: 100%;
    display: block;
    padding: 0 0 0 15px;
    font-weight: 400;
    border-radius: 0px;
}

.mega-box {
    position: absolute;
    left: 0;
    width: 100%;
    padding: 0 30px;
    top: 85px;
    opacity: 0;
    visibility: hidden;
}

.mega-box .content {
    background: #FFF;
    padding: 25px 30px;
    display: flex;
    width: 100%;
    justify-content: space-between;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.mega-box .content .row {
    /* width: calc(25% - 30px); */
    width: calc(30%);
    line-height: 45px;
}


/* .content .row img {
    width: 100%;
    height: 100%;
    object-fit: cover;
} */

.content .row header {
    color: #f0833a;
    font-size: 23px;
    font-weight: 600;
    position: relative;
    margin-bottom: 1rem;
}

.content .row header::after {
    content: "";
    border-bottom: 4px solid #F1833B !important;
    width: 50px;
    margin: 0 auto;
    display: inline-block;
    position: absolute;
    left: 2px;
    right: auto;
    bottom: -2px;
}

.content .row .mega-links {
    /* margin-left: -40px; */
    border-left: 1px solid rgba(255, 255, 255, 0.09);
}

.row .mega-links li {
    padding: 0 20px;
}

.row .mega-links li a {
    padding: 0px;
    padding: 0 20px;
    color: #000000;
    font-size: 17px;
    display: block;
}

.row .mega-links li a:hover {
    color: #f2f2f2;
}

.wrapper .btn.smbtn {
    color: #073d72;
    font-size: 20px;
    cursor: pointer;
    display: none;
}

.wrapper .btn-primary {
    display: block;
}

.wrapper .btn.close-btn {
    position: absolute;
    right: 30px;
    top: 20px;
    color: #073d72;
}

@media screen and (max-width: 970px) {
    .empty_height {
        height: 9%;
    }
    .mega-links h6 {
        font-size: 0.9rem;
    }
    .wrapper .btn.smbtn {
        display: block;
    }
    .wrapper .nav-links {
        position: fixed;
        height: 90vh;
        width: 100%;
        /* max-width: 350px; */
        /* top: -100%; */
        left: 0;
        background: #ffffff;
        display: none;
        padding: 20px 10px;
        line-height: 50px;
        overflow-y: auto;
        box-shadow: 0px 15px 15px rgba(0, 0, 0, 0.18);
        transition: all 0.3s ease;
    }
    /* custom scroll bar */
     ::-webkit-scrollbar {
        width: 10px;
        display: none;
    }
     ::-webkit-scrollbar-track {
        background: #ffffff;
    }
     ::-webkit-scrollbar-thumb {
        background: #3A3B3C;
    }
    .wrapper .btn.smbtn.close-btn {
        display: none;
    }
    #menu-btn:checked~.nav-links {
        top: 70px;
        display: block;
    }
    /* #menu-btn:checked~.btn.menu-btn {
        display: none;
    }

    #close-btn:checked~.btn.menu-btn, #menu-btn:checked~.btn.smbtn.close-btn {
        display: block;
    } */
    .icon {
        height: 24px;
        width: 24px;
    }
    label.icon {
        position: fixed;
        z-index: 200;
        right: 30px;
        top: 25px;
    }
    .icon .mob_menu,
    .icon .mob_menu::before,
    .icon .mob_menu::after {
        background: #414a50;
        content: '';
        display: block;
        height: 2px;
        position: absolute;
        transition: background ease .3s, top ease .3s .3s, transform ease .3s;
        width: 25px;
    }
    .icon:hover .mob_menu,
    .icon:hover .mob_menu::before,
    .icon:hover .mob_menu::after {
        background: #fe8721;
    }
    .icon .mob_menu {
        left: 2px;
        top: 10px;
    }
    .icon .mob_menu::before {
        top: -7px;
    }
    .icon .mob_menu::after {
        top: 7px;
    }
    #menu-btn:checked~.icon .mob_menu {
        background: transparent;
    }
    #menu-btn:checked+.icon .mob_menu::before {
        transform: rotate(45deg);
    }
    #menu-btn:checked+.icon .mob_menu::after {
        transform: rotate(-45deg);
    }
    #menu-btn:checked+.icon .mob_menu::before,
    #menu-btn:checked+.icon .mob_menu::after {
        top: 0;
        transition: top ease .3s, transform ease .3s .3s;
    }
    .nav-links li {
        margin: 15px 10px;
    }
    .nav-links li a {
        padding: 0 0px;
        display: block;
        font-size: 17px;
    }
    .nav-links .drop-menu {
        position: static;
        opacity: 1;
        top: 65px;
        visibility: visible;
        padding-left: 20px;
        width: 100%;
        max-height: 0px;
        overflow: hidden;
        box-shadow: none;
        transition: all 0.3s ease;
    }
    #showDrop:checked~.drop-menu,
    #showMega:checked~.mega-box {
        max-height: 100%;
    }
    #showDrop:checked~.drop-menu,
    #showZega:checked~.mega-box {
        max-height: 100%;
    }
    .nav-links .desktop-item {
        display: none;
    }
    .nav-links .mobile-item {
        display: block;
        color: #202020;
        font-size: 17px;
        font-weight: 500;
        /* padding-left: 20px; */
        cursor: pointer;
        border-radius: 5px;
        transition: all 0.3s ease;
        position: relative;
    }
    .nav-links .mobile-item:hover::after {
        /* background: #ffffff; */
        content: "";
        border-bottom: 3px solid #F1833B !important;
        width: 45px;
        margin: 0 auto;
        display: inline-block;
        position: absolute;
        left: 2px;
        right: auto;
        bottom: 3px;
    }
    .drop-menu li {
        margin: 0;
    }
    .drop-menu li a {
        border-radius: 5px;
        font-size: 18px;
    }
    .mega-box {
        position: static;
        top: 65px;
        opacity: 1;
        visibility: visible;
        padding: 0 0px;
        max-height: 0px;
        overflow: hidden;
        transition: all 0.3s ease;
    }
    .mega-box .content {
        box-shadow: none;
        flex-direction: column;
        padding: 0px 30px;
    }
    .mega-box .content .row {
        width: 100%;
        margin-bottom: 15px;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }
    .mega-box .content .row:nth-child(1),
    .mega-box .content .row:nth-child(2) {
        border-top: 0px;
    }
    .content .row .mega-links {
        border-left: 0px;
        /* padding-left: 15px; */
    }
    .row .mega-links li {
        margin: 0;
    }
    .content .row header {
        font-size: 1rem;
        font-weight: 600;
    }
}

nav input {
    display: none;
}

.body-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
    padding: 0 30px;
}

.body-text div {
    font-size: 45px;
    font-weight: 600;
}

.menu-btn .fa-bars:before {
    font-size: 22px;
}