@font-face {
    font-display: swap; 
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/poppins-v21-latin-regular.woff2') format('woff2');
}
@font-face {
    font-display: swap; 
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    src: url('../fonts/poppins-v21-latin-500.woff2') format('woff2');
}
@font-face {
    font-display: swap; 
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/poppins-v21-latin-700.woff2') format('woff2');
}
@font-face {
    font-display: swap; 
    font-family: 'Preahvihear';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/preahvihear-v29-latin-regular.woff2') format('woff2');
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style-type: none;
    scroll-behavior: smooth;
}
/* :root{

} */
body{
    background-color: black;
    height: 100vh;
    color: white;
    font-family:'Poppins',sans-serif ;
}
.container{
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}
/* Header styles start */
.site-header {
    padding: 10px 0;
}
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between  ;
}
.navbar a img{
    border-radius: 50%;
}
.navbar__list {
    display: flex;
    gap: 42px;
    align-items: center;
}
.navbar__list li a{
    color: white;
    transition: all 0.4s linear ;
}
.navbar__list li a:hover{
    color: navajowhite;
}

/* Header styles end */

/* Hero. section styles start */
.hero-section {
    padding-top: 100px;
}
.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    
}
.me{
    width: 600px;
}
.info h2 {
    font-size: 101px;
    font-family:'Preahvihear',sans-serif ;
    line-height: 120px;
}
@media(max-width:1191px){
    .hero-section{
        padding-top: 70px;
    }
    .hero{
        flex-direction: column;
        text-align: center;
    }
}
@media(max-width:645px){
    .hero-section{
        padding-top: 50px;
    }
    .info h2{
        font-size: 50px;
        line-height: 80px;
    }
    .me{
        width: 300px;
    }
}
/* Hero. section styles end */

/* About section styles start */
.about-section {
    padding: 240px 0 395px ;
    color: white;
}
.about {
    display: flex;
    justify-content: space-between;
    align-items: start;

}
.about__title {
    font-size: 75px;
}
.text {
    max-width: 720px;
}
.text h3{
    font-size: 40px;
    text-transform: capitalize;
    font-weight: 700;
}
.text p{
    font-size:25px;
    opacity: 0.5;
    margin-top: 30px;
}
.text a{
    color: tan;
    display: inline-block;
    margin-top: 80px;
    text-transform: uppercase;
}
@media(max-width:1217px){
    .about{
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}
@media(max-width:548px){
    .about__title {
        font-size: 40px;
        margin-bottom: 20px;
        text-decoration: underline;
    }
    .text h3{
        font-size: 30px;
    }
    .text p{
        font-size: 20px;
    }
}

/* About section styles end */


/* Contact section styles start */
.contact-section {
    padding-bottom: 100px;
}
.contact {
    display: flex;
    align-items: start;
    justify-content: space-between;
}
.left-wrapper h2{
    font-size: 70px;
}
.left-wrapper p{
    font-size: 35px;
    opacity: 60%;
}
.links {
    display: flex;
    align-items: center;
    gap: 30px   ;
}
form{
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    width: 600px;
    height: 600px;
}
input{
    width: 100%;
    padding: 12px 16px;
    border: none;
    outline: none;
}
textarea{
    width: 100%;
    height: 156px;
    resize: none;
    outline: none;
    text-transform: capitalize;
    padding: 20px;
}
button{
    width:  140px;
    padding: 19px 0;
    background-color: #D3E97A;
    border: none;
    border-radius: 64px;
}
@media(max-width:994px){
    .about-section{
        padding: 100px 0 100px;
    }
    .contact{
        flex-direction: column;
        align-items: center;
    }
    form{
        width:80%;
        position: relative;
    }
    form > button{
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        margin: 0 auto;
    }
}
/* @media(max-width:622px){
    form{
        width: 500px;
    }
} */
/* Contact section styles end */