.single-post--color {
    background-color: white;
}

.post {
    margin: 70px auto 68px auto;
    text-align: center;
    color: #777;
}

.post__title {
    color: #B78D87;
    margin-bottom: 40px;
}

.post__text {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 48px;
}

.post__text--esential {
    border-radius: 20px;
    background: #F2EAE7;
    color: #777;
    text-align: center;
    font-size: 22px;
    line-height: 32px;
    padding: 60px 114px;
    margin-bottom: 48px;
    position: relative;
}

.post__text--esential:before {
    content: '';
    background-image: url('../images/about-us-page/testimonials/Quote-marks.svg');
    position: absolute;
    width: 60px;
    height: 60px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100%;
    left: 12px;
    top: 6px;
}

.post__text--esential:after {
    content: '';
    background-image: url('../images/about-us-page/testimonials/Quote-marks.svg');
    position: absolute;
    width: 60px;
    height: 60px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100%;
    right: 12px;
    transform: rotate(180deg);
    bottom: 6px;
}

.post__hero {
    padding: 80px 0;
    width: 100%;
    box-sizing: border-box;
    background: #FAFAFA;
}

.post__hero__title {
    color: #B78D87;
    margin-bottom: 35px;
}

.post__hero__two-col {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.post__hero__text-col {
    flex: 1;
    color: #777777;
    font-size: 18px;
    line-height: 28px;
}

.post__hero__text-col button {
    margin-top: 20px;
}

.post__hero__text {
    padding-right: 15%;
}

.post__hero__img-col {
    position: relative;
    flex: 1;
}

.post__hero__img-container {
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 15px 15px 0px #f1cdc1;
    height: 420px;
}

.post__hero__img-container img {
    width: 100%;
    height: auto;
    display: block;
}


.post__image-container {
    margin: 48px 0;
}

.post__image {
    max-width: 100%;
    display: block;
    margin: 0 auto;
    border-radius: 20px;
}


@media screen and (max-width: 480px) {
    .post {
        margin: 20px auto 50px auto;
    }

    .post__title {
        font-size: 32px;
        line-height: 40px;
        margin-top: 48px;
    }

    .post__text--esential {
        font-size: 20px;
        padding: 60px 24px;
    }

    .post__hero__two-col {
        flex-direction: column;
    }

    .post__hero {
        padding: 40px 0 80px 0;

    }
}