/* GENERAL */
.hideDesktop{
    display: none;
}
.hideMobile{
    display: block;
}
h2{
    margin: 0;
    font-size: 40px;
    color: #1c1c1c;
}
h3{
    margin: 0;
    font-size: 40px;
    color: #1c1c1c;
}
h4{
    margin: 0;
    font-size: 40px;
}
h5{
    margin: 0;
    font-size: 25px;
    color: #1c1c1c;
}
p{
    font-size: 18px;
    color: #1c1c1c;
}

.italic{
    font-style: italic;
    font-size: 15px;
    text-align: center;
}
  
/* NAVBAR AND MENU */
nav{
    background: #1c1c1c;
    height: 80px;
    padding: 10px 0;
}
nav .brand-logo img{
    width: 55px;
    margin-top: 5px;
}
nav ul li a:hover{
   color: #38a2ff;
}

/* HOME SECTION */
#headerSection{
    margin-top: 100px;
}
#headerSection img{
    border-radius: 2px;
    width: 100%;
}

/* ABOUT SECTION */
#aboutSection{
    margin: 80px 0 0;
    background: #f2f2f2;
    padding: 100px 0 70px;
}

/* CUSTOMER SECTION */
#customersSection{
    padding: 70px 0 20px;
}
#customersSection h5{
    margin-bottom: 40px;
}
#customersSection img{
    width: 100%;
    margin-bottom: 20px;
    filter: grayscale(100%);
}
#customersSection img:hover{
    cursor:progress;
    filter: grayscale(0);
}

/* SERVICES SECTION */
#servicesSection{
    padding: 0;
    background-color: #1c1c1c;
    margin: 0 auto;
}
#servicesSection img{
    width: 100%;
    margin: 8px 0 0;
}
#servicesSection h4{
    color: #ffffff;
    margin-top: 11%;
}
#servicesSection p{
    color: #ffffff;
}

/* FOOTER */
footer{
    background-color: #1c1c1c;
    margin: 0;
    padding: 25px 0 5px;
    color: #ffffff;
}
/* RESPONSIVE */
@media (max-width: 768px) {
    /* GENERAL */
    .hideDesktop{
        display: block;
    }
    .hideMobile{
        display: none;
    }
    h2{
        font-size: 27px;
        margin-top: 20px;
    }
    h3{
        font-size: 27px;
        margin-top: 20px;
    }
    p{
        font-size: 16px;
    }
    /* NAVBAR AND MENU */   
    nav .brand-logo img{
        width: 52px;
        margin-top: 4px;
    }
    /* HOME SECTION */
    #headerSection{
        margin-top: 30px;
    }
    
    #headerSection img{
        margin-top: 20px;
    }
    /* ABOUT SECTION */
    #aboutSection{
        margin: 30px 0;
        background: #f2f2f2;
        padding: 50px 0 40px;
    }
    /* CUSTOMER SECTION*/
    #customersSection{
        padding: 40px 0 10px;
    }

    /* SERVICES SECTION */
    #servicesSection{
        padding: 0;
        background-color: #1c1c1c;
    }
}

@media (min-width: 1441px) {
    #servicesSection h4{
        color: #ffffff;
        margin-top: 15%;
    }
}