/* body {
    background-color: #fff;
}

.overflow {
    width: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.colorRed {
    color: #CE0403;
}

.bgColor {
    background-color: #CE0403;
}

.colorWhite {
    color: #fff;
} */




.manufacturingDetails {
    padding: 2% 10%;
    width: 100%;
}

.facilitymajorProject {
    background-image: url("../images/facilities/facilitymajorProject.webp") !important;
}

.manufacturingDetails .col-md-4 {
    padding: 10px;
}

.manufacturingDetails .department h2 {
    font-size: 18px;
    font-weight: 700;
}

.manufacturingDetails .department p {
    font-size: 15px;
}

.departmentLogo {
    width: 26%;
    padding: 20px;
}

.facilitiesHome {
    background-image: url("../images/facilities/facilityHome.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #f0f0f0;
    width: 100%;
    padding: 50px 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.gallery,
.manufacturingProcess {
    padding: 1% 4%;
}

.manufacturingProcess .row {
    padding: 1% 4%;
}

.manufacturingProcess .col-md-6 {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border-radius: 5px;
}

.manufacturingProcess .col-md-6 h1 {
    font-size: 38px;
    width: 100%;
}

.manufacturingProcess .col-md-6 li {
    font-size: 18px;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 10px 0px;
}

.manufacturingProcess .col-md-6 li::before {
    content: '';
    width: 20px;
    height: 20px;
    background-image: url("../images/facilities/right.svg");
    background-size: contain;
    background-repeat: no-repeat;
    flex-shrink: 0;
    margin-top: -25px;
}

.manufacturingProcess img {
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.5s ease-in-out;
}

.manufacturingProcess img:hover {
    scale: 1.05;
}

.imageWrapper {
    width: 100%;
    /* height: 100vh; */
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px 0px;
}

.imageContainer {
    height: 300px;
    display: flex;
    flex-wrap: nowrap;
    justify-content: start;
}

.imageCard {
    width: 100px;
    /* height: 400px; */
    border-radius: 10px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
    overflow: hidden;
    margin: 0% 10px;
    display: flex;
    align-items: flex-end;
    transition: 0.4s cubic-bezier(0.075, 0.82, 0.165, 1);
}


.imageCard:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}


.imageCard>.row {
    border-radius: 50%;
    /* width: 50px; */
    display: flex;
    /* align-items: center;
    justify-content: center; */
    flex-wrap: nowrap;
}

.imageContainer input {
    display: none;
}

.imageContainer input:checked+label {
    width: 500px;
}

.imageCard[for="img1"] {
    background-image: url("../images/facilities/gallery1.svg");
}

.imageCard[for="img2"] {
    background-image: url("../images/facilities/gallery2.svg");
}

.imageCard[for="img3"] {
    background-image: url("../images/facilities/gallery3.svg");
}


@media (max-width: 600px) {
    .facilitiesHome {
        margin-top: 14%;
    }
}

@media (min-width: 601px) and (max-width: 1024px) {
    .facilitiesHome {
        margin-top: 10%;
    }
}

@media (min-width: 1025px) {
    .facilitiesHome {
        margin-top: 7%;
    }
}