*{
    margin: 0;
    padding: 0;
}
.container{
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    background-image: url(../../assets/img/landing_bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.box{
    width: 50%;
    height: 70vh;
    /* background-color: azure; */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
}
.box1{
    width: 50%;
    height: 70vh;
   
}
.logo{
    width: 60%;
    height: 400px;
    position: absolute;
    top: -132px;
}
.textbox{
    width: 85%;
    height: 50%;
    margin-top:21%;

}
.buttons{
width: 50%;
height: 50px;
display: flex;
justify-content:space-around ;
align-items: center;
/* margin-top: 2%; */
/* margin-bottom: 30%; */
}
.buttons>a>img{
    width: 100%;
}
@media (max-width:600px){
    .box1{
        display: none;
    }
    .box{
        width: 100%;
    }
    .logo{
        width: 60%;
        height: 300px;
        margin-top: 5%;
    }
}