/* ========================================
=============== Reviews Page==============
========================================== */
.review-page{
    background-color: #f8f9fb;
}
.reviews-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
}
.review-card {
    position: relative;
    background: #fff;
    border-radius: 16px;
    padding: 60px 30px;
    box-shadow: 0 2px 16px rgba(27, 45, 107, .07);
    border: 1.5px solid var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    flex-direction: column;
    transition: transform .25s, box-shadow .25s;
}
.review-card:before{
    content: '';
    background-image: url("../../../../images/quote.webp");
    position: absolute;
    width: 40px;
    height: 40px;
    background-size: contain;
    top: 15px;
    left: 15px;
    opacity: 0.1;
    transform: scaleX(-1);
}
.review-card:after{
    content: '';
    background-image: url("../../../../images/quote.webp");
    position: absolute;
    width: 40px;
    height: 40px;
    background-size: contain;
    bottom: 15px;
    right: 15px;
    opacity: 0.1;
}
.review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 38px rgba(27, 45, 107, .13);
}
p.review-text {
    font-size: 14px !important;
    color: #49516d !important;
    line-height: 1.68;
    flex: 1;
    margin-bottom: 20px;
    text-align: center;
}
.review-author {
    font-size: 14px;
    font-weight: 700;
    color: var(--secondary-color);
    text-align: center;
}
@media (max-width:991px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}

.static-page{
    padding: 30px 0px;
    background-color: #fdfdff;
}
.static-content h1 {
    font-size: 36px;
    font-weight: 800;
    color: #000;
    line-height: 1.2;
}
.static-content h1 span{
    color:var(--secondary-color);
}
.static-content h2.sta-tagline {
    font-size: 20px;
    font-weight: 500;
    font-style: italic;
    color: #6e6e6e;
    margin-bottom: 15px;
}
.static-content .title-underline {
    margin-bottom: 10px;
}
.static-content p {
    margin: 0;
    margin-bottom: 8px;
    font-size: 15px;
}
.static-content h3 {
    color: #30314e;
    font-size: 26px;
    font-weight: 700;
    margin: 25px 0 10px;
}
.static-content ul {
    padding: 0px;
    list-style: none;
}
.static-content li {
    position: relative;
    padding-left: 18px;
    padding-bottom: 6px;
    font-size: 15px;
}
.static-content li:before{
    content: '';
    background-image: url('../../../../images/list.webp');
    width: 10px;
    height: 10px;
    background-size: contain;
    position: absolute;
    top: 5px;
    left: 0px;
}
.about-us-layout {
    display: flex;
    gap: 30px;
}
@media (max-width:771px){
    .about-us-layout {
        flex-direction:column;
    }
}