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

html{
    scroll-behavior: smooth;
}

li{
    list-style: none;
}

a{
    text-decoration: none;
    color: inherit;
}

header{
    max-width: max-content;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    min-width: 100vw;
    margin-bottom: 50px;
    /* top: 0; */
    /* border: solid red 1px; */
}

/* HEADER */

.header-top{
    display: none;
    /* margin-bottom: 40px; */
}

/* .i{
    color: #0780ae;
    font-style: normal;
    font-weight: bold;
} */

/* .logo img{
    position: relative;
    height: 35%;
    width: 35%;
    border-radius: 50%;
} */

.menu-profile-pic{
    width: 70px;
    height: 70px;
    cursor: pointer;
    border-radius: 50%;
    object-fit: cover;
}

.logo{
    font-family: 'Staatliches';
    text-transform: uppercase;
    font-weight: 100;
    font-size: 60pt;
    color: #0780ae;
    -webkit-animation: fadeInLeft 1s both;
    -o-animation: fadeInLeft 1s both;
    -moz-animation: fadeInLeft 1s both;
    animation: fadeInLeft 1s both;
}


.header-bottom{
    position: absolute;
    z-index: 5;
    width: 100%;
    padding: 15px;
    top: 0;
    left: 0;
}

.container{
    padding-inline: 2%;
}

.header-bottom.active{
    top: -205px;
    position: fixed;
    background-color: #f4fffd;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    -webkit-animation: 1s fadeInTop both;
    -o-animation: 1s fadeInTop both;
    -moz-animation: 1s fadeInTop both;
    animation: 1s fadeInTop both;
}


@keyframes slideIn{
  0% { transform: translateY(0); }
  100% { transform: translateY(100%); }
}


.header-bottom > .container{
    -webkit-animation: fadeInTop 1s both;
    -o-animation: fadeInTop 1s both;
    -moz-animation: fadeInTop 1s both;
    animation: fadeInTop 1s both;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    
}

.nav-toggle{
    /* color: black; */
    font-size: 35px;
    /* border: solid 2px black; */
    box-shadow: 0 0 8px rgba(0,0,0.1);
    border-radius: 10%;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border: none;
    
}

.nav-toggle i{
    color: #0780ae;
}

.menu-hidden{
    display: block;
}

.fa-user{
    padding: 18px 20px;
    border-radius: 50%;
    border: solid black 1px;
    font-size: 15pt;
    color: #000;
}

.submenu{
    border: solid black 1px;
    border-radius: 5px;
    left: 0;
    opacity: 0;
    position: absolute;
    visibility: hidden;
    display: none;
    margin-left: 88%;
    top: 35px;
    z-index: 1;
}

.submenu-li:hover ul.submenu{
    visibility: visible;
    display: block;
    opacity: 1;
    top: 85px;
    animation: fadeInTop 0.7s;
}

.submenu li{
    float: none;
    width: 100%;
}
.submenu li:hover{
    padding-bottom: 15px;
}
/* 
.nav-toggle.active .fa-bars, .nav-toggle .fa-xmark{
    display: none;
} 

.nav-toggle .fa-bars, .nav-toggle.active .fa-xmark{
    display: block;
} */

.navbar{
    position: absolute;
    top: 102%;
    left: 25px;
    right: 25px;
    background-color: #f4fffd;
    max-height: max-content;
    padding-inline: 0;
    visibility: hidden;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border-radius: 10px;
    border-block-start: solid black 1px;
    z-index: 1000;
}

.navbar.active{
    visibility: visible;
    max-height: max-content;
    -webkit-animation: fadeInTop 1s both;
    -o-animation: fadeInTop 1s both;
    -moz-animation: fadeInTop 1s both;
    animation: fadeInTop 1s both;
    
    /* transition: ease-in-out 0.2s; */
}

.nav-list li{
    /* border-block-start: solid 1px black; */
    border-block-start: solid rgb(80, 80, 83) 1px;
    font-weight: 600;
}

.nav-list li:hover{
    color: #0780ae;
    border-bottom: solid #48adce 1px;
    transition: 0.3s ease-in-out;
}


.nav-list li .fa-user:hover{
    color: #0780ae;
    border: solid #0780ae 1px;
    transition: ease-in-out 0.3s;
}

.nav-link{
    color: #003044;
    text-transform: uppercase;
    font-weight: bolder;
    font-size: 14pt;
    padding: 15px;
}

#fa-xmark{
    display: none;
}

.disabled-icon{
    /* visibility: hidden; */
    /* -webkit-animation: fadeInLeft 1s both;
    -o-animation: fadeInLeft 1s both;
    -moz-animation: fadeInLeft 1s both;
    animation: fadeInLeft 1s both; */
}

.active{
    visibility: visible;
    color: black;
    -webkit-animation: 0.5s fadeInTop both;
    -o-animation: 0.5s fadeInTop both;
    -moz-animation: 0.5s fadeInTop both;
    animation: 0.5s fadeInTop both;
}

.ipoe-logo{
    width: 100%;
    display: flex;
    flex-direction: row;
    margin-top: 40px;
    /* flex-wrap: wrap; */
}

.width-100{
    max-width: 100%;
}

.head img{
    padding-right: 24%;
}

.content{
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    float: left;
    text-align: left;

}

@media (min-width: 920px) {
    .submenu{
        margin-left: 80vw;
    }
}

@media (min-width: 1260px) {
    .submenu{
        margin-left: 82vw;
    }
}

@media (min-width: 1450px) {
    .submenu{
        margin-left: 84vw;
    }
}


@media (min-width: 920px) {

    .header-top{
        -webkit-animation: fadeInLeft 1s both;
        -o-animation: fadeInLeft 1s both;
        -moz-animation: fadeInLeft 1s both;
        animation: fadeInLeft 1s both;
        display: block;
        background-color: #001547;
        color: #d8d8d8;
        padding-block: 20px;
        min-width: 100vw;
        /* top: 0; */
        /* width: max-content; */
    }

    .menu-hidden{
        display: none;
    }

    .header-top :is(.container, .social-media), .contact-topic, .contact{
        display: flex;
        align-items: center;
        font-size: 1.2rem;
    }

    .header-top .container{
        justify-content: space-between;
    }

    .contact-topic{
        gap: 5px;
    }

    .contact{
        gap: 20px;
    }

    .contact a:hover{
        color: #fff;
        transition: ease-in-out 0.2s;
    }

    .contact-topic span{
        color:#4584FF;
        font-size: 1.5rem;
    }

    .social-media{
        justify-content: space-around;
        width: 6%;
        margin-right: 40px;
    }

    .social-media i{
        font-size: 1.5rem;
        color: #fff;
    }

    .social-media i:hover{
        color:#4584FF;
        transition: ease-in-out 0.2s;
    }

    .header-bottom{
        top: 60px;
        padding-block: 20px;
    }

    .nav-toggle{
        display: none;
    }

    .navbar, .navbar.active{
        all: unset;
        margin-inline-start: auto;
    }

    .nav-list{
        display: flex;
        align-items: center;
    }

    .nav-list > li{
        border-block-start: none;
    }

    .navbar, .nav-link, .nav-list{
        font-family: 'Anton', sans-serif;
    }
}

@media (max-width: 920px) {
    .submenu{
       display: none;
       visibility: hidden;
    }

    .submenu-hidden{
        display: none;
    }

    .fa-user{
        display: none;
        visibility: hidden;
    }
}

@media (max-width: 850px) {
    .ipoe-logo{
        flex-wrap: wrap;
    }

    .head img{
        padding-right: 0;
        max-width: 90%;
    }
}
@media (max-width: 300px){
    .logo{
        font-size: 45pt;

    }
}

@-webkit-keyframes fadeInLeft{
    0%{
        opacity: 0;
        -webkit-transform: translateX(-50px);
    }
    100%{
        opacity: 1;
        -webkit-transform: translateX(0);
    }
}

@-o-keyframes fadeInLeft{
    0%{
        opacity: 0;
        -o-transform: translateX(-50px);
    }
    100%{
        opacity: 1;
        -o-transform: translateX(0);
    }
}

@-moz-keyframes fadeInLeft{
    0%{
        opacity: 0;
        -moz-transform: translateX(-50px);
    }
    100%{
        opacity: 1;
        -moz-transform: translateX(0);
    }
}

@keyframes fadeInLeft{
    0%{
        opacity: 0;
        transform: translateX(-50px);
    }
    100%{
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInTop{
    0%{
        opacity: 0;
        transform: translateY(-50px);
    }
    100%{
        opacity: 1;
        transform: translateY(0);
    }
}

@-moz-keyframes fadeInTop{
    0%{
        opacity: 0;
        -moz-transform: translateY(-50px);
    }
    100%{
        opacity: 1;
        -moz-transform: translateY(0);
    }
}

@-webkit-keyframes fadeInTop{
    0%{
        opacity: 0;
        -webkit-transform: translateY(-50px);
    }
    100%{
        opacity: 1;
        -webkit-transform: translateY(0);
    }
}

@-o-keyframes fadeInTop{
    0%{
        opacity: 0;
        -o-transform: translateY(-50px);
    }
    100%{
        opacity: 1;
        -o-transform: translateY(0);
    }
}


