/* Header Section
--------------------------------*/
#header #logo h1 {
    font-size: 30px;
    margin: 0;
    padding: 0;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
}
/* Services Section
--------------------------------*/
#product {
    padding: 40px 0;
    }

#product .box {
    padding: 20px;
    box-shadow: 10px 10px 15px rgba(73, 78, 92, 0.1);
    background: #fff;
    transition: 0.4s;
    height: 100%;
    }
    
#product .box:hover {
    box-shadow: 0px 0px 30px rgba(73, 78, 92, 0.15);
    transform: translateY(-10px);
    -webkit-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
    }
    
#product .box .icon {
    margin-left: auto;
    margin-right: auto;
    display: block    ;

    }
    
#product .box .icon i {
    color: #444;
    font-size: 64px;
    transition: 0.5s;
    line-height: 0;
    margin-top: 34px;
    }
    
#product .box .icon i:before {
    background: #0c2e8a;
    background: linear-gradient(45deg, #50d8af 0%, #a3ebd5 100%);
    background-clip: border-box;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    }
    
#product .box h1 {
    text-align: center;
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 22px;
    }
    
#product .box h1 a {
    color: #444;
    }
    
#product .box p {
    font-size: 14px;
    margin-bottom: 0;
    line-height: 24px;
    }
    
@media (max-width: 767px) {
#product .box .box {
    margin-bottom: 20px;
    }
#product .box .icon {
    float: none;
    text-align: center;
    padding-bottom: 15px;
        }
#product .box h4, #product .box p {
    margin-left: 0;
    text-align: center;
    }
}