* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services {
    padding: 1rem 0;
    background-color: #fff;
}

.icon img {
    width: 70%;
}

.services .icon-box {
    padding: 60px 30px;
    transition: all ease-in-out 0.3s;
    background: #fefefe;
    box-shadow: 0px 5px 90px 0px rgba(110, 123, 131, 0.1);
    border-radius: 18px;
    border-bottom: 5px solid #fff;
}

.services .icon-box .icon {
    width: 64px;
    height: 64px;
    background: #009961;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: ease-in-out 0.3s;
    color: #fff;
}

.services .icon-box .icon i {
    font-size: 28px;
}

.services .icon-box h4 {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 24px;
}

.icon-box h4 a {
    text-decoration: none;
}

.services .icon-box h4 a {
    color: #282828;
    transition: ease-in-out 0.3s;
}

.services .icon-box p {
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;
}

.services .icon-box:hover {
    transform: translateY(-10px);
    border-color: #009961;
}

.services .icon-box:hover h4 a {
    color: #009961;
}

.section-title p {
    padding: 1rem 0;
}

.section-title h2 {
    padding: 2rem 0;
}

.section-title h2::after {
    content: "";
    position: relative;
    display: block;
    width: 50px;
    height: 3px;
    background: #009961;
    top: 0.5rem;
    left: 0;
}

/* ===================
@media 
================*/


@media screen and (max-width: 1000px) {
    html {
        font-size: 0.8rem;
    }

    .navbar-brand img {
        width: 45%;
    }

    .foot-logo img {
        width: 25%;
    }

}

@media screen and (max-width: 770px) {

    html {
        font-size: 0.7rem;
    }

    .foot-logo img {
        width: 30%;
    }

}

@media screen and (max-width: 550px) {
    html {
        font-size: 0.7rem;
    }
    
    .about-company .d-flex{
        display: block !important;
    }
}