html {
    box-sizing: border-box;
}

*,
*::after,
*::before {
    box-sizing: inherit;
}

body {
    padding: 0px;
    margin: 0px;
    font-family: "Wix Madefor Display", sans-serif;
}

img {
    display: block;
}

a {
    text-decoration: none;
    /* color: #fff; */
}

p {
    padding: 0;
    margin: 0;
}

button {
    padding: 0;
    border: none;
    margin: 0;
}

ul,
ol {
    list-style: none;
    padding: 0;
    margin: 0;
}

h1,
p,
h3,
h2,
h4 {
    padding: 0px;
    margin: 0px;
}

h2 {
    font-family: "Wix Madefor Display", sans-serif;
    font-size: 36px;
    line-height: 42px;
    color: #2D2D2D;
}

.wrapper {

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

header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99;
}

.header__inner,
.nav,
.menu__list,
.location,
.contact,
.svg__contact,
.contact__inner {
    display: flex;
    align-items: center;
}

.header__inner {
    justify-content: space-between;
    border-bottom: 1px solid #DADADA;
    padding: 20px 0px;
}

.nav {
    gap: 69px;
}

.menu__list {
    gap: 39px;
}

.menu__link {
    font-size: 14px;
    font-weight: 400;
    line-height: 100%;
    color: #343434;
}

.location {
    gap: 9px;
    font-size: 12px;
    font-weight: 400;
    line-height: 100%;
    color: #2D2D2D;
}

.contact {
    gap: 19px;
}

.contact__inner {
    gap: 46.78px;
}

.svg__contact {
    gap: 18px;
}

.svg__contact img{
    width: 18px;
    height: 18px;
}

.menu__btn {
    display: none;
    width: 18px;
    height: 12px;
    flex-direction: column;
    justify-content: space-between;
    background-color: rgba(255, 255, 255, 0);
}

.burger_menu {
    display: none;
}

.button__contact {
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    max-width: fit-content;
    padding: 14px 16px;
    color: #fff;
    background-color: #0D84D4;
    border-radius: 10px;
}

.phone {
    color: #2D2D2D;
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
}

.main__header {
    padding-top: 10px;
}

.burger_menu_btn {
    display: none;
}

.nav__main a {
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    color: #2D2D2D;
    transition: all 0.3s ease;
}

.nav__main a svg {
    fill: #2D2D2D;
    margin-left: 10px;
    transition: all 0.3s ease;
}

.main__menu-items:hover .main__menu-link {
    color: #0D84D4;
}

.main__menu-items:hover svg {
    fill: #0D84D4;
    transform: rotate(180deg);
}

.sub__menu-items:hover {
    background-color: #F6B500;
    cursor: pointer;
}

.main__menu {
    display: flex;
    justify-content: space-between;
}

.main__menu-items {
    position: relative;
    padding-bottom: 10px;
}

.sub__menu {
    display: none;
    width: 275px;
    position: absolute;
    top: 100%;
    left: 0;
    list-style: none;
    padding: 0;
    margin: 0;
    background-color: #f8f8f8;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    z-index: 10;
    border-radius: 10px;
    box-shadow: 0px 25px 50px 0px #0000001A;

}

.sub__menu-items {
    padding-top: 12.5px;
    padding-bottom: 12.5px;
    padding-left: 15px;
    transition: all 0.4s ease;
    position: relative;
}

.sub__menu-items:first-child {
    border-radius: 10px 10px 0px 0px;
}

.sub__menu-items:last-child {
    border-radius: 0 0 10px 10px;
}


.main__menu-items:hover .sub__menu,
.sub__menu:hover {
    display: block;
}

.sub_sub__menu {
    display: none;
    position: absolute;
    list-style: none;
    padding: 0;
    margin: 0;
    border-radius: 10px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    z-index: 10;
    border-radius: 10px;
    left: 100%;
    width: 273px;
    top: 0;
    padding-left: 10px;
    overflow: hidden;
}

.sub__menu-items:hover .sub_sub__menu {
    display: block;
}

.sub_sub__menu a {
    padding-top: 12.5px;
    padding-bottom: 12.5px;
    padding-left: 15px;
    transition: all 0.4s ease;
    display: block;
    background-color: #f8f8f8;
}

.sub_sub__menu a:hover {
    background: #F6B500;
    ;
}

.sub_sub__menu a:first-child {
    border-radius: 10px 0 0 0;
}

.sub_sub__menu a:first-child:hover {
    border-radius: 10px 0 0 0;
}

.sub_sub__menu a:last-child {
    border-radius: 0px 0 0 10px;
}

h2 .title_yellow {
    color: #F6B500;
}

.title {
    font-weight: 700;
    font-size: 52px;
    line-height: 58px;
    margin-bottom: 15px;
}

.under__title {
    margin-top: 15px;
    font-weight: 700;
    font-size: 52px;
    line-height: 100%;
    max-width: fit-content;
    padding: 10px 24px;
    color: #0D84D4;
    border: 4px solid #0D84D4;
    border-radius: 100px;
    margin-bottom: 30px;
}

.header__info {
    display: flex;
    flex-wrap: wrap;
    max-width: 550px;
    gap: 10px 20px;
    margin-bottom: 40px;
}

.header__info-item {
    position: relative;
    padding-left: 18px;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
}

.header__info-item::before {
    content: '';
    width: 8px;
    height: 8px;
    position: absolute;
    background: #0D84D4;
    border-radius: 50%;
    left: 0;
    align-self: anchor-center;
}

.header__form {
    display: flex;
    gap: 7px;
    flex-wrap: wrap;
}

.header__form #name {
    color: #8A8A8A;
    font-family: "Wix Madefor Display", sans-serif;
    font-weight: 400;
    font-size: 14px;
    text-align: center;
    padding: 16px 15px;
    border: none;
    outline: none;
    border-radius: 10px;
    text-align: left;
    box-sizing: border-box;
    max-width: 220px;
    width: -webkit-fill-available;
}

.header__form #phone {
    color: #8A8A8A;
    font-family: "Wix Madefor Display", sans-serif;
    font-weight: 400;
    font-size: 14px;
    text-align: center;
    padding: 16px 15px;
    border: none;
    outline: none;
    border-radius: 10px;
    text-align: left;
    box-sizing: border-box;
    max-width: 220px;
    width: -webkit-fill-available;
}

.header__form button {
    color: #2D2D2D;
    font-family: "Wix Madefor Display", sans-serif;
    font-weight: 400;
    font-size: 14px;
    text-align: center;
    border-radius: 10px;
    background-color: #F6B500;
    padding: 16px 20px;
    box-sizing: border-box;
    cursor: pointer;
}

.first_screen {
    background-image: url(./assets/img/main_photo.png);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    padding-top: 153px;
    padding-bottom: 76px;
    position: relative;
}

.first_gradien {
    background: linear-gradient(90deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 50%);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.first_screen .wrapper {
    position: relative;
    z-index: 0;
}

/* Р”РћР›Р–РќРђ Р‘Р«РўР¬ Р¤РћР РњРђ */
.advantage {
    margin-top: -36px;
    margin-bottom: 76px;
    z-index: 99;
    position: relative;
}

.advantage__inner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    grid-template-columns: 1fr 1fr 1fr 1fr;
}

.advantage__item {
    text-align: center;
    background: #fff;
    box-shadow: 0px 25px 50px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 25px 34px;
}

.advantage__item img,
.advantage__item h4 {
    margin: 0 auto;
    margin-bottom: 6px;
}

.advantage__item h4 {
    font-weight: 600;
    font-size: 16px;
}

.advantage__item p {
    font-weight: 400;
    font-size: 14px;
}

.services__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.services__content {
    padding: 40px;
    border-radius: 10px;
    background-repeat: no-repeat;
    background-position: center right;
    background-size: cover;
}

.services__content p,
.services__content h2 {
    margin-bottom: 20px;
}

.services__content h2 {
    font-weight: 700;
    font-size: 36px;
    line-height: 42px;
    text-wrap-style: balance;
}

.services__content p {
    font-weight: 400;
    font-size: 14px;
}

.left {
    background-image: url(./assets/img/services1.png);
}

.right {
    background-image: url(./assets/img/services2.png);
    color: #fff;
}

.right h2 {
    color: #fff;
}

.services__button {
    max-width: fit-content;
    padding: 16px 20px;
    background: #F6B500;
    border-radius: 10px;
    color: #2D2D2D;
    display: inline-block;
}

/* Р РђРЎРЎР§РРўРђРўР¬ Р¦Р•РќРЈ */
.price {
    background: #F7F7F7;
    padding-top: 80px;
    padding-bottom: 88px;
}

.price__inner-title {
    max-width: 715px;
    margin: 0 auto;
    text-align: center;
    color: #2D2D2D;
}

.price__inner-title h2 {
    margin-bottom: 15px;
}

.price__inner-title p {
    margin-bottom: 40px;
    font-weight: 400;
    font-size: 14px;
}

.price__table {
    margin-bottom: 40px;
}

.price__table table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    color: #2D2D2D;
}

.price__table th {
    padding: 0px 0px 15px 40px;
    font-weight: 600;
    font-size: 16px;
}

.price__table td {
    padding: 20px 0px 20px 40px;
    font-weight: 400;
    font-size: 16px;
}

tbody tr:nth-child(odd) {
    outline: 1px solid #DADADA;
    border-radius: 10px;
}

.price__table-bottom {
    max-width: 715px;
    margin: 0 auto;
    text-align: center;
    color: #2D2D2D;
}

.price__table-bottom img,
.price__table-bottom h2 {
    margin: 0 auto;
    margin-bottom: 10px;
    font-weight: 700;
    font-size: 20px;
}

.price__table-bottom p {
    font-weight: 400;
    font-size: 14px;
}

.communication {
    background: #F7F7F7;
    padding-bottom: 80px;
}

.communication__inner {
    width: 100%;
    background: #fff;
    border-radius: 10px;
    padding-right: 107px;
    padding-left: 50px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.communication__left {
    max-width: 650px;
}

.communication__left h2 {
    font-weight: 700;
    font-size: 36px;
    line-height: 42px;
    margin-bottom: 15px;
}

.communication__left p {
    font-weight: 400;
    font-size: 14px;
}

.communication__left p span {
    font-weight: 600;
}

.communication__link,
.communication__link-whatsapp,
.communication__link-telega {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.communication__link {
    gap: 20px;
    margin-top: 20px;
}

.communication__link p {
    font-weight: 600;
    font-size: 14px;
}

.communication__link-whatsapp p {
    color: #25C900;
    border-bottom: 1px solid #25C900;
}

.communication__link-telega p {
    color: #0D84D4;
    border-bottom: 1px solid #0D84D4;
}

.communication__img {
    margin-top: -48px;
}

.stage {
    background: #F7F7F7;
    padding-bottom: 80px;
}

.stage h2 {
    text-align: center;
    margin-bottom: 40px;
}

.stage__inner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(335px, 1fr));
    gap: 60px;
}

.stage__inner-item {
    display: flex;
    align-items: start;
    gap: 20px;
}

.stage__number {
    font-weight: 700;
    font-size: 78px;
    color: #0D84D4;
    line-height: 60px;
}

.stage__text p {
    font-weight: 400;
    font-size: 14px;
}

.stage__text h4 {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 10px;
    padding-right: 86px;
}

.stage__text p {
    color: #2D2D2D;
    font-weight: 400;
    font-size: 14px;
    text-wrap-style: balance;
}

.stage__phone {
    margin-top: 25px;
    margin-bottom: 10px;
}

.inventory {
    padding-top: 80px;
}

.inventory h2 {
    max-width: 465px;
    margin: 0 auto;
    text-align: center;
    font-weight: 700;
    font-size: 36px;
    line-height: 42px;
    margin-bottom: 40px;
}

.inventory__inner {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 20px;
}

.inventory__inner-item img {
    width: 100%;
    object-fit: cover;
    margin-bottom: 20px;
    box-shadow: 0px 25px 50px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    height: 200px;
}

.inventory__inner-item p {
    font-weight: 600;
    font-size: 16px;
    color: #2D2D2D;
    text-align: center;
    padding: 0 61px;
}

.consultation {
    padding-top: 80px;
}

.consultation__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #DADADA;
    border-radius: 10px;
}

.consultation__title {
    padding-left: 65px;
}

.consultation__title h2 {
    text-wrap-style: balance;
    margin-bottom: 20px;
}

.consultation__title p {
    color: #8A8A8A;
    font-weight: 400;
    font-size: 14px;
}

.consultation__form {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-bottom: 20px;
}

.consultation__form #name {
    color: #8A8A8A;
    font-family: "Wix Madefor Display", sans-serif;
    font-weight: 400;
    font-size: 14px;
    text-align: center;
    padding: 16px 15px;
    outline: none;
    border: 1px solid #DADADA;
    border-radius: 10px;
    text-align: left;
    box-sizing: border-box;
    max-width: 220px;
    width: -webkit-fill-available;
}

.consultation__form #phone {
    color: #8A8A8A;
    font-family: "Wix Madefor Display", sans-serif;
    font-weight: 400;
    font-size: 14px;
    text-align: center;
    padding: 16px 15px;
    outline: none;
    border: 1px solid #DADADA;
    border-radius: 10px;
    text-align: left;
    box-sizing: border-box;
    max-width: 220px;
    width: -webkit-fill-available;
}

.consultation__form button {
    color: #2D2D2D;
    font-family: "Wix Madefor Display", sans-serif;
    font-weight: 400;
    font-size: 14px;
    text-align: center;
    border-radius: 10px;
    background-color: #F6B500;
    padding: 16px 20px;
    box-sizing: border-box;
    cursor: pointer;
}

.slider__services {
    padding: 80px 0;
}

.slider__services h2 {
    font-weight: 700;
    font-size: 36px;
    line-height: 42px;
    text-align: center;
    margin-bottom: 20px;
}

.slider__buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.slider__tab {
    max-width: fit-content;
    padding: 16px 20px;
    border-radius: 10px;
    border: 1px solid #0D84D4;
    font-weight: 400;
    font-size: 14px;
    background: #fff;
    cursor: pointer;
    font-family: "Wix Madefor Display", sans-serif;
}

.slider__tab.active {
    background-color: #0D84D4;
    color: white;
}

.tabs_slider__img {
    width: 100%;
    object-fit: cover;
    display: block;
    max-height: 580px;
    border-radius: 10px;
    box-shadow: 0px 25px 50px rgba(0, 0, 0, 0.1);
}

.slider__services .swiper-slide {
    border-radius: 10px;
    overflow: hidden;
}

.swiper {
    position: relative;
    width: 100%;
    max-width: 980px;
    /* РџРѕРґСЃС‚СЂРѕР№ РїРѕРґ СЃРІРѕРё СЂР°Р·РјРµСЂС‹ */
    margin: 0 auto;
}

.slider__services .swiper-button-prev,
.slider__services .swiper-button-next {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.5);
    border: 1px solid #DADADA;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    align-self: center;
}


.swiper-wrapper-container {
    display: flex;
    gap: 20px;
}


.slider__services .swiper-pagination {
    position: absolute;
    bottom: -30px;
    /* РћРїСѓСЃРєР°РµРј РїР°РіРёРЅР°С†РёСЋ */
    text-align: center;
    width: 100%;
}

.slider__services .swiper-button-prev {
    left: 0;
}

.slider__services .swiper-button-next {
    right: 0;
}

.slider__services .swiper-button-prev svg {
    height: 12px;
    width: 14px;
}

.slider__services .swiper-button-next svg {
    height: 12px;
    width: 14px;
}

.footer_soc__mobiled {
    display: none;
}

.slider__services .swiper-button-prev:after {
    content: "none";
}

.slider__services .swiper-button-next:after {
    content: "none";
}

.slider__services .swiper-pagination {
    bottom: 0 !important;
}

.swiper-1 {
    padding-bottom: 40px !important;
}

.swiper-2 {
    padding-bottom: 40px !important;
}


.board {
    background: #F7F7F7;
    padding-top: 80px;
}

.board h2 {
    font-weight: 700;
    font-size: 36px;
    line-height: 42px;
    text-align: center;
    margin-bottom: 40px;
}

.board__inner-top {
    display: flex;
    gap: 20px;
    position: relative;
}

.board__inner-title h4 {
    font-weight: 400;
    font-size: 14px;
    margin-bottom: 25px;
}

.board__inner-title h4 span {
    color: #0D84D4;
}

.board__inner-title p {
    margin-bottom: 17px;
    font-weight: 600;
    font-size: 16px;
}

.board__menu-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.board__inner-bottom {
    margin-top: -35px;
}

.board__inner-slider {
    display: block;
    max-width: 680px;
    width: 100%;
    position: relative;
}

.board_slider_name {
    padding: 15px 0 6px 0;
    font-family: "Wix Madefor Display", sans-serif;
    font-weight: 600;
    font-size: 16px;
    text-align: center;
    color: #2D2D2D;
}

.board .swiper-button-prev,
.board .swiper-button-next {
    position: absolute;
    top: 50%;
    transform: translateY(-80%);
    width: 40px;
    height: 40px;
    background-color: rgb(255, 255, 255);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    align-self: center;
}

.board .swiper-button-prev svg {
    height: 12px;
    width: 14px;
}

.board .swiper-button-prev:after {
    content: "none";
}

.board .swiper-button-next svg {
    height: 12px;
    width: 14px;
}

.board .swiper-button-next:after {
    content: "none";
}

.board .swiper-button-prev {
    left: -20px;
}

.board .swiper-button-next {
    right: -20px;
}

.board_slider_disc {
    color: #8A8A8A;
    font-family: "Wix Madefor Display", sans-serif;
    border-radius: 50px;
    border: 1px solid #DADADA;
    font-weight: 400;
    font-size: 14px;
    padding: 6px 14px;
    width: fit-content;
    margin: 0 auto;
}

.swiper-6 img {
    width: 100%;
    object-fit: cover;
    height: 216px;
    border-radius: 10px;
}

.board__inner-bottom p {
    font-weight: 400;
    font-size: 14px;
    margin-bottom: 30px;
}

.board__inner-example {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 20px;

}

.board__inner-example-inner {
    position: relative;
    display: flex;
    justify-content: space-between;
    background: #fff;
    border-radius: 10px;
    align-items: center;
}

.board__inner-example-inner img {
    position: absolute;
    object-fit: cover;
    top: 0;
    right: 0;
}


.board__inner-example-text {
    padding-left: 20px;
    padding-top: 20px;
    max-width: 215px;
    padding-bottom: 20px;
}

.board__inner-example-text h4 {
    font-weight: 600;
    font-size: 16px;
}

.board__inner-example-text p {
    margin-bottom: 0;
    margin-top: 10px;
    font-weight: 400;
    font-size: 14px;
}

.faq {
    padding-bottom: 87px;
}

.faq h2 {
    text-align: center;
    margin-bottom: 40px;
}

.faq__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px 20px;
}

.faq__inner-img img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    border: 1px solid #DADADA;
    border-radius: 10px;
}

.faq__inner-img:last-child img {
    object-fit: cover;
    width: 100%;
    height: 300px;
    border: 1px solid #DADADA;
    border-radius: 10px;
    object-position: top;
}


/* FAQ */
.faq__inner-question {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.question-inner {
    border: 1px solid #DADADA;
    border-radius: 10px;
    padding: 20px 25px;
}

.question-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.question-title h4 {
    font-weight: 600;
    font-size: 16px;
}

.question-content {
    max-height: 0;
    overflow: hidden;
    transition: .8s ease-out;
}

.question-content p {
    padding-top: 15px;
}

.question-title .open,
.question-title.active .close {
    display: block;
}

.question-title.active .open,
.question-title .close {
    display: none;
}

.question-title.active+.question-content {
    max-height: 150px;
}

.faq__inner-text {
    font-weight: 400;
    font-size: 14px;
    font-family: "Wix Madefor Display", sans-serif;
    color: #2D2D2D;
}

/* FAQ */


/* FOOTER */
.cellar {
    background: #303030;
    padding-top: 33px;
    padding-bottom: 47px;
}

.cellar__inner {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.cellar__info {
    max-width: 170px;
}

.cellar__info img {
    margin-bottom: 24px;
}

.cellar__info p {
    color: #8A8A8A;
    font-weight: 400;
    font-size: 10px;
    line-height: 12.352px;
}


.menu__cellar {
    display: flex;
    gap: 40px;
}

.menu__cellar-contact {
    display: flex;
    flex-direction: column;
    gap: 20px;
    line-height: 10px;
}

.menu__cellar-inner ul:first-of-type {
    margin-bottom: 30px;
}

.menu__cellar-inner h4 {
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 10px;
}

.menu__footer > li:not(:last-child) {
    margin-bottom: 15px;
}

.menu__footer-item {
    line-height: 9px;
}

.menu__footer_link {
    font-weight: 400;
    color: #fff;
    font-size: 12px;
    display: inline-block;
}

.menu__contact {
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    display: inline-block;
}

.phone__footer {
    color: #0D84D4;
    font-weight: 700;
    font-size: 20px;
    line-height: 20px;
    display: inline-block;
    margin-bottom: 15px;
}

.cellar__contact {
    justify-items: right;
    max-width: 277px;
}

.time__interval {
    max-width: 145px;
    margin-bottom: 20px;
}

.cellar__contact p {
    color: #fff;
    font-weight: 400;
    font-size: 12px;
    text-align: right;
}

.mail {
    color: #fff;
    font-weight: 400;
    font-size: 14px;
    display: inline-block;
    margin-bottom: 28.28px;
    line-height: 10px;
}

.location__footer {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 12px;
    font-weight: 400;
    margin-bottom: 10px;
}

.area {
    justify-items: right;
}

.area p {
    margin-bottom: 25px;
}

.location__footer p {
    margin: 0;
    line-height: 18px;
}

.privacy a {
    display: inline-block;
    justify-items: right;
    font-weight: 400;
    font-size: 12px;
    color: #8A8A8A;
    margin-bottom: 15px;
    border-bottom: 1px solid #8A8A8A;
}

.contact_block {
    padding: 150px 0 80px 0;
}

.contact_block .container {
    gap: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.contact_block h1 {
    font-family: "Wix Madefor Display", sans-serif;
    font-weight: 700;
    font-size: 52px;
    line-height: 58px;
    color: #2D2D2D;
    padding-bottom: 15px;
}

.contact_block .subtitle {
    font-family: "Wix Madefor Display", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    color: #2D2D2D;
    padding-bottom: 25px;
}

.phone_link {
    font-family: "Wix Madefor Display", sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 20px;
    color: #0D84D4;
    text-decoration: none;
    margin-bottom: 10px;
    display: block;
}

.contact_block p {
    font-family: "Wix Madefor Display", sans-serif;
    font-weight: 400;
    font-size: 12px;
    display: block;
    color: #2D2D2D;
}

.mail_link {
    margin-bottom: 25px;
    margin-top: 25px;
    font-family: "Wix Madefor Display", sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #2D2D2D;
    display: block;
}

.soc_container {
    display: flex;
    gap: 32px;
    align-items: center;
}

.soc_container a {
    display: flex;
    gap: 12px;
    font-family: "Wix Madefor Display", sans-serif;
    font-weight: 600;
    font-size: 14px;
    text-decoration: underline;
}

.soc_container a:first-child {
    color: #25C900;
}

.soc_container a:last-child {
    color: #0D84D4;
}

.soc_container img {
    width: 25px;
    height: auto;
}

.contact_block .location {
    display: flex;
    gap: 12px;
    font-family: "Wix Madefor Display", sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #2D2D2D;
    margin-bottom: 10px;
    align-items: center;
    margin-top: 28px;
}

.location img {
    width: 12px;
    height: auto;
}

.location_info {
    font-family: "Wix Madefor Display", sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #2D2D2D;
    margin-top: 10px;
}

.contact_block__map {
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0px 25px 50px 0px #0000001A;
    height: 100%;
}

iframe {
    display: block;
}

.contact_block__form {
    margin-top: 30px;
    display: flex;
    gap: 5px;
}

.contact_block__form #name {
    color: #8A8A8A;
    font-family: "Wix Madefor Display", sans-serif;
    font-weight: 400;
    font-size: 14px;
    text-align: center;
    padding: 12px 15px;
    border: 1px solid #DADADA;
    border-radius: 10px;
    text-align: left;
    box-sizing: border-box;
    max-width: 208px;
    width: -webkit-fill-available;
}

.contact_block__form #phone {
    color: #8A8A8A;
    font-family: "Wix Madefor Display", sans-serif;
    font-weight: 400;
    font-size: 14px;
    text-align: center;
    padding: 12px 15px;
    border: 1px solid #DADADA;
    border-radius: 10px;
    text-align: left;
    box-sizing: border-box;
    max-width: 208px;
    width: -webkit-fill-available;
}

.contact_block__form button {
    color: #2D2D2D;
    font-family: "Wix Madefor Display", sans-serif;
    font-weight: 400;
    font-size: 14px;
    text-align: center;
    border-radius: 10px;
    background-color: #F6B500;
    padding: 10px 20px;
    box-sizing: border-box;
}

.price_qwiz {
    padding: 80px 0;
}

.price_qwiz h2 {
    text-align: center;
    max-width: 350px;
    display: block;
    margin: 0 auto;
}

.price_qwiz__container {
    margin-top: 40px;
    display: flex;
    gap: 20px;
    justify-content: space-between;
}

.price_qwiz__right {
    max-width: 780px;
    width: 100%;
}

.custom-radio-group {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 20px;
}

.price_qwiz__right img {
    width: 100%;
    object-fit: cover;
    height: 180px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0px 25px 50px 0px #0000001A;
}

.price_qwiz__selectimg {
    text-align: center;
    font-family: "Wix Madefor Display", sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #2D2D2D;
}

.price_qwiz_number {
    font-family: "Wix Madefor Display", sans-serif;
    font-weight: 700;
    font-size: 16px;
    text-align: left;
    color: #2D2D2D;
    margin-bottom: 15px;
}

.price_qwiz_number span {
    color: #0D84D4;
}

.price_qwiz__title {
    font-family: "Wix Madefor Display", sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: #2D2D2D;
    margin-bottom: 20px;
}

.price_qwiz__navigate {
    display: flex;
    gap: 10px;
}

.price_qwiz__button {
    font-family: "Wix Madefor Display", sans-serif;
    font-weight: 400;
    font-size: 14px;
    padding: 16px 20px;
    border-radius: 10px;
    cursor: pointer;
}

#price_qwiz_prev {
    color: #2D2D2D;
    border: 1px solid #0D84D4;
}

#price_qwiz_next {
    background-color: #0D84D4;
    color: white;
}

.real-radio {
    /* РџСЂСЏС‡РµРј РЅР°СЃС‚РѕСЏС‰РёР№ radio, РЅРѕ РѕСЃС‚Р°РІР»СЏРµРј РґРѕСЃС‚СѓРїРЅС‹Рј РґР»СЏ С„РѕСЂРјС‹ */
    position: absolute;
    opacity: 0;
}

.custom-radio {
    width: 28px;
    /* Р‘РѕР»СЊС€РѕР№ РєСЂСѓРі */
    height: 28px;
    border-radius: 50%;
    background: white;
    position: relative;
    display: inline-block;
    box-sizing: border-box;
    /* РЈС‡РёС‚С‹РІР°РµРј РіСЂР°РЅРёС†Сѓ РІ СЂР°Р·РјРµСЂР°С… */
}

.real-radio:checked+.custom-radio::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    /* Р‘РѕР»СЊС€Р°СЏ СЃРёРЅСЏСЏ С‚РѕС‡РєР° */
    height: 16px;
    background: #2196F3;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    /* РРґРµР°Р»СЊРЅРѕРµ С†РµРЅС‚СЂРёСЂРѕРІР°РЅРёРµ */
}


/* Р­С„С„РµРєС‚ РїСЂРё РЅР°РІРµРґРµРЅРёРё */
.custom-radio-label:hover .custom-radio {
    border-color: #999;
}

.input_selected {
    position: absolute;
    bottom: -16px;
    left: 0;
    right: 0;
}

.price_qwiz_image {
    position: relative;
}


.range-slider {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-top: 30px;
}

.slider-container {
    position: relative;
    flex-grow: 1;
    height: 40px;
    width: 100%;
}

.slider-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: #ddd;
    transform: translateY(-50%);
}

.slider-r {
    position: relative;
    width: 100%;
    height: 40px;
    -webkit-appearance: none;
    appearance: none;
    background: transparent;
    z-index: 2;
    margin: 0;
    cursor: pointer;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #2196F3;
    cursor: pointer;
    position: relative;
    z-index: 3;
}

.pagination_modiled {
    display: none;
}

.slider-thumb {
    position: absolute;
    top: 50%;
    left: 0;
    width: 20px;
    height: 20px;
    background: #2196F3;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 2;
}

.slider-input {
    width: 80px;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-align: center;
    font-size: 16px;
}

.unit {
    font-size: 16px;
    color: #666;
}

.checkbox-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.custom-checkbox {
    background-color: white;
    box-shadow: 0px 25px 50px 0px #0000001A;
    border-radius: 10px;
    padding: 12px 24px;
    display: flex;
    gap: 10px;
}

.custom-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkmark {
    width: 25px;
    height: 25px;
    background-color: #ECECEC;
    border-radius: 4px;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
}

/* РЎРёРЅРёР№ РєРІР°РґСЂР°С‚ РїСЂРё РІС‹Р±РѕСЂРµ */
.custom-checkbox input:checked~.checkmark::after {
    content: "";
    position: absolute;
    width: 15px;
    height: 15px;
    background-color: #0D84D4;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 4px;
}

#price_qwiz5 #price_qwiz_next {
    background: #999999;
}

#price_qwiz5 .price_qwiz__title {
    max-width: 270px;
}

.spot_item {
    background-color: white;
    padding: 10px 16px;
    border-radius: 10px;
    color: #2D2D2D;
    font-family: "Wix Madefor Display", sans-serif;
    font-size: 12px;
    position: absolute;
    display: flex;
    gap: 10px;
    align-items: center;
}

.spot_item:before {
    content: " ";
    width: 10px;
    height: 10px;
    background: #0D84D4;
    display: flex;
    border-radius: 50%;
}

#spot_item1 {
    right: 22%;
    top: 83px;
}

#spot_item2 {
    top: 48%;
    left: 21%;
}

#spot_item3 {
    bottom: 28%;
    left: 17%;
}

#spot_item4 {
    top: 61%;
    right: 26%;
}

#spot_item5 {
    bottom: 4%;
    left: 13%;
}

#spot_item1-2 {
    top: 11%;
    left: 50%;
}

#spot_item2-2 {
    top: 42%;
    left: 25%;
}

#spot_item3-2 {
    bottom: 18%;
    left: 18%;
}

#spot_item4-2 {
    bottom: 20%;
    left: 47%;
}

.spot_item__list {
    display: none;
}

.online_calc__container {
    padding-top: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.online_calc__item {
    border-radius: 10px;
    border: 1px solid #DADADA;
    background: white;
    padding: 30px 40px;
}

.online_calc__title {
    font-size: 20px;
    padding-bottom: 20px;
    font-family: "Wix Madefor Display", sans-serif;
    color: #2D2D2D;
    font-weight: 700;
}

.online_calc__item:last-child {
    grid-column: span 2;
}

.online_calc_radio {
    display: flex;
    gap: 24px;
    font-family: "Wix Madefor Display", sans-serif;
    font-size: 16px;
    color: #2D2D2D;
    font-weight: 600;
    align-items: center;
    position: relative;
}

.online_calc_radio img {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0px 25px 50px 0px #0000001A;
}

.online_calc_input {
    position: absolute;
    left: 45px;
    align-content: center;
}

.online_calc_radio__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    row-gap: 15px;
    align-content: center;
}

.online-radio:checked+.custom-radio::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 16px;
    background: #2196F3;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.online-radio {
    position: absolute;
    opacity: 0;
}

.online_calc_select input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.online_calc_select {
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: 16px;
    font-family: "Wix Madefor Display", sans-serif;
    font-weight: 600;
    color: #2D2D2D;
}

.checkmark::after {
    content: "";
    position: absolute;
    width: 15px;
    height: 15px;
    background-color: white;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 4px;
}

.online_calc_select input:checked~.checkmark::after {
    content: "";
    position: absolute;
    width: 15px;
    height: 15px;
    background-color: #0D84D4;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 4px;
}

.slider-thumb2 {
    position: absolute;
    top: 50%;
    left: 0;
    width: 20px;
    height: 20px;
    background: #2196F3;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 2;
}

.slider_range_circle1 {
    content: " ";
    background: #DADADA;
    width: 8px;
    height: 8px;
    border-radius: 50px;
    left: 0;
    position: absolute;
    top: 16px;
}

.slider_range_circle2 {
    content: " ";
    background: #DADADA;
    width: 8px;
    height: 8px;
    border-radius: 50px;
    right: 0;
    position: absolute;
    top: 16px;
}

.online_calc {
    padding-bottom: 80px;
}

.online_calc__form {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    align-items: center;
}

.online_calc__submit {
    background: #F6B500;
    border-radius: 10px;
    padding: 16px 20px;
    font-size: 14px;
    font-family: "Wix Madefor Display", sans-serif;
    color: #2D2D2D;
    font-weight: 400;
}

.online_calc__form input {
    background: white;
    border-radius: 10px;
    padding: 16px 15px;
    outline: none;
    border: 1px solid #DADADA;
    color: #8A8A8A;
    font-size: 14px;
    font-family: "Wix Madefor Display", sans-serif;
    font-weight: 400;
}

.online_calc__form p {
    margin-left: 25px;
    color: #8A8A8A;
    font-size: 14px;
    font-family: "Wix Madefor Display", sans-serif;
    font-weight: 400;
}

.online_calc__total {
    color: #2D2D2D;
    font-family: "Wix Madefor Display", sans-serif;
    font-size: 16px;
    font-weight: 400;
    margin-top: 30px;
}

.online_calc__total span {
    color: #0D84D4;
    font-size: 20px;
    font-weight: 700;
}

.online_calc h2 {
    text-align: center;
}

.reviews_block {
    padding: 80px 0;
    background-color: #F7F7F7;
}

.reviews_block h2 {
    text-align: center;
}

.reviews_block__container {
    padding-top: 40px;
    display: flex;
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.reviews_block__item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 400px;
}

.reviews_block__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reviews_block_play {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    align-content: center;
    text-align: center;
    cursor: pointer;
}

.reviews_block__container2 {
    display: flex;
    gap: 20px;
    padding-top: 20px;
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
}

footer .svg__contact {
    margin-bottom: 29.72px;
    display: flex;
    gap: 17px;
}

.privacy p {
    display: none;
    font-family: "Wix Madefor Display", sans-serif;
    font-size: 10px;
    font-weight: 400;
    color: #8A8A8A;
}

.reviews_block__item2 {
    background: white;
    border-radius: 10px;
}

.reviews_block__head {
    padding: 20px 20px 15px 20px;
    border-bottom: 1px solid #DADADA;
    display: flex;
    justify-content: space-between;
}

.reviews_block_name {
    font-family: "Wix Madefor Display", sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #2D2D2D;
}

.reviews_block_number {
    font-family: "Wix Madefor Display", sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #0D84D4;
    display: flex;
    gap: 7px;
    align-items: center;
}

.reviews_block_number img:first-child {
    padding-left: 1px;
}

.reviews_block_number img {
    height: 16px;
    width: auto;
}

.reviews_block__item2 p {
    padding: 15px 40px 20px 20px;
    font-family: "Wix Madefor Display", sans-serif;
    font-size: 14px;
    font-weight: 400;
}


.reviews_block__container3 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding-top: 40px;
}

.reviews_block_service {
    display: flex;
    gap: 15px;
    align-items: center;
}

.reviews_block_number.mobiled {
    display: none;
}

#service_left {
    justify-content: right;
    padding-right: 20px;
}

.reviews_block_service img {
    height: 30px;
    width: auto;
}

.reviews_block_quantity {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #232323;
    font-family: "Wix Madefor Display", sans-serif;
    font-size: 16px;
    font-weight: 400;
}

.reviews_block_quantity img {
    height: 12px;
    width: 12px;
}

.reviews_block_quantity span {
    padding-left: 4px;
    border-left: 2px solid #DADADA;
    color: #8A8A8A;
    font-family: "Wix Madefor Display", sans-serif;
    font-size: 14px;
    font-weight: 400;
}

.our_work {
    padding: 80px 0;
}

.our_work h2 {
    text-align: center;
}

.our_work_subtitle {
    text-align: center;
    font-family: "Wix Madefor Display", sans-serif;
    font-size: 14px;
    font-weight: 400;
    padding: 15px 0 40px 0;
}

.our_work__container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}

.our_work__item {
    overflow: hidden;
    border-radius: 10px;
}

.our_work__image {
    width: 100%;
    position: relative;
    max-height: 272px;
    border-radius: 0 0 10px 10px;
    overflow: hidden;
}

.our_work__image img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.our_work__tags {
    position: absolute;
    bottom: 15px;
    left: 15px;
    display: flex;
    gap: 10px;
    z-index: 9;
}

.our_work__info {
    padding-top: 20px;
    font-family: "Wix Madefor Display", sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #2D2D2D;
}

.our_work__info ul {
    padding-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.our_work__info ul li {
    font-family: "Wix Madefor Display", sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #2D2D2D;
    display: flex;
    gap: 10px;
    align-items: center;
}

.our_work__info li img {
    width: 18px;
    height: 18px;
}

.our_work__tags span {
    background: #0D84D4;
    color: white;
    font-family: "Wix Madefor Display", sans-serif;
    font-size: 14px;
    font-weight: 800;
    border-radius: 50px;
    padding: 6px 14px;
}

.tabs {
    display: block;
    max-width: 1100px;
    margin: 0 auto;
}

.reviews_block .swiper-button-prev,
.reviews_block .swiper-button-next {
    position: relative;
    top: 50%;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.5);
    border: 1px solid #DADADA;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    align-self: center;
}

.reviews_block .swiper-button-next {
    right: 0;
}

.reviews_block .swiper-button-prev {
    left: 0;
}

.reviews_block .swiper-button-next:after,
.reviews_block .swiper-button-prev:after {
    content: none;
}

.reviews_block .swiper-button-prev svg {
    height: 12px;
    width: 14px;
}

.reviews_block .swiper-button-next svg {
    height: 12px;
    width: 14px;
}

.our_work .swiper-button-prev,
.our_work .swiper-button-next {
    position: absolute;
    top: 50%;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 1);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    align-self: center;
}

.our_work .swiper-button-prev:after,
.our_work .swiper-button-next:after {
    content: '';
}

.our_work .swiper-button-prev {
    left: 15px;
}

.our_work .swiper-button-next {
    right: 15px;
}

.our_work .swiper-button-prev svg {
    height: 12px;
    width: 14px;
}

.our_work .swiper-button-next svg {
    height: 12px;
    width: 14px;
}

.contact_modal {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(255, 255, 255, 0.788);
    z-index: 9999;
    align-content: center;
    display: none;
}

.contact_modal.active {
    display: block;
}

.contact_modal__container {
    background: white;
    border-radius: 10px;
    box-shadow: 0px 25px 50px 0px #0000001A;
    padding: 30px;
    width: 100%;
    max-width: 372px;
    position: relative;
    margin: 0 auto;

}

.contact_modal__close {
    position: absolute;
    top: 35px;
    cursor: pointer;
    right: 35px;
}

.contact_modal__title {
    color: #2D2D2D;
    font-family: "Wix Madefor Display", sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.contact_modal__form {
    display: flex;
    gap: 10px;
    flex-direction: column;
}

.modal_btn {
    background: #F6B500;
    color: #2D2D2D;
    border-radius: 10px;
    padding: 16px 10px 16px 10px;
    width: 100%;
    text-align: center;
    cursor: pointer;
    font-family: "Wix Madefor Display", sans-serif;
    font-size: 14px;
    font-weight: 400;
}

.contact_modal__form input {
    font-family: "Wix Madefor Display", sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #8A8A8A;
    border: 1px solid #DADADA;
    padding: 16px 15px;
    border-radius: 10px;
    width: 100%;
}

.contact_modal p {
    margin-top: 20px;
    font-family: "Wix Madefor Display", sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #8A8A8A;
}

.burger__menu_side {
    position: relative;
    position: fixed;
    top: 0;
    left: -100%;
    bottom: 0;
    background-color: white;
    padding: 20px;
    z-index: 999999;
    width: 0;
    width: 100%;
    height: 100vh;
    -webkit-transition: all ease .4s;
    transition: all ease .4s;
    opacity: 0;
    visibility: hidden;
}

.th-body-visible {
    left: 0;
    opacity: 1;
    visibility: visible;
}
.mobile_menu__list .mobile_menu__listmain{
    display: flex;
    flex-direction: column;
    gap:25px;
}
.mobile_menu__main{
    color:#2D2D2D;
    font-size: 16px;
    font-family: "Wix Madefor Display", sans-serif;
    font-weight: 400;
    padding-right: 10px; 
    position: relative;
}
.mobile_menu__listmain svg{
    fill:#2D2D2D;
}

/* Адаптив */

@media screen and (max-width: 1150px) {
    .menu__list {
        gap: 20px;
    }

    .nav {
        gap: 30px;
    }

    .communication__inner {
        padding-right: 0px;
    }

    .stage__inner {
        gap: 40px;
    }

    .inventory__inner {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .consultation__inner {
        position: relative;
        min-height: 287px;
    }

    .consultation__img img {
        position: absolute;
        bottom: 0;
        right: 0;
    }

    .consultation__title {
        padding: 40px;
        max-width: 70%;
        z-index: 9;
    }

    .slider__services .swiper-button-next {
        right: 0;
        min-width: 40px;
    }

    .slider__services .swiper-button-prev {
        right: 0;
        min-width: 40px;
    }

    .online_calc_radio__container {
        grid-template-columns: 1fr;
    }

    .price_qwiz__right {
        max-width: 600px;
        width: 100%;
    }

    .price_qwiz__right img {
        height: 140px;
    }

    .phone {
        display: none;
    }

    .communication__left {
        max-width: 550px;
    }

    .board__inner-slider {
        max-width: 580px;
    }

    .swiper-6 img {
        height: 170px;
    }

    .board__inner-bottom {
        margin-top: 0px;
    }

    .board__inner-example-inner {
        overflow: hidden;
    }

    .board__inner-example-inner img {
        height: 100%;
    }

    .reviews_block .swiper-button-prev {
        min-width: 40px;
    }

    .reviews_block .swiper-button-next {
        min-width: 40px;
    }

    .board .swiper-button-prev {
        left: 5px;
    }

    .board .swiper-button-next {
        right: 5px;
    }

    .menu__cellar {
        gap: 10px;
        display: grid;
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }
}

@media screen and (max-width: 1000px) {
    .nav__main a svg {
        margin-left: 2px;
    }

    .advantage__item {
        padding: 25px 20px;
    }

    .services__content {
        padding: 40px 20px;
    }

    .price_qwiz__right {
        max-width: 550px;
    }

    .price_qwiz__right img {
        height: 120px;
    }

    .contact__inner {
        gap: 15px;
    }

    .price_qwiz__selectimg {
        word-break: break-word;
    }

    .communication__left {
        max-width: 490px;
    }

    .online_calc__form p {
        margin-left: 0;
        width: 100%;
    }

    .menu__cellar {
        display: none;
    }
}

@media screen and (max-width: 900px) {
    .svg__contact {
        display: none;
    }

    .location {
        display: none;
    }

    .main__menu {
        flex-wrap: wrap;
    }

    .advantage__inner {
        grid-template-columns: 1fr 1fr;
    }

    .first_screen {
        padding-top: 190px;
    }

    .services__inner {
        grid-template-columns: 1fr;
    }

    .price_qwiz__container {
        flex-direction: column;
        display: flex;
        gap: 30px;
    }

    .price_qwiz__right {
        max-width: 100%;
    }

    .communication__inner {
        padding: 25px 25px 0 25px;
    }

    .communication__img {
        margin-top: 30px;
        width: 100%;
        justify-items: center;
    }

    .communication__left {
        max-width: 100%;
    }

    .inventory__inner {
        grid-template-columns: 1fr 1fr;
    }

    .consultation__title {
        max-width: 100%;
    }

    .consultation__inner {
        flex-direction: column;
    }

    .consultation__img img {
        position: relative;
    }

    #spot_item1 {
        right: 2%;
        top: 40px;
    }

    #spot_item2 {
        top: 46%;
        left: 21%;
    }

    #spot_item4 {
        top: 61%;
        right: 7%;
    }

    #spot_item3 {
        bottom: 19%;
        left: 7%;
    }

    .online_calc__form {
        gap: 10px;
    }

    .board__inner-top {
        gap: 15px;
        flex-direction: column;
    }

    .board__inner-slider {
        max-width: 100%;
    }

    .board__inner-bottom {
        margin-top: 30px;
    }

    .board__inner-example-text {
        max-width: 80%;
    }

    .reviews_block__item {
        height: 300px;
    }

    .reviews_block__head {
        flex-direction: column;
        gap: 10px;
    }

    #service_left {
        padding-right: 0px;
    }

    .our_work__container {
        grid-template-columns: 1fr 1fr;
    }
}

@media screen and (max-width: 700px) {

    /* Контейнер для кастомного скролла */
    .price__scrollbar {
        top: 0;
        left: 0;
        height: 2px;
        background: #DADADA;
        border-radius: 0;
        overflow: hidden;
        cursor: pointer;
        margin-left: 24px;
        margin-right: 24px;
    }

    /* Ползунок */
    .price__scrollbar-thumb {
        height: 100%;
        width: 95px;
        background: #0D84D4;
        border-radius: 0;
        cursor: grab;
    }

    .price__table {
        overflow-x: auto;
        white-space: nowrap;
        padding-top: 20px;
        padding-bottom: 1px;
        overflow: visible;
    }

    .price__table table {
        width: 100%;
        border-collapse: collapse;
    }

    .price__table::-webkit-scrollbar {
        display: none;
    }

    .under__title {
        font-size: 32px;
    }

    .header__form {
        gap: 10px;
    }

    .price__table {
        overflow-x: scroll;
        min-width: 100%;
        width: 100%;
    }

    .price__table th {
        min-width: 177px;
    }

    .consultation__form {
        gap: 10px;
    }

    .slider__buttons {
        overflow-x: scroll;
        width: 100%;
    }

    .slider__tab {
        min-width: fit-content;
    }

    .spot_item {
        display: none;
    }

    .online_calc__container {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .online_calc__item:last-child {
        grid-column: 1;
    }

    .reviews_block__container3 {
        grid-template-columns: 1fr;
        gap: 25px;
        padding-top: 40px;
    }

    #service_left {
        justify-self: center;
    }

    #service_right {
        justify-self: center;
    }

    .faq__inner {
        grid-template-columns: 1fr;
        gap: 20px 20px;
    }

    .faq__inner-img:first-child {
        display: none;
    }

    .faq__inner-text {
        padding-top: 30px;
    }

    .spot_item__list {
        display: flex;
        flex-direction: column;
        gap: 5px;
        margin-top: 15px;
    }

    .spot_item__list .spot_item {
        display: flex;
        position: relative;
        border: 1px solid #DADADA;
        width: fit-content;
    }

    .swiper-1 {
        padding-bottom: 35px !important;
    }

    .tabs_slider__img {
        box-shadow: none;
    }

    .slider__buttons {
        justify-content: flex-start;
        scrollbar-width: none;
        padding-left: 1px;
    }

    .consultation__form #name {
        width: 100%;
        max-width: 100%;
    }

    .consultation__form {
        flex-direction: column;
    }

    .consultation__form #phone {
        width: 100%;
        max-width: 100%;
    }
}



@media screen and (max-width: 600px) {
    .button__contact {
        display: none;
    }

    .checkmark {
        min-width: 25px;
    }

    .inventory__inner {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .inventory__inner-item img {
        margin-bottom: 15px;
    }

    .slider__services .swiper-button-next {
        display: none;
    }

    .slider__services .swiper-button-prev {
        display: none;
    }

    .reviews_block .swiper-button-next {
        display: none;
    }

    .reviews_block .swiper-button-prev {
        display: none;
    }

    .our_work__container {
        grid-template-columns: 1fr;
    }

    .our_work__image img {
        height: 222px;
    }

    .stage__number {
        font-size: 32px;
    }

    .custom-radio-group {
        overflow-x: scroll;
    }

    .custom-radio-group {
        overflow: auto;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .custom-radio-group::-webkit-scrollbar {
        display: none;
    }

    .price_qwiz__selectimg {
        min-width: 180px;
    }

    .price_qwiz__right img {
        height: 180px;
    }

    .cellar__inner {
        gap: 30px;
        flex-direction: column;
        align-items: center;
    }

    .cellar__info img {
        margin-bottom: 0;
    }

    .cellar__info p {
        display: none;
    }

    .cellar__info {
        max-width: 135px;
        align-self: center;
    }

    .cellar__contact {
        justify-items: center;
        width: 100%;
        max-width: 100%;
    }

    .cellar__contact p {
        text-align: center;
    }

    .area {
        justify-items: center;
    }

    .cellar__contact p {
        text-align: center;
        max-width: 260px;
    }

    .phone__footer {
        margin-bottom: 10px;
    }

    .mail {
        margin-bottom: 30px;
    }

    footer .svg__contact {
        display: flex;
        gap: 17px;
        margin-bottom: 30px;
    }

    .location__footer {
        gap: 10px;
        margin-bottom: 15px;
        flex-direction: column;
        max-width: 164px;
    }

    .privacy p {
        display: block;
        margin-top: 15px;
    }

    .privacy__link {
        text-align: center;
        line-height: 9px;
    }

    .privacy .privacy__link:last-child a {
        margin-bottom: 30px;
    }

    .our_work__container {
        display: flex;
        /* Делаем flex вместо grid */
        overflow-x: auto;
        /* Горизонтальный скролл */
        scroll-snap-type: x mandatory;
        /* Snap-прокрутка */
        scroll-behavior: smooth;
        /* Плавность */
    }

    .our_work__item {
        flex: 0 0 100%;
        /* 1 слайд на всю ширину */
        scroll-snap-align: center;
        /* Центрирование */
        min-width: 100%;
    }

    .pagination_modiled {
        display: flex;
        justify-content: center;
        gap: 10px;
        margin-top: 30px;
    }

    .pagination_modiled span {
        width: 10px;
        height: 10px;
        background: #D0D0D0;
        border-radius: 50%;
        transition: 0.3s;
    }

    .pagination_modiled span.active {
        background: #0D84D4;
    }

    .our_work__container {
        scrollbar-width: none;
        /* Для Firefox */
        -ms-overflow-style: none;
        /* Для IE и Edge */
    }

    /* Для Chrome, Safari, Opera */
    .our_work__container::-webkit-scrollbar {
        display: none;
    }
}


@media (max-width: 460px) {
    .wrapper {
        padding: 0px 24px;
    }

    .burger_menu_btn {
        display: block;
        cursor: pointer;
    }

    .burger_menu_btn img {
        height: 12px;
        width: 18px;
    }

    .reviews_block_number {
        display: none;
    }

    .reviews_block_number.mobiled {
        display: flex;
        padding: 0 20px 20px;
    }

    .reviews_block__head {
        border: none;
        padding: 20px 20px 10px 20px;
    }

    .price__inner-title {
        padding: 0 24px;
    }

    .price .wrapper {
        padding: 0px;
    }

    .header__inner {
        border-bottom: none;
    }

    .svg__contact {
        display: flex;
    }

    .price__table-bottom {
        padding: 0 24px;
    }

    .stage__inner {
        grid-template-columns: 1fr;
    }

    .menu__list,
    .location,
    .button__contact,
    .phone {
        display: none;
    }

    .contact__inner {
        gap: 43px;
    }

    /* вернуть в бургер меню */
    .main__header {
        display: none;
    }

    /* вернуть в бургер меню */

    /* бургер */
    .burger__menu {
        transform: translateY(-100%);
        display: block;
        position: absolute;
        width: 460px;
        height: 100vh;
        background-color: #fff;
        top: 0;
        left: 0;
        padding: 18px 24px 0px 24px;
        transition: transform .7s ease;
        z-index: 100;
    }
    .burger__menu.burger__menu-open {
        transform: translateY(0%);
    }

    .header__inner-mobile {
        border-bottom: 1px solid #DADADA;
        margin-bottom: 30px;
        padding-bottom: 30px;
    }

    .mobile__header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 50px;
    }

    .svg__contact-mobile {
        display: flex;
        align-items: center;
        gap: 43px;
    }

    .svg__contact-mobile button {
        background-color: transparent;
        cursor: pointer;
    }

    .svg__contact-mobile-link {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .svg__contact-mobile-link a img {
        width: 18px;
        height: 18px;
    }

    .menu__list-mobile {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }



    

    .contact__mobile {
        position: absolute;
        bottom: 40px;
        left: 0;
        right: 0;
        display: flex;
        gap: 15px;
        flex-direction: column;
        align-items: center;
    }
    .menu__link-mobile{
        color:#343434;
        font-family: "Wix Madefor Display", sans-serif;
        font-weight: 400;
    }
    .contact__mobile p {
        font-size: 12px;
        font-weight: 400;
    }

    .location-mobile {
        display: flex;
        gap: 9px;
        align-items: center;
    }


    /* бургер */
    .first_screen {
        padding-top: 91px;
    }

    .title {
        font-size: 32px;
        margin-bottom: 10px;
        line-height: normal;
    }

    .under__title {
        font-size: 32px;
    }

    .header__info-item {
        text-wrap-style: balance;
    }

    .header__form {
        gap: 10px;
    }

    .header__form #name,
    .header__form #phone,
    .header__form button {
        max-width: 312px;
        width: -webkit-fill-available;
    }

    .advantage__inner {
        gap: 10px;
    }

    .services__inner {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .services__content h2 {
        font-size: 32px;
        max-width: 294px;
    }

    .services__content {
        padding: 30px 28px 30px 30px;
        background-position: center;
    }

    .services__content p,
    .services__content h2 {
        max-width: 254px;
    }

    /* квиз + таблица */
    /* квиз + таблица */
    .communication__inner {
        padding: 0;
    }

    .communication__left {
        padding-top: 25px;
        padding-right: 25px;
        padding-left: 25px;
    }

    .communication__left h2 {
        font-size: 20px;
        line-height: normal;
    }

    .communication__link {
        margin-top: 10px;
        gap: 10px;
    }

    .communication__img {
        margin-top: 30px;
    }

    .stage h2 {
        text-align: left;
        font-size: 32px;
        margin-bottom: 21px;
    }

    .stage__inner {
        gap: 20px;
    }

    .stage__inner-item {
        flex-direction: column;
        gap: 15px;
    }

    .stage__number {
        font-size: 32px;
        line-height: 23px;
    }

    .stage__phone {
        margin-top: 0;
    }

    .stage__text p {
        text-wrap-style: auto;
        max-width: 100%;
    }

    .inventory h2 {
        font-size: 20px;
        line-height: normal;
        margin-bottom: 20px;
    }

    .inventory__inner {
        gap: 25px;
    }

    .inventory__inner-item img {
        margin-bottom: 15px;
    }

    .consultation__title {
        padding: 25px 25px 0px 25px;
    }

    .consultation__title h2 {
        margin-top: 0;
        text-wrap-style: auto;
        text-align: center;
        font-size: 20px;
        line-height: normal;
    }

    .consultation__inner {
        flex-wrap: wrap;
    }

    .consultation__form {
        gap: 10px;
    }

    .consultation__title p {
        display: none;
    }

    .consultation__img img {
        width: 100%;
    }

    /* что входит в уборку+калькулятор+гордимся своими сотруниками+отзывы+выполненыве работы */


    /* что входит в уборку+калькулятор+гордимся своими сотруниками+отзывы+выполненыве работы */
    .faq h2 {
        font-size: 32px;
        line-height: normal;
        margin-bottom: 20px;
    }

    .faq .faq__inner-img:first-child {
        display: none;
    }

    .faq__inner {
        display: block;
    }

    .faq__inner-question {
        margin-bottom: 50px;
    }

    .question-inner {
        padding: 20px;
    }

    .question-content p {
        padding-top: 10px;
    }

    .faq__inner-text {
        margin-bottom: 20px;
    }

    .faq__inner-img:last-child img {
        height: 160px;
    }

    .first_screen {
        padding-top: 91px;
        padding-bottom: 30px;
    }

    .advantage {
        margin-top: 20px;
        margin-bottom: 50px;
    }

    .advantage__inner {
        grid-template-columns: 1fr;
    }

    .header__form #name,
    .header__form #phone,
    .header__form button {
        max-width: 100%;
    }

    .price_qwiz {
        padding: 50px 0;
    }

    .price_qwiz h2 {
        text-align: left;
        font-size: 32px;
        margin: 0;
    }

    .price_qwiz__container {
        margin-top: 30px;
    }

    .custom-radio-group {
        overflow-x: scroll;
        margin-right: -24px;
    }

    .checkbox-group {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .custom-checkbox {
        padding: 12px 5px 12px 24px;
    }

    .price {
        background: #F7F7F7;
        padding-top: 50px;
        padding-bottom: 30px;
    }

    .price__table {
        margin-bottom: 30px;
        padding-left: 24px;
        padding-right: 24px;
    }

    .price__table td {
        padding: 20px 0px 20px 20px;
    }

    h2 {
        font-size: 32px;
        line-height: 36px;
    }

    .price__inner-title p {
        margin-bottom: 30px;
    }

    .price__table th {
        padding: 0px 0px 20px 20px;
    }

    .price__table-bottom h2 {
        line-height: 25px;
    }

    .communication__img img {
        height: 281px;
    }

    .communication {
        padding-bottom: 50px;
    }

    .stage {
        padding-bottom: 50px;
    }

    .inventory {
        padding-top: 50px;
    }

    .consultation {
        padding-top: 50px;
    }

    .consultation__img img {
        height: 208px;
        object-fit: cover;
    }

    .slider__services {
        padding: 50px 0;
    }

    .slider__services h2 {
        font-size: 32px;
        line-height: 36px;
    }

    .tabs_slider__img {
        height: 185px;
    }

    .online_calc__container {
        padding-top: 20px;
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .online_calc__item {
        padding: 20px;
    }

    .range-slider {
        padding-top: 20px;
    }

    .online_calc__title {
        padding-bottom: 15px;
    }

    .online_calc__form input {
        width: 100%;
    }

    .online_calc__submit {
        width: 100%;
        text-align: center;
    }

    .online_calc__form p {
        padding-top: 10px;
        padding-left: 7px;
    }

    .online_calc {
        padding-bottom: 50px;
    }

    .board {
        background: #F7F7F7;
        padding-top: 50px;
    }

    .board h2 {
        font-size: 32px;
        line-height: 36px;
        text-align: left;
        margin-bottom: 15px;
    }

    .board__inner-title h4 {
        margin-bottom: 10px;
    }

    .board__inner-title p {
        margin-bottom: 15px;
    }

    .board__menu-item {
        margin-bottom: 10px;
        font-size: 14px;
    }

    .board__inner-bottom p {
        margin-bottom: 15px;
    }

    .board__inner-bottom p {
        margin-bottom: 15px;
    }

    .board__inner-example-text p {
        margin-bottom: 0px;
    }

    .board__inner-example-text {
        max-width: 221px;
    }

    .board__inner-example {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .board__inner-example-inner img {
        height: 113px;
        right: -32px;
    }

    .reviews_block {
        padding: 50px 0;
    }

    .reviews_block__container {
        padding-top: 20px;
        gap: 20px;
        max-width: 1100px;
        margin: 0 auto;
    }

    .reviews_block__item {
        height: 298px;
    }

    #service_left {
        flex-direction: column;
        gap: 10px;
    }

    #service_right {
        flex-direction: column;
        gap: 10px;
    }

    .reviews_block__container3 {
        padding-top: 30px;
    }

    .our_work {
        padding: 50px 0;
    }

    .our_work_subtitle {
        padding: 15px 0 20px 0;
    }

    .question-content p {
        font-size: 14px;
    }

    .faq__inner-text {
        padding-top: 0px;
    }

    .faq {
        padding-bottom: 50px;
    }

    .inventory__inner-item p {
        padding: 0;
        max-width: 250px;
        margin: 0 auto;
    }

    .board .swiper-slide {
        width: 216px;
        /* Минимальная ширина слайда */
        max-width: 216px;
    }

    .board .swiper-button-next {
        display: none;
    }

    .board .swiper-button-prev {
        display: none;
    }

    .swiper-3 .swiper-slide {
        width: 230px;
        /* Минимальная ширина слайда */
        max-width: 230px;
    }

    .swiper-3 .swiper-button-next {
        display: none;
    }

    .swiper-3 .swiper-button-prev {
        display: none;
    }

    .swiper-4 .swiper-button-next {
        display: none;
    }

    .swiper-4 .swiper-button-prev {
        display: none;
    }

    .reviews_block__item2 p {
        padding: 0px 20px 10px 20px;
    }

    .question-title {
        gap: 2px;
    }
}

/* бургер */

/* бургер */

/* адаптив страницы услуги уборки после ремонта */





/* адаптив страницы услуги уборки после ремонта */




/* Адаптив */



/* Услуги уборки после ремонта */




.title__services {
    font-weight: 700;
    font-size: 52px;
    line-height: 58px;
    margin-bottom: 15px;
    max-width: 395px;
}

.features h2 {
    text-align: center;
    margin-bottom: 30px;
}

.features__inner {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}

.features .features__inner {
    margin-bottom: 20px;
}

.features__services {
    padding: 20px;
    border: 1px solid #DADADA;
    border-radius: 10px;
}

.features__services h3 {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 15px;
}

.features__list {
    margin-bottom: 20px;
}

.features__list li:first-child {
    margin-bottom: 5px;
}

.features__list-items {
    position: relative;
    padding-left: 16px;
    color: #8A8A8A;
    font-weight: 400;
    font-size: 14px;
}

.features__list-items::before {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background-color: #0D84D4;
    border-radius: 50%;
    align-self: anchor-center;
    left: 0;
}

.features__list-items span {
    color: #2D2D2D;
}

.features__services-button {
    display: flex;
    gap: 15px;
    align-items: center;
}

.features__services-button {
    font-weight: 600;
    font-size: 14px;
}

.features__services-btn {
    max-width: fit-content;
    padding: 16px 20px;
    font-weight: 400;
    font-size: 14px;
    background-color: #F6B500;
    border-radius: 10px;
}

.features__inner-other {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    max-width: 780px;
    margin: 0 auto;
    gap: 20px;
}

.features__inner-other .features__services {
    min-width: 380px;
}

.cleaning__service {
    padding-top: 80px;
    padding-bottom: 107px;
}

.cleaning__service h2 {
    max-width: 483px;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 40px;
}

.cleaning__service-info {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
    gap: 20px;
    position: relative;
}

.cleaning__service-inner {
    position: relative;
}

.cleaning__service-inner::after {
    content: '';
    position: absolute;
    width: 1000px;
    margin: 0 auto;
    left: 0;
    right: 0;
    bottom: -32px;
    height: 2px;
    background-color: #0D84D4;
    z-index: -1;
}

.cleaning__service-info-img {
    position: relative;
}

.cleaning__service-info img {
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
    height: 120px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.circle-orange {
    position: absolute;
    width: 12px;
    height: 12px;
    background-color: #F6B500;
    border-radius: 50%;
    margin: 0 auto;
    left: 0;
    right: 0;
    margin-top: 25px;
}

.circle-white {
    width: 6px;
    height: 6px;
    background-color: #fff;
    border-radius: 50%;
    margin: 3px;
}

.cleaning__service-info-img p {
    margin-top: 47px;
    font-weight: 600;
    font-size: 16px;
    text-align: center;
    position: absolute;
}

/* Услуги уборки после ремонта */


/* Услуги уборки квартир */