.bg-attached{
    background-image: url("img/bg.jpg");
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: auto;
    
}
/* ===================================Infrastucture==================================== */
.infrastructure-bg-img {
    background-image: url("img/infra4.jpg");
    background-position: center;
    background-repeat: no-repeat;
   
    width: 100%;
    height: 286px;
    border-bottom: 10px solid #bdbaba;
}
/* h1.main-heading-infrastructure {
    font-size: 1.5rem;
    margin: 0px;
    padding: 15px 0px;
    color: #900C3F;
} */

.infrastructure-box{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
}
.infrastructure-boxOne{
    flex: 0 0 calc(33% - 20px);
    min-height: 23rem;
    border: 4px solid;
    /* border-image: linear-gradient(45deg, rgb(236, 18, 18), rgb(199, 199, 198)) 1; */
    border: 2px solid rgb(201, 198, 198);
    border-radius: 4px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    display: flex;
    flex-direction: column;
}
.infrastructure-boxOne-img{
    width: 100%;
    object-fit: cover;
}
.infrastructure-boxTwo-heading{
    color: #900C3F;
    padding: 5px 10px;
    margin: 0px;
}
.infrastructure-boxTwo-content{
    padding: 10px 10px;
    margin: 0px;
    font-size: 0.9375rem;
    font-family: serif;
}
.infrastructure-boxTwo-link{
    color: #900C3F;
    padding: 0px 10px;
    margin: 0px;
    font-family: serif;
    margin-top: auto;
    margin-bottom: 10px;
}


/* ===================================Manufacturing Facility==================================== */

p.manufacturing-two {
    font-style: italic;
    font-weight: 700;
}
p.manufacturing-three {
    font-weight: 700;
    color: #900C3F;
    font-style: italic;
}
li.manufacturing-list {
    font-style: italic;
    line-height: 2;
}


/* ===================================HumanCapital==================================== */

span.human-span {
    font-style: italic;
    font-weight: 700;
}

/* ===================================QualityAssurance==================================== */

p.quality-two {
    font-style: italic;
    font-weight: 500;
}
span.quality-span {
    color: #900C3F;
}

/* ===================================Media-Querry==================================== */

@media(max-width:768px) {
    .infrastructure-boxOne {
        flex: 0 0 calc(50% - 20px);
        min-height: 25rem;
        /* border: 2px solid black; */
        border-radius: 4px;
    }
}

@media(max-width:550px) {
    .infrastructure-boxOne {
        flex: 100%;
        min-height: 23rem;
        /* border: 2px solid black; */
        border-radius: 4px;
    }
}

