* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
.desktop_nav{
    font-weight: 600!important;
    font-size: 1.1rem!important;
}

.nav {
    position: sticky;
    width: 100%;
    top: 0px;
    background-color: transparent;
    padding: 10px;
    transition: background-color 0.3s;
    z-index: 1000;
}

.nav.sticky {
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.nav .wrapper {
    padding: 1rem 0rem;
    height: 70px;
    line-height: 70px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.wrapper .logo a img {
    text-decoration: none;
    width: auto;
    height: 3rem;
}

.wrapper .nav-links {
    margin: 0;
    display: inline-flex;
}

.nav-links li {
    list-style: none;
}

.nav-links li a {
    color: #051441;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding: 9px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.nav-links li a:hover {
    background: #3a3b3c1b;
}

.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: 60px;
    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-top: 1rem;
    top: 85px;
    opacity: 0;
    visibility: hidden;
}

.mega-box .content {
    background: #fff;
    padding: 25px 20px;
    /* display: flex; */
    width: 100%;
    justify-content: space-between;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.companyprofile {
    cursor: pointer;
    border-radius: 5px;
}

.wrapper .btn {
    color: #000;
    font-size: 20px;
    cursor: pointer;
    display: none;
}

.wrapper .btn.close-btn {
    position: absolute;
    right: 30px;
    top: 10px;
}

.navbar_btn {
    background-color: #0a78be !important;
    color: #fff !important;
    padding: .7rem 1rem !important;
    border-radius: 4rem !important;
    transition: .7s ease-in-out;
}

.content img {
    width: 100%;
    height: auto;
}

.content h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
    margin-bottom: 0;
}

.mega_menu_list .list_item {
    line-height: normal;
    padding: 8px;
    font-size: 14px;
    display: inline-block;
    background-color: #fff;
    border-radius: 9px;
    margin-top: 5px;
    border: 1px solid #6a7c92;
    color: #000 !important;
}

.mega_menu_list li {
    height: 50px;
    padding: 0;
}

.mega_menu_list .list_item:hover {
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.content ul li a img {
    width: auto;
    height: 20px;

}

.navbar_list_img {
    display: flex;
}

.navbar_list_img img {
    width: auto;
    border-radius: 5px;
    margin-right: 1rem;
    height: 4rem;
    margin-top: 3rem;
}

@media screen and (max-width: 970px) {
    .nav .wrapper {
        padding: 0;
    }

    .wrapper .btn {
        display: block;
    }

    .wrapper .nav-links {
        position: fixed;
        height: 100vh;
        width: 100%;
        max-width: 100%;
        top: 0;
        left: -100%;
        background: #fff;
        display: block;
        padding: 50px 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;
    }

    ::-webkit-scrollbar-track {
        background: #fff;
    }

    ::-webkit-scrollbar-thumb {
        background: #fff;
    }

    #menu-btn:checked~.nav-links {
        left: 0%;
    }

    #menu-btn:checked~.btn.menu-btn {
        display: none;
    }

    #close-btn:checked~.btn.menu-btn {
        display: block;
    }

    .nav-links li {
        margin: 0px 10px;
    }

    .nav-links li a {
        padding: 0px;
        display: block;
        font-size: 20px;
    }

    .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,
    #showMega2:checked~.mega-box {
        max-height: 100%;
    }

    .nav-links .desktop-item {
        display: none;
    }

    .nav-links .mobile-item {
        display: block;
        color: #000;
        font-size: 20px;
        font-weight: 500;
        padding: 0;
        cursor: pointer;
        border-radius: 5px;
        transition: all 0.3s ease;
    }

    .nav-links .mobile-item:hover {
        background: #fff;
    }

    .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;
        max-height: 0px;
        overflow: hidden;
        transition: all 0.3s ease;
    }

    .mega-box .content {
        box-shadow: none;
        flex-direction: column;
        padding: 0;
    }


}

.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;
}


@media only screen and (max-width:500px) {
    .content h3 {
        display: none;
    }

    .nav-links li label {
        margin-bottom: 0;
    }

    .nav-links .mobile-item {
        line-height: 2.6rem;
        display: block;
        color: #000;
        font-size: 1.3rem;
        font-weight: 600;
        padding: 0;
        cursor: pointer;
        border-radius: 5px;
        transition: all 0.3s ease;
    }

    .nav-links li a {
        font-size: 1.3rem;
        font-weight: 600;
        line-height: 2.6rem;
        padding: 0px;
        display: block;
    }

    .companyprofile {
        display: none;
    }

    .navbar_list_img {
        display: none;
    }

   

    .mega-box .col-lg-3,
    .mega-box .col-md-6,
    .mega-box .col-sm-6,
    .mega-box .col-xs-12 {
        padding: 0 0px 0px 10px;
    }

    .mega_menu_list .list_item {
        border: none;
        padding: 0;
    }

    .social_icon {
        margin: 1.2rem 0;
    }

    .footer_section {
        padding: 2rem 0 1rem 0 !important;
    }

    .mega-box .container {
        padding: 0;
    }
}