.core_service_block {
    margin: 100px auto;
}
.core_service_block.bg_color {
    background: var(--csb-bg-color);
    position: relative;
}
.core_service_block.bg_color::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-image: var(--csb-bg-overlay-img);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.core_service_block .container {
    z-index: 99;
}
.core_service_block .parah a {
    text-decoration: none;
}

/*.services_wrapper {
    margin: 150px 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    justify-content: space-between;
}
.service_item a {
    font-family: 'Moderat';
    font-size: 31px;
    line-height: 40px;
    color: var(--text-color);
    font-weight: 400;
}*/

.services_wrapper {
    margin: 150px 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    justify-content: space-between;
}
.service_item a {
    position: relative;
    display: inline-block;
    font-family: 'Moderat';
    font-size: 28px; /*31px*/
    line-height: 40px;
    color: var(--text-color);
    font-weight: 400;
    text-decoration: none;
    transition: color 0.3s ease;
}
.service_item a::before {
    content: "↗";
    position: absolute;
    top: -28px;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    font-size: 18px;
    line-height: 1;
    color: #00bfa5;
    opacity: 0;
    transition: all 0.3s ease;
}
.service_item a:hover {
    color: #9d9d9c;
}
.service_item a:hover::before {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

@media (max-width: 768px) {
    .services_wrapper {
        margin: 60px 40px;
    }
}