@import url('https://fonts.googleapis.com/css2?family=Hanken+Grotesk:wght@400;600;800&amp;family=Open+Sans:wght@500;700&amp;family=Poppins:wght@300;400;500;600;800&amp;display=swap');
/* ? FONTS */
/* font-family: 'Hanken Grotesk', sans-serif;
font-family: 'Poppins', sans-serif;
font-family: 'Open Sans', sans-serif */

/* ? DECLARING VARIABLES AND RESETING DEFAULTS */
:root{
    --main-font: #ffffff;
    --font: #000;
    --main-bg: #001d3d;
    --secondary-bg: #003566;
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Hanken Grotesk', sans-serif;
}
/* ? HEADER STYLES */
header{
    display: flex;
    align-items: center;
    padding: 1.5em 2em 1.5em 2em;
    /* background-color: var(--main-bg); */
    background-color: #0096D6;
    /* outline: 2px solid #0096D6; */
    justify-content: space-between;
    position: relative;
}
.heading{
    font-size: 1.9em;
    color: var(--main-font);
    margin: 0;
}
nav > ul{
    display: flex;
    list-style: none;
    gap: 1.5em;
    margin-bottom: 0;
}
.nav-item a,
a:not([href]):not([class]),
.nav-item a:not([href]):not([class]):hover{
    font-size: 1.2em;
    color: var(--main-font);
}
#arrow{
    filter: invert(1);
}
.dropdown{
    position: absolute;
    top: 90%;
    background-color: var(--main-bg);
    border: 1px solid gray;
    border-radius: 5px;
    width: 20em;
    z-index: 99;
}
.hidden{
    display: none;
}
.rotate-arr{
    rotate: 270deg;
}
.dropdown > ul{
    display: flex;
    flex-direction: column;
    padding: 0;

}
.dropdown-item{
    padding: 0.5em 3em 0.5em 1em;
    background-color: var(--main-bg);
    
}
.dropdown-item:hover{
    background-color: var(--secondary-bg);
}
.hamburger{
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 2rem;
    position: absolute;
    top: 2.2em;
    right: 2em;
}
.ham{
    background-color: var(--main-font);
    height: 3px;
    width: 100%;
}


/* ? FOOTER STYLES */
footer{
    background-color: var(--main-bg);
    color: var(--main-font);
    padding: 2em 4em;
}
footer a:hover{
    font-weight: 700;
}
.privacy-policy{
    width: 25%;
}
.disclaimer{
    width: 50%;
}
footer a, footer p{
    font-size: 1.2em;
}

.dot{
    width: 7px;
    height: 7px;
    background: #001d3d;
    border-radius: 50%;
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
    margin-left: 10px;
}
/* ? RESPONSIVE STYLES (MEDIA QUERIES) */
@media only screen and (max-width:1011px){
    header{
        flex-direction: column;
        align-items: start;
    }
    .hamburger{
        display: flex;
    }
    .main-ul{
        flex-direction: column;
        display: flex;
        margin-top: 1em;
    }
    .dropdown{
        position: relative;
        margin-top: 1em;
        margin-left: 1em;
    }
    .m-hidden{
        display: none;
    }
}
@media only screen and (max-width:825px){
    footer{
        padding: 2em;
    }
    
    .second{
        flex-direction: column;
        align-items: center;
        gap: 2em;
    }
    .recent-reviews, .privacy-policy, .footer-ul{
        align-items: center;
        width: 100%;
    }
    .heading{
        font-size: 1.5em;
    }
}
@media only screen and (max-width:576px){
    footer{
        padding: 2em 1.5em;
    }
    .disclaimer{
        width: 100%;
    }
}

.sticky-cont{
    position: sticky;
    top: 0;
    z-index: 10;
}

.bg-modal-overlay{
    background: rgba(0,0,0,0.7);
    position: fixed;
    min-height: 100vh;
    min-width: 100vw;
    top: 0;
    left: 0;
}

.flex-nowrap{
    flex-wrap: nowrap!important;
}
.whitespace-nowrap{
    white-space: nowrap!important;
}


.smart-cont{
    background: url('images/smart-bg-2.webp') no-repeat center center/cover;
}
.smart-hero-bg{
    background: url('images/p_hero_bg.png') no-repeat center center/cover;
    padding: 10px 0;
}

.features-sec{
    background: #F2FCFF;
}

.svg-feature-ico{
    width: 70px;
    height: 70px;
    fill:#1A7BA4
}

.bg-blue{
background: #1A7BA4;
}



.link-btn {
    color: #003566!important;
}
.link-btn:hover{
    color: #01182e;
    text-decoration: underline;
}