/*------------ Start TT-Brandlogo ---------------*/
.brands {
	float: left;
	margin: 0 0 60px;
	overflow: hidden;
	position: relative;
	width: 100%;
}
.brands .tt-title {
    display: none;
}
.brands #ttbrandlogo-carousel {
    float: left;
    width: 100%;
    margin: 0;
    position: relative;
}
.brands #ttbrandlogo-carousel li {
	padding: 15px;
}
.brands #ttbrandlogo-carousel li.brand-image img {
    max-width: 100%;
    transition: all 500ms ease 0s;
    -webkit-transition: all 500ms ease 0s;
    -moz-transition: all 500ms ease 0s;
    -o-transition: all 500ms ease 0s;
    -ms-transition: all 500ms ease 0s;
    width: auto;
    margin: 0 auto;
}
.brands #ttbrandlogo-carousel li.brand-image:hover img {
	-webkit-animation-name: hvr-wobble-horizontal;
	animation-name: hvr-wobble-horizontal;
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-timing-function: ease-in-out;
	animation-timing-function: ease-in-out;
	-webkit-animation-iteration-count: 1;
	animation-iteration-count: 1;
}
@keyframes hvr-wobble-horizontal{
	16.65% {	
    	-webkit-transform: translateX(8px);
    	transform: translateX(8px);	
	}
	33.3% {
    	-webkit-transform: translateX(-6px);
    	transform: translateX(-6px);
	}
	49.95% {
    	-webkit-transform: translateX(4px);
    	transform: translateX(4px);
	}
	66.6% {
    	-webkit-transform: translateX(-2px);
    	transform: translateX(-2px);
	}
	83.25% {
    	-webkit-transform: translateX(1px);
    	transform: translateX(1px);
	}	
	100% {
    	-webkit-transform: translateX(0);
    	transform: translateX(0);
	}
}

.brands #ttbrandlogo-carousel .owl-nav button {
    position: absolute;
	height:32px;
	width:32px;
	top:0;
	bottom:0;
	margin: auto 0;
	border-radius: 50px;
	-moz-border-radius: 50px;
	-webkit-border-radius: 50px;
	-khtml-border-radius: 50px;
	border: 1px solid #d5d5d5;
	transition: all 0.4s ease 0s;
	-moz-transition: all 0.4s ease 0s;
	-webkit-transition: all 0.4s ease 0s;
	-khtml-transition: all 0.4s ease 0s;
	-o-transition: all 0.4s ease 0s;
	background:var(--body-background-color);
}
.brands #ttbrandlogo-carousel .owl-nav button:hover,.brands #ttbrandlogo-carousel .owl-nav button:active,.brands #ttbrandlogo-carousel .owl-nav button:focus{
	background:var(--secondary-bg-color);
	border-color:var(--secondary-bg-color);
}
.brands #ttbrandlogo-carousel .owl-nav button.owl-prev {
    left: 0;
    right: auto;
}
.brands #ttbrandlogo-carousel .owl-nav button.owl-next {
    right: 0;
    left: auto;
}
.brands #ttbrandlogo-carousel .owl-nav button i {
    line-height: 30px;
	font-size:20px;
    width: 30px;
    height: 30px;
	color:#666;
	transform: none;
	-webkit-transform: none;
	-moz-transform: none;
	-o-transform: none;
	-ms-transform: none;
	transition: all 0.4s ease 0s;
	-moz-transition: all 0.4s ease 0s;
	-webkit-transition: all 0.4s ease 0s;
	-khtml-transition: all 0.4s ease 0s;
	-o-transition: all 0.4s ease 0s;
}
.brands #ttbrandlogo-carousel .owl-nav button:hover i,
.brands #ttbrandlogo-carousel .owl-nav button:active i,
.brands #ttbrandlogo-carousel .owl-nav button:focus i {
	color:var(--primary-text-color);
}
.brands #ttbrandlogo-carousel .owl-nav button.disabled:hover i, 
.brands #ttbrandlogo-carousel .owl-nav button.disabled:focus i, 
.brands #ttbrandlogo-carousel .owl-nav button.disabled:active i{
	color:var(--primary-bg-color);
}
.brands #ttbrandlogo-carousel .owl-nav button.disabled{
	background:var(--body-background-color) !important;
	border-color:#d5d5d5 !important;
} 
@media (max-width: 1200px) {
	.brands {
		margin: 0 0 50px;
	}
}
@media (max-width: 991px) {
	.brands {
		margin: 0 0 40px;
	}
}
@media (max-width: 543px) {
	.brands {
		margin: 0 0 30px;
	}
	.brands #ttbrandlogo-carousel li {
		padding: 20px 0;
	}
}
/*------------ End TT-Brandlogo ---------------*/