@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400&family=Roboto:wght@300&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
nav{
   display: flex;
   align-items: center;
   justify-content: space-between; 
   width: 100%;
   height: 100%;
   padding: 20px 70px;
}
nav h4{
    font-size: 25px;
}
nav ul{
    width: 43%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
nav ul li{
    font-size: 13px;
    font-weight: 600;
    list-style: none;
}
nav button{
    font-size: 20px;
    padding: 0px 10px;
    border: 1px solid black;
    background: none;
    border-radius: 20px;
}
 nav span{
     display: flex;
 }
.home{
    height: 100vh;
    display: flex;
}
.text{
    padding: 72px;
    width: 40%;
}
.text p img{
    width: 25px;
    height: 25px;
}
h1{
    font-size: 70px;
    font-weight: 400;
    border-bottom: 5px solid #000;
}
.dark{
    font-size: 70px;
    font-weight: 900;
}
p{
    margin-top: 20px;
    font-size: 20px;
    
    font-weight: 600;
}
h2{
    display: flex;
}
.text span {
    display: flex;
    justify-content: space-between;
}
.text button{
    font-size: 20px;
    padding: 10px 30px;
    border: 2px solid white;
}
.img{
    padding: 72px;
    width: 60%;
    height: 100%;
}
.img img{
    width: 100%;
}
.light_white_color{
    background-color: #F6F6F6;
}
.hero{
    padding: 20px 70px;
    display: flex;
}
.right{
    padding: 20px;
    border: 1px solid black;
    border-radius: 20px;
    width: 40%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.right h6{
    font-size: 14px;
}
.right span{
    font-size: 12px;
}
.left{
    width: 50%;
    padding: 20px;
    border: 1px solid black;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.left h6{
    font-size: 16px;
}
.left span{
    font-size: 14px;
    font-weight: 600;
}
.extra{
    padding: 5px 10px;
    border: 1px solid black;
    border-radius: 20px;
}
.extra h6{
    writing-mode: vertical-rl;
    text-orientation: upright;
    font-size: 11px;
    font-weight: 1000;
}
.res{
    display: block;
}
@media (max-width:768px) {
    .res{
        display: none;
    }
    .res_mobile{
        display: none;
    }
    nav ul{
        display: none;
    }
    .home{
        flex-direction: column;
    }
    .text{
        width: 100%;
    }
    .hero{
        flex-direction: column;
    }
    .img {
        padding: 15px;
        /* width: 100%;
        height: 100%; */
    }
    .right{
        width: 100%;
    }
    .left{
        width: 100%;
    }
    .extra{
        width: 100%;
    }
}
@media (max-width:905px) {
    nav{
        padding: 20px 20px 10px 20px;
    }     
    h1{
        font-size: 30px;
    }
    .dark{
        font-size: 30px;
    }
    p{
        font-size: 18px;
    }
    .extra h6{
        writing-mode: horizontal-tb; 
        font-size: 11px;
        font-weight: 1000;
    }
}