.top-section {
    background-color: var(--Black-Color);
    position: relative;
}

.top-section p {
    color: var(--White-Color);
}

.blue-box {
    background: var(--Dark-Gradient, linear-gradient(180deg, #00243A 0%, #00589B 100%));
    height: 411px;
    width: 446px;
    position: absolute;
    border-radius: 0 0 0 100px;
    top: 0;
    right: 0;
    z-index: 1;
}

.blue-box2 {
    background: var(--Dark-Gradient, linear-gradient(180deg, #00243A 0%, #00589B 100%));
    width: 500px;
    border-radius: 0 100px 0 0;
    height: 203px;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
}

.container {
    padding: 100px 50px;
}

/* service_9_css
---------------------------------------------------------- */
.service_9 {
    padding: 0 0 150px;
    background-color: var(--Black-Color);
    position: relative;
}
.service_9 .services-flex {
    padding: 0 0 75px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    justify-self: center;
    gap: 30px;
    width: 79%;
}
.service_9 .services-top-title {
    text-align: center;
}
.top-content {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 25px;
    width: 1220px;
    flex-direction: column;
    padding: 0 50px;
    align-content: flex-start;
}
.service_9 .services-holder {
    display: flex;
    justify-content: center;
    width: min(33%, 352px);
    height: min(100vw, 419px);
    border-radius: 86.522px;
    text-align: center;
    align-items: flex-end;
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    position: relative;
}

.service_9 .services-holder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, var(--Black-Color) 15%, transparent 50%);
    border-radius: 86.522px;
    pointer-events: none;
}

.loaded .service_9 .services-holder.one {
    background-image: url('../images/service-image-4.webp');
}
.loaded .service_9 .services-holder.two {
    background-image: url('../images/service-image-3.webp');
}
.loaded .service_9 .services-holder.three {
    background-image: url('../images/service-image-1.webp');
}
.loaded .service_9 .services-holder.four {
    background-image: url('../images/service-image-5.webp');
}
.loaded .service_9 .services-holder.five {
    background-image: url('../images/service-image-8.webp');
}
.loaded .service_9 .services-holder.six {
    background-image: url('../images/service-image-2.webp');
}
.loaded .service_9 .services-holder.seven {
    background-image: url('../images/service-image-7.webp');
}
.loaded .service_9 .services-holder.eight {
    background-image: url('../images/service-image-6.webp');
}
.loaded .service_9 .services-holder.nine {
    background-image: url('../images/service-image-9.webp');
}
.loaded .service_9 .services-holder.ten {
    background-image: url('../images/service-image-13.webp');
}
.loaded .service_9 .services-holder.eleven {
    background-image: url('../images/service-image-10.webp');
}
.service_9 .services-box-content h3 {
    color: var(--White, #FFF);
    text-align: center;
    font-feature-settings: 'liga' off, 'clig' off;
    position: relative;
    z-index: 2;
    
    /* Desktop/Heading 4 */
    font-family: Raleway;
    font-size: 25px;
    font-style: normal;
    font-weight: 600;
    line-height: 138%; /* 34.5px */
    letter-spacing: 1.15px;
    text-transform: uppercase;
}
.service_9 .services-title {
    width: 100%;
    margin-bottom: 20px;
}
.service_9 .services-top-title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: min(95%, 1315px);
    margin: 0 auto;
}
.service_9 .services-top-title h2 {
    font-family: var(--font-family-main);
    font-size: var(--h1-font-size);
    color: var(--White-Color);
}
.service_9 .services-top-title p {
    margin: 0;
    color: var(--White-Color);
}
.service_9 .services-buttons {
    display: flex;
    justify-content: center;
    gap: 25px;
}
.service_9 .services-holder:hover {
    text-decoration: none;
}
/* RESPONSIVE
-----------------------------------------------*/
@media (max-width: 1600px) {
    .container {
        padding: 100px 50px clamp(0px, 3vw, 35px);
    }
    .top-content {
        width: 1050px;
    }
    .blue-box {
        display: none;
    }
    .blue-box2 {
        display: none;
    }
}
@media (max-width: 1200px) {
    .service_9 {
        padding: 50px 0;
    }
    .service_9 a.services-holder {
        width: min(49%, 635px);
    }
}
@media (max-width: 767px) {
    .service_9 .services-flex {
        width: 60%;
    }
    .service_9 a.services-holder {
        width: min(100%, 635px);
        margin: 0 auto;
    }
}
@media all and (max-width: 600px) {
    .top-content {
        padding: 0;
    }
    .service_9 .services-buttons {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 0;
    }
    .service_9 .services-box-content h3 {
        font-size: clamp(21px, 5vw, 25px);
    }
    /*.service_9 .services-flex {*/
    /*    padding: 50px 0;*/
    /*}*/
}
@media (max-width: 500px) {
    .service_9 .services-flex {
        width: 80%;
    }
}
/* end of service_9 */