/* ==========================================================
   CSR PAGE
========================================================== */

.csr-page {
    background: #ffffff;
    color: #2d343b;
}


/* ==========================================================
   HERO
========================================================== */

.csr-page .csr-hero {
    position: relative;
    min-height: 430px;
    display: flex;
    align-items: center;
    overflow: hidden;

    background-image:url('/images/csr/csr-hero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


/* Overlay */

.csr-page .csr-hero-overlay {
    position: absolute;
    inset: 0;

    background:
        rgba(20, 25, 30, 0.45);
}


/* Hero Content */

.csr-page .csr-hero-content {
    position: relative;
    z-index: 2;

    max-width: 700px;
}


/* Hero Title */

.csr-page .csr-hero h1 {
    margin: 0;

    color: #ffffff;

    font-family: inherit;

    font-size: clamp(42px, 4vw, 62px);

    font-weight: 400;

    line-height: 1.12;

    letter-spacing: 0.02em;
}


/* ==========================================================
   CONTENT
========================================================== */

.csr-page .csr-content {
    padding: 70px 0 100px;
}


/* Main Heading */

.csr-page .csr-heading {
    text-align: center;
    margin-bottom: 55px;
}


.csr-page .csr-heading h2 {
    margin: 0;

    color: #2d343b;

    font-size: 26px;

    font-weight: 500;

    line-height: 1.4;
}


/* ==========================================================
   CSR ITEM
========================================================== */

.csr-page .csr-item {
    max-width: 1180px;

    margin:
        0 auto 85px;
}


.csr-page .csr-item:last-child {
    margin-bottom: 0;
}


/* Item Title */

.csr-page .csr-item h3 {
    margin:
        0 0 35px;

    text-align: center;

    color: #2d343b;

    font-size: 19px;

    font-weight: 500;

    line-height: 1.4;

    letter-spacing: 0.01em;
}


/* ==========================================================
   IMAGE
========================================================== */

.csr-page .csr-image {
    width: 100%;
    margin-bottom: 30px;
    overflow: hidden;
}


.csr-page .csr-image img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* ==========================================================
   CSR CAROUSEL
========================================================== */
.csr-page .csr-carousel {
    position: relative;
    width: 100%;
    margin-bottom: 30px;
    overflow: hidden;
}

.csr-page .csr-carousel .carousel-inner {
    overflow: hidden;
}

.csr-page .csr-carousel .carousel-item {
    width: 100%;
}

.csr-page .csr-carousel img {
    display: block;
    width: 100%;
    height: 480px;
    object-fit: cover;
}


/* ==========================================================
   INDICATORS
========================================================== */
.csr-page .csr-carousel .carousel-indicators {
    position: absolute;
    bottom: 15px;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.csr-page .csr-carousel .carousel-indicators button {
    width: 12px;
    height: 12px;
    margin: 0;
    padding: 0;
    border: none;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.55);
    opacity: 1;
    transition: all 0.3s ease;
}

.csr-page .csr-carousel .carousel-indicators button.active {
    width: 36px;
    border-radius: 20px;
    background-color: #1f5d92;
}

/* Mobile */
@media (max-width: 767px) {
    .csr-page .csr-carousel img {
        height: 280px;
    }
    .csr-page .csr-carousel .carousel-indicators {
        bottom: 10px;
        gap: 7px;
    }
    .csr-page .csr-carousel .carousel-indicators button {
        width: 9px;
        height: 9px;
    }
    .csr-page .csr-carousel .carousel-indicators button.active {
        width: 28px;
    }
}


/* ==========================================================
   DESCRIPTION
========================================================== */
.csr-page .csr-description {
    max-width: 100%;
}


/* Paragraph */
.csr-page .csr-description p {
    margin:
        0 0 18px;
    color: #555555;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 0.01em;
}


.csr-page .csr-description p:last-child {
    margin-bottom: 0;
}

/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 991px) {
    .csr-page .csr-hero {
        min-height: 380px;
    }
    .csr-page .csr-content {
        padding:
            60px 0 80px;
    }
    .csr-page .csr-item {
        margin-bottom: 65px;
    }
}

/* ==========================================================
   MOBILE
========================================================== */
@media (max-width: 767px) {
    .csr-page .csr-hero {
        min-height: 300px;
        background-position: center;
    }

    .csr-page .csr-hero h1 {
        font-size: 38px;
        line-height: 1.2;
    }

    .csr-page .csr-content {
        padding:
            45px 0 60px;
    }

    .csr-page .csr-heading {
        margin-bottom: 40px;
    }

    .csr-page .csr-heading h2 {
        font-size: 22px;
    }

    .csr-page .csr-item {
        margin-bottom: 55px;
    }

    .csr-page .csr-item h3 {
        margin-bottom: 25px;
        font-size: 17px;
    }

    .csr-page .csr-image {
        margin-bottom: 22px;
    }

    .csr-page .csr-description p {
        font-size: 13px;
        line-height: 1.75;
        margin-bottom: 16px;
    }
}