*{
    margin: 0;
    padding: 0;
}
.main{
    height: 85.5vh;
    display: flex;
}
.ssp img{
    width: 400px;
    margin-top: 140px;
    margin-left: 200px;
    border: 5px solid black;
    border-radius: 25px;
}
.csds img{
    width: 300px;
    margin-top: 80px;
    margin-left: 250px;
    border: 5px solid black;
    border-radius: 25px;
}
.ssp{
    width: 50vw;
    height: 85.5vh;
}
.csds{
    width: 50vw;
    height: 85.5vh;
}
.cbtn{
    height: 40px;
    width: 400px;
    border-radius: 50px;
    margin-left: 210px;
    margin-top: 50px;
    font-family: var(--font1);
    font-size:x-large;
    background: transparent;
    border: 2px solid black;
    cursor: pointer;
}
.cbtn:hover{
    color: green;
    border: 2px solid green;
}
.comingsoon{
    height: 85.5vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bolder;
    font-size: xx-large;
}
/*
========================================
        responsive css
========================================
*/
@media only screen and (max-width: 1150px){ 
    .ssp img {
        max-width: 100%;
        height: auto;
    }
    .main{
        display: contents;
    }
}
@media only screen and (max-width: 600px){
    .ssp img {
        max-width: 100%;
        height: auto;
        margin-left: 90px;
        margin-top: 0px;
    }
    .main{
        display: contents;
        height: auto;
    }
    .csds img{
        max-width: 100%;
        height: auto;
        margin-left: 90px;
        margin-top: 10px;
    }
    .cbtn{
        margin-left: 30px;
        width: 300px;
        margin-top: 15px;
    }
    .ssp{
        width: 50vw;
        height: auto;
        /* margin-left: -23px; */
     }
     .csds{
        width: 50vw;
        height: auto;
        /* margin-left: -23px; */
        margin-top: 30px;
     }
     .a{
        margin-bottom: 75px;
     }
}
