﻿/*-----------SERVICE BOX-----------*/

.services-box {
    background-color: white;
    display: flex;
    flex-direction: row;
    color: #323232;
    border-bottom: 7px solid white;
}

.service-item {
    width: 33%;
    text-align: center;
    align-items: center;
    justify-content: center;
    display: flex;
    flex-direction: row;
    margin-top: 2%;
    margin-bottom: 2%;
    border-right: 1px solid #86C0CF;
}

.service-item img {
    width: 40%;
}

.service-item div {
    width: 60%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

.service-item p {
    font-size: 12px;
}

.service-item h3 {
    font-weight: 500;
    font-size: 16px;
}

.services-box .service-item:last-child {
    border-right: none;
}

div.services-box > div > i {
    color: #86C0CF;
    font-size: 60px;
}

.service-item img {
    height: 100px;
}

.service-item h3 {
    color: #86C0CF;
}

.service-item p {
    max-width: 80%;
}

/* Responsivity */

@media (max-width: 1219.98px) {

    .service-item img {
        height: 90px;
        width: 35%;
    }

    .service-item p {
        max-width: 95%;
    }
}


@media (max-width: 919.98px) {

    .service-item img {
        height: 65px;
        width: 35%;
    }

    .service-item h3 {
        font-size: 14px;
    }

    service-item p {
        font-size: 10px;
    }
}

@media (max-width: 767.98px) {

    .slick-dotted.slick-slider {
        margin-bottom: 15px !important;
    }

    .service-item p {
        font-size: 10px;
    }

    .service-item h3 {
        font-size: 13px;
    }

    .service-item img {
        height: 50px;
    }
}

@media (max-width: 565.98px) {

    .service-item {
        border-right: none;
        flex-direction: column;
    }

        .service-item div {
            margin-top: 8px;
            width: 80%;
        }

    .service-item h3, .service-item p {
        text-align: center;
    }
}

@media (max-width: 419.98px) {
    .service-item h3 {
        font-size: 12px;
    }

    .service-item p {
        font-size: 9px;
    }

    .service-item img {
        width: 45%;
    }
}