@font-face {
    font-family: "SofiaSans";
    src: url("../fonts/SofiaSansExtraCondensed-Bold.ttf") format("woff2");
    src: url("../fonts/SofiaSansExtraCondensed-Bold.woff") format("woff");
    font-weight: 400;
    font-style: normal;
}

main {
    --font-sofia: "SofiaSans";
    --dark-grey: #505050;
    --dark-blue: #1769ca;
    --beige: #FFF8D9;
    --light-green: #ADF24C;
    --pink: #EF85C8;
    --dark-pink: #E544A5;
    --dark: #363636;
}

.wrapper {
    max-width: 1200px;
    padding: 0 10px;
    margin: 0 auto;
}

.wrapper--flex {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.wrapper--sale {
    position: relative;
}

/* Main */

.main-section {
    position: relative;
    background: url(../img/wave-n.png) right bottom / cover no-repeat, var(--dark-grey);
    padding: 155px 0 215px 0;
}

.main-block {
    display: flex;
    flex-direction: column;
    max-width: 738px;
}

.main-block__title {
    font-family: var(--font-sofia);
    font-size: 100px;
    line-height: 86px;
    text-align: right;
    text-transform: uppercase;
    letter-spacing: -1px;
    color: var(--beige);
    padding: 0 20px 0 0;
    margin: -66px 0 0 0;
}

.main-block__title span {
    color: var(--light-green);
}

.main-block__link {
    position: relative;
    max-width: 544px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    color: var(--dark-grey);
    background-color: var(--pink);
    border-radius: 3px;
    padding: 21px 0 20px;
    margin: 28px 0 0 0;
}

.main-block__link::before {
    position: absolute;
    content: '';
    right: -23px;
    top: 20px;
    background: url(../img/test3.png) 0 0 / cover;
    width: 50px;
    height: 47px;
}

.test {
    position: absolute;
    right: -229px;
    top: 23px;
    background: url(../img/mark.png) 0 0 / cover;
    width: 230px;
    height: 128px;
    animation-name: sway;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

@keyframes sway {
    0%,100% {
        transform: translate(0px, 0px); /* Слегка повернуть влево */
    }
    50% {
        transform: translate(0px, 3px); /* Возвращение в исходное положение */
    }
}

.main-block__link span:nth-of-type(2) {
    display: flex;
}

/* Main Product */

.main-product-block {
    display: flex;
    width: 100%;
    max-width: 440px;
    flex-direction: column;
    position: relative;
}

.main-product-block__item {
    position: absolute;
    /* transform: scale(0); */
}

.main-product-block__item:nth-child(1) {
    top: -51px;
    left: 31px;
}

.main-product-block__item:nth-child(2) {
    top: -1px;
    right: -24px;
}

.main-product-block__item:nth-child(3) {
    bottom: -122px;
    left: 51px;
}

.main-product-block__item:nth-child(1) {
    animation: slidein 3.5s ease-in-out infinite;
}

.main-product-block__item:nth-child(2) {
    animation: slidein 3.5s ease-in-out infinite;
}

.main-product-block__item:nth-child(3) {
    animation: slidein2 3.5s ease-in-out infinite;
}

@keyframes slidein {
    0% {
        transform: rotate(-2deg);
    }

    50% {
        transform: rotate(2deg) translateY(15px);
    }

    100% {
        transform: rotate(-2deg);
    }
}

@keyframes slidein2 {
    0% {
        transform: rotate(-2deg);
    }

    50% {
        transform: rotate(2deg) translateY(-15px);
    }

    100% {
        transform: rotate(-2deg);
    }
}

/* Main Decor */

.main-decor-star {
    position: absolute;
    content: '';
}

.main-decor-star--1 {
    top: -107px;
    left: 14%;
    background: url(../img/main-section/main-section-star-1.svg) center center / contain no-repeat;
    width: 60px;
    height: 60px;
}

.main-decor-star--2 {
    top: -68px;
    right: 5%;
    background: url(../img/main-section/main-section-star-2.svg) center center / cover no-repeat;
    width: 60px;
    height: 60px;
}

.main-decor-star--3 {
    bottom: -83px;
    right: 3%;
    background: url(../img/main-section/main-section-star-3.svg) center center / cover no-repeat;
    width: 25px;
    height: 25px;
}

.main-decor-star--4 {
    bottom: -189px;
    right: 33%;
    background: url(../img/main-section/main-section-star-4.svg) center center / cover no-repeat;
    width: 45px;
    height: 45px;
}

/* Counter */
.counter-block {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.user-counter {
    display: flex;
    font-size: 42px;
    font-weight: 600;
    line-height: 1;
    color: var(--light-green);
    margin: 0;
}

.counter-block__descr {
    max-width: 200px;
    font-size: 18px;
    font-weight: 600;
    line-height: 1;
    color: var(--beige);
    margin: 0;
}

/* Sale categories */
.sale-categories {
    background-color: var(--dark);
    padding: 110px 0 96px;
}

.sale-categories__title,
.sale-categories__subtitle {
    font-family: var(--font-sofia);
    font-size: 70px;
    line-height: 1;
    text-transform: uppercase;
    margin: 0;
}

.sale-categories__title {
    color: var(--light-green);
}

.sale-categories__subtitle {
    color: var(--beige);
    text-align: right;
    margin: 22px 0 0 0;
}

.sale-categories-list {
    display: grid;
    grid-template-areas: 
    "category-1 category-2 category-3 category-4"
    "category-5 category-6 category-7 category-4";
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 46px 0 0 0px;
}

.sale-category {
    position: relative;
    width: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    background-color: transparent;
    border-radius: 3px;
    padding: 50px 25px 20px;
    transition: background-color 0.3s ease-in-out;
}

.sale-category:nth-child(1) {
    grid-area: category-1;
}

.sale-category:nth-child(2) {
    grid-area: category-2;
}

.sale-category:nth-child(3) {
    grid-area: category-3;
}

.sale-category:nth-child(4) {
    grid-area: category-4;
    justify-content: center;
    gap: 13px;
}

.sale-category:nth-child(5) {
    grid-area: category-5;
}

.sale-category:nth-child(6) {
    grid-area: category-6;
}

.sale-category:nth-child(7) {
    grid-area: category-7;
}

.sale-category__title {
    font-size: 20px;
    line-height: 1;
    text-align: center;
    color: var(--beige);
    margin: 0;
}

.sale-category__anchor {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 230px;
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    text-align: center;
    text-decoration: none;
    color: var(--dark);
    background-color: var(--pink);
    border-radius: 3px;
    padding: 14px 17px 14px;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s 0.2s ease-in-out;
}

.sale-category:hover {
    background-color: var(--dark-blue);
}

.sale-category:hover .sale-category__anchor {
    opacity: 1;
}

/* Sale Decor */
/* Main Decor */

.sale-decor-star {
    position: absolute;
    content: '';
}

.sale-decor-star--1 {
    top: -84px;
    left: 7.5%;
    background: url(../img/sale-section/sale-section-star-1.svg) center center / contain no-repeat;
    width: 40px;
    height: 40px;
}

.sale-decor-star--2 {
    top: 46px;
    right: 16%;
    background: url(../img/sale-section/sale-section-star-2.svg) center center / cover no-repeat;
    width: 40px;
    height: 40px;
}

.sale-decor-star--3 {
    bottom: 38px;
    left: 7%;
    background: url(../img/sale-section/sale-section-star-3.svg) center center / cover no-repeat;
    width: 45px;
    height: 45px;
}

.sale-decor-star--4 {
    bottom: -63px;
    right: 43%;
    background: url(../img/sale-section/sale-section-star-4.svg) center center / cover no-repeat;
    width: 45px;
    height: 45px;
}

/* Sale Product */
.sale-products {
    background-color: var(--dark);
    padding: 0 0 67px;
}

.sale-products__title,
.sale-products__subtitle {
    font-family: var(--font-sofia);
    font-size: 70px;
    line-height: 1;
    text-transform: uppercase;
    margin: 0;
}

.sale-products__title {
    color: var(--light-green);
}

.sale-products__subtitle {
    color: var(--beige);
    text-align: center;
    margin: 129px auto 0;
}

.sale-product-list {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(380px, 1fr));
    gap: 93px 20px;
    list-style: none;
    padding: 0;
    margin: 46px 0 0 0;
}

.sale-product {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.sale-product__title {
    font-size: 20px;
    font-weight: 600;
    line-height: 120%;
    text-align: center;
    color: var(--beige);
    margin: 0;
}

.sale-product__old-price {
    font-size: 20px;
    font-weight: 600;
    line-height: 120%;
    text-align: center;
    text-decoration: line-through;
    color: var(--beige);
    color: #7B7B7B;
    margin: 5px 0 2px;
}

.sale-product__price {
    font-size: 26px;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    color: var(--beige);
    margin: 0;
}

/* Marks */
.sale-product-mark {
    position: absolute;
    content: '';
}

.sale-product:nth-child(1) .sale-product-mark {
    bottom: -2px;
    right: -63px;
}

.sale-product:nth-child(2) .sale-product-mark {
    bottom: -105px;
    right: 66px;
}

.sale-product:nth-child(3) .sale-product-mark {
    bottom: -2px;
    right: -63px;
}

.sale-product:nth-child(4) .sale-product-mark {
    bottom: -27px;
    right: 2px;
}

.sale-product:nth-child(5) .sale-product-mark {
    bottom: -2px;
    right: -63px;
}

.sale-product:nth-child(6) .sale-product-mark {
    bottom: -65px;
    right: 81px;
}

.sale-product-mark--green {
    background: url(../img/products/product-mark-1.png) 0 0 / cover;
    width: 162px;
    height: 82px;
}

.sale-product-mark--pink {
    background: url(../img/products/product-mark-2.png) 0 0 / cover;
    width: 109px;
    height: 122px;
}

.sale-product-mark--blue {
    background: url(../img/products/product-mark-3.png) 0 0 / cover;
    width: 162px;
    height: 82px;
}

.sale-product-mark--blue-star {
    background: url(../img/products/product-mark-4.png) 0 0 / cover;
    width: 109px;
    height: 122px;
}

/* Percents */

.sale-product-percent {
    position: absolute;
    content: '';
    font-family: var(--font-sofia);
    font-size: 30px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
    margin: 0;
}

.sale-product:nth-child(1) .sale-product-mark + .sale-product-percent {
    bottom: 20px;
    transform: rotate(11deg);
    right: -25px;
}

.sale-product:nth-child(2) .sale-product-mark + .sale-product-percent {
    bottom: -70px;
    transform: rotate(0);
    right: 97px;
}

.sale-product:nth-child(3) .sale-product-mark + .sale-product-percent {
    bottom: 20px;
    transform: rotate(11deg);
    right: -25px;
}

.sale-product:nth-child(4) .sale-product-mark + .sale-product-percent {
    bottom: 10px;
    transform: rotate(0);
    right: 30px;
}

.sale-product:nth-child(5) .sale-product-mark + .sale-product-percent {
    bottom: 20px;
    transform: rotate(11deg);
    right: -25px;
}

.sale-product:nth-child(6) .sale-product-mark + .sale-product-percent {
    bottom: -29px;
    transform: rotate(0);
    right: 109px;
}

.sale-product-percent--dark {
    color: #363636;
}

.sale-product-percent--white {
    color: #ffffff;
}

/* Form Section */
.form-section {
    background: url(../img/bg-section-form.png) center / cover, var(--dark);
        padding: 110px 0 90px;
}

.form-section .wrapper {
    position: relative;
}

.form-section__subtitle {
    font-family: var(--font-sofia);
    font-size: 70px;
    line-height: 1;
    color: var(--beige);
    text-align: left;
    text-transform: uppercase;
    margin: 0;
}

.decor-star {
    position: absolute;
    content: '';
}

.decor-star--fat-pink {
    top: -24px;
    right: 16%;
    background: url(../img/form-section/form-section-star-1.svg) no-repeat;
    width: 32px;
    height: 32px;
}

.decor-star--green {
    top: 37%;
    left: -88px;
    background: url(../img/form-section/form-section-star-2.svg) no-repeat;
    width: 60px;
    height: 60px;
}

.decor-star--slim-pink {
    bottom: -67px;
    right: 29.5%;
    background: url(../img/form-section/form-section-star-3.svg) center / cover no-repeat;
    width: 45px;
    height: 45px;
}

/* Marque */
.marquee-section {
    background-color: var(--beige);
    position: relative;
    padding: 25px 0;
    margin: -50px 0 0 0;
}

.marquee-section--green {
    background-color: var(--light-green);
    margin: 101px 0 0 0;
    transform: rotate(2.76deg);
}

.marquee ul {
    display: flex;
    align-items: center;
    gap: 42px;
    position: absolute;
    left: 0;
    top: 0;
    white-space: nowrap;
    padding: 0;
    margin: 0;
    list-style: none;
    height: 100%;
}

.marquee li {
    position: relative;
    font-size: 20px;
    font-weight: 600;
    line-height: 1;
    color: var(--dark-grey);
}

.marquee li span {
    color: var(--dark-pink);
    margin: 0 0 0 6px;
}

.marquee ul li::after {
    position: absolute;
    content: '';
    width: 16px;
    height: 16px;
    top: 3px;
    right: -29px;
    background: url(../img/star-devider.svg) 0 0 / cover;
    border-radius: 50%;
}

@media(max-width: 1280px) {
    .sale-product-list {
        margin: 46px auto 0;
        max-width: 860px;
    }

    .sale-product:nth-child(1) .sale-product-mark {
        bottom: -64px;
        right: 3px;
    }

    .sale-product:nth-child(2) .sale-product-mark {
        bottom: -107px;
        right: 88px;
    }

    .sale-product:nth-child(3) .sale-product-mark {
        bottom: -59px;
        right: 0px;
    }

    .sale-product:nth-child(4) .sale-product-mark {
        bottom: -107px;
        right: 88px;
    }

    .sale-product:nth-child(5) .sale-product-mark {
        bottom: -65px;
        right: 10px;
    }

    .sale-product:nth-child(6) .sale-product-mark {
        bottom: -65px;
        right: 101px;
    }

    .sale-product:nth-child(1) .sale-product-mark + .sale-product-percent {
        bottom: -43px;
        transform: rotate(12deg);
        right: 37px;
    }

    .sale-product:nth-child(2) .sale-product-mark + .sale-product-percent {
        bottom: -70px;
        transform: rotate(0);
        right: 117px;
    }

    .sale-product:nth-child(3) .sale-product-mark + .sale-product-percent {
        bottom: -37px;
        transform: rotate(13deg);
        right: 36px;
    }

    .sale-product:nth-child(4) .sale-product-mark + .sale-product-percent {
        bottom: -74px;
        transform: rotate(0);
        right: 117px;
    }

    .sale-product:nth-child(5) .sale-product-mark + .sale-product-percent {
        bottom: -44px;
        transform: rotate(11deg);
        right: 44px;
    }

    .sale-product:nth-child(6) .sale-product-mark + .sale-product-percent {
        bottom: -29px;
        transform: rotate(0);
        right: 128px;
    }
}

@media(max-width: 1200px) {
    .main-block {
        flex-shrink: 0;
        max-width: 500px;
    }

    .main-block__title {
        font-size: 70px;
        line-height: 1;
        padding: 0;
        margin: -60px 0 0;
    }

    .main-block__link {
        margin: 20px 0 0;
    }

    .main-product-block__item:nth-child(3) {
        bottom: -200px;
        left: 150px;
    }
}

@media(max-width: 1024px) {
    /* Main */
    .main-product-block__item:nth-child(1) {
        top: 0;
        left: 29px;
    }

    .main-product-block__item:nth-child(2) {
        top: 110%;
        right: -15px;
    }

    .main-product-block__item:nth-child(3) {
        bottom: -239px;
        left: -500px;
    }

    /* Sale */
    .sale-products__subtitle {
        margin: 100px auto 0;
    }

    .sale-categories-list {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: scroll;
        max-width: 100%;
    }

    .sale-category {
        flex-shrink: 0;
        background-color: #1769ca;
    }

    .sale-category__anchor {
        opacity: 1;
        position: static;
        transform: none;
        margin: 20px 0 0 0;
    }

    .sale-category:nth-child(4) .sale-category__img img {
        max-height: 160px;
    }

    .sale-product-list {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: scroll;
    }

    .sale-product { 
        flex-shrink: 0;
        width: 340px;
        overflow: hidden;
    }

    .sale-product__img {
        max-width: 320px;
    }

    .sale-product {
        padding: 0 0 44px;
    }

    /* Первый товар */

    .sale-product-mark--green {
        width: 120px;
        height: 60px;
    }

    .sale-product:nth-child(1) .sale-product-mark {
        bottom: 40px;
        right: 0;
    }

    .sale-product:nth-child(1) .sale-product-mark + .sale-product-percent {
        bottom: 51px;
        transform: rotate(15deg);
        right: 22px;
    }

    /* Второй товар */
    .sale-product:nth-of-type(2) {
        padding: 0 0 84px;
    }

    .sale-product-mark--pink {
        width: 80px;
        height: 92px;
    }

    .sale-product:nth-child(2) .sale-product-mark {
        bottom: 6px;
        right: 66px;
    }

    .sale-product:nth-child(2) .sale-product-mark + .sale-product-percent {
        bottom: 28px;
        transform: rotate(0);
        right: 80px;
    }

    /* Третий товар */
    .sale-product-mark--blue {
        width: 120px;
        height: 60px;
    }

    .sale-product:nth-child(3) .sale-product-mark {
        bottom: 40px;
        right: 0;
    }

    .sale-product:nth-child(3) .sale-product-mark + .sale-product-percent {
        bottom: 52px;
        transform: rotate(13deg);
        right: 23px;
    }

    /* Четвертый */
    .sale-product-mark--blue-star {
        width: 80px;
        height: 92px;
    }

    .sale-product:nth-of-type(4) {
        padding: 0 0 84px;
    }

    .sale-product:nth-child(4) .sale-product-mark {
        bottom: 6px;
        right: 66px;
    }

    .sale-product:nth-child(4) .sale-product-mark + .sale-product-percent {
        bottom: 28px;
        transform: rotate(0);
        right: 80px;
    }

    /* Пятый товарв */
    .sale-product:nth-child(5) .sale-product-mark {
        bottom: 40px;
        right: 8px;
    }

    .sale-product:nth-child(5) .sale-product-mark + .sale-product-percent {
        bottom: 52px;
        transform: rotate(15deg);
        right: 31px;
    }

    /* Шестой */
    .sale-product:nth-child(6) .sale-product-mark {
        bottom: 36px;
        right: 81px;
    }

    .sale-product:nth-child(6) .sale-product-mark + .sale-product-percent {
        bottom: 58px;
        transform: rotate(0);
        right: 95px;
    }
}

@media(max-width: 767px) {
    .wrapper--flex {
        flex-direction: column;
    }

    /* Main */
    .main-section {
        background: url(../img/wave-n.png) right 82px / cover no-repeat, var(--dark-grey);
        padding: 74px 0 69px;
    }

    .main-block {
        max-width: 100%;
    }

    .main-block__title {
        order: 1;
        font-size: 44px;
        line-height: 1;
        text-align: center;
        margin: 0 auto;
    }

    .main-block__title br {
        display: none;
    }

    /* Main Decor */

.main-decor-star {
    position: absolute;
    content: '';
}

    .main-decor-star--1 {
        top: -38px;
        left: 24px;
        width: 12px;
        height: 12px;
    }

    .main-decor-star--2 {
        transform: rotate(16deg);
        top: -50px;
        right: 22%;
        width: 30px;
        height: 30px;
    }

    .main-decor-star--3 {
        bottom: 108px;
        right: 7.5%;
        width: 13px;
        height: 13px;
        transform: rotate(87deg);
    }

    .main-decor-star--4 {
        bottom: 77px;
        left: 30px;
        right: auto;
        width: 22px;
        height: 22px;
    }

    .counter-block {
        max-width: 226px;
        flex-direction: row;
        justify-content: center;
        order: 2;
        gap: 5px;
        margin: 6px auto 0;
    }

    .user-counter {
        font-size: 30px;
    }

    .counter-block__descr {
        font-size: 14px;
    }

    .main-block__link {
        width: calc(100% - 12px);
        font-size: 16px;
        order: 3;
        padding: 21px 0 23px;
        margin: 166px 0 0 6px;
    }

    .main-block__link::before {
        /* right: auto;
        left: 0;
        top: auto;
        bottom: -27px; */

        right: auto;
        left: 4px;
        top: auto;
        bottom: -24px;
    }

    .main-block__link::after {
        position: absolute;
        content: '';
        width: 3.5px;
        height: 3.5px;
        border-radius: 50%;
        background-color: #1769ca;
        bottom: 8px;
        left: 29px;
    }

    .test {
        position: absolute;
        right: auto;
        left: 21px;
        top: 42px;
    }

    .test {
        background: url(../img/mark-mob.png) 0 0 / cover;
        /* width: 153px;
        height: 95px;
        right: auto;
        left: 22px;
        top: 47px; */

        width: 164px;
        height: 101px;
        right: auto;
        left: 27px;
        top: 43px;
    }

    .main-product-block {
        max-width: 100%;
    }

    .main-product-block__item:nth-child(1) {
        width: 88px;
        top: -202px;
        left: -10px;
        height: 73px;
    }

    .main-product-block__item:nth-child(2) {
        width: 145px;
        height: 98px;
        top: -200px;
        right: 26%;
    }

    .main-product-block__item:nth-child(3) {
        width: 81px;
        height: 112px;
        top: -234px;
        right: -9px;
        left: auto;
    }


    /* Categories */

    .sale-categories {
        padding: 75px 0 96px;
    }

    .sale-categories-list {
        gap: 10px;
    }

    .sale-categories__title, 
    .sale-categories__subtitle {
        font-size: 34px;
        font-weight: 700;
        color: var(--light-green);
        text-box-trim: trim-both;
    }

    .sale-products__title, 
    .sale-products__subtitle {
        font-size: 34px;
        font-weight: 700;
        color: var(--light-green);
    }

    /* Products */
    .sale-product-list {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: scroll;
    }

    .sale-product { 
        flex-shrink: 0;
        width: 220px;
        overflow: hidden;
        padding: 0 0 20px;

    }

    .sale-products__subtitle {
        text-align: center;
        margin: 80px auto 0;
    }

    .sale-product__img {
        max-width: 160px;
    }

    .sale-product__title { 
        font-size: 16px;
        font-weight: 700;
        line-height: 1;
    }

    .sale-product__old-price {
        font-size: 16px;
        line-height: 1;
        margin: 5px 0 2px;
    }

    .sale-product__price {
        font-size: 20px;
        font-weight: 700;
        line-height: 1;
    }

    .sale-product-mark--green {
        background: url(../img/products/product-mark-1.png) 0 0 / contain no-repeat;
        width: 66px;
        height: 50px;
    }

    .sale-product-mark--pink {
        background: url(../img/products/product-mark-2.png) 0 0 / contain no-repeat;
        width: 50px;
        height: 50px;
    }

    .sale-product-mark--blue {
        background: url(../img/products/product-mark-3.png) 0 0 / contain no-repeat;
        width: 66px;
        height: 50px;
    }

    .sale-product-mark--blue-star {
        background: url(../img/products/product-mark-4.png) 0 0 / contain no-repeat;
        width: 50px;
        height: 50px;
    }

    .sale-product:nth-child(1) .sale-product-mark {
        bottom: 44px;
        right: 5px;
    }

    .sale-product:nth-child(2) .sale-product-mark {
        bottom: 42px;
        right: 32px;
    }

    .sale-product:nth-child(3) .sale-product-mark {
        bottom: 28px;
        right: 4px;
    }

    .sale-product:nth-child(4) .sale-product-mark {
        bottom: 42px;
        right: 30px;
    }

    .sale-product:nth-child(5) .sale-product-mark {
        bottom: 30px;
        right: 10px;
    }

    .sale-product:nth-child(6) .sale-product-mark {
        bottom: 60px;
        right: 43px;
    }

    .sale-product:nth-child(1) .sale-product-mark + .sale-product-percent {
        bottom: 66px;
        transform: rotate(14deg);
        right: 15px;
    }

    .sale-product:nth-child(2) .sale-product-mark + .sale-product-percent {
        bottom: 53px;
        transform: rotate(0);
        right: 44px;
    }

    .sale-product:nth-child(3) .sale-product-mark + .sale-product-percent {
        bottom: 50px;
        transform: rotate(14deg);
        right: 13px;
    }

    .sale-product:nth-child(4) .sale-product-mark + .sale-product-percent {
        bottom: 53px;
        transform: rotate(0);
        right: 41px;
    }

    .sale-product:nth-child(5) .sale-product-mark + .sale-product-percent {
        bottom: 51px;
        transform: rotate(16deg);
        right: 19px;
    }

    .sale-product:nth-child(6) .sale-product-mark + .sale-product-percent {
        bottom: 70px;
        transform: rotate(0);
        right: 55px;
    }

    /* Percent */
    .sale-product-percent {
        font-size: 20px;
        font-weight: 700;
        line-height: 1;
    }

    /* Form */
    .form-section {
        padding: 60px 0 100px;
    }

    .form-section__subtitle {
        font-size: 34px;
        line-height: 90%;
        text-align: center;
    }
}