body{
    margin: 0;
    font-family: 'promptregular';
}
.main-body{
    /* margin-top: 64px; */
}
.container{
    width: 90%;
    margin: auto;
}
.container-85{
    width: 85%;
    margin: auto;
}
.btn-blue{
    border-radius: 100px;
    border: #728BC6;
    background:  #728BC6;
    padding: 10px 15px;
    width: 100%;
    max-width: 170px;
    cursor: pointer;

    color: #FFF;
    font-family: 'promptmedium';
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: capitalize;
}
.btn-white{
    border-radius: 100px;
    border: 1px solid #BBBFC1;
    background: #FFF;
    padding: 10px 15px;
    width: 100%;
    max-width: 170px;
    cursor: pointer;

    color: #000;
    font-family: 'promptmedium';
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: capitalize;
    text-decoration: none;
}
.m-flex{
    display: none;
}
.m-block{
    display: none;
}
@media only screen and (min-width: 1199px) {
    .only-m{
        display: none;
    }
}
@media only screen and (max-width: 1199px) {
    .d-block{
        display: none;
    }
    .d-flex{
        display: none;
    }
    .m-block{
        display: block;
    }
    .m-flex{
        display: flex;
    }
    .container-85{
        width: 90%;
    }
}
