:root {
    --font-size-14: clamp(0.75rem, 0.705rem + 0.23vw, 0.875rem);
    /*14px*/
    --font-size-main: clamp(0.75rem, 0.659rem + 0.45vw, 1rem);
    /*16px*/
    --font-size-18: clamp(0.875rem, 0.784rem + 0.45vw, 1.125rem);
    /*18px*/
    --font-size-20: clamp(1rem, 0.909rem + 0.45vw, 1.25rem);
    /*20px*/
    --font-size-22: clamp(1.125rem, 1.034rem + 0.45vw, 1.375rem);
    /*22px*/
    --font-size-24: clamp(1.125rem, 0.989rem + 0.68vw, 1.5rem);
    /*24px*/
    --font-size-26: clamp(1.125rem, 0.943rem + 0.91vw, 1.625rem);
    /*26px*/
    --font-size-28: clamp(1.125rem, 0.898rem + 1.14vw, 1.75rem);
    /*28px*/
    --font-size-30: clamp(1.5rem, 1.364rem + 0.68vw, 1.875rem);
    /*30px*/
    --font-size-32: clamp(1.5rem, 1.318rem + 0.91vw, 2rem);
    /*32px*/
    --font-size-34: clamp(1.5rem, 1.273rem + 1.14vw, 2.125rem);
    /*34px*/
    --font-size-36: clamp(1.625rem, 1.398rem + 1.14vw, 2.25rem);
    /*36px*/
    --font-size-38: clamp(1.625rem, 1.352rem + 1.36vw, 2.375rem);
    /*38px*/
    --font-size-40: clamp(1.875rem, 1.648rem + 1.14vw, 2.5rem);
    /*40px*/
    --font-size-42: clamp(2rem, 1.773rem + 1.14vw, 2.625rem);
    /*42px*/
    --font-size-44: clamp(2rem, 1.727rem + 1.36vw, 2.75rem);
    /*44px*/
    --font-size-46: clamp(2.125rem, 1.852rem + 1.36vw, 2.875rem);
    /*46px*/
    --font-size-48: clamp(2.25rem, 1.977rem + 1.36vw, 3rem);
    /*48px*/
    --font-family-main: "Roboto", sans-serif;
    --main-color: #252525;
    --trans-all: ease all .3s;
    --margin-top-clamp: clamp(30px, calc(30px + 30 * ((100vw - 370px) / 880)), 60px);
    --container-width: 1180px;
    --container-padding: 15px;
}

body {
    font-family: var(--font-family-main);
    font-size: var(--font-size-main);
}

.section-margin {
    margin-top: var(--margin-top-clamp);
}

.btn-main {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background: #a4403e;
    padding: 10px 20px;
    min-height: 40px;
    color: #fff;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    max-width: max-content;
}

.btn-main:hover {
    background: #333;
}

.btn-scnd {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background: transparent;
    padding: 10px 20px;
    min-height: 40px;
    color: #a4403e;
    transition: all 0.3s ease;
    border: 2px solid #a4403e;
    max-width: max-content;
}

.btn-scnd:hover {
    border: 2px solid #333;
    color: #333;
}

/* HERO BLOCK */
.hero-inner {
    display: flex;
    flex-flow: wrap;
    gap: 20px;
    justify-content: space-between;
}

.hero-left {
    max-width: 820px;
    display: flex;
    flex-flow: column;
    gap: 20px;
}

.hero-title {
    font-weight: 700;
    font-size: var(--font-size-36);
}

.hero-left-bottom {
    border-top: 1px solid #f0e6e6;
    padding-top: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(150px, 100%), 1fr));
    gap: 20px;
}

.hero-left-bottom-item {
    display: flex;
    flex-flow: column;
    align-items: center;
    gap: 10px;
}

.hero-left-item-text {
    font-weight: 400;
    text-align: center;
}

.hero-right {
    max-width: 260px;
    background: #f0e6e6;
    display: flex;
    flex-flow: column;
    gap: 20px;
    padding: 20px;
}

.hero-right-item {
    display: flex;
    flex-flow: column;
    text-align: center;
    gap: 10px;
}

.hero-right-item-title {
    font-family: "Roboto", sans-serif;
    font-weight: 800;
    font-size: var(--font-size-40);
    color: #a4403e;
}

@media (max-width: 1200px) {

    .hero-left,
    .hero-right {
        max-width: 100%;
        width: 100%;
    }
}

/* SERVICE BLOCK */
.services-inner {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(270px, 100%), 1fr));
    gap: 20px;
}

.services-item {
    background: #5f5f5f;
    display: flex;
    flex-flow: column;
    transition: var(--trans-all);
    position: relative;
    min-height: 390px;
}

.services-item:hover {
    background: #929292;
}

.services-image {
    height: 180px;
    flex-shrink: 0;
    overflow: hidden;
}

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

.services-item-inner {
    display: flex;
    flex-flow: column;
    padding: 10px 20px 20px 20px;
    height: 100%;
}

.services-name {
    font-weight: 700;
    font-size: 16px;
    color: #fff;
    text-decoration: none;
}

.services-name a:before {
    content: '';
    position: absolute;
    inset: 0;
}

.services-text {
    padding-top: 10px;
    color: #fff;
    opacity: 0.6;
    margin-bottom: 10px;
}

.services-item-bottom {
    display: flex;
    flex-flow: wrap;
    justify-content: space-between;
    gap: 20px;
    margin-top: auto;
}

.services-days,
.services-price {
    font-weight: 700;
    font-size: 16px;
    color: #fff;
}

/* STEP BLOCK */
.steps-section {
    background: #eee;
}

.steps-title {
    padding-bottom: 0;
    padding-top: 0;
}

.steps-wrapper {
    padding-top: 60px;
    padding-bottom: 60px;
}

.steps-item-title-wrapper {
    display: flex;
    flex-flow: wrap;
    gap: 20px;
    justify-content: space-between;
}

.steps-inner {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(270px, 100%), 1fr));
    gap: 20px;
}

.steps-item {
    display: flex;
    flex-flow: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.steps-item-title {
    font-weight: 800;
    font-size: var(--font-size-30);
    letter-spacing: 0.03em;
    color: #a4403e;
}

.steps-text {
    flex: 1;
    font-weight: 400;
    font-size: 18px;
}

/* PROJECTS BLOCK */
.projects-title-wrapper {
    display: flex;
    flex-flow: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.projects-title {
    padding-top: 0;
    padding-bottom: 0;
}

.projects-inner {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(270px, 100%), 1fr));
    gap: 20px;
}

.projects-item {
    display: flex;
    flex-flow: column;
    background: #eee;
    overflow: hidden;
}

.projects-image {
    max-height: 170px;
    overflow: hidden;
    transition: var(--trans-all);
}

.projects-image:hover img {
    transform: scale(1.2);
    /* filter: brightness(0.4); */
}

.projects-image img {
    height: 100%;
    width: 100%;
    transition: var(--trans-all);
    object-fit: cover;
}

.projects-item-inner {
    padding: 10px 20px;
    display: flex;
    flex-flow: column;
    gap: 10px;
    min-height: 190px;
}

.region-wrapper,
.projects-service {
    display: flex;
    flex-flow: column;
    gap: 5px;
}

.region-name,
.projects-service-name {
    opacity: 0.6;
}

.projects-service-text {
    overflow: hidden;
}

/* ABOUT BLOCK */
.about-title-wrapper {
    display: flex;
    flex-flow: wrap;
    gap: 20px;
    justify-content: space-between;
    align-items: center;
}

.about-title {
    padding-top: 0;
    padding-bottom: 0;
}

.about-inner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(450px, 100%), 1fr));
    gap: 20px;
    margin-top: 40px
}

.about-item-title {
    font-weight: 700;
    font-size: 18px;
    text-align: center;
}

.about-item.text {
    display: flex;
    flex-flow: column;
    gap: 20px;
}

.about-item.image img {
    width: 100%;
    object-fit: cover;
}

.about-item.pink {
    background: #f0e6e6;
}

.about-item.partners {
    background: #eee;
}

.about-item:not(.text, .image) {
    text-align: center;
    padding: 20px;
}

.about-list {
    padding-top: 20px;
    list-style: none;
    text-align: left;
}

.about-list li {
    position: relative;
    padding-inline-start: 30px;
    padding-bottom: 20px;
}

.about-list li::before {
    content: '';
    display: block;
    position: absolute;
    top: 3px;
    left: 0;
    width: 20px;
    height: 18px;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='18' viewBox='0 0 20 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M17.2975 0.351318V2.38172H16.1261V1.52271H1.17139V16.4774H16.1261V6.79395H17.2975V17.6488H0V0.351318H17.2975Z' fill='%23A4403E' /%3E%3Cpath d='M20.0002 4.35954L9.01849 15.3413L2.84766 9.17047L5.9288 6.08932L9.01845 9.17897L16.9191 1.27832L20.0002 4.35954ZM9.01849 10.8356L5.9288 7.74589L4.50422 9.17043L9.01845 13.6847L18.3436 4.35954L16.9191 2.93493L9.01849 10.8356Z' fill='%23A4403E' /%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: cover;
}

.about-item-image-inner {
    margin-top: 20px;
    display: flex;
    flex-flow: wrap;
    justify-content: center;
    gap: 20px 70px;
}

/* SPECIALISTS BLOCK */
.specialists-title-wrapper {
    display: flex;
    flex-flow: wrap;
    gap: 20px;
    justify-content: space-between;
    align-items: center;
}

.specialists-title {
    padding-top: 0;
    padding-bottom: 0;
}

.swiper-initialized {
    overflow: hidden;
    position: relative;
}

.specialists-slider {
    margin-top: 40px;
}

.specialists-image {
    height: 280px;
    overflow: hidden;
}

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

.specialists-slide {
    display: flex;
    flex-flow: column;
}

.specialists-name {
    font-weight: 700;
    font-size: 18px;
}

.specialists-job {
    font-weight: 400;
    font-size: 18px;
}

.specialists-text {
    padding-top: 10px;
    display: flex;
    flex-flow: column;
    gap: 10px;
}

.custom-swiper-navigation-wrapper {
    display: flex;
    justify-content: space-between;
    width: 100%;
    gap: 20px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    left: 0;
    height: 0;
}

.custom-swiper-navigation-wrapper>* {
    background: unset;
    border: unset;
    cursor: pointer;
}

.custom-swiper-navigation-wrapper svg path {
    transition: all 0.3s ease;
}

.custom-swiper-navigation-wrapper .swiper-button-disabled svg path {
    fill: #929292;
}

.custom-swiper-navigation-wrapper>*:hover svg path {
    fill: #333;
}

.custom-swiper-navigation-wrapper .custom-swiper-button-prev {
    left: -3%;
    position: relative;
}

.custom-swiper-navigation-wrapper .custom-swiper-button-next {
    right: -3%;
    position: relative;
}

@media (max-width: 1200px) {
    .custom-swiper-navigation-wrapper {
        display: none;
    }
}

/* COMPETITIVE BLOCK */
.competitive-section {
    background: #eee;
}

.competitive-wrapper {
    padding-top: 60px;
    padding-bottom: 60px;
}

.competitive-title {
    padding-top: 0;
    padding-bottom: 0;
}

.competitive-slider {
    margin-top: 40px;
}

.competitive-item {
    text-align: center;
}

.competitive-item img {
    max-width: 100%;
}

.competitive-slider .swiper-wrapper {
    align-items: center;
}

.competitive-navigation {
    top: 55%;
}

/* FAQ BLOCK */
.faq-inner {
    display: flex;
    flex-flow: wrap;
    justify-content: space-between;
    gap: 20px;
}

.accordion {
    display: flex;
    flex-flow: column;
    gap: 20px;
}
.accordion-header {
    display: flex;
    flex-flow: wrap;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-weight: 700;
    font-size: 18px;
    padding: 20px;
		min-height: 90px;
}

.accordion-header p {
    flex: 1;
		text-indent: unset;
		line-height: 1.2;
}
.accordion-content {
    transition: all linear .3s;
    display: grid;
    grid-template-rows: 0fr;
    padding-left: 20px;
    padding-right: 20px;
}

.accordion-item {
    max-width: 540px;
    border: 2px solid #929292;
    transition: var(--trans-all);
}

.accordion-item.active {
    background: #eee;
    border: 2px solid transparent;
}

.accordion-item.active .accordion-content {
    grid-template-rows: 1fr;
    /* padding-top: 20px; */
    padding-bottom: 20px;
}

.accordion-inner {
    overflow: hidden;
}
.accordion-inner ul {
	padding: 0;
}
.accordion-inner :is(li, p) {
	text-indent: unset;
	line-height: 1.2;
}

.accordion-icon {
    width: 12px;
    height: 7px;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='7' viewBox='0 0 12 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10.5472 0.864448L6.30762 4.94533L2.06803 0.864448C1.93053 0.717389 1.75866 0.64386 1.55241 0.64386C1.34616 0.64386 1.17428 0.717389 1.03678 0.864448C0.884006 0.996801 0.807617 1.15857 0.807617 1.34974C0.807617 1.54092 0.884006 1.71004 1.03678 1.8571L5.78053 6.42327C5.85692 6.4968 5.94095 6.55195 6.03262 6.58871C6.12428 6.62548 6.21595 6.64386 6.30762 6.64386C6.39928 6.64386 6.49095 6.62548 6.58262 6.58871C6.67428 6.55195 6.75831 6.4968 6.8347 6.42327L11.5785 1.8571C11.7312 1.71004 11.8076 1.54092 11.8076 1.34974C11.8076 1.15857 11.7312 0.996801 11.5785 0.864448C11.441 0.717389 11.2691 0.64386 11.0628 0.64386C10.8566 0.64386 10.6847 0.717389 10.5472 0.864448Z' fill='%23A4403E' /%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all linear .2s;
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
}

@media (max-width: 1200px) {
    .accordion-item {
        max-width: 100%;
    }
}

/* FORM CONS */
.form-cons-section {
    background: #5f5f5f;
}

.form-cons-wrapper {
    padding-top: 60px;
    padding-bottom: 60px;
}

.form-cons-title {
    color: #fff;
    padding-top: 0;
    padding-bottom: 0;
}

.form-cons-inner {
    margin-top: 40px;
    display: flex;
    flex-flow: wrap;
    gap: 20px;
    justify-content: space-between;
}

.form-cons-left {
    display: flex;
    flex-flow: column;
    gap: 20px;
    max-width: 300px;
}

.form-cons-right {
    display: flex;
    flex-flow: column;
    gap: 20px;
    justify-content: space-between;
    flex: 1;
}

.form-cons-right .wpcf7-list-item {
    margin-left: 0;
}

.flex-block {
    display: flex;
    flex-flow: wrap;
    justify-content: space-between;
    gap: 20px;
}

.flex-block label {
    display: flex;
    flex-flow: wrap;
    align-items: center;
    gap: 5px;
}

.form-cons-wrapper .wpcf7-not-valid-tip {
    position: absolute;
}

/* .flex-block .wpcf7-submit {
    flex: 1;
} */


@media (max-width: 1200px) {
    .form-cons-left {
        max-width: 100%;
        width: 100%;
    }

    .form-cons-left .consultation-input {
        max-width: 100%;
        width: 100%;
    }
}

/* БЛОК НЕСКОЛЬКО ЦИФР */
/* .numbers-wrapper{
    margin-bottom: 60px;
} */
.numbers-inner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(270px, 100%), 1fr));
    gap: 20px;
    background: #f0e6e6;
    padding: 20px;
}

.numbers-item {
    display: flex;
    flex-flow: column;
    gap: 10px;
    text-align: center;
}

.numbers-title {
    font-weight: 800;
    font-size: var(--font-size-40);
    letter-spacing: 0.03em;
    color: #a4403e;
}

.btn-numbers {
    margin-top: 40px;
    margin-left: auto;
    margin-right: auto;
}

/* ADVANTAGES ABOUT */
.advantages-inner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(150px, 100%), 1fr));
    gap: 20px;
}

.custom-swiper-navigation-wrapper .about-swiper-button-next {
    right: 3%;
}

.custom-swiper-navigation-wrapper .about-swiper-button-prev {
    left: 3%;
}

.swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction .about-swiper-pagination {
    position: absolute;
    bottom: 10px;
    z-index: 10;
    left: 50%;
    transform: translateX(-50%);
    margin: 0 auto;
    width: auto;
}

.swiper-pagination-bullet-active {
    background: #a4403e !important;
}

.price-description {
    background-color: #F0E6E5;
    padding: 0 20px 20px;
    border-radius: 10px;
}

.best-prices {
    margin-top: 5px;
}

.best-prices > div {
    display: flex;
    align-items: center;
    gap: 3px;
}

.best-prices {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.best-prices svg {
    min-width: 25px;
}

.price-description > p {
    margin-bottom: 10px;
}

.price-description h2 {
    font-size: 22px;
    text-align: center;
}