/* <!-- section 3 background img and content --> */
.about-section {
    position: relative;
    width: 100%;
    min-height: 400px;
    background: url('../images/Rectangle\ 9.png') center center/cover no-repeat;
    opacity: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.about-section h2 {
    font-family: 'Playfair Display', serif !important;
    font-weight: 700;
    font-size: 40px;
}

.about-section p {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 20px;
}

.about-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0E1849B2;
}

.about-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.btn-purple {
    background-color: #6101D1;
    color: #fff;
    font-weight: 400;
    font-size: 20px;
    /* padding: 10px 25px; */
    border-radius: 50px;
    border: none;
}

.btn-purple:hover {
    background-color: #7037db;
    color: #fff;
}


/* <!-- section 4 cards and content --> */

:root {
    --brand: #6f42c1
}

.text-brand {
    font-family: 'Playfair Display', serif !important;
    font-size: 45px;
    color: #6101D1;
}

.badge-brand {
    color: #6101D1;
    border: 1px solid #6101D1;
}

.badge-brand:hover {

    background-color: #6101D1;
}

.lead {
    /* width: 60%; */
    font-family: 'Roboto', sans-serif !important;
    font-size: 15px;

}


.card-title {
    font-family: 'Playfair Display', serif !important;

}

.card-text {
    font-family: 'Roboto', sans-serif !important;
    font-size: 13px;
    font-weight: 600;

}

.card-service {
    border: 1px solid #6101D1;
    transition: transform .15s ease, box-shadow .15s ease;
    border-radius: 1rem;
}

.card-service a {
    font-family: 'Roboto', sans-serif !important;
    text-decoration: none;
    font-weight: 600;
    color: #6101D1;


}

.card-service:hover {
    cursor: pointer;
    transform: scale(1.04);
    box-shadow: 3px 5px 5px rgba(1, 1, 1, 0.3);
    transition: 0.5s ease-in-out;
}

.card-service img {
    object-fit: cover;
    height: 160px;
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem
}

@media (min-width: 992px) {
    .lead-lg {
        max-width: 860px
    }
}