/* Font Family */
@font-face {
    font-family: gilroy;
    src: url(/materials/Gilroy-Regular.ttf);
}

@font-face {
    font-family: gilroy-bold;
    src: url(/materials/Gilroy-Bold.ttf);
}



*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: gilroy;
    background-color:#FFFBF2;
}

html,body{
    width: 100%;
    height: 100%;
}

/* wrapper div */

#main{
    height: 100%;
    width: 100%;
    position: relative;
}

/* Navigation bar */

.nav{
    height:60px;
    width: 100%;
    border-bottom: 2px solid #dadada;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5vw;
}

/* nav-right */
.nav-part2{
    display: flex;
    align-items: center;
    gap: 3vw;
}

.nav h4{
    font-size: 1.1vw;
}

.nav button{
    font-size: 1vw;
    font-weight: 700;
    padding: 0.7vw 1.4vw;
    background-color:#F6CF66;
    color:white;
    border: none;
    border-radius: 5px;
}
.nav i{
    font-size: 1.6vw;
    font-weight: 800;
    display: none;
}
/* logo */
.nav h2{
    font-size: 2vw;
    font-weight: 700;
}

.nav span{
    font-weight: 550;
}

/* Content */
.content{
    height: calc(100% - 100px);
    width: 100%;
    display: flex;
    position: relative;
}

.left{
    height: 100%;
    width: 55%;
    padding: 4vw 4vw;
}

.left h1{
font-weight: 700;
font-size: 4vw;
font-family: gilroy-bold;
line-height: 4.4vw;
}

.left h1 span{
    color: #F6CF66;
}

.left p{
    font-size: 1.2vw;
    font-weight: 600;
    color: #666;
    width: 80%;
    margin-top: 1.2vw;
    margin-bottom: 3vw;
}

.content button{
    font-size: 1.2vw;
    font-weight: 700;
    padding: 1.1vw 2.1vw;
    background-color:#F6CF66;
    color:white;
    border: none;
    border-radius: 5px;
}

.right{
    height: 100%;
    width: 45%;
}

.right img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}
/* responsive */
@media (max-width:600px) {
    .nav{   
        padding: 0 5vw;
        height: 60px;
    }
    .nav h2{
        font-size: 4vw;
    }

    .nav h4{
        font-size: 4.5vw;
        display: none;

    }

    .nav i{
        display: block;
        font-size: 5vw;
    }
    .nav button{
        padding: 1.1vw 3vw;
        display: none;
    }

    .content button{
        padding: 3vw 6vw;
        font-size: 3.5vw;
        font-weight: 600;
        border-radius: 3px;
    }
    .content{
        height: calc(100% - 60px);
        flex-direction: column;
    }

    .left{
        width: 100%;
        height: 45%;
        padding: 4vw 6vw;
    }

    .right{
        width: 100%;
        height: 55%;
    }

    .left h1{
        font-size: 10vw;
        line-height: 11vw;
    }

    .left p{
        font-size: 3vw;
        width: 90%;
        margin-top: 5vw;
        margin-bottom: 6vw;
    }
}