@import url('https://fonts.cdnfonts.com/css/gilroy');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: #fff;
    font-family: 'Gilroy', sans-serif;
   
}

html,body{
    height: 100%;
    width:100%;
}


#page1{
    background-color: #000;
    width: 100%;
    height: 100%;
    padding: 0 40px;
}

#nav {
    height: 70px;
    width: 100%;
    border-bottom: 2px solid #fafafa;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-transform: uppercase;
}

#nav-2{
    display: flex;
    align-items: center;
    gap:40px;
}

#nav h3,h4{
    font-weight: 500;
}

#container{
    width: 100%;
    height: 80% ;
    /* background-color: #a81212; */
    display: flex;
    padding: 10px 0;
}

#container #left{
    width: 50%;
    height: 100%;
    /* background-color: #d2c317; */
    padding: 30px;
}

#container #left h1{
    font-size: 90px;
    padding: 10px;
    font-weight: 500;
    line-height: 120px;
    text-transform: uppercase;

}

#left h1 span img {
    height: 70px;
    width: 70px;
    border-radius: 50%;
    overflow: hidden;
    margin-left: -50px  ;
    object-fit: cover;
    border: 2px solid #fff;

}

#left h1:nth-last-child(1){
   margin-left: 50px;
}



#container #right{
    width: 50%;
    height: 100%;
    /* background-color: #17a0d2; */
}

#right img{
    height:500px;
    /* width: 80%; */
    object-fit: contain;
    padding: 50px;

    border-radius: 70px;


}


#page2{
    background-color: #000;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    overflow: hidden;
}

.box{
    height: 250px;
    width: 300px;
    border: 1px solid white;
    border-radius: 15px;
    text-align: center;
    padding: 15px 10px ;
}

.box h1{
    margin-bottom: 30px;
    font-weight: 300;
    font-size: 30px;
    text-transform: uppercase;
}
.box p{
    font-size:15px;
    font-weight: lighter;
    text-transform: uppercase;
    color: #dadada;
}