.information-section {
    padding: 80px 0;
}

.information-section.light-bg blockquote {
    background-color: var(--white);
}

blockquote:has(.user-detail.show-author)>p,
blockquote:has(.user-detail.show-author) .user-detail {
    padding-left: 60px;
}

blockquote:has(.user-detail.show-author) .quote-img {
    display: block;
}

blockquote .quote-img {
    display: none;
    width: 39px;
    position: absolute;
    margin-right: 20px;
}

blockquote .quote-img img {
    width: 39px;
}

.information-wrapper h3 {
    display: flex;
    align-items: center;
}

.heading-icon {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    margin-right: 15px;
    margin-left: 0 !important;
}

.heading-icon img {
    width: 34px;
    height: 34px;
}

.information-section.red-bg .heading-icon img {
    filter: brightness(0) invert(1);
}

.information-wrapper:not(:last-child) {
    margin-bottom: 60px;
}

.user-detail {
    display: none;
}

.user-detail.show-author {
    display: flex;
    align-items: center;
    gap: 0 15px;
    margin-top: 24px;
}

.user-detail .user-img {
    overflow: hidden;
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    border-radius: 100%;
    border: 4px solid var(--white);
    background-color: var(--white);
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1);
}

.user-detail .user-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-detail .user-text h6 {
    margin: 0;
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 27px;
    color: var(--black);
}

.user-detail .user-text p {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 15px;
    opacity: 0.8;
}

.information-wrapper h3.text-center {
    justify-content: center;
}

.information-wrapper h3>span {
    margin-left: 8px;
}

@media (min-width: 768px) {
    .information-wrapper h3 {
        margin-bottom: 18px;
    }
}

@media (min-width: 1200px) {
    .information-wrapper p {
        font-family: 'Open Sans';
        font-style: normal;
        font-weight: 400;
        font-size: 20px;
        line-height: 32px;
    }
}

@media (max-width: 991px) {
    .information-section {
        padding: 60px 0;
    }
    blockquote .quote-img {
        margin-right: 10px;
        width: 22px;
    }
    blockquote .quote-img img {
        width: 22px;
    }
    blockquote:has(.user-detail.show-author)>p,
    blockquote:has(.user-detail.show-author) .user-detail {
        padding-left: 34px;
    }
    .information-wrapper:not(:last-child) {
        margin-bottom: 40px;
    }
}

@media (max-width: 767px) {
    .information-section {
        padding: 50px 0;
    }
    .information-wrapper h3>span {
        margin-left: 6px;
    }
    .heading-icon {
        margin-right: 8px;
    }
    .heading-icon img {
        width: 30px;
        height: 30px;
    }
}

@media (max-width: 547px) {
    blockquote .quote-img {
        margin-right: 5px;
        width: 18px;
    }
    blockquote .quote-img img {
        width: 18px;
    }
    blockquote:has(.user-detail.show-author)>p,
    blockquote:has(.user-detail.show-author) .user-detail {
        padding-left: 24px;
    }
}