@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800&display=swap');

*{ 
    padding-left: 2%;
    padding-right: 2%;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}


header{
    width: 90%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo{
    color: #fff;
    text-decoration: none;
    font-size: 35px;
    font-weight: 700;
}


nav ul{
    list-style: none;
    display: flex;
    gap: 30px;
}

nav ul li a{
    font-size: 15px;
    font-weight: bolder;
    color: #e6b401;
    text-decoration: none;
    transition: 0.5s;
}

nav ul li a:hover{
    color: #FDE800;
} 

.background{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 100vh;
    background-image: url("/edited_about.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
    filter: blur(15px);
}

.content{
    color: #fff;
    margin-top: 80px;
    overflow: hidden;
    line-height: 1.5;
    text-align: center;
}


.animated{
    font-size: 55px;
    font-weight: bolder;
    margin-bottom: 40px;
    color: #e6b401;
}

.animated span{
    position: relative;
}

.animated span::before{
    content: "Empower";
    color: #ffffff;
    animation: words 20s infinite;
}

.animated span::after{
    content: "";
    position: absolute;
    width: calc(100% + 8px);
    height: 100%;
    background-color: transparent;
    border-left: 1px solid transparent;
    right: -8px;
    animation: cursor .8s infinite, typing 20s steps(14) infinite;
}

@keyframes cursor{
    to{
        border-left: 2px solid transparent;
    }
}

@keyframes words{
    0%,20%{
        content: "Empower";
    }
    21%,40%{
        content: "Enrich";
    }
    41%,60%{
        content: "Elevate";
    }
    61%,80%{
        content: "Enhance";
    }
    81%,100%{
        content: "Foster";
    }
}

@keyframes typing{
    10%,15%,30%,35%,50%,55%,70%,75%,90%,95%{
        width: 0;
    }
    5%,20%,25%,40%,45%,60%,65%,80%,85%{
        width: calc(100% + 8px);
    }
}



footer{
    margin: 0;
    padding: 100px 0;
    box-sizing: border-box;
    background-color: transparent;
} 

.footer-col{
    width: 25%;
    padding: 0 15px;
}

.footer-col ul{
    margin-left: -38px;
}

.footer-col h4{
    font-size: 20px;
    color: #ffffff;
    text-transform: capitalize;
    margin-bottom: 35px;
    font-weight: 500;
    position: relative;
}

.footer-col h4::before{
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    background-color: #ffc600;
    height: 3px;
    box-sizing: border-box;
    width: 75px;
}

.footer-col ul li:not(:last-child){
    margin-bottom: 10px;
}

.footer-col ul li a{
    font-size: 20px;
    text-transform: capitalize;
    text-decoration: none;
    font-weight: 300;
    color: #575757;
    display: block;
    transition: all 0.3s ease;
}

.footer-col ul li a:hover{
    color: #ffcd19;
    padding-left: 8px;
}

.footer-col .social-icons a{
    background-color: #ffc600;
    text-align: center;
    line-height: 40px;
    border-radius: 25%;
    color: #ffffff;
}

.container{
    max-width: 1170px;
    margin: auto;
}

#row{
    display: flex;
    flex-wrap: wrap;
}


ul{
    list-style: none;
}

.footer-col .social-icons a:hover{
    color: #f50d0d;
    background-color: #ffffff;
} 


@media(max-width: 767px){
    .footer-col{
        width: 50%;
        margin-bottom: 30px;
    }
}

@media(max-width: 500px){
    .footer-col{
        width: 100%;
    }
}
.number{
    font-size: 16px;
    color: #575757;
}

