/* Classic reset (Meyer-like) */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
menu,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
main,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    vertical-align: baseline;
    font-size: 100%;
    font: inherit;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section {
    display: block;
}

strong {
    font-weight: 700;
}

body {
    line-height: 1;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote::before,
blockquote::after,
q::before,
q::after {
    content: '';
    content: none;
}



table {
    border-collapse: collapse;
    border-spacing: 0;
}

body {
    font-family: 'TT Firs Text Trial', Arial, sans-serif;
    font-weight: 400;
}

input {
    all: unset;
    box-sizing: border-box;
    width: 100%;
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    background: transparent;
    outline: none;
}

a {
    text-decoration: none;
}

button {
    all: unset;
    display: inline-block;
    cursor: pointer;
}

button:focus,
textarea:focus {
    outline: none;
    outline-offset: 2px;
}

* {
    scroll-behavior: smooth;
}

.sec__padding {
    padding: 200px 0;
}

.sec__titile-m80 {
    margin-top: 80px;
}

.header {
    width: 100%;
}

.header__container {
    z-index: 1000;
    position: relative;
}

.header__content {
    width: 100%;
    padding: 60px 0 48px 0;
    height: 52px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    z-index: 100;
    width: calc(100% - 120px);
    pointer-events: none;
}

.header__menu {
    display: none;
}

.header__actions {
    display: flex;
    align-items: center;
    gap: 20px;
    pointer-events: all;
}

.header__btn--menu {
    border: 1.5px solid #000000;
    width: 94px;
    height: 52px;
    box-sizing: border-box;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
}

.header__btn--menu span {
    display: block;
    width: 31px;
    height: 14px;
    position: relative;
}



.header__btn--menu:hover {
    background: #f9805f;
    transition: .3s;
    border: 1.5px solid #f9805f;
}

.header-menu.open .header__btn--menu {
    background-color: none;
    border: 1.5px solid #000000;
}

@media(max-width: 800px) {
    .header__btn--menu:hover {
        background: none;
        transition: .3s;
        border: 1.5px solid #000000;
    }
}

.header__btn--menu span:before {
    position: absolute;
    content: '';
    width: 31px;
    height: 2px;
    background-color: #000000;
    /*left: 50%;
    */
    top: 0;
    left: 0;
    transition: .1s;
    /*transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    */
    -webkit-transition: .3s;
    -moz-transition: .1s;
    -ms-transition: .1s;
    -o-transition: .1s;
    -webkit-transition: .1s;
}

.header__btn--menu span:after {
    position: absolute;
    content: '';
    width: 31px;
    height: 2px;
    background-color: #000000;
    /* left: 50%; */
    bottom: 0;
    left: 0;
    transition: .1s;

    /* transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%); */
}

.header__btn--menu.open span {
    height: 23.33px;
    width: 23.33px;
    transition: .1s;

}

.header__btn--menu.open span:after {
    width: 23.33px;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    top: 50%;
    transition: .1s ease;
    -webkit-transition: .1s ease;
    -moz-transition: .1s ease;
    -ms-transition: .1s ease;
    -o-transition: .1s ease;
}

.header__btn--menu.open span::before {
    width: 23.33px;
    transform: rotate(45deg);
    top: 50%;
    transition: .1s ease;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    -webkit-transition: .1s ease;
    -moz-transition: .1s ease;
    -ms-transition: .1s ease;
    -o-transition: .1s ease;
}


.header__btn--contact {
    padding: 18px 28px;
    background-color: #000000;
    color: #ffffff;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .2s;
    -webkit-transition: .2s;
    -moz-transition: .2s;
    -ms-transition: .2s;
    -o-transition: .2s;
}

.header__btn--contact:hover {
    background: #f9805f;
    color: #000000;
    transition: .3s;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
}

.header__btn--volume {
    width: 52px;
    height: 52px;
    background-color: #000000;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s;
    pointer-events: all;
}

.mute {
    display: none;
}

.header__btn--volume.muted .unmuted {
    display: none;
}

.header__btn--volume.muted .mute {
    display: block;
}

.header__btn--volume:hover {
    background: #f9805f;
    transition: .3s;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
}


.header {
    top: 0;
    left: 0;
    width: 100%;
    transition: all 0.3s ease;
}

.header__content {
    display: flex;
    align-items: center;
    gap: 20px;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.header__logo img {
    height: 50px;
    transition: transform 0.3s ease;
}

/* Когда скроллим вниз — скрываем меню и кнопки */
.header--hidden .header__content {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.header--hidden .header__logo img {
    transform: scale(0.9);
    /* чуть уменьшаем логотип */
}

.menu__image {
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    left: 50%;
    top: 15px;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transition: .3s;
    z-index: 0;
    pointer-events: all;
}

.buffer {
    position: relative;
    left: 0;
    top: 0;
    width: 100%;
    height: 180px;
    background-color: #ffffff;
    z-index: 30;
}

.menu__image img {
    height: 105px;
    transform: scale(0.8);
    -webkit-transform: scale(0.8);
    -moz-transform: scale(0.8);
    -ms-transform: scale(0.8);
    -o-transform: scale(0.8);
}

@media (max-width: 1560px) {
    .menu__image img {
        max-width: 200px;
    }
}

.menu__image.active {
    opacity: 1;
    visibility: visible;
    transition: .3s;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
}

.header-menu {
    width: 100%;
    height: 100vh;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    position: fixed;
    top: 0;
    left: -100%;
    transition: .3s ease;
    -webkit-transition: .3s ease;
    -moz-transition: .3s ease;
    -ms-transition: .3s ease;
    -o-transition: .3s ease;
}

.header-menu.open {
    width: 100%;
    height: 100vh;
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    background-color: #ffffff;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 100;
    overflow: hidden;
    transition: .3s ease;
    -webkit-transition: .3s ease;
    -moz-transition: .3s ease;
    -ms-transition: .3s ease;
    -o-transition: .3s ease;
}

.header__open {
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding-top: 200px;
    padding-left: 80px;
}


.header__open li a {
    font-weight: 400;
    font-size: 52px;
    line-height: 90%;
    letter-spacing: 0%;
    color: #000000;
    transition: .3s;
}

.header__open li a:hover {
    color: #f9805f;
    padding-left: 20px;
    transition: .3s;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
}

.header__open-img {
    position: absolute;
    top: 0;
    right: 60px;
    z-index: -1;
    pointer-events: none;
}

.menu__image.logo-on-top {
    z-index: 30;
    display: block;
}

.menu__image {
    z-index: 0;
    display: none;
}

/* !ПРОМО СЕКЦИЯ */

.promo {
    position: relative;
    height: 100vh;
    background-image: url('/wp-content/themes/iskra-theme/front/static/img/new-landing/main-banner.svg');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}


.promo__inner {
    display: flex;
    height: 100%;
    justify-content: space-between;
    position: fixed;
    width: calc(100% - 120px);

}

.promo__title {
    font-weight: 400;
    font-size: 90px;
    line-height: 90%;
    letter-spacing: 0%;
    padding-top: 224px;
}

.promo__right-side {
    height: calc(100% - 60px);
    display: flex;
    flex-direction: column;
    justify-content: end;
    gap: 141px;
}

.promo__subtitle {
    font-weight: 400;
    font-size: 28px;
    line-height: 114%;
    letter-spacing: 0%;
    width: 100%;
}

/* ! СЕКЦИЯ МОТИВАЦИИ */
.problems {
    padding: 0 0 260px 0;
    position: relative;
    z-index: 10;
    background-color: #ffffff;
}

.problems__container {
    display: flex;
    gap: 31px;
}

.problems__title {
    font-weight: 400;
    font-style: Normal;
    font-size: 60px;
    line-height: 90%;
    letter-spacing: 0%;
    max-width: 732px;
}

.problems__title span {
    color: #BEC3CC;
}

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

.problems__item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.problems__item svg {
    margin-top: 12px;
}

.problems__item p {
    font-weight: 400;
    font-style: Normal;
    font-size: 24px;
    line-height: 114.99999999999999%;
    letter-spacing: 0%;
    max-width: 578px;
}

/* ! КОМПАНИЯ */
.company {
    padding-bottom: 260px;
    position: relative;
    z-index: 10;
    background-color: #ffffff;

}

.company__content {
    display: flex;
    gap: 30px;
}

.company__images {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    padding-top: 160px;
}

.company__title {
    width: calc(42.11% - 15px);
    max-width: calc(42.11% - 15px) !important;
    flex-shrink: 0;
}

.company__text {
    font-weight: 400;
    font-style: Normal;
    font-size: 28px;
    line-height: 114%;
    letter-spacing: 0%;
    max-width: 600px;
}



.company__images {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    padding-top: 160px;
    justify-content: space-between;
    width: 100%;
}

.company__image {
    width: 100%;
    object-fit: cover;
    /* flex-shrink: 1; */
}

.company__image:nth-child(1) {
    max-width: calc(42.11% - 15px);
}

.company__image:nth-child(2) {
    max-height: 570px;
    max-width: calc(33.33% - 15px);
}

.company__image:nth-child(3) {
    max-height: 420px;
    max-width: calc(24.60% - 15px);
}

@media(max-width: 1920px) {
    .company__images {
        justify-content: flex-start;
    }
}

/* !БАННЕР */
.banner,
.we-can {
    padding-bottom: 260px;
    position: relative;
    z-index: 10;
    background-color: #ffffff;
}

.banner__content {
    width: 100%;
    height: 1020px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #D9D9D9;
    position: relative;
    overflow: hidden;
    transition: 0.3s ease;
}

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

.banner__content img {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(1);
    transition: transform 0.3s ease;
}

.banner__content:hover {
    background: #E9FFA1;
}



.banner__content:hover img {
    transform: translate(-50%, -50%) scale(1.1);
    transition: 0.3s ease;
}

/* !С НАМИ ВЫ МОЖЕТЕ */
.we-can__list {
    padding-top: 80px;
    padding-left: 305px;
    display: flex;
    /* width: 100%; */
    flex-wrap: wrap;
    gap: 64px;
    justify-content: space-between;
}

.we-can__list li {
    width: calc(50% - 32px);
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.we-can__list li p {
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 0%;
    text-transform: uppercase;
    max-width: 460px;
}

.we-can__list li svg {
    margin-top: 10px;
    width: 8px;
    height: 8px;
    flex-shrink: 0;
}

/* СЛАЙДЕР ТЕСТ */
.slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.slider__slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.slider__image {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* !О кэмпах */
.about {
    background: #E6EBF2;
    padding: 147px 0;
    position: relative;
    z-index: 10;
}

.about ul {
    padding-left: 305px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 30px;
    row-gap: 128px;
}

.about ul li p {
    font-weight: 400;
    font-size: 24px;
    line-height: 114.99999999999999%;
    letter-spacing: 0%;

}

.about ul li p b {
    font-weight: 400;
    font-style: Normal;
    font-size: 170px;
    line-height: 70%;
    letter-spacing: 0%;
    white-space: nowrap;
}

.about ul li:nth-child(2) {
    max-width: 555px;
}

.about ul li:nth-child(3),
.about ul li:nth-child(4),
.about ul li:nth-child(5),
.about ul li:nth-child(6) {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.about ul li:nth-child(3) p,
.about ul li:nth-child(4) p,
.about ul li:nth-child(5) p,
.about ul li:nth-child(6) p {
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    max-width: 404px;
    line-height: 114%;
}

/* !ШАГИ СОЗДАНИЯ КЕМПОВ */
.build {
    position: relative;
    z-index: 10;
    background-color: #ffffff;
}

.build__title {
    max-width: 100% !important;
}

.for__slider {
    position: relative;
    z-index: 10;
    background-color: #ffffff;
    padding-bottom: 260px;
}

.steps__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.steps__slider {
    display: none !important;
    margin-bottom: 98px;
    overflow-y: visible !important;
}

.slider__steps-navigation {
    /* position: absolute; */
    margin-top: 20px;
    bottom: -55px !important;
    height: 35px;
    width: 100%;
    display: flex;
    gap: 26px;
    align-items: center;
}

.swiper-counter,
.team__swiper-counter {
    font-weight: 500;
    font-size: 14px;
    line-height: 114.99999999999999%;
    letter-spacing: 0%;
    text-align: center;

}

.swiper-button-prev,
.swiper-button-next,
.camp__swiper-button-prev,
.camp__swiper-button-next,
.case__swiper-button-prev,
.case__swiper-button-next,
.team__main-next,
.team__main-prev,
.case-gallery-button-prev,
.case-gallery-button-next {
    width: 52px !important;
    height: 52px !important;
    border: 1.5px solid #000000 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-sizing: border-box;
    color: #000000 !important;
    position: relative !important;
    left: 0 !important;
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    margin: 0 !important;
    transition: .3s;

}

.swiper-button-prev svg,
.swiper-button-next svg,
.camp__swiper-button-prev svg,
.camp__swiper-button-next svg,
.case__swiper-button-prev svg,
.case__swiper-button-next svg,
.team__main-next svg,
.team__main-prev svg,
.case-gallery-button-prev svg,
.case-gallery-button-next svg {
    width: 29px;
    height: 25px;
}

.swiper-button-prev:hover,
.swiper-button-next:hover,
.camp__swiper-button-prev:hover,
.camp__swiper-button-next:hover,
.case__swiper-button-prev:hover,
.case__swiper-button-next:hover,
.team__main-next:hover,
.team__main-prev:hover,
.case-gallery-button-prev:hover,
.case-gallery-button-next:hover {
    background-color: #f9805f;
    transition: .3s;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
    cursor: pointer;
    border: 1.5px solid #f9805f !important;
}

.camp__swiper-button-prev.swiper-button-disabled,
.camp__swiper-button-next.swiper-button-disabled,
.case__swiper-button-prev.swiper-button-disabled,
.case__swiper-button-next.swiper-button-disabled,
.team__main-next.swiper-button-disabled,
.team__main-prev.swiper-button-disabled,
.case-gallery-button-prev.swiper-button-disabled,
.case-gallery-button-next.swiper-button-disabled {
    opacity: .35 !important;
    cursor: auto !important;
    pointer-events: none !important;
}

.swiper-button-prev svg,
.swiper-button-next svg {
    width: 17px !important;
}

.swiper-button-prev::after {
    content: '' !important;
}

.swiper-button-next {}

.swiper-button-next::after {
    content: '' !important;
}

.steps__item {
    background: #E6EBF2;
    height: 218px;
    padding: 20px 20px 32px 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    transition: .3s;
}

.steps__item p {
    font-weight: 400;
    font-size: 28px;
    line-height: 114%;
    letter-spacing: 0%;
    transition: .3s;
}

.steps__item span {
    padding: 12px 20px;
    font-weight: 600;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    text-transform: uppercase;
    background: #ffffff;
    /* max-width: 88px; */
    position: absolute;
    left: 20px;
    top: 20px;
    transition: .3s;
}



.steps__content {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    position: absolute;
    left: 30px;
    top: 30px;
    font-weight: 400;
    font-size: 18px !important;
    line-height: 100%;
    letter-spacing: 0%;
    max-width: 256px;
    transition: .3s;
}

.steps__item img {
    position: absolute;
    right: 30px;
    top: 30px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: .3s;
}

.steps__item:hover {
    background: #BEC3CC;
    transition: .3s;
}

.steps__item:hover p,
.steps__item:hover span {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: .3s;
}

.steps__item:hover .steps__content,
.steps__item:hover img {
    opacity: 1;
    visibility: visible;
    transition: .3s;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
}

.download__area {
    margin-top: 30px;
    background: #E9FFA1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 34px 40px;
    gap: 84px;
}

.download__area p {
    font-weight: 400;
    font-size: 28px;
    line-height: 100%;
    letter-spacing: 0%;
}

.download__area a {
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    text-transform: uppercase;
    color: #ffffff;
    background: #000000;
    padding: 18px 28px;
    flex-shrink: 0;
    transition: .3s;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
}

.download__area a:hover {
    background: #f9805f;
    color: #000000;
    transition: .3s;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
}

/* !ДЛЯ КОГО ПОДХОДИТ КЭМП */
.for__slider-titl {
    max-width: 100% !important;
}

.for__slider ul {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(3, 1fr);
}

.slider__item {
    border: 1px solid #BEC3CC;
    overflow: hidden;
    box-sizing: border-box;
}

.slider__img {
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.camp__slider {
    overflow-y: visible !important;
}

.camp__slider__steps-navigation {
    position: absolute;
    top: -110px;
    display: flex;
    align-items: center;
    gap: 20px;
    right: 0;
}

.camp__swiper-counter {
    display: none !important;
}

.slider__item img {
    transform: scale(1.3);
    transition: .3s;
    -webkit-transform: scale(1.3);
    -moz-transform: scale(1.3);
    -ms-transform: scale(1.3);
    -o-transform: scale(1.3);
}

.slider__img:hover img {
    transform: scale(1.6);
    transition: .3s;
    -webkit-transform: scale(1.6);
    -moz-transform: scale(1.6);
    -ms-transform: scale(1.6);
    -o-transform: scale(1.6);
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
}

.slider__desc {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 28px;
    padding: 60px 40px;
    min-height: 330px;
}

.slider__desc span {
    position: absolute;
    top: -88px;
    left: 40px;
    background: #ffffff;
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    text-transform: uppercase;
    padding: 16px 28px;
    transition: .3s;
}

.slider__desc p:nth-child(2) {
    font-weight: 400;
    font-size: 32px;
    line-height: 34px;
    line-height: 100%;
    letter-spacing: 0%;
}

.slider__desc p:nth-child(3) {
    font-weight: 400;
    font-size: 24px;
    line-height: 114.99999999999999%;
    letter-spacing: 0%;
}

.slider__item:hover img {
    transform: scale(1.6);
    -webkit-transform: scale(1.6);
    -moz-transform: scale(1.6);
    -ms-transform: scale(1.6);
    -o-transform: scale(1.6);
    transition: .3s;
}

.slider__item:hover .slider__desc span {
    transform: translateY(5px);
    -webkit-transform: translateY(5px);
    -moz-transform: translateY(5px);
    -ms-transform: translateY(5px);
    -o-transform: translateY(5px);
    transition: .3s;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
}

/* !FORM */

.feedback .container {

    display: flex;
    gap: 135px;
    justify-content: space-between;
    background: #BEC3CC;
    padding-top: 97px;
    padding-bottom: 97px;
    align-items: center;
    position: relative;
    z-index: 10;
}

.actions__desktop {
    display: block;
}

.feedback__actions-mobile {
    display: none;
}

.feedback__form {
    max-width: 580px;
}

.feedback__form h2 {
    max-width: 100% !important;
}

.feedback__description {
    font-weight: 400;
    font-size: 20px;
    line-height: 114%;
    letter-spacing: 0%;
}

.feedback__fields {
    margin-top: 64px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feedback__input {
    display: block;
    width: 100%;
    font-weight: 400;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0%;
    padding: 18.5px 20px;
    background: #ffffff;
    color: #BEC3CC;
}

.feedback__actions {
    display: flex;
    gap: 30px;
    margin: 40px 0;
}

.feedback__link {
    font-weight: 600;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    text-transform: uppercase;
    border: 1px solid #999999;
    padding: 12px 20px;
    color: #000000;
    flex-shrink: 0;
    transition: .3s;

}

.feedback__link:hover {
    background-color: #f9805f;
    border: 1px solid #f9805f;
    transition: .3s;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
}

.feedback__checkbox {
    display: flex;
    align-items: center;
    gap: 16px;
    cursor: pointer;
}

.feedback__checkbox-input {
    display: none;
}

.feedback__checkbox-custom {
    width: 30px;
    height: 30px;
    border: 1.5px solid #999999;
    display: inline-block;
    position: relative;
    transition: 0.3s;
    flex-shrink: 0;
    box-sizing: border-box;
}

.feedback__checkbox-text {
    font-weight: 400;
    font-size: 18px;
    line-height: 114%;
    letter-spacing: 0%;

}

.feedback__checkbox-input:checked+.feedback__checkbox-custom {
    background: #000000;
    border: 1.5px solid #000000;
}

.feedback__checkbox-input:checked+.feedback__checkbox-custom::after {
    content: "";
    position: absolute;
    left: 8px;
    top: 1px;
    width: 9px;
    height: 16px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.feedback__checkbox:hover .feedback__checkbox-custom {
    border: 1.5px solid #000000;
}

.feedback__checkbox:active .feedback__checkbox-custom {
    border: 1.5px solid #000000;
}

.feedback__submit {
    display: inline-block;
    background: #000000;
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    text-transform: uppercase;
    padding: 18px 28px;
    color: #ffffff;
    margin-top: 64px;
    transition: .3s;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
}

.feedback__submit:hover {
    background: #f9805f;
    color: #000000;
    transition: .3s;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
}

.feedback__image {
    flex-shrink: 1;
}

.feedback__image img {
    width: 100%;
}

/* !CASE */
.cases {
    padding-top: 260px;
    padding-bottom: 200px;
    position: relative;
    z-index: 10;
    background-color: #ffffff;
}

.case__title-block {
    display: flex;
    align-items: center;
}

.cases__title {
    width: 733px;
}

.cases__subtitle {
    font-weight: 400;
    font-size: 28px;
    line-height: 114%;
    letter-spacing: 0%;
    max-width: 428px;
}

.cases__item {
    display: flex !important;
    height: 570px;
}

.cases__list {
    margin-left: 60px !important;
    overflow: clip;
    overflow-y: visible !important;
    position: relative;
    
}

.cases__content {
    padding: 40px;
    background-color: #E6EBF2;
    width: 60%;
    min-width: 302px;
    height: 490px;
}

.cases__image {
    width: 50%;
    max-width: 608px;
    height: 570px;
}

.cases__image img {
    width: 100%;
    height: 570px;
    object-fit: cover;
    object-position: top;
}

.cases__content div {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.cases__name {
    font-weight: 400;
    font-size: 28px;
    line-height: 114%;
    letter-spacing: 0%;
    max-width: 337px;
}

.cases__line {
    display: block;
    width: 100%;
    height: 1px;
    background-color: #000000;
    left: 0;
    margin-top: 20px;
}

.cases__link {
    font-weight: 600;
    font-size: 12px;
    line-height: 114%;
    letter-spacing: 0%;
    text-align: center;
    text-transform: uppercase;
    color: #ffffff;
    padding: 18px 28px;
    background-color: #000000;
    position: absolute;
    bottom: 0;
    transition: .3s;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
}

.cases__link:hover {
    transition: .3s;
    color: #000000;
    background: #f9805f;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
}

.case__slider__steps-navigation {
    display: flex;
    align-items: center;
    gap: 63.5px;
    position: absolute;
    top: -110px;
    right: 60px;
}

.camp__swiper-counter,
.case__swiper-counter {
    font-weight: 500;
    font-style: Normal;
    font-size: 24px;
    line-height: 114.99999999999999%;
    letter-spacing: 0%;
    text-align: center;
}




/* !ПОДВАЛ */
.footer {
    background-color: #000000;
    color: #ffffff;
    overflow: hidden;
    position: relative;
    z-index: 10;
}

.footer__container {
    padding-top: 45px !important;
    padding-bottom: 45px !important;
}

.footer__list {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 100px;
    position: relative;
    z-index: 2;
}

.footer__list .footer__column:nth-child(2) {
    margin: 60px 0;
}

.footer__list .footer__column:nth-child(2) ul {
    gap: 0;
}

.footer__list .footer__column:nth-child(3) ul {
    gap: 8px;
}

.footer__sublist {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__item {}

.footer__link {
    color: #ffffff;
    font-weight: 600;
    font-size: 24px;
    line-height: 114%;
    letter-spacing: 0%;
    text-transform: uppercase;
    transition: .3s;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
}



.footer__list .footer__column:nth-child(2) .footer__link {
    font-weight: 400;
    font-size: 60px;
    line-height: 114%;
    letter-spacing: 0%;
    color: #B3B3F5;
    text-transform: none;
}

.footer__list .footer__column:nth-child(3) .footer__link {
    font-weight: 400;
    font-size: 24px;
    leading-trim: NONE;
    line-height: 114.99999999999999%;
    letter-spacing: 0%;
    color: #ffffff;
    text-transform: none;
}


.footer__textlist {
    display: flex;
    flex-direction: row;
    gap: 216px;
}

.footer__list .footer__column:nth-child(4) .footer__link,
.footer__list .footer__column:nth-child(4) .footer__copy,
.footer__list .footer__column:nth-child(4) .footer__note {
    color: #BEC3CC;
    font-weight: 400;
    font-size: 18px;
    line-height: 114%;
    letter-spacing: 0%;
    text-transform: none;
    min-width: 196px;
}

.footer__container {
    position: relative;
    z-index: 2;
}

.footer__container img {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 1;
    object-fit: contain;
    object-position: right;
    width: 100%;
    height: 100%;
}

.team {
    position: relative;
    z-index: 20;
    background-color: #ffffff;
    padding-bottom: 260px;
}

.block__heading {
    display: flex;
    align-items: flex-start;
    gap: 30px;
}

.block__heading h2 {
    width: 580px;
}

.block__heading p {
    max-width: 732px;
    font-weight: 400;
    font-size: 24px;
    line-height: 114.99999999999999%;
    letter-spacing: 0%;

}

.team__content {
    display: flex;
    gap: 30px;
}

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


.team__main {
    max-width: 580px !important;
    margin: 0 !important;
}

.team__container {
    width: calc(100% - 60px);
    padding-left: 60px;
}

.preview-slider {
    width: calc(100% - 610px);
}

.preview-slider .aswiper-slide {
    width: 267px;
}

.thumbsSwiper {
    margin: 0 !important;
    width: 100%;
}

.team__text {
    width: 100%;
    margin-top: 96px;
}

.thumbsSwiper {
    height: 120px;
    /* высота превью-слайдера */
}

.team__text {
    height: auto;
    /* можно подстроить под контент */
}

.team__slider-navigation {
    display: flex;
    align-items: center;
    gap: 63.5px;
}

.text__desc {
    display: flex;
    align-items: flex-start;
    gap: 23px;
}

.text__desc p {
    max-width: 575px;
    font-weight: 400;
    font-size: 18px;
    line-height: 114%;
    letter-spacing: 0%;

}

.text__title {
    /* width: 275px; */
    flex-shrink: 0;
}

.text__title h4 {
    font-weight: 600;
    font-size: 24px;
    line-height: 100%;
    letter-spacing: 0%;
    text-transform: uppercase;
}

.text__title p {
    font-weight: 400;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0%;
    margin-top: 8px;
}

.team__swiper-counter {
    font-size: 20px;
}

.team .swiper-slide img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.thumbsSwiper .swiper-slide img {

    max-height: 460px !important;
    max-width: 275px;
}

.thumbsSwiper {
    height: 100% !important;
}


@media(max-width: 1660px) {
    .team {
        padding-bottom: 200px;
    }

    .thumbsSwiper {
        height: 325px;
    }

    .team__main {
        max-width: 440px !important;
        margin: 0 !important;
    }

    .team__titl {
        max-width: 440px !important;
    }

    .team__container {
        width: calc(100% - 40px);
        padding-left: 40px;
    }

    .team__content {
        gap: 20px;
    }

    .preview-slider {
        width: calc(100% - 460px);
    }

    .block__heading {
        gap: 20px;
    }

    .block__heading p {

        font-size: 20px;


    }

    .team__main-prev,
    .team__main-next {
        width: 40px !important;
        height: 40px !important;
    }

    .team__main-prev svg,
    .team__main-next svg {
        width: 23px;
        height: 19px;
    }

    .text__desc p {
        font-size: 16px;
    }

    .text__title h4 {
        font-size: 20px;
    }

    .team__text {
        margin-top: 64px;
    }

    .team__slider-navigation {
        gap: 46px;
    }

    .team__swiper-counter {}
}

@media(max-width: 1440px) {
    .team {
        padding-bottom: 160px;
    }

    .thumbsSwiper {
        height: 285px;
    }
}

@media(max-width:1260px) {
    .team {
        padding-bottom: 140px;
    }

    .thumbsSwiper {
        height: 225px;
    }

    .block__heading p {
        max-width: 500px;
        font-size: 14px;
    }

    .team__container {
        width: calc(100% - 30px);
        padding-left: 30px;
    }

    .team__content {
        gap: 20px;
    }

    .preview-slider {
        width: calc(100% - 319px);
    }

    .block__heading {
        gap: 20px;
    }

    .team__main {
        max-width: 289px !important;
        margin: 0 !important;
    }

    .block__heading {
        justify-content: space-between;
    }

    .team__main-prev,
    .team__main-next {
        width: 35px !important;
        height: 35px !important;
    }

    .team__main-prev svg,
    .team__main-next svg {
        width: 17px;
        height: 14px;
    }

    .text__desc p {
        font-size: 12px;
    }

    .text__title h4 {
        font-size: 18px;
    }

    .team__text {
        margin-top: 32px;
    }

    .team__slider-navigation {
        gap: 20px;
    }

    .team__swiper-counter {
        display: none;
    }
}


@media(max-width: 1040px) {
    .team__main {
        max-width: 225px !important;
        margin: 0 !important;
    }

    .preview-slider {
        width: calc(100% - 245px);
    }
}

@media(max-width: 767px) {
    .team {
        padding-bottom: 100px;
    }
}

@media(max-width: 670px) {
    .block__heading h2 {
        width: calc(100% - 19px);
    }

    .thumbsSwiper {
        display: none !important;
    }

    .team__swiper-counter {
        display: block;
    }

    .team__main-prev,
    .team__main-next {
        width: 35px !important;
        height: 35px !important;
    }

    .team__main-prev svg,
    .team__main-next svg {
        width: 17px;
        height: 14px;
    }

    .text__desc {
        flex-direction: column;

    }

    .text__desc p {
        font-size: 12px;
    }

    .text__title h4 {
        font-size: 16px;
    }

    .team__text {
        margin-top: 28px;
    }

    .team__slider-navigation {
        gap: 20px;
    }

    .team__content {
        flex-direction: column;
    }

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

    .team__main .swiper-slide {
        width: 100%;
        height: 100%;
    }

    .team .swiper-slide img {
        object-fit: cover;
        width: 100%;
        height: 100%;
        max-height: 460px;
        object-position: top;
    }
}

@media(max-width: 765px) {
    .thumbsSwiper {
        display: none !important;
    }

    .team__container {
        padding-left: 19px;
        width: calc(100% - 19px);
    }

    .team__content {
        flex-direction: column;
    }

    .team__main {
        width: 100% !important;
        max-width: calc(100% - 19px) !important;
    }

    .team__text {
        width: 100%;
    }

    .preview-slider {
        width: calc(100% - 19px);
    }

    .block__heading {
        padding-right: 19px;
        flex-direction: column;
        align-items: flex-start;
    }
}

#problems,
#team {
    scroll-margin-top: 20vh;
    /* элемент окажется по центру */
}