.fb-share-button{
  position:fixed !important;
  top:50%;
  z-index:10;
}
#t4-topbar{
  overflow:hidden;
}
#mxcpr{
  display:none;
}
.t4-footer .container{
  padding-top:10px;
  padding-bottom:10px;
}
.logo-img{
  max-width:83px;
}
form.form-horizontal .control-group .controls {
    margin-left: 20px;
    display: inline-flex;
    align-items: center;
}

.acm-hero .hero-content h2,
.acm-hero .hero-content{
  color:#295856;
}
.company-profile {
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            overflow: hidden;
            margin-bottom: 40px;
        }
        
        .intro-section {
            padding: 40px;
            text-align: center;
            background-color: white;
        }
        
        .intro-text {
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 30px;
            color: var(--dark);
        }
        
        .products-section {
            background-color: var(--light);
            padding: 40px;
        }
        
        .section-title {
            text-align: center;
            color: #2c3e50;
            margin-bottom: 40px;
            position: relative;
        }
        
        .section-title:after {
            content: "";
            display: block;
            width: 80px;
            height: 3px;
            background: #e74c3c;
            margin: 15px auto;
        }
        
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 30px;
        }
        
        .product-card {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }
        
        .product-card:hover {
            transform: translateY(-5px);
        }
        
        .product-card .product-image {
            height: 180px;
            background-size: cover;
            background-position: center;
        }
        
        .product-content {
            padding: 20px;
            text-align: center;
        }
        
        .product-icon {
            font-size: 2rem;
            color: #3498db;
            margin-bottom: 15px;
        }
        
        .product-title {
            font-weight: bold;
            margin-bottom: 10px;
            color: #2c3e50;
        }
        
        
        @media (max-width: 768px) {
          #t4-header{
            height:150px;
          }           
            .products-grid {
                grid-template-columns: 1fr;
            }
        }