.lp-content-box {
    position: relative;
    z-index: auto;
    max-width: 530px;
    margin-top: 120px;
    margin-right: auto;
    margin-left: auto;
    border-radius: 12px;
    background-color: #fff;
    box-shadow: 0 8px 10px -6px rgba(0, 0, 0, 0.1), 0 10px 25px -5px rgba(0, 0, 0, 0.05);
}

.lp-content-text {
    padding-right: 40px;
    padding-left: 40px;
}

.lp-content-text-small {
    padding: 20px;
    font-size: 14px;
}

.lp-content-small-link {
    display: inline;
    -webkit-transition-property: none;
    transition-property: none;
    color: #fe813a;
    text-decoration: none;
}

.lp-content-small-link:hover {
    color: #fe813a;
    text-decoration: underline;
}

.lp-home {
    padding-right: 20px;
    padding-left: 20px;
    background-color: #f9fafb;
    font-family: Inter, sans-serif;
    color: #6b7280;
    font-size: 17px;
    line-height: 1.667em;
    text-align: center;
}

.lp-image-top {
    display: inline-block;
    max-width: none;
    min-width: 65%;
    margin-top: 55px;
    margin-bottom: 50px;
    padding-right: 20px;
    padding-left: 20px;
}

.lp-gray-block {
    padding-top: 30px;
    background-color: #f9fafb;
}

.lp-main-button {
    display: inline-block;
    margin-top: 20px;
    margin-bottom: 45px;
    padding: 10px 20px;
    border-radius: 6px;
    background-image: -webkit-gradient(linear, left top, right top, from(#fe813a), to(#ffaf48));
    background-image: linear-gradient(90deg, #fe813a, #ffaf48);
    /*box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px #ffaf49;*/
    box-shadow: rgb(0 0 0 / 10%) 0px 1px 3px 0px, rgb(255 175 73) 0px 1px 2px -1px;
    -webkit-transition: color 350ms ease;
    transition: color 350ms ease;
    color: #fff;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
}

.lp-main-button:hover {
    background-image: -webkit-gradient(linear, left top, right top, from(#fe813a), to(#fe813a));
    background-image: linear-gradient(90deg, #fe813a, #fe813a);
    color: #fff;
}

.lp-secondary-button {
    box-sizing: border-box;
    display: inline-block;
    margin-top: 20px;
    margin-bottom: 45px;
    padding: 10px 22px;
    border-radius: 6px;
    background-color: #fff;
    /*box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);*/
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05);
    -webkit-transition: color 350ms ease;
    transition: color 350ms ease;
    color: #6b7280;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
}

.lp-secondary-button:hover {
    background-image: -webkit-gradient(linear, right top, left top, from(#f9fafb), to(#fff));
    background-image: linear-gradient(270deg, #f9fafb, #fff);
    color: #6b7280;
}

.lp-bck-top {
    position: absolute;
    left: auto;
    top: -53px;
    right: -71px;
    bottom: auto;
    z-index: -1;
}

.lp-bck-bottom {
    position: absolute;
    left: -53px;
    top: 370px;
    right: auto;
    bottom: auto;
    z-index: -1;
}

@media screen and (max-width: 767px) {

    .lp-image-top {
        min-width: 75%;
    }

    .lp-bck-top {
        display: none;
    }

    .lp-bck-bottom {
        display: none;
    }
}

@media screen and (max-width: 479px) {

    .lp-image-top {
        min-width: 85%;
    }

    .lp-bck-top {
        right: -24px;
    }

    .lp-bck-bottom {
        left: -4%;
        top: auto;
        right: 0%;
        bottom: -12%;
    }
}