
 .services-section-page {
    .services-container {
        padding-top: 183px;
    }
 }

 @media (max-width: 950px) {
    .services-section-page {
        .services-container {
            padding-top: 80px;
        }
    }
 }
 
 
 .services {
    width: 100%;
    display: flex;
    justify-content: center;
    background: #171E1B;
    min-height: 740px;
 }

  @media (max-width: 750px) {
    .services {
        padding-top: 0;
    }
}


 .slider-controls-mobile {
    display: none;
    flex-direction: row;
 }

@media (max-width: 750px) {
    .slider-controls-mobile {
        display: flex;
        margin-top: 45px;
        align-items: center;
        justify-content: center;
        max-width: 100%;
        gap: 16px;
        width: 100%;
    }
 }

 .services-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(180deg, #131816 0%, rgba(19, 24, 22, 0) 32.72%);
    padding-top: 120px;
    padding-left: 25px;

        @media (max-width: 750px) {
        padding-top: 50px;
    }

    .services-header {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-end;
        max-width: 1217px;  
        width: 100%;
    }

    @media (max-width: 1220px) {
        .services-header {
            max-width: 100%;
            width: 100%;    
            padding: 25px;
        }
    }

    @media (max-width: 750px) {
        .services-header {
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }
    }

    .services-title {
        font-size: 36px;
        font-weight: 600;
        line-height: 44px;
        color: #fff;

        mark {
            background: linear-gradient(180deg, #16FF4A 0%, #16FF4A 100%);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
    }   

    @media (max-width: 750px) {
        .services-title {
            font-size: 24px;
            line-height: 36px;
            text-align: center;
        }
    }

    .slider-controls {
        display: flex;
        flex-direction: row;
        gap: 16px;
    }

    @media (max-width: 750px) {
        .slider-controls {
            display: none;
        }
    }

    .slider-control-button {
        background-color: #16FF4A;
        border: none;
        height: 40px;
        width: 40px;
        border-radius: 100%;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition:  0.3s ease;

        img {
            /* width: 24px;
            height: 24px; */
        }
    }

    .slider-control-button:hover, .slider-control-button:disabled {
        background: #11912d;
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }
 }


 .services-content {
    margin-top: 71px;
    position: relative;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    width: 100%;
    justify-content: flex-start;
 }

 .services-list {
    display: flex;
    gap: 16px;
    position: absolute;
    align-self: flex-end;
    list-style-type: none;
    width: 100%;
    padding-left: 50px;


    .services-item-wrapper {
        max-width: 281px;
        width: 100%;
    }


    .services-item {
        display: flex;
        flex-direction: row;
        gap: 16px;
        max-width: 381px;
        min-height: 435px;
        border-radius: 16px;
        position: relative;
        transition: 0.3s ease;
        

        img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            position: absolute;
            border-radius: 16px;
            top: 0;
            left: 0;
        }
    }

   

    .services-item-content {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-end;
        position: relative;
        z-index: 1;
        background: #0000004D;
        padding: 24px;
        border-radius: 16px;    
        width: 100%;
        transition: 0.3s ease;
        overflow: hidden;

        .services-item-title {
            font-size: 28px;
            font-weight: 600;
            line-height: 36px;
            color: #fff;
            max-width: 230px;
            transition: 0.3s ease;
        }

        .services-item-text {
            font-size: 18px;
            font-weight: 400;
            line-height: 27px;
            color: #fff;
            max-height: 2px;
            margin-top: 30px;
            overflow: hidden;
            transition: .5s ease;
            opacity: 0;
        }
    }

    /* make the image a little bit black */
     .services-item:hover {
        img {
            filter: brightness(0.5);
        }
        
        .services-item-text {
            max-height: 500px;
            opacity: 1;
        }
    }

  
 }

  @media (max-width: 1573px) {

    .services-list {
        padding-left: 0;
        max-width: 100%;
        width: 100%;
    }
}

    @media (max-width: 750px) {
     .services-list {
        position: relative;
        align-self: center;
        padding-left: 0;
    }
}


@media (max-width: 600px) {

    .services {
        min-height: auto;
        padding-left: 25px;
    }
}

@media (max-width: 400px) {

    .services {
        padding-left: 15px;
    }

    .services-container{
        padding-left: 0;
    }

    .services-list .services-item-wrapper {
        padding-left: 0;
    }

    .services-list .services-item {
        
    }
}





 .benefits {
    width: 100%;
    display: flex;
    justify-content: center;
    padding-bottom: 134px;

    .benefits-illustration {
        width:86.01px;
        height:  372px;
        align-self: flex-end;
    }

    @media (max-width: 1050px) {

        padding-bottom: 50px;

        .benefits-illustration {
            display: none;
        }
    }
 }


 .benefits-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1418px;
    width: 100%;
    padding-top: 120px;
 }

 @media (max-width: 1220px) {
    .benefits-container {
       max-width: 100%;
       width: 100%;
       padding-left: 25px;
       padding-right: 25px;
    }
 }

 @media (max-width: 950px) {
    .benefits-container {
        padding-top: 0px;
    }
 }

 .benefits-section-title {
    font-size: 56px;
    font-weight: 600;
    line-height: 68px;
    color: #fff;

    mark {
        background: linear-gradient(180deg, #16FF4A 0%, #16FF4A 100%);
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
 }

 @media (max-width: 950px) {
   .benefits .benefits-container .benefits-section-title {
        font-size: 24px;
        line-height: 36px;
        text-align: center;
        margin-top: 50px;
    }
 }

 .list-container {
    display: flex;
    flex-direction: row;
    gap: 27px;
    margin-top: 44px;
    max-width: 100%;
    width: 100%;
 }

 @media (max-width: 950px) {
    .list-container {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        max-width: 100%;
        width: 100%;
    }
 }

 .department-list-container {
    display: flex;
    flex-direction: column;
    gap: 27px;
    border: 1px solid #414141;
    padding: 56px;
    gap: 48px;
    border-radius: 16px;
    border: 1px 0px 0px 0px;
    opacity: 0px;

     @media (max-width: 950px) {
        padding: 24px;
        max-width: 100%;
        width: 100%;
    }

    .title {
        font-size: 22px;
        font-weight: 600;
        line-height: 30px;
        color: #fff;
    }

    .department-list {
        list-style-type: none;
        display: flex;
        flex-direction: column;
        gap: 16px;

        li {
            display: flex;
            flex-direction: row;
            gap: 16px;
            align-items: center;

            img {
                width: 37px;
                height: 37px;
            }

            span {
                font-size: 22px;
                font-weight: 600;
                line-height: 30px;
                color: #fff;
            }
        }
    }
 }


 .differences {
    width: 100%;
    display: flex;
    justify-content: center;
    padding-bottom: 134px;
 }

     @media (max-width: 950px) {
        .differences {
            padding-bottom: 50px;
        }
     }

 .differences-container {
    display: flex;
    flex-direction: column;
    max-width: 1217px;
    width: 100%;

    @media (max-width: 1220px) {
        max-width: 100%;
        width: 100%;
        padding-left: 25px;
        padding-right: 25px;
    }

    .differences-section-title {
        font-size: 36px;
        font-weight: 600;
        line-height: 46px;
        color: #fff;

        mark {
            background: linear-gradient(180deg, #16FF4A 0%, #16FF4A 100%);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
    }

    @media (max-width: 950px) {
        .differences-section-title {
            font-size: 24px;
            line-height: 36px;
            text-align: center;
            margin-top: 50px;
        }
    }

    .differences-list {
        display: flex;
        flex-direction: row;
        gap: 16px;
        margin-top: 84px;
        list-style-type: none;
        flex-wrap: wrap;

            @media (max-width: 1220px) {
                grid-template-columns: repeat(auto-fill, minmax(1fr, 1fr));
            }

        li {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 16px;
            padding: 24px;
            border-radius: 16px;
            opacity: 0px;
            background-color: #1F2724;
            height: 236px;
            min-width: 381px;

            @media (max-width: 1000px) {
                min-width: 100%;
            }

            span {
                font-size: 22px;
                font-weight: 600;
                line-height: 30px;
                color: #fff;
            }
        }
    }
 }