.slick-list:hover {
    overflow: initial;
}

.services .services-wrapper {
    padding: 5rem 0 0 0;
    background: #F1F1F1;
}
.services .services-wrapper .container {
    margin: 0;
    padding: 0;
}

.services .services-wrapper .container #service-banner {
    width: 95%;
}

.services .slider.slider-nav .card {
    margin-left: 30px;
}

.services .slider.slider-nav .card ul {
    list-style: initial;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-left: 15px;
    margin-bottom: 15px;
    color: var(--gray);
}

.services .slider.slider-nav .card:hover{
    transform: scale(1.1);
}

.services .card {
    min-height: 400px;
    min-width: 250px;
}

.services .card .card-heading {
    display: flex;
}

.services .card .card-heading img {
    height: 25px;
    margin-right: 10px;
}

.services .card .card-heading h5 {
    font-size: var(--font-size-1);
}

.services .slide-container {
    width: 100%;
    overflow: hidden;
    padding: 40px 0;
    position: relative;
}

.services #prev-btn, .services #next-btn{
    width: 40px;
    height: 40px;
    background: var(--accent);
    border-radius: 100%;
    color: white;
    position: absolute;
    top: 50%;
    margin-top: -40px;
    z-index: 100;
}

.services #prev-btn {
    left: 20px;
}

.services #next-btn {
    right: 20px;
}

.background-services {
    background-image: url("../../assets/img/services/banner-mobile.png");
    height: 70vh;
}

@media only screen and (min-width : 320px) {}

@media only screen and (min-width : 480px) {}

@media only screen and (min-width : 768px) {
    .background-services {
        height: 80vh;
    }
}

@media only screen and (min-width : 992px) {
    .background-services {
        background-image: url("../../assets/img/services/banner-desktop.png");
        height: 50vh;
    }
    .services .services-wrapper .container {
        width: 100%;
        padding-right: 15px;
        padding-left: 15px;
        margin-right: auto;
        margin-left: auto;
    }

    .services .services-wrapper .container #service-banner {
        width: 100%;
    }
}

@media only screen and (min-width : 1200px) {
    .background-services {
        height: 75vh;
    }
}
