.feedback-section {
    background: #f5f1e6
}

.feedback-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px
}

.feedback-grid article {
    background: #fff;
    padding: 30px;
    border-bottom: 4px solid #c9a558;
    box-shadow: 0 15px 40px #143c3312
}

.feedback-grid blockquote {
    font: 500 16px/1.8 Manrope;
    text-align: left;
    margin: 15px 0 25px;
    color: #53615d
}

.stars {
    color: #c9a558;
    letter-spacing: 3px
}

.feedback-person {
    display: flex;
    align-items: center;
    gap: 12px
}

.feedback-person img,
.feedback-person>span {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover
}

.feedback-person>span {
    display: grid;
    place-items: center;
    background: #0a4d42;
    color: #fff;
    font-weight: 700
}

.feedback-person strong,
.feedback-person small {
    display: block
}

.feedback-person small {
    color: #8a9591
}

.why-v5 {
    background: #fff
}

.why-heading {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 45px
}

.why-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border: 1px solid #dcd4c0
}

.why-cards article {
    padding: 32px 25px;
    border-right: 1px solid #dcd4c0
}

.why-cards article:last-child {
    border: 0
}

.why-cards article:before {
    content: '';
    display: block;
    width: 34px;
    height: 3px;
    background: #c9a558;
    margin-bottom: 20px
}

.why-cards strong {
    font: 700 18px Cinzel;
    color: #073d35
}

.why-cards p {
    color: #697570;
    font-size: 13px
}

.service-card .service-image>b,
.service-body>i {
    display: none !important
}

.image-placeholder {
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0b594c, #032923)
}

@media(max-width:900px) {
    .feedback-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .why-cards {
        grid-template-columns: 1fr 1fr
    }

    .why-cards article {
        border-bottom: 1px solid #dcd4c0
    }
}

@media(max-width:600px) {

    .feedback-grid,
    .why-cards {
        grid-template-columns: 1fr
    }

    .why-cards article {
        border-right: 0
    }
}

.home-image-banner {
    width: 100%;
    line-height: 0;
    overflow: hidden;
    background: #032923
}

.home-image-banner img {
    display: block;
    width: 100%;
    height: auto;
    
    object-fit: cover;
    object-position: center
}

@media(max-width:700px) {
    .home-image-banner img {
        max-height: none;
        object-fit: contain
    }
}