@font-face {
    font-family: 'FiraSansCondensed-Bold';
    src: url('../fonts/FiraSansCondensed-Bold.ttf');
}

@font-face {
    font-family: 'FiraSansCondensed-Light';
    src: url('../fonts/FiraSansCondensed-Light.ttf');
}

@font-face {
    font-family: 'FiraSansCondensed-Medium';
    src: url('../fonts/FiraSansCondensed-Medium.ttf');
}

@font-face {
    font-family: 'FiraSansCondensed-MediumItalic';
    src: url('../fonts/FiraSansCondensed-MediumItalic.ttf');
}

@font-face {
    font-family: 'FiraSansCondensed-Regular';
    src: url('../fonts/FiraSansCondensed-Regular.ttf');
}

@font-face {
    font-family: 'NotoSans-Bold';
    src: url('../fonts/NotoSans-Bold.ttf');
}

@font-face {
    font-family: 'NotoSansDisplay-Italic';
    src: url('../fonts/NotoSansDisplay-Italic.ttf');
}

@font-face {
    font-family: 'NotoSansDisplay-Regular';
    src: url('../fonts/NotoSansDisplay-Regular.ttf');
}

@font-face {
    font-family: 'Roboto-Regular';
    src: url('../fonts/Roboto-Regular.ttf');
}

@font-face {
    font-family: 'Roboto-Bold';
    src: url('../fonts/Roboto-Bold.ttf');
}

@font-face {
    font-family: 'Roboto-Black';
    src: url('../fonts/Roboto-Black.ttf');
}

@font-face {
    font-family: 'Roboto-Italic';
    src: url('../fonts/Roboto-Italic.ttf');
}

@font-face {
    font-family: 'Roboto-Light';
    src: url('../fonts/Roboto-Light.ttf');
}

@font-face {
    font-family: 'Roboto-ExtraBold';
    src: url('../fonts/Roboto-ExtraBold.ttf');
}

@font-face {
    font-family: 'OpenSans-ExtraBold';
    src: url('../fonts/OpenSans-ExtraBold.ttf');
}

@font-face {
    font-family: 'OpenSans-SemiBold';
    src: url('../fonts/OpenSans-SemiBold.ttf');
}

@font-face {
    font-family: 'SourceSansPro-Black';
    src: url('../fonts/SourceSansPro-Black.ttf');
}

@font-face {
    font-family: 'SourceSansPro-Bold';
    src: url('../fonts/SourceSansPro-Bold.ttf');
}

@font-face {
    font-family: 'SourceSansPro-SemiBold';
    src: url('../fonts/SourceSansPro-SemiBold.ttf');
}

@font-face {
    font-family: 'SourceSansPro-Light';
    src: url('../fonts/SourceSansPro-Light.ttf');
}

@font-face {
    font-family: "Lato-Black";
    src: url("../fonts/Lato-Black.ttf");
}

@font-face {
    font-family: "Inter-Black";
    src: url("../fonts/Inter-Black.otf");
}

@font-face {
    font-family: "Signika-Bold";
    src: url("../fonts/Signika-Bold.ttf");
}

@font-face {
    font-family: "SegoeUI-Regular";
    src: url("../fonts/SegoeUI.ttf");
}

@font-face {
    font-family: "SegoeUI-SemiBold";
    src: url("../fonts/SegoeUI-SemiBold.ttf");
}

@font-face {
    font-family: "SegoeUI-Bold";
    src: url("../fonts/SegoeUI-Bold.ttf");
}

@font-face {
    font-family: "Circe-Regular";
    src: url("../fonts/Circe-Regular.ttf");
}

* {
    margin: 0;
}

html {
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
    color: black;
}

.scrollToForm {
    cursor: pointer;
}

/* Header */

.header_top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 70px;
}

.socials_header {
    display: flex;
    gap: 16px;
}

.socials_header img {
    width: 24px;
}

.logo {
    width: 225px;
}

.right_top {
    display: none;
    align-items: center;
    gap: 24px;
}

.search {
    width: 24px;
}

.header_middle {
    display: flex;
    justify-content: space-between;
    list-style: none;
    padding: 16px 70px;
    color: #952A72;
    font-family: "FiraSansCondensed-MediumItalic";
}

.header_bottom {
    background-color: rgb(255, 223, 226, .5);
    display: flex;
    padding: 8px 70px;
    list-style: none;
    gap: 24px;
    color: #952A72;
    font-family: "FiraSansCondensed-Medium";
}

@media screen and (max-width: 1190px) {

    .header_middle li:nth-last-child(1),
    .header_middle li:nth-last-child(2) {
        display: none;
    }
}

@media screen and (max-width: 1050px) {

    .header_middle li:nth-last-child(3),
    .header_middle li:nth-last-child(4) {
        display: none;
    }
}

@media screen and (max-width: 930px) {

    .header_middle li:nth-last-child(5),
    .header_middle li:nth-last-child(6) {
        display: none;
    }
}

@media screen and (max-width: 769px) {
    .header_top {
        padding: 56px 16px 8px;
    }

    .logo {
        width: 118px;
    }

    .socials_header,
    .search,
    .header_middle {
        display: none;
    }

    .right_top {
        display: flex;
    }

    .right_top img {
        width: 24px;
    }

    .header_bottom {
        padding: 8px 16px;
    }
}


/* Final header */

/* Main */

/* Заголовок/подзаголовок */

.title_main {
    font-family: 'FiraSansCondensed-Bold';
    font-size: 36px;
    margin: 16px 70px;
}

.title_main span {
    background-color: #e54e6f;
    color: white;
}

.h3 {
    font-family: 'FiraSansCondensed-Bold';
    font-size: 24px;
    margin: 16px 70px;
    color: #952A72;
}

@media screen and (max-width: 769px) {
    .title_main {
        font-size: 32px;
        margin: 8px 16px 8px;
    }

    .h3 {
        margin: 8px 16px;
        font-size: 20px;
    }
}

/* Конец заголовка/подзаголовка */

/* Фото 1 */

.photo_center {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 8px auto;
    max-width: 1024px;
}

.photo_center img {
    width: 100%;
}

.photo_center span {
    text-align: center;
    padding: 8px 0 0;
    font-family: 'Circe-Regular';
    width: 100%;
    font-size: 14px;
    width: 95%;
}

@media screen and (max-width: 1170px) {
    .photo_center {
        max-width: 100%;
        margin: 8px 70px;
    }
}

@media screen and (max-width: 769px) {
    .photo_center {
        margin: 8px 0;
        width: auto;
    }
}

/* Конец фото 1 */



/* Средняя часть ниже фото */

.middle_info {
    margin: 16px 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.left_info {
    display: flex;
    align-items: center;
    gap: 32px;
    height: 64px;
    font-family: "FiraSansCondensed-Light";
    font-size: 13px;
}

.left_info img {
    width: 40px;
}

.line {
    height: 100%;
    border: 0.5px solid rgb(0, 0, 0, .1);
}

.right_info {
    display: flex;
    align-items: center;
    gap: 24px;
}

.like {
    display: flex;
    align-items: center;
    background-color: #396FD8;
    padding: 8px 16px;
    border-radius: 50px;
    gap: 8px;
    font-family: "FiraSansCondensed-Regular";
    color: white;
    font-size: 13px;
}

.like img {
    width: 16px;
}

.x_twitter {
    display: flex;
    align-items: center;
    background-color: #1D1D1D;
    padding: 8px 16px;
    border-radius: 50px;
    gap: 8px;
    font-family: "FiraSansCondensed-Regular";
    color: white;
    font-size: 13px;
}

.x_twitter img {
    width: 16px;
}

@media screen and (max-width: 850px) {
    .left_info {
        gap: 12px;
    }
}

@media screen and (max-width: 769px) {
    .middle_info {
        margin: 16px;
        height: fit-content;
    }

    .left_info {
        width: 183px;
        flex-wrap: wrap;
        gap: 24px;
    }

    .right_info {
        flex-direction: column;
        align-items: flex-end;
    }

    .line {
        display: none;
    }
}

/* Конец средней части ниже фото */


/* Текст простой и жирный */

.text__bold {
    font-family: 'FiraSansCondensed-Bold';
    font-size: 20px;
    margin: 16px 70px;
}

.text_simple {
    font-family: 'Roboto-Light';
    font-size: 20px;
    margin: 16px 70px;
}

.text_simple span {
    color: red;
    font-weight: bold;
}

.text_simple b {
    font-family: 'FiraSansCondensed-Bold';
}

.text_extrabold {
    font-family: 'FiraSansCondensed-Bold';
    font-size: 36px;
    color: #952A72;
    margin: 16px 70px;
}

.inter {
    font-family: 'FiraSansCondensed-Bold';
    font-style: italic;
    font-size: 20px;
    margin: 16px 70px;
}

@media screen and (max-width: 769px) {

    .text_simple,
    .text_extrabold,
    .inter,
    .text__bold {
        margin: 16px;
    }
}

/* Конец текста простого и жирного */


/* Розовая таблица */

.pink_back {
    border: 2px solid black;
    background-color: #f0cddf;
    padding: 16px;
    margin: 16px 70px;
}

.pink_back p {
    font-family: 'FiraSansCondensed-Bold';
    font-style: italic;
    font-size: 20px;
    padding-bottom: 16px;
}

.pink_back ul {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-family: 'Roboto-Light';
    font-size: 20px;
}

@media screen and (max-width: 769px) {
    .pink_back {
        margin: 16px;
    }
}


/* Конец розовой таблицы */


/* Фото 2 */

.photo_center1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 16px auto;
    max-width: 818px;
}

.photo_center1 img {
    width: 100%;
}

.photo_center1 span {
    text-align: center;
    padding: 8px 0 0;
    font-family: 'Circe-Regular';
    width: 100%;
    font-size: 14px;
    width: 95%;
}


@media screen and (max-width: 960px) {
    .photo_center1 {
        margin: 16px 70px;
    }

    .photo_center1 img {
        max-width: fit-content;
        width: 100%;
    }
}

@media screen and (max-width: 769px) {
    .photo_center1 {
        margin: 0;
    }
}

/* Конец фото 2 */



/* Цитата */

.blue_left {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    border-top: 3px solid #952A72;
    border-bottom: 3px solid #952A72;
    padding: 16px;
    gap: 8px;
    margin: 48px auto;
    max-width: 1236px;
}

.blue_left img {
    width: 54px;
}

.blue_left p {
    font-family: "NotoSansDisplay-Regular";
    font-size: 20px;
    color: #952A72;
}

.blue_left p span {
    font-weight: bold;
    color: red;
}


@media screen and (max-width: 769px) {
    .blue_left {
        margin: 32px 0;
    }

    .blue_left p {
        font-size: 16px;
    }
}

/* Конец цитаты */


/* Розовая таблица 2 */

.pink_table {
    border: 2px solid #de3488;
    background-color: #f0cddf;
    margin: 16px 70px;
    padding: 16px;
}

.pink_table ul {
    display: flex;
    flex-direction: column;
    list-style-type: none;
    padding-left: 0;
    font-family: 'Roboto-Light';
    font-size: 20px;
    line-height: 30px;
}

@media screen and (max-width: 769px) {
    .pink_table {
        margin: 16px;
    }
}


/* Конец розовой таблицы 2 */


/* Кето Слим */
.keto {
    display: flex;
    align-items: center;
    flex-direction: column;
    margin: 32px 70px;
}

.prod_ {
    display: flex;
    width: 100%;
    align-items: center;
    flex-direction: row-reverse;
    justify-content: space-between;
    gap: 16px;
    max-width: 1266px;
}

.prod {
    max-width: 537px;
}

.table {
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 32px;
}

.text_bold {
    font-family: "Roboto-Bold";
    font-size: 40px;
    color: #952A72;
    text-align: center;
}

.point {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 731px;
}

.point_1 {
    display: flex;
    align-items: center;
    gap: 16px;
}

.point_1 img {
    width: 64px;
}

.point_1 b {
    font-size: 24px;
    color: #952A72;
    font-family: "Roboto-Bold";
}

.point p {
    border-left: 4px solid #952A72;
    padding: 8px 24px;
    font-family: "Roboto-Regular";
    font-size: 18px;
    background: #F3F5FB;
}

@media screen and (max-width: 1410px) {
    .keto {
        margin: 16px 70px;
    }

    .point {
        max-width: 530px;
    }
}

@media screen and (max-width: 1100px) {
    .keto {
        border: 1px solid #ABADC6;
        padding: 24px 16px;
    }

    .prod_ {
        flex-direction: column;
        gap: 32px;
    }

    .prod {
        max-width: 500px;
    }
}

@media screen and (max-width: 880px) {
    .point {
        width: 100%;
    }
}


@media screen and (max-width: 769px) {
    .keto {
        margin: 0 16px;
    }

    .prod {
        max-width: 100%;
    }
}

/* Конец Кето Слим */

/* Plus */

.plus {
    margin: 16px 70px;
    list-style: none;
    padding-left: 0;
    font-family: 'Roboto-Light';
    font-size: 20px;
    line-height: 32px;
}

@media screen and (max-width: 769px) {
    .plus {
        margin: 16px;
    }
}

/* Final plus */


/* Знак качества */

.garant_ {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 32px 0;
}

.garant_img {
    max-width: 367px;
}

@media screen and (max-width: 769px) {
    .garant_ {
        margin: 16px 0;
    }

    .garant_img {
        width: 230px;
    }
}

/* Конец знака качества */



/* Комментарий пользователя */

.vlasta_main {
    background-color: #FFDFE2;
    margin: 16px 0;
    padding: 24px 70px;
}

.bottom {
    margin: 16px 0 48px;
}

.vlasta {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 16px auto 32px;
    background-color: white;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    border-bottom-right-radius: 16px;
    padding: 24px 24px;
    max-width: 572px;
    flex-direction: column;
    gap: 8px;
    position: relative;
}

.vlasta_img {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.paula {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: "Roboto-Bold";
    color: #BE5460;
}

.vlasta__img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
}

.vlasta_ {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.vlasta_ img {
    max-width: 100%;
}

.vlasta_ p {
    font-family: "Roboto-Italic";
}

.vlasta_ p span {
    color: red;
    font-weight: bold;
}

.stars {
    display: flex;
}

.stars img {
    width: 24px;
}

.triangle {
    width: 89px;
    position: absolute;
    left: 0;
    bottom: -40px;
}

@media screen and (max-width: 769px) {
    .vlasta_main {
        padding: 24px 16px;
    }
}

/* Конец комментария пользователя */


/* Розовая таблица 3 */

.pink_table1 {
    margin: 16px 70px;
    padding: 16px;
    border: 2px solid #dd3486;
    background-color: #f0cddf;
    font-family: 'FiraSansCondensed-Bold';
    font-size: 20px;
    text-align: center;
    color: red;
}

@media screen and (max-width: 769px) {
    .pink_table1 {
        margin: 16px;
    }
}


/* Конец розовой таблицы 3 */


/* Условия пользования */

.warunki {
    border: 2px dashed #952A72;
    margin: 40px auto;
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 32px;
    border-radius: 8px;
    gap: 48px;
    max-width: 768px;
}

.warunki_title {
    font-family: "Roboto-Black";
    font-size: 24px;
    margin: 0 auto;
    text-transform: uppercase;
    color: #952A72;
    max-width: 529px;
    text-align: center;
}

.point_ {
    display: flex;
    align-items: center;
    gap: 24px;
}

.point_ img {
    width: 48px;
    height: 48px;
}

._point_ {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

._point_ p:first-of-type {
    font-family: "Roboto-Black";
    font-size: 16px;
    color: #952A72;
}

._point_ p:last-of-type {
    font-family: "Roboto-Regular";
    font-size: 16px;
    color: #952A72;
}

@media screen and (max-width: 1015px) {
    .warunki {
        max-width: fit-content;
        width: 100%;
        margin: 32px 70px;
    }
}

@media screen and (max-width: 769px) {
    .warunki {
        margin: 32px 16px;
        padding: 32px;
        border: 1px solid #EDEDED;
        border-radius: 8px;
    }
}

/* Конец условий пользования */


/* Форма */

/* .nota {
    padding: 24px;
    display: flex;
    justify-content: center;
    margin: 88px auto 32px;
    flex-direction: column;
    gap: 36px;
    max-width: 658px;
    border: 2px dashed #9F6766;
    border-radius: 16px;
    position: relative;
}

.med_photo {
    position: absolute;
    width: 90px;
    height: 90px;
    left: 50%;
    top: 0;
    transform: translate(-50%, -50%);
}

.form_top {
    display: flex;
    align-items: center;
    gap: 36px;
    margin-bottom: 36px;
}

.price {
    display: flex;
    align-items: center;
    gap: 4px;
}

.price p {
    font-family: "Lato-Black";
}

.price p:first-of-type {
    text-decoration: line-through;
    opacity: 40%;
    font-size: 24px;
}

.price p:nth-child(2) {
    font-size: 29px;
}

.price p:last-of-type {
    color: #FF4800;
    font-size: 29px;
}

.top_left {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 304px;
}

.top_right {
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 289px !important;
}

.top_right img {
    width: 167px;
}

.form_select {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form_select p {
    font-family: 'SourceSansPro-Black';
    color: #9F6766;
    font-size: 18px;
}

select {
    padding: 8px 16px;
    border-radius: 8px;
    appearance: none;
    background-color: #F1F1F1;
    background-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="black"><path d="M7 10l5 5 5-5H7z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
    border: none;
    font-family: 'SourceSansPro-Light';
    font-size: 16px;
}

select:focus {
    outline: none;
    border: none;
}

input {
    padding: 8px 16px;
    border-radius: 8px;
    border: none;
    background-color: #F1F1F1;
}

input:focus {
    outline: none;
    border: none;
}

.timer {
    display: flex;
    gap: 40px;
    align-items: center;
    justify-content: center;
}

.hours,
.minutes,
.seconds {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.timer p:first-of-type {
    font-family: 'Signika-Bold';
    font-size: 24px;
    color: #132125;
    background-color: white;
    padding: 8px 54px;
    border-radius: 8px;
    box-shadow: 0px 0px 16.6px rgb(159, 103, 102, .3);
}


.comand_button {
    margin: 36px auto 0;
    display: flex;
    width: fit-content;
    background-color: #9F6766;
    border-radius: 8px;
    border: none;
    padding: 16px;
    font-family: 'SourceSansPro-Bold';
    font-size: 24px;
    color: white;
    cursor: pointer;
}

.comand_button a {
    color: white;
}

@media screen and (max-width: 769px) {
    .nota {
        margin: 56px 16px;
        border-color: #952A72;
    }

    .nota_text {
        font-family: 'SourceSansPro-Bold';
        font-size: 20px;
    }

    .form {
        padding: 16px 0 0 0;
    }

    .form_title {
        padding: 0 16px;
        font-size: 24px;
        font-family: 'SourceSansPro-Bold';
    }

    .formm {
        margin: 0 0 16px 0;
        width: auto !important;
        border-radius: 0;
    }

    .form_top {
        flex-direction: column;
        align-items: center;
        margin-bottom: 24px;
        gap: 24px;
    }

    .form_select p {
        font-family: 'SourceSansPro-SemiBold';
        font-size: 16px;
        color: #952A72;
    }

    .name_prod {
        font-size: 32px;
    }

    .form_bottom p {
        font-family: 'Signika-Regular';
        font-size: 16px;
    }

    .form_bottom {
        margin: 0 24px;
    }

    .timer {
        margin: 32px 0;
        gap: 8px;
    }

    .timer p:first-of-type {
        font-size: 14px;
        padding: 6px 35px;
    }

    .comand_button {
        font-size: 24px;
        margin: 0 auto;
        background-color: #952A72;
    }
}

@media screen and (max-width: 530px) {
    .nota {
        padding: 48px 24px 16px;
    }
} */

/* Конец формы */



/* Внимание */

.attention {
    font-family: "Inter-Black";
    font-size: 40px;
    margin: 0 16px;
    color: #e13088;
    display: flex;
    justify-content: center;
    text-align: center;
}

@media screen and (max-width: 1270px) {
    .attention {
        margin: 0 70px;
    }
}

@media screen and (max-width: 769px) {
    .attention {
        font-size: 24px;
        margin: 0 16px;
    }
}

/* Конец внимания */

/* Комментарии */

.comments {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin: 40px 70px 0 70px;
}

.comments_top {
    display: flex;
    justify-content: space-between;
}

.comments_top p {
    background-color: #952A72;
    margin: 0;
    padding: 8px;
    font-size: 24px;
    color: white;
    font-family: 'Roboto-ExtraBold';
    border-bottom-right-radius: 16px;
}

.socials2 {
    border-top: 2px solid #952A72;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 24px;
}

.socials2 a {
    height: 16px;
}

.socials2 img {
    width: 16px;
}

.comments_bottom {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: auto;
}


.comment,
.comment1 {
    width: auto;
    display: flex;
    gap: 4px;
    align-items: flex-start;
}

.comment1 {
    margin-left: 44px;
}

.comment_right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.text_top {
    display: flex;
    box-sizing: border-box;
    flex-direction: column;
    width: 100%;
    background-color: #F1F1F1;
    border-radius: 8px;
    padding: 8px 12px;
    gap: 4px;
}

.text_top p:first-child {
    font-family: 'SegoeUI-SemiBold';
    font-size: 13px;
    color: #080809;
}

.text_top p:nth-child(2) {
    font-family: 'SegoeUI-Regular';
    font-size: 15px;
    color: #080809;
}

.text_top p:nth-child(2) span {
    font-weight: bold;
    color: red;
}

.comm_img {
    max-width: 660px;
}

.photo_user {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.likes_date {
    display: flex;
    align-items: center;
    gap: 32px;
}

.likes_date p:first-of-type {
    font-family: 'SegoeUI-Bold';
    font-size: 12px;
    color: #65686C;
}

.likes {
    display: flex;
    align-items: center;
    gap: 8px;
}

.likes img {
    width: 24px;
}

.likes p {
    font-family: 'SegoeUI-SemiBold';
    font-size: 12px;
    color: #65686C;
}

@media screen and (max-width: 870px) {
    .comm_img {
        max-width: 100%;
    }
}

@media screen and (max-width: 769px) {
    .comments {
        margin: 40px 16px 0 16px;
    }

    .comments_top p {
        font-size: 20px;
    }

    /* .comm_img:first-of-type {
        width: 260px;
    } */
}

/* Конец комментариев */

/* Кнопка нижняя */

.button_bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 32px auto;
    background-color: #952A72;
    border: none;
    border-radius: 8px;
    padding: 16px;
    font-family: 'Inter-Black';
    font-size: 20px;
    color: white;
    cursor: pointer;
}

@media screen and (max-width: 769px) {
    .button_bottom {
        font-size: 20px;
    }
}

/* Кнопка нижняя */

/* Final main */

/* Footer */

footer {
    background-color: #952A72;
    padding: 32px 70px;
}

.footer_top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.socials_footer {
    display: flex;
    gap: 16px;
}

.socials_footer img {
    width: 24px;
}

.logo_footer {
    width: 225px;
}

.search_footer {
    width: 24px;
}

.footer_bottom {
    display: flex;
    justify-content: space-between;
    list-style: none;
    padding: 16px 0 0;
    color: white;
    font-family: "FiraSansCondensed-MediumItalic";
}

@media screen and (max-width: 1350px) {
    .footer_bottom {
        gap: 43px;
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media screen and (max-width: 769px) {
    .search_footer {
        display: none;
    }

    .footer_bottom {
        justify-content: flex-start;
    }

    .footer_top {
        flex-direction: column-reverse;
        gap: 32px;
        align-items: baseline;
    }
}

/* Final footer */









/* New form */


.v-order-wrapper-fon-bg2 {
    max-width: 830px;
    margin: 0 auto 40px;
    border: 1px solid #f3e8cb;
    padding: 10px;
    -webkit-box-shadow: 0 14px 14px rgba(0, 0, 0, 0.25),
        0 5px 5px rgba(0, 0, 0, 0.25);
    box-shadow: 0 14px 14px rgba(0, 0, 0, 0.25),
        0 5px 5px rgba(0, 0, 0, 0.25);
    background: -webkit-gradient(linear,
            left top,
            left bottom,
            from(#f3e8cb),
            to(#fffbf0));
    background: -o-linear-gradient(#f3e8cb, #fffbf0);
    background: linear-gradient(#f3e8cb, #fffbf0);
}

@media (max-width: 720px) {
    .v-order-wrapper-fon-bg2 .vik-winners-bl .left_block {
        background: transparent;
        margin-bottom: 20px;
    }

    .v-order-wrapper-fon-bg2 {
        border-radius: 15px;
        padding: 0;
    }
}

@media only screen and (max-width: 500px) {
    .vik-winners-bl .lb_top {
        padding: 10px 10px 10px 30px;
    }

    .vik-winners-bl .lb_top:before {
        top: 5px;
        left: 5px;
        width: 20px;
        height: 25px;
        background-size: 100%;
    }

    .vik-winners-bl .lbt_text_1 {
        font-size: 18px;
        line-height: 20px;
    }

    .vik-winners-bl .lbt_text_2 {
        margin-top: 5px;
    }

    .vik-winners-bl .lb_text {
        font-size: 26px;
        line-height: 27px;
        margin-top: 20px;
    }

    .vik-winners-bl .lb_text>span {
        font-size: 40px;
        line-height: 41px;
    }
}

.vik-winners-bl .left_block {
    display: block;
    max-width: 100%;
    width: auto;
    margin: 0 auto;
    padding: 50px;
    background: #f9f9f9;
    font-family: PFRegal, Georgia, serif;
}

.vik-winners-bl .lb_top,
.vik-winners-bl .wins {
    background: #fff;
}

.vik-winners-bl .lb_top {
    border: 1px solid #b5b5b5;
    border-radius: 15px;
    padding: 20px;
    position: relative;
}

.vik-winners-bl .lb_top:before {
    display: block;
    content: "";
    width: 40px;
    height: 50px;
    position: absolute;
    top: 25px;
    left: 25px;
}

.vik-winners-bl .lbt_text_1 {
    font-size: 20px;
    line-height: 30px;
    color: #272727;
    text-align: center;
}

.vik-winners-bl .lbt_text_2 {
    font-size: 13px;
    line-height: 15px;
    color: #626262;
    margin-top: 10px;
    margin-bottom: 0 !important;
    text-align: center;
}

.vik-winners-bl .lb_text {
    text-transform: uppercase;
    font-size: 40px;
    line-height: 44px;
    text-transform: uppercase;
    margin: 50px 0 15px;
    text-align: center;
}

.vik-winners-bl .lb_text>span {
    display: inline-block;
    font-size: 30px;
    line-height: 76px;
}

.vik-winners-bl .wins {
    border: 1px solid #d8d8d8;
    border-radius: 15px;
}

.vik-winners-bl .win_line {
    display: table;
    max-width: 100%;
    width: 100%;
    height: 40px;
    border-bottom: 1px solid #d8d8d8;
    margin: 0 !important;
}

.vik-winners-bl .win_line>div {
    display: table-cell;
    vertical-align: middle;
    width: 50%;
    padding: 0 5px 0 15px;
    font-size: 17px;
    line-height: 19px;
}

.vik-winners-bl .win_line:first-child {
    background: linear-gradient(89.47deg,
            #ed7b22 0,
            #f59a14 100%);
}

.vik-winners-bl .win_line:last-child {
    border-bottom: none;
}

@media only screen and (max-width: 1100px) {
    .vik-winners-bl .left_block {
        display: block;
    }
}

@media only screen and (max-width: 1000px) {
    .vik-winners-bl .left_block {
        padding: 30px 10px;
    }
}

@media only screen and (max-width: 880px) {
    .vik-winners-bl .left_block {
        max-width: 100%;
        float: none;
    }

    .vik-winners-bl .lb_text {
        text-align: center;
    }
}

@media (max-width: 720px) {
    .vik-winners-bl .win_line:first-child {
        display: none;
    }

    .vik-winners-bl .win_line {
        display: flex;
        align-items: center;
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }

    .vik-winners-bl .win_line>div {
        width: 100% !important;
    }
}

@media only screen and (max-width: 500px) {
    .vik-winners-bl .lb_top:before {
        top: 5px;
        left: 5px;
        width: 20px;
        height: 25px;
        background-size: 100%;
    }

    .vik-winners-bl .lbt_text_1 {
        font-size: 18px;
        line-height: 20px;
    }

    .vik-winners-bl .lbt_text_2 {
        margin-top: 5px;
    }

    .vik-winners-bl .lb_text {
        font-size: 26px;
        line-height: 27px;
        margin-top: 20px;
    }

    .vik-winners-bl .lb_text>span {
        font-size: 40px;
        line-height: 41px;
    }
}

@media only screen and (max-width: 450px) {
    .vik-winners-bl .win_line>div {
        padding: 0 !important;
        font-size: 15px !important;
        line-height: 19px !important;
    }
}

@media (max-width: 460px) {
    .vik-winners-bl .left_block {
        padding: 0 !important;
    }

    .vik-winners-bl .win_line>div {
        width: auto;
    }

    .vik-winners-bl .win_line>div {
        font-size: 14px !important;
        margin-bottom: 0 !important;
    }

    .vik-winners-bl .lb_text>span {
        font-size: 20px;
    }

    .vik-winners-bl .lb_top {
        padding: 10px;
    }
}

.api-form1 {
    background: #fff !important;
    display: grid;
    grid-template-columns: 40% 60%;
    align-items: center;
    max-width: 900px !important;
    border: none !important;
    padding: 15px;
}

/* .product-image1 img {
    max-width: 100% !important;
    width: 100% !important;
} */

.api-form1 .form-body {
    max-width: 494px !important;
    margin: 0 auto 0 auto !important;
}

.api-form1 .form-body .text {
    font-family: Open Sans !important;
    font-size: 20px !important;
    font-weight: 400 !important;
    line-height: 27.24px !important;
    text-align: center !important;
    color: #222222 !important;
}

.api-form1 .form-body .text .offer-name {
    font-family: Open Sans !important;
    font-size: 20px !important;
    font-weight: 600 !important;
    line-height: 27.24px !important;
    color: #ff396f !important;
}

.api-form1 .form-body .text .offer-name,
.api-form1 .form-body .text .offer-price {
    color: #ff396f !important;
}

.api-form1 .form-body .text .special_text {
    color: red;
    font-size: 40px !important;
    font-weight: 700 !important;
    line-height: 54.47px !important;
    text-align: center !important;
    text-transform: uppercase !important;
}

.api-form1 .deadline1 {
    font: 700 17px / 1.7 roboto, sans-serif !important;
    color: #222 !important;
    text-align: center !important;
    margin: 0 !important;
}

.time_remains {
    font-size: 24px !important;
    font-weight: 700 !important;
    line-height: 22.68px !important;
    color: #ff396f !important;
}

.api-form1 form {
    margin: 20px auto 0 !important;
}

.form_control_vik_group input.form_control_vik.name,
.form_control_vik_group input.form_control_vik.phone {
    background: #ededed !important;
    box-shadow: 0 2px 4px 0 #00000040 !important;
    font-family: Open Sans;
    font-size: 18px !important;
    font-weight: 400 !important;
    line-height: 29.51px !important;
    text-align: left !important;
    border-radius: 20px !important;
    color: #9f9f9f !important;
    max-width: 100% !important;
    width: 100% !important;
    padding: 15px;
    border: 1px solid #ddd !important;
    box-sizing: border-box;
}

.api-form1 .form_control_vik_group {
    margin: 0 0 20px 0 !important;
}

.cta-btn1 a,
.cb-con .submit,
.api-form1 .submit,
.cb-but,
.blg {
    font-family: Open Sans !important;
    font-size: 30px !important;
    font-weight: 700 !important;
    padding: 10px 0 10px 0 !important;
    line-height: 40.85px !important;
    border-radius: 25px !important;
    border: 2px solid #80309c !important;
    box-shadow: 0 2px 4px 0 #00000040 !important;
    background: linear-gradient(0deg,
            #da71ff 0%,
            #b254d3 25%,
            #953fb3 50%,
            #b254d3 75%,
            #ebb3ff 100%) !important;
    color: #ffffff;
    width: 100%;
    cursor: pointer;
    transition: 0.5s ease;
}

.blg:hover {
    transform: translateY(-3px);
}

.api-form1 .footnote1 {
    font-size: 12px !important;
}

.api-form1 .cta-form1 {
    padding-right: 20px !important;
}

@media (max-width: 768px) {
    .api-form1 {
        display: block;
        align-items: center;
        max-width: 346px !important;
        margin: 0 auto;
    }

    .api-form1 .form-body {
        max-width: 300px !important;
        margin: 0 auto 0 auto !important;
    }

    /* .product-image1 img {
        max-width: 100% !important;
        width: 71% !important;
    } */

    .api-form1 .form-body .text {
        font-family: Open Sans !important;
        font-size: 16px !important;
        font-weight: 400 !important;
        line-height: 21.79px !important;
        text-align: center !important;
        color: #222222 !important;
    }

    .api-form1 .form-body .text .offer-name {
        font-family: Open Sans !important;
        font-size: 16px !important;
        font-weight: 600 !important;
        line-height: 21.79px !important;
        color: #ff396f !important;
    }

    .api-form1 .form-body .text .offer-name,
    .api-form1 .form-body .text .offer-price {
        color: #ff396f !important;
    }

    .api-form1 .form-body .text .special_text {
        font-size: 36px !important;
        font-weight: 700 !important;
        line-height: 49.03px !important;
        text-align: center !important;
        text-transform: uppercase !important;
    }

    .api-form1 .deadline1 {
        margin: auto !important;
        max-width: 300px !important;
        font-size: 14px !important;
        line-height: 19.51px;
        font-weight: 400 !important;
    }

    .api-form1 .ftimer {
        display: block;
        text-align: center;
    }

    .api-form1 .msbr {
        display: block;
        text-align: center;
    }

    .time_remains {
        font-size: 20px !important;
        font-weight: 700 !important;
        line-height: 22.68px !important;
        color: #ff396f !important;
    }

    .api-form1 form {
        margin: 20px auto 0 !important;
    }

    .form_control_vik_group input.form_control_vik.name,
    .form_control_vik_group input.form_control_vik.phone {
        font-size: 14px !important;
        line-height: 25.51px !important;
    }

    .api-form1 .form_control_vik_group {
        margin: 0 0 20px 0 !important;
    }

    .api-form1 .footnote1 {
        font-size: 8px !important;
    }

    .api-form1 .cta-form1 {
        padding-right: 0 !important;
    }

    .api-form1 form {
        padding: 0 !important;
        background: 0 0 !important;
        margin: 20px auto 0 !important;
        border: none;
    }
}