@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:wght@400;500;600;700&display=swap');

:root {
    --kp-text: #201e24;
    --kp-blue: #213c76;
    --kp-red: #ba332a;
    --kp-muted: #686f7e;
    --kp-soft: #eff4ff
}

.kp-home {
    font-family: "Noto Sans", sans-serif;
    color: var(--kp-text);
    padding: 56px 20px 80px
}

.kp-home * {
    box-sizing: border-box
}

.kp-container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto
}

.kp-section {
    font-family: "Noto Sans", sans-serif;
    box-sizing: border-box;
    margin: 0 0 80px;
    color: var(--kp-text)
}

.kp-section * {
    box-sizing: border-box
}

.kp-section h2 {
    font-size: 24px;
    line-height: 1.35;
    font-weight: 700
}

.kp-section p {
    font-size: 16px;
    line-height: 1.38
}

.kp-heading-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 16px
}

.kp-heading-row h2 {
    margin: 0
}

.kp-more {
    display: flex;
    gap: 6px;
    align-items: center;
    color: var(--kp-blue);
    font-size: 16px;
    text-decoration: underline;
    text-underline-offset: 2px
}

.kp-button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 10px 20px;
    border-radius: 8px;
    background: var(--kp-red);
    color: #fff;
    text-decoration: none
}

.swiper-wrapper {
    height: auto !important
}

.swiper-pagination {
    display: none;
    position: static;
    margin-top: 16px
}

.swiper-pagination-bullet-active {
    background: var(--kp-blue)
}
.arrowMoreSVG{
    display: flex;
    align-items: center;
}
@media(max-width:1024px) {
    .swiper-pagination {
        display: block
    }
}

@media(max-width:767px) {
    .kp-home {
        padding: 32px 16px 56px
    }

    .kp-section {
        margin-bottom: 52px
    }

    .kp-section h2 {
        font-size: 24px
    }

    .kp-heading-row {
        flex-direction: column;
        align-items: start;
        gap: 8px;
    }

    .kp-more {
        font-size: 14px
    }
}

@media(prefers-reduced-motion:reduce) {
    .kp-section * {
        scroll-behavior: auto !important;
        transition: none !important
    }
}