*{
    margin: 0;
    padding: 0;
}
.home-hyper{
    border-bottom: none;
}
.home-hyper:hover{
    border-bottom: 5px solid #E0732D;
}
.about-hyper{
    border-bottom: 5px solid #E0732D;
}
.about-us-head-flex{
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #576638;
}
.about-us-head-flex h1{
    color: white;
    padding-top: 80px;
    padding-bottom: 80px;
    font-size: 128px;
    font-family: 'Mouse Memoirs';
}
.about-us-grid-cont{
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
.about-us-grid{
    width: 95%;
    height: auto;
    margin-top: 47px;
    display: grid;
    grid-template-columns: 55% 45%;
    gap: 0;
    text-align: center;
}
.about-us-grid p{
    font-size: 40px;
    font-family: 'Kreon';
}
.about-us-picture-flex{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ab-us-img{
    width: 70%;
}
.customer-reviews-sec{
    display: grid;
    grid-template-rows: auto 1fr;
    gap: 0;
    margin-top: 100px;
}
.customer-reviews-sec h2{
    text-align: center;
    font-family: 'Lalezar';
    font-size: 32px;
}
.reviews-flex-cont{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 28px;
}
.reviews-grid{
    width: 95%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}
.review-grid-cont{
    border: 1px solid black;
    background: #D9D9D9;
    text-align: center;
    border-radius: 50px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.container-two{
    padding-bottom: 15px;
}
.review-grid-cont p{
    width: 70%;
    margin-top: 55px;
    font-family: 'Lalezar';
    font-size: 1.2em;
}
.stars-flex{
    display: flex;
    align-items: center;
    justify-content: center;
}
.stars{
    width: 10%;
}
@media screen and (min-width: 0px) and (max-width: 500px)
{
    .about-us-head-flex h1{
        font-size: 5em;
    }
    .about-us-grid{
        grid-template-columns: 100%;
        gap: 0;
    }
    .about-us-grid p{
        font-size: 1.75em;
    }
    .about-us-picture-flex{
        margin-top: 10%;
    }
    .customer-reviews-sec h2{
        width: 80%;
        margin-left: 10%;
    }
    .reviews-grid{
        display: inline-block;
        grid-auto-flow: column;
        grid-template-rows: repeat(3, 1fr);
        gap: 0;
    }
    .review-grid-cont{
        margin-top: 5%;
    }
}
@media screen and (min-width: 501px) and (max-width: 900px)
{
    .about-us-head-flex h1{
        font-size: 5em;
    }
    .about-us-grid{
        grid-template-columns: 100%;
        gap: 0;
    }
    .about-us-grid p{
        font-size: 1.75em;
    }
    .about-us-picture-flex{
        margin-top: 10%;
    }
    .customer-reviews-sec h2{
        width: 80%;
        margin-left: 10%;
    }
    .reviews-grid{
        display: inline-block;
        grid-auto-flow: column;
        grid-template-rows: repeat(3, 1fr);
        gap: 0;
    }
    .review-grid-cont{
        margin-top: 5%;
    }
}