@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap" );

*{
    font-family: 'poppins', sans-serif;
    text-decoration: none;
    border: none;
    outline: none;
    scroll-behavior: smooth;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html{

    overflow-x: hidden;
}

.header{
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2rem 9%;
    background:#0E2C44;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    height: inherit;
    color: #fff;
    
    
}

span{
    color: darkcyan;
}

.header::before{
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: #0E2C44;
    animation: showRight 2s ease forwards;
    animation-delay: .3s;
}

.logo{
    text-align: justify;
    position: relative;
    font-size: 2.5rem;
    color:#fff;
    text-decoration: none;
    font-weight: 600;
}

.logo::before{
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: #0E2C44;
    animation: showRight 1s ease forwards;
    animation-delay: .4s;
}

.logo a{
    font-size: small;
}

.home{
    background-color: #081B29;
}

.home::before{
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: #081B29;
    animation: showRight 1s ease forwards;
    animation-delay: 2s;
}



.content{
    padding-left: 5rem;
    padding: 50px;
    text-decoration: none;
    display: flex;
    gap: 3rem;
    font-weight: bold;
    top: auto;
    list-style: none;
    color: darkcyan;

}

.content-list {
    width: 100%;
}

.test {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    width: 100%;
    padding: 10px;
}

.content span{
    color: #fff;
    -webkit-text-stroke: .7px darkcyan;
}

.content-list img{
    border: solid darkcyan 2px;
}

hr{
    padding: solid solid darkcyan;
}


.footer{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 2rem 9%;
    background: #0E2C44;
}

.footer-text p{
    font-size: 1rem;
    color: #fff;
}

.footer-iconTop a{
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: .8rem;
    background: darkcyan;
    border: .2rem solid darkcyan;
    border-radius: .6rem;
    text-decoration: none;
    z-index: 1;
    overflow: hidden;
}

.footer-iconTop a::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #0E2C44;
    z-index: -1;
    transition: .5s;
}

.footer-iconTop a:hover:before{
    width: 100%;
}

.footer-iconTop a i{
    font-size: 2.4rem;
    color: #081B29;
    transition: .5s;
}

@keyframes showRight {
    100%{
        width: 0;
    }
}

@keyframes manipActiveHover{
    100%{
        pointer-events: auto;
    }
}
