:root {
    --primaryColor: #09C5A3;
    --secondaryColor: #00A98B;
}

/* Home Page */
#wrapper #bannerHome {
    grid-column: 1 / span 4;
    grid-row: 2 / span 1;
    width: 100%;
    height: 90vh;
    background: url('../images/hero.jpg');
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -ms-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    -webkit-background-repeat: no-repeat;
    -moz-background-repeat: no-repeat;
    -ms-background-repeat: no-repeat;
    -o-background-repeat: no-repeat;
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
}

#wrapper #bannerHome #overlay {
    position: relative;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 90vh;
    background: rgba(2, 105, 86, 0.2);
}

#wrapper #bannerHome #overlay #homeHeader {
    padding: 5rem 7rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    width: 70%;
}

#wrapper #bannerHome #overlay #homeHeader h2 {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
}

#wrapper #bannerHome #overlay #homeHeader div {
    padding-top: 3rem;
    width: 100%;
}

#wrapper #bannerHome #overlay #homeHeader div a {
    font-family: 'Nunito', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    padding: 18px 45px;
    margin: 0;
    text-decoration: none;
    align-items: center;
    justify-content: center;
    color: white;
    background-color: var(--primaryColor);
    border: solid var(--primaryColor) 2px;
    border-radius: 500px;
    cursor: pointer;
    -webkit-transition: all ease-in-out 0.3s;
    -moz-transition: all ease-in-out 0.3s;
    -ms-transition: all ease-in-out 0.3s;
    -o-transition: all ease-in-out 0.3s;
    transition: all ease-in-out 0.3s;
}

#wrapper #bannerHome #overlay #homeHeader div a:hover {
    border: 2px solid var(--secondaryColor);
    background-color: var(--secondaryColor);
}

#wrapper #therapySec {
    grid-column: 1 / span 4;
    grid-row: 3 / span 1;
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    width: 100%;
}

#wrapper #therapySec h2 {
    font-size: 3.5rem;
    font-weight: 700;
    color: black;
    text-align: center;
    width: 100%;
    padding-bottom: 5rem;
}

#wrapper #therapySec #therapistCards {
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 100%;
}

#wrapper #therapySec #therapistCards .therapyCard {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5rem 2rem;
    margin: 3rem 0;
    width: 100%;
    background: white;
    border-radius: 15px;
    box-shadow: 0px 0px 25px -2px rgba(0, 0, 0, 0.1);
}

#wrapper #therapySec #therapistCards .therapyCard:first-child {
    margin-right: 2rem;
}

#wrapper #therapySec #therapistCards .therapyCard:nth-child(3) {
    margin-left: 2rem;
}

#wrapper #therapySec #therapistCards .mainCard {
    background: var(--primaryColor);
    margin: 0;
}

#wrapper #therapySec #therapistCards .therapyCard h2 {
    font-size: 3.2rem;
    font-weight: 700;
    color: black;
    text-align: center;
    width: 100%;
    padding-bottom: 2.5rem;
}

#wrapper #therapySec #therapistCards .mainCard h2 {
    font-size: 5rem;
    font-weight: 700;
    color: white;
}

#wrapper #therapySec #therapistCards .therapyCard h2 span {
    font-size: 1.5rem;
    font-weight: 700;
}

#wrapper #therapySec #therapistCards .mainCard span {
    font-size: 2rem;
}

#wrapper #therapySec #therapistCards .therapyCard h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: black;
    text-align: center;
    width: 100%;
    padding-bottom: 1rem;
}

#wrapper #therapySec #therapistCards .mainCard h4 {
    font-size: 1.3rem;
    color: white;
}

#wrapper #therapySec #therapistCards .therapyCard p {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5rem;
    color: black;
    text-align: center;
    width: 100%;
}

#wrapper #therapySec #therapistCards .mainCard p {
    color: white;
}

#wrapper #therapySec #therapistCards .therapyCard div {
    padding-top: 2.5rem;
    width: 100%;
    text-align: center;
    display: flex;
}

#wrapper #therapySec #therapistCards .therapyCard div a {
    font-family: 'Nunito', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    padding: 18px 45px;
    margin: 0;
    text-decoration: none;
    align-items: center;
    justify-content: center;
    width: 100%;
    color: white;
    background-color: var(--primaryColor);
    border: solid var(--primaryColor) 2px;
    border-radius: 500px;
    cursor: pointer;
    -webkit-transition: all ease-in-out 0.3s;
    -moz-transition: all ease-in-out 0.3s;
    -ms-transition: all ease-in-out 0.3s;
    -o-transition: all ease-in-out 0.3s;
    transition: all ease-in-out 0.3s;
}

#wrapper #therapySec #therapistCards .mainCard div a {
    color: white;
    background-color: transparent;
    border: solid white 2px;
}

#wrapper #therapySec #therapistCards .therapyCard div a:hover {
    border: 2px solid var(--secondaryColor);
    background-color: var(--secondaryColor);
}

#wrapper #therapySec #therapistCards .mainCard div a:hover {
    color: var(--primaryColor);
    background-color: white;
    border: solid white 2px;
}

#wrapper #companySec {
    grid-column: 1 / span 4;
    grid-row: 4 / span 1;
    padding-bottom: 3rem;
    display: flex;
    flex-direction: row;
    max-height: 700px;
    width: 100%;
}

#wrapper #companySec div {
    width: 50%;
}

#wrapper #companySec div img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

#wrapper #companySec #companyDesc {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5rem 7rem 5rem 5rem;
    color: white;
    background: var(--primaryColor);
}

#wrapper #companySec #companyDesc h2 {
    font-size: 2.5rem;
    font-weight: 700;
    width: 100%;
    padding-bottom: 2rem;
}

#wrapper #companySec #companyDesc p {
    font-size: 1.1rem;
    font-weight: 500;
    width: 100%;
    line-height: 1.5rem;
    padding-bottom: 1.5rem;
}

#wrapper #contactSec {
    grid-column: 1 / span 4;
    /* grid-row: 5 / span 1; */
    padding: 3rem 10rem 7rem;
    width: 100%;
}

#wrapper #contactSec #contactContainer {
    display: flex;
    flex-direction: row;
    width: 100%;
    min-height: 350px;
    background: white;
    border-radius: 15px;
    box-shadow: 0px 0px 25px -2px rgba(0, 0, 0, 0.1);
}

#wrapper #contactSec #contactContainer #contactInfo,
#wrapper #contactSec #contactContainer #mapSec {
    width: 50%;
}

#wrapper #contactSec #contactContainer #mapSec #map {
    height: 100%;
    width: 100%;
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
}

#wrapper #contactSec #contactContainer #contactInfo {
    display: flex;
    flex-direction: column;
    padding: 3rem 5rem;
}

#wrapper #contactSec #contactContainer #contactInfo h4 {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5rem;
    text-transform: uppercase;
    color: black;
    padding-bottom: 1rem;
}

#wrapper #contactSec #contactContainer #contactInfo h2 {
    font-size: 3.2rem;
    font-weight: 700;
    color: black;
    padding-bottom: 2rem;
}

#wrapper #contactSec #contactContainer #contactInfo p {
    font-size: 1rem;
    font-weight: 500;
    color: black;
    padding-bottom: 2rem;
}

#wrapper #contactSec #contactContainer #contactInfo .contactDetails {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    padding-bottom: 1.5rem;
}

#wrapper #contactSec #contactContainer #contactInfo .contactDetails .contactIcons {
    width: 3.5rem;
    height: 3.2rem;
}

#wrapper #contactSec #contactContainer #contactInfo .contactDetails .contactIcons i {
    font-size: 1.5rem;
    width: 100%;
    color: black;
    background: white;
    height: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    cursor: pointer;
    border-radius: 50%;
    box-shadow: 0px 0px 25px -2px rgba(0, 0, 0, 0.1);
    transform: translateY(0);
    -webkit-transition: all ease-in-out 0.3s;
    -moz-transition: all ease-in-out 0.3s;
    -ms-transition: all ease-in-out 0.3s;
    -o-transition: all ease-in-out 0.3s;
    transition: all ease-out 0.3s;
}

#wrapper #contactSec #contactContainer #contactInfo .contactDetails .contactIcons i:hover {
    color: white;
    background: var(--primaryColor);
    transform: translateY(5px);
}

#wrapper #contactSec #contactContainer #contactInfo .contactDetails a {
    font-size: 1.2rem;
    font-weight: 600;
    width: 100%;
    color: var(--primaryColor);
    text-decoration: none;
    padding-left: 2rem;
    -webkit-transition: all ease-in-out 0.3s;
    -moz-transition: all ease-in-out 0.3s;
    -ms-transition: all ease-in-out 0.3s;
    -o-transition: all ease-in-out 0.3s;
    transition: all ease-out 0.3s;
}

#wrapper #contactSec #contactContainer #contactInfo .contactDetails a:hover {
    color: var(--secondaryColor);
}