* {
    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: #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: #fff;
    position:absolute; 
    top: 60%; 
    left: 50%;
    transform: translate(-50%, -50%) ;
    text-align: center;
}
.text-box h1{
    font-size: 60px;
}
.text-box p{
    margin: 10px 0 40px; 
    font-size: 14px;
    color: white;
}
.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;
} */

.contact-container{
    height: 135vh;
    display: flex;
    align-items: start;
    justify-content: space-evenly;
}
.contact-form{
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 20px;
    width: 40%;
    margin-right: -50px;
}
.contact-form button{
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    color: white;
    width: 75%;
    text-align: center;
    /* -webkit-background-clip: text;
    -webkit-text-fill-color: white; */
    /* background: linear-gradient(#00daf3, #A64153); */
    background: repeating-linear-gradient(to right, #111 0%, #353535 33%, #4f4f4f 66%, #111 100%);
    cursor: pointer;
    background-size: 200% auto;
    /* animation: animate-gradient 5s linear infinite; */
    animation: gradient 5s infinite;
    animation-fill-mode: forwards;
    animation-timing-function: linear;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: "Poppins";
    transition: 0.3s all ease;
    transition-delay: 0.1s;
}

.contact-form button:hover{
    transform: translateY(-10px);
}

.contact-form button:active{
    transform: scale(0.9);
}

@keyframes gradient { 
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: -200% 0;
    }
}

.contact-info{
    width: 40%;
    font-family: "Ovo";
}
.contact-text{
    font-weight: 600;
    font-size: 40px;
    letter-spacing: 4px;
    margin: 30px 0;
}
.contact-text hr{
    border: none;
    width: 100%;
    height: 5px;
    background-color: #111;
    border-radius: 10px;
    margin-bottom: 10px;
    text-align: center;

}
.contact-text span{
    color: #00daf3;
    padding: 0px 16px;
}
.contact-info h2{
    font-weight: 400;
    font-family: "Poppins";
    font-size: 35px;
    margin: 30px 0;
    letter-spacing: 1.5px;
}
.contact-info h3{
    font-weight: 400;
    font-family: "Poppins";
    font-size: 18px;
    margin: 30px 0;
    letter-spacing: 1px;
}
.contact-info p{
    font-size: 12px;
    font-family: "Poppins";
    font-weight: 500;
}
.contact-socials{
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 50px;
}
.contact-socials-bottom{
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 100px 0;
}
.contact-form textarea{
    height: 150px;
    padding-top: 25px;
    resize: vertical;
}
.contact-inputs{
    width: 400px;
    height: 50px;
    border: none;
    outline: none;
    padding-left: 25px;
    font-weight: 500;
    border-bottom: 0.5px solid;
    background-color: white;
    cursor: text;
    vertical-align: middle;
    margin: 10px 0;
    transition: 0.5s all ease;
}
.contact-inputs:focus{
    background-color: rgb(242, 242, 242);
}
.contact-inputs:hover{
    background-color: rgb(242, 242, 242);
}
.checkbox-wrapper{
    display: flex;
    justify-content: space-between;
    align-items: center;
    
}
.checkbox-area{
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    
}
.checkbox-area p{
    font-size: 12px;
    font-weight: 100;
    margin-left: 15px;
    font-family: "Poppins";
    cursor: pointer;
}
.checkbox-area input{
    box-shadow: 1px -1px 5px #00000053;
    border: 3px rgba(0, 0, 0, 0.259) solid;
}
.checkbox-area input:hover{
    border: 1px black solid;
}

@media(max-width: 700px){
    .header {
        min-height: 25vh;
        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;
        z-index: 4;
    }
    .nav-links ul{
        padding: 15px;
    }
}

/*_____________________*/
html{
    height: 100%;
    overflow-x: hidden;
}
body{
    position: relative;
    margin: 0;
    min-height: 100%;
    padding-bottom: 7rem;
}
/*- 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;
    transition: .5s ease;
}
