﻿.home-service {
    position: relative;
    background-image: url(../../../Design/img/bg-tienich.png);
    background-repeat: no-repeat;
    background-size: cover;
    padding-bottom: 72px;
    padding-top: 69px;
}

.home-service-container {
    position: relative;
}

.home-service .grid.wide {
    max-width: 1280px !important;
}

.grid.wide.bottom {
    position: relative;
}

.home-service-list {
    display: grid;
    grid-auto-rows: minmax(min-content,max-content);
    grid-template-columns: repeat(5,minmax(0,1fr));
    column-gap: 20px;
    row-gap: 25px;
    margin-top: 55px;
}

.home-service-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* justify-content: center; */
}

.home-service-item .service-img {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 130px;
    height: 130px;
    background-color: var(--default-color-2);
    border-radius: 50%;
    border: 3px solid #fff;
}



.home-service-item .service-img img {
}

.home-service-item .service-title {
    font-family: 'interB';
    margin: 0;
    text-align: center;
    margin-top: 25px;
    color: #FFFF;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: capitalize;
}

.home-service-item .service-descript {
    font-size: 16px;
    color: #666666;
    text-align: center;
    display: block;
    margin-top: 7px;
    display: none;
}


/*RS*/
@media(max-width:1023px) {
}

@media(min-width:740px) and (max-width:1023px) {

    .home-service-list {
        
        grid-template-columns: repeat(3,minmax(0,1fr));
    
    }
}

@media(max-width:739px) {
    .home-service-list {
        grid-template-columns: repeat(2,minmax(0,1fr));
    }

    .home-service-item .service-title {
        margin-top: 16px;
        font-size: 18px;
    }

    .home-service-item .service-img {
        width: 120px;
        height: 120px;
    }

    .home-service-item .service-img img {
        width: 68px;
    }

  
}
