.main_title {
    position: relative;
    margin-bottom: 45px;
    text-align: center;
}

@media (max-width: 768px) {
    .main_title {
        margin-bottom: 30px;
    }
}

.main_title h1,
.main_title h2 {
    font-size: 36px;
    font-weight: 500;
    margin: 0;
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .main_title h1,
    .main_title h2 {
        font-size: 28px;
    }
}

.main_title h1 {
    font-size: 42px;
}

@media (max-width: 768px) {
    .main_title h1 {
        font-size: 32px;
    }
}

.main_title span {
    display: block;
    position: absolute;
    text-align: center;
    margin-top: -15px;
    top: 0;
    font-weight: 900;
    font-size: 65px;
    line-height: 1;
    z-index: 1;
    color: #f4f4f4;
    text-transform: uppercase;
    width: 100%;
}

@media (max-width: 768px) {
    .main_title span {
        font-size: 45px;
    }
}

.main_title p {
    font-size: 23px;
    font-weight: 300;
    padding: 0 15%;
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .main_title p {
        font-size: 18px;
        padding: 0;
    }
}

.testimonials {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.testimonial {
    background-color: #1877f2; /* Blue for the first card */
    color: white;
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    width: 300px;
    position: relative;
    transition: transform 0.3s ease;
}

.testimonial:nth-child(2) {
    background-color: #4d8cf2; /* Lighter blue for the second card */
}

.testimonial:nth-child(3) {
    background-color: #7bb3f2; /* Lightest blue for the third card */
}

.testimonial:hover {
    transform: scale(1.05);
}

.quote-icon {
    font-size: 40px;
    font-weight: bold;
    color: white;
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #1877f2;
    padding: 10px;
    border-radius: 50%;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.testimonial p {
    margin: 20px 0;
    font-size: 16px;
    line-height: 1.5;
}

.testimonial h4 {
    font-size: 18px;
    margin: 10px 0;
    font-weight: bold;
}

.testimonial span {
    font-size: 14px;
    color: #e0e0e0;
}

.testimonial .stars {
    color: #ffd700;
    font-size: 20px;
    margin-top: 10px;
}

@keyframes ScaleImg {
    0% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

.swiper-slide-active img {
    animation: ScaleImg 0.8s ease;
}

.sendButton {
    width: 22px;
    position: absolute;
    top: 9px;
    right: 7px;
    cursor: pointer;
}

.imageCategory {
    width: 150px !important;
    height: 150px !important;
}

@media (max-width: 1170px) {
    .imageCategory {
        width: 100px !important;
        height: 100px !important;
    }
}

@media (max-width: 650px) {
    .imageCategory {
        width: 70px !important;
        height: 70px !important;
    }
}

.layer-is-visible {
    width: 100%;
    transform: translateX(0);
    left: 0;
}
