

h2{
    font-size: 2.1rem;
    letter-spacing: .15rem;
}

.aHero h2, .aboutUs h2{
    font-family: boldText;
}

.aHero{
    padding-top: 5rem;
}

.aHeroGrid{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding-top: 3rem;
    padding-bottom: 2rem;
}

.aHeroGrid figure{
    grid-column: 1 / 3;
    min-width: 100%;
}

.aHeroGrid .aText{
    grid-column: 3 / 5;
}

.aHeroGrid img{
    max-width:80%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.aHeroGrid h2{
    transform: translateX(-2rem);
}

.aTitle p{
    font-size: 1.3rem;
    letter-spacing: .15rem;
    font-weight: bold;
}
.aBody {
    font-family: regularText;
    color: #3a3a3a;
}

.aHeroGrid .aBody{
    font-size: clamp(1rem, 1.5vw, 1.3rem);
    max-width: 45ch;
    font-weight: 100;
}

.aboutUs{
    padding: 3rem 0;
}

.aboutUs h2{
    text-align: center;
}

.aboutUs p{
    font-family: regularText;
    font-size: clamp(.9rem, 1.5vw, 1.3rem);
    max-width: 45ch;
    margin: 0 auto;
    font-weight: 100;
    color: #3a3a3a;
}

.mAbutUs{
    padding-bottom: 3rem;
}

.mAbutUs h2{
    transform: translateY(1.5rem);
    background-color: #1286dfb3;
    color: white;
    border-radius: 0 2rem 0 2rem;
    max-width: max-content;
    padding: 0 1rem;
}

.mContent{
    min-height: 400px;
    max-width: 100%;
    display: grid;
    grid-template-columns: repeat(4,auto);
    gap: 1rem;
    background-color: #255c343d;
    padding: 1rem;

}

.mContent img{
    max-width: 100%;
}

.mContent .mLists{
    align-content: center;
    justify-self: center;
    font-size: clamp(1rem, 1.5vw, 1.5rem);
    font-weight: 100;
    grid-column: 1 / 3;
    grid-row: 1;
}

@media only screen and (max-width:991px) {
    .aHeroGrid figure{
        grid-column: 1 / 5;
        grid-row: 1;
    }
    .aHeroGrid .aText{
        grid-column: 1 / 5;
    }
}

@media only screen and (max-width:700px) {
    .aHeroGrid img{
        max-width:100%;
    }
    .aHeroGrid h2{
        transform: translateX(0);
        text-align: center;
    }
    .aHeroGrid .aTitle{
        text-align: center;
    }
    .aHeroGrid .aBody{
        font-size: clamp(1rem, 1.5vw, 1.3rem);
        max-width: 100%;
    }
}

@media only screen and (max-width: 800px) {
    .mContent img{
        display: none;
    }
    .mContent{
        background: linear-gradient(to bottom, #255c349f 0%, #255c34c5 100%), url("images/hero_image.jpg");
        width: 100%;
        height: 200px;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        color: white;
    }
    .mLists {
        font-weight: 700!important;
        letter-spacing: .12rem;
    }
}

@media only screen and (max-width: 650px) {
    .aBody, .aboutUs p{
        font-weight: 300!important;
    }
}