.b-offer__background {
    position: relative;
    background: center / cover;
    font-family: Inter, sans-serif;
    color: #ffffff;
    overflow: hidden;
}
.b-offer-2__wrapper {
    position: relative;
    margin: auto;
    width: 1000px;
    box-sizing: border-box;
    padding: 80px 0 560px;
}
.b-offer-2__title {
    font: 700 30px/45px Inter, sans-serif;
    color: #fff;
    text-align: center;
}
.b-offer-2__subtitle {
    margin-top: 12px;
    font: 16px/28px Inter, sans-serif;
}
.b-offer-2__laptop {
    position: absolute;
    left: -90px;
    bottom: 76px;
    width: 710px;
    height: 400px;
    background: center bottom / 100% auto no-repeat;
}
.b-offer-2__content {
    position: absolute;
    right: 0;
    bottom: 161px;
    z-index: 4;
    min-width: 400px;
    min-height: 351px;
    border-radius: 10px;
    background-color: #FFF;
    box-sizing: border-box;
    box-shadow: -9px 9px 0 0 rgba(255, 255, 255, 0.2);
    color: #1A222E;
    text-align: center;
    padding-bottom: 26px;
}
.b-offer-2__name {
    height: 82px;
    font: 30px/77px Inter, sans-serif;
    border-bottom: solid 1px #e4eaf1;
    letter-spacing: -0.9px;
    padding: 4px 65px 0;
}
.b-offer-2__name span {
    color: #1583E6;
}
.b-offer-2__sale {
    position: absolute;
    width: 117px;
    height: 130px;
    top: -4px;
    right: -3px;
    background: url(../img/discount.svg);
}
.b-offer-2__sale-text {
    width: 175px;
    height: 60px;
    transform: rotate(45deg);
    font-size: 15px;
    font-weight: bold;
    text-align: center;
    color: #ffffff;
    padding-top: 36px;
}
.b-offer-2__payment-first {
    margin: 17px 0 20px;
    font: 17px/20px Inter, sans-serif;
}
.b-offer-2__price {
    font: 700 30px/30px Inter, sans-serif;
    vertical-align: bottom;
}
.b-offer-2__currency {
    vertical-align: top;
    margin-right: 4px;
    font: 700 15px/18px Inter, sans-serif;
}
.b-offer-2__regular {
    display: inline-block;
    position: relative;
    font: 700 17px/20px Inter, sans-serif;
    vertical-align: bottom;
}
.b-offer-2__old-price{
    display: inline-block;
    position: relative;
}
.b-offer-2__old-price:after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    width: 100%;
    height: 2px;
    background-color: #F64C52;
}
.b-offer-2__licence {
    display: flex;
    justify-content: space-evenly;
    margin: 24px auto 17px;
    width: fit-content;
    min-width: 320px;
}
.b-offer-2__licence div {
    position: relative;
    margin: 0 10px 0;
    width: fit-content;
    padding-left: 22px;
    background: url(../img/icon_check.svg) 0 0/20px 15px no-repeat;
}
.b-offer-2__button {
    display: block;
    margin: 0 auto;
    width: 300px;
    height: 55px;
    padding: 0 15px;
    border-radius: 8px;
    background: #1583E6;
    box-shadow: 0 10px 13px 0 #00000033;
    font: 700 15px/55px Inter, sans-serif;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
    transition: background-color 150ms linear;
}
.b-offer-2__button:hover {
    background: #1E94FF;
}
.b-offer-2__button:active {
    background: #1271C7;
}
.b-offer-2__methods {
    margin: 18px auto 0;
    width: 330px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (max-width: 1000px) {
    .mobile .b-offer-2__wrapper {
        width: 100%;
        height: auto;
        box-sizing: border-box;
        padding: 60px 10px;
    }
    .mobile .b-offer-2__laptop {
        display: none;
    }
    .mobile .b-offer-2__content {
        position: relative;
        top: 0;
        margin: 24px auto 0;
        max-width: 100%;
        width: fit-content;
        min-width: 400px;
    }
}
@media (max-width: 480px) {
    .mobile .b-offer-2__content {
        min-width: 100%;
    }
    .mobile .b-offer-2__name {
        padding: 4px 0 0;
    }
}