@import url('https://fonts.googleapis.com/css2?family=Monda:wght@400..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&family=Monda:wght@400..700&display=swap');

body {
    background: #f7f4f2;
}

:root {
    --border-info-box: #b9b9b9;
}

/* SECTION */
.statements-section {
    max-width: 1200px;
    margin: auto;
    padding: 80px 20px;
}

.company-section {
    background: #fff;
}

/* LEFT IMAGE */
.company-section .image-box img {
    border-radius: 4px;
}

/* EXPERIENCE BOX */
.company-section .experience-box {
    position: absolute;
    top: 40px;
    right: -20px;
    background: #fff;
    padding: 15px 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    z-index: 2;
}

.company-section .experience-box h2 {
    font-size: 40px;
    font-weight: 700;
    margin: 0;
}

/* VERTICAL TEXT */

.company-section.vertical-text {
    position: absolute;
    top: 50%;
    right: -80px;
    transform: rotate(90deg);
    font-size: 14px;
    letter-spacing: 1px;
    font-weight: 600;
}

/* ICON BOX */

.company-section .icon-box {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background: #ff3c2f;
    color: #fff;
    padding: 18px 22px;
    font-size: 22px;
    border-radius: 4px;
}

/* RIGHT CONTENT */

.company-section .small-title {
    font-size: 13px;
    font-weight: 600;
    color: #888;
    letter-spacing: 2px;
    display: inline-block;
    position: relative;
}

.company-section .small-title::after {
    content: "";
    width: 100%;
    height: 2px;
    background: #ff3c2f;
    position: absolute;
    left: 0;
    bottom: -6px;
}

.company-section .main-title {
    margin-top: 20px;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
}

.company-section .company-section p {
    color: #777;
    font-size: 15px;
    line-height: 1.7;
}

/* RESPONSIVE */

@media(max-width: 991px) {

    .company-section.experience-box {
        right: 10px;
    }

    .company-section .icon-box {
        right: 10px;
    }

    .company-section .vertical-text {
        display: none;
    }

    .company-section .main-title {
        font-size: 30px;
    }
}


/* TITLES */
.small-title {
    font-family: "Monda", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    text-align: center;
}

.small-title span {
    font-size: 12px;
    letter-spacing: 2px;
    border-bottom: 2px solid red;
    padding-bottom: 6px;
}

.main-title {
    text-align: center;
    font-family: "Monda", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
}

.company-section {
    font-family: "Manrope", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

.main-title h2 {
    font-family: "Monda", sans-serif;
    font-size: 32px;
    margin: 20px 0 40px;
}

/* INFO FOUR */
.info-four {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-bottom: 50px;
}

.info-box {
    flex: 1;
    display: grid;
    grid-template-rows: auto auto;
    justify-items: center;
    border: 1px solid var(--border-info-box);
    background: #fff;
    text-align: center;
    cursor: pointer;
    padding: 20px 0;
}

.info-box img {
    width: 40px;
    padding-bottom: 0.7rem;
    filter: grayscale(1);
}

.info-box .title {
    font-size: 14px;
    font-weight: 600;
    width: 100%;
    border-top: 1px solid var(--border-info-box);
    padding-top: 0.7rem;
}

/* RADIO */
input[type="radio"] {
    display: none;
}

#tab-mission:checked~.info-four label[for="tab-mission"],
#tab-vision:checked~.info-four label[for="tab-vision"],
#tab-values:checked~.info-four label[for="tab-values"],
#tab-expertise:checked~.info-four label[for="tab-expertise"] {
    border-color: #ff3c2f;
    background: #fff5f4;
}

/* WRAPPER */
.mission-wrapper {
    display: flex;
    align-items: stretch;
    min-height: 420px;
}

/* LEFT CONTENT */
.mission-content {
    width: 50%;
    background: linear-gradient(135deg, #111, #2a2a2a);
    padding: 50px;
    color: #fff;
    font-family: "Manrope", sans-serif;
}

.tab {
    display: none;
}

#tab-mission:checked~.mission-wrapper .mission {
    display: block;
}

#tab-vision:checked~.mission-wrapper .vision {
    display: block;
}

#tab-values:checked~.mission-wrapper .values {
    display: block;
}

#tab-expertise:checked~.mission-wrapper .expertise {
    display: block;
}

.mission-content h3 {
    font-size: 28px;
    margin-bottom: 15px;
}

.mission-content p {
    font-size: 15px;
    color: #d0d0d0;
    margin-bottom: 15px;
}

.mission-content ul {
    list-style: none;
}

.mission-content ul li {
    padding-left: 18px;
    position: relative;
    margin-bottom: 10px;
}

.mission-content ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #ff3c2f;
}

.btn-custom {
    margin-top: 20px;
    padding: 12px 28px;
    background: #ff3c2f;
    border: none;
    color: #fff;
    transition: transform 0.4s ease-in-out, background-color 0.4s ease-in-out;
}

.btn-custom:hover{
    background: #db0f00;
    transform:translateY(-3px);
}

.btn-custom .icon-circle {
    padding: 0 4px;
    background-color: white;
    color: red;
    border-radius: 100%;
    margin-left: 15px;
}


/* RIGHT IMAGE FIX (MAIN POINT) */
.mission-image {
    width: 50%;
    display: flex;
    height: 100%;
}

.img-tab {
    display: none;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#tab-mission:checked~.mission-wrapper .img-mission {
    display: block;
}

#tab-vision:checked~.mission-wrapper .img-vision {
    display: block;
}

#tab-values:checked~.mission-wrapper .img-values {
    display: block;
}

#tab-expertise:checked~.mission-wrapper .img-expertise {
    display: block;
}


/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 991px) {
    .info-four {
        grid-template-columns: repeat(2, 1fr);
    }

    .mission-image {
        min-height: 260px;
    }

    .chose {
        grid-template-columns: 1fr;
    }
}

/* Mobile */
@media (max-width: 800px) {
    .mission-wrapper {
        flex-direction: column;
    }

    .mission-content {
        width: 100%;
    }

    .mission-image {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .mission-wrapper {
        flex-direction: column;
    }

    .mission-content {
        width: 100%;
    }

    .mission-image {
        width: 100%;
    }

    .info-four {
        grid-template-columns: 1fr;
    }

    .mission-content {
        padding: 30px 20px;
    }

}