#maincont h2 {
    /* height: 32px; */
    text-indent: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}
#maincont .step_description li{
    display: flex;
    margin-bottom: 20px;
    align-items: center;
    font-weight: bold;
}
#maincont .step_description li img{
    margin-right: 20px;
}
#maincont .img_box{
    padding: 0 30px 30px;
}
#maincont .img_box img{
    width: 100%;
    box-shadow: 1px 1px 4px 1px rgba(0,0,0,0.3);
}
#maincont .button_box{
    padding: 0 30px 30px;
    display: flex;
    justify-content: center;
}
#maincont .button_box a{
    padding: 20px 58px 20px 20px;
    color: white;
    font-size: 24px;
    display: block;
    width: 260px;
    text-align: center;
    font-weight: 700;
    color: #ffffff;
    border: 3px solid #ff7907;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    background: rgb(247,182,130);
    background: linear-gradient(180deg, rgba(247,182,130,1) 0%, rgba(246,167,86,1) 10%, rgba(240,117,24,1) 90%, rgba(231,91,21,1) 100%);
    border-radius: 3px;
    text-decoration: none;
    text-shadow: 1px 1px 1px rgba(0,0,0,0.3);
    position: relative;
}
#maincont .button_box a:hover{
    background: #ffffff;
    color: #ff7907;
}
#maincont .button_box a:before{
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 14px 0 14px 24px;
    border-color: transparent transparent transparent #ffffff;
    position: absolute;
    top: 22px;
    right: 20px;
    filter: drop-shadow(1px 1px 1px rgba(0,0,0,0.3));
}
#maincont .button_box a:hover:before{
    border-color: transparent transparent transparent #ff7907;
}
