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

.header {
    height: 70vh;
    width: 100%;
    background-color: #fff;
    background-position:center;
    background-size:cover;
    position:relative;

}
nav{
    display: flex;
    padding: 2% 2%;
    justify-content: space-between;
    
}
nav img{
    height: 100px;
}
.nav-links{
    flex: 1;
    text-align: right;
}
.nav-links ul li{
    list-style: none;
    display: inline-block;
    padding: 12px 20px;
    position:relative;
}
.nav-links ul li a{
    color: black;
    text-decoration: none;
    font-size: 18px;
    letter-spacing:2.5px;
}
.nav-links ul li::after{
    content: '';
    width: 0%;
    height: 2px;
    background: #F2B441;
    display: block;
    margin: auto;
    transition: 0.5s;
}
.nav-links ul li:hover::after{
    width: 100%;
}
nav .fa-solid{
    display: none;
}
.text-box{
    width:90%;
    color: #c48000;
    position:absolute; 
    top: 50%; 
    left: 50%;
    transform: translate(-50%, -50%) ;
    text-align: center;
}
.text-box h1{
    font-size: 80px;
    font-family: "Ovo";
    letter-spacing: 5px;
}
/* .hero-btn{
    display: inline-block;
    text-decoration: none;
    color: white;
    border: 1px solid white;
    padding: 12px 34px;
    font-size: 13px;
    background: transparent;
    position: relative;
    cursor: pointer;
    border-radius: 10px;
} */
/* .hero-btn:hover{
    border: 1px solid #F2B441;
    background: #F2B441;
    transition: 1s;
} */



@media(max-width: 700px){
    .header {
        min-height: 60vh;
        width: 100%;
        background-position: center;
        background-size: cover;
        position:relative;
    
    }
}
@media(max-width: 530px){
    .nav-links ul li{
        display: block;
        
    }
    .nav-links{
        position: absolute;
        background: #A64153;
        height: 100vh;
        width: 200px;
        top: 0;
        right: -100%;
        text-align: left;
        z-index: 2;
        transition: 1s;
    }
    nav .fa-solid{
        display: block;
        color: white;
        margin: 10px;
        font-size: 26px;
        cursor: pointer;
        text-decoration: none;
    }
    nav a{
        text-decoration: none;
    }
    .nav-links ul{
        padding: 15px;
    }
}
@media(max-width: 400px){
    .text-box h1{
        font-size: 30px;
    }
}

/* Learn More*/
.first-double{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60vh;
    padding-bottom: 5%;
    padding-top: 50px;
}
.first-wrapper{
    margin: 150px auto;
    width: 70%;
}
#first-img{
    width: 50%;
    height: 300px;
    float: left;
    margin-right: 50px;
    border-radius: 3%;
    object-fit:contain;
}
.first-text h1{
    font-size: 60px;
    font-weight: 600;
    text-align: center;
}
.first-text span{
    color: #A64153;
}
.first-text p{  
    color: rgb(66, 66, 66);
    font-size: 22px;
    font-weight: 300;
    line-height: 1.1;
    padding: 10px;
    text-align:justify;
    margin-bottom: 25px;
    margin-top: 20px;
    font-family: "Ovo";
}
.first-text a{
    display: inline-block;
    text-decoration: none;
    color: white;
    border: 1px solid black;
    padding: 12px 34px;
    font-size: 13px;
    background: black;
    position: relative;
    cursor: pointer;
    border-radius: 30px;
    margin-left: 15%;
    margin-right: 15%;
    transition: all 1s ease;
    
}
.first-text a:hover{
    border: 1px solid #A64153;
    background: #A64153;
    transform: translateY(-10px);
    transition: 1s;
}
.second-double{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60vh;
    padding-bottom: 5%;
    background-color: white;
}
.second-wrapper{
    margin: 100px auto;
    width: 70%;
}
#second-img{
    width: 50%;
    height: 300px;
    float: right;
    margin-left: 50px;
    border-radius: 3%;
    object-fit:contain;
}
.second-text h1{
    font-size: 60px;
    font-weight: 600;
    text-align: center;
}
.second-text span{
    color: #00daf3;
}
.second-text p{  
    color: rgb(66, 66, 66);
    font-size: 18px;
    font-weight: 300;
    line-height: 20px;
    padding: 10px;
    text-align:justify;
    margin-bottom: 25px;
    margin-top: 20px;
}
.second-text a{
    display: inline-block;
    text-decoration: none;
    color: white;
    border: 1px solid black;
    padding: 12px 34px;
    font-size: 13px;
    background: black;
    position: relative;
    cursor: pointer;
    border-radius: 30px;
    margin-left: 15%;
    margin-right: 15%;
    transition: all 1s ease;
    
}
.second-text a:hover{
    border: 1px solid #A64153;
    background: #A64153;
    transform: translateY(-10px);
    transition: 1s;
}
.third-double{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60vh;
    padding-bottom: 5%;
    margin-bottom: 20%;
}
.third-wrapper{
    margin: 150px auto;
    width: 70%;
}
#third-img{
    width: 50%;
    height: 300px;
    float: left;
    margin-right: 50px;
    border-radius: 3%;
    object-fit:contain;
}
.third-text h1{
    font-size: 60px;
    font-weight: 600;
    text-align: center;
}
.third-text #vision{
    color: #F2B441;
}
.third-text p{  
    color: rgb(66, 66, 66);
    font-size: 18px;
    font-weight: 300;
    line-height: 20px;
    padding: 10px;
    text-align:justify;
    margin-bottom: 25px;
    margin-top: 20px;
}
.third-text a{
    display: inline-block;
    text-decoration: none;
    color: white;
    border: 1px solid black;
    padding: 12px 34px;
    font-size: 13px;
    background: black;
    position: relative;
    cursor: pointer;
    border-radius: 30px;
    margin-left: 15%;
    margin-right: 15%;
    transition: all 1s ease;
    
}
.third-text a:hover{
    border: 1px solid #A64153;
    background: #A64153;
    transform: translateY(-10px);
    transition: 1s;
}
/* .img-container-top{
    gap: 10%;
    display: flex;
    justify-content:space-evenly;
    align-items: center;
    max-width: 55%;
    margin: auto;
    margin-bottom: 25%;
}
.img-container-bottom{
    gap: 20%;
    display: flex;
    justify-content:space-evenly;
    align-items: center;
    height: 25vh;
    width: 40%;
    margin: auto;
    margin-bottom: 25%;
}
.img-container-top img{
    width: 110px;
}
.img-container-bottom img{
    width: 110px;
}
.partners-text{
    font-size: 55px;
    color: #0099aa;
    z-index: 3;
    text-align: center;
    padding: 50px;
} */
/*_____________________*/
html{
    height: 100%;
}
body{
    position: relative;
    margin: 0;
    min-height: 100%;
    padding-bottom: 7rem;
    background-color: #fffbe5;
}
/*- 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;

}

  
