.howtop_container{
    background-color: #FFF9D6;
}
.howto_wrapper{
    width: 98vw;
    max-width: 1246px;
    margin: 0 auto;
    padding-top: 60px;
    padding-bottom: 60px;
}
.howto_heading{
    text-align: center;
}
.howto_heading h4{
    font-size: 30px;
}
.howto_text{
    text-align: center;
}
.howto_text p{
    font-size: 18px;
    line-height: 45px;
}
.howto_flex_content{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 35px;
    margin-top: 20px;
}
.howto_flex{
    background-color: #101010;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 20px;
    width: calc(100%/3);
    box-shadow: 15px 15px 0px 2px #ffeea0;
}
.howto_flex p{
    font-size: 25px;
    color: #ffffff;
    margin-bottom: 20px;
}
.howto_flex img{
    width: 180px;
    background-color: #ffffff;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}
.howto_form_button_content{
    margin-top: 55px;
    text-align: center;
}
.howto_form_button_content a{
    background: linear-gradient(45deg, #58C4DD, #32B9C4);
    color: #ffffff;
    display: block;
    width: 240px;
    border-radius: 5px;
    text-decoration: none;
    text-align: center;
    box-sizing: border-box;
    padding-top: 12px;
    padding-bottom: 12px;
    line-height: 1;
    margin: 0 auto;
}

@media(max-width:768px){
    .howto_wrapper{
        width: 95vw;
    }
    .howto_heading h4{
        font-size: 25px;
    }
    .howto_text p{
        font-size: 16px;
        line-height: 35px;
    }
    .howto_flex_content{
        gap: 35px;
        flex-wrap: wrap;
    }
    .howto_flex{
        background-color: #101010;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        padding: 20px;
        width: 100%;
        box-shadow: 15px 15px 0px 2px #ffeea0;
    }
    .howto_flex p{
        font-size: 20px;
        color: #ffffff;
        margin-bottom: 20px;
    }
    .howto_flex img{
        width: 140px;
    }
    .howto_form_button_content{
        margin-top: 55px;
        text-align: center;
    }
}