    .company-gallery-filters {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
    font-family: "Helvetica Neue LT Std Roman", Sans-serif;
    flex-direction: row;
    flex-wrap: wrap;
    }

    .gallery-filter-tab {
    background-color: transparent;
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-radius: 1em;
    padding: 5px 10px 7px 10px;
    color: #000000;
    border-color: #000000;
    font-size: 15px;
    line-height: 1;
    cursor: pointer;
    transition-duration: .3s;
    transition-property: background-color, color, border-color;
    }

    .gallery-filter-tab:hover, .gallery-filter-tab.active {
    background-color: #F35F53;
    color: #fff;
    border-color: #F35F53;
    }

    .company-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    }

    .company-category-group {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    width: 100%;
    flex-direction: column;
    align-content: flex-start;
    }
        
    .company-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 2%;
    width: 100%;
    flex-direction: row;
    align-content: flex-start;
    }

    .company-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 10.75%;
    }
        
    .company-item p {
    color: black;
    font-size: 10px;
    line-height: 12px;
    }
        
    .company-gallery-heading {
    font-size: 24px;
    font-weight: normal;
    line-height: 26px;
    text-align: left;
    color: black;
    margin: 0;
    border-bottom: 1px black solid;
    padding: 12px 0;
    }

    .company-item img {
    width: 100%;
    height: auto;
    padding: 25px 25px 15px 25px;
    transition-duration: .3s;
    transition-property: transform;
    }
        
    .company-item:hover img {
    transform: scale(1.1);
    }

    .hidden {
    display: none;
    }
      
    .company-tooltip-wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    max-width: 360px;
	}

    .company-tooltip-wrapper img {
    width: 30px;
    height: auto;
    }

    .mapael .map {
    position: relative;
    }

    .mapael .mapTooltip {
    position: absolute;
    background-color: #fff;
    moz-opacity: 1;
    opacity: 0.9;
    border-radius: 5px;
    padding: 5px 10px;
    z-index: 1000;
    max-width: 380px;
    display: none;
    color: black;
    }
    
    .mapael .mapTooltip strong {
    font-family: "Helvetica Neue LT Std Roman", Sans-serif;
    font-size: 14px;
    }
    
    .company-tooltip-item {
    display: flex;
    flex-direction: column;
    font-size: 8px;
    align-items: center;
	padding: 15px;
	}

	.company-tooltip-item span {
    display: none;
	}



@media (max-width: 767px) {
     .company-item {
        width: 22%;
        margin-bottom: 10px;
    }

    .company-wrapper {
    gap: 4%;
    }
	
	.company-item img {
    padding: 15px 15px 15px 15px !important;
	}

    
}