*{
    box-sizing: border-box;
}
body{
    margin: 0;
    padding: 0;
    font-family: Verdana;
}
.wrap{
    background-color: #f2f2f2;
}
.wrap__inner{}
.text{
    text-align: center;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 25px;
}
.text__h1{
    text-align: center;
    font-weight: 600;
    font-size: 32px;
    line-height: 38px;
    margin-bottom: 25px;
    margin-top: 0;
}
.text__h2{
    text-align: center;
    font-weight: 600;
    font-size: 28px;
    line-height: 34px;
    margin-bottom: 25px;
    margin-top: 30px;
}
.text__p{
    margin: 0 0 12px 0;
}
.content{
    position: relative;
    max-width: 100%;
    overflow: hidden;
}
.content:after{
    content: '';
    width: 420px;
    height: 420px;
    background-image: url("/f/after.webp");
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    position: absolute;
    bottom: 60px;
    right: 50%;
    transform: translateX(170%);

}
.content:before{
    content: '';
    width: 420px;
    height: 420px;
    background-image: url("/f/before.webp");
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    position: absolute;
    top: 60px;
    left: 50%;
    transform: translateX(-170%);

}
.content__inner{
    width: 100%;
    max-width: 800px;
    position: relative;
    margin: 50px auto 0 auto;
    padding: 0 20px;
    z-index: 9;
}
.wrap-btn{
    text-align: center;
    padding: 20px 0;
    margin-bottom: 30px;
}
.btn{
    text-transform: uppercase;
    font-size: 18px;
    padding: 15px 34px;
    border: 2px solid #000000;
    display: inline-block;
    border-radius: 26px;
    cursor: pointer;
    transition: 0.2s;
}
.btn:hover{
    background-color: #e5521d;
    border-color: #e5521d;
    color: #ffffff;
}
.reg-i, email-i{
    object-fit: contain;
    max-width: 100%;
}
.reg-i{
    cursor: pointer;
    height: 14px;
}
.email-i{
    height: 16px;
}
.footer{
    background-color: #000000;
    color: #ffffff;
    padding: 20px 20px 0 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.footer__col{
    margin-bottom: 20px;
    min-width: 120px;
}
.footer__row{
    font-size: 14px;
    margin-bottom: 6px;
    cursor: pointer;
    color: #ffffff;
    text-decoration: none;
}
.footer__row:hover{
    text-decoration: underline;
}

@media screen and (max-width: 800px) {
    .text{
        font-size: 14px;
        line-height: 20px;
        text-align: justify;
    }
    .content__inner{
        margin: 30px auto 50px auto;
    }
    .h1{
        font-size: 24px;
        margin-bottom: 15px;
    }
    .h2{
        font-size: 20px;
        margin-bottom: 20px;
    }
    .wrap-btn{
        position: sticky;
        bottom: 0;
        background-color: #ffffff;
        z-index: 10;
        box-shadow: 0 -22px 53px -14px #000000;
        margin-bottom: 0;
        padding: 10px 0;
    }
    .btn{
        font-size: 16px;
        padding: 10px 34px;
        background-color: #e5521d;
        border-color: #e5521d;
        color: #ffffff;
        border-radius: 26px;
    }
}
@media screen and (min-width: 801px) {
    .wrap{
        padding-right: 4px;
    }
    *::-webkit-scrollbar{
        background-color: #f2f2f2;;
        width: 8px;
    }
    *::-webkit-scrollbar-thumb {
        background-color: #d5d7de;
        border-radius: 22px;
    }
    *::-webkit-scrollbar-thumb:hover{
        background-color: #e77952;
    }
    *::-webkit-scrollbar-thumb:active{
        background-color: #e5521d;
    }
}
