.services {

}

.services__item {
    text-decoration: none;
    background: #E5F9FF;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    border-radius: 15px;
    max-height: 80px;
}

.services__item:hover {
    background: #ececec;
    text-decoration: none;
}

.services__item:focus,
.services__item:active,
.services__item:visited {
    text-decoration: none;
    color: #0C1737;
}

.services__img-wrap {
    background: #1B6890;
    padding: 12px;
    border-radius: 15px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    min-width: 45px;
}

.services__item img {
    width: 100%;
    height: auto;
}

.services__item-title {
    color: #0C1737;
    font-weight: 600;
    padding: 10px;
    font-size: 14px;
}

@media (min-width: 768px) {
    .services__item-title {
        font-size: 17px;
    }

    .services__img-wrap {
        padding: 12px;
        width: 50px;
        height: 50px;
    }
}

@media (min-width: 1024px) {
    .services {
        display: flex;
        justify-content: space-between;
    }
    
    .services__item {
        width: 31%;
    }
    
    .services__item img {

    }
    
    .services__item-title {
        font-size: 14px;
        width: 80%;
    }

    .services__img-wrap {
        padding: 12px;
        width: 65px;
        height: 65px;
    }
}

@media (min-width: 1200px) {
    .services__item-title {
        font-size: 18px;
    }

    .services__img-wrap {
        padding: 12px;
        width: 80px;
        height: 80px;
    }
}