.industrial-section {
    padding: 20px 30px;
    background: #eeeeeb;
}

.industrial-wrapper {
    width: 100%;
    max-width: 1650px;
    margin: auto;

    display: flex;

    min-height: 640px;

    background: #fff;

    overflow: hidden;

    box-shadow: 0 0 8px rgba(0, 0, 0, 0.15);
}


/* LEFT IMAGE */

.industrial-hero {
    width: 65%;
    min-height: 640px;
    overflow: hidden;
}

.industrial-hero img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

    transition:
        opacity 0.35s ease,
        transform 0.5s ease;
}


/* RIGHT */

.industrial-sidebar {
    width: 35%;

    background: #fff;

    padding: 10px 25px 30px;

    display: flex;
    flex-direction: column;
}


/* TITLE */

.subsidiary-title {
    margin: 0 0 15px;

    padding: 28px 5px 8px;

    color: #d90000;

    font-size: 23px;

    font-weight: 700;

    text-transform: uppercase;

    border-bottom: 1px solid #eee;
}


/* COMPANY BUTTONS */

.company-list {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.company-item {
    width: 100%;
    min-height: 43px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 15px;

    background: #fff;

    border: 1px solid #ddd;

    color: #111;

    font-size: 16px;
    font-weight: 600;

    cursor: pointer;

    text-align: left;

    transition: all 0.25s ease;
}

.company-item:hover,
.company-item.active {
    color: #d90000;

    border-color: #d90000;

    background: #fafafa;

    transform: translateX(4px);
}

.company-arrow {
    font-size: 18px;

    color: #777;

    transition: 0.25s ease;
}

.company-item:hover .company-arrow,
.company-item.active .company-arrow {
    color: #d90000;

    transform: translateX(5px);
}


/* DESCRIPTION */

.company-description {
    margin-top: auto;

    padding: 70px 10px 20px;
}

.company-description h3 {
    display: none;
}

.company-description p { 
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    color: #080808;
}


/* TABLET */

@media (max-width: 991px) {

    .industrial-wrapper {
        flex-direction: column;
    }

    .industrial-hero {
        width: 100%;
        min-height: 500px;
    }

    .industrial-sidebar {
        width: 100%;
    }

    .company-description {
        padding: 40px 10px 20px;
    }

}


/* MOBILE */

@media (max-width: 767px) {

    .industrial-section {
        padding: 0;
    }

    .industrial-hero {
        min-height: 300px;
    }

    .industrial-sidebar {
        padding: 10px 15px 30px;
    }

    .subsidiary-title {
        font-size: 19px;
    }

    .company-item {
        min-height: 48px;
        font-size: 14px;
    }

    .company-description {
        padding: 35px 5px 10px;
    }

    .company-description p {
        font-size: 16px;
        line-height: 1.35;
    }

}

.warehouse-section {
            padding: 35px 0 40px;
        }

        .warehouse-title {
            font-size: 36px;
            line-height: 1.1;
            font-weight: 800;
            margin-bottom: 66px;
            letter-spacing: -0.5px;
        }

        .warehouse-content {
            padding-top: 0;
        }

        .warehouse-content p {
            font-size: 20px;
            line-height: 1.2;
            font-weight: 700;
            margin-bottom: 24px;
            max-width: 625px;
        }

        /* Image collage */
        .warehouse-gallery {
            display: grid;
            grid-template-columns: 2.1fr 1fr;
            grid-template-rows: 1fr 0.82fr;
            gap: 6px;
            height: 443px;
        }

        .gallery-main {
            grid-row: 1 / 3;
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            background-repeat: no-repeat;
            background-image: url("/mnt/data/image.png");
        }

        /*
         * The uploaded screenshot is 1640 x 630.
         * These background positions crop the three warehouse photos
         * from the screenshot.
         */

        .gallery-main {
            background-size: 307% 143%;
            background-position: 50.7% 49.5%;
        }

        .gallery-top {
            background-size: 643% 260%;
            background-position: 76.5% 45%;
        }

        .gallery-bottom {
            background-size: 643% 319%;
            background-position: 76.5% 88%;
        }

        @media (max-width: 1199px) {
            .warehouse-title {
                font-size: 32px;
                margin-bottom: 45px;
            }

            .warehouse-content p {
                font-size: 18px;
            }

            .warehouse-gallery {
                height: 400px;
            }
        }

        @media (max-width: 991px) {
            .warehouse-section {
                padding: 30px 0;
            }

            .warehouse-title {
                font-size: 30px;
                margin-bottom: 35px;
            }

            .warehouse-content {
                margin-bottom: 35px;
            }

            .warehouse-content p {
                max-width: none;
                font-size: 18px;
                line-height: 1.3;
            }

            .warehouse-gallery {
                height: 430px;
            }
        }

        @media (max-width: 767px) {
            .warehouse-section {
                padding: 25px 15px 35px;
            }

            .warehouse-title {
                font-size: 27px;
                margin-bottom: 30px;
            }

            .warehouse-content p {
                font-size: 16px;
                line-height: 1.35;
                margin-bottom: 20px;
            }

            .warehouse-gallery {
                height: auto;
                display: grid;
                grid-template-columns: 1fr 1fr;
                grid-template-rows: 250px 170px;
                gap: 5px;
            }

            .gallery-main {
                grid-column: 1 / 3;
                grid-row: 1;
            }

            .gallery-top {
                grid-column: 1;
                grid-row: 2;
            }

            .gallery-bottom {
                grid-column: 2;
                grid-row: 2;
            }
        }

        @media (max-width: 480px) {
            .warehouse-title {
                font-size: 24px;
            }

            .warehouse-gallery {
                grid-template-rows: 220px 145px;
            }
        }

        /* =========================
           FACILITIES SECTION
        ========================= */

        .facilities-section {
            padding: 30px 0 16px;
        }

        /* =========================
           TITLE
        ========================= */

        .facilities-title {
            font-size: 22px;
            line-height: 1.1;
            font-weight: 800;
            letter-spacing: -0.5px;
            padding: 1px 0px 13px;
        }

        /* =========================
           CONTENT
        ========================= */

        .facilities-row {
            padding-left: 1.5%;
            padding-right: 0.65%;
        }

        .facilities-content {
            padding-top: 0;
            padding-right: 60px;
        }

        .facilities-content p {
            margin: 0 0 24px;
            max-width: 630px;
            font-size: 16px;
            /* line-height: 1.19; */
            font-weight: 700;
        }

        /* =========================
           IMAGE GALLERY
        ========================= */

        .facilities-gallery {
            width: 100%;
            height: 441px;

            display: grid;
            grid-template-columns: 2.09fr 1fr;
            grid-template-rows: 1fr 0.805fr;
            gap: 6px;
        }

        .facilities-image {
            position: relative;
            overflow: hidden;
            background-image: url("image/facilty.jpg");
            background-repeat: no-repeat;
        }

        /* Large image */
        .facilities-main {
            grid-column: 1;
            grid-row: 1 / 3;

            background-size: 298.5% 119.3%;
            background-position: 74.4% 80%;
        }

        /* Top-right image */
        .facilities-top {
            grid-column: 2;
            grid-row: 1;

            background-size: 623.8% 217.4%;
            background-position: 99.25% 23.95%;
        }

        /* Bottom-right image */
        .facilities-bottom {
            grid-column: 2;
            grid-row: 2;

            background-size: 623.8% 271.1%;
            background-position: 99.25% 94.9%;
        }

        /* =========================
           LAPTOP
        ========================= */

        @media (max-width: 1199px) {

            .facilities-title {
                font-size: 32px;
                margin-bottom: 50px;
            }

            .facilities-content {
                padding-right: 30px;
            }

            .facilities-content p {
                font-size: 18px;
                line-height: 1.25;
            }

            .facilities-gallery {
                height: 400px;
            }
        }

        /* =========================
           TABLET
        ========================= */

        @media (max-width: 991px) {

            .facilities-section {
                padding: 30px 20px 40px;
            }

            .facilities-title {
                margin-left: 0;
                margin-bottom: 35px;
                font-size: 32px;
            }

            .facilities-row {
                padding-left: 0;
                padding-right: 0;
            }

            .facilities-content {
                padding-right: 0;
                margin-bottom: 35px;
            }

            .facilities-content p {
                max-width: 100%;
                font-size: 18px;
                line-height: 1.3;
            }

            .facilities-gallery {
                height: 430px;
            }
        }

        /* =========================
           MOBILE
        ========================= */

        @media (max-width: 767px) {

            .facilities-section {
                padding: 25px 15px 35px;
            }

            .facilities-title {
                font-size: 27px;
                margin-bottom: 28px;
            }

            .facilities-content {
                margin-bottom: 30px;
            }

            .facilities-content p {
                font-size: 16px;
                line-height: 1.35;
                margin-bottom: 20px;
            }

            .facilities-gallery {
                height: auto;

                grid-template-columns: 1fr 1fr;
                grid-template-rows: 240px 160px;

                gap: 5px;
            }

            /* Main image */
            .facilities-main {
                grid-column: 1 / 3;
                grid-row: 1;

                background-size: 298.5% 119.3%;
                background-position: 74.4% 80%;
            }

            /* Top image */
            .facilities-top {
                grid-column: 1;
                grid-row: 2;

                background-size: 623.8% 217.4%;
                background-position: 99.25% 23.95%;
            }

            /* Bottom image */
            .facilities-bottom {
                grid-column: 2;
                grid-row: 2;

                background-size: 623.8% 271.1%;
                background-position: 99.25% 94.9%;
            }
        }

        /* =========================
           SMALL MOBILE
        ========================= */

        @media (max-width: 480px) {

            .facilities-title {
                font-size: 24px;
            }

            .facilities-content p {
                font-size: 15px;
            }

            .facilities-gallery {
                grid-template-rows: 210px 135px;
            }
        }