/* header design */
a{
    text-decoration: none;
}
.header-section{
    padding: 1rem 0;
    background: linear-gradient(108deg, #EAFBF5 0%, #EDE5FC 100%);
    align-items: center;
}
.header-section .logo-wrap {
    margin: auto;
}
.header-section .nav-menu-wrap{
    margin: auto;
}
.header-section .nav-menu{
    list-style-type: none;
    display: flex;
    align-items: center;
    margin: auto;
    justify-content: center;
}
.header-section .nav-menu li{
    margin: 1rem;
    padding: 2px 10px;
}
.header-section .nav-menu li a, .item-menu li a{
    color: #222;
    font-family: Rubik;
    font-size: 17px;
    font-style: normal;
    font-weight: 600;
    text-transform: capitalize;
}
.header-section .nav-menu li.active{
    border-bottom: 3px solid var(--orange);
}
.header-section .nav-menu li.active a{
    color: var(--orange);
}
.header-section .nav-menu li:hover a{
    color: var(--orange);
}
.header-section .btn-container {
    display: flex;
    justify-content: end;
    gap: 1rem;
}
.header-section .header-btn.dark{
    background-color: #0f2239;
    border-color: #0f2239;
}
.header-section .header-btn.dark:hover {
    border: 2px solid #0f2239;
    background: transparent;
    color: #0f2239;
}
/* mobile header */
.mobile-header{
    display: flex;
    align-items: center;
    margin: auto;
    justify-content: space-between;
}
.item-menu{
    list-style-type: none;
    padding-left: 0.5rem;
}
.item-menu li{
    margin: 1rem 0;
}


.nav-action-mobile{
    display: flex;
    gap: 10px;
    align-items: center;
}







/* footer design */
.footer-section{
    background-color: #12265A;
    padding: 4rem 0;
    color: #B7C3E2;
   
}
.footer-section .footer-about-container p{
    margin-top: 1rem;
    margin-right: 1rem;
    color: #B7C3E2;
    font-family: Rubik;
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: .2px;
}
.footer-section .footer-title{
    margin: 1rem 0;
    color: #FFF;
    font-family: Lalezar;
    font-size: 24px;
    font-weight: 400;
    line-height: 28.8px;
}
.footer-section .footer-navigation{
    list-style-type: none;
    padding-left:0;
}
.footer-section .footer-navigation li a{
    text-decoration: none;
    color: #B7C3E2;
    font-family: Rubik;
    font-size: 16px;
    font-weight: 400;
    line-height: 35px;
}
.footer-section .footer-navigation li a:hover{
    color: #f2f4f8;
}
.footer-section .social-icon-container a{
    margin-right: 10px;
}
.footer-section .social-icon-container a img{
    border: 1px solid transparent;
    border-radius: 50%;
}
.footer-section .social-icon-container a img:hover{
    border: 1px solid white;
    border-radius: 50%;
}

.copyright-section {
    background: #0A183D;
    color: var(--white);
    padding: 1rem 0;
    text-align: center;
}
.copyright-section p{
    margin-bottom: 0;
}
.copyright-section a{
    color: var(--white);
    font-weight: 500;
}





.overlay {
    width: 0%;
    height: 100%;
    position: fixed;
    z-index: 5;
    top: 0;
    left: 0;
    overflow-y: hidden;
    transition: 0.5s;
    /* background-color: var(--heading-black); */
    background: linear-gradient(108deg, #c9d8d3 0%, #c0b9cc 100%);
}

.overlay-content {
    position: relative;
    padding: 2rem;
    /* top: 25%; */
    width: 100%;
    /* margin-top: 10px; */
}

.overlay .closebtn {
    position: absolute;
    z-index: 3;
    top: 10;
    right: 1rem;
    text-decoration: none;
    font-size: 40px;
    color: var(--heading-black)
}


/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
    .head-for-mobile{
        display: none;
    }
    .head-for-desktop{
        display: block;
    }
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .head-for-mobile{
        display: none;
    }
    .head-for-desktop{
        display: block;
    }
    .header-section .nav-menu li {
        padding: 0;
    }
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) and (max-width: 992px) {
    .head-for-mobile{
        display: block;
    }
    .head-for-desktop{
        display: none;
    }
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) and (max-width: 768px) {
    .head-for-mobile{
        display: block;
    }
    .head-for-desktop{
        display: none;
    }
}

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
    .head-for-mobile{
        display: block;
    }
    .head-for-desktop{
        display: none;
    }
    .footer-section .social-icon-container a {
        margin-right: auto;
    }
    .mobile-header a img{
        max-width: 175px;
    }
    .header-section .header-btn.dark{
        display: none;
    }

}