.services_overview { position: relative; width: 100%; overflow: hidden; }
.services_overview .container { width: 100%; max-width: 1262px; }
.services_overview .sec_title { position: relative; width: 100%; text-align: center; margin-bottom: 60px; }
.services_overview .sec_title h3 { margin-bottom: 10px; }
.services_overview .sec_title h2 { color: var(--themedark); }

.services_overview .list_row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 46px 0;
}

.services_overview .service_col {
    width: 20%;
    padding: 0 60px;
    position: relative;
}

.services_overview .service_col:not(:nth-child(5n)):after {
    content: "";
    position: absolute;
    right: 0;
    top: 18px;
    width: 3px;
    height: 108px;
    background: #CFB389;
    border-radius: 2px;
}

.services_overview .service_card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 190px;
}

.services_overview .iconbox {
    position: relative;
    display: flex;
    width: 58px;
    height: 58px;
    margin-bottom: 16px;
    justify-content: center;
}

.services_overview .service_card h4 {
    min-height: 45px;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 300;
    color: var(--themedark);
    margin-bottom: 18px;
}

.services_overview .service_card .btnbox {
    display: flex;
    width: 100%;
    justify-content: center;
}

.services_overview .service_card a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 35px;
    padding: 0 14px;
    background: var(--themegreen);
    color: var(--white);
    border-radius: 16px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
}

.services_overview .service_card a:hover {
    transform: scale(1.1);
}

.services_overview .service_col:nth-child(11) {
    padding: 0;
}

.services_overview .service_col:nth-child(11):after { display: none; }

.services_overview .service_col:nth-child(11) h4 { min-height: auto; }

@media (min-width: 992px) and (max-width: 1200px) {
    .services_overview .service_col { width: 25%; }
    .services_overview .service_col:nth-child(4n):after { display: none; }
    .services_overview .service_col:after {
        content: "";
        position: absolute;
        right: 0;
        top: 18px;
        width: 3px;
        height: 108px;
        background: #CFB389;
        border-radius: 2px;
    }
    .services_overview .service_col:nth-child(11) h4 { min-height: 45px; }
}

@media (min-width: 768px) and (max-width: 991px) {
    .services_overview .service_col { width: 33.3333%; }
    .services_overview .service_col:nth-child(3n):after { display: none; }
    .services_overview .service_col:after {
        content: "";
        position: absolute;
        right: 0;
        top: 18px;
        width: 3px;
        height: 108px;
        background: #CFB389;
        border-radius: 2px;
    }
    .services_overview .service_col:nth-child(11) h4 { min-height: 45px; }
}

@media (max-width: 767px) {
    .services_overview .sec_title { margin-bottom: 40px; }
    .services_overview .service_col {
        width: 50%;
        padding: 0 12px;
    }
    .services_overview .service_col:after { display: none !important; }
    .services_overview .list_row { gap: 28px 0; }
}

@media (max-width: 575px) {
    
}
