.scooter_description_1,
.scooter_description_2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 48px;
}

.scooter_description_picture {
    position: relative;
    min-width: 600px;
    height: 500px;
}

.scooter_description_rec_1 {
    position: absolute;
    bottom: 110px;
    left: -30px;
}

.scooter_description_rec_2 {
    position: absolute;
    top: 160px;
    right: -30px;
}

.scooter_description_text_block .h3 {
    margin-bottom: 24px;
}

.scooter_description_text_block_standart {
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 170%;
    color: #323232;
}

.scooter_description_text_block_standart.selected_text {
    border-radius: 6px;
    padding: 8px;
    background: rgba(248, 208, 0, 0.1);
    margin-top: 16px;
}

.scooter_description_list {
    margin-top: 16px;
}

.scooter_description_text_block_standart span {
    font-weight: 600;
    background: rgba(248, 208, 0, 0.1);
    border-radius: 6px;
}

.scooter_description_video {
    clip-path: polygon(0 5%, 100% 30%, 100% 100%, 0% 100%);
    width: 100%;
    height: 100%;
    border-radius: 6px;
}

img.scooter_description_photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    border-radius: 6px;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 80%);
}

.button_news {
    margin: 0 auto;
    display: flex;
    width: 200px;
}

@media screen and (max-width: 1500px) {
    .scooter_description_1,
    .scooter_description_2 {
        display: grid;
        grid-template-columns: 49% calc(51% - 24px);
        gap: 24px;
    }

    img.scooter_description_photo {
        width: 100%;
    }

    .scooter_description_video {
        width: 100%;
    }

    .scooter_description_picture {
        min-width: 450px;
        height: 420px;
    }
}

@media screen and (max-width: 1080px) {
    .scooter_description_1,
    .scooter_description_2 {
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .scooter_description_2 {
        flex-direction: column-reverse;
        gap: 24px;
    }

    .scooter_description_video_container {
        margin-bottom: 24px;
    }
}

@media screen and (max-width: 672px) {
    .scooter_description_rec_1 {
        display: none;
    }

    .scooter_description_rec_2 {
        display: none;
    }

    .feedback_rec {
        display: none;
    }

    img.scooter_description_photo,
    .scooter_description_video_container {
        clip-path: none;
    }

    .scooter_description_1 {
        gap: 24px;
    }

    .scooter_description_picture {
        min-width: auto;
        height: auto;
    }

    .scooter_description_video {
        clip-path: none;
    }
}
