.service-first-section {
    display: grid;
    gap: 20px;
}

.service-second-section h1 {
    text-align: center;
}

.service-second-section p {
    text-align: center;
    padding-top: 10px;
}

.service-second-section>div {
    display: grid;
    margin-top: 50px;
    gap: 40px;
}

.service-second-section>div div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.service-second-section>div img {
    height: 90px;
    width: 90px;
    object-fit: contain;
}

.cta {
    background-image: url(../img/bg/cta.png);
    background-size: cover;
    background-attachment: fixed;
    height: 80dvh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.cta h3 {
    color: white;
    font-size: 20px;
    margin-bottom: 15px;
}

.cta h1 {
    color: white;
    font-size: 56px;
}

.cta a {
    margin-top: 16px;
}

.service-process h1,
.service-process p {
    text-align: center;
}

.service-process>div {
    display: grid;
    margin-top: 58px;
    gap: 50px;
    text-align: center;
}

.service-second-section span {
    text-align: center;
}

.shape-service-1,
.shape-service-2 {
    position: relative;
}

.service-process>div img {
    height: 80px;
    margin: 0 auto;
}

.shape-service-1 .arrow,
.shape-service-2 .arrow {
    position: absolute;
    width: 140px;
    top: 20px;
    right: -80px;
    object-fit: contain;
}

.service-process h3 {
    font-size: 26px;
}

@media (min-width: 600px) {
    .service-first-section {
        gap: 0;
        align-items: center;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .service-second-section h1 {
        font-size: 45px;
    }

    .service-second-section>div {
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: 0;
    }

    .service-process>div {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 500px) {
    .cta h1 {
        font-size: 35px;
    }

    .cta h3 {
        font-size: 15px;
    }

    .service-process .arrow {
        display: none;
    }
}