/* ==========================================================
   ABOUT INDONESIA
========================================================== */

/* ==========================================================
   GLOBAL
========================================================== */
.about-page {
    width: 100%;
    margin: 0;
    padding: 0;
    color: #222;
    background: #fff;
    overflow: hidden;
}

.about-page *,
.about-page *::before,
.about-page *::after {
    box-sizing: border-box;
}

.about-page img {
    max-width: 100%;
    height: auto;
}


/* ==========================================================
ABOUT INDONESIA - HERO
========================================================== */
.about-page .about-hero {
    position: relative;
    width: 100%;
    min-height: 700px;
    height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-image: url('/images/about/about-hero.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

/* Overlay */
.about-page .about-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, .45) 0%,
            rgba(0, 0, 0, .20) 50%,
            rgba(0, 0, 0, .35) 100%
        );
}

/* Content */
.about-page .about-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 100px 20px 60px;
    text-align: center;
    color: #fff;
    transform: none !important;
}

/* Small Title */

.about-page .about-hero-content .small-title {
    margin: 0 0 15px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
    color: #fff;
}

/* Main Title */

.about-page .about-hero-content h1 {
    max-width: 850px;
    margin: 0 auto 30px;
    font-size: clamp(50px, 5vw, 78px);
    font-weight: 500;
    line-height: 1.08;
    letter-spacing: -1px;
    color: #fff;
}

/* Description */
.about-page .about-hero-content p {
    max-width: 1000px;
    margin: 0 auto;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    color: rgba(255, 255, 255, .95);
}


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

@media (max-width: 991.98px) {
    .about-page .about-hero {
        min-height: 600px;
        height: 600px;
    }

    .about-page .about-hero-content {
        padding: 80px 25px 50px;
    }

    .about-page .about-hero-content h1 {
        font-size: 56px;
    }
}


/* ==========================================================
MOBILE
========================================================== */

@media (max-width: 767.98px) {

    .about-page .about-hero {
        min-height: 520px;
        height: auto;
        background-position: center center;
    }

    .about-page .about-hero-content {
        padding: 110px 20px 70px;
    }

    .about-page .about-hero-content h1 {
        font-size: 42px;
        line-height: 1.12;
    }

    .about-page .about-hero-content p {
        font-size: 14px;
        line-height: 1.7;
    }

}

/* ==========================================================
SMALL MOBILE
========================================================== */

@media (max-width: 420px) {
    .about-page .about-hero-content {
        padding: 100px 15px 60px;
    }
    .about-page .about-hero-content h1 {
        font-size: 36px;
    }
}


/* ==========================================================
   HISTORY
========================================================== */
.about-page .about-history {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #fff;
}

.about-page .about-history .container {
    position: relative;
    z-index: 2;
}

/* Background shapes */
.about-page .history-shape {
    position: absolute;
    z-index: 0;
    border-radius: 50%;
    background: #fff6f1;
    pointer-events: none;
}

.about-page .history-shape-left {
    width: 560px;
    height: 440px;
    left: -260px;
    top: 30px;
}

.about-page .history-shape-right {
    width: 420px;
    height: 420px;
    right: -250px;
    top: 80px;
}


/* History title */
.about-page .history-title {
    margin: 15px 0 0;
    font-size: 40px;
    line-height: 1.1;
    font-weight: 500;
    letter-spacing: -0.4px;
    color: #222;
}


/* History image */
.about-page .history-image {
    min-height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-page .history-image img {
    width: 100%;
    max-width: 320px;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
}


/* History text */
.about-page .history-text {
    margin-bottom: 15px;
    font-size: 13px;
    line-height: 1.8;
    color: #444;
}


/* ==========================================================
   VISION
========================================================== */
.about-page .vision-section {
    padding: 40px 0 120px;
    background: #fff;
}

.about-page .vision-box {
    position: relative;
    padding: 55px 40px;
    border-top: 1px solid #c8c8c8;
    border-bottom: 1px solid #c8c8c8;
    text-align: center;
}

.about-page .vision-box::before,
.about-page .vision-box::after {
    content: "";
    position: absolute;
    top: 0;
    width: 1px;
    height: 100%;
    background: #c8c8c8;
}

.about-page .vision-box::before {
    left: 0;
}

.about-page .vision-box::after {
    right: 0;
}

.about-page .vision-box h2 {
    margin: 18px 0;
    font-size: 30px;
    line-height: 1.3;
    font-weight: 500;
    color: #222;
}

.about-page .vision-box p {
    max-width: 760px;
    margin: 0 auto;
    font-size: 13px;
    line-height: 1.8;
    color: #555;
}

/* ==========================================================
   CORPORATE INFORMATION
========================================================== */
.about-page .corporate-section {
    padding: 80px 0 120px;
    background: #fff;
}

.about-page .corporate-navigation {
    padding-top: 5px;
}

.about-page .corporate-nav-label {
    font-size: 11px;
    line-height: 1.5;
    text-transform: uppercase;
    color: #999;
}

.about-page .corporate-title {
    margin: 5px 0 40px;
    font-size: 38px;
    line-height: 1.2;
    font-weight: 500;
    color: #222;
}

.about-page .corporate-content {
    max-width: 800px;
}

.about-page .corporate-content h3,
.accordion-inner h3 {
    margin: 0 0 18px;
    font-size: 18px;
    line-height: 1.4;
    font-weight: 600;
    color: #222;
}

.about-page .corporate-content p {
    margin-bottom: 10px;
    font-size: 13px;
    line-height: 1.75;
    color: #444;
}


/* ==========================================================
   ACCORDION
========================================================== */
.about-page .corporate-accordion {
    width: 100%;
    margin-top: 25px;
    border-top: 1px solid #d9d9d9;
}

.about-page .accordion-item-custom {
    border-bottom: 1px solid #d9d9d9;
}

.about-page .accordion-button-custom {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    border: 0;
    outline: none;
    background: transparent;
    font-family: inherit;
    font-size: 15px;
    line-height: 1.5;
    font-weight: 600;
    color: #222;
    text-align: left;
    cursor: pointer;
}

.about-page .accordion-button-custom:hover {
    color: #4d178f;
}

.about-page .accordion-button-custom:focus {
    outline: none;
    box-shadow: none;
}

/* Remove Bootstrap arrow */
.about-page .accordion-button-custom::after {
    display: none !important;
}


/* Plus */
.about-page .accordion-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 28px;
    margin-left: 20px;
    font-size: 23px;
    line-height: 1;
    font-weight: 300;
    color: #222;
    transition:
        transform .25s ease,
        color .25s ease;
}


/* Open = X */
.about-page .accordion-button-custom:not(.collapsed) {
    color: #4d178f;
}

.about-page .accordion-button-custom:not(.collapsed)
.accordion-icon {
    color: #4d178f;
    transform: rotate(45deg);
}


/* Accordion content */
.accordion-inner {
    padding: 0 40px 30px 0;
}

.accordion-inner p {
    max-width: 800px;
    margin: 0 0 15px;
    font-size: 13px;
    line-height: 1.75;
    color: #555;
}

.accordion-inner ul {
    margin: 0 0 20px;
    padding-left: 25px;
}

.accordion-inner li {
    margin-bottom: 5px;
    font-size: 13px;
    line-height: 1.7;
}

/* ==========================================================
   CTA
========================================================== */
.about-page .about-cta {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
    background: #f7f7f7;
}

.about-page .about-cta .container {
    position: relative;
    z-index: 2;
}

.about-page .about-cta h2 {
    margin: 15px 0 0;
    font-size: 38px;
    line-height: 1.2;
    font-weight: 500;
    color: #222;
}

/* CTA button */
.about-page .berger-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    min-width: 155px;
    padding: 14px 22px;
    border: 1px solid #4d178f;
    background: #4d178f;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: all .25s ease;
}

.about-page .berger-btn:hover {
    border-color: #32105f;
    background: #32105f;
    color: #fff;
    transform: translateY(-2px);
}

/* ==========================================================
   TABLET
========================================================== */
@media (max-width: 991.98px) {
    .about-page .about-hero {
        height: 500px;
        min-height: 500px;
    }

    .about-page .about-hero-content {
        padding: 50px 20px 35px;
    }

    .about-page .about-hero-content h1 {
        max-width: 700px;
        font-size: 54px;
    }

    .about-page .history-title {
        font-size: 34px;
    }

    .about-page .history-image img {
        width: 200px;
    }

    .about-page .corporate-title {
        font-size: 34px;
    }

    .about-page .about-cta h2 {
        font-size: 32px;
    }
}


/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 767.98px) {
    .about-page .about-hero {
        height: 460px;
        min-height: 460px;
    }
    .about-page .about-hero-content {
        padding: 40px 18px 30px;
    }
    .about-page .about-hero-content .small-title {
        margin-bottom: 10px;
        font-size: 12px;
    }

    .about-page .about-hero-content h1 {
        max-width: 500px;
        margin-bottom: 20px;
        font-size: 40px;
        line-height: 1.1;
        letter-spacing: -.5px;
    }

    .about-page .about-hero-content p {
        max-width: 500px;
        font-size: 11px;
        line-height: 1.6;
    }


    /* History */
    .about-page .about-history {
        min-height: auto;
        padding: 75px 0;
    }

    .about-page .history-shape-left {
        width: 350px;
        height: 350px;
        left: -180px;
        top: 40px;
    }

    .about-page .history-shape-right {
        display: none;
    }

    .about-page .history-title {
        font-size: 32px;
    }

    .about-page .history-image {
        min-height: 220px;
    }

    .about-page .history-image img {
        width: 190px;
        max-height: 220px;
    }

    .about-page .history-text {
        font-size: 12px;
    }

    /* Vision */
    .about-page .vision-section {
        padding: 20px 0 75px;
    }

    .about-page .vision-box {
        padding: 40px 20px;
    }

    .about-page .vision-box h2 {
        font-size: 25px;
    }

    .about-page .vision-box p {
        font-size: 12px;
    }


    /* Corporate */
    .about-page .corporate-section {
        padding: 65px 0 80px;
    }

    .about-page .corporate-title {
        font-size: 30px;
    }

    .about-page .corporate-content h3 {
        font-size: 17px;
    }

    .about-page .corporate-content p {
        font-size: 12px;
    }


    /* Accordion */
    .accordion-button-custom {
        padding: 17px 0;
        font-size: 14px;
    }

    .accordion-inner {
        padding-right: 10px;
    }

    .accordion-inner p,
    .accordion-inner li {
        font-size: 12px;
    }


    /* CTA */
    .about-page .about-cta {
        padding: 60px 0;
    }

    .about-page .about-cta h2 {
        font-size: 29px;
    }

    .about-page .berger-btn {
        width: 100%;
        margin-top: 10px;
    }
}


/* ==========================================================
   SMALL MOBILE
========================================================== */
@media (max-width: 420px) {
    .about-page .about-hero-content {
        padding-top: 35px;
    }

    .about-page .about-hero-content h1 {
        font-size: 34px;
    }

    .about-page .history-title {
        font-size: 29px;
    }

    .about-page .vision-box h2 {
        font-size: 22px;
    }

    .about-page .corporate-title {
        font-size: 27px;
    }
}


/* ==========================================================
   REDUCE MOTION
========================================================== */
@media (prefers-reduced-motion: reduce) {
    .about-page *,
    .about-page *::before,
    .about-page *::after {
        scroll-behavior: auto !important;
        transition: none !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }
   
}

.corporate-nav-btn {
    width: 100%;
    display: block;
    text-align: left;
    background: transparent;
    border: 0;
    padding: 0;
    cursor: pointer;
}

.corporate-nav-btn + .corporate-nav-btn {
    margin-top: 20px;
}

.corporate-nav-btn.active {
    color: #d71920;
}