@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400&family=Roboto:wght@300&display=swap');
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    color: white;
}
body{
    background: rgb(0,212,255);
    background: linear-gradient(90deg, rgb(17, 189, 223) 0%, rgb(106, 106, 189) 47%, rgb(28, 198, 232) 100%);
}
.res{
    display: block;
}
.super-main{
    display: flex;
}
.side{
    width: 5%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    font-size: 20px;
    font-weight: 500;
}
.main{
    width: 95%;
}
nav{
    padding: 20px 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo{
    width: 50%;
}
.header_btn{
    width: 40%;
    justify-content: center;
}
.bi-person-circle{
    display: flex;
    align-items: center;
    font-size: 25px;
}
.header_btn button{
    padding: 7px 10px;
    background: none;
    border: 1px solid white;
    border-radius: 50px;
}
.header_btn ul{
    display: flex;
    justify-content: space-between;
    list-style: none;
}
.home{
    display: flex;
    padding: 0px 100px;
}
.home button{
    background: none;
}
.home-img{
    width: 40%;
    padding-left: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.home button{
    padding: 25px;
    border: 1px solid white;
    border-radius: 50px;
    font-size: 20px;
    font-weight: 600;
}
.home-img p{
    text-align:justify;
    padding-left: 20px;
    color: black;
    font-size: 22px;
    font-weight: 600;
}
.home h1{
    display: flex;
    align-items: center;
    font-size: 100px;
}
.s-img{
    background: none;
    padding: 0px 100px;
    display: flex;
}
.s-img img{
    width: 10%;
}
.s-img h1{
    font-size: 50px;
}
.down{
    display: flex;
    justify-content: space-between;
    padding: 40px 100px 10px 100px;
}
.down span{
    width: 30%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.down img{
    width: 20%;
}
.menu{
    width: 35px;
    height: 5px;
    background-color: rgb(250, 248, 248);
    margin: 6px 0;
  }
.hori{
    writing-mode: vertical-lr;
    color: black;
    font-weight: 600;
  }
.res{
    display: block;
}
@media (max-width:1150px) {
    .header_btn{
        width: 80%;
    }
}
@media (max-width:768px) {
    .res{
        display: none;
    }
    nav{
        width: 100%;
        padding: 10px;
    }
    .header_btn ul{
        justify-content: right;
    }
    .header_btn ul li{
        margin-right: 20px;
    }
    .super-main{
        flex-direction: column-reverse;
    }
    .side{
        display: none;
    }
    .main{
        width: 100%;
    }
    .home{
        flex-direction: column;
        padding: 0px 10px;
    }
    .home h1{
        font-size: 50px;
    }
    .home-img{
        margin-left: 100px;
        padding: 40px;
    }
    .s-img{
        padding: 0px 0px;
        padding-right: 30px;
       flex-direction: row;
    }
    .s-img img{
        width: 80%;
    }
    .s-img h1:last-child{
        display: none;
    }
    .res{
        display: none;
    }
    .down{
        flex-direction: column-reverse;
        padding: 20px;
        padding-left: 30px;
    }
    .down span{
        width: 100%;
    }
    .down img{
        width: 100%;
    }
}