.section-service {
    background-image: url(../../img/back-service.webp);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    padding-top: clamp(40px, 9vw, 130px);
    position: relative;
    padding-bottom: 80px;
}
.section-service:before {
    content: "PRO";
    position: absolute;
    bottom: clamp(35px,9vw,114px);
    left: 0px;
    font-family: 'Estedad_Bold';
    color: #FDFDFF33;
    font-size: clamp(30px, 9vw, 124px);
    line-height: 1;
}
.section-service:after {
    content: "NEXO";
    position: absolute;
    bottom: 0;
    left: 0px;
    font-family: 'Estedad_Bold';
    color: #FDFDFF33;
    font-size: clamp(30px, 9vw, 124px);
    line-height: 1;
}
.section-service .toptitle {
    position: absolute;
    top: 0px;
    right: 50%;
    transform: translateX(50%);
}
.grid-service {
    display: flex;
    column-gap: clamp(24px, 3vw, 40px);
    row-gap: clamp(32px, 5vw, 64px);
    flex-wrap: wrap;
    justify-content: center;
}
.service-cart {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: white;
    padding: clamp(12px, 2vw, 24px);
    border-radius: 16px;
    border: 1px solid #D7D7D7;
    gap: 1rem;
    width: 100%;
    height: auto;
}
.service-cart img {
    width: 100%;
    border-radius: 1rem;
}
.service-cart p {
    font-size: clamp(18px, 2vw, 24px);
}
.service-cart span {
    font-size: clamp(14px, 2vw, 16px);
    width: 90%;
    text-align: center;
}
.service-cart a {
    background: var(--color1);
    border: 1px solid var(--color1);
    font-size: 12px;
    width: 110px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: 0.4s;
}
.service-cart a:hover {
    background: white;
}
@media only screen and (min-width: 550px) {
    .service-cart {
        width: 46%;
    }
}
@media only screen and (min-width: 1200px) {
    .service-cart {
        width: 30%;
        height: fit-content;
    }
    .service-cart:nth-child(2) {
        margin-top: 89px;
    }
}
@media only screen and (max-width: 768px) {
    .section-service {
        background-color: var(--color1);
        background-image: none;
        & .toptitle {
            position: relative;
            text-align: center;
            margin-bottom: 40px;
        }
    }
}