.mhc-homepage-sub-header {
    background-image: url(../images/hero-clinic-front-rectangle.jpg);
    background-position: 30% 0px;
    background-size: cover;
    padding-top: 50vw;
}

.mhc-homepage-sub-header-content {
    padding: 2em 1em 1em 1em;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    text-align: center;
}

.mhc-homepage-sub-header-content h3 {
    font-size: 200%;
    font-weight: 800;
}

.mhc-homepage-sub-header-content h4 {
    font-size: 120%;
    font-weight: normal;
}

.mhc-homepage-sub-header-content-callout {
    padding: 1em;
    background-color: #F68B1F;
    display: inline-block;
    color: black !important;
    border-radius: 6px;
    font-size: 120%;
    font-weight: bold;
    margin-bottom: 0.5em;
    margin-top: 1em;
    text-decoration: none !important;
}

.banner-welcome,
.banner-treat,
.banner-about-us {
  margin-top: 2em;
}

.banner-welcome .side-image,
.banner-treat .side-image,
.banner-about-us .side-image {
    background-size: cover;
    width: 100%;
    height: 100%;
    padding-top: 56.25%;
}

.banner-welcome .banner-content,
.banner-treat .banner-content,
.banner-about-us .banner-content {
    padding: 2em;
}

.banner-welcome .side-image {
    background-image: url(../images/background-welcome-phone.jpg);
    background-position: center center;
}

.banner-welcome .banner-content {
    background-color: #298FC2;
    color: white;
}

.banner-treat .side-image {
    background-image: url(../images/background-what-we-treat.jpg);
    background-position: left center;
}

.banner-treat .banner-content {
    background-color: #34657F;
    color: white;
}

.banner-treat .banner-content a {
    color: #F68B1F;
    text-decoration: underline;
}

.banner-about-us {
  margin-bottom: 2em;
}

.banner-about-us .side-image {
    background-image: url(../images/background-about-us.jpg);
    background-position: 30% center;
}

.banner-about-us .banner-content {
    background-color: #E04E39;
    color: white;
}

.top-service {
    margin-bottom: 1.5em;
}

.service-medication {
    background-color: #4C2683;
    color: white;
    padding: 1em;
    border-radius: 6px;
    margin-bottom: 1em;
}

.service-psychological {
    background-color: #F2C75C;
    color: black;
    padding: 1em;
    border-radius: 6px;
    margin-bottom: 1em;
}

.service-grid > img {
    display: none;
}

.service {
    background-color: #F2C75C;
    border-radius: 6px;
    color: black;
    margin-bottom: 1.5em;
}

.top-service .service {
    background-color: #298FC2;
    color: white;
}

.service h4 {
	border-radius: 6px 6px 0px 0px;
	background-color: rgba(0, 0, 0, 0.9);
	color: white;
	padding: 1em;
}

.service .service-copy {
	padding: 0 1.5em 0.5em 1.5em;
}

/* Small devices (tablets, 768px and up) */
@media (min-width: 768px) {

    .service-grid > img {
        display: inline-block;
    }
    
    .service-grid {
        display: grid;
        grid-template-columns: 60% 40%;
        column-gap: 1em;
    }
    
}


/* Medium devices (desktops, 992px and up) */
@media (min-width: 992px) {
    
    .mhc-homepage-sub-header {
        padding-top: 600px
    }
    
    .banner-welcome,
    .banner-treat,
    .banner-about-us {
      display: grid;
      align-items: center;
      padding: 0px;
      max-width: 1500px;
      margin-left: auto;
      margin-right: auto;
    }
    
    .banner-welcome .banner-content,
    .banner-treat .banner-content,
    .banner-about-us .banner-content {
        border-top: 1em solid white;
        border-bottom: 1em solid white;
    }
    
    .banner-welcome {
      grid-template-columns: 40% 60%;
    }
    
    .banner-treat {
      grid-template-columns: 60% 40%;
    }
    
    .banner-treat .side-image {
        order: 2;
    }
    
    .banner-treat .banner-content {
        order: 1;
    }

    .banner-about-us {
      grid-template-columns: 40% 60%;
    }

    .services {
    	display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5em;
        margin-bottom: 2em;
    }
    
    .service {
        margin-bottom: 0px;
    }
}