.hero {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 3vh;
    background-image: url("../images/projects/wavy-roof.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.hero__text {
    width: max(300px, 60vw);
    text-align: center;
    color: #FFFFFF;
    font-family: "Albert Sans", sans-serif;
}

.hero__text>p {
    font-size: max(20px, min(2vw, 40px));
    font-weight: 500;
}

.button-row {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: center;
}

.hero-btn {
    width: 150px;
}

.section__content {
    padding: 5vh;
    gap: 3vh;
}

.about-us {
    display: grid;
    /* grid-template-columns: repeat(2, 1fr); */
    grid-template-columns: 2fr 1fr;
}

.about-us__info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.about-us__img-grid {
    text-align: center;
    align-content: center;
}

.services {
    display: grid;
    grid-template-columns: 1fr 2fr;
    background-color: #FFFFFF;
}

.services__image {
    /* height: 100%; */
    object-fit: cover;
}

.services__content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3vh;
}

.service__item hgroup>*:not(:last-child) {
    padding-bottom: 1vh;
}

.testimonials {
    background-color: #FFFFFF;
}

/* TO BE REMOVED */
section img {
    width: 90%;
    text-align: center;
    align-self: center;
    justify-self: center;
    border-radius: 20px;
}

section {
    padding: 5vh;
    max-width: 1400px;
}

@media only screen and (max-width: 550px) {
    section, .services__grid {
        grid-template-columns: 1fr !important;
    }

    .section__content {
        padding: 0 0 5vh 0;
    }
    
    .services__image {
        order: 2;
    }

    .hero {
        background-attachment: scroll;
    }
}