/* header */
.main-header {
    padding-top: 180px;
    padding-bottom: 32px;
    background: url(../../../images/common/header-bg.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-bottom: 56px;
}

.main-header .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    row-gap: 8px;
    text-align: center;
}

.main-header .header-1 {
    font-weight: 700;
    color: var(--dark);
}

.main-header .breadcrumbs {
    display: flex;
    justify-content: center;
    column-gap: 10px;
}
/* header - end */

/* testimonial-list */
.main-section { margin-bottom: 56px; }

.testimonial-row { row-gap: 32px; }

.testimonial-row .testimonial-item .card {
    box-shadow: none;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.testimonial-row .testimonial-item .card:hover {
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 10%);
}

.testimonial-row .testimonial-item .card .testi-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.testimonial-row .testimonial-item .card .profile-img {
    width: 64px;
    height: 64px;
    border-radius: 50px;
}

.testimonial-row .testimonial-item .card .partai-logo {
    width: 64px;
    height: 64px;
}

.testimonial-row .testimonial-item .card .testi-profile {
    display: flex;
    align-items: center;
    column-gap: 16px;
}

.testimonial-row .testimonial-item .card .testi-profile .header-3 {
    font-weight: bold;
    color: var(--dark);
}
/* testimonial-list - end */

@media (max-width: 767.98px) {
    .container {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }

    .testimonial-row .testimonial-item .card .profile-img {
        width: 50px;
        height: 50px;
    }

    .testimonial-row .testimonial-item .card .partai-logo {
        width: 50px;
        height: 50px;
    }

    .testimonial-row .testimonial-item .card .testi-profile .header-3 {
        font-size: 14px;
    }
}

@media (min-width: 768px) and (max-width: 997.98px) {
    .container {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }

    .testimonial-row .testimonial-item .card .profile-img {
        width: 50px;
        height: 50px;
    }

    .testimonial-row .testimonial-item .card .partai-logo {
        width: 50px;
        height: 50px;
    }

    .testimonial-row .testimonial-item .card .testi-profile .header-3 {
        font-size: 14px;
    }

    .testimonial-row .testimonial-item .card .testi-profile {
        column-gap: 8px;
    }
}