* {
    margin: 0;
    padding: 0;
    font-family: "Ovo";
}

.header {
    min-height: 25vh;
    width: 100%;
    background-position: center;
    background-size: cover;
    position:relative;
}
nav{
    display: flex;
    padding: 1% 5%;
    justify-content: space-between;
    background-color: #111;
    
}
.nav-links{
    flex: 1;
    text-align: center;
}
.nav-links ul li{
    list-style: none;
    display: inline-block;
    padding: 12px 20px;
    position:relative;
}
.nav-links ul li a{
    color: white;
    text-decoration: none;
    font-size: 18px;
    letter-spacing:2.5px;
}
.nav-links ul li::after{
    content: '';
    width: 0%;
    height: 2px;
    background: #00daf3;
    display: block;
    margin: auto;
    transition: 0.5s;
}
.nav-links ul li:hover::after{
    width: 100%;
}
nav .fa-solid{
    display: none;
}

.team-title{
    font-size: 60px;
    text-align: center;
    margin-bottom: 10%;
}
.team-body{
    display: flex;
    justify-content: center;
    align-items: center;
}
.team-double{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 225vh;
    margin-bottom: 30%;
    width: 75%;
}
.team-row{
    margin: 50px auto;               
    width: 100%;               
    display: flex;
    justify-content: space-evenly;  
    gap: 8%;        
    flex-wrap: wrap;
}

.team-col{
    width: 300px;
}

.team-col img{
    width: 240px;
    height: 240px;
    border-radius: 50%;
    margin: 10%;
    object-fit: cover;
    object-position:80% 31%;
}
.team-col h1{
    font-size: 26px;
    margin: 10px;
    text-align: center;
    margin-bottom: 35px;
    font-family: "Libre Baskerville";
}
.team-col h3{
    font-size: 18px;
    margin: 10px;
    text-align: center;
    text-transform: uppercase;

}
.team-col p{
    font-size: 18px;
    margin: 10px;
    text-align: justify;
    line-height: 1.5;
    color: rgba(0, 0, 0, 0.7);

}







html{
    height: 100%;
    overflow-x: hidden;
}
body{
    position: relative;
    margin: 0;
    min-height: 100%;
    padding-bottom: 5rem;
    
}
/*- FOOTER-*/

footer{
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
    right: 0;
    /* background: linear-gradient(to top, #A64153, #04C4D9); */
    background: black;
    padding: 50px 0 30px;
    font-size: 14px;
    
}
.socialIcons{
    display: flex;
    justify-content: center;
    align-items: flex-start;
}
.socialIcons a{
    text-decoration: none;
    padding: 10px;
    background-color: white;
    margin: 10px;
    border-radius: 50%;
    transition: all 0.5s ease;
}
.socialIcons a i{
    font-size: 20px;
    color: black;
}
.socialIcons a:hover{
    background-color: #111;
    transform: translateY(-10px);
    transition: 0.5s;
}
.socialIcons a:hover i{
    color: white;
    transition: 0.5s;
}
.footerNav{
    margin: 30px 0;
    transition: all .5s ease;
    
}
.footerNav ul{
    display: flex;
    justify-content: center;
}
.footerNav ul li a{
    color: white;
    margin: 20px;
    text-decoration: none;
    font-size: 1.5em;
    opacity: 0.5;
    transition: .5s;
    font-family: "Ovo", serif;
    
}
.footerNav ul li a:hover{
    opacity: 1;
}
.footerText{
    background: black;
    text-align: center;
    padding: 20px;
}
.footerText p{
    color: white;
    font-family: "Ovo", serif;
}
.designer{
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    margin: 0 5px;
    font-family: "Ovo", serif;
}
.footerText p a{
    color: #0099aa;
    font-family: "Ovo", serif;
    text-decoration: none;
    letter-spacing: 1px;
    opacity: 0.8;
    margin: 0 5px;
    transition: .5s ease;
}
.footerText p a:hover{
    color: #00daf3;

}