

.services {
    background-color:#f5f5f5; 
}



.service__icon {
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 90px;
    /*border: 2px solid #03409a;*/
    border-radius: 50%;
}

.service__icon svg {
    height: 35px;
}

.service__content {
    flex:1 ;
}

.service h3 {
    margin-bottom: 0;
}

@media screen and (max-width: 749px) {
    .service {
        text-align: center; 
    }
    .service__icon {
        margin:0 auto;
    }
}

@media screen and (min-width: 750px) {
    .service {
        display: flex; 
        align-items: center;
    }
    .service__icon {
        margin-right: 2rem;
    }
}

