/* Wix Madefor Display */
@font-face {
    font-family: "Wix Madefor Display";
    src: url("../fonts/WixMadeforDisplay/WixMadeforDisplay-ExtraBold.ttf");
    font-weight: 800;
}
@font-face {
    font-family: "Wix Madefor Display";
    src: url("../fonts/WixMadeforDisplay/WixMadeforDisplay-Bold.ttf");
    font-weight: 700;
}
@font-face {
    font-family: "Wix Madefor Display";
    src: url("../fonts/WixMadeforDisplay/WixMadeforDisplay-SemiBold.ttf");
    font-weight: 600;
}
@font-face {
    font-family: "Wix Madefor Display";
    src: url("../fonts/WixMadeforDisplay/WixMadeforDisplay-Medium.ttf");
    font-weight: 500;
}
@font-face {
    font-family: "Wix Madefor Display";
    src: url("../fonts/WixMadeforDisplay/WixMadeforDisplay-Regular.ttf");
    font-weight: 400;
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Wix Madefor Display", sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    overflow: auto;
}

body.no-scroll {
    overflow: hidden;
}

.container {
    width: 1600px;
    margin: 0 auto;
}
@media screen and (max-width: 1650px) {
    .container {
        width: 1400px;
    }
}
@media screen and (max-width: 1450px) {
    .container {
        width: 1200px;
    }
}
@media screen and (max-width: 1250px) {
    .container {
        width: 1000px;
    }
}
@media screen and (max-width: 1050px) {
    .container {
        width: 800px;
    }
}
@media screen and (max-width: 850px) {
    .container {
        width: 600px;
    }
}
@media screen and (max-width: 650px) {
    .container {
        width: 100%;
        padding: 0 16px;
    }
}

a {
    text-decoration: none;
}

.button {
    border: none;
    cursor: pointer;
    border-radius: 10px;
    padding: 15px 30px;
    background: linear-gradient(180deg, #2f84e5 0%, #0f4c92 100%);
    font-weight: 600;
    font-size: 16px;
    line-height: 150%;
    color: #fff;
    width: max-content;
    transition: 0.3s;
    text-align: center;
}
.button:hover {
    background: linear-gradient(180deg, #0f4c92 0%, #0f4c92 100%);
}
.button.reset {
    color: #1c1c1d;
    background: #f4f6fd;
}
.button.reset:hover {
    background: #0f4c92;
    color: #fff;
}
@media screen and (max-width: 650px) {
    .button {
        font-size: 14px;
    }
}

.show_button {
    font-weight: 500;
    font-size: 18px;
    line-height: 140%;
    text-align: center;
    color: #0f4c92;
    border: 1px solid #0f4c92;
    border-radius: 100px;
    padding: 7px 15px;
    cursor: pointer;
    transition: 0.3s;
    width: max-content;
}
.show_button:hover {
    color: #fff;
    background: #0f4c92;
}
@media screen and (max-width: 850px) {
    .show_button {
        font-size: 14px;
    }
}

li {
    text-decoration: none;
    list-style: none;
}

input:focus,
select:focus,
textarea:focus,
button:focus {
    outline: none !important;
    border-color: #0f4c92 !important;
}

summary::marker,
summary::-webkit-details-marker {
    display: none;
    content: "";
}

.h2 {
    font-weight: 600;
    font-size: 48px;
    line-height: 110%;
    color: #1c1c1d;
}
.h2 span {
    color: #0f4c92;
}
@media screen and (max-width: 1250px) {
    .h2 {
        font-size: 40px;
    }
}
@media screen and (max-width: 850px) {
    .h2 {
        font-size: 32px;
    }
}
@media screen and (max-width: 650px) {
    .h2 {
        font-size: 28px;
    }
}

.icon_h2 {
    display: flex;
    align-items: center;
    gap: 20px;
}
.icon_h2 .icon {
    width: 45px;
    height: 45px;
}
@media screen and (max-width: 650px) {
    .icon_h2 .icon {
        display: none;
    }
}

.bread_crumbs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
    margin: 40px 0;
}
.bread_crumbs .elem {
    font-weight: 500;
    font-size: 20px;
    line-height: 120%;
    color: #8c95a2;
}
.bread_crumbs .elem.no_active {
    color: #0f4c92;
}
@media screen and (max-width: 650px) {
    .bread_crumbs {
        gap: 5px;
        margin-bottom: 20px;
    }
    .bread_crumbs .elem {
        font-size: 14px;
    }
}
.bread_crumbs.red .elem {
    font-weight: 600;
    font-size: 24px;
    line-height: 110%;
}
.bread_crumbs.red .elem.active {
    color: #e2262e;
}
@media screen and (max-width: 650px) {
    .bread_crumbs.red .elem {
        font-size: 18px;
    }
}

.tabs {
    display: flex;
    flex-wrap: wrap;
    column-gap: 15px;
    row-gap: 20px;
    margin-bottom: 40px;
}
@media screen and (max-width: 850px) {
    .tabs {
        column-gap: 5px;
        row-gap: 20px;
        margin-bottom: 20px;
    }
}
.tabs .item {
    font-weight: 500;
    font-size: 18px;
    line-height: 140%;
    text-align: center;
    color: #1c1c1d;
    border: 1px solid #d7d9e0;
    border-radius: 100px;
    padding: 7px 15px;
    background: #fff;
    transition: 0.3s;
    cursor: pointer;
    white-space: nowrap;
}
@media screen and (max-width: 850px) {
    .tabs .item {
        padding: 4px 10px;
        font-size: 14px;
    }
}
.tabs .item:hover {
    background: #f4f6fd;
}
.tabs .item.active {
    background: #0f4c92;
    color: #fff;
}
.tabs .item:focus {
    background: #0f4c92;
    color: #fff;
}

.arrow_left,
.arrow_right {
    border-radius: 100px;
    background: #fff;
    border: 1px solid #d7d9e0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
}
.arrow_left:hover,
.arrow_right:hover {
    background: #0f4c92;
}
@media screen and (max-width: 850px) {
    .arrow_left,
    .arrow_right {
        width: 40px;
        height: 40px;
    }
    .arrow_left img,
    .arrow_right img {
        width: 8px;
    }
}

.key {
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    color: #8c95a2;
    margin-bottom: 10px;
}
.key.opacity {
    opacity: 0;
}

.value {
    font-weight: 500;
    font-size: 20px;
    line-height: 120%;
    color: #1c1c1d;
}

hr {
    height: 1px;
    border: 1px solid #d9d9d9;
    margin: 40px 0;
}

.go_back {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 40px;
}
@media screen and (max-width: 850px) {
    .go_back {
        margin-bottom: 20px;
    }
}
.go_back .text {
    font-weight: 500;
    font-size: 18px;
    line-height: 140%;
    color: #1c1c1d;
    transition: 0.3s;
}
.go_back .text:hover {
    color: #0f4c92;
}

.switching_pages {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}
.switching_pages .el {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    line-height: 105%;
    text-align: center;
    color: #8c95a2;
}
.switching_pages .el.item {
    transition: 0.3s;
    cursor: pointer;
}
.switching_pages .el.item.active,
.switching_pages .el.item:hover,
.switching_pages .el.item:focus {
    color: #e2262e;
}

.experience_link,
.quantity {
    display: none !important;
} /*# sourceMappingURL=style.css.map */
.promotion {
    padding-top: 100px;
}
@media screen and (max-width: 850px) {
    .promotion {
        padding-top: 70px;
    }
}
.promotion .container {
    position: relative;
}
.promotion .container .picture {
    width: 100%;
    height: 300px;
}
@media screen and (max-width: 1050px) {
    .promotion .container .picture {
        height: 370px;
    }
}
@media screen and (max-width: 650px) {
    .promotion .container .picture {
        height: 300px;
    }
}
.promotion .container .picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}
.promotion .container .picture .mobile {
    display: none;
}
@media screen and (max-width: 650px) {
    .promotion .container .picture .comp {
        display: none;
    }
    .promotion .container .picture .mobile {
        display: block;
        object-position: bottom;
    }
}
.promotion .container .inform {
    position: absolute;
    top: 64px;
    left: 70px;
}
@media screen and (max-width: 850px) {
    .promotion .container .inform {
        height: 60px;
        left: 40px;
    }
}
.promotion .container .inform .title {
    font-weight: 600;
    font-size: 48px;
    line-height: 110%;
    color: #fff;
}
@media screen and (max-width: 1250px) {
    .promotion .container .inform .title {
        font-size: 40px;
    }
}
@media screen and (max-width: 850px) {
    .promotion .container .inform .title {
        font-size: 32px;
    }
}
@media screen and (max-width: 650px) {
    .promotion .container .inform .title {
        font-size: 28px;
        max-width: 240px;
    }
}
.promotion .container .inform .description {
    font-weight: 600;
    font-size: 28px;
    line-height: 110%;
    color: #fff;
    margin: 20px 0 30px;
}
@media screen and (max-width: 1250px) {
    .promotion .container .inform .description {
        font-size: 24px;
    }
}
@media screen and (max-width: 1050px) {
    .promotion .container .inform .description {
        max-width: 530px;
    }
}
@media screen and (max-width: 850px) {
    .promotion .container .inform .description {
        font-size: 18px;
    }
}
@media screen and (max-width: 650px) {
    .promotion .container .inform .description {
        max-width: 300px;
    }
}
.promotion .container .inform .price {
    display: flex;
    align-items: center;
    gap: 10px;
}
.promotion .container .inform .price .new_price {
    padding: 0px 0px 3px;
    background: #e2262e;
    font-weight: 600;
    font-size: 32px;
    line-height: 110%;
    color: #fff;
}
@media screen and (max-width: 850px) {
    .promotion .container .inform .price .new_price {
        font-size: 24px;
    }
}
.promotion .container .inform .price .old_price {
    font-weight: 500;
    font-size: 24px;
    line-height: 110%;
    color: #fff;
    position: relative;
    display: inline-block;
}
.promotion .container .inform .price .old_price::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #e2262e;
    transform: translateY(-50%);
}
@media screen and (max-width: 850px) {
    .promotion .container .inform .price .old_price {
        font-size: 22px;
    }
} /*# sourceMappingURL=promotion.css.map */

.main_slider {
    background-image: url(/local/templates/Alfadent/assets/img/main_fon.png);
    background-size: cover;
    background-repeat: no-repeat;
    height: 90vh;
    position: relative;
    border-radius: 0 0 20% 20%;
    overflow: hidden;
    min-height: 785px;
    position: relative;
}

@media screen and (max-width: 1650px) {
    .main_slider {
        height: 70vh;
        min-height: 700px;
    }
}

@media screen and (max-width: 650px) {
    .main_slider {
        border-radius: 0;
        height: 90vh;
        min-height: auto;
    }
}

.main_slider .container .main_slider_content .slide {
    position: relative;
    padding: 110px 7px 0;
    height: 90vh;
    min-height: 785px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

@media screen and (max-width: 1650px) {
    .main_slider .container .main_slider_content .slide {
        padding-top: 70px;
        gap: 30px;
    }
}

@media screen and (max-width: 650px) {
    .main_slider .container .main_slider_content .slide {
        padding: 30px 10px;
        min-height: auto;
        height: 90vh;
    }
}

@media screen and (max-width: 500px) {
    .main_slider {
        height: 85vh;
    }
    .main_slider .container .main_slider_content .slide {
        height: 85vh;
    }
    .main__slider-form {
        bottom: 48% !important;
    }
}

.main_slider .container .main_slider_content .slide .h2 {
    font-size: 80px;
    position: relative;
    z-index: 10;
}

@media screen and (max-width: 1250px) {
    .main_slider .container .main_slider_content .slide .h2 {
        font-size: 60px;
    }
}

@media screen and (max-width: 850px) {
    .main_slider .container .main_slider_content .slide .h2 {
        font-size: 40px;
    }
}

@media screen and (max-width: 650px) {
    .main_slider .container .main_slider_content .slide .h2 {
        font-size: 28px;
    }

    .main_slider .container .main_slider_content .slide .h2 br {
        display: none;
    }
}

@media screen and (max-width: 450px) {
    .main_slider .container .main_slider_content .slide .h2 {
        font-size: 24px;
    }
}

.main_slider .container .main_slider_content .slide .inscription {
    font-weight: 500;
    font-size: 20px;
    line-height: 120%;
    color: #1c1c1d;
    max-width: 900px;
}

.main_slider .container .main_slider_content .slide .inscription.light {
    color: #8c95a2;
    display: none;
}

@media screen and (max-width: 650px) {
    .main_slider .container .main_slider_content .slide .inscription {
        font-size: 14px;
    }
}

.main_slider .container .main_slider_content .slide .phone-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    max-width: 625px;
}

@media screen and (max-width: 1250px) {
    .main_slider .container .main_slider_content .slide .phone-input-wrapper {
        width: 490px;
    }
}

@media screen and (max-width: 650px) {
    .main_slider .container .main_slider_content .slide .phone-input-wrapper {
        flex-direction: column;
        gap: 12px;
        width: 100%;
        align-items: normal;
    }
}

.main_slider .container .main_slider_content .slide .phone-input-wrapper .phone-icon {
    position: absolute;
    left: 35px;
    z-index: 2;
    width: 20px;
    height: 20px;
}

@media screen and (max-width: 650px) {
    .main_slider .container .main_slider_content .slide .phone-input-wrapper .phone-icon {
        left: 20px;
        top: 16px;
    }
}

.main_slider .container .main_slider_content .slide .phone-input-wrapper .field {
    flex: 1;
    padding: 33px 20px 33px 70px;
    border-radius: 20px;
    box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.07);
    background: #fff;
    border: 1px solid #d7d9e0;
    font-size: 16px;
}

@media screen and (max-width: 650px) {
    .main_slider .container .main_slider_content .slide .phone-input-wrapper .field {
        padding: 14px 60px;
        border-radius: 8px;
    }
}

.main_slider .container .main_slider_content .slide .phone-input-wrapper .button {
    position: absolute;
    right: 20px;
    z-index: 2;
}

@media screen and (max-width: 650px) {
    .main_slider .container .main_slider_content .slide .phone-input-wrapper .button {
        position: static;
        width: 100%;
        font-size: 16px;
    }
}

.main_slider .container .main_slider_content .slide .agreement {
    margin: 0;
}

@media screen and (max-width: 650px) {
    .main_slider .container .main_slider_content .slide .agreement .text {
        font-size: 12px;
    }
}

.main_slider .container .main_slider_content .slide .merit {
    display: flex;
    gap: 20px;
}

@media screen and (max-width: 1250px) {
    .main_slider .container .main_slider_content .slide .merit {
        flex-direction: column;
    }
}

@media screen and (max-width: 650px) {
    .main_slider .container .main_slider_content .slide .merit {
        flex-direction: row;
        gap: 12px;
    }
}

.main_slider .container .main_slider_content .slide .merit .item {
    border-radius: 20px;
    box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.07);
    background: #fff;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    width: max-content;
}

@media screen and (max-width: 650px) {
    .main_slider .container .main_slider_content .slide .merit .item {
        border-radius: 12px;
        padding: 8px;
    }
}

.main_slider .container .main_slider_content .slide .merit .item .text {
    font-weight: 500;
    font-size: 18px;
    line-height: 133%;
    color: #1c1c1d;
}

@media screen and (max-width: 650px) {
    .main_slider .container .main_slider_content .slide .merit .item .text {
        font-size: 12px;
    }
}

.main_slider .container .main_slider_content .slide .picture {
    position: absolute;
    bottom: -15px;
    right: 0;
}

@media screen and (max-width: 1650px) {
    .main_slider .container .main_slider_content .slide .picture {
        bottom: 0px;
        width: 580px;
    }
}

@media screen and (max-width: 1050px) {
    .main_slider .container .main_slider_content .slide .picture {
        bottom: 90px;
        width: 400px;
    }
}

@media screen and (max-width: 1050px) and (min-height: 900px) {
    .main_slider .container .main_slider_content .slide .picture {
        bottom: 170px;
    }
}

@media screen and (max-width: 850px) {
    .main_slider .container .main_slider_content .slide .picture {
        width: 300px;
    }
}

@media screen and (max-width: 650px) {
    .main_slider .container .main_slider_content .slide .picture {
        width: 320px;
        bottom: 0;
        right: 24px;
    }
}

.main_slider .container .main_arrow {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    z-index: 10;
}

@media screen and (max-width: 650px) {
    .main_slider .container .main_arrow {
        bottom: 60px;
    }
}

.main_slider .container .main_arrow .main_slider_left,
.main_slider .container .main_arrow .main_slider_right {
    flex-shrink: 0;
    border: none;
    box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.07);
}

.main_slider .container .main_arrow .main_slider_left img,
.main_slider .container .main_arrow .main_slider_right img {
    filter: brightness(0) saturate(100%) invert(18%) sepia(55%) saturate(2602%) hue-rotate(202deg) brightness(102%) contrast(96%);
}

.main_slider .container .main_arrow .main_slider_left:hover,
.main_slider .container .main_arrow .main_slider_right:hover {
    background: #d7d9e0;
}

.main_slider .container .main_arrow .main_slider_dots .slick-dots {
    position: static;
    display: flex !important;
    gap: 15px;
    margin: 0;
    padding: 0;
}

.main_slider .container .main_arrow .main_slider_dots .slick-dots li {
    margin: 0;
    width: auto;
    height: auto;
}

.main_slider .container .main_arrow .main_slider_dots .slick-dots li button {
    width: 15px;
    height: 15px;
    padding: 0;
    background: #fff;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.main_slider .container .main_arrow .main_slider_dots .slick-dots li button::before {
    display: none;
}

.main_slider .container .main_arrow .main_slider_dots .slick-dots li button:hover {
    background: #0f4c92;
}

.main_slider .container .main_arrow .main_slider_dots .slick-dots li.slick-active button {
    background: #0f4c92;
    border-color: #0f4c92;
}
/* ===== НОВЫЙ ПОПАП ДЛЯ ФОРМЫ "ЧТО ВАС ТРЕВОЖИТ" ===== */
.dentistry-thanks-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999999;
    display: none;
    align-items: center;
    justify-content: center;
}
.dentistry-thanks-modal.active {
    display: flex !important;
}
.dentistry-thanks-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    cursor: pointer;
}
.dentistry-thanks-container {
    position: relative;
    z-index: 1;
    max-width: 90%;
    width: 460px;
}
.dentistry-thanks-content {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    position: relative;
}
.dentistry-thanks-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    background: none;
    border: none;
    cursor: pointer;
    color: #8c95a2;
    transition: 0.3s;
}
.dentistry-thanks-close:hover {
    color: #0f4c92;
}
.dentistry-thanks-icon {
    width: 60px;
    height: 60px;
    background: #0f4c92;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}
.dentistry-thanks-title {
    font-size: 24px;
    color: #0f4c92;
    margin-bottom: 5px;
}
.dentistry-thanks-subtitle {
    font-size: 16px;
    color: #8c95a2;
    margin-bottom: 10px;
}
.dentistry-thanks-text {
    font-size: 16px;
    color: #1c1c1d;
    margin-bottom: 20px;
    line-height: 1.5;
}
.dentistry-thanks-button {
    background: #0f4c92;
    color: #fff;
    border: none;
    padding: 12px 40px;
    border-radius: 100px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: 0.3s;
}
.dentistry-thanks-button:hover {
    background: #1a5fb0;
}
.advantages {
    padding-top: 100px;
    overflow: hidden;
}
@media screen and (max-width: 850px) {
    .advantages {
        padding-top: 70px;
    }
}
@media screen and (max-width: 850px) {
    .advantages .container {
        position: relative;
    }
}
.advantages .container .h2 {
    font-size: 64px;
    margin-bottom: 40px;
}
@media screen and (max-width: 1250px) {
    .advantages .container .h2 {
        font-size: 40px;
        width: 70%;
    }
}
@media screen and (max-width: 850px) {
    .advantages .container .h2 {
        font-size: 32px;
        width: 100%;
        margin-bottom: 20px;
    }
}
@media screen and (max-width: 650px) {
    .advantages .container .h2 {
        font-size: 26px;
    }
}
.advantages .container .content {
    position: relative;
    height: 520px;
}
@media screen and (max-width: 850px) {
    .advantages .container .content {
        display: flex;
        flex-direction: column;
        gap: 10px;
        height: auto;
        position: static;
    }
}
.advantages .container .content .item {
    padding: 50px;
    border-radius: 20px;
    position: absolute;
    width: 570px;
}
@media screen and (max-width: 1450px) {
    .advantages .container .content .item {
        padding: 30px;
        width: 460px;
    }
}
@media screen and (max-width: 1250px) {
    .advantages .container .content .item {
        width: 350px !important;
        height: 240px !important;
    }
}
@media screen and (max-width: 850px) {
    .advantages .container .content .item {
        position: static;
        width: 100% !important;
        height: 130px !important;
        padding: 20px;
    }
}
.advantages .container .content .item .title {
    font-weight: 600;
    font-size: 40px;
    line-height: 110%;
    color: #0f4c92;
    margin-bottom: 20px;
}
@media screen and (max-width: 1250px) {
    .advantages .container .content .item .title {
        font-size: 32px;
    }
}
@media screen and (max-width: 850px) {
    .advantages .container .content .item .title {
        font-size: 24px;
    }
}
@media screen and (max-width: 650px) {
    .advantages .container .content .item .title {
        font-size: 20px;
        margin-bottom: 10px;
    }
}
.advantages .container .content .item .description {
    font-weight: 500;
    font-size: 20px;
    line-height: 140%;
    color: #1c1c1d;
}
@media screen and (max-width: 1250px) {
    .advantages .container .content .item .description {
        font-size: 16px;
    }
}
@media screen and (max-width: 850px) {
    .advantages .container .content .item .description {
        font-size: 14px;
    }
}
.advantages .container .content .item.white {
    background: #fff;
    border: 1px solid #0f4c92;
}
.advantages .container .content .item.blue {
    background: linear-gradient(180deg, #2f84e5 0%, #0f4c92 100%);
}
.advantages .container .content .item.blue .title,
.advantages .container .content .item.blue .description {
    color: #fff;
}
@media screen and (max-width: 850px) {
    .advantages .container .content .item.advantages_three {
        background: #fff;
        border: 1px solid #0f4c92;
    }
    .advantages .container .content .item.advantages_three .title {
        color: #0f4c92;
    }
    .advantages .container .content .item.advantages_three .description {
        color: #1c1c1d;
    }
    .advantages .container .content .item.advantages_four {
        background: linear-gradient(180deg, #2f84e5 0%, #0f4c92 100%);
    }
    .advantages .container .content .item.advantages_four .title,
    .advantages .container .content .item.advantages_four .description {
        color: #fff;
    }
}
.advantages .container .content .item.advantages_one {
    top: 0;
    left: 0;
}
.advantages .container .content .item.advantages_two {
    top: 0;
    right: 82px;
}
@media screen and (max-width: 1250px) {
    .advantages .container .content .item.advantages_two {
        right: 0;
    }
}
@media screen and (max-width: 850px) {
    .advantages .container .content .item.advantages_two {
        margin-bottom: 110px;
    }
}
.advantages .container .content .item.advantages_three {
    left: 103px;
    bottom: 31px;
}
@media screen and (max-width: 1250px) {
    .advantages .container .content .item.advantages_three {
        left: 0;
        bottom: 0;
    }
}
.advantages .container .content .item.advantages_four {
    right: 0;
    bottom: 0;
    width: 690px;
}
@media screen and (max-width: 1450px) {
    .advantages .container .content .item.advantages_four {
        width: 570px;
    }
}
.advantages .container .content .picture {
    width: 550px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.advantages .container .content .picture img {
    width: 100%;
}
@media screen and (max-width: 1650px) {
    .advantages .container .content .picture {
        width: 400px;
        transform: translate(-60%, -65%);
    }
}
@media screen and (max-width: 1250px) {
    .advantages .container .content .picture {
        transform: translate(-50%, -50%);
    }
}
@media screen and (max-width: 1050px) {
    .advantages .container .content .picture {
        width: 300px;
    }
}
@media screen and (max-width: 850px) {
    .advantages .container .content .picture {
        width: 230px;
        transform: translate(-50%, -30%);
    }
}
@media screen and (max-width: 480px) {
    .advantages .container .content .picture {
        width: 200px;
        transform: translate(-50%, -20%);
    }
} /*# sourceMappingURL=advantages.css.map */

/* ===== СТИЛИ ДЛЯ ФОРМЫ (ВНЕ СЛАЙДЕРА) ===== */
.main_slider .container .phone-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    max-width: 625px;
}

@media screen and (max-width: 1250px) {
    .main_slider .container .phone-input-wrapper {
        width: 490px;
    }
}

@media screen and (max-width: 650px) {
    .main_slider .container .phone-input-wrapper {
        flex-direction: column;
        gap: 12px;
        width: 100%;
        align-items: normal;
    }
}

.main_slider .container .phone-input-wrapper .phone-icon {
    position: absolute;
    left: 35px;
    z-index: 2;
    width: 20px;
    height: 20px;
}

@media screen and (max-width: 650px) {
    .main_slider .container .phone-input-wrapper .phone-icon {
        left: 20px;
        top: 16px;
    }
}

.main_slider .container .phone-input-wrapper .field {
    flex: 1;
    padding: 33px 20px 33px 70px;
    border-radius: 20px;
    box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.07);
    background: #fff;
    border: 1px solid #d7d9e0;
    font-size: 16px;
    width: 625px;
}

@media screen and (max-width: 650px) {
    .main_slider .container .phone-input-wrapper .field {
        padding: 14px 60px;
        border-radius: 8px;
        width: auto;
    }
}

/* Чекбокс */
.main_slider .container .checkbox-container {
    margin-top: 15px;
}

/* Кнопка отправки */
.main_slider .container .phone-input-wrapper .button {
    position: absolute;
    right: 20px;
    z-index: 2;
}

@media screen and (max-width: 650px) {
    .main_slider .container .phone-input-wrapper .button {
        position: static;
        width: 100%;
    }
}
.main__slider-form {
    position: absolute;
    bottom: 30%;
}
@media screen and (max-width: 480px) {
    .advantages .container .content .picture img {
        display: none;
    }
    .advantages .container .content .item.advantages_two {
        margin-bottom: 0;
    }
    .advantages .container .content .item {
        height: 110px !important;
        padding: 15px;
    }
}
