body {
           
    margin: 0;
    padding: 0;
    background-color: #fff;
}
.containers{
    width: 80%;
    margin: auto;
    overflow: hidden;
}
h1 {
    text-align: center;
    padding: 20px;
   
    color: #fff;
}
.facility {
    display: flex;
    align-items: center;
    background: #fff;
    margin: 20px 0;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}
.facility img {
    width: 40%;
    border-radius: 8px;
}
.facility-text {
    width: 60%;
    padding: 0 20px;
}
@media (max-width: 768px) {
    .facility {
        flex-direction: column;
        text-align: center;
    }
    .facility img, .facility-text {
        width: 100%;
    }
}



/* Basic styles for the header */
.header-body {
    width: 100%;
    margin: 0;
    padding: 0;
	 display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

/* Styles for the logo wrapper */
#wraplogo {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 119px;
    height: auto;
}

/* Styles for the logo inside the wrapper */
.mb_logo_loader {
    width: 100%;
    height: auto;
}

/* Styles for the header column */
.header-column {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
    box-sizing: border-box;
}

/* Styles for the header row */
.header-row {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
	height:100px;





}
/* Styles for the images inside the header row */
.header-row  img{
    max-width: 100%;
    height: auto;
	
}

/* Media query for larger screens */
@media (min-width: 768px) {
    .header-column {
        flex-direction: row;
        justify-content: space-between;
    }

    #wraplogo, .header-row {
        margin-bottom: 0;
    }
}

