/** Main Styles */

body {
    font-family: "Inter", Sans-serif!important;
}

.page-content, .entry-content, .entry-summary {
    margin: 0!important;
}

.post, .page {
    margin: 0!important;
}

/* h1.entry-title {
    display: none!important;
} */

/** Container Styles */

.container {
    width: 100%;
    max-width: 1536px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 16px;
    padding-right: 16px;
    box-sizing: border-box;
}

@media (max-width: 1536px) {
    .container {
        max-width: 1280px;
    }
}

@media (max-width: 1280px) {
    .container {
        max-width: 1024px;
    }
}

@media (max-width: 1024px) {
    .container {
        max-width: 768px;
    }
}

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

@media (max-width: 640px) {
    .container {
        max-width: 100%;
        padding-left: 12px;
        padding-right: 12px;
    }
}

/** Header */

.site-header {
    position: relative;
    background: #fff;
    box-shadow: 0 4px 30px 0 #00000040;
    border: 1px solid #0000001A;
}

.site-header__bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 55px 0;
}

.site-header__left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.custom-logo-link {
    display: flex!important;
}

.site-header__left img {
    width: 193px;
    height: auto;
}

.nav-primary {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-primary .menu {
    display: flex;
    gap: 80px;
    list-style: none;
    margin: 0;
    padding: 9px 0;
}

.nav-primary .menu > li > a {
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    color: #000000;
    transition: all 250ms ease;
}

.nav-primary .menu > li > a:hover {
    color: #c862b9;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 100px;
}

/* ========= ТЕЛЕФОНЫ (дропдаун) ========= */
.phones {
    position: relative;
}

.phones summary {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    font-size: 18px;
    font-weight: 700;
    color: #000000;
    white-space: nowrap;
    user-select: none;
}

.phones summary::-webkit-details-marker {
    display: none;
}

.phones__arrow {
    width: 20px;
    height: auto;
    transform: translateY(1px);
    transition: transform 0.2s;
}

.phones[open] .phones__arrow {
    transform: rotate(180deg);
}

.phones .menu {
    position: absolute;
    right: 0;
    top: 130%;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
    padding: 8px 0;
    min-width: 220px;
    z-index: 50;
    margin: 0;
}

.phones .menu li {
    list-style: none;
}

.phones .menu a {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    padding: 10px 14px;
    text-decoration: none;
    color: #000000;
    font-weight: 500;
    transition: background 0.2s;
    line-height: 1.2;
}

.phones .menu a:hover {
    background: #f5f5f5;
}

/* ========= ЯЗЫКИ ========= */
.lang-switch .trp-shortcode-arrow {
    display: none;
}

.lang-switch .trp-shortcode-switcher {
    padding: 0;
    border-radius: 20px;
    border: 1px solid #000000;
}

.lang-switch .trp-shortcode-switcher > .trp-current-language-item__wrapper {
    padding: 0;
}

.lang-switch .trp-shortcode-switcher .trp-language-item {
    padding: 7px 13px;
    gap: 10px;
    min-height: 100%;
    flex-direction: row-reverse;
}

.lang-switch .trp-shortcode-switcher .trp-language-item-name {
    font-size: 18px;
    color: #000000;
    font-weight: 700;
    overflow: initial;
}

.trp-shortcode-switcher__wrapper {
    display: flex;
}

.lang-switch ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 8px;
}

.lang-switch li a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 10px;
    border: 1.5px solid #e6e6e6;
    border-radius: 999px;
    text-decoration: none;
    color: #111;
    font-weight: 600;
}

.lang-switch .trp-shortcode-switcher .trp-flag-image {
    width: 25px!important;
}

/* ========= БУРГЕР ========= */
.burger {
    display: none;
    flex-direction: column;
    gap: 4px;
    border: none;
    padding: 8px 0;
    background: #fff;
}
.burger span {
    width: 20px;
    height: 2px;
    background: #111;
    display: block;
}

.nav-close {
    display: none;
}

/* ========= МОБИЛЬНАЯ АДАПТАЦИЯ ========= */
@media (max-width: 1024px) {
    .nav-primary {
        position: fixed;
        inset: 0 0 0 55%;
        background: #fff;
        transform: translateX(100%);
        transition: 0.25s;
        display: block;
        padding: 70px 24px 24px;
        z-index: 10000;
        overflow: auto;
        box-shadow: -4px 0 25px rgba(0, 0, 0, 0.25);
    }
    .nav-close {
        display: block;
        position: absolute;
        top: 50px;
        right: 24px;
        font-size: 20px;
        border: none;
        background: none;
        cursor: pointer;
        color: #111;
        z-index: 3100;
        transition: transform 0.2s ease;
        padding: 0;
    }
    .nav-primary.is-open {
        transform: translateX(0);
    }
    .nav-primary .menu {
        flex-direction: column;
        gap: 14px;
    }
    .burger {
        display: flex;
    }
    .site-header__bar {
        gap: 12px;
    }
}

/** Footer */

.s-footer {
    background: #fff;
    box-shadow: 0 4px 30px 0 #00000040;
    border: 1px solid #0000001A;
}

.s-footer__inner {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    gap: 150px;
    padding: 75px 0;
}

.sf-col {
    font-size: 15px;
    color: #000000;
}

/* ====== Заголовки колонок ====== */
.sf-heading {
    font-weight: 700;
    font-size: 25px;
    color: #000000;
    margin: 0 0 30px;
    text-transform: uppercase;
}

/* ====== Списки ссылок ====== */
.sf-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 11px;
}

.sf-menu li {
    margin: 0;
}

.sf-menu a {
    font-size: 18px;
    font-weight: 700;
    color: #000000;
    text-decoration: none;
    transition: all 250ms ease;
}

.sf-menu a:visited {
    color: #000000;
}

.sf-menu a:hover {
    color: #c862b9;
}

/* ====== Брендовый блок (как на скриншоте) ====== */
.sf-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
}

.sf-brand .sf-logo img {
    width: 270px;
    height: auto;
}

.sf-address {
    font-weight: 700;
    color: #000000;
}

.sf-phone-row {
    display: flex;
    align-items: center;
    gap: 20px;
}

.sf-phone-ic {
    width: 30px;
    height: 30px;
    min-width: 30px;
    color: #000000;
}

.sf-phone-ic svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

.sf-phone-list a {
    font-size: 18px;
    font-weight: 700;
    color: #000000;
    text-decoration: none;
    transition: all 250ms ease;
}

.sf-phone-list a:visited {
    color: #000000;
}

.sf-phone-list a:hover {
    color: #c862b9;
}

.sf-social__title {
    margin: 0 0 30px;
    font-weight: 700;
    font-size: 24px;
}

.sf-social__list {
    display: flex;
    gap: 14px;
}

.sf-so {
    display: inline-flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f5f5f5;
    transition: all 250ms ease;
}

.sf-so svg {
    width: 28px;
    height: 28px;
    fill: #111;
}

.sf-so:hover {
    background: #eee;
}

/* ====== Низ футера ====== */
.sf-bottom {
    border-top: 1px solid #eee;
}

.sf-bottom__inner {
    display: flex;
    gap: 16px;
    justify-content: space-between;
    align-items: center;
    padding: 12px 22px;
    color: #000000;
    font-size: 16px;
}

.sf-made a {
    color: #000000;
    transition: all 250ms ease;
}

.sf-made a:hover {
    color: #c862b9;
}

/* ====== Адаптив ====== */
@media (max-width: 992px) {
    .s-footer__inner {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .s-footer__inner {
        grid-template-columns: 1fr;
    }
}

/** Home Info Cards */

.home-info-cards {
    text-align: left;
    padding-top: 100px;
    padding-bottom: 100px;
}

.home-info-cards__title {
    font-weight: 700;
    font-size: 40px;
    margin: 0 0 100px;
    text-transform: uppercase;
}

.home-info-cards__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-content: center;
    gap: 20px;
}

.home-info-cards__card {
    width: 100%;
    padding: 72px 32px 60px;
    border-radius: 20px;
    background: linear-gradient(180deg, #C862B9 0%, #73BBDF 100%);
    color: #ffffff;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.home-info-cards__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.home-info-cards__icon {
    width: auto;
    height: 133px;
    margin-bottom: 30px;
}

.home-info-cards__card-text {
    font-size: 32px;
    font-weight: 600;
}

.home-info-cards__arrow {
    position: absolute;
    top: 33px;
    right: 32px;
}

.home-info-cards__arrow svg {
    width: 100%;
    height: auto;
}

/** Home Hero Slider */

.home-hero-slider {
    width: 100%;
    overflow: hidden;
    background: linear-gradient(180deg, #6EADD9 0%, #C962BB 100%);
    padding: 162px 0;
    /* padding: 92px 0; */
}

.home-hero-slider .container {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: 20px;
}

.home-hero-slider__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 100px;
    z-index: 10;
}

.home-hero-slider__title {
    font-size: 60px;
    font-weight: 700;
    text-align: left;
    margin: 0;
}

.home-hero-slider__button {
    width: 70%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 20px 40px;
    border: 3px solid #ffffff;
    border-radius: 20px;
    text-decoration: none;
    background: transparent;
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    transition: all .25s ease;
}

.home-hero-slider__button:hover {
    background: #c862b9;
}

.home-hero-slider__swiper {
    width: 100%;
    height: 100%;
}

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

.home-hero-slider__slide img {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: contain;
}

/** Home Form Block */

.home-form-block {
    width: 100%;
    padding-bottom: 100px;
}

.home-form-block__inner {
    width: 100%;
    padding: 50px;
    border-radius: 20px;
    background: linear-gradient(360deg, #6EADD9 0%, #C962BB 100%);
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    align-items: center;
    gap: 40px;
}

.home-form-block__image-wrap {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 60px;
}

.home-form-block__title {
    font-size: 50px;
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
}

.home-form-block__image {
    width: 100%;
    height: auto;
}

.home-form-block__content {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.home-form-block__form > form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
}

.t64f-messages {
    margin: 0!important;
}

.home-form-block__form .input {
    width: 100%;
    padding: 0 0 20px;
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.5);
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    outline: none;
    border-radius: 0;
    transition: all .25s ease;
}

.home-form-block__form .input::placeholder,
.home-form-block__form .input:focus {
    color: #ffffff;
}

/* file-input */

.home-form-block__form .t64f-form .home-form-block__file {
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    gap: 40px;
    cursor: pointer;
}

.home-form-block__form .t64f-form .home-form-block__file input[type="file"] {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.home-form-block__file-label {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    position: relative;
    padding-bottom: 4px;
}

.home-form-block__file-label::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: rgba(255,255,255,0.7);
}

.home-form-block__file-name {
    font-size: 18px;
    font-weight: 600;
    color: rgba(255,255,255,0.85);
}

.home-form-block__file.--selected .home-form-block__file-name {
    color: #ffffff;
}

.home-form-block__form button[type="submit"] {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 80%;
    padding: 20px 40px;
    background: transparent;
    border: 3px solid #ffffff;
    border-radius: 20px;
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    text-transform: none;
    cursor: pointer;
    transition: all .25s ease;
}

.home-form-block__form button[type="submit"]:hover {
    background: #c862b9;
}

/** About Hero Cards */

.about-hero-cards {
    text-align: left;
    padding-top: 100px;
    padding-bottom: 100px;
}

.about-hero-cards__title {
    font-weight: 700;
    margin: 0 0 100px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 30px;
    font-size: 50px;
    text-transform: uppercase;
}

.about-hero-cards__title svg {
    width: 35px;
    height: auto;
}

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

.about-hero-cards__card {
    padding: 50px 50px 134px;
    border-radius: 20px;
    background: linear-gradient(360deg, #6EADD9 0%, #C962BB 100%);
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.about-hero-cards__card--span-2 {
    grid-column: span 2;
}

.about-hero-cards__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.about-hero-cards__card-title {
    font-size: 33px;
    font-weight: 700;
    margin: 0 0 50px;
    text-transform: uppercase;
}

.about-hero-cards__card-text {
    font-size: 24px;
    font-weight: 500;
    margin: 0;
}

/** About Info Cards */

.about-info-cards {
    text-align: left;
    padding-bottom: 100px;
}

.about-info-cards__title {
    font-weight: 700;
    font-size: 50px;
    margin: 0 0 100px;
    text-transform: uppercase;
}

.about-info-cards__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    justify-content: center;
}

.about-info-cards__card {
    width: 100%;
    padding: 38px 55px 38px 50px;
    border-radius: 20px;
    background: linear-gradient(180deg, #6EADD9 0%, #C962BB 100%);
    color: #fff;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.about-info-cards__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.about-info-cards__card-title {
    font-size: 28px;
    font-weight: 500;
    text-transform: uppercase;
    margin: 0 0 30px;
}

.about-info-cards__card-text {
    font-size: 24px;
    font-weight: 500;
    margin: 0;
}

/** Locations Hero Map */

.locations-hero-map {
    text-align: left;
    padding-top: 100px;
    padding-bottom: 74px;
    font-family: "Inter", Sans-serif;
}

.locations-hero-map__title {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 30px;
    font-weight: 700;
    font-size: 50px;
    text-transform: uppercase;
    margin: 0 0 96px;
    color: #000000;
}

.locations-hero-map__title svg {
    width: 35px;
    height: auto;
}

.locations-hero-map__map {
    width: 100%;
    height: 700px;
    border-radius: 20px;
    overflow: hidden;
    background: #f5f5f5;
}

/** Locations Local-Info Cards */

.locations-local-info-cards {
    padding-bottom: 100px;
}

.locations-local-info-cards__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 200px;
    row-gap: 100px;
    align-items: start;
    font-family: "Inter", Sans-serif;
}

.locations-local-info-card {
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
    position: relative;
}

.locations-local-info-card__col:not(:last-child) {
    border-right: none !important;
    border-bottom: none !important;
}

.locations-local-info-card::before {
    content: "";
    position: absolute;
    top: 0;
    height: 211px;
    width: 3px;
    background: #c862b9;
    border-radius: 2px;
    display: none;
    left: -133px;
}

.locations-local-info-cards__grid > .locations-local-info-card:nth-child(3n + 2)::before,
.locations-local-info-cards__grid > .locations-local-info-card:nth-child(3n + 3)::before {
    display: block;
}

/* адаптация для 2 колонок: линия только у второй карточки каждой строки */
@media (max-width: 1024px) {
    .locations-local-info-card::before {
        left: calc(-1 * (var(--loc-gap, 70px) / 2 + 1.5px));
    }

    .locations-local-info-cards__grid > .locations-local-info-card:nth-child(2n + 2)::before {
        display: block;
    }
}

@media (max-width: 768px) {
    .locations-local-info-card::before {
        display: none !important;
    }
}

.locations-local-info-card__title {
    margin: 0 0 15px;
    font-weight: 700;
    font-size: 20px;
    color: #c862b9;
    text-transform: uppercase;
}

.locations-local-info-card__row {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 37px;
    color: #000000;
}

.locations-local-info-card__adress {
    font-size: 15px;
    font-weight: 700;
}

.locations-local-info-card__info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.locations-local-info-card__block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}

.locations-local-info-card__ic svg {
    width: 25px;
    height: auto;
}

.locations-local-info-card__info p {
    font-size: 16px;
    font-weight: 700;
    margin: 0;
}

.locations-local-info-card__info a {
    color: #000000;
    transition: all 200ms ease;
    text-decoration: none;
}

.locations-local-info-card__info a:hover {
    color: #c862b9;
}

.locations-local-info-card__more {
    margin-top: 20px;
}

.locations-local-info-card__btn {
    display: inline-block;
    border: 1.5px solid #c862b9;
    border-radius: 10px;
    padding: 9px 18px;
    font-weight: 500;
    text-decoration: none;
    color: #c862b9;
    transition: all 0.2s ease;
}

.locations-local-info-card__btn:visited {
    color: #c862b9;
}

.locations-local-info-card__btn:hover {
    background: #c862b9;
    color: #ffffff;
}

/** Location Hero Info */

.location-hero-info {
    text-align: left;
    padding-top: 100px;
    padding-bottom: 100px;
    font-family: "Inter", Sans-serif;
}

.location-hero-info__text {
    font-size: 50px;
    font-weight: 700;
    color: #000000;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 30px;
    margin: 0 0 100px;
}

.location-hero-info__text svg {
    width: 35px;
    height: auto;
}

.location-hero-info__wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    align-items: start;
}

.location-hero-info__wrap > div {
    display: flex;
    flex-direction: column;
    gap: 50px;
    align-items: flex-start;
    color: #000000;
}

.location-hero-info__title {
    margin: 0;
    font-weight: 700;
    font-size: 32px;
    text-transform: uppercase;
}

.location-hero-info__address, .location-hero-info__lead {
   margin: 0;
   font-size: 24px;
   font-weight: 700;
}

.location-hero-info__facts {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.location-hero-info__fact {
    display: flex;
    gap: 30px;
    align-items: center;
}

.location-hero-info__fact-ic {
    display: inline-flex;
    line-height: 1;
}

.location-hero-info__fact-text {
    font-size: 20px;
    font-weight: 700;
}

.location-hero-info__fact-text a {
    color: #000000;
    text-decoration: none;
    transition: all 200ms ease;
}

.location-hero-info__fact-text a:hover {
    color: #C862B9;
}

.location-hero-info__muted {
    color: #9ca3af;
}

.location-hero-info__cta {
    width: 80%;
}

.location-hero-info__btn {
    width: 100%;
    text-align: center;
    display: inline-block;
    border-radius: 20px;
    padding: 25px 50px;
    background: linear-gradient(180deg, #6EADD9 0%, #C962BB 100%);
    font-size: 24px;
    font-weight: 700;
    text-decoration: none;
    color: #ffffff;
    transition: all 0.2s ease;
}

.location-hero-info__btn:hover {
    background: linear-gradient(180deg, #C962BB 0%, #6EADD9 100%);
    color: #ffffff;
}

/* карта */
.location-hero-info__right {
    width: 100%;
    height: 100%;
}

.location-hero-info__map {
    border-radius: 20px;
    overflow: hidden;
    background: #f5f5f5;
    width: 100%;
    height: 100%;
}

.location-hero-info__map-iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.location-hero-info__map-stub {
    padding: 22px;
    text-align: center;
    color: #6b7280;
}

/* нижний контент */
.location-hero-info__content {
    margin-top: 20px;
}

.location-hero-info__content img {
    max-width: 100%;
    height: auto;
}

/** Categories Cards */

.categories-cards {
    text-align: left;
    padding-top: 100px;
    padding-bottom: 100px;
}

.categories-cards__title {
    font-size: 50px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 30px;
    color: #000000;
    margin: 0 0 100px;
    text-transform: uppercase;
}

.categories-cards__title svg {
    width: 35px;
    height: auto;
}

/* сетка */
.categories-cards__grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px 150px;
}

@media (max-width: 1024px) {
    .categories-cards__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* карточка */
.categories-card {
    background: #fff;
    border-radius: 20px;
    padding: 81px 27px 60px;
    text-align: center;
    box-shadow: 0 4px 30px 0 #00000040;
    border: 1px solid #0000001a;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.categories-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
}

.categories-card__media {
    display: block;
    overflow: hidden;
    margin-bottom: 50px;
}

.categories-card__media img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    aspect-ratio: 4/3;
}

.categories-card__noimg {
    font-size: 12px;
    color: #888;
    padding: 40px 0;
}

.categories-card__title {
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    color: #000000;
}

.categories-card__title a {
    text-decoration: none;
    color: #000000;
}

.categories-card__title a:visited {
    color: #000000;
}

/* пагинация */
.categories-cards__pag {
    display: flex;
    justify-content: center;
    margin-top: 100px;
}

.categories-cards__pag ul {
    display: flex;
    gap: 15px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.categories-cards__pag li a,
.categories-cards__pag li span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 29px;
    text-decoration: none;
    color: #000000;
    font-size: 24px;
    font-weight: 700;
}

.categories-cards__pag li span.current {
    background: linear-gradient(180deg, #c862b9 0%, #73bbdf 100%);
    color: #ffffffcc;
    border-radius: 5px;
}

.categories-cards__pag a.prev {
    margin-right: 20px;
}

.categories-cards__pag a.next {
    margin-left: 20px;
}

/* пустое состояние */
.categories-cards__empty {
    color: #666;
    font-size: 14px;
    margin: 14px 0;
}

/** Vacancy Hero Info */

.vacancy-hero-info {
    text-align: left;
    padding-top: 100px;
    padding-bottom: 100px;
}

.vacancy-hero-info__title {
    font-weight: 700;
    font-size: 50px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 30px;
    margin: 0 0 100px;
    text-transform: uppercase;
}

.vacancy-hero-info__title svg {
    width: 35px;
    height: auto;
}

.vacancy-hero-info__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: 20px;
}

@media (max-width: 768px) {
    .vacancy-hero-info__grid {
        grid-template-columns: 1fr;
    }
}

.vacancy-hero-info__text {
    font-size: 16px;
    font-weight: 700;
}

.vacancy-hero-info__text p {
    margin: 0;
}

.vacancy-hero-info__image img {
    width: 100%;
    height: auto;
    border-radius: 20px!important;
    display: block;
}

.vacancy-hero-info__footer {
    margin-top: 100px;
    text-align: center;
}

.vacancy-hero-info__button {
    width: 40%;
    display: inline-block;
    padding: 25px 50px;
    border-radius: 20px;
    font-size: 24px;
    font-weight: 700;
    text-decoration: none;
    color: #ffffff;
    background: linear-gradient(180deg, #6EADD9 0%, #C962BB 100%);
    transition: all 0.25s ease;
}

.vacancy-hero-info__button:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

/** News Cards */

.news-cards {
    text-align: left;
    padding-top: 100px;
    padding-bottom: 100px;
}

.news-cards__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 100px;
}

.news-cards__title {
    display: flex;
    align-items: center;
    gap: 30px;
    font-size: 50px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0;
    color: #000000;
}

.news-cards__title svg {
    width: 35px;
    height: auto;
}

/* категории (дропдаун) */
.news-cards__cats {
    position: relative;
}

.news-cards__cats-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #fff;
    cursor: pointer;
    border: 1px solid #000000;
    border-radius: 20px;
    padding: 12px 26px;
    font-size: 20px;
    font-weight: 700;
    color: #000000;
}

.news-cards__cats-btn:hover {
    border-color: #000000;
}

.news-cards__cats-btn svg {
    width: 20px;
    height: auto;
}

.news-cards__cats-menu {
    display: none;
    position: absolute;
    right: 0;
    top: 110%;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    padding: 6px;
    min-width: 254px;
    z-index: 20;
    margin: 0;
}

.news-cards__cats-menu li {
    list-style: none;
}

.news-cards__cats-menu a {
    display: block;
    padding: 8px 14px;
    text-decoration: none;
    color: #000000;
    border-radius: 8px;
}

.news-cards__cats-menu a:visited {
    color: #000000;
}

.news-cards__cats-menu a:hover,
.news-cards__cats-menu a.is-active {
    background: #f5f5f5;
}

/* сетка */
.news-cards__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 100px 20px;
}

/* карточка */
.new-card__block {
    padding: 20px;
    border-radius: 20px;
    backdrop-filter: blur(30px);
    background: #ffffff33;
    color: #ffffff;
}

.news-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.news-card__img {
    display: block;
    position: relative;
    aspect-ratio: 1/1;
    background-size: cover;
    background-position: center;
}

.news-card__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
    color: #fff;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 6px;
    transition: 0.25s;
}

.news-card__img:hover .news-card__overlay {
    background: rgba(0, 0, 0, 0.6);
}

.news-card__title {
    font-weight: 700;
    font-size: 18px;
    margin: 0 0 15px;
    text-transform: uppercase;
}

.news-card__desc {
    font-size: 14px;
    font-weight: 500;
    margin: 0;
}

/* низ карточки */
.news-card__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 12px 14px;
    background: #fff;
}

.news-card__date {
    display: inline-block;
    font-size: 13px;
    color: #555;
    background: #f5f5f5;
    border: 1px solid #eee;
    border-radius: 6px;
    padding: 6px 10px;
    line-height: 1;
}

.news-card__btn {
    display: inline-block;
    border: 1.5px solid #c862b9;
    border-radius: 10px;
    padding: 9px 18px;
    font-weight: 500;
    text-decoration: none;
    color: #c862b9;
    transition: all 0.2s ease;
}

.news-card__btn:hover {
    background: #c862b9;
    color: #ffffff;
}

/* пагинация */
.news-cards__pag {
    display: flex;
    justify-content: center;
    margin-top: 100px;
}

.news-cards__pag ul {
    display: flex;
    gap: 15px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.news-cards__pag li a,
.news-cards__pag li span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 29px;
    text-decoration: none;
    color: #000000;
    font-size: 24px;
    font-weight: 700;
}

.news-cards__pag li span.current {
    background: linear-gradient(180deg, #c862b9 0%, #73bbdf 100%);
    color: #ffffffcc;
    border-radius: 5px;
}

.news-cards__pag a.prev {
    margin-right: 20px;
}

.news-cards__pag a.next {
    margin-left: 20px;
}

/* пустое состояние */
.news-cards__empty {
    color: #666;
    font-size: 14px;
    margin: 14px 0;
}

/** New Hero Info */

.new-hero-info {
    text-align: left;
    padding-top: 100px;
    padding-bottom: 100px;
}

.new-hero-info__title {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 30px;
    font-weight: 700;
    font-size: 40px;
    text-transform: uppercase;
    margin: 0 0 60px;
    color: #000000;
}

.new-hero-info__title svg {
    width: 35px;
    height: auto;
}

.new-hero-info__meta {
    color: #666;
    font-size: 16px;
    margin-bottom: 20px;
}

.new-hero-info__hero {
    margin: 0 0 50px;
}

.new-hero-info__hero-img {
    width: 100%;
    height: 100%;
    max-height: 800px;
    min-height: 800px;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 20px;
}

.new-hero-info__content {
    color: #000000;
    font-size: 24px;
    font-weight: 500;
}

.new-hero-info__content p {
    margin: 0 0 1em;
}

.new-hero-info__content img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
}

.new-hero-info__content h2,
.new-hero-info__content h3 {
    margin: 1.2em 0 0.5em;
    line-height: 1.25;
}

.new-hero-info__content ul {
    padding-left: 1.1em;
    margin: 0 0 1em;
}

.new-hero-info__content li {
    margin: 0.3em 0;
}

/** New More Slider */

.new-more-cards {
    padding-bottom: 100px;
    color: #000000;
}

.new-more-cards__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    margin-bottom: 50px;
}

.new-more-cards__title {
    font-weight: 700;
    font-size: 40px;
    margin: 0;
    text-transform: uppercase;
}

.new-more-cards__controls {
    display: flex;
    align-items: center;
    gap: 12px;
}

.new-more-cards .swiper-button-prev,
.new-more-cards .swiper-button-next {
    position: static;
    width: 34px;
    height: 34px;
    border: 1px solid #000000;
    border-radius: 8px;
    background: #ffffff;
    color: #000000;
    --swiper-navigation-size: 16px;
    margin: 0;
    padding: 0;
    line-height: normal;
}

.new-more-cards__all {
    margin-left: 15px;
    text-decoration: none;
    color: #000000;
    font-weight: 700;
    font-size: 20px;
}

.new-more-cards__all:visited {
    color: #000000;
}

.new-more-cards__slider {
    overflow: hidden;
    padding: 15px!important;
}

.new-more-cards__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

@media (max-width: 1024px) {
    .new-more-cards__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .new-more-cards__grid {
        grid-template-columns: 1fr;
    }
}

.new-more-cards__card {
    display: block;
    text-decoration: none;
    color: inherit;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
}

.new-more-cards__card:hover .new-more-cards__thumb {
    filter: brightness(0.4);
}

.new-more-cards__thumb {
    aspect-ratio: 3/2;
    background-size: cover;
    background-position: center;
    width: 100%;
    filter: brightness(1);
    transition: all 200ms ease;
}

.new-more-cards__card-title {
    font-weight: 700;
    font-size: 20px;
    margin: 10px 12px 15px;
    color: #000000;
}

.new-more-cards__card-date {
    font-size: 16px;
    color: #666;
    margin: 0 12px 12px;
}

.new-more-cards__empty {
    padding: 20px;
    text-align: center;
}

/** Home Products Slider  */

.home-products-slider-wrap {
    text-align: left;
    padding-bottom: 150px;
}

.home-products-slider-header h3 {
    margin: 0 0 100px;
    font-size: 40px;
    font-weight: 700;
    color: #000000;
}

.home-products-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    background: none;
    border: none;
    padding: 0;
}

.home-products-slider-nav svg {
    width: 52px;
    height: auto;
}

.home-products-slider-prev {
    left: 100px;
}

.home-products-slider-next {
    right: 100px;
}

.home-products-slider-nav:hover {
    opacity: 1;
}

.home-products-slider .swiper-slide {
    height: auto;
}

.home-products-slider {
    padding: 15px!important;
}

.home-products-slider-card {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    justify-content: flex-start;
    text-decoration: none;
    background: #ffffff;
    border-radius: 20px;
    padding: 56px 60px 60px;
    box-shadow: 0 2px 10px 0 #0000001A!important;
}

.home-products-slider-card-thumb img {
    width: auto;
    height: 250px!important;
}

.home-products-slider-noimg {
    width: 160px;
    height: 120px;
    background: #f1f1f1;
    border-radius: 10px;
}

.home-products-slider-card-title {
    color: #000000;
    font-size: 24px;
    font-weight: 700;
    text-align: center;
}

/** Home Map Block */

.home-map-block {
    text-align: left;
    padding-bottom: 100px;
}

.home-map-block-title {
    font-size: 40px;
    font-weight: 700;
    display: flex;
    align-items: center;
    color: #000000;
    margin: 0 0 100px;
}

.home-map-block-map-wrap {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 6px 22px rgba(0, 0, 0, .08);
}

.home-map-block .leaflet-container {
    font-family: inherit;
}

.home-map-block .leaflet-popup-content {
    margin: 10px 14px;
}

.home-map-block-popup-title {
    font-weight: 700;
    margin-bottom: 6px;
}

.home-map-block-popup-row {
    font-size: 13px;
    line-height: 1.35;
}

.home-map-block-list {
    margin-top: 16px;
}

.home-map-block-ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

@media (max-width: 1024px) {
    .home-map-block-ul {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .home-map-block-ul {
        grid-template-columns: 1fr;
    }
}

.home-map-block-li {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 14px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, .06);
}

.home-map-block-li-title {
    font-weight: 700;
    margin-bottom: 6px;
}

.home-map-block-li-row {
    font-size: 13px;
    color: #333;
}

.home-map-block-empty {
    color: #666;
}

.home-map-block-btn-wrap {
    margin-top: 100px;
    display: flex;
    justify-content: center;
}

.home-map-block-button {
    width: 35%;
    padding: 25px 50px;
    border: 3px solid #c862b9;
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    color: #c862b9;
    text-align: center;
    border-radius: 20px;
    transition: all 0.2s ease;
}

.home-map-block-button:visited {
    color: #c862b9;
}

.home-map-block-button:hover {
    background: #c862b9;
    color: #ffffff;
}

/** Online Form */

.online-form {
    width: 100%;
    padding-top: 100px;
    padding-bottom: 100px;
}

.online-form__title {
    font-size: 50px;
    font-weight: 700;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 30px;
    margin: 0 0 100px;
    text-transform: uppercase;
}

.online-form__title svg {
    width: 35px;
    height: auto;
}

.online-form__inner {
    width: 100%;
    padding: 50px;
    border-radius: 20px;
    background: linear-gradient(360deg, #6EADD9 0%, #C962BB 100%);
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    align-items: center;
    gap: 40px;
}

.online-form__image-wrap {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 60px;
}

.online-form__description {
    font-size: 50px;
    font-weight: 700;
    margin: 0;
}

.online-form__image {
    width: auto;
    height: 100%!important;
    max-height: 600px;
}

.online-form__content {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.online-form__form > form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
}

.online-form__form .input {
    width: 100%;
    padding: 0 0 20px;
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.5);
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    outline: none;
    border-radius: 0;
    transition: all .25s ease;
}

.online-form__form .input::placeholder,
.online-form__form .input:focus {
    color: #ffffff;
}

/* file-input */

.online-form__form .t64f-form .online-form__file {
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    gap: 40px;
    cursor: pointer;
}

.online-form__form .t64f-form .online-form__file input[type="file"] {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.online-form__file-label {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    position: relative;
    padding-bottom: 4px;
}

.online-form__file-label::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: rgba(255,255,255,0.7);
}

.online-form__file-name {
    font-size: 18px;
    font-weight: 600;
    color: rgba(255,255,255,0.85);
}

.online-form__file.--selected .online-form__file-name {
    color: #ffffff;
}

.online-form__form button[type="submit"] {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 80%;
    padding: 20px 40px;
    background: transparent;
    border: 3px solid #ffffff;
    border-radius: 20px;
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    text-transform: none;
    cursor: pointer;
    transition: all .25s ease;
}

.online-form__form button[type="submit"]:hover {
    background: #c862b9;
}

/** Purchase Hero Info */

.purchase-hero-info {
    padding-top: 100px;
    padding-bottom: 100px;
}

.purchase-hero-info .container {
    display: flex;
    flex-direction: column;
    gap: 100px;
}

.purchase-hero-info__title {
    font-size: 50px;
    font-weight: 700;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-transform: uppercase;
    gap: 30px;
}

.purchase-hero-info__title svg {
    width: 35px;
    height: auto;
}

.purchase-hero-info__grid {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    gap: 100px;
}

.purchase-hero-info__cards {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 100px;
}

.purchase-hero-info__card {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 40px;
}

.purchase-hero-info__card-number {
    width: 190px;
    min-width: 190px;
    height: 190px;
    background: linear-gradient(180deg, #C862B9 0%, #73BBDF 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 96px;
    font-weight: 700;
    color: #ffffff;
}

.purchase-hero-info__card-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 30px;
}

.purchase-hero-info__card-title {
    font-size: 32px;
    font-weight: 700;
    margin: 0;
}

.purchase-hero-info__card-text {
    font-size: 24px;
    font-weight: 700;
    margin: 0;
}

.purchase-hero-info__image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

/** Legal Hero Info */

.legal-hero-info {
    padding-top: 100px;
    padding-bottom: 100px;
}

.legal-hero-info .container {
    display: flex;
    flex-direction: column;
    gap: 100px;
}

.legal-hero-info__title {
    font-size: 50px;
    font-weight: 700;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-transform: uppercase;
    gap: 30px;
}

.legal-hero-info__title svg {
    width: 35px;
    height: auto;
}

.legal-hero-info__wrapper {
    width: 100%;
    position: relative;
}

.legal-hero-info__image {
    width: 50%;
    float: right;
    height: 100%;
    min-height: 700px;
    object-fit: cover;
    object-position: center;
    border-radius: 20px!important;
}

.legal-hero-info__text {
    font-size: 24px;
    font-weight: 700;
    color: #000000;
}

.legal-hero-info__text ul {
    margin: 0;
}

.legal-hero-info__text span {
    color: #C862B9;
}

/* Обнуление float на всякий случай */
.legal-hero-info__wrapper::after {
    content: "";
    display: block;
    clear: both;
}

/** Legal Form */

.legal-form {
    width: 100%;
    padding-bottom: 100px;
}

.legal-form__title {
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 100px;
    width: 80%;
}

.legal-form__inner {
    width: 100%;
    padding: 50px;
    border-radius: 20px;
    background: linear-gradient(360deg, #6EADD9 0%, #C962BB 100%);
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    align-items: center;
    gap: 40px;
}

.legal-form__image-wrap {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 60px;
}

.legal-form__description {
    font-size: 50px;
    font-weight: 700;
    margin: 0;
}

.legal-form__image {
    width: auto;
    height: 100%!important;
    max-height: 600px;
}

.legal-form__content {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.legal-form__form > form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
}

.legal-form__form .input {
    width: 100%;
    padding: 0 0 20px;
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.5);
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    outline: none;
    border-radius: 0;
    transition: all .25s ease;
}

.legal-form__form .input::placeholder,
.legal-form__form .input:focus {
    color: #ffffff;
}

.legal-form__form button[type="submit"] {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 80%;
    padding: 20px 40px;
    background: transparent;
    border: 3px solid #ffffff;
    border-radius: 20px;
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    text-transform: none;
    cursor: pointer;
    transition: all .25s ease;
}

.legal-form__form button[type="submit"]:hover {
    background: #c862b9;
}

/* file-input */

.legal-form__form .t64f-form .legal-form__file {
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    gap: 40px;
    cursor: pointer;
}

.legal-form__form .t64f-form .legal-form__file input[type="file"] {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.legal-form__file-label {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    position: relative;
    padding-bottom: 4px;
}

.legal-form__file-label::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 140px;
    height: 2px;
    background: rgba(255,255,255,0.7);
}

.legal-form__file-name {
    font-size: 18px;
    font-weight: 600;
    color: rgba(255,255,255,0.85);
}

.legal-form__file.--selected .legal-form__file-name {
    color: #ffffff;
}

/** Category Hero Info */

.category-hero-info {
    padding-top: 100px;
    padding-bottom: 100px;
}

.category-hero-info .container {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.category-hero-info__title {
    font-size: 50px;
    font-weight: 700;
    margin: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    text-transform: uppercase;
    gap: 30px;
}

.category-hero-info__title svg {
    width: 35px;
    height: auto;
}

.category-hero-info__image {
    width: 50%;
    float: left;
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.category-hero-info__image img {
    width: auto;
    max-height: 350px;
    display: block;
}

.category-hero-info__text {
    font-size: 24px;
    font-weight: 700!important;
}

.category-hero-info__text span {
    font-weight: 700!important;
}

/** Category Cards */

.category-cards {
    padding-bottom: 100px;
}

.category-cards__title {
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 100px;
}


/* ===== GRID ===== */
.category-cards__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}


/* ===== CARD ===== */
.category-cards__card {
    padding: 38px 52px;
    border-radius: 20px;
    background: linear-gradient(180deg, #6EADD9 0%, #C962BB 100%);
    display: flex;
    flex-direction: column;
}

.category-cards__card-title {
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0;
}

.category-cards__card-text {
    font-size: 20px;
    font-weight: 500;
    white-space: pre-line;
}

.category-cards__card-text br {
    display: none;
}


/* ===== BUTTON ===== */
.category-cards__button-wrap {
    margin-top: 100px;
    text-align: center;
}

.category-cards__button {
    width: 40%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 25px 40px;
    border-radius: 20px;
    background: linear-gradient(180deg, #6EADD9 0%, #C962BB 100%);
    text-decoration: none;
    font-size: 24px;
    font-weight: 700;
    transform: none;
    transition: all 300ms ease;
}

.category-cards__button:hover {
    transform: translateY(-4px);
}

/** Home Category Cards */

.home-category-cards {
    width: 100%;
    padding-bottom: 100px;
}

.home-category-cards__title {
    font-size: 40px;
    font-weight: 700;
    margin: 0 0 100px;
}

.home-category-cards__row {
    display: grid;
    gap: 20px;
}

.home-category-cards__row--first {
    grid-template-columns: 1fr 0.55fr;
    margin-bottom: 50px;
}

.home-category-cards__col-small {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 30px;
}

.home-category-card.large {
    height: 100%;
    justify-content: flex-start;
}

.home-category-card.large .home-category-card__title {
    font-size: 55px;
}

.home-category-card.small {
    height: 100%;
}

.home-category-card {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    padding: 33px;
    background: linear-gradient(180deg, #6EADD9 0%, #C962BB 100%);
    text-decoration: none;
}

.home-category-card.no-image .home-category-card__image {
    display: none;
}

.home-category-card__arrow svg path {
    fill: #ffffff;
}

.home-category-card.no-image .home-category-card__arrow svg path {
    fill: #000000;
}

.home-category-cards__row--second {
    grid-template-columns: 1fr 2fr;
}

.home-category-card.small {
    min-height: 420px;
}

.home-category-card__title {
    font-size: 33px;
    font-weight: 700;
    max-width: 70%;
    z-index: 2;
    text-transform: uppercase;
}

.home-category-card__arrow {
    position: absolute;
    top: 33px;
    right: 33px;
}

.home-category-card__image {
    position: absolute;
    bottom: 0;
    right: 15%;
    width: 50%;
    height: auto;
    object-fit: contain;
    z-index: 1;
}

.home-category-cards__row--first .home-category-card__image {
    right: 33px;
    bottom: 33px;
    width: 85%;
}

.home-category-card.no-image {
    background: #D9D9D9;
}

.home-category-card.no-image .home-category-card__title {
    color: #000000!important;
}

/** Thank You */

.thankyou-wrapper {
    padding-top: 100px;
    padding-bottom: 100px;
}

.thankyou-wrapper .container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.thankyou-box {
    background: linear-gradient(180deg, #6EADD9 0%, #C962BB 100%);
    border-radius: 40px;
    padding: 75px 30px;
    max-width: 1200px;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 50px;
}

.thankyou-title {
    font-size: 38px;
    font-weight: 700;
    margin: 0;
}

.thankyou-description {
    font-size: 24px;
    font-weight: 700;
    margin: 0;
}

.thankyou-button {
    width: 40%;
    display: inline-block;
    padding: 8px 25px;
    font-size: 24px;
    font-weight: 700;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.25s ease;
    transform: none;
    border: 1px solid #ffffff;
}

.thankyou-button:hover {
    transform: translateY(-4px);
}

/** Media Styles */

@media screen and (max-width: 1536px) {
    .nav-primary .menu {
        gap: 40px;
    }

    .header-actions {
        gap: 40px;
    }
}

@media screen and (max-width: 1280px) {
    .nav-primary .menu > li > a {
        font-size: 16px;
    }

    .phones summary {
        font-size: 16px;
    }

    .nav-primary .menu {
        gap: 20px;
    }

    .header-actions {
        gap: 20px;
    }

    .lang-switch .trp-shortcode-switcher .trp-language-item-name {
        font-size: 16px;
    }

    .lang-switch .trp-shortcode-switcher .trp-flag-image {
        width: 20px!important;
    }

    .site-header__left img {
        width: 150px;
    }

    .phones summary {
        gap: 5px;
    }

    .s-footer__inner {
        gap: 50px;
    }

    /*  */

    .vacancy-hero-info {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .vacancy-hero-info__title {
        margin-bottom: 50px;
        font-size: 40px;
        gap: 20px;
    }

    .vacancy-hero-info__title svg {
        width: 25px;
    }

    .vacancy-hero-info__footer {
        margin-top: 50px;
    }

    .vacancy-hero-info__button {
        width: 40%;
        padding: 15px 30px;
        font-size: 20px;
    }

    /*  */

    .news-cards {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .news-cards__title {
        gap: 20px;
        font-size: 40px;
    }

    .news-cards__title svg {
        width: 25px;
    }

    .news-cards__head {
        margin-bottom: 50px;
    }

    .news-cards__cats-btn {
        font-size: 16px;
    }

    .news-cards__cats-menu {
        font-size: 14px;
    }

    .news-card__title {
        font-size: 16px;
    }

    .news-card__desc {
        font-size: 12px;
    }

    .news-card__btn {
        font-size: 14px;
        padding: 6px 18px;
    }

    .news-cards__grid {
        gap: 50px 20px;
    }

    .news-cards__pag {
        margin-top: 50px;
    }

    .news-cards__pag li a svg {
        width: 20px;
        height: auto;
    }

    .news-cards__pag li a, .news-cards__pag li span {
        font-size: 20px;
    }

    .news-cards__pag a.next {
        margin-left: 10px;
    }

    .news-cards__pag a.prev {
        margin-right: 10px;
    }

    /*  */

    .new-hero-info {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .new-hero-info__title {
        font-size: 30px;
        gap: 20px;
        margin-bottom: 30px;
    }

    .new-hero-info__title svg {
        width: 25px;
    }

    .new-hero-info__meta {
        font-size: 14px;
    }

    .new-hero-info__hero-img {
        max-height: 500px;
        min-height: 500px;
    }

    .new-hero-info__hero {
        margin-bottom: 30px;
    }

    .new-hero-info__content {
        font-size: 20px;
    }

    .new-hero-info {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .new-more-cards__title {
        font-size: 30px;
    }

    .new-more-cards__all {
        font-size: 16px;
    }

    .new-more-cards__card-title {
        font-size: 16px;
    }

    .new-more-cards__card-date {
        font-size: 14px;
    }

    /*  */

    .locations-hero-map {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .locations-hero-map__title {
        font-size: 40px;
        margin-bottom: 50px;
        gap: 20px;
    }

    .locations-hero-map__title svg {
        width: 25px;
    }

    .locations-hero-map__map {
        height: 500px;
    }

    .locations-local-info-cards {
        padding-bottom: 50px;
    }

    .locations-local-info-cards__grid {
        gap: 50px 100px;
    }

    .locations-local-info-card::before {
        left: -60px;
    }

    /*  */

    .location-hero-info {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .location-hero-info__text {
        font-size: 40px;
        gap: 20px;
        margin-bottom: 50px;
    }

    .location-hero-info__text svg {
        width: 25px;
    }

    .location-hero-info__title {
        font-size: 25px;
    }

    .location-hero-info__wrap > div {
        gap: 30px;
    }

    .location-hero-info__address, .location-hero-info__lead {
        font-size: 18px;
    }

    .location-hero-info__fact-ic svg {
        width: 20px;
        height: auto;
    }

    .location-hero-info__fact-text {
        font-size: 16px;
    }

    .location-hero-info__btn {
        padding: 15px 30px;
        font-size: 18px;
    }

    /*  */

    .categories-cards {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .categories-cards__title {
        font-size: 40px;
        gap: 20px;
        margin-bottom: 50px;
    }

    .categories-cards__title svg {
        width: 25px;
    }

    .categories-cards__grid {
        gap: 50px;
    }

    .categories-card {
        padding: 41px 27px 30px;
    }

    .categories-card__media {
        margin-bottom: 30px;
    }

    .categories-card__title {
        font-size: 20px;
    }

    .categories-cards__pag {
        margin-top: 50px;
    }

    .categories-cards__pag a svg {
        width: 20px;
        height: auto;
    }

    .categories-cards__pag li a, .categories-cards__pag li span {
        font-size: 20px;
    }

    .categories-cards__pag a.next {
        margin-left: 10px;
    }

    .categories-cards__pag a.prev {
        margin-right: 10px;
    }

    /*  */

    .category-hero-info {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .category-hero-info__title {
        font-size: 40px;
        gap: 20px;
        margin-bottom: 50px;
    }

    .category-hero-info__text  {
        font-size: 20px;
    }

    .category-cards__title {
        font-size: 25px;
        margin-bottom: 50px;
    }

    .category-cards__card-title {
        font-size: 20px;
    }

    .category-cards__card-text {
        font-size: 16px;
    }

    .category-cards__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .category-cards__button-wrap {
        margin-top: 50px;
    }

    .category-cards {
        padding-bottom: 50px;
    }

    .category-cards__button {
        font-size: 20px;
        padding: 15px 25px;
    }

    .category-hero-info__title svg {
        width: 25px;
    }

    /*  */

    .about-hero-cards {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .about-hero-cards__title {
        font-size: 40px;
        gap: 20px;
        margin-bottom: 50px;
    }

    .about-hero-cards__title svg {
        width: 25px;
    }

    .about-hero-cards__card {
        padding: 30px 30px 80px;
    }

    .about-hero-cards__card-title {
        font-size: 25px;
        margin-bottom: 30px;
    }

    .about-hero-cards__card-text {
        font-size: 20px;
    }

    .about-info-cards__title {
        font-size: 40px;
        margin-bottom: 50px;
    }

    .about-info-cards__card {
        padding: 28px 30px;
    }

    .about-info-cards__card-title {
        font-size: 24px;
    }

    .about-info-cards__card-text {
        font-size: 20px;
    }

    .about-info-cards {
        padding-bottom: 50px;
    }

    .about-info-cards__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /*  */

    .purchase-hero-info {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .purchase-hero-info__title {
        font-size: 40px;
        gap: 20px;
    }

    .purchase-hero-info__title svg {
        width: 25px;
    }

    .purchase-hero-info .container {
        gap: 50px;
    }

    .purchase-hero-info__cards {
        gap: 50px;
    }

    .purchase-hero-info__card-title {
        font-size: 25px;
    }

    .purchase-hero-info__card-text {
        font-size: 18px;
    }

    .purchase-hero-info__card-content {
        gap: 20px;
    }

    .purchase-hero-info__card-number {
        width: 120px;
        height: 120px;
        min-width: 120px;
        font-size: 46px;
    }

    .purchase-hero-info__grid {
        gap: 50px;
    }

    /*  */

    .legal-hero-info {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .legal-hero-info .container {
        gap: 50px;
    }

    .legal-hero-info__title {
        font-size: 40px;
        gap: 20px;
    }

    .legal-hero-info__title svg {
        width: 25px;
    }

    .legal-hero-info__text {
        font-size: 20px;
    }

    .legal-hero-info__image {
        min-height: 450px;
    }

    .legal-form__title {
        font-size: 25px;
        margin-bottom: 50px;
    }

    .legal-form__inner {
        padding: 30px;
    }

    .legal-form__image-wrap {
        gap: 30px;
    }

    .legal-form__description {
        font-size: 35px;
    }

    .legal-form__form .input {
        padding-bottom: 10px;
        font-size: 18px;
    }

    .legal-form__form > form {
        gap: 30px;
    }

    .legal-form__file-label {
        font-size: 16px;
    }

    .legal-form__file-name {
        font-size: 15px;
    }

    .legal-form__file-label::after {
        width: 100%;
    }

    .legal-form__form button[type="submit"] {
        width: 100%;
        padding: 14px 30px;
        font-size: 22px;
    }

    .legal-form__image {
        max-height: 350px;
    }

    .legal-form {
        padding-bottom: 50px;
    }

    /*  */

    .online-form {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .online-form__title {
        font-size: 40px;
        gap: 20px;
        margin-bottom: 50px;
    }

    .online-form__title svg {
        width: 25px;
    }

    .online-form__inner {
        padding: 30px;
    }

    .online-form__description {
        font-size: 35px;
    }

    .online-form__form .input {
        padding-bottom: 10px;
        font-size: 18px;
    }

    .online-form__form > form {
        gap: 30px;
    }

    .online-form__form button[type="submit"] {
        width: 100%;
        padding: 14px 30px;
        font-size: 22px;
    }

    .online-form__image {
        max-height: 350px;
    }

    .online-form__file-label {
        font-size: 16px;
    }

    .online-form__file-name {
        font-size: 15px;
    }

    /*  */

    .home-hero-slider {
        padding: 82px 0;
    }

    .home-hero-slider__title {
        font-size: 40px;
    }

    .home-hero-slider__content {
        gap: 50px;
    }

    .home-hero-slider__button {
        font-size: 22px;
        padding: 12px 30px;
    }

    .home-hero-slider__slide img {
        max-height: 450px;
    }

    .home-info-cards {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .home-info-cards__title {
        font-size: 30px;
        margin-bottom: 50px;
    }

    .home-info-cards__icon {
        height: 100%;
        margin-bottom: 15px;
    }

    .home-info-cards__icon svg {
        width: 83px;
        height: auto;
    }

    .home-info-cards__arrow svg {
        width: 30px;
    }

    .home-info-cards__card-text {
        font-size: 22px;
    }

    .home-info-cards__card {
        padding: 45px 25px;
    }

    .home-products-slider-header h3 {
        font-size: 30px;
        margin-bottom: 50px;
    }

    .home-products-slider-nav svg {
        width: 35px;
    }

    .home-products-slider-card {
        padding: 26px 30px 30px;
    }

    .home-products-slider-card-thumb img {
        height: 200px!important;
    }

    .home-products-slider-wrap {
        padding-bottom: 75px;
    }

    .home-category-cards__title {
        font-size: 30px;
        margin-bottom: 50px;
    }

    .home-category-card__arrow svg {
        width: 40px;
        height: auto;
    }

    .home-category-card__title {
        font-size: 25px;
    }

    .home-category-card.large .home-category-card__title {
        font-size: 35px;
    }

    .home-category-card.small {
        min-height: 250px;
    }

    .home-category-cards {
        padding-bottom: 50px;
    }

    .home-map-block-title {
        font-size: 30px;
        margin-bottom: 50px;
    }

    .home-map-block-map-wrap {
        height: 500px!important;
    }

    .home-map-block-btn-wrap {
        margin-top: 50px;
    }

    .home-map-block-button {
        width: 50%;
        padding: 15px 30px;
        font-size: 18px;
    }

    .home-map-block {
        padding-bottom: 50px;
    }

    .home-form-block__inner {
        gap: 30px;
    }

    .home-form-block__title {
        font-size: 35px;
    }

    .home-form-block__form .input {
        padding-bottom: 10px;
        font-size: 18px;
    }

    .home-form-block__form > form {
        gap: 30px;
    }

    .home-form-block__file-label {
        font-size: 16px;
    }

    .home-form-block__file-name {
        font-size: 15px;
    }

    .home-form-block__form button[type="submit"] {
        width: 100%;
        padding: 14px 30px;
        font-size: 22px;
    }

    .home-form-block__image {
        width: auto;
        max-height: 300px;
    }

    .home-form-block {
        padding-bottom: 50px;
    }

    .home-form-block__inner {
        padding: 30px;
    }

    /*  */
    .thankyou-title {
        font-size: 32px;
    }

    .thankyou-description {
        font-size: 20px;
    }

    .thankyou-button {
        font-size: 20px;
    }
}

@media screen and (max-width: 1024px) {
    .nav-primary .menu > li > a {
        font-size: 20px;
    }

    .site-header__bar {
        padding: 25px 0;
    }

    .lang-switch .trp-shortcode-switcher .trp-language-item {
        gap: 5px;
    }

    .lang-switch .trp-shortcode-switcher .trp-language-item-name {
        font-size: 14px;
    }

    .lang-switch .trp-shortcode-switcher .trp-flag-image {
        width: 16px!important;
    }

    .phones summary {
        font-size: 14px;
    }

    .phones__arrow {
        width: 15px;
    }

    .phones .menu a {
        font-size: 14px;
        padding: 5px 10px;
    }

    .phones .menu {
        min-width: 180px;
    }

    .sf-heading {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .sf-phone-ic {
        width: 20px;
        min-width: 20px;
        height: 20px;
    }

    .sf-phone-list a {
        font-size: 15px;
    }

    .sf-social__title {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .sf-brand {
        gap: 30px;
    }

    .sf-menu a {
        font-size: 15px;
    }

    .sf-menu {
        gap: 6px;
    }

    .sf-phone-row {
        gap: 10px;
    }

    .sf-so svg {
        width: 20px;
        height: 20px;
    }

    .sf-so {
        width: 32px;
        height: 32px;
    }

    /*  */

    .vacancy-hero-info__title {
        margin-bottom: 30px;
        font-size: 30px;
    }

    .vacancy-hero-info__title svg {
        width: 20px;
    }

    .vacancy-hero-info__grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .vacancy-hero-info__text {
        font-size: 14px;
    }

    /*  */

    .news-cards__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .news-cards__title {
        font-size: 30px;
    }

    .news-cards__title svg {
        font-size: 20px;
    }

    /*  */

    .new-hero-info__title {
        font-size: 25px;
    }

    .new-hero-info__title svg {
        width: 20px;
    }

    .new-hero-info__content {
        font-size: 16px;
    }

    .new-more-cards__title {
        font-size: 25px;
    }

    .new-more-cards__head {
        margin-bottom: 30px;
    }

    .new-more-cards .swiper-button-prev, .new-more-cards .swiper-button-next {
        width: 24px;
        height: 24px;
    }

    .swiper-button-next:after, .swiper-button-prev:after {
        font-size: 12px;
    }

    .new-more-cards__controls {
        gap: 5px;
    }

    .new-more-cards {
        padding-bottom: 50px;
    }

    /*  */

    .locations-hero-map__title {
        font-size: 30px;
    }

    .locations-hero-map__title svg {
        width: 20px;
    }

    .locations-hero-map__map {
        height: 400px;
    }

    .locations-local-info-cards__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .locations-local-info-cards__grid > .locations-local-info-card:nth-child(3n + 2)::before, .locations-local-info-cards__grid > .locations-local-info-card:nth-child(3n + 3)::before {
        display: none;
    }

    .locations-local-info-cards__grid > .locations-local-info-card:nth-child(2n + 2)::before {
        display: block;
    }

    .locations-local-info-card__title {
        font-size: 16px;
    }

    .locations-local-info-card__row {
        gap: 20px;
    }

    .locations-local-info-card__adress {
        font-size: 12px;
    }

    .locations-local-info-card__ic svg {
        width: 15px;
    }

    .locations-local-info-card__info p {
        font-size: 13px;
    }

    .locations-local-info-card__block {
        gap: 5px;
    }

    .locations-local-info-card__btn {
        padding: 5px 15px;
        font-size: 14px;
    }

    /*  */

    .location-hero-info__wrap {
        display: flex;
        flex-direction: column-reverse;
        gap: 30px;
    }

    .location-hero-info__title {
        font-size: 22px;
    }

    .location-hero-info__text {
        font-size: 30px;
    }

    .location-hero-info__text svg {
        width: 20px;
    }

    .location-hero-info__wrap > div {
        gap: 20px;
    }

    .location-hero-info__address, .location-hero-info__lead {
        font-size: 16px;
    }

    .location-hero-info__cta {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .location-hero-info__btn {
        width: 60%;
        padding: 12px 30px;
        font-size: 16px;
    }

    .location-hero-info__map-iframe {
        height: 350px;
    }

    /*  */

    .categories-cards__title {
        font-size: 30px;
    }

    .categories-cards__title svg {
        width: 20px;
    }

    .categories-cards__grid {
        gap: 30px;
    }

    .categories-card {
        padding: 25px 20px;
    }

    .categories-card__media img {
        max-height: 180px;
    }

    .categories-card__title {
        font-size: 18px;
    }

    /*  */

    .category-hero-info__title {
        font-size: 30px;
    }

    .category-hero-info__title svg {
        width: 20px;
    }

    .category-hero-info .container {
        gap: 0;
    }

    .category-hero-info__text {
        font-size: 16px;
    }

    .category-cards__card {
        padding: 20px 25px;
    }

    .category-cards__card-title {
        font-size: 18px;
    }

    .category-cards__card-text {
        font-size: 14px;
    }

    .category-cards__button {
        font-size: 16px;
    }

    /*  */

    .about-hero-cards__title {
        font-size: 30px;
    }

    .about-hero-cards__title svg {
        width: 20px;
    }

    .about-hero-cards__grid {
        grid-template-columns: 1fr;
    }

    .about-hero-cards__card--span-2 {
        grid-column: span 1;
    }

    .about-hero-cards__card-title {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .about-hero-cards__card-text {
        font-size: 16px;
    }

    .about-hero-cards__card {
        padding: 30px;
    }

    .about-info-cards__title  {
        font-size: 30px;
    }

    .about-info-cards__card-title {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .about-info-cards__card-text {
        font-size: 16px;
    }

    /*  */

    .purchase-hero-info__title {
        font-size: 30px;
    }

    .purchase-hero-info__title svg {
        width: 20px;
    }

    .purchase-hero-info__card {
        gap: 20px;
    }

    .purchase-hero-info__card-number {
        width: 80px;
        height: 80px;
        min-width: 80px;
        font-size: 36px;
    }

    .purchase-hero-info__card-title {
        font-size: 20px;
    }

    .purchase-hero-info__card-text {
        font-size: 14px;
    }

    /*  */

    .legal-hero-info__title {
        font-size: 30px;
    }

    .legal-hero-info__title svg {
        width: 20px;
    }

    .legal-hero-info__text {
        font-size: 16px;
    }

    .legal-hero-info__image {
        min-height: 350px;
    }

    .legal-form__title {
        font-size: 20px;
    }

    .legal-form__description {
        font-size: 25px;
    }

    .legal-form__form .input {
        font-size: 16px;
    }

    .legal-form__form button[type="submit"] {
        font-size: 18px;
        padding: 12px 30px;
        border-width: 2px;
    }

    .legal-form__image {
        max-height: 250px;
    }

    /*  */

    .online-form__title {
        font-size: 30px;
    }

    .online-form__title svg {
        width: 20px;
    }

    .online-form__description {
        font-size: 25px;
    }

    .online-form__form .input {
        font-size: 16px;
    }

    .online-form__form button[type="submit"] {
        font-size: 18px;
        padding: 12px 30px;
        border-width: 2px;
    }

    .online-form__image {
        max-height: 250px;
    }

    /*  */

    .home-hero-slider__title  {
        font-size: 30px;
    }

    .home-hero-slider__button {
        font-size: 18px;
    }

    .home-hero-slider__slide img {
        max-height: 300px;
    }

    .home-info-cards__title {
        font-size: 30px;
    }

    .home-info-cards__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .home-info-cards__icon svg {
        width: 63px;
    }

    .home-info-cards__arrow svg {
        width: 22px;
    }

    .home-info-cards__card-text {
        font-size: 18px;
    }

    .home-products-slider-card {
        gap: 15px;
    }

    .home-products-slider-card-title {
        font-size: 20px;
    }

    .home-category-card.large .home-category-card__title {
        font-size: 30px;
    }

    .home-category-card__title {
        font-size: 20px;
    }

    .home-category-card__arrow svg {
        width: 30px;
    }

    .home-map-block-map-wrap {
        height: 350px!important;
    }

    .home-map-block-button {
        padding: 12px 25px;
        font-size: 16px;
    }

    .home-form-block__title {
        font-size: 25px;
    }

    .home-form-block__image {
        max-height: 200px;
    }

    .home-form-block__form .input {
        font-size: 16px;
    }

    .home-form-block__form button[type="submit"] {
        font-size: 18px;
        padding: 12px 30px;
        border-width: 2px;
    }

    /*  */
    .thankyou-wrapper {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .thankyou-box {
        padding: 55px 30px;
        gap: 30px;
    }
}

@media screen and (max-width: 768px) {
    .nav-primary {
        padding: 30px 24px 24px;
    }

    .nav-close {
        top: 24px;
    }

    /*  */

    .vacancy-hero-info__button {
        font-size: 18px;
        padding: 12px 20px;
    }

    /*  */

    .new-hero-info__title, .new-more-cards__title {
        font-size: 20px;
        gap: 10px;
    }

    .new-hero-info__title svg {
        width: 15px;
    }

    .new-hero-info__hero-img {
        min-height: 350px;
        max-height: 350px;
    }

    /*  */

    .locations-local-info-cards__grid {
        grid-template-columns: 1fr;
    }

    /*  */

    .category-cards__grid {
        grid-template-columns: 1fr;
    }

    .category-hero-info__text p {
        margin-top: 0;
    }

    /*  */

    .about-info-cards__grid {
        grid-template-columns: 1fr;
    }

    /*  */

    .legal-form__inner {
        grid-template-columns: 1fr;
    }

    /*  */

    .online-form__inner {
        grid-template-columns: 1fr;
    }

    .online-form__description {
        text-align: center;
    }

    /*  */

    .home-hero-slider__button {
        width: 90%;
    }

    .home-category-cards__row--first {
        grid-template-columns: 1fr;
    }

    .home-category-card.large {
        min-height: 250px;
    }

    .home-category-cards__row--first .home-category-card__image {
        width: 35%;
        right: 20%;
    }

    .home-category-cards__row--second {
        grid-template-columns: 1fr;
    }

    .home-form-block__inner {
        grid-template-columns: 1fr;
    }

    /*  */
    .thankyou-button {
        width: 80%;
    }
}

@media screen and (max-width: 540px) {
    .site-header__bar {
        padding: 20px 10px;
    }

    .lang-switch .trp-shortcode-switcher .trp-language-item {
        padding: 5px 8px;
    }

    .lang-switch .trp-shortcode-switcher .trp-flag-image {
        width: 14px!important;
    }

    .lang-switch .trp-shortcode-switcher .trp-language-item-name {
        font-size: 12px;
    }

    .nav-primary .menu > li > a {
        font-size: 14px;
    }

    .nav-close {
        font-size: 15px;
    }

    .header-actions {
        gap: 10px;
    }

    .phones summary {
        font-size: 12px;
    }

    .phones__arrow {
        width: 10px;
    }

    .phones .menu {
        padding: 4px 0;
        min-width: 130px;
    }

    .phones .menu a {
        font-size: 10px;
        padding: 2px 6px;
    }

    .site-header__left img {
        width: 100px;
    }

    .s-footer__inner {
        text-align: center;
        padding: 35px 10px;
        gap: 20px;
    }

    .sf-brand {
        align-items: center;
    }

    .sf-brand .sf-logo img {
        width: 200px;
    }

    .sf-col {
        font-size: 13px;
    }

    .sf-brand {
        gap: 20px;
    }

    .sf-social__title {
        font-size: 16px;
    }

    .sf-phone-list a {
        font-size: 14px;
    }

    .sf-phone-ic {
        width: 23px;
        min-width: 23px;
        height: 23px;
    }

    .sf-menu {
        align-items: center;
    }

    .sf-heading {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .sf-menu a {
        font-size: 12px;
    }

    .sf-bottom__inner {
        flex-direction: column;
        gap: 10px;
        font-size: 12px;
    }

    /*  */

    .vacancy-hero-info__title {
        font-size: 25px;
        gap: 10px;
    }

    .vacancy-hero-info__title svg {
        width: 15px;
    }

    .vacancy-hero-info__text {
        font-size: 12px;
    }

    .vacancy-hero-info__footer {
        margin-top: 30px;
    }

    .vacancy-hero-info__button {
        width: 60%;
        font-size: 14px;
        padding: 8px 20px;
    }

    .vacancy-hero-info {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    /*  */

    .news-cards {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .news-cards__head {
        margin-bottom: 30px;
    }

    .news-cards__title {
        font-size: 25px;
    }

    .news-cards__title svg {
        width: 15px;
    }

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

    .news-cards__cats-btn {
        padding: 6px 12px;
        font-size: 14px;
    }

    .news-cards__cats-btn svg {
        width: 10px;
    }

    .news-cards__cats-menu {
        font-size: 12px;
        min-width: 220px;
    }

    .news-cards__cats-menu a {
        padding: 4px 8px;
    }

    .news-card__img {
        width: 100%;
        max-height: 350px;
    }

    .news-cards__pag {
        margin-top: 30px;
    }

    .news-cards__pag li a svg {
        width: 15px;
    }

    .news-cards__pag li a, .news-cards__pag li span {
        font-size: 14px;
        width: 25px;
        height: 20px;
    }

    .news-cards__pag ul {
        gap: 5px;
    }

    /*  */

    .new-hero-info {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .new-hero-info__title, .new-more-cards__title {
        font-size: 15px;
    }

    .new-hero-info__meta {
        font-size: 12px;
        margin-bottom: 10px;
    }

    .new-hero-info__hero-img {
        min-height: 250px;
        max-height: 250px;
    }

    .new-hero-info__content {
        font-size: 12px;
    }

    .new-hero-info__hero {
        margin-bottom: 20px;
    }

    .new-more-cards__slider {
        padding: 5px!important;
    }

    .new-more-cards__card {
        border: 1px solid rgba(0, 0, 0, 0.05);
        box-shadow: none;
    }

    .new-more-cards__thumb {
        max-height: 250px;
        min-height: 250px;
    }

    .new-more-cards {
        padding-bottom: 30px;
    }

    .new-more-cards__all {
        font-size: 12px;
        margin-left: 5px;
    }

    .new-more-cards__card-title {
        font-size: 14px;
    }

    .new-more-cards__card-date {
        font-size: 12px;
    }

    /*  */

    .locations-hero-map {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .locations-hero-map__title {
        font-size: 25px;
        gap: 10px;
        margin-bottom: 20px;
    }

    .locations-hero-map__title svg {
        width: 15px;
    }

    .locations-hero-map__map {
        height: 300px;
    }

    .locations-local-info-card__title {
        font-size: 14px;
        margin-bottom: 5px;
    }

    .locations-local-info-card__adress {
        font-size: 11px;
    }

    .locations-local-info-card__row {
        gap: 10px;
    }

    .locations-local-info-card__info {
        gap: 10px;
    }

    .locations-local-info-card__more {
        margin-top: 10px;
    }

    .locations-local-info-card__btn {
        font-size: 12px;
        padding: 2px 15px;
    }

    .locations-local-info-cards__grid {
        gap: 30px;
    }

    .locations-local-info-cards {
        padding-bottom: 30px;
    }

    /*  */

    .location-hero-info {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .location-hero-info__text {
        font-size: 25px;
        gap: 10px;
        margin-bottom: 20px;
    }

    .location-hero-info__text svg {
        width: 15px;
    }

    .location-hero-info__map-iframe {
        height: 250px;
    }

    .location-hero-info__title {
        font-size: 20px;
    }

    .location-hero-info__address, .location-hero-info__lead {
        font-size: 14px;
    }

    .location-hero-info__fact {
        gap: 15px;
    }

    .location-hero-info__fact-text {
        font-size: 13px;
    }

    .location-hero-info__btn {
        width: 50%;
        padding: 8px 25px;
        font-size: 14px;
    }

    .location-hero-info__facts {
        gap: 10px;
    }

    /*  */

    .categories-cards {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .categories-cards__title {
        font-size: 25px;
        gap: 10px;
        margin-bottom: 30px;
    }

    .categories-cards__title svg {
        width: 15px;
    }

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

    .categories-card__media img {
        max-height: 120px;
    }

    .categories-card__media {
        margin-bottom: 15px;
    }

    .categories-card__title {
        font-size: 16px;
    }

    .categories-cards__pag {
        margin-top: 30px;
    }

    .categories-cards__pag li a, .categories-cards__pag li span {
        font-size: 14px;
        width: 25px;
        height: 20px;
    }

    .categories-cards__pag a svg {
        width: 15px;
    }

    .categories-cards__pag ul {
        gap: 5px;
    }

    /*  */

    .category-hero-info__title {
        font-size: 25px;
        gap: 10px;
        margin-bottom: 30px;
    }

    .category-hero-info {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .category-hero-info__title svg {
        width: 15px;
    }

    .category-hero-info__image {
        float: none;
        width: 100%;
    }

    .category-hero-info__image img {
        max-height: 250px;
    }

    .category-hero-info__text {
        font-size: 14px;
    }

    .category-cards__title {
        font-size: 20px;
        margin-bottom: 30px;
    }

    .category-cards__card {
        padding: 10px 15px;
    }

    .category-cards__card-title {
        font-size: 16px;
    }

    .category-cards__card-text {
        font-size: 12px;
    }

    .category-cards__button {
        font-size: 14px;
        padding: 8px 25px;
        width: 60%;
    }

    .category-cards__button-wrap {
        margin-top: 30px;
    }

    .category-cards {
        padding-bottom: 30px;
    }

    /*  */

    .about-hero-cards__title {
        font-size: 25px;
        gap: 10px;
        margin-bottom: 30px;
    }

    .about-hero-cards {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .about-hero-cards__title svg {
        width: 15px;
    }

    .about-hero-cards__card {
        padding: 15px;
    }

    .about-hero-cards__card-title {
        font-size: 18px;
    }

    .about-hero-cards__card-text {
        font-size: 14px;
    }

    .about-info-cards__title {
        font-size: 25px;
        margin-bottom: 30px;
    }

    .about-info-cards__card {
        padding: 15px;
    }

    .about-info-cards__card-title {
        font-size: 16px;
    }

    .about-info-cards__card-text {
        font-size: 14px;
    }

    .about-info-cards {
        padding-bottom: 30px;
    }

    /*  */

    .purchase-hero-info {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .purchase-hero-info__title {
        font-size: 25px;
        gap: 10px;
    }

    .purchase-hero-info__title svg {
        width: 15px;
    }

    .purchase-hero-info .container {
        gap: 30px;
    }

    .purchase-hero-info__card-number {
        width: 56px;
        height: 56px;
        min-width: 56px;
        font-size: 22px;
    }

    .purchase-hero-info__card-title {
        font-size: 16px;
    }

    .purchase-hero-info__card-content {
        gap: 10px;
    }

    .purchase-hero-info__card-text {
        font-size: 11px;
    }

    .purchase-hero-info__cards {
        gap: 30px;
    }

    /*  */

    .legal-hero-info {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .legal-hero-info__title {
        font-size: 25px;
        gap: 10px;
    }

    .legal-hero-info__title svg {
        width: 15px;
    }

    .legal-hero-info .container {
        gap: 30px;
    }

    .legal-hero-info__text {
        font-size: 13px;
    }

    .legal-hero-info__image {
        float: none;
        width: 100%;
        max-height: 250px;
        min-height: 250px;
    }

    .legal-form__title {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .legal-form__description {
        font-size: 20px;
    }

    .legal-form__image {
        max-height: 180px;
    }

    .legal-form__inner {
        gap: 20px;
    }

    .legal-form__form .input {
        font-size: 14px;
    }

    .legal-form__form > form {
        gap: 15px;
    }

    .legal-form__file-label {
        font-size: 12px;
    }

    .legal-form__file-name {
        font-size: 12px;
    }

    .legal-form__form button[type="submit"] {
        font-size: 14px;
        padding: 8px 30px;
    }

    .legal-form__inner {
        padding: 15px;
    }

    .legal-form {
        padding-bottom: 30px;
    }

    /*  */

    .online-form {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .online-form__title {
        font-size: 25px;
        gap: 10px;
        margin-bottom: 30px;
    }

    .online-form__title svg {
        width: 15px;
    }

    .online-form__inner {
        padding: 15px;
        gap: 20px;
    }

    .online-form__description {
        font-size: 20px;
    }

    .online-form__image-wrap {
        gap: 30px;
    }

    .online-form__image {
        max-height: 180px;
    }

    .online-form__form .input {
        font-size: 14px;
    }

    .online-form__form > form {
        gap: 15px;
    }

    .online-form__form button[type="submit"] {
        font-size: 14px;
        padding: 8px 30px;
    }

    .online-form__file-label, .online-form__file-name {
        font-size: 12px;
    }

    /*  */

    .home-hero-slider .container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .home-hero-slider__title {
        font-size: 22px;
        text-align: center;
    }

    .home-hero-slider__content {
        align-items: center;
        gap: 30px;
    }

    .home-hero-slider {
        padding: 30px 0;
    }

    .home-hero-slider__button {
        width: 60%;
        font-size: 14px;
        padding: 8px 25px;
    }

    .home-hero-slider__slide img {
        max-height: 180px;
    }

    .home-info-cards {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .home-info-cards__title {
        font-size: 20px;
        margin-bottom: 30px;
    }

    .home-info-cards__grid {
        grid-template-columns: 1fr;
    }

    .home-info-cards__card {
        padding: 15px;
    }

    .home-info-cards__arrow {
        top: 20px;
        right: 15px;
    }

    .home-info-cards__icon svg {
        width: 43px;
    }

    .home-info-cards__card-text {
        font-size: 14px;
    }

    .home-products-slider-header h3 {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .home-products-slider-card-thumb img {
        height: 140px!important;
    }

    .home-products-slider-nav svg {
        width: 25px;
    }

    .home-products-slider-card-title {
        font-size: 16px;
    }

    .home-products-slider-next {
        right: 50px;
    }

    .home-products-slider-prev {
        left: 50px;
    }

    .home-products-slider-wrap {
        padding-bottom: 35px;
    }

    .home-category-cards__title {
        font-size: 20px;
        margin-bottom: 30px;
    }

    .home-category-card.large .home-category-card__title {
        font-size: 22px;
    }

    .home-category-card__arrow svg {
        width: 20px;
    }

    .home-category-card {
        padding: 15px;
    }

    .home-category-card.large {
        min-height: 200px;
    }

    .home-category-cards__row--first .home-category-card__image {
        bottom: 15px;
    }

    .home-category-card__title {
        font-size: 16px;
    }

    .home-category-card.small {
        min-height: 200px;
    }

    .home-category-cards__row {
        gap: 10px;
    }

    .home-category-cards__row--first {
        margin-bottom: 10px;
    }

    .home-category-card__image {
        width: 40%;
    }

    .home-category-cards {
        padding-bottom: 30px;
    }

    .home-category-cards__col-small {
        gap: 10px;
    }

    .home-map-block-title {
        font-size: 20px;
        margin-bottom: 30px;
    }

    .home-map-block-map-wrap {
        height: 250px!important;
    }

    .home-map-block-btn-wrap {
        margin-top: 30px;
    }

    .home-map-block-button {
        width: 70%;
        padding: 8px 15px;
        font-size: 12px;
    }

    .home-map-block {
        padding-bottom: 30px;
    }

    .home-form-block__inner {
        padding: 15px;
        gap: 40px;
    }

    .home-form-block__title {
        font-size: 20px;
    }

    .home-form-block__image-wrap {
        gap: 30px;
    }

    .home-form-block__image {
        max-height: 180px;
    }

    .home-form-block__form > form {
        gap: 15px;
    }

    .home-form-block__form .input {
        font-size: 14px;
    }

    .home-form-block__file-label, .home-form-block__file-name {
        font-size: 12px;
    }

    .home-form-block__form button[type="submit"] {
        font-size: 14px;
        padding: 8px 30px;
    }

    .home-form-block {
        padding-bottom: 30px;
    }

    /*  */
    .thankyou-box {
        padding: 25px 15px;
        gap: 20px;
    }

    .thankyou-title {
        font-size: 24px;
    }

    .thankyou-description {
        font-size: 16px;
    }

    .thankyou-button {
        font-size: 16px;
    }
}

@media screen and (max-width: 412.5px) {
    .nav-primary {
        inset: 0 0 0 45%;
    }

    /*  */

    .news-card__img {
        max-height: 250px;
    }

    .news-card__btn {
        font-size: 12px;
    }

    .news-card__date {
        font-size: 11px;
        font-weight: 700;
    }

    /*  */

    .new-more-cards__thumb {
        max-height: 200px;
        min-height: 200px;
    }

    /*  */

    .category-hero-info__title {
        font-size: 20px;
    }

    /*  */

    .legal-hero-info__title {
        font-size: 20px;
    }
}

@media screen and (max-width: 375.5px) {
    .phones summary {
        font-size: 10px;
    }

    /*  */

    .location-hero-info__btn {
        width: 80%;
    }
}