:root {
    --accent-pink: #DD0060;
    --accent-pink-hover: #B6004F;
    --accent-green: #2CA58D;
    --accent-green-hover: #188771;
    --accent-yellow: #FFBB00;
    --text: #242424;
    --text-light: #6C6C6C;
    --text-selected: #AA9885;
    --text-green: #53857C;
    --border-100: #D9D9D9;
    --border-75: #D9D9D975;
    --border-50: #D9D9D950;
    --border-25: #D9D9D925;
    --back: #F5F5F5;
    --back-light: #F7F5F3;
    --green-back: #2CA58D40;
    --green-gradient: linear-gradient(260deg, rgba(44, 165, 141, 0.25) 0%, rgba(24, 135, 113, 0.25) 33.17%, rgba(21, 165, 68, 0.25) 65.87%, rgba(0, 123, 40, 0.25) 100%);
    --type-text: 400 16px/1.5 "Roboto", sans-serif;
    --type-section-title: 700 32px/1.2 "Montserrat", sans-serif;
    --type-nav-text: 400 14px/1.2 "Roboto", sans-serif;
    --type-btn-text: 400 16px/1 "Roboto", sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}

body {
    padding-top: calc(32px + 80px);
}

.hidden {
    overflow: hidden;
}

.container {
    margin: auto;
    padding: 0 16px;
    max-width: 1200px;
    width: 100%;
}

.section {
    padding: 64px 0;
}

.section.back {
    background: var(--back);
}

.section__head {
    margin-bottom: 32px;
    border-bottom: 1px solid var(--border-100);
}

.section__head .head__title {
    margin-bottom: 16px;
    font: 700 12px/1.5 "Montserrat", sans-serif;
    color: var(--text-light);
    letter-spacing: 6px;
    text-transform: uppercase;
}

.section__title {
    margin-bottom: 32px;
    font: var(--type-section-title);
    color: var(--text);
}

.section__title span {
    color: var(--accent-pink);
}

.section__description {
    font: var(--type-text);
}

.title__container {
    margin-bottom: 32px;
    padding-right: 33%;
}

/* GRIDS */
.grid__col--4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

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

.grid__col--2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

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

.grid__item {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 32px
}

.cards .grid__item {
    padding: 32px;
    min-height: 200px;
    gap: 16px;
    border: 1px solid var(--border-100);
}

.grid__item .item__count {
    font: 700 32px/1.2 "Montserrat", sans-serif;
    color: var(--accent-pink);
}

.grid__item .item__title {
    font: 500 20px/1.2 "Montserrat", sans-serif;
    color: var(--text);
}

.grid__item .same__list * {
    color: var(--accent-pink);
}

.grid__item .item__description,
.grid__item .item__text p {
    font: 400 14px/1.5 "Roboto", sans-serif;
    color: var(--text-light);
}

.grid__item .item__text p:not(:last-child) {
    margin-bottom: 14px;
}

.grid__item .item__same {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 8px;
}

.grid__item .item__same span {
    font: 400 12px/1 "Roboto", sans-serif;
    color: var(--text);
    white-space: nowrap;
}

.item__list {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 14px;
    list-style: none;
}

.item__list li {
    position: relative;
    padding-left: 24px;
    font: 400 14px/1.5 "Roboto", sans-serif;
    color: var(--text-light);
}

.item__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-pink);
    transform: translateY(-50%);
}

/* NAVIGATION */
.breadcrumbs__list,
.breadcrumbs__list .list__item {
    display: flex;
    align-items: center;
    gap: 8px;;
}

.breadcrumbs__list .list__item:not(:last-child):after {
    content: '';
    display: inline-block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--border-100);
}

.breadcrumbs__list .list__item,
.breadcrumbs__list .list__item a {
    font: var(--type-nav-text);
    color: var(--text-light);
}

.breadcrumbs__list .list__item a:hover {
    color: var(--accent-pink);
}

/* BUTTONS */
.btn {
    position: relative;
    margin: 0;
    padding: 0;
    width: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    border-radius: 100px;
    outline: none;
    font: var(--type-btn-text);
    text-decoration: none;
    background: none;
    transition: 0.3s;
    cursor: pointer;
}

.btn--fill {
    padding: 0 32px;
    height: 54px;
    color: #FFF;
    background: var(--accent-pink);
}

.btn--fill:hover {
    background: var(--accent-pink-hover);
}

.btn--stroke {
    padding: 0 32px;
    height: 54px;
    border: 1px solid var(--border-75);
    color: var(--text-light);
    background: #FFF;
}

.btn--stroke:hover {
    background: var(--back);
}

.btn--small {
    padding: 0 16px;
    height: 32px;
}

.btn--play {
    position: relative;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    border: 1px solid var(--accent-pink);
    border-radius: 50%;
    background: #FFFFFF10;
    backdrop-filter: blur(4px);
    color: var(--accent-pink);
    transition: transform 0.3s;
}

.btn--play:hover {
    transform: scale(1.1);
}

.btn--play svg {
    margin-left: 6px;
}

.btn__container {
    margin-top: 32px;
    display: flex;
    gap: 8px;
}

.btn__container.center {
    justify-content: center;
}

.btn--social {
    position: relative;
    min-width: 54px;
    height: 54px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 0 12px rgb(139 139 139 / 25%);
    transition: transform 0.3s;
}

.btn--social:hover {
    transform: scale(1.1);
}

.btn--burger {
    position: relative;
    padding: 8px;
    width: 48px;
    height: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    gap: 6px;
    transition: 0.3s;
}

.btn--burger span {
    position: absolute;
    display: block;
    width: 32px;
    height: 2px;
    background: var(--text-light);
    transition: 0.3s;
}

.btn--burger span:first-child{
    transform: translateY(-4px);
}

.btn--burger span:last-child{
    width: 24px;
    transform: translateY(4px);
}

.btn--burger.active span {
    position: absolute;
    width: 32px;
}

.btn--burger.active span:first-child {
    transform: rotate(45deg);
}

.btn--burger.active span:last-child {
    transform: rotate(-45deg);
}

/* GALLERY */
.gallery {
    position: relative;
}

.swiper {
    position: relative;
    margin-top: 32px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-height: 300px;
}

.swiper-slide {
    max-width: 278px;
    /* background: var(--border-100); */
}

.swiper-slide img {
    background: var(--border-100);
}

/* SYSTEMS SLIDER */
.systems .swiper {
    max-height: unset;
}
.systems__card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
}

.systems__card picture {
    margin-bottom: 16px;
}

.systems__card picture,
.systems__card img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 278/300;
    object-fit: cover;
}

.systems__category {
    margin-bottom: 4px;
    font: var(--type-nav-text);
    color: var(--text-light);
}

.systems__title {
    margin-bottom: 16px;
    font: 500 20px/1 "Montserrat", sans-serif;
    color: var(--text);
}

.systems__props {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 8px;
    list-style: none;
}

.systems__props .props__item {
    display: flex;
    justify-content: flex-start;
    align-items: baseline;
    gap: 4px;
}

.systems__props .props__item * {
    font: var(--type-nav-text);
    color: var(--text-light);
}

.systems__props .props__name {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: baseline;
    gap: 4px;
    white-space: nowrap;
}

.systems__props .props__name:after {
    content: '';
    width: 100%;
    display: block;
    border-bottom: 1px dashed var(--border-100);
}

.systems__props .props__value {
    white-space: nowrap;
}

.gallery__nav {
    position: absolute;
    z-index: 50;
    top: 50%;
    left: 50%;
    margin: auto;
    max-width: 1200px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    transform: translate(-50%, -50%);
}

.gallery__prev,
.gallery__next {
    width: 54px;
    height: 54px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: var(--accent-pink);
    color: #FFF;
    cursor: pointer;
    transition: transform 0.3s,
                background 0.3s;
}

.gallery__prev:hover,
.gallery__next:hover {
    background: var(--accent-pink-hover);
    transform: scale(1.1);
}

.gallery__prev.swiper-button-disabled,
.gallery__next.swiper-button-disabled {
    opacity: 0.1;
    pointer-events: none;
}

/* HEADER */
.header {
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    right: 0;
    border-bottom: 1px solid var(--border-100);
    background: #FFF;
}

.header * {
    font: var(--type-nav-text);
    color: var(--text);
}

.header__top {
    background: var(--border-25);
}

.top__wrapper {
    height: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.header__top .location,
.header__top .location__item,
.header__top .contacts,
.header__top .contacts__item {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 8px;
}

.location__item:not(:last-child):after,
.contacts__item:not(:last-child):after {
    content: '';
    display: inline-block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--border-100);
}

.contacts__item.phone {
    color: var(--accent-pink);
}

.base__wrapper {
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.header__nav {
    height: inherit;
}

.header__nav .nav__list {
    height: inherit;
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 24px;
    list-style: none;
}

.header__nav .nav__list .list__item {
    position: relative;
    height: inherit;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-bottom: 2px solid transparent;
}

.header__nav .nav__list .list__item:hover,
.header__nav .nav__list .list__item.active {
    border-color: var(--accent-pink);
}

.header__nav .nav__list .list__item.dropdown:after {
    content: url(../img/down.svg);
}

.header__nav .nav__list .list__item a {
    height: inherit;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.header__nav .nav__list .list__item .sublist {
    position: absolute;
    z-index: 50;
    top: 80px;
    left: 0;
    display: none;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    background: #FFF;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

.header__nav .nav__list .list__item:hover .sublist {
    display: flex;
}

.header__nav .nav__list .list__item .sublist .sublist__item {
    padding: 16px;
    max-width: 320px;
    width: 320px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 8px;
    border-bottom: 1px solid var(--border-100);
}

.header__nav .nav__list .list__item .sublist .sublist__item:hover {
    background: var(--back);
}

.base__wrapper .btn.callback {
    color: #FFF;
}

.base__wrapper .phone {
    margin-left: auto;
    display: none;
    font: 400 16px/1 "Inter", sans-serif;
    color: var(--text);
}

.base__wrapper .btn--burger {
    display: none;
}

.menu--mobile {
    position: fixed;
    z-index: 100;
    inset: 81px 0 0;
    margin-left: auto;
    width: 0;
    background: #FFF;
    overflow: hidden;
    transition: width 0.9s cubic-bezier(0.95, 0.05, 0.795, 0.035);
}

.mobile__nav {
    width: 100%;
}

.mobile__nav .nav__list {
    list-style: none;
}

.mobile__nav .list__item {
    border-bottom: 1px solid var(--border-100);
}

.mobile__nav .list__item a {
    position: relative;
    padding: 16px;
    display: block;
    font: 400 16px/1 "Inter", sans-serif;
    color: var(--text);
    white-space: nowrap;
}

.menu--mobile.active {
    width: 100%;
}

/* SAME LIST */
.same__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    gap: 8px;
    list-style: none;
}

.same__list li {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 8px;
    font: 400 12px/1 "Roboto", sans-serif;
    color: var(--text-light);
    text-transform: lowercase;
}

.same__list li:not(:last-child):after {
    content: '';
    display: inline-block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--border-100);
}

/* TAXONOMY LIST */
.taxonomy__list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
}

.taxonomy__list .pill {
    padding: 0 32px;
    height: 54px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--accent-pink);
    border-radius: 27px;
    font: var(--type-btn-text);
    color: var(--accent-pink);
    background: none;
}

/* HERO */
.hero {
    padding: 16px 0;
}

.hero__content {
    height: 550px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 32px;
}

.hero__suptitle {
    font: var(--type-nav-text);
    color: var(--text-light);
}

.hero__title {
    font: 700 40px/1.2 "Montserrat", sans-serif;
    color: var(--text);
}

.hero__title span {
    color: var(--text-selected);
}

.hero__description {
    font: var(--type-text);
    color: var(--text);
}

.hero__cover {
    position: absolute;
    top: 0;
    left: 0;
    width: calc(100vw / 2 - 10px - 16px);
    height: 550px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--back);
    /* border-radius: 8px; */
    overflow: hidden;
}

.hero__cover picture,
.hero__cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__play {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 16px;
}

.play__text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 4px;
}

.play__text span {
    padding: 0 12px;
    height: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    font: 400 14px/1 "Roboto", sans-serif;
    color: #FFF;
    background: var(--accent-pink);
}

/* BRANDS */
.brands {
    padding: 32px 0;
    overflow: hidden;
}

.brands__marquee {
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 80px, #000 calc(100% - 80px), transparent);
    mask-image: linear-gradient(90deg, transparent, #000 80px, #000 calc(100% - 80px), transparent);
}

.brands__track {
    display: flex;
    align-items: center;
    width: max-content;
    will-change: transform;
    animation: brands-scroll var(--brands-duration, 30s) linear infinite;
}

.brands__marquee:hover .brands__track {
    animation-play-state: paused;
}

.brands__item {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 40px;
}

.brands__item img {
    display: block;
    width: auto;
    height: 64px;
    object-fit: contain;
    filter: grayscale(1);
    opacity: .65;
    transition: filter .25s, opacity .25s;
}

.brands__item img:hover {
    filter: grayscale(0);
    opacity: 1;
}

@keyframes brands-scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(calc(-1 * var(--brands-set-width, 50%)));
    }
}

@media (prefers-reduced-motion: reduce) {
    .brands__track {
        animation: none;
    }
}

/* PROMO */
.promo__wrapper {
    padding: 32px;
    background: var(--green-gradient);
}

.promo__description {
    margin-bottom: 32px;
    font: 400 16px/1.5 "Roboto", sans-serif;
    color: var(--text-green);
}

/* PORTFOLIO */
.grid__cases {
    position: relative;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
    grid-auto-rows: 20px;
    gap: 20px;
}

.grid__cases .case {
    position: relative;
    grid-row-end: span 13;
    overflow: hidden;
    transition: 0.3s;
}

.grid__cases .case:nth-child(2) {
    height: auto;
    grid-row-end: span 7;
}

.grid__cases .case:last-child:not(:only-child) {
    height: auto;
    grid-row-end: span 6;
}

.grid__cases .case a {
    color: #FFF;
}

.case .case__cover {
    width: 100%;
    display: block;    
}

.case .case__cover img {
    width: 100%;
    height: 500px;
    display: block;
    object-fit: cover;
}

.case:nth-child(2),
.case:last-child {
    height: 240px;
}

.case a::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0) 55%, rgba(0, 0, 0, 0.65) 100%);
}

.case__container {
    position: absolute;
    z-index: 1;
    left: 0;
    bottom: 0;
    padding: 16px;
}

.case .case__category {
    margin-bottom: 8px;
    display: block;
    font: 700 12px/1.5 "Montserrat", sans-serif;
    letter-spacing: 6px;
    text-transform: uppercase;
}

.case .case__title {
    margin-bottom: 32px;
    font: 600 24px/1.2 "Montserrat", sans-serif;
    text-transform: uppercase;
}

.case .case__bages {
    display: flex;
    align-items: center;
    gap: 8px;
}

.case .case__bage {
    display: inline-flex;
    justify-content: center;
    align-items: center;    
}

.case .case__bage--gallery {
    padding: 0 16px;
    height: 42px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
    font: var(--type-nav-text);
    color: #FFF;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(4px);
}

.case .case__bage--video {
    width: 42px;
    height: 42px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: var(--accent-pink);    
}

/* FORM */
.form {
    position: relative;
    margin: auto;
    max-width: 320px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    gap: 16px;
}

.success {
    position: absolute;
    z-index: 50;
    inset: 0;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #FFF;
}

.success.active {
    display: flex;
}

.success__title {
    margin-bottom: 16px;
    font: var(--type-section-title);
    text-align: center;
}

.success__description {
    margin-bottom: 16px;
    font: var(--type-text);
    text-align: center;
}

.form__description {
    font: var(--type-text);
}

.fieldset {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    gap: 8px;
}

.fieldset .field__title {
    font: var(--type-text);
}

.fieldset.radio label {
    position: relative;
}

.fieldset .error {
    display: none;
}

.form input[type="text"],
.form input[type="tel"] {
    padding-left: 16px;
    width: 100%;
    height: 55px;
    border: none;
    border-bottom: 2px solid var(--border-50);
    border-radius: 4px;
    outline: none;
    font: var(--type-text);
    background: var(--border-25);
    transition: background 0.3s, border-color 0.3s;
}

.form input[type="text"]:hover,
.form input[type="tel"]:hover {
    border-color: var(--border-75);
}

.form input[type="text"]:focus-visible,
.form input[type="tel"]:focus-visible {
    border-bottom-color: var(--accent-pink);
}

/* POPUP */
.popup {
    position: relative;
    margin: auto;
    padding: 32px 16px;
    width: 100%;
    max-width: 800px;
    height: auto;
    min-height: 550px;
    background: #FFF;
}

.popup .section__title {
    font-size: 24px;
}

/* INPUT RADIO */
.fieldset.radio .fieldset__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    gap: 8px;
}

.fieldset.radio input[type="radio"] {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.fieldset.radio .field {
    width: 100%;
    height: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--back);
    border-radius: 12px;
    font: var(--type-nav-text);
    line-height: 1;
    text-align: center;
    background: #FFF;
    cursor: pointer;
    transition: border 0.3s, background 0.3s;
}

.fieldset.radio label:hover .field {
    border-color: var(--border-100);
    background: var(--border-100);
}

.fieldset.radio input[type="radio"]:checked + .field {
    border-color: var(--accent-pink);
    background: var(--accent-pink);
    color: #FFF;
}

/* INPUT CHECKBOX */
.fieldset.checkbox label {
    display: flex;
    gap: 16px;
}

.fieldset.checkbox input[type="checkbox"] {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.fieldset.checkbox .field {
    position: relative;
    min-width: 24px;
    height: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    border-bottom: 2px solid #FFF;
    border-radius: 4px;
    background: #FFFFFF25;
    cursor: pointer;
}

.fieldset.checkbox .field svg {
    opacity: 0;
}

.fieldset.checkbox input[type="checkbox"]:checked + .field svg {
    opacity: 1;
}

.fieldset.checkbox .label {
    font: 400 10px/1.2 "Inter", sans-serif;
    color: var(--text);
}

.fieldset.checkbox .label a {
    color: var(--accent-pink);
}

.form .btn {
    align-self: center;
}

/* FEEDBACK */
.feedback {
    background: url(../img/form-background-circule.svg) center center, #ABDBD1;
    background-repeat: no-repeat;
}

.feedback__form {
    grid-column:  2/3;
}

.feedback .form__description,
.feedback input[type="text"],
.feedback input[type="tel"],
.feedback .field__title,
.feedback .fieldset.checkbox .label {
    color: #188771;
}

.feedback .form input[type="text"]:focus-visible,
.feedback .form input[type="tel"]:focus-visible {
    border-bottom-color: var(--accent-green);
}

.feedback .fieldset.radio .field {
    border-color: #188771;
    color: var(--accent-green);
    background: transparent;
}

.feedback .fieldset.radio label:hover .field,
.feedback .fieldset.radio input[type="radio"]:checked + .field {
    border-color: #188771;
    color: #FFF;
    background: #188771;
}

.feedback .fieldset.checkbox .label a {
    color: #188771;
}

/* FOOTER */
.footer {
    padding: 64px 0;
    background: var(--text);
}

.footer * {
    color: #FFF;
}

.footer .grid__item .item__title {
    margin-bottom: 16px;
    font: 500 20px / 1.2 "Montserrat", sans-serif;
    color: #FFF;
}

.footer .item__list li {
    padding-left: 0;
}

.footer .item__list li::before {
    content: none;
}

.footer .item__list li a:hover {
    color: var(--accent-pink);
}

.footer .item__list.contacts li {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer .item__list.contacts span {
    color: var(--text-light);
}

.subfooter {
    margin-top: 32px;
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    border-top: 1px solid var(--text-light);
}

.subfooter__logo {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.subfooter__logo small {
    font: var(--type-nav-text);
}

.docs__list {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    gap: 8px;
    list-style: none;
}

.docs__list li,
.docs__list li a {
    font: var(--type-nav-text);
    text-align: right;
}

.docs__list li a:hover {
    color: var(--accent-pink);
}

/* SOCIAL LIST */
.social__list {
    display: flex;
    gap: 16px;
    list-style: none;
}

/* FAQ & LIST ROWS ROW */
.faq .list .grid__item,
.list .grid__item {
    grid-column: 2/3;
}

.faq .list .faq__item,
.rows .row {
    padding: 32px 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    align-items: flex-start;
    border-bottom: 1px solid var(--border-100);
}

.faq .list .faq__item:last-of-type,
.rows .row:last-of-type {
    margin-bottom: 16px;
}

.rows .row.accent .item__title {
    color: var(--accent-pink);
}

/* SYSTEMS */
.systems .accordion {
    position: relative;
    padding: 32px;
    width: 100%;
    max-height: 88px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    border-left: 2px solid var(--back);
    background: var(--back);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.6s ease-in-out;
}

.systems .accordion:hover {
    border-color: var(--accent-pink);
}

.accordion__body {
    padding-top: 16px;
    height: 0;
    overflow: hidden;
    transition: all 0.6s ease-in-out;
}

.systems .accordion:hover .accordion__body {
    height: 100%;
}

.interactive__field {
    position: relative;
    width: 100%;
    height: auto;
    max-height: 640px;
    aspect-ratio: 376/640;
}

.interactive__field picture,
.interactive__field img {
    width: 100%;
    height: auto;
    max-height: 640px;
    display: block;
    aspect-ratio: 376/640;
}

.interactive__pin {
    position: absolute;
    z-index: 10;
    display: block;
    width: 16px;
    height: 16px;
    border: 2px solid var(--accent-pink);
    border-radius: 50%;
    background: #FFF;
    cursor: pointer;
    transition: all 0.3s;
}

.interactive__pin.active {
    background: var(--accent-pink);
    transform: scale(1.5);
}

.systems .accordion.hovered {
    border-color: var(--accent-pink);
}

.systems .accordion.hovered .accordion__body {
    height: 100%;
}

.systems .accordion.hovered {
    height: auto;
    max-height: 100%;
}

/* OBJECTS */
.objects .taxonomy__list {
    margin-bottom: 32px;
}

.objects__list {
    width: 100%;
    max-height: 550px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    overflow:auto;
}

.objects__list .list__item {
    padding-left: 16px;
    min-height: 96px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 8px;
    border-left: 2px solid transparent;
    border-bottom: 1px solid var(--border-50);
    background: #FFF;
    cursor: pointer;
}

.objects__list .list__item.is-hover {
    border-left-color: var(--border-100);
    background: var(--border-50);
}

.objects__list .list__item.is-active {
    border-left-color: var(--accent-pink);
    background: var(--border-25);
}

.object__category {
    padding: 0 12px;
    height: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    font: 400 12px/100% "Roboto", sans-serif;
    color: #FFF;
    background: var(--accent-pink);
}

.object__name {
    font: 500 14px/120% "Montserrat", sans-serif;
    color: var(--title-text);
}

.objects__map {
    width: 100%;
    min-height: 550px;
    border-radius: 8px;
    overflow: hidden;
}

.pin{
    position: absolute;
    left: 50%;
    top: 50%;
    width: 0px;
    height: 0px;
    transform: translate(-50%,-50%);
    border-radius: 999px;
    background: #FFF;
    pointer-events: none;
}

.pin--active {
    width: 16px;
    height: 16px;
    background: var(--accent-pink);
}

.pin--hover {
    width: 16px;
    height: 16px;
    background: var(--accent-pink);
}

/* REVIEWS */
.reviews .swiper {
    max-height: unset;
    height: auto;
}

.reviews .swiper-slide {
    max-width: unset;
}

.reviews__card {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 16px;
}

.reviews__card picture,
.reviews__card img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 1/1;
    object-fit: cover;
}

.reviews__card .text * {
    font: var(--type-nav-text);
    line-height: 1.5;
    color: var(--text-light);
}

.reviews__card .text p:not(:last-of-type) {
    margin-bottom: 14px;
}

.reviews__card .subject {
    font: var(--type-nav-text);
}

/* PAGE */
.page .item__list li {
    padding-left: unset;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.page .item__list li:before {
    display: none;
}

.page .item__list li a,
.page .item__list li p {
    font-size: 16px;
    color: var(--text);
}

.page .item__list li a:hover {
    color: var(--accent-pink);
}

@media (max-width: 1024px) {
    body {
        padding-top: 80px;
    }

    .container {
        max-width: 960px;
    }

    /* HEADER */
    .header__top,
    .header__nav {
        display: none;
    }

    .base__wrapper {
        gap: 32px;
    }

    .base__wrapper .btn--burger {
        display: flex;
    }

    .base__wrapper .phone {
        display: block;
    }
    
}

@media (max-width: 960px) {
    .container {
        max-width: 800px;
    }

    /* GRIDS */
    .grid__col--4 {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }

    .grid__col--3 {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }

    .grid__col--2 {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }

    .grid__col--1-2 {
        grid-template-columns: 1fr;
    }

    /* FAQ */
    .faq .list .grid__item, .list .grid__item {
        grid-column: unset;
    }

    /* FORM */
    .feedback .grid__col--3 {
        grid-template-columns: 1fr;
    }

    .feedback .feedback__form {
        grid-column: unset;
    }
}

@media (max-width: 800px) {
    .container {
        max-width: 640px;
    }

    .section {
        padding: 32px 0;
    }

    .title__container {
        padding-right: 0;
    }

    /* GRID */
    .grid__item {
        gap: 24px;
    }

    /* HERO */
    .hero__content {
        height: auto;
    }
    
    .hero__cover {
        position: relative;
        width: 100%;
        height: auto;
        aspect-ratio: 6/4;
    }

    /* SYSTEMS */
    .interactive__field {
        margin: auto;
        max-width: 320px;
    }

    /* FOOTER */
    .footer {
        padding: 32px 0;
    }

    .footer .grid__col--4 {
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
        gap: 32px;
    }
}

@media (max-width: 640px) {
    .container {
        max-width: 480px;
    }

    .section__title {
        font-size: 28px;
    }

    /* HEADER */
    .base__wrapper .phone {
        display: none;
    }

    /* HERO */
    .hero__content {
        gap: 16px;
    }

    .hero__title {
        font-size: 32px;
    }

    /* CARDS */
    .cards .grid__item {
        padding: 24px 16px;
    }

    /* CASES */
    .grid__cases .case:nth-child(2),
    .grid__cases .case:last-child:not(:only-child) {
        grid-row-end: span 13;
    }

    /* PROMO */
    .promo__wrapper {
        padding: 24px 16px;
    }

    .promo__wrapper .grid__item > * {
        margin-bottom: 0;
    }

    /* FORM */ 
    .form {
        max-width: 100%;
    }

    /* FOOTER */
    .subfooter {
        flex-wrap: wrap;
        gap: 32px;
    }

    .docs__list {
        align-items: flex-start;
    }

    .docs__list li, .docs__list li a {
        text-align: left;
    }
}

@media (max-width: 480px) {
    .container {
        max-width: 440px;
    }

    /* HEADER */
    .base__wrapper .btn.callback {
        display: none;
    }

    /* CASES */
    .grid__cases .case,
    .grid__cases .case:nth-child(2), 
    .grid__cases .case:last-child:not(:only-child) {
        grid-row-end: span 10;
    }
}

@media (max-width: 440px) {
    .container {
        max-width: 100%;
    }
}