/* @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap'); */
/* 
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
} */

.services{
    background-color: orange;
    background: url("../img/our-services-bg.jpg") no-repeat center center fixed;
    
    background-size: cover;
    position:relative;
}


.cont-services {
    width: 100%;
    height: 100%;
    padding: 0px 1%;
}

.cont-h1-services {
    text-align: center;
    padding:0 0 20px;
    font-weight: 700;
}


.row-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap: 30px;
}

.service {
    text-align: center;
    padding: 15px 5px;
    border: 2px solid orange;
    border-radius: 15px;
    font-size: 14px;
    cursor: pointer;
    background: whitesmoke;
    transition: all 0.3s;
}


.service:hover {
    background: #01a0e1;
    color: #fff;
    transform: scale(1.05);
    box-shadow: 5px 4px 8px #f36523;
}


.service h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 8px;
}

