@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');
/* --------poppin font--------- */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


*{
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
    font-family: "Plus Jakarta Sans", sans-serif; 
}
/* ------thankyou-page---------- */
body{
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.mainContainer{
    width: 80%;
    margin: auto;
    height: 60%;
    display: flex;
    align-items: center;
    justify-content: center;

}
.leftCont {
    width: 45%;
}

.rightCont{
    width: 40%;
}
.para-light-text{
    font-size: 17px;
    font-weight: 400;
    color: #737382;
    line-height: 32px;
    /* text-shadow: 0px 1px 2px  #737382; */
}
.heading-mid-text{
    font-weight: 700;
    line-height: 50px;
    letter-spacing: -1px;
    color: #232E45;
    font-size: 40px;
}
 .btn-primary:hover{
    background-color: #ee5a10;
 }
.btn-primary{
    background-color: #FF8345;
    box-shadow: 0px 5px 20px #0000001A;
    width: 181.48px;
    height: 56px;
    border-radius: 50px;
    margin-right: 10px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
 }
a{
    text-decoration: none;
    display: flex;
    color: #FFFFFF;
}



@media only screen and (max-width: 467px) {

    .mainContainer{
        width: 100%;
        margin: auto;
        height: 80%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
    
    }
    .leftCont {
        width: 100%;
        display: flex;
        justify-content: center;
    }
    .leftCont img{
        width: 90%;
    }
    
    .rightCont{
        margin-top: 2vh;
        width: 90%;
        display: flex;
        flex-direction: column;
        text-align: center;
        align-items: center;
    }







}

@media screen and (min-width: 465px) and (max-width: 1024px){

    .mainContainer{
        width: 100%;
        margin: auto;
        height: 80%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
    
    }
    .leftCont {
        width: 100%;
        display: flex;
        justify-content: center;
    }
    .leftCont img{
        width: 90%;
    }
    
    .rightCont{
        margin-top: 2vh;
        width: 90%;
        display: flex;
        flex-direction: column;
        text-align: center;
        align-items: center;
    }





}