.services-area-one {
    padding-top: 120px;
    padding-bottom: 120px;
}

.services-area-one .row {
    justify-content: flex-start;
}

.service-item-one-column {
    border-top: 1px solid var(--default-object);
    margin-top: 10px;
    padding-top: 10px;
}

.service-item-one-column:last-child {
    border-bottom: 1px solid var(--default-object);
    margin-bottom: 10px;
    padding-bottom: 10px;
}

.service-item-one .image {
    border-radius: 5px;
    overflow: hidden;
}

.service-item-one .read-more .common-btn {
    margin-top: 0;
}

.service-item-one .description p {
    color: var(--default-text);
    text-align: justify;
    margin-bottom: 0;
}

.service-item-one .title {
    font-size: 24px;
    color: var(--orange);
}

/*Responsive*/
@media (min-width:768px) and (max-width:991.98px) {
    .service-item-one-column:last-child {
        border-bottom: 0;
        margin-bottom: 0;
        padding-bottom: 0;
    }

    .service-item-one-column {
        border-top: 0;
        margin-top: 20px;
    }

    .service-item-one .read-more .common-btn {
        margin-top: 20px;
    }

    .service-item-one .title {
        margin: 20px 0 10px 0;
        text-align: center;
    }
}

@media (min-width:576px) and (max-width:767.98px) {
    .service-item-one-column:last-child {
        border-bottom: 0;
        margin-bottom: 0;
        padding-bottom: 0;
    }

    .service-item-one-column {
        border-top: 0;
        margin-top: 20px;
    }

    .service-item-one .read-more .common-btn {
        margin-top: 20px;
    }

    .service-item-one .title {
        margin: 10px 0 5px 0;
        text-align: center;
    }
}

@media (max-width:575.98px) {
    .services-area-one {
        padding-top: 100px;
        padding-bottom: 100px;
    }

    .service-item-one-column:last-child {
        border-bottom: 0;
        margin-bottom: 0;
        padding-bottom: 0;
    }

    .service-item-one-column {
        border-top: 0;
        margin-top: 20px;
    }

    .service-item-one .read-more .common-btn {
        margin-top: 20px;
    }
}

.services-see-more-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    position: relative;
    padding: 0 20px;
    font-size: 18px;
    text-transform: uppercase;
    border: 0;
    box-shadow: hsl(210deg 87% 36%) 0px 7px 0px 0px;
    background-color: hsl(210deg 100% 44%);
    border-radius: 12px;
    overflow: hidden;
    transition: 31ms cubic-bezier(.5, .7, .4, 1);
    margin: 30px auto;
}

.services-see-more-btn:before {
    content: attr(alt);
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    inset: 0;
    font-size: 15px;
    font-weight: bold;
    color: white;
    letter-spacing: 4px;
    opacity: 1;
}

.services-see-more-btn:active {
    box-shadow: none;
    transform: translateY(7px);
    transition: 35ms cubic-bezier(.5, .7, .4, 1);
}

.services-see-more-btn:hover:before {
    transition: all .0s;
    transform: translateY(100%);
    opacity: 0;
}

.services-see-more-btn i {
    color: white;
    font-size: 15px;
    font-weight: bold;
    letter-spacing: 4px;
    font-style: normal;
    transition: all 2s ease;
    transform: translateY(-20px);
    opacity: 0;
}

.services-see-more-btn:hover i {
    transition: all .2s ease;
    transform: translateY(0px);
    opacity: 1;
}

.services-see-more-btn:hover i:nth-child(1) {
    transition-delay: 0.045s;
}

.services-see-more-btn:hover i:nth-child(2) {
    transition-delay: calc(0.045s * 2);
}

.services-see-more-btn:hover i:nth-child(3) {
    transition-delay: calc(0.045s * 3);
}

.services-see-more-btn:hover i:nth-child(4) {
    transition-delay: calc(0.045s * 4);
}

.services-see-more-btn:hover i:nth-child(5) {
    transition-delay: calc(0.045s * 5);
}

.services-see-more-btn:hover i:nth-child(6) {
    transition-delay: calc(0.045s * 6);
}

.services-see-more-btn:hover i:nth-child(7) {
    transition-delay: calc(0.045s * 7);
}

.services-see-more-btn:hover i:nth-child(8) {
    transition-delay: calc(0.045s * 8);
} 