.container {
    background: none;
}


/*================START ABOUT US FULL================*/
.aboutFull {
    display: flex;
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    border-bottom: solid 1rem var(--primary-color);
}


.abBackIMG {
    width: 100vw;
    height: 100vh;
    & img {
        object-fit: contain;
    }
}

.abFrontIMG {
    z-index: 10;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    transition: ease 0.5s;
    background-image: linear-gradient(60deg, rgb(225, 255, 255), rgb(225, 255, 255, 0.7), rgba(0, 0, 0, 0));

    & img {
        object-fit: contain;
        transition: ease 0.5s;
    }

}


.abFullCaption {
    padding: 7rem 2rem;
    position: absolute;
    font-family: "Poppins", sans-serif;
    transition: ease 0.5s;
    opacity: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(6, 27, 55, 0.7);
    color: var(--light-color);
    & p {
        font-size: 0.9rem;
    }
}


.abFullCaptionMobile {
    display: none;
}

.discover {
    display: none;
}
/*==================END ABOUT US FULL================*/



/*====================START MISSION VISION================*/
.abMissionVision {
    font-family: "Poppins", sans-serif;
    color: var(--primary-color);
    padding: 2rem;
    display: flex;
    flex-direction: row;
    border-top: solid 0.5rem var(--secondary-color);
    /*border-bottom: solid 0.9rem var(--secondary-color);*/
}

.abmission {
    order: 1;
    width: 50vw;
    padding: 3rem;
    text-align: center;
}

.abVision {
    order: 2;
    width: 50vw;
    padding: 3rem;
    text-align: center;

    & h2 {
        margin-top: 0.5rem;
        font-size: 1rem;
        font-weight: 500;
        line-height: 1.5rem;
        color: var(--dark-color);
        transition: ease 0.4s;
    }

    & h2:hover {
        padding: 1rem;
        scale: 105%;
        border-radius: 0.4rem;
        border: solid 0.15rem var(--primary-color);
        box-shadow: 7px 7px var(--primary-color);

    }
}

.missionIMG {
    width: 3rem;
    margin-right: 1rem;
    margin-top: 0.5rem;
}

.missions {
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;

}

.mission {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    transition: ease 0.3s;
    background: var(--light-color);
    cursor: pointer;

    & h1 {
        font-size: 1.2rem;
    }

    & h2 {
        font-size: 0.8rem;
        font-weight: 500;
        line-height: 1.5rem;
        color: var(--dark-color);
    }
}

.mission:hover {
    padding: 1rem;
    scale: 105%;
    border-radius: 0.4rem;
    border: solid 0.15rem var(--primary-color);
    box-shadow: 7px 7px var(--primary-color);

}

.missionCaption {
    margin-bottom: 1rem;
}

/*======================END MISSION VISION================*/

/*====================START TIMELINE=========================*/
.timeline-container {
    background: var(--dark-color);
    border-bottom: 0.4rem solid var(--secondary-color);

    button {
        background: transparent;
        border: none;
        cursor: pointer;
        outline: none;
    }

    a {
        color: inherit;
    }

    body {
        font: normal 16px/1.5 "Helvetica Neue", sans-serif;
        background: #456990;
        color: #fff;
    }

    /* .section SECTION
    –––––––––––––––––––––––––––––––––––––––––––––––––– */

    .section {
        padding: 50px 0;
        position: relative;
        img {
            top: 0;
            left: 0;
            position: absolute;
            width: 100vw;
        }
    }

    .section .container {
        width: 90%;
        max-width: 1200px;
        margin: 0 auto;
        text-align: center;
    }

    .section h1 {
        margin-top: 0.8rem;
        position: relative;
        z-index: 5;
        font-size: 3.5rem;
        color: var(--light-color);
        font-family: "Barlow Condensed", sans-serif;
        text-shadow: 0.2rem 0.2rem 0 var(--dark-color);
    }

    .section h2 {
        font-size: 1.3rem;
    }

    /* TIMELINE
    –––––––––––––––––––––––––––––––––––––––––––––––––– */

    .timeline {
        margin-top: 5rem;
        white-space: nowrap;
        overflow-x: hidden;
    }

    .timeline ol {
        font-size: 0;
        width: 100vw;
        padding: 250px 0;
        transition: all 1s;
    }

    .timeline ol li {
        font-family: "Montserrat", sans-serif;
        position: relative;
        display: inline-block;
        list-style-type: none;
        width: 160px;
        height: 3px;
        border-bottom: dashed 3px var(--light-color);
        /*background: var(--light-color);*/
    }


    .timeline ol li:last-child {
        width: 280px;
    }

    .timeline ol li:not(:first-child) {
        margin-left: 14px;
    }

    .timeline ol li:not(:last-child)::after {
        content: "";
        position: absolute;
        top: 50%;
        left: calc(100% + 1px);
        bottom: 0;
        width: 12px;
        height: 12px;
        transform: translateY(-50%);
        border-radius: 50%;
        background: var(--secondary-color);
    }

    .timeline ol li div {
        display: flex;
        flex-direction: column;
        justify-content: center;
        color: var(--primary-color);
        position: absolute;
        left: calc(100% + 7px);
        width: 280px;
        padding: 15px;
        font-size: 1rem;
        white-space: normal;
        background: var(--light-color);
        transition: ease 0.3s;

        time {
            color: var(--secondary-color);
            text-shadow: 1.5px 1.5px 0 var(--dark-color);
        }

        h4 {
            margin-bottom: 0.3rem;
            color: var(--dark-color);
        }
    }

    .timeline ol li div::before {
        content: "";
        position: absolute;
        top: 100%;
        left: 0;
        width: 0;
        height: 0;
        border-style: solid;
    }

    .timeline ol li:nth-child(odd) div {
        border-radius: 1rem 1rem 1rem 0;
        top: -16px;
        transform: translateY(-100%);
    }

    .timeline ol li:nth-child(odd) div:hover {
        box-shadow: 0.5rem 0.5rem 0 var(--secondary-color), 1rem 1rem 0 var(--primary-color);
        transform: translateY(-12rem);
    }

    .timeline ol li:nth-child(odd) div::before {
        top: 100%;
        border-width: 8px 8px 0 0;
        border-color: white transparent transparent transparent;
    }

    .timeline ol li:nth-child(even) div {
        border-radius: 0 1rem 1rem 1rem;
        top: calc(100% + 16px);
    }

    .timeline ol li:nth-child(even) div:hover {
        box-shadow: 0.5rem 0.5rem 0 var(--secondary-color), 1rem 1rem 0 var(--primary-color);
        transform: translateY(2rem);
    }

    .timeline ol li:nth-child(even) div::before {
        top: -8px;
        border-width: 8px 0 0 8px;
        border-color: transparent transparent transparent white;
    }

    .timeline time {
        display: block;
        font-size: 1.2rem;
        font-weight: bold;
        margin-bottom: 8px;
    }

    /* TIMELINE ARROWS
    –––––––––––––––––––––––––––––––––––––––––––––––––– */

    .timeline .arrows {
        display: flex;
        justify-content: center;
        margin-bottom: 50px;
    }

    .timeline .arrows .arrow__prev {
        margin-right: 20px;
    }

    .timeline .disabled {
        opacity: 0.5;
    }

    .timeline .arrows img {
        width: 45px;
        height: 45px;
    }

    /* GENERAL MEDIA QUERIES
    –––––––––––––––––––––––––––––––––––––––––––––––––– */
    @media screen and (max-width: 599px) {

        .timeline {
            margin-top: 0;
        }
        .timeline ol,
        .timeline ol li {
            width: auto;
        }

        .timeline ol {
            padding: 0;
            transform: none !important;
        }


        .timeline ol li {
            overflow: hidden;
            display: block;
            background: transparent;
            height: auto;
            padding: 1rem;
            border-bottom: none;
        }

        .timeline ol li:first-child {
            margin-top: 25px;
        }

        .timeline ol li:not(:first-child) {
            margin-left: auto;
        }

        .timeline ol li div {
            position: static;
            width: 94%;
            height: fit-content !important;
            margin: 0 auto 25px;
        }

        .timeline ol li:nth-child(odd) div {
            transform: none;
        }

        /*.timeline ol li:nth-child(odd) div::before,*/
        /*.timeline ol li:nth-child(even) div::before {*/
        /*    left: 50%;*/
        /*    top: 100%;*/
        /*    transform: translateX(-50%);*/
        /*    border: none;*/
        /*    border-left: 1px solid white;*/
        /*    height: 25px;*/
        /*}*/

        .timeline ol li:last-child,
        .timeline ol li:nth-last-child(2) div::before,
        .timeline ol li:not(:last-child)::after,
        .timeline .arrows {
            display: none;
        }
    }

}

/*======================END TIMELINE=========================*/

/*================================PEZA START===========================*/
.peza {
    display: flex;
    align-items: center;
    flex-direction: column;
    margin: 0 0 5rem 0;

    h1 {
        color: var(--dark-color);
        font-family: "Montserrat", sans-serif;
    }

    h3 {
        color: var(--primary-color);
    }
}

.pezaIMG {
    margin-top: 2rem;
    display: flex;
    flex-direction: row;
    gap: 2rem;
    img {
        height: 17rem;
        border-radius: 1rem;
        filter: drop-shadow(0.5rem 0.5rem 0 var(--secondary-color));
    }
}

/*================================PEZA END============================*/

/*================================JICA START===========================*/
.jica {
    display: flex;
    align-items: center;
    flex-direction: column;
    margin: 0 0 5rem 0;

    h1 {
        color: var(--dark-color);
        font-family: "Montserrat", sans-serif;
    }

    h3 {
        color: var(--primary-color);
    }
}

.jicaIMG {
    margin-top: 2rem;
    display: flex;
    flex-direction: row;
    gap: 2rem;
    img {
        height: 15rem;
        border-radius: 1rem;
        filter: drop-shadow(0.5rem 0.5rem 0 var(--primary-color));
    }
}

/*================================JICA END============================*/

/*================================OLD INA START===========================*/
.oldIna {
    text-align: center;
    padding: 4rem 5rem;
    display: flex;
    align-items: center;
    flex-direction: column;
    background: var(--secondary-color);
    border-top: solid 0.5rem var(--primary-color);

    h1 {
        color: var(--dark-color);
        font-family: "Barlow Condensed", sans-serif;
    }

    h3 {
        color: var(--primary-color);
        font-family: "Montserrat", sans-serif;
    }
}

.oldIMG {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;

    .ina {
        margin-top: 2rem;
        display: flex;
        flex-direction: row;
        gap: 3rem;

        img {
            object-fit: contain;
            width: 20rem;
            height: 15rem;
            filter: drop-shadow(0.5rem 0.5rem 0 var(--dark-color));
        }
    }

}

/*================================OLD INA END============================*/

/*========================START CORPORATE SOCIAL RESPONSIBILITY========================*/
.corporateSocialResponsibilityMother{
    padding: 2rem;
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
    align-items: center;
}

.csr  {
    font-family: "Poppins", sans-serif;
    color: var(--primary-color);
}

.corporateSocialResponsibility {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;

}

.csrIMG {
    width: 16rem;
    height: 12rem;
    overflow: hidden;
    margin-bottom: 1rem;
    & img {
        width: 16rem;
        height: 12rem;
        object-fit: cover;
    }
}

.csrContainer {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    margin: 2rem;
    height: 25rem;
    width: 20rem;
    transition: 0.3s ease;
    background: white;
    border-radius: 0.5rem;
    & h1 {
        line-height: 2rem;
    }
    & p {
        font-family: "Poppins", sans-serif;
        color: var(--dark-color);
        line-height: 1.2rem;

    }
}

.csrContainer:hover {
    background-image: linear-gradient(60deg, rgb(225, 255, 255), rgba(244, 244, 244, 0.87), rgba(0, 0, 0, 0)), url("https://res.cloudinary.com/djrigb7ok/image/upload/v1747183377/crsBG_nnfgbv.svg");
    background-repeat: no-repeat;
    background-attachment: initial;
    background-size: cover;
    box-shadow: 2px 2px 8px var(--dark-color);
    scale: 110%;
}

.csrCaption {
    color: var(--primary-color);
}

.abLearnMore {
    width: fit-content;
    padding: 0.3rem 1rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-content: center;
    align-items: center;
    background: var(--primary-color);
    border-radius: 2rem;
    color: var(--light-color);
    margin-bottom: 2rem;


    & img {
        transition: ease 0.4s;
        width: 2.5rem;
        padding-left: 0.3rem;
    }

    a{
        text-decoration: none;
        font-family: Montserrat, sans-serif;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        align-content: center;
        color: var(--light-color);
    }
}

.abLearnMore:hover {
    & img {
        width: 3rem;
        padding-left: 1rem;
    }
}

/*==========================END CORPORATE SOCIAL RESPONSIBILITY========================*/


/*====================START ISO CERTIFICATION=========================*/
.iso {
    display: flex;
    flex-direction: column;
    padding: 3rem 2rem;
    align-items: center;

    & h1 {
        margin-bottom: 2rem;
        font-family: "Poppins", sans-serif;
        text-transform: uppercase;
        color: var(--dark-color);
        text-align: center;
    }
}

.isoCertifications {
    display: flex;
    flex-direction: row;
    align-items: center;
    & img {
        margin: 1rem 2.5rem;
        height: 15rem;
        transition: ease 0.4s;
    }

    & img:hover{
        filter: drop-shadow(0.2rem 0.2rem 0.5rem darkgrey);
        scale: 105%;
    }
}

.ohsas {
    display: flex;
    flex-direction: row;
    align-items: center;
    img {
        height: 15rem;
        transition: ease 0.4s;
    }
    & img:hover{
        filter: drop-shadow(0.2rem 0.2rem 0.5rem darkgrey);
        scale: 105%;
    }
}
/*======================END ISO CERTIFICATION=========================*/

/*==================START PARTNER COMPANIES===================*/
.partnerCompanies {
    padding: 5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--dark-color);
    & h1 {
        font-family: "Poppins", sans-serif;
        margin-bottom: 1rem;
        text-transform: uppercase;
        color: var(--light-color);
    }
}

.googleMapAffiliate {
    width: 640px;
    height: 430px;
    background: #ffbd59;
    overflow: hidden;
    display: flex;
    position: relative;
    border-radius: 1rem;
    box-shadow: 0.5rem 0.5rem 0 var(--light-color);
    & iframe {
        position: absolute;
        border: none;
        bottom: 0;
    }
}

/*====================END PARTNER COMPANIES===================*/


/*=======================START MEDIA RESPONSIVENESS===================*/
@media (max-width: 600px) {
    .discover {
        display: block;
        top: 30%;
        left: 50%;
        transform: translate(-50%, -50%);
        position: absolute;
        z-index: 10;
        width: 100%;
        padding: 3rem;
        h1 {
            font-size: 2.7rem;
            font-family: "Barlow Condensed", sans-serif;
            line-height: 2.2rem;
            overflow: hidden;
            color: var(--dark-color);
            text-shadow: 3px 3px 0 var(--light-color);
        }

        h2 {
            margin-top: 0.5rem;
            font-size: 1.2rem;
            font-family: Montserrat, sans-serif;
            color: var(--dark-color);
            text-shadow: 2px 2px 2px var(--light-color);
        }
    }

    .abFullCaption {
        display: none;
    }

    .abFullCaptionMobile {
        padding: 2rem 3rem;
        display: block;
        background: var(--primary-color);
        color: var(--light-color);
        h1 {
            font-family: Montserrat, sans-serif;
        }
    }

    .abMissionVision {
        flex-direction: column;
        align-content: center;
        width: 100vw;
        padding: 0;
    }

    .abmission {
        width: 100%;
        padding: 1rem;
        scale: 80%;
    }
    .abVision {
        width: 100%;
        padding: 1rem;
        scale: 80%;
    }

    .ohsas {
        flex-direction: column;
    }
    .isoCertifications {
        flex-direction: column;
    }
    .partnerCompanies {
        padding: 1rem 2rem;

        & h1 {
            margin-bottom: 0;
        }
    }

    .googleMapAffiliate {
        scale: 50%;
    }

    .csrIMG {
        background: black;
        overflow: hidden;

    }
    .csrCaption {
        overflow: hidden;
        transform: scale(95%);
    }
    .csrContainer {
        h1 {
            overflow: hidden;
            font-size: 1.5rem;
        }

        p {
            overflow: hidden;
            font-size: 0.7rem;
        }
    }

    .peza {
        padding: 2rem;
    }

    .pezaIMG {
        flex-direction: column;
        img {
            width: 20rem;
            height: auto;
            filter: drop-shadow(0.3rem 0.3rem 0 var(--secondary-color));
        }
    }

    .jica {
        padding: 2rem;
    }

    .jicaIMG {
        flex-direction: column;
        img {
            width: 20rem;
            height: auto;
            filter: drop-shadow(0.3rem 0.3rem 0 var(--primary-color));
        }
    }

    .oldIna {
        padding: 2rem;
    }

    .oldIMG {
        .ina {
            flex-direction: column;
            img {
                width: 20rem;
                height: auto;
                filter: drop-shadow(0.3rem 0.3rem 0 var(--dark-color));
            }
        }
    }


}

/*=========================END MEDIA RESPONSIVENESS===================*/