.introContainer {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    overflow: hidden;
    height: 350px;
    background: linear-gradient(to left, black, black, transparent), url("bg_img/comb.jpg");
    background-repeat: no-repeat;
}

.introContainer .text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 25px;
    gap: 15px;
}

.introContainer .text img {
    height: 200px;
}

.text ul {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    list-style: none;
}

.text li::before {
    content: "\2022";
    color: #f1b91b;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

.text li {
    color: #f1b91b;
}

.introContainer .angleOverlay {
    position: relative;
    z-index: 1;
    top: 40px;
    right: -450px;
    height: 200px;
    width: 120%;
    background-color: #F6F4F3;
    transform: skew(80deg) rotate(-2deg);
    box-shadow: 4px 4px 4px 4px rgba(0, 0, 0, .1);
}

.aboutUs {
    width: 100%;
    font-size: 18px;
    margin-bottom: 50px;

    a:not(.link) {
        display: block;
        width: 200px;
        text-align: center;
        margin: 0 auto 50px;
        color: black;

        i {
            margin-left: 5px;
        }
    }
}

.aboutText {
    max-width: 500px;
    margin: auto;
    margin-bottom: 25px;
    padding: 15px;

    h2 {
        font-size: 18px;
        font-family: 'Acumin Pro';
        font-weight: 200;
    }
}

.contactNow {
    width: 120%;
    text-align: center;
    margin-left: -10%;
    padding: 15px;
    font-size: 20px;
    background-color: #f1b91b;
}

.contactNow:first-child {
    font-size: 20px;
    margin-bottom: 15px;
}

/* .services {
    background: linear-gradient(to left , grey, black, transparent), url("bg_img/comb.jpg");
} */

.services_list {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    max-width: 1000px;
    margin: 50px auto;
}

.service_card {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    background-color: white;
}

.service_card:nth-child(even) {
    flex-direction: row-reverse;
    background-color: #F6F4F3;
}

.service_card img {
    width: 400px;
}

.service_card .text {
    max-width: 400px;
    padding: 25px;
}

.service_card p {
    font-size: 18px;
    padding: 15px;
}

.whyUsSection {
    max-width: 1000px;
    margin: auto;
}

.whyUsSection p {
    padding: 25px;
}

.reviews {
    .reviewsLink {
        display: block;
        width: 300px;
        text-align: center;
        margin: 50px auto;
        color: black;

        i {
            margin-left: 5px;
        }
    }
}

.reviewSlide {
    max-width: 800px;
    margin: 75px auto 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: center;
    transform-style: preserve-3d;

    input[type=radio] {
        display: none;
    }

    .slideCtl {
        position: absolute;
        z-index: 2;
        font-size: 28px;
        padding: 9px 14px;
        border-radius: 50%;
        background-color: #d5d5d5;
    }

    .left {
        left: -5px;
    }

    .right {
        right: -5px;
    }
}

.slide {
    position: relative;
    width: 100%;
    margin: auto;
    margin-bottom: 300px;
}

#slide1:checked~.slide #review3,
#slide2:checked~.slide #review1,
#slide3:checked~.slide #review2 {
    transform: translatex(-70%) scale(.85);
    opacity: .5;
    z-index: 0;
}

#slide1:checked~.slide #review2,
#slide2:checked~.slide #review3,
#slide3:checked~.slide #review1 {
    transform: translatex(70%) scale(.88);
    opacity: .5;
    z-index: 0;
}

#slide1:checked~.slide #review1,
#slide2:checked~.slide #review2,
#slide3:checked~.slide #review3 {
    transform: translatex(0) scale(1);
    opacity: 1;
    z-index: 1;

    .review {
        box-shadow: 0px 0px 5px 0px rgba(81, 81, 81, 0.47);
    }
}

.reviewSlide .review {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 350px;
    height: 300px;
    padding: 20px;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    transition: transform .4s ease;
    cursor: pointer;
    background-color: white;

    .stars i {
        margin: 0 5px;
        color: #f5eb01;
    }

    .author i {
        margin-right: 10px;
    }
}

.contactSection {
    margin: 100px auto;

    a {
        display: block;
        margin: 25px auto 0;
        width: 200px;
        color: black;
        text-decoration: none;
        text-align: center;
        font-size: 20px;
        padding: 15px;
        background-color: #f1b91b;
        border-radius: 5px;
        cursor: pointer;
    }
}

@media (max-width: 550px) {

    .introContainer {
        height: 300px;
        background-size: 800px;
    }

    .introContainer .text img {
        height: 150px !important;
    }

    .introContainer .angleOverlay {
        right: -50px;
    }

    .service_card {
        justify-content: center;

        img {
            width: 300px;
        }
    }

    .reviewSlide {
        .review {
            width: 300px;
        }
    }
}

@media only screen and (min-width: 800px) {

    .aboutUs {
        flex-direction: row;
        justify-content: space-between;
    }

    #submitStatus {
        max-width: 500px;
    }

}

@media only screen and (min-width: 1200px) {

    .introContainer .angleOverlay {
        right: -50px;
    }
}