@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@800;900&display=swap');


*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    background-color: #2b2823;
}


/* navbar  */

nav{
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    display: flex;
    justify-content: space-between;
    padding: 60px 100px;

}

.logo>img{
    height: 45px;
}

.nav-list{
    list-style: none;
    display: flex;
    align-items: center;
    gap: 50px;
}

.nav-list>li>a{

    font-size: 24px;
    text-decoration: none;
    color: #8a8276;
}

.nav-btn{
    font-size: 24px;
    color: #a18f37;
    border:2px solid #a18f37;
    background: transparent;
    padding: 15px 30px;
    border-radius: 10px;
    cursor: pointer;
}


/* Hero section  */

.hero-section{

}

.hero-header{
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
    padding: 0 100px;
}

.hero-header>h1{
    text-align: justify;
    font-family: 'Montserrat', sans-serif;
    color: #ffffff;
    text-align: justify;
    font-size:4.8rem;
    width: 60vw;
}

.hero-header>p{
    line-height: 34px;
    padding: 0 20px;
    padding-top: 30px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 23px;
    color: #c8bfb1;
    width: 520px;
}


.hero-img{
    margin-top: 90px;
    background-image: url('../assets/pexels-ekaterina-bolovtsova-6077326.jpg');
    height: 600px;
    background-size: cover;
    background-position: center;
}


.hero-bottom{
    display: flex;
    justify-content: flex-end;
}

.left-btn,.right-btn{
    height: 120px;
    width: 130px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.left-btn{
    background-color: #39362c;
    color: #a18f37;
    
}

.left-btn>i{
    font-size: 25px;
    border: 2px solid #a18f37;
    padding: 20px;
    border-radius: 50%;
}

.right-btn{
    background-color: #a18f37;
    color: #ffffff;
}

.right-btn>i{
    font-size: 25px;

    border: 2px solid #ffffff;
    padding: 20px;
    border-radius: 50%;
}



