

section {
    padding: clamp(45px, 7vw, 90px) 0
}

.main-title {
    font-size: clamp(32px, 4vw, 42px);
    color: #041b34;
    font-weight: 700;
    text-transform: capitalize
}

.hero-sec {
    background: url('./../assets/about-hero-img.webp') center/cover no-repeat;
    position: relative;
    padding: clamp(120px, 16vw, 180px) 0 45px 0;
    z-index: 1
}

.hero-sec::before {
    content: '';
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-color: #041b34;
    opacity: .9;
    z-index: -1
}

.hero-sec .hero-title {
    color: #f7bf23;
    font-weight: 700;
    text-align: center;
    font-size: clamp(32px, 4vw, 42px) !important
}

.review-card {
    background: linear-gradient(180deg, #007aff 0%, #61ADFF 100%);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    border-radius: 8px;
    position: relative;
    height: 100%
}

.review-card::before {
    content: '';
    position: absolute;
    right: 10px;
    top: 10px;
    width: 40px;
    height: 40px;
    background: url('./../assets/icons/quote.png') center/contain no-repeat
}

.review-card .review-star {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 6px
}

.review-card .review-title {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    display: block
}

.review-card .review-brand {
    color: #fff;
    text-align: center;
    display: block
}

.review-card .review-content {
    color: #fff;
    text-align: center
}
