/* =========================================
   SMART SLIDER: DESKTOP / MOBILE
   ========================================= */

/* DESKTOP */
@media (min-width: 769px) {

    .n2-section-smartslider[data-ssid="2"] {
        display: block !important;
    }

    .n2-section-smartslider[data-ssid="3"] {
        display: none !important;
    }
}

/* MOBILE */
@media (max-width: 768px) {

    .n2-section-smartslider[data-ssid="2"] {
        display: none !important;
    }

    .n2-section-smartslider[data-ssid="3"] {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .n2-section-smartslider[data-ssid="3"] #n2-ss-3-align,
    .n2-section-smartslider[data-ssid="3"] .n2-padding,
    .n2-section-smartslider[data-ssid="3"] #n2-ss-3 {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
}


/* =========================================
   НОВИНИ ГОЛОВНОЇ
   ========================================= */

/* Сітка */

.kvpu-news-grid {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 22px !important;

    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;

    list-style: none !important;
}


/* =========================================
   КАРТКА
   ========================================= */

.kvpu-news-grid .kvpu-news-card {
    display: flex !important;
    flex-direction: column !important;

    min-width: 0 !important;
    height: 100% !important;

    background: #ffffff !important;

    border: 1px solid #e8eef5 !important;
    border-radius: 14px !important;

    overflow: hidden !important;

    box-shadow: 0 5px 18px rgba(11, 37, 72, 0.07) !important;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease !important;
}

.kvpu-news-grid .kvpu-news-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 12px 28px rgba(11, 37, 72, 0.13) !important;
}


/* =========================================
   ФОТО
   ========================================= */

.kvpu-news-grid .kvpu-news-image {
    display: block !important;

    width: 100% !important;
    height: 155px !important;

    overflow: hidden !important;

    background: #eef4f9;

    text-decoration: none !important;
}

.kvpu-news-grid .kvpu-news-image img {
    display: block !important;

    width: 100% !important;
    height: 100% !important;

    object-fit: cover !important;
    object-position: center !important;

    transition: transform 0.35s ease !important;
}

.kvpu-news-grid .kvpu-news-card:hover .kvpu-news-image img {
    transform: scale(1.04);
}


/* =========================================
   ЗАГЛУШКА БЕЗ ФОТО
   ========================================= */

.kvpu-news-grid .kvpu-news-image-placeholder {
    position: relative !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    height: 155px !important;

    padding: 18px !important;

    overflow: hidden !important;

    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(65, 123, 180, 0.16) 0,
            rgba(65, 123, 180, 0) 35%
        ),
        linear-gradient(
            135deg,
            #f4f8fc 0%,
            #e8f1fa 100%
        ) !important;

    text-decoration: none !important;
}


/* декоративне коло */

.kvpu-news-grid .kvpu-news-image-placeholder::before {
    content: "";

    position: absolute;

    width: 120px;
    height: 120px;

    right: -45px;
    bottom: -55px;

    border-radius: 50%;

    background: rgba(33, 74, 123, 0.06);
}


/* декоративна лінія */

.kvpu-news-grid .kvpu-news-image-placeholder::after {
    content: "";

    position: absolute;

    width: 45px;
    height: 3px;

    left: 50%;
    bottom: 18px;

    transform: translateX(-50%);

    border-radius: 10px;

    background: #214a7b;
}


/* Вміст заглушки */

.kvpu-placeholder-inner {
    position: relative;
    z-index: 2;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    gap: 6px;

    text-align: center;
}


/* Логотип */

.kvpu-placeholder-logo {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 72px;
    height: 72px;

    margin-bottom: 2px;
}

.kvpu-placeholder-logo img {
    display: block !important;

    width: 100% !important;
    height: 100% !important;

    object-fit: contain !important;
    object-position: center !important;

    border: 0 !important;
    box-shadow: none !important;

    transform: none !important;
}


/* Текст заглушки */

.kvpu-placeholder-inner span {
    color: #214a7b !important;

    font-size: 15px !important;
    line-height: 1.2 !important;
    font-weight: 700 !important;
}


/* =========================================
   ВМІСТ КАРТКИ
   ========================================= */

.kvpu-news-grid .kvpu-news-content {
    display: flex !important;
    flex-direction: column !important;
    flex: 1 1 auto !important;

    padding: 14px 14px 15px !important;
}


/* Дата */

.kvpu-news-grid .kvpu-news-date {
    margin: 0 0 8px !important;

    color: #64778c !important;

    font-size: 11px !important;
    line-height: 1.3 !important;
    font-weight: 500 !important;
}


/* =========================================
   ЗАГОЛОВОК НОВИНИ
   ========================================= */

.kvpu-news-grid .kvpu-news-title {
    margin: 0 0 14px !important;

    font-size: 17px !important;
    line-height: 1.18 !important;
    font-weight: 700 !important;
}

.kvpu-news-grid .kvpu-news-title a {
    display: -webkit-box !important;

    color: #101c2f !important;

    text-decoration: none !important;

    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;

    overflow: hidden !important;

    transition: color 0.2s ease;
}

.kvpu-news-grid .kvpu-news-title a:hover {
    color: #214f83 !important;
}


/* =========================================
   КАТЕГОРІЯ
   ========================================= */

.kvpu-news-grid .kvpu-news-category {
    display: inline-flex !important;

    align-items: center;

    align-self: flex-start;

    margin-top: auto !important;

    padding: 5px 10px !important;

    background: #edf5fd !important;

    color: #14508b !important;

    border-radius: 20px !important;

    font-size: 10px !important;
    line-height: 1.2 !important;
    font-weight: 700 !important;
}


/* =========================================
   ЗАГОЛОВОК БЛОКУ НОВИН
   ========================================= */

.kvpu-news-heading {
    position: relative;
    z-index: 2;

    text-align: center;

    margin: 0 0 80px 0 !important;
    padding: 0 15px !important;
}

.kvpu-news-heading h2 {
    margin: 0 0 8px 0 !important;

    color: #214a7b !important;

    font-size: 32px !important;
    line-height: 1.2 !important;
    font-weight: 700 !important;
}

.kvpu-news-heading p {
    display: block !important;

    margin: 0 !important;

    color: #5f6f82 !important;

    font-size: 15px !important;
    line-height: 1.5 !important;
    font-weight: 400 !important;
}


/* =========================================
   КНОПКА "УСІ НОВИНИ"
========================================= */

.kvpu-news-more {
    display: flex !important;
    justify-content: center !important;

    width: 100% !important;

    margin: 80px 0 18px 0 !important;
    padding: 0 !important;
}

.kvpu-news-button {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;

    min-width: 170px;
    padding: 11px 24px !important;

    background: #f3f7fb !important;
    color: #214a7b !important;

    border: 1px solid #d7e3ef !important;
    border-radius: 10px !important;

    font-size: 14px !important;
    line-height: 1 !important;
    font-weight: 700 !important;

    text-decoration: none !important;

    box-shadow: 0 3px 10px rgba(33, 74, 123, 0.06);

    transition:
        background 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}


/* Стрілка */

.kvpu-news-button::after {
    content: "→";

    font-size: 17px;
    line-height: 1;

    color: #214a7b;

    transition: transform 0.25s ease;
}


/* При наведенні */

.kvpu-news-button:hover {
    background: #e8f1fa !important;
    border-color: #bfd2e6 !important;

    color: #214a7b !important;

    transform: translateY(-2px);

    box-shadow: 0 6px 15px rgba(33, 74, 123, 0.10);
}

.kvpu-news-button:hover::after {
    transform: translateX(4px);
}


/* MOBILE */

@media (max-width: 600px) {

    .kvpu-news-more {
        margin-top: 26px !important;
        margin-bottom: 12px !important;
    }

    .kvpu-news-button {
        min-width: 165px;

        padding: 12px 22px !important;

        font-size: 14px !important;
    }
}

/* =========================================
   ПЛАНШЕТ
   ========================================= */

@media (max-width: 991px) {

    .kvpu-news-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr)) !important;

        gap: 20px !important;
    }

    .kvpu-news-grid .kvpu-news-image,
    .kvpu-news-grid .kvpu-news-image-placeholder {
        height: 190px !important;
    }

    .kvpu-placeholder-logo {
        width: 80px;
        height: 80px;
    }
}


/* =========================================
   ТЕЛЕФОН
   ========================================= */

@media (max-width: 600px) {

    .kvpu-news-grid {
        grid-template-columns: 1fr !important;

        gap: 18px !important;
    }

    .kvpu-news-grid .kvpu-news-image,
    .kvpu-news-grid .kvpu-news-image-placeholder {
        height: 210px !important;
    }

    .kvpu-news-grid .kvpu-news-content {
        padding: 15px 16px 17px !important;
    }

    .kvpu-news-grid .kvpu-news-title {
        font-size: 18px !important;
        line-height: 1.22 !important;
    }

    .kvpu-placeholder-logo {
        width: 90px;
        height: 90px;
    }
}


/* =========================================
   АДАПТИВ ЗАГОЛОВКА І КНОПКИ
   ========================================= */

@media (max-width: 768px) {

    .kvpu-news-heading {
        margin-bottom: 26px !important;
        padding: 0 10px !important;
    }

    .kvpu-news-heading h2 {
        font-size: 27px !important;
    }

    .kvpu-news-heading p {
        font-size: 14px !important;
    }

    .kvpu-news-more {
        margin-top: 26px !important;
        margin-bottom: 8px !important;
    }
}



/* =========================================
   ЗАГОЛОВОК СТОРІНКИ НОВИН
   ========================================= */

.kvpu-news-page-heading {
    text-align: center;
    margin: 10px 0 42px 0;
    padding: 0 15px;
}

.kvpu-news-page-heading h1 {
    margin: 0 0 8px 0 !important;

    color: #214a7b !important;

    font-size: 34px !important;
    line-height: 1.2 !important;
    font-weight: 700 !important;
}

.kvpu-news-page-heading p {
    margin: 0 !important;

    color: #5f6f82 !important;

    font-size: 15px !important;
    line-height: 1.5 !important;
    font-weight: 400 !important;
}


/* Адаптив */

@media (max-width: 768px) {

    .kvpu-news-page-heading {
        margin-bottom: 28px;
        padding: 0 10px;
    }

    .kvpu-news-page-heading h1 {
        font-size: 28px !important;
    }

    .kvpu-news-page-heading p {
        font-size: 14px !important;
    }
}

/* =========================================
   ВСТУПНИЙ ТЕКСТ СТОРІНКИ НОВИН
   ========================================= */

.kvpu-news-intro {
    max-width: 760px;
    margin: -18px auto 34px auto;
    padding: 0 20px;

    text-align: center;
}

.kvpu-news-intro p {
    margin: 0 !important;

    color: #6a7888 !important;

    font-size: 15px !important;
    line-height: 1.65 !important;
    font-weight: 400 !important;
}


/* MOBILE */

@media (max-width: 768px) {

    .kvpu-news-intro {
        margin: -10px auto 26px auto;
        padding: 0 14px;
    }

    .kvpu-news-intro p {
        font-size: 14px !important;
        line-height: 1.6 !important;
    }
}
.kvpu-news-heading-line {
    display: block;
    width: 46px;
    height: 3px;
    margin: 14px auto 0;

    background: #214a7b;
    border-radius: 10px;
}

/* =========================================
   ПАГІНАЦІЯ СТОРІНКИ НОВИН
   ========================================= */

.kvpu-news-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;

    width: 100%;

    margin: 38px 0 20px;
}


/* Кнопки */

.kvpu-page-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 135px;

    padding: 11px 20px;

    background: #f3f7fb;

    color: #214a7b;

    border: 1px solid #d7e3ef;
    border-radius: 10px;

    font-size: 14px;
    line-height: 1;
    font-weight: 700;

    cursor: pointer;

    box-shadow: 0 3px 10px rgba(33, 74, 123, 0.06);

    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}


.kvpu-page-btn:hover {
    background: #e8f1fa;

    border-color: #bfd2e6;

    transform: translateY(-2px);

    box-shadow: 0 6px 15px rgba(33, 74, 123, 0.10);
}


/* Номер сторінки */

.kvpu-page-info {
    min-width: 45px;

    color: #64778c;

    font-size: 13px;
    font-weight: 600;

    text-align: center;
}


/* Телефон */

@media (max-width: 600px) {

    .kvpu-news-pagination {
        gap: 8px;

        margin-top: 28px;
    }

    .kvpu-page-btn {
        min-width: 115px;

        padding: 10px 14px;

        font-size: 13px;
    }
}
/* =========================================
   ПРИХОВУВАННЯ КАРТОК ПРИ ПАГІНАЦІЇ
   ========================================= */

.kvpu-news-card.kvpu-page-hidden {
    display: none !important;
}


/* ==================================================
   НАША ГОРДІСТЬ 2026
   ================================================== */

.pride2026 {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 35px 20px 50px;
    box-sizing: border-box;
}


/* ===== ЗАГОЛОВОК ===== */

.pride2026-header {
    text-align: center;
    margin-bottom: 35px;
}

.pride2026-header h2 {
    margin: 0 0 10px !important;
    padding: 0 !important;
    font-size: 38px !important;
    line-height: 1.2 !important;
    font-weight: 700 !important;
    color: #0b2548 !important;
}

.pride2026-header p {
    margin: 0 !important;
    padding: 0 !important;
    font-size: 18px !important;
    line-height: 1.5 !important;
    color: #6c7b90 !important;
}


/* ==================================================
   ГАЛЕРЕЯ — 4 КАРТКИ В РЯД
   ================================================== */

.pride2026-gallery {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 24px !important;
    width: 100% !important;
}


/* ===== КАРТКА ===== */

.pride2026-card,
.pride2026-feature-card {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
    background: #ffffff !important;
    border-radius: 16px !important;
    box-shadow: 0 6px 22px rgba(11, 37, 72, 0.12) !important;
    box-sizing: border-box !important;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.pride2026-card:hover,
.pride2026-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(11, 37, 72, 0.18) !important;
}


/* ===== ФОТО ===== */

.pride2026-card img {
    display: block !important;
    width: 100% !important;
    height: 290px !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
    object-fit: cover !important;
    object-position: center top !important;
}


/* ===== ПІДПИС ===== */

.pride2026-caption {
    flex: 1;
    padding: 14px 12px 16px;
    text-align: center;
    background: #ffffff;
}

.pride2026-caption h3 {
    margin: 0 0 5px !important;
    padding: 0 !important;
    font-size: 17px !important;
    line-height: 1.3 !important;
    font-weight: 700 !important;
    color: #0b2548 !important;
}

.pride2026-caption p {
    margin: 0 !important;
    padding: 0 !important;
    font-size: 14px !important;
    line-height: 1.45 !important;
    color: #718096 !important;
}


/* ==================================================
   НИЖНІЙ БЛОК — ФОТО + ВІДЕО
   ================================================== */

.pride2026-bottom {
    display: grid !important;
    grid-template-columns: 1fr 2fr !important;
    gap: 24px !important;
    width: 100% !important;
    margin-top: 32px !important;
    align-items: stretch !important;
}


/* ===== 13 ФОТО ===== */

.pride2026-feature-card img {
    display: block !important;
    width: 100% !important;
    height: 290px !important;
    max-width: none !important;
    object-fit: cover !important;
    object-position: center top !important;
}


/* ===== ВІДЕО ===== */

.pride2026-video {
    position: relative !important;
    width: 100% !important;
    min-height: 370px !important;
    overflow: hidden !important;
    border-radius: 16px !important;
    background: #0b2548 !important;
    box-shadow: 0 6px 22px rgba(11, 37, 72, 0.12) !important;
}

.pride2026-video iframe {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    border: 0 !important;
}


/* ==================================================
   ПЛАНШЕТ
   ================================================== */

@media (max-width: 991px) {

    .pride2026-gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    .pride2026-bottom {
        grid-template-columns: 1fr 1.5fr !important;
    }

}


/* ==================================================
   ТЕЛЕФОН
   ================================================== */

@media (max-width: 650px) {

    .pride2026 {
        padding: 25px 12px 35px;
    }

    .pride2026-header h2 {
        font-size: 30px !important;
    }

    .pride2026-header p {
        font-size: 16px !important;
    }

    .pride2026-gallery {
        grid-template-columns: 1fr !important;
        gap: 18px !important;
    }

    .pride2026-card img,
    .pride2026-feature-card img {
        height: 380px !important;
    }

    .pride2026-bottom {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .pride2026-video {
        min-height: 0 !important;
        aspect-ratio: 16 / 9;
    }

}
/* =========================================
   БЕЗПЕЧНІ ЗАГЛУШКИ ДЛЯ ФОТО
   ========================================= */

.pride2026-photo-placeholder {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    width: 100% !important;
    height: 290px !important;

    background: linear-gradient(
        135deg,
        #f4f7fb 0%,
        #e8eef5 100%
    ) !important;

    color: #718096 !important;
}

.pride2026-photo-placeholder span {
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #718096 !important;
}


/* =========================================
   ЗАГЛУШКА ВІДЕО
   ========================================= */

.pride2026-video-placeholder {
    position: absolute;
    inset: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #0b2548;
}

.pride2026-video-placeholder span {
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
}


/* =========================================
   МОБІЛЬНИЙ
   ========================================= */

@media (max-width: 650px) {

    .pride2026-photo-placeholder {
        height: 380px !important;
    }

}
.pride2026-photo {
    display: block !important;
    width: 100% !important;
    height: 290px !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    object-fit: cover !important;
    object-position: center top !important;
}

@media (max-width: 650px) {

    .pride2026-photo {
        height: 380px !important;
    }

}
/* ==================================================
   КОМПАКТНИЙ ФУТЕР
   ================================================== */

#sp-bottom1 {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
}

#sp-bottom1 .sp-module-title {
    display: none !important;
}

#sp-bottom {
    padding-top: 28px !important;
    padding-bottom: 28px !important;
}


/* ===== КОНТАКТИ ===== */

.footer-contact-modern {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 70px;

    width: 100%;
    max-width: 1050px;

    margin: 0 auto;
    padding: 0 20px;
}

.footer-contact-card {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}


/* ==================================================
   ІКОНКИ
   ================================================== */

.footer-contact-svg {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 42px;
    width: 42px;
    height: 42px;

    border-radius: 12px;

    background: rgba(255,255,255,0.06);

    border: 1px solid rgba(255,255,255,0.18);
}

.footer-contact-svg::before {
    content: "";

    display: block;

    width: 20px;
    height: 20px;

    background-color: #9ec5f8;

    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;

    -webkit-mask-position: center;
    mask-position: center;

    -webkit-mask-size: contain;
    mask-size: contain;
}


/* ===== АДРЕСА ===== */

.footer-icon-location::before {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 2a7 7 0 0 0-7 7c0 5.25 7 13 7 13s7-7.75 7-13a7 7 0 0 0-7-7Zm0 9.5A2.5 2.5 0 1 1 12 6a2.5 2.5 0 0 1 0 5.5Z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 2a7 7 0 0 0-7 7c0 5.25 7 13 7 13s7-7.75 7-13a7 7 0 0 0-7-7Zm0 9.5A2.5 2.5 0 1 1 12 6a2.5 2.5 0 0 1 0 5.5Z'/%3E%3C/svg%3E");
}


/* ===== ТЕЛЕФОН ===== */

.footer-icon-phone::before {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M6.6 10.8a15.5 15.5 0 0 0 6.6 6.6l2.2-2.2c.3-.3.7-.4 1.1-.3 1.2.4 2.5.6 3.8.6.6 0 1 .4 1 1V20c0 .6-.4 1-1 1C10.7 21 3 13.3 3 3.8c0-.6.4-1 1-1h3.5c.6 0 1 .4 1 1 0 1.3.2 2.6.6 3.8.1.4 0 .8-.3 1.1l-2.2 2.1Z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M6.6 10.8a15.5 15.5 0 0 0 6.6 6.6l2.2-2.2c.3-.3.7-.4 1.1-.3 1.2.4 2.5.6 3.8.6.6 0 1 .4 1 1V20c0 .6-.4 1-1 1C10.7 21 3 13.3 3 3.8c0-.6.4-1 1-1h3.5c.6 0 1 .4 1 1 0 1.3.2 2.6.6 3.8.1.4 0 .8-.3 1.1l-2.2 2.1Z'/%3E%3C/svg%3E");
}


/* ===== EMAIL ===== */

.footer-icon-mail::before {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M20 4H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2Zm0 4-8 5-8-5V6l8 5 8-5v2Z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M20 4H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2Zm0 4-8 5-8-5V6l8 5 8-5v2Z'/%3E%3C/svg%3E");
}


/* ==================================================
   ТЕКСТ
   ================================================== */

.footer-contact-content {
    display: flex;
    flex-direction: column;
    gap: 2px;

    min-width: 0;

    color: #d7e4f2;
    font-size: 13px;
    line-height: 1.45;
}

.footer-contact-content strong {
    margin-bottom: 3px;

    color: #ffffff;
    font-size: 13px;
    font-weight: 700;

    text-transform: uppercase;
}

.footer-contact-content span,
.footer-contact-content a {
    color: #d7e4f2 !important;
    text-decoration: none !important;
}

.footer-contact-content a:hover {
    color: #ffffff !important;
}


/* ==================================================
   ПЛАНШЕТ
   ================================================== */

@media (max-width: 991px) {

    .footer-contact-modern {
        grid-template-columns: 1fr 1fr;
        gap: 24px 35px;
    }

}


/* ==================================================
   ТЕЛЕФОН
   ================================================== */

@media (max-width: 650px) {

    #sp-bottom {
        padding-top: 22px !important;
        padding-bottom: 22px !important;
    }

    .footer-contact-modern {
        grid-template-columns: 1fr;
        gap: 18px;

        padding: 0 15px;
    }

    .footer-contact-svg {
        flex-basis: 40px;
        width: 40px;
        height: 40px;
    }

    .footer-contact-svg::before {
        width: 19px;
        height: 19px;
    }

}
/* ===== ФІНАЛЬНЕ ПІДКРУЧУВАННЯ ФУТЕРА ===== */

.footer-contact-content {
    font-size: 14px !important;
}

.footer-contact-content strong {
    font-size: 14px !important;
}

#sp-footer {
    padding-top: 12px !important;
    padding-bottom: 12px !important;
    min-height: auto !important;
}

#sp-footer .container-inner {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}
/* ===== COPYRIGHT ПО ЦЕНТРУ ===== */

#sp-footer {
    text-align: center !important;
}

#sp-footer .container,
#sp-footer .container-inner,
#sp-footer .row {
    text-align: center !important;
}

#sp-footer .copyright,
#sp-footer .sp-copyright {
    width: 100% !important;
    text-align: center !important;
    margin: 0 auto !important;
}

#sp-footer .row {
    justify-content: center !important;
}

#sp-footer [class*="col-"] {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
    text-align: center !important;
}