﻿/* -----------------------------------------
:: BACK TO TOP 
----------------------------------------- */
.cd-top {
	display: inline-block;
	height: 40px;
	width: 40px;
	position: fixed;
	bottom: 10px;
	right: 10px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
	overflow: hidden;
	text-indent: 100%;
	white-space: nowrap;
	background: url(../graphics/back-to-top-arrow.webp) no-repeat center 50%;
	visibility: hidden;
	opacity: 0;
	-webkit-transition: opacity .3s 0s, visibility 0s .3s;
	-moz-transition: opacity .3s 0s, visibility 0s .3s;
	transition: opacity .3s 0s, visibility 0s .3s;
}

.cd-top.cd-is-visible, .cd-top.cd-fade-out, .no-touch .cd-top:hover {
	-webkit-transition: opacity .3s 0s, visibility 0s 0s;
	-moz-transition: opacity .3s 0s, visibility 0s 0s;
	transition: opacity .3s 0s, visibility 0s 0s;
}

.cd-top.cd-is-visible {
	/* the button becomes visible */
  visibility: visible;
	opacity: .5;
}

.cd-top.cd-fade-out {
	/* if the user keeps scrolling down, the button is out of focus and becomes less visible */
	opacity: .5;
}

.no-touch .cd-top:hover {
	opacity: 1;
}

/* -----------------------------------------
:: BUTTONS 
----------------------------------------- */
@keyframes barberpole {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 10px 0px;
  }
}
/*theme btn*/
.theme-btn {
	padding: 3px;
	position: relative;
	margin: 0;
	width: auto;
	display: inline-block;
	color: #ffffff;
}

.theme-btn a {
	color: #ffffff;
	color: rgba(255,255,255,0.85);
	transition: all .3s ease;
}

.theme-btn a:hover {
	color: #ffffff;
	color: rgba(255,255,255,1.0);
}

.theme-btn-hover {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border-radius: 0px;
	box-sizing: border-box;
	opacity: 1;
	transition: opacity 0.3s ease;
}

.theme-btn-inner {
	background: rgba(208,62,42,1.0);
	padding: 10px 20px 10px 20px;
	position: relative;
	border-radius: 0px;
	box-sizing: border-box;
	border: 1px solid transparent;
	transition: all .3s ease;
}

.theme-btn-inner:hover {
	background: rgba(208,62,42,0.90);
	border: 1px solid transparent;
	box-shadow: 0px 0px #F6887A, 0px 0px #F6887A, 0px 0px #F6887A;
}

.theme-btn-arrow {
	width: 0;
	height: 0;
	border-top: 21px solid transparent;
	border-left: 0px solid rgba(0,0,0,0.2);
	border-bottom: 21px solid transparent;
	position: absolute;
	top: 0;
	left: 0px;
	opacity: 0;
	transition: all .3s ease;
	overflow: hidden;
}

.theme-btn-inner:hover .theme-btn-arrow {
	border-left: 20px solid rgba(0,0,0,0.5);
	left: 0px;
	opacity: 1;
}

/*prev-btn */
.theme-btn.prev-btn {
	width: 46px;
	height: 46px;
}

.prev-btn .theme-btn-inner {
	width: 40px;
	height: 40px;
}

.prev-btn-arrow {
	width: 0;
	height: 0;
	border-top: 20px solid transparent;
	border-right: 20px solid rgba(0,0,0,0.2);
	border-bottom: 20px solid transparent;
	position: absolute;
	top: 0;
	right: 0;
	transition: all .3s ease;
}

.prev-btn .theme-btn-inner:hover .prev-btn-arrow {
	border-right: 25px solid rgba(0,0,0,0.5);
}

/*next-btn */
.theme-btn.next-btn {
	width: 46px;
	height: 46px;
}

.next-btn .theme-btn-inner {
	width: 40px;
	height: 40px;
}

.next-btn-arrow {
	width: 0;
	height: 0;
	border-top: 20px solid transparent;
	border-left: 20px solid rgba(0,0,0,0.2);
	border-bottom: 20px solid transparent;
	position: absolute;
	top: 0;
	left: 0;
	transition: all .3s ease;
}

.next-btn .theme-btn-inner:hover .next-btn-arrow {
	border-left: 25px solid rgba(0,0,0,0.5);
}

/*round-btn*/
.round-btn {
	padding: 3px;
	position: relative;
	margin: 0;
	width: auto;
	display: inline-block;
	border-radius: 50%;
}

.round-btn:hover .round-btn-hover, .round-btn:active .round-btn-hover {
	animation: barberpole 0.3s linear infinite;
}

.round-btn-hover {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	box-sizing: border-box;
	border-radius: 50%;
	opacity: 1;
	transition: opacity 0.3s ease;
	background-size: 10px 15px;
	background-image: linear-gradient(45deg, rgba(0, 0, 0, 0.1) 10%, rgba(0, 0, 0, 0) 10%, rgba(0, 0, 0, 0) 20%, rgba(0, 0, 0, 0.1) 20%, rgba(0, 0, 0, 0.1) 30%, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.1) 40%, rgba(0, 0, 0, 0.1) 50%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0) 60%, rgba(0, 0, 0, 0.1) 60%, rgba(0, 0, 0, 0.1) 70%, rgba(0, 0, 0, 0) 70%, rgba(0, 0, 0, 0) 80%, rgba(0, 0, 0, 0.1) 80%, rgba(0, 0, 0, 0.1) 90%, rgba(0, 0, 0, 0) 90%, rgba(0, 0, 0, 0) );
}

.round-btn-inner {
	background: #555555 url('../graphics/stripe.webp');
	padding: 20px;
	position: relative;
	border-radius: 50%;
	box-sizing: border-box;
	-webkit-box-shadow: inset 0px 0px 10px 0px rgba(0,0,0,0.25);
	-moz-box-shadow: inset 0px 0px 10px 0px rgba(0,0,0,0.25);
	box-shadow: inset 0px 0px 10px 0px rgba(0,0,0,0.25);
	transition: all .3s ease;
}

.round-btn-inner:hover {
	background: #555555;
}

.round-btn-sm .round-btn-inner {
	padding: 15px;
}

.corner-icon {
	background: #555555 url('../graphics/stripe.webp');
	width: 33px;
	height: 33px;
	position: relative;
	border-radius: 0;
	box-sizing: border-box;
	-webkit-box-shadow: inset 0px 0px 10px 0px rgba(0,0,0,0.25);
	-moz-box-shadow: inset 0px 0px 10px 0px rgba(0,0,0,0.25);
	box-shadow: inset 0px 0px 10px 0px rgba(0,0,0,0.25);
	transition: all .3s ease;
}

.icon-bg-tl {
	border-radius: 0 0 5px 0;
}

.icon-bg-bl {
	border-radius: 0 5px 0 0;
}

.icon-bg-tr {
	border-radius: 0 0 0 5px;
}

.icon-bg-br {
	border-radius: 5px 0 0 0;
}

.news-btn {
}

/*news btn*/
.news-btn {
	padding: 3px;
	position: relative;
	margin: 0;
	width: auto;
	display: inline-block;
	border: 1px solid rgba(208,62,42,0.90);
}

.news-btn-hover {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border-radius: 3px;
	box-sizing: border-box;
	opacity: 1;
	transition: opacity 0.3s ease;
}

.news-btn-inner {
	background: rgba(208,62,42,1.0) url('../graphics/stripe.webp');
	padding-top: 23px;
	width: 74px;
	height: 74px;
	position: relative;
	border-radius: 0px;
	box-sizing: border-box;
	-webkit-box-shadow: inset 0px 0px 10px 0px rgba(0,0,0,0.25);
	-moz-box-shadow: inset 0px 0px 10px 0px rgba(0,0,0,0.25);
	box-shadow: inset 0px 0px 10px 0px rgba(0,0,0,0.25);
	transition: all .3s ease;
	text-align: center;
	color:#ffffff;
}

.news-btn-inner a {
	color: #ffffff;
}

.news-btn-inner:hover {
	background: rgba(208,62,42,0.90);
}

/*quotes btn*/
.btn-quotes {
	border-radius: 25px;
	padding: 10px 100px;
	background: #555555;
	width: 400px;
}

.btn-quotes span img {
	border-radius: 50%;
	border: 5px solid #555555;
	max-width: 90px;
	max-height: 90px;
}

/* -----------------------------------------
:: THUMBNAIL EFFECTS 
----------------------------------------- */
/*thumb background marching ants animation */
@keyframes thumbbg {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 10px 0px;
  }
}
/*thumb hover effects*/
.colored.thm-hover1 .mask1, .colored.thm-hover1 .mask2 {
	background: #555555;
	background: rgba(0,0,0,0.25);
}

.thm {
	position: relative;
	-webkit-transition: all 0.35s ease;
	-moz-transition: all 0.35s ease;
	transition: all 0.35s ease;
}

.thm, .thm * {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.thm a {
	color: #ffffff;
}

.thm a:hover {
	text-decoration: none;
}

.thm img {
	width: 100%;
	height: 100%;
}

.thm.content {
	position: relative;
	width: auto;
	height: auto;
}

.thm-hover1 {
	overflow: hidden;
	position: relative;
}

.thm-hover1 .thm-img {
	-webkit-transition: all 0.35s ease;
	-moz-transition: all 0.35s ease;
	transition: all 0.35s ease;
}

.thm-hover1 .mask1 {
	position: absolute;
	background: #333333;
	background: rgba(0, 0, 0, 0.3);
	height: 200%;
	width: 200%;
	-webkit-transition: all .7s ease;
	-moz-transition: all .7s ease;
	transition: all .7s ease;
}

.thm-hover1 .mask2 {
	position: absolute;
	background: #333333;
	background: rgba(0, 0, 0, 0.3);
	height: 200%;
	width: 200%;
	-webkit-transition: all 2s ease;
	-moz-transition: all 2s ease;
	transition: all 2s ease;
}

.thm-hover1 .mask1 {
	left: auto;
	right: 0;
	top: 0;
	-webkit-transform: rotate(56.5deg) translateX(150%);
	-moz-transform: rotate(56.5deg) translateX(150%);
	-ms-transform: rotate(56.5deg) translateX(150%);
	-o-transform: rotate(56.5deg) translateX(150%);
	transform: rotate(56.5deg) translateX(150%);
	-webkit-transform-origin: 100% 0%;
	-moz-transform-origin: 100% 0%;
	-ms-transform-origin: 100% 0%;
	-o-transform-origin: 100% 0%;
	transform-origin: 100% 0%;
}

.thm-hover1 .mask2 {
	top: auto;
	bottom: 0;
	left: 0;
	-webkit-transform: rotate(56.5deg) translateX(-150%);
	-moz-transform: rotate(56.5deg) translateX(-150%);
	-ms-transform: rotate(56.5deg) translateX(-150%);
	-o-transform: rotate(56.5deg) translateX(-150%);
	transform: rotate(56.5deg) translateX(-150%);
	-webkit-transform-origin: 0% 100%;
	-moz-transform-origin: 0% 100%;
	-ms-transform-origin: 0% 100%;
	-o-transform-origin: 0% 100%;
	transform-origin: 0% 100%;
}

.thm-hover1:hover .mask1 {
	-webkit-transform: rotate(56.5deg) translateX(50%);
	-moz-transform: rotate(56.5deg) translateX(50%);
	-ms-transform: rotate(56.5deg) translateX(50%);
	-o-transform: rotate(56.5deg) translateX(50%);
	transform: rotate(56.5deg) translateX(50%);
}

.thm-hover1:hover .mask2 {
	-webkit-transform: rotate(56.5deg) translateX(-50%);
	-moz-transform: rotate(56.5deg) translateX(-50%);
	-ms-transform: rotate(56.5deg) translateX(-50%);
	-o-transform: rotate(56.5deg) translateX(-50%);
	transform: rotate(56.5deg) translateX(-50%);
}

.thm-hover1 .thm-img {
	-webkit-transition: all .5s ease;
	-moz-transition: all 0.5s ease;
	transition: all .5s ease;
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);
}

.thm-hover1:hover .thm-img {
	-webkit-transform: scale(1.2);
	-moz-transform: scale(1.2);
	-ms-transform: scale(1.2);
	-o-transform: scale(1.2);
	transform: scale(1.2);
}

/*thm carousel effects*/
.thm.content.thm-hover2 {
	overflow: hidden;
}

.thm.content.thm-hover2 .thm-img {
	opacity: 1;
	-webkit-transition: all 0.35s ease-in-out;
	-moz-transition: all 0.35s ease-in-out;
	transition: all 0.35s ease-in-out;
}

.thm.content.thm-hover2:hover .thm-img {
	opacity: 0;
}

.thm.content.thm-hover2:hover .info {
	visibility: visible;
	opacity: 1;
}

.thm.content.thm-hover2.scale_up .thm-img {
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);
}

.thm.content.thm-hover2.scale_up .info {
	-webkit-transform: scale(0);
	-moz-transform: scale(0);
	-ms-transform: scale(0);
	-o-transform: scale(0);
	transform: scale(0);
}

.thm.content.thm-hover2.scale_up .info h3, .thm.content.thm-hover2.scale_up .info p {
	-webkit-transform: scale(0);
	-moz-transform: scale(0);
	-ms-transform: scale(0);
	-o-transform: scale(0);
	transform: scale(0);
}

.thm.content.thm-hover2.scale_up:hover .thm-img {
	-webkit-transform: scale(5);
	-moz-transform: scale(5);
	-ms-transform: scale(5);
	-o-transform: scale(5);
	transform: scale(5);
}

.thm.content.thm-hover2.scale_up:hover .info {
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);
}

.thm.content.thm-hover2.scale_up:hover .info h3, .thm.content.thm-hover2.scale_up:hover .info p {
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);
}

.thm.content.thm-hover2.scale_down .thm-img {
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);
}

.thm.content.thm-hover2.scale_down .info {
	-webkit-transform: scale(5);
	-moz-transform: scale(5);
	-ms-transform: scale(5);
	-o-transform: scale(5);
	transform: scale(5);
}

.thm.content.thm-hover2.scale_down .info h3, .thm.content.thm-hover2.scale_down .info p {
	-webkit-transform: scale(5);
	-moz-transform: scale(5);
	-ms-transform: scale(5);
	-o-transform: scale(5);
	transform: scale(5);
}

.thm.content.thm-hover2.scale_down:hover .thm-img {
	-webkit-transform: scale(0.5);
	-moz-transform: scale(0.5);
	-ms-transform: scale(0.5);
	-o-transform: scale(0.5);
	transform: scale(0.5);
}

.thm.content.thm-hover2.scale_down:hover .info {
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);
}

.thm.content.thm-hover2.scale_down:hover .info h3, .thm.content.thm-hover2.scale_down:hover .info p {
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);
}

.thm-corners {
	position: absolute;
	transition-duration: 0.3s;
	width: 100%;
	z-index: 3;
}

.thm-corners::before, .thm-corners::after {
	border-color: rgba(255,255,255,0.5);
	border-style: solid;
	content: "";
	height: 20px;
	position: absolute;
	transform: translateZ(0px);
	transition-duration: 0.3s;
	width: 20px;
}

.thm-corners::before {
	left: 25px;
}

.thm-corners::after {
	right: 25px;
}

.thm-corners.top-corners {
	top: 25px;
}

.thm-corners.bottom-corners {
	bottom: 45px;
}

.thm-hover1:hover .thm-corners.top-corners {
	top: -20px;
}

.thm-hover1:hover .thm-corners.bottom-corners {
	bottom: -10px;
}

.thm-hover1:hover .thm-corners::before {
	left: -20px;
	border-color: rgba(255,255,255,0.0);
}

.thm-hover1:hover .thm-corners::after {
	right: -20px;
	border-color: rgba(255,255,255,0.0);
}

.thm-corners.top-corners::before {
	border-width: 1px 0 0 1px;
}

.thm-corners.top-corners::after {
	border-width: 1px 1px 0 0;
}

.thm-corners.bottom-corners::before {
	border-width: 0 0 1px 1px;
}

.thm-corners.bottom-corners::after {
	border-width: 0 1px 1px 0;
}

/* -----------------------------------------
:: .thumb
----------------------------------------- */
.thumb {
	padding: 0px;
	position: relative;
	display: inline-block;
	margin: 5px;
}

.thm-img img {
	width: 100%;
}

.thumb.margin0 {
	margin: 0px;
}

/*thumb background animation marching ants*/
.thumb:hover .thumb-hover, .thumb:active .thumb-hover {
	animation: thumbbg 0.3s linear infinite;
}

.thumb-hover {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border-radius: 0px;
	box-sizing: border-box;
	opacity: 1;
	transition: opacity 0.3s ease;
	/*
	background-size: 10px 15px;
	background-image: linear-gradient(45deg, rgba(0, 0, 0, 0.1) 10%, rgba(0, 0, 0, 0) 10%, rgba(0, 0, 0, 0) 20%, rgba(0, 0, 0, 0.1) 20%, rgba(0, 0, 0, 0.1) 30%, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.1) 40%, rgba(0, 0, 0, 0.1) 50%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0) 60%, rgba(0, 0, 0, 0.1) 60%, rgba(0, 0, 0, 0.1) 70%, rgba(0, 0, 0, 0) 70%, rgba(0, 0, 0, 0) 80%, rgba(0, 0, 0, 0.1) 80%, rgba(0, 0, 0, 0.1) 90%, rgba(0, 0, 0, 0) 90%, rgba(0, 0, 0, 0) );
	*/
}

/*thumb inner content container*/
.thumb-inner {
	background: #e8e8e8;
	background: rgba(232,232,232,0.25);
/*border: 1px solid rgba(0,0,0,1);*/padding: 5px;
	position: relative;
	border-radius: 0px;
	box-sizing: border-box;
	transition: all .5s ease;
	overflow: hidden;
}

.thumb-inner:hover {
	background: rgba(255,255,255,1.0);
}

/* -----------------------------------------
:: .thumb.color
----------------------------------------- */
.thumb.color .thumb-inner {
	border: 1px solid rgba(208,62,42,1.0);
	box-shadow: inset 0px 15px 0px 0px rgba(208,62,42,1.0);
}

.thumb.color .thumb-inner:hover {
	border: 1px solid rgba(208,62,42,0.9);
	box-shadow: inset 0px 15px 0px 0px rgba(208,62,42,0.90);
}

/* -----------------------------------------
:: .thumb.dark
----------------------------------------- */
.thumb.dark .thumb-hover {
	border-radius: 3px;
	/*
	background-image: linear-gradient(45deg, rgba(0, 0, 0, 1.0) 10%, rgba(0, 0, 0, 0) 10%, rgba(0, 0, 0, 0) 20%, rgba(0, 0, 0, 1.0) 20%, rgba(0, 0, 0, 1.0) 30%, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 1.0) 40%, rgba(0, 0, 0, 1.0) 50%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0) 60%, rgba(0, 0, 0, 1.0) 60%, rgba(0, 0, 0, 1.0) 70%, rgba(0, 0, 0, 0) 70%, rgba(0, 0, 0, 0) 80%, rgba(0, 0, 0, 1.0) 80%, rgba(0, 0, 0, 1.0) 90%, rgba(0, 0, 0, 0) 90%, rgba(0, 0, 0, 0) );*/
}

.thumb.dark .thumb-inner {
	background: #D03E2A;
	border: 0px solid #555555;
	padding: 4px;
}

/* -----------------------------------------
:: .thumb.content
----------------------------------------- */
/*title*/
.thm-title {
	position: absolute;
	top: 20%;
	left: -100%;
	width: auto;
	height: auto;
	text-align: left;
	border-radius: 0 5px 5px 0;
	padding: 5px 20px;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	background: rgba(0,0,0,0.5);
	visibility: hidden;
	-webkit-transition: all 0.25s ease;
	-moz-transition: all 0.25s ease;
	transition: all 0.25s ease;
}

.thm-title h3 {
	font-size: 25px;
	color: #ffffff;
	font-weight: 300;
	margin: 0;
}

.thm-title h3 span {
	font-weight: 800;
}

.thm-hover1:hover .thm-title {
	visibility: visible;
	left: 0%;
	opacity: 1;
}

.colored .thm-title {
	background: rgba(12, 34, 52, 0.6);
}

/*readmore*/
.thm-readmore {
	position: absolute;
	bottom: 10%;
	left: -100%;
	width: auto;
	height: auto;
	text-align: left;
	padding: 5px 20px;
	border-radius: 0 5px 5px 0;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	background: url('../graphics/list3.webp') 100px center no-repeat;
	visibility: hidden;
	-webkit-transition: all 0.35s ease;
	-moz-transition: all 0.35s ease;
	transition: all 0.35s ease;
}

.thm-readmore span a {
	font-size: 14px;
	color: #ffffff;
}

.thm-readmore span a:hover {
	color: #aaa;
	color: rgba(255,255,255,0.65);
}

.thm-hover1:hover .thm-readmore {
	visibility: visible;
	left: 0%;
	opacity: 1;
	background: url('../graphics/list3.webp') 10px 15px no-repeat;
}

.colored .thm-readmore {
	background: rgba(12, 34, 52, 0.6);
}

/*desc*/
.thm-desc {
	position: absolute;
	left: -100%;
	width: 80%;
	height: auto;
	text-align: left;
	padding: 5px 20px 10px 20px;
	border-radius: 0 5px 5px 0;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	background: rgba(0,0,0,0.5);
	visibility: hidden;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	transition: all 0.5s ease;
	line-height: 1;
	opacity: 0;
}

.thm-desc:before {
	width: 98px;
	content: " ";
	background-image: url('../graphics/ih-desc-top.webp');
	position: absolute;
	left: 10px;
	top: -10px;
	height: 1px;
}

.thm-desc:after {
	width: 98px;
	content: " ";
	background-image: url('../graphics/ih-desc-top.webp');
	position: absolute;
	left: 10px;
	bottom: -10px;
	height: 1px;
}

.thm-desc span {
	font-size: 14px;
	color: #ffffff;
}

.thm-hover1:hover .thm-desc {
	visibility: visible;
	left: 0%;
	opacity: 1;
}

.colored .thm-desc {
	background: rgba(12, 34, 52, 0.6);
}

/* corner icons*/
.thm-link i, .thm-fancy i, .thm-top-left i, .thm-top-right i, .thm-bottom-left i, .thm-bottom-right i {
	position: absolute;
	width: 33px;
	height: 33px;
	text-align: center;
	color: #ffffff;
	padding: 10px;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	background: #555555;
	-webkit-box-shadow: inset 0px 0px 10px 0px rgba(0,0,0,0.25);
	-moz-box-shadow: inset 0px 0px 10px 0px rgba(0,0,0,0.25);
	box-shadow: inset 0px 0px 10px 0px rgba(0,0,0,0.25);
	visibility: hidden;
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	transition: all 0.2s ease;
}

.thm-link i:hover, .thm-fancy i:hover, .thm-top-left i:hover, .thm-top-right i:hover, .thm-bottom-left i:hover, .thm-bottom-right i:hover {
	background: #222222;
	background: rgba(0,0,0,0.5);
}

/*link*/
.thm-link i {
	top: -50px;
	right: -50px;
	border-radius: 0 0 0 5px;
}

.thm-hover1:hover .thm-link i {
	visibility: visible;
	top: 1px;
	right: 1px;
}

/*fancy*/
.thm-fancy i {
	bottom: -50px;
	right: -50px;
	border-radius: 5px 0 0 0;
}

.thm-hover1:hover .thm-fancy i {
	visibility: visible;
	bottom: 1px;
	right: 1px;
}

/* -----------------------------------------
:: .thumb.content2
----------------------------------------- */
/*title*/
.thumb-content2 .thm-title {
	position: absolute;
	top: 0px;
	left: 0%;
	width: 100%;
	text-align: center;
	border-radius: 0 5px 5px 0;
	padding: 5px 20px;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	background: none;
	visibility: hidden;
	-webkit-transition: all 0.25s ease;
	-moz-transition: all 0.25s ease;
	transition: all 0.25s ease;
	opacity: 0;
}

.thumb-content2 .thm-title h3 {
	font-size: 30px;
	color: #ffffff;
	font-weight: 300;
	margin: 0;
	text-shadow: 0px 0px 10px #4DD2FF;
	text-align: center;
}

.thumb-content2 .thm-hover1:hover .thm-title {
	visibility: visible;
	top: 120px;
	left: 0%;
	opacity: 1;
}

/*desc*/
.thumb-content2 .thm-desc {
	position: absolute;
	top: 0px;
	left: 0%;
	width: 100%;
	text-align: center;
	padding: 5px 20px 10px 20px;
	border-radius: 0 5px 5px 0;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	background: rgba(0,0,0,0.0);
	visibility: hidden;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	transition: all 0.5s ease;
	line-height: 1;
	opacity: 0;
}

.thumb-content2 .thm-desc:before {
	background-image: none;
}

.thumb-content2 .thm-desc:after {
	background-image: none;
}

.thumb-content2 .thm-desc span {
	font-size: 16px;
	color: #ffffff;
}

.thumb-content2 .thm-hover1:hover .thm-desc {
	visibility: visible;
	top: 150px;
	left: 0%;
	opacity: 1;
}

/* corner icons*/
.thm-link i, .thm-fancy i, .thm-top-left i, .thm-top-right i, .thm-bottom-left i, .thm-bottom-right i {
	position: absolute;
	width: 33px;
	height: 33px;
	text-align: center;
	color: #ffffff;
	padding: 10px;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	background: #555555;
	-webkit-box-shadow: inset 0px 0px 10px 0px rgba(0,0,0,0.0);
	-moz-box-shadow: inset 0px 0px 10px 0px rgba(0,0,0,0.0);
	box-shadow: inset 0px 0px 10px 0px rgba(0,0,0,0.0);
	visibility: hidden;
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	transition: all 0.2s ease;
}

.thm-link i:hover, .thm-fancy i:hover, .thm-top-left i:hover, .thm-top-right i:hover, .thm-bottom-left i:hover, .thm-bottom-right i:hover {
	background: #222222;
	background: rgba(0,0,0,0.5);
}

/*link*/
.thm-link i {
	top: -50px;
	right: -50px;
	border-radius: 0 0 0 5px;
}

.thm-hover1:hover .thm-link i {
	visibility: visible;
	top: 1px;
	right: 1px;
}

/*fancy*/
.thm-fancy i {
	bottom: -50px;
	right: -50px;
	border-radius: 5px 0 0 0;
}

.thm-hover1:hover .thm-fancy i {
	visibility: visible;
	bottom: 1px;
	right: 1px;
}

/* -----------------------------------------
:: .thumb.social
----------------------------------------- */
.thumb-social .thm-desc:before {
	background-image: none;
}

.thumb-social .thm-desc:after {
	background-image: none;
}

.thm-top-left i {
	top: -50px;
	left: -50px;
	border-radius: 0 0 5px 0;
}

.thm-hover1:hover .thm-top-left i {
	visibility: visible;
	top: 1px;
	left: 1px;
}

/*icon top right*/
.thm-top-right i {
	top: -50px;
	right: -50px;
	border-radius: 0 0 0 5px;
}

.thm-hover1:hover .thm-top-right i {
	visibility: visible;
	top: 1px;
	right: 1px;
}

/*icon bottom right*/
.thm-bottom-right i {
	bottom: -50px;
	right: -50px;
	border-radius: 5px 0 0 0;
}

.thm-hover1:hover .thm-bottom-right i {
	visibility: visible;
	bottom: 1px;
	right: 1px;
}

/*icon bottom left*/
.thm-bottom-left i {
	bottom: -50px;
	left: -50px;
	border-radius: 0 5px 0 0;
}

.thm-hover1:hover .thm-bottom-left i {
	visibility: visible;
	bottom: 1px;
	left: 1px;
}

/* -----------------------------------------
:: .thumb.social-gallery
----------------------------------------- */
/* -----------------------------------------
:: .thumb.caption
----------------------------------------- */
/*title*/
.thm-title-cap {
	width: 100%;
	height: auto;
	text-align: center;
	padding: 0px;
	margin-top: 20px;
	line-height: 1;
}

.thm-title-cap span {
	font-size: 30px;
	color: rgba(208,62,42,0.90);
	font-weight: 300;
	margin: 0;
}

.thm-title-cap span:last-child {
	font-weight: 800;
	margin-left: -5px;
}

/*desc*/
.thm-desc-cap {
	width: 100%;
	height: auto;
	text-align: center;
	padding: 0px;
	margin-bottom: 40px;
	line-height: 1;
}

.thm-desc-cap span {
	font-size: 20px;
	color: rgba(208,62,42,0.50);
}

/* -----------------------------------------
:: .thumb.caption icons
----------------------------------------- */
/* -----------------------------------------
:: .thumb.carousel
----------------------------------------- */
.thm.content.thm-hover2.colored .info {
	background: #555555;
}

.thm.content.thm-hover2.colored .info h3 {
	background: rgba(12, 34, 52, 0.6);
}

.thm.content .info {
	backface-visibility: hidden;
	bottom: 0;
	left: 0;
	position: absolute;
	right: 0;
	text-align: center;
	top: 0;
}

.thm.content.thm-hover2 .info {
	background: #ffffff;
	visibility: hidden;
	opacity: 0;
	border: 1px solid #D03E2A;
	-webkit-box-shadow: inset 0px 0px 50px 0px rgba(0,0,0,0.25);
	-moz-box-shadow: inset 0px 0px 50px 0px rgba(0,0,0,0.25);
	box-shadow: inset 0px 0px 50px 0px rgba(0,0,0,0.25);
	-webkit-transition: all 0.35s ease-in-out;
	-moz-transition: all 0.35s ease-in-out;
	transition: all 0.35s ease-in-out;
}

.thm.content.thm-hover2 .info h3 {
	text-transform: uppercase;
	color: #ffffff;
	text-align: center;
	font-size: 30px;
	padding: 10px;
	margin: 100px 0 0 0;
	background: #D03E2A;
	-webkit-transition: all 0.35s 0.1s ease-in-out;
	-moz-transition: all 0.35s 0.1s ease-in-out;
	transition: all 0.35s 0.1s ease-in-out;
}

.thm.content.thm-hover2 .info p {
	font-style: italic;
	font-size: 16px;
	position: relative;
	color: #222;
	padding: 5px;
	text-align: center;
	background: #555555;
	background: rgba(208,62,42 ,0.5);
	-webkit-transition: all 0.35s 0.15s linear;
	-moz-transition: all 0.35s 0.15s linear;
	transition: all 0.35s 0.15s linear;
}

/*link*/
.thm-hover2:hover .thm-link i {
	visibility: visible;
	top: 1px;
	right: 1px;
}

/*fancy*/
.thm-hover2:hover .thm-fancy i {
	visibility: visible;
	bottom: 1px;
	right: 1px;
}

.thm-hover2 .thm-link i:hover, .thm-hover2 .thm-fancy i:hover {
	background: #555555;
	background: rgba(208,62,42 ,0.8);
	-webkit-box-shadow: inset 0px 0px 0px 0px rgba(0,0,0,0.0);
	-moz-box-shadow: inset 0px 0px 0px 0px rgba(0,0,0,0.0);
	box-shadow: inset 0px 0px 0px 0px rgba(0,0,0,0.0);
}

.thm-hover2:hover .thm-corners.top-corners {
	top: 0px;
}

.thm-hover2:hover .thm-corners.bottom-corners {
	bottom: 20px;
}

.thm-hover2:hover .thm-corners::before {
	left: 0px;
	border-color: rgba(208,62,42 ,1.0);
}

.thm-hover2:hover .thm-corners::after {
	right: 0px;
	border-color: rgba(208,62,42 ,1.0);
}

/* -----------------------------------------
:: .thumb.catalog
----------------------------------------- */
/* -----------------------------------------
:: .thumb.icon 
----------------------------------------- */
.thumb.thm-icon .thumb-inner {
	transition: all .5s ease;
	padding: 20px;
	text-align: center;
}

.thumb.thm-icon .thumb-inner i {
	margin-bottom: 20px;
}

.thumb.thm-icon .thumb-inner h3 {
	color: #999;
	font-size: 20px;
	font-weight: 800;
	margin: -5px 0 10px 0;
	text-align: center;
}

.thumb.thm-icon .thumb-inner p {
	font-size: 12px;
	margin-bottom: 5px;
}

.thumb.thm-icon div.thumb-inner div.icon {
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 20px;
}

.thumb.thm-icon .thumb-inner:hover {
	background: #fff;
	border: 1px solid #555555;
}

/* -----------------------------------------
:: .thumb.quotes .thumb.quotes2
----------------------------------------- */
/* -----------------------------------------
:: .thumb.loadmore
----------------------------------------- */
.loadmore-content {
	float: left;
	position: absolute;
	top: 25px;
	z-index: 999;
}

.loadmore-content img {
	vertical-align: middle;
	max-width: 100px;
	max-height: 100px;
	display: inline;
	border-radius: 50%;
	border: 5px solid rgba(208,62,42,0.90);
	margin-top: -10px;

}
.loadmore .thumb-desc img {
	vertical-align: middle;
	max-width: 180px;
	max-height: 30px;
	display: inline;
	border-radius: 50%;
	border: 5px solid rgba(208,62,42,0.90);
	margin-top: -10px;
	margin-bottom: 30px;

}

.thm-loadmore {
	padding-top: 5px;
	padding-bottom: 5px;
	padding-right: 5px;
	padding-left: 5px;
	margin-bottom: 35px;
	position: relative;
}

.thm-loadmore:after {
	content: "";
	position: absolute;
	top: 0;
	left: 54px;
	width: 2px;
	height: 130%;
	border-left: 2px solid rgba(208,62,42,0.90);
}

.thm-loadmore:hover {
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
}

.thumb-load {
	z-index: 9999;
	position: relative;
	margin-top: 17px;
}

.thumb-load img {
	position: absolute;
	left: -20px;
	display: none;
}

.thumb-hide {
	display: none;
}

.thm-loadmore .thumb-desc {
	background: rgba(232,232,232,0.20);
	border: 1px solid rgba(208,62,42,0.90);
	padding: 25px;
	font-size: 16px;
	font-style: italic;
	text-align: center;
	line-height: 20px;
	position: relative;
	border-radius: 3px;
	box-sizing: border-box;
	overflow: hidden;
	transition: all .5s ease;
	margin-left: 150px;
}

.thm-loadmore .thumb-desc:hover {
	background: rgba(232,232,232,1.0);
	border: 1px solid #D03E2A;
}

/*thumb inner content container*/
.thm-loadmore:before {
	position: absolute;
	top: 0px;
	left: 130px;
	content: '';
	width: 0;
	height: 0;
	margin-top: 40px;
	border-top: 20px solid transparent;
	border-right: 25px solid rgba(208,62,42,0.5);
	border-bottom: 20px solid transparent;
	z-index: 999;
	transition: all .5s ease;
}

.thm-loadmore:hover:before {
	border-right: 25px solid rgba(208,62,42,0.90);
}

.loadmore-content img {
	-webkit-transition-timing-function: ease;
	-moz-transition-timing-function: ease;
	-ms-transition-timing-function: ease;
	-o-transition-timing-function: ease;
	-webkit-transition-duration: 400ms;
	-moz-transition-duration: 400ms;
	-ms-transition-duration: 400ms;
	-o-transition-duration: 400ms;
}

.loadmore-content img:hover {
	-webkit-transform: scale(1.1, 1.1);
	-moz-transform: scale(1.1, 1.1);
	-ms-transform: scale(1.1, 1.1);
	-o-transform: scale(1.1, 1.1);
	-webkit-transition-timing-function: ease;
	-moz-transition-timing-function: ease;
	-ms-transition-timing-function: ease;
	-o-transition-timing-function: ease;
	-webkit-transition-duration: 200ms;
	-moz-transition-duration: 200ms;
	-ms-transition-duration: 200ms;
	-o-transition-duration: 200ms;
	border: solid 2px rgba(208,62,42,0.90);
	cursor: pointer;
}

.appear {
	visibility: hidden;
}

.thm-loadmore.history .thumb-desc {
	background: rgba(0,0,0,0.25);
	border: 1px solid rgba(208,62,42,0.90);
	border-top: 35px solid rgba(208,62,42,0.90);
	overflow: visible;
	box-sizing: border-box;
}

.thm-loadmore.history .thumb-desc:hover {
	background: rgba(0,0,0,0.75);
	border-bottom: 5px solid #D03E2A;
}

.thm-loadmore.history:before {
	margin-top: 60px;
}

.thm-loadmore.history:hover:before {
	margin-top: 40px;
}

.thm-loadmore.history .thumb-desc .history-title {
	float: left;
	color: #ffffff;
	font-size: 22px;
	margin-top: -52px;
	font-style: normal;
	letter-spacing: -1px;
}

.thm-loadmore.history .thumb-desc .history-year {
	float: right;
	color: #ffffff;
	font-size: 22px;
	margin-top: -52px;
	font-style: normal;
	letter-spacing: -1px;
}

/* -----------------------------------------
:: .thumb.iconlarge
----------------------------------------- */
/* -----------------------------------------
:: .thumb.contents-center
----------------------------------------- */
/* -----------------------------------------
:: .thumbnail default 
----------------------------------------- */
.thumbnail {
	display: block;
	padding: 4px;
	margin-bottom: 22px;
	line-height: 1.42857143;
	background-color: #ffffff;
	border: 1px solid #aaa;
	border-radius: 4px;
	-webkit-transition: border 0.2s ease-in-out;
	-o-transition: border 0.2s ease-in-out;
	transition: border 0.2s ease-in-out;
}

.thumbnail > img, .thumbnail a > img {
	margin-left: auto;
	margin-right: auto;
}

a.thumbnail:hover, a.thumbnail:focus, a.thumbnail.active {
	border-color: #555555;
}

.thumbnail .caption {
	padding: 9px;
	color: #555555;
}

.img-thumbnail {
	padding: 4px;
	line-height: 1.42857143;
	background-color: #ffffff;
	border: 1px solid #aaa;
	border-radius: 4px;
	-webkit-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
	display: inline-block;
	max-width: 100%;
	height: auto;
}

.thumbnail, .img-thumbnail {
	background-color: rgba(0,0,0,0.0);
	border: 1px solid #555555;
	border-radius: 4px;
	display: block;
	line-height: 1.42857;
	margin-bottom: 20px;
	padding: 5px;
	transition: all 0.2s ease-in-out 0s;
}

.thumbnail .caption {
	color: #555555;
}

.well, .panel {
	background-color: rgba(0, 0, 0, 0.1);
	border: 0px solid #222222;
	border-radius: 4px;
	box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05) inset;
	margin-bottom: 20px;
	min-height: 20px;
	padding: 0px;
}

/* -----------------------------------------------------------
:: YOUTUBEBACKGROUND: VIDEO BACKGROUND  
----------------------------------------------------------- */
/* -----------------------------------------------------------
:: LIBRARY-PRO-COMPONENT: STYLES  
----------------------------------------------------------- */
/**/
/**/
/* -----------------------------------------------------------
:: Library / components / accordions / faq / faq  
----------------------------------------------------------- */
.faqs .panel-group .panel-heading a {
	color: #e8e8e8;
}

.faqs .faqHeader {
	font-size: 27px;
	margin: 20px;
}

.faqs .panel-heading [data-toggle=collapse]:after {
	color: #e8e8e8;
	font-size: 18px;
	font-family: FontAwesome;
	content: "\f0a7";
	float: right;
	line-height: 22px; ;
}

.faqs .panel-heading [data-toggle=collapse].collapsed:after {
	color: #e8e8e8;
	font-family: FontAwesome;
	content: "\f0a6"; ;
	-webkit-transform: rotate(90deg);
	-moz-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	-o-transform: rotate(90deg);
	transform: rotate(90deg);
}

/* -----------------------------------------------------------
:: Library / components / counters / clients / clients  
----------------------------------------------------------- */
.counter1 {
	font-family: 'Open Sans', sans-serif;
	float: left;
	width: 100%;
	margin-bottom: 21px;
	margin-top: 20px;
	line-height: 1.1;
}

.counter1-info {
	width: 25%;
	float: left;
	padding-bottom: 45px;
}

.counter1-num {
	font-size: 50px;
	text-align: center;
	color: #555555;
	font-weight: bold;
}

.counter1-label {
	font-size: 16px;
	text-align: center;
}

.counter1-icon {
	text-align: center;
	color: #D03E2A;
	margin-bottom: -5px;
}

/* -----------------------------------------------------------
:: Library / components / counters / countdown / countdown  
----------------------------------------------------------- */
#countdown {
	margin-bottom: 50px;
}

.countdown-row {
	clear: both;
	display: block;
	padding: 0;
	text-align: center;
}

.countdown-show1 .countdown-section {
	width: 98%;
}

.countdown-show2 .countdown-section {
	width: 48%;
}

.countdown-show3 .countdown-section {
	width: 32.5%;
}

.countdown-show4 .countdown-section {
	width: 14.5%;
	margin: 0%;
	padding: 0%;
	text-align: center;
}

.countdown-show5 .countdown-section {
	width: 19.5%;
}

.countdown-show6 .countdown-section {
	width: 16.25%;
}

.countdown-show7 .countdown-section {
	width: 14%;
	background: #999;
}

.countdown-section {
	display: inline-block;
	text-align: center;
	font-family: 'Open Sans', sans-serif;
	margin-bottom: 50px;
}

.countdown-amount {
	font-size: 50px;
	color: #D03E2A;
	font-weight: bold;
}

.countdown-period {
	display: block;
	font-size: 16px;
	text-align: center;
}

.countdown-descr {
	display: block;
	width: 100%;
}

/* -----------------------------------------------------------
:: Library / components / pricing / switcher / pricing
----------------------------------------------------------- */
/* -------------------------------- 

xkeyframes 

-------------------------------- */
/* -----------------------------------------------------------
:: Library / components / progressbar / skills / skills
----------------------------------------------------------- */

.stretchRight {
	visibility: visible;
}

.stretchRight {
	animation-name: stretchRight;
	-webkit-animation-name: stretchRight;
	animation-duration: 1.5s;
	-webkit-animation-duration: 1.5s;
	animation-timing-function: ease-out;
	-webkit-animation-timing-function: ease-out;
	transform-origin: 0% 0%;
	-ms-transform-origin: 0% 0%;
	-webkit-transform-origin: 0% 0%;
}

@keyframes stretchRight {
	0% {
		transform: scaleX(0.0);
	}
	40% {
		transform: scaleX(1.02);
	}
	60% {
		transform: scaleX(0.98);
	}
	80% {
		transform: scaleX(1.01);
	}
	100% {
		transform: scaleX(0.98);
	}				
	80% {
		transform: scaleX(1.01);
	}
	100% {
		transform: scaleX(1);
	}							
}
@-webkit-keyframes stretchRight {
	0% {
		-webkit-transform: scaleX(0.0);
	}
	40% {
		-webkit-transform: scaleX(1.02);
	}
	60% {
		-webkit-transform: scaleX(0.98);
	}
	80% {
		-webkit-transform: scaleX(1.01);
	}
	100% {
		-webkit-transform: scaleX(0.98);
	}				
	80% {
		-webkit-transform: scaleX(1.01);
	}
	100% {
		-webkit-transform: scaleX(1);
	}		
}
/* -----------------------------------------------------------
:: Library / components / tabs / details / details
----------------------------------------------------------- */
/*tabs horizontal*/
.tabs-info ul.nav.nav-tabs {
	overflow: visible;
}

.tabs.tabs-info ul.nav.nav-tabs li.active {
	color: #ffffff!important;
}

.tabs.tabs-info ul.nav.nav-tabs > li.active > a, .tabs.tabs-info ul.nav.nav-tabs > li.active > a:hover, .tabs.tabs-info ul.nav.nav-tabs > li.active > a:focus {
	background-color: rgba(208,62,42,1.00);
	border-bottom-color: transparent;
	color: #ffffff;
	height: 55px;
}

.tabs.tabs-info ul.nav.nav-tabs > li > a, .tabs.tabs-info ul.nav.nav-tabs > li > a:hover, .tabs.tabs-info ul.nav.nav-tabs > li > a {
	background-color: rgba(232,232,232,0.5);
	color: #555555;
	border: 1px solid rgba(208,62,42,1.00);
	border-bottom-color: transparent;
	transition: all .4s ease;
}

.tabs.tabs-info ul.nav.nav-tabs > li > a:hover {
	background-color: rgba(208,62,42,1.00);
	color: #ffffff;
	border: 1px solid rgba(208,62,42,1.00);
	border-bottom-color: transparent;
	border-bottom: 0px;
}

.tabs.tabs-info div.tab-content-wrapper {
	border: 1px solid rgba(208,62,42,1.00);
	border-radius: 5px;
	padding: 5px;
	background-color: rgba(232,232,232,0.5);
	margin-top: -6px;
}

.tab-content .tab-pane {
	padding: 20px;
	margin-top: -15px;
}

.tabs.tabs-info div.tab-content {
	border: 1px solid rgba(208,62,42,1.00);
	border-radius: 3px;
	border-top: 15px solid rgba(208,62,42,1.00);
	padding: 5px;
	font-size: 14px;
}

.tabs.tabs-info ul {
	margin-left: 30px;
}

.tabs-info {
	margin-top: 35px;
}

ul.comments .comment-arrow {
	border-right-color: #F5F7F7;
}

ul.comments .comment-block {
	background: #F5F7F7;
}

ul.comments li img.avatar {
	height: 80px;
	width: 80px;
}

ul.comments li .img-thumbnail {
	margin-top: 25px;
	margin-left: -115px;
	position: absolute;
}

ul.comments .comment-arrow {
	border-bottom: 15px solid transparent;
	border-right: 15px solid #333;
	border-top: 15px solid transparent;
	height: 0;
	left: -15px;
	position: absolute;
	top: 28px;
	width: 0;
}

ul.comments .comment-block .comment-by {
	display: block;
	font-size: 1em;
	line-height: 21px;
	margin: 0;
	padding: 0 0 5px;
}

ul.comments {
	list-style: outside none none;
	margin: 0;
	padding: 0;
}

ul.comments li {
	clear: both;
	padding: 10px 0 0 115px;
}

ul.comments li .comment {
	margin-bottom: 10px;
}

ul.comments {
	list-style: outside none none;
}

ul.comments .comment-block {
	background: none repeat scroll 0 0 #e8e8e8;
	border-radius: 5px;
	padding: 20px 20px 30px;
	position: relative;
	border:1px solid #333;
}

form#prodreview div.row div.col-sm-12 input {
	margin-top: 5px;
}

/* -----------------------------------------------------------
:: Library / components / tabs / services / services
----------------------------------------------------------- */
/* tabs vertical */
@media (min-width: 992px) {
.thumb.color.tabsv-wrapper {
	margin-left: 20px;
}

}
.tabsv .tab-content {
	padding: 0;
	border-radius: 0 5px 5px 5px;
	padding: 20px 20px 10px 20px;
}

.nav-tabs {
	border-bottom-color: transparent;
	font-size: 16px;
	margin-top: 0px;
	margin-bottom: -1px;
}

.nav-tabs > li > a {
	padding: 13px 20px;
	margin-right: 2px;
	margin-top: 0px;
	border: 1px solid rgba(208,62,42,0.9);
	color: rgba(208,62,42,1.00);
}

.nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus {
	border-bottom-color: transparent;
	background-color: rgba(208,62,42,0.9);
	color: rgba(208,62,42,1.00);
}

.tabsv .nav > li > a {
	border: 1px solid rgba(208,62,42,0.5);
	border-radius: 4px;
	margin-bottom: 5px;
	font-size: 16px;
	line-height: 1.7em;
}

.tabsv .nav > li > a:hover {
	color: rgba(208,62,42,0.5);
}

.tabsv .nav > li.active a {
	color: rgba(208,62,42,0.9);
}

.tabsv-wrapper .tab-content .tab-pane {
	margin-top: 0px;
	padding: 0px;
}

.tabsv-wrapper div.thumb-inner div.tab-content div#tab4.tab-pane.fade.active.in {
}

@media (min-width: 768px) 	{
.tabsv .nav {
	margin-right: -25px;
}

.tabsv .tab-content {
	border-radius: 5px;
}

.tabsv .nav > li.active {
	position: relative;
	z-index: 2;
}

.tabsv .nav > li.active a:after, .tabsv .nav > li.active a:before {
	display: block;
	content: '';
	width: 23px;
	height: 5px;
	position: absolute;
	right: -25px;
	top: 40%;
	margin-top: 0;
}

.tabsv .nav > li.active a:after, .tabsv .nav > li.active a:before {
	border-top: 5px solid rgba(208,62,42,0.5);
	border-bottom: 5px solid rgba(208,62,42,0.5);
}

.tabsv .nav > li.active a:after {
	border-left-color: rgba(208,62,42,0.5);
	border-left-width: 20px;
}

}
.tabsv .nav li a {
	margin-top: 4px;
	padding: 10px 20px;
}

/* -----------------------------------------------------------
:: Library / components / tabs / 2-column-left / 2-column-right
----------------------------------------------------------- */
/* sidebar */
#sidetab ul.nav-list.list2 > li {
	margin: 0;
	padding: 0;
}

#sidetab ul.nav-list.list2 > li a {
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
	background-position: 9px 16px;
	background-repeat: no-repeat;
	border-bottom: 1px solid rgba(208,62,42,0.90);
	padding: 8px 20px;
}

/* side tabs */
#sidetab.tabs {
	border-radius: 4px;
	margin-bottom: 35px;
}

#sidetab .nav-tabs.tabs1 {
	margin: 0;
	font-size: 0;
	border-bottom-color: rgba(208,62,42,0.90);
}

#sidetab .nav-tabs.tabs1 li {
	display: inline-block;
	float: none;
}

#sidetab .nav-tabs.tabs1 li:last-child a {
	margin-right: 0;
}

#sidetab .nav-tabs.tabs1 li a {
	border-radius: 5px 5px 0 0;
	font-size: 14px;
	margin-right: 1px;
}

#sidetab .nav-tabs.tabs1 li a, .nav-tabs.tabs1 li a:hover {
	background: rgba(232,232,232,0.25);
	border-bottom: none;
	border-left: 1px solid rgba(208,62,42,0.90);
	border-right: 1px solid rgba(208,62,42,0.90);
	border-top: 3px solid rgba(208,62,42,0.90);
	color: #333;
}

#sidetab .nav-tabs.tabs1 li a:hover {
	border-bottom-color: transparent;
	border-top: 1px solid rgba(208,62,42,0.90);
	box-shadow: none;
}

#sidetab .nav-tabs.tabs1 li a:active, .nav-tabs.tabs1 li a:focus {
	border-bottom: 0;
}

#sidetab .nav-tabs.tabs1 li.active a, .nav-tabs.tabs1 li.active a:hover, .nav-tabs.tabs1 li.active a:focus {
	background: rgba(232,232,232,0.25);
	border-left-color: rgba(208,62,42,0.90);
	border-right-color: rgba(208,62,42,0.90);
	border-top: 3px solid rgba(208,62,42,0.90);
	color: #D03E2A;
}

#sidetab .tab-content.tabs1 {
	border-radius: 0 0 4px 4px;
	box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.04);
	background: rgba(232,232,232,0.25);
	border: 1px solid rgba(208,62,42,0.90);
	border-top: 0;
	padding: 15px;
}

/* side tab content */
#sidetab ul.side-tabs1 {
	list-style: none;
	margin: 0;
	padding: 0;
}

#sidetab ul.side-tabs1 li {
	*zoom: 1;
	border-bottom: 1px dotted #E2E2E2;
	padding: 15px 0;
}

#sidetab ul.side-tabs1 li:before, ul.side-tabs1 li:after {
	content: " ";
	display: table;
}

#sidetab ul.side-tabs1 li:after {
	clear: both;
}

#sidetab ul.side-tabs1 li:last-child {
	border-bottom: 0;
}

#sidetab ul.side-tabs1 .side-tabs1-img {
	float: left;
	margin-right: 12px;
}

#sidetab ul.side-tabs1 .post-meta {
	color: #888;
	font-size: 0.8em;
}

/* -----------------------------------------------------------
:: Library / components / carousels / laptop / laptop
----------------------------------------------------------- */
/* owl carousel laptop */
.laptop-bg {
	background: url("../themed-images/pages/index/laptop-bg.webp") center center no-repeat;
	width: 672px;
	height: 360px;
	margin: auto;
}

#owl-laptop .item {
}

#owl-laptop .item img {
	margin-top: 27px;
	margin-left: 122px;
	max-width: 430px;
	max-height: 270px;
}

#owl-laptop .owl-next {
	display: none!important;
}

#owl-laptop .owl-prev {
	display: none!important;
}

/* -----------------------------------------------------------
:: Library / components / carousels / logos / logos
----------------------------------------------------------- */
/* owl carousel logo */
.owllogo .owl-next {
	position: absolute!important;
	right: -60px;
	top: 50px;
}

.owllogo .owl-prev {
	position: absolute!important;
	left: -60px;
	top: 50px;
}

#owl-logos.owllogo .owl-carousel.owl-theme.owl-loaded div.owl-controls div.owl-dots {
	margin-top: -120px;
	z-index: 99999;
	visibility: hidden;
}

#owl-logos.owllogo.owl-carousel.owl-theme.owl-loaded div.owl-controls {
	margin-top: -65px;
}

@media only screen and (max-width: 768px) {
#owl-logos .owl-stage-outer {
	overflow: visible;
}

}
/* -----------------------------------------------------------
:: Library / components / carousels / logos / logos
----------------------------------------------------------- */
/* owl carousel logo */
.breadcrumb-car .owl-next {
	display: none;
}

.breadcrumb-car .owl-prev {
	display: none;
}

#owl-breadcrumb.breadcrumb-car.owl-carousel.owl-theme.owl-loaded div.owl-controls div.owl-dots {
	margin-top: 0px;
	z-index: 99999;
}

#owl-breadcrumb.breadcrumb-car.owl-carousel.owl-theme.owl-loaded div.owl-controls div.owl-nav {
	display: none;
}

#owl-breadcrumb.breadcrumb-car.owl-carousel.owl-theme.owl-loaded div.owl-controls {
	position: absolute;
	bottom: -35px;
	left: 48%;
}

#owl-breadcrumb img {
	max-width: 75px;
	float: right;
	border-radius: 50%;
	border: 5px rgba(255,255,255,0.25) solid;
}

#owl-breadcrumb .con-heading2 {
	padding: 30px 55px 10px 55px;
}

#owl-breadcrumb .con-heading2.dark h3 {
	font-size: 20px;
}

#owl-breadcrumb .con-heading2.dark p {
	font-size: 12px;
}

#owl-breadcrumb .item {
	border-right: 1px solid #555555;
}

#owl-breadcrumb .item {
	border-left: -1px solid #555555;
}

@media (max-width: 991px) {
#owl-breadcrumb.breadcrumb-car.owl-carousel.owl-theme.owl-loaded div.owl-controls {
	bottom: -35px;
	left: 0%;
}

}
@media only screen and (max-width: 768px) {
#owl-breadcrumb .owl-stage-outer {
	overflow: visible;
}

}
/* -----------------------------------------------------------
:: Library / components / carousels / single / single
----------------------------------------------------------- */
/* owl carousel single */
#owl-single div.owl-dots {
	position: absolute;
	bottom: 5%;
	width: 100%;
}

#owl-single .owl-next {
	position: absolute!important;
	right: 20px;
	top: 43%;
}

#owl-single .owl-prev {
	position: absolute!important;
	left: 20px;
	top: 43%;
}

/* -----------------------------------------------------------
:: Library / components / carousels / about / about 
----------------------------------------------------------- */
/* owl carousel single */
#owl-about div.owl-dots {
	position: absolute;
	bottom: 5%;
	width: 100%;
}

#owl-about .owl-next {
	position: absolute!important;
	right: 20px;
	top: 43%;
}

#owl-about .owl-prev {
	position: absolute!important;
	left: 20px;
	top: 43%;
}

/* -----------------------------------------------------------
:: Library / components / carousels / customers / customers 
----------------------------------------------------------- */
#owl-customers .owl-nav {
	display: none;
}

#owl-customers .thumb-inner {
	padding-bottom: 40px;
}

#owl-customers .owl-controls {
	margin-top: -40px;
	z-index: 99999;
}

#owl-customers.team.owl-carousel.owl-theme.owl-loaded div {
	position: relative;
}

/* -----------------------------------------------------------
:: Library / components / carousels / welcome / welcome
----------------------------------------------------------- */
/* -----------------------------------------
:: BS CAROUSEL ANIMATION DELAYS
----------------------------------------- */
.delay-25 {
	-webkit-animation-delay: .250s;
	animation-delay: .250s;
}

.delay-50 {
	-webkit-animation-delay: .500s;
	animation-delay: .500s;
}

.delay-75 {
	-webkit-animation-delay: .750s;
	animation-delay: .75s;
}

.delay-100 {
	-webkit-animation-delay: 1.00s;
	animation-delay: 1.00s;
}

.delay-125 {
	-webkit-animation-delay: 1.25s;
	animation-delay: 1.25s;
}

.delay-150 {
	-webkit-animation-delay: 1.50s;
	animation-delay: 1.50s;
}

.delay-175 {
	-webkit-animation-delay: 1.75s;
	animation-delay: 1.75s;
}

.delay-200 {
	-webkit-animation-delay: 2.00s;
	animation-delay: 2.00s;
}

.delay-225 {
	-webkit-animation-delay: 2.25s;
	animation-delay: 2.25s;
}

.delay-250 {
	-webkit-animation-delay: 2.50s;
	animation-delay: 2.50s;
}

.delay-275 {
	-webkit-animation-delay: 2.75s;
	animation-delay: 2.75s;
}

.delay-300 {
	-webkit-animation-delay: 3.00s;
	animation-delay: 3.00s;
}

.delay-325 {
	-webkit-animation-delay: 3.25s;
	animation-delay: 3.25s;
}

.delay-350 {
	-webkit-animation-delay: 3.50s;
	animation-delay: 3.50s;
}

.delay-375 {
	-webkit-animation-delay: 3.75s;
	animation-delay: 3.75s;
}

.delay-400 {
	-webkit-animation-delay: 4.00s;
	animation-delay: 4.00s;
}

.delay-425 {
	-webkit-animation-delay: 4.25s;
	animation-delay: 4.25s;
}

.delay-450 {
	-webkit-animation-delay: 4.50s;
	animation-delay: 4.50;
}

.delay-475 {
	-webkit-animation-delay: 4.75s;
	animation-delay: 4.75s;
}

.delay-500 {
	-webkit-animation-delay: 5.00s;
	animation-delay: 5.00s;
}

/* -----------------------------------------
:: INDEX BOX CAROUSEL
----------------------------------------- */
/* -----------------------------------------------------------
:: OWL CAROUSEL 2.0 
----------------------------------------------------------- */
.owl-carousel .item-video {
	height: 300px;
}

.owl-carousel .animated {
	-webkit-animation-duration: 1000ms;
	animation-duration: 1000ms;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}

.owl-carousel .owl-animated-in {
	z-index: 0;
}

.owl-carousel .owl-animated-out {
	z-index: 1;
}

.owl-carousel .fadeOut {
	-webkit-animation-name: fadeOut;
	animation-name: fadeOut;
}

@-webkit-keyframes fadeOut{0%{opacity:1}100%{opacity:0}}
@keyframes fadeOut{0%{opacity:1}100%{opacity:0}}
.owl-height {
	-webkit-transition: height 500ms ease-in-out;
	-moz-transition: height 500ms ease-in-out;
	-ms-transition: height 500ms ease-in-out;
	-o-transition: height 500ms ease-in-out;
	transition: height 500ms ease-in-out;
}

.owl-carousel {
	display: none;
	width: 100%;
	-webkit-tap-highlight-color: transparent;
	position: relative;
	z-index: 1;
}

.owl-carousel .owl-stage {
	position: relative;
	-ms-touch-action: pan-Y;
}

.owl-carousel .owl-stage:after {
	content: ".";
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0;
}

.owl-carousel .owl-stage-outer {
	position: relative;
	overflow: hidden;
	-webkit-transform: translate3d(0px,0,0);
}

.owl-carousel .owl-controls .owl-dot, .owl-carousel .owl-controls .owl-nav .owl-next, .owl-carousel .owl-controls .owl-nav .owl-prev {
	cursor: pointer;
	cursor: hand;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.owl-carousel.owl-loaded {
	display: block;
}

.owl-carousel.owl-loading {
	opacity: 0;
	display: block;
}

.owl-carousel.owl-hidden {
	opacity: 0;
}

.owl-carousel .owl-refresh .owl-item {
	display: none;
}

.owl-carousel .owl-item {
	position: relative;
	min-height: 1px;
	float: left;
	-webkit-backface-visibility: hidden;
	-webkit-tap-highlight-color: transparent;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.owl-carousel .owl-item img {
	display: block;
	width: 100%;
	-webkit-transform-style: preserve-3d;
}

.owl-carousel.owl-text-select-on .owl-item {
	-webkit-user-select: auto;
	-moz-user-select: auto;
	-ms-user-select: auto;
	user-select: auto;
}

.owl-carousel .owl-grab {
	cursor: move;
	cursor: -webkit-grab;
	cursor: -o-grab;
	cursor: -ms-grab;
	cursor: grab;
}

.owl-carousel.owl-rtl {
	direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
	float: right;
}

.no-js .owl-carousel {
	display: block;
}

.owl-carousel .owl-item .owl-lazy {
	opacity: 0;
	-webkit-transition: opacity 400ms ease;
	-moz-transition: opacity 400ms ease;
	-ms-transition: opacity 400ms ease;
	-o-transition: opacity 400ms ease;
	transition: opacity 400ms ease;
}

.owl-carousel .owl-item img {
	transform-style: preserve-3d;
}

.owl-carousel .owl-video-wrapper {
	position: relative;
	height: 100%;
	background: #000;
}

.owl-carousel .owl-video-play-icon {
	position: absolute;
	height: 80px;
	width: 80px;
	left: 50%;
	top: 50%;
	margin-left: -40px;
	margin-top: -40px;
	background: url('../graphics/owl.video.play.webp') no-repeat;
	cursor: pointer;
	z-index: 1;
	-webkit-backface-visibility: hidden;
	-webkit-transition: scale 100ms ease;
	-moz-transition: scale 100ms ease;
	-ms-transition: scale 100ms ease;
	-o-transition: scale 100ms ease;
	transition: scale 100ms ease;
}

.owl-carousel .owl-video-play-icon:hover {
	-webkit-transition: scale(1.3,1.3);
	-moz-transition: scale(1.3,1.3);
	-ms-transition: scale(1.3,1.3);
	-o-transition: scale(1.3,1.3);
	transition: scale(1.3,1.3);
}

.owl-carousel .owl-video-playing .owl-video-play-icon, .owl-carousel .owl-video-playing .owl-video-tn {
	display: none;
}

.owl-carousel .owl-video-tn {
	opacity: 0;
	height: 100%;
	background-position: center center;
	background-repeat: no-repeat;
	-webkit-background-size: contain;
	-moz-background-size: contain;
	-o-background-size: contain;
	background-size: contain;
	-webkit-transition: opacity 400ms ease;
	-moz-transition: opacity 400ms ease;
	-ms-transition: opacity 400ms ease;
	-o-transition: opacity 400ms ease;
	transition: opacity 400ms ease;
}

.owl-carousel .owl-video-frame {
	position: relative;
	z-index: 1;
}

/* theme here */
.owl-theme .owl-controls {
	margin-top: 10px;
	text-align: center;
	-webkit-tap-highlight-color: transparent;
}

.owl-theme .owl-controls .owl-nav [class*=owl-] {
	color: #fff;
	font-size: 12px;
	margin: 5px;
	padding-top: 10px;
	display: inline-block;
	cursor: pointer;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
	width: 40px;
	height: 40px;
	text-align: center;
	box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.75);
	position: relative;
	-webkit-box-shadow: inset 0px 0px 10px 0px rgba(0,0,0,0.25);
	-moz-box-shadow: inset 0px 0px 10px 0px rgba(0,0,0,0.25);
	box-shadow: inset 0px 0px 10px 0px rgba(0,0,0,0.25);
}

.owl-next {
	color: #fff;
	background: #555555 url('../graphics/arrow-next.webp') top left;
}

.owl-prev {
	color: #fff;
	background: #555555 url('../graphics/arrow-prev.webp') top right;
}

.owl-theme .owl-controls .owl-nav [class*=owl-]:hover {
	background: #D03E2A;
	color: #fff;
	text-decoration: none;
}

.owl-theme .owl-controls .owl-nav .disabled {
	opacity: .5;
	cursor: default;
}

.owl-theme .owl-dots .owl-dot {
	display: inline-block;
	zoom: 1;
}

.owl-theme .owl-dots .owl-dot span {
	width: 10px;
	height: 10px;
	margin: 5px 7px;
	background: #555555;
	display: block;
	-webkit-backface-visibility: visible;
	-webkit-transition: opacity 200ms ease;
	-moz-transition: opacity 200ms ease;
	-ms-transition: opacity 200ms ease;
	-o-transition: opacity 200ms ease;
	transition: opacity 200ms ease;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	border-radius: 30px;
}

.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
	background: #000;
}

}
/* -----------------------------------------
:: BACK TO TOP 
----------------------------------------- */
.cd-top {
	display: inline-block;
	height: 40px;
	width: 40px;
	position: fixed;
	bottom: 10px;
	right: 10px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
	overflow: hidden;
	text-indent: 100%;
	white-space: nowrap;
	background: url(../graphics/back-to-top-arrow.webp) no-repeat center 50%;
	visibility: hidden;
	opacity: 0;
	-webkit-transition: opacity .3s 0s, visibility 0s .3s;
	-moz-transition: opacity .3s 0s, visibility 0s .3s;
	transition: opacity .3s 0s, visibility 0s .3s;
}

.cd-top.cd-is-visible, .cd-top.cd-fade-out, .no-touch .cd-top:hover {
	-webkit-transition: opacity .3s 0s, visibility 0s 0s;
	-moz-transition: opacity .3s 0s, visibility 0s 0s;
	transition: opacity .3s 0s, visibility 0s 0s;
}

.cd-top.cd-is-visible {
	/* the button becomes visible */
  visibility: visible;
	opacity: .5;
}

.cd-top.cd-fade-out {
	/* if the user keeps scrolling down, the button is out of focus and becomes less visible */
	opacity: .5;
}

.no-touch .cd-top:hover {
	opacity: 1;
}

/* -----------------------------------------
:: BUTTONS 
----------------------------------------- */
@keyframes barberpole {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 10px 0px;
  }
}
/*theme btn*/
.theme-btn {
	padding: 3px;
	position: relative;
	margin: 0;
	width: auto;
	display: inline-block;
	color: #ffffff;
}

.theme-btn a {
	color: #ffffff;
	color: rgba(255,255,255,0.85);
	transition: all .3s ease;
}

.theme-btn a:hover {
	color: #ffffff;
	color: rgba(255,255,255,1.0);
}

.theme-btn-hover {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border-radius: 0px;
	box-sizing: border-box;
	opacity: 1;
	transition: opacity 0.3s ease;
}

.theme-btn-inner {
	background: rgba(237,28,36,1.0);
	padding: 10px 20px 10px 20px;
	position: relative;
	border-radius: 0px;
	box-sizing: border-box;
	border: 1px solid transparent;
	transition: all .3s ease;
}

.theme-btn-inner:hover {
	background: rgba(237,28,36,0.90);
	border: 1px solid transparent;
	box-shadow: 0px 0px #F6887A, 0px 0px #F6887A, 0px 0px #F6887A;
}

.theme-btn-arrow {
	width: 0;
	height: 0;
	border-top: 21px solid transparent;
	border-left: 0px solid rgba(0,0,0,0.2);
	border-bottom: 21px solid transparent;
	position: absolute;
	top: 0;
	left: 0px;
	opacity: 0;
	transition: all .3s ease;
	overflow: hidden;
}

.theme-btn-inner:hover .theme-btn-arrow {
	border-left: 20px solid rgba(0,0,0,0.5);
	left: 0px;
	opacity: 1;
}

/*prev-btn */
.theme-btn.prev-btn {
	width: 46px;
	height: 46px;
}

.prev-btn .theme-btn-inner {
	width: 40px;
	height: 40px;
}

.prev-btn-arrow {
	width: 0;
	height: 0;
	border-top: 20px solid transparent;
	border-right: 20px solid rgba(0,0,0,0.2);
	border-bottom: 20px solid transparent;
	position: absolute;
	top: 0;
	right: 0;
	transition: all .3s ease;
}

.prev-btn .theme-btn-inner:hover .prev-btn-arrow {
	border-right: 25px solid rgba(0,0,0,0.5);
}

/*next-btn */
.theme-btn.next-btn {
	width: 46px;
	height: 46px;
}

.next-btn .theme-btn-inner {
	width: 40px;
	height: 40px;
}

.next-btn-arrow {
	width: 0;
	height: 0;
	border-top: 20px solid transparent;
	border-left: 20px solid rgba(0,0,0,0.2);
	border-bottom: 20px solid transparent;
	position: absolute;
	top: 0;
	left: 0;
	transition: all .3s ease;
}

.next-btn .theme-btn-inner:hover .next-btn-arrow {
	border-left: 25px solid rgba(0,0,0,0.5);
}

/*round-btn*/
.round-btn {
	padding: 3px;
	position: relative;
	margin: 0;
	width: auto;
	display: inline-block;
	border-radius: 50%;
}

.round-btn:hover .round-btn-hover, .round-btn:active .round-btn-hover {
	animation: barberpole 0.3s linear infinite;
}

.round-btn-hover {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	box-sizing: border-box;
	border-radius: 50%;
	opacity: 1;
	transition: opacity 0.3s ease;
	background-size: 10px 15px;
	background-image: linear-gradient(45deg, rgba(0, 0, 0, 0.1) 10%, rgba(0, 0, 0, 0) 10%, rgba(0, 0, 0, 0) 20%, rgba(0, 0, 0, 0.1) 20%, rgba(0, 0, 0, 0.1) 30%, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.1) 40%, rgba(0, 0, 0, 0.1) 50%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0) 60%, rgba(0, 0, 0, 0.1) 60%, rgba(0, 0, 0, 0.1) 70%, rgba(0, 0, 0, 0) 70%, rgba(0, 0, 0, 0) 80%, rgba(0, 0, 0, 0.1) 80%, rgba(0, 0, 0, 0.1) 90%, rgba(0, 0, 0, 0) 90%, rgba(0, 0, 0, 0) );
}

.round-btn-inner {
	background: #555555 url('../graphics/stripe.webp');
	padding: 20px;
	position: relative;
	border-radius: 50%;
	box-sizing: border-box;
	-webkit-box-shadow: inset 0px 0px 10px 0px rgba(0,0,0,0.25);
	-moz-box-shadow: inset 0px 0px 10px 0px rgba(0,0,0,0.25);
	box-shadow: inset 0px 0px 10px 0px rgba(0,0,0,0.25);
	transition: all .3s ease;
}

.round-btn-inner:hover {
	background: #555555;
}

.round-btn-sm .round-btn-inner {
	padding: 15px;
}

.corner-icon {
	background: #555555 url('../graphics/stripe.webp');
	width: 33px;
	height: 33px;
	position: relative;
	border-radius: 0;
	box-sizing: border-box;
	-webkit-box-shadow: inset 0px 0px 10px 0px rgba(0,0,0,0.25);
	-moz-box-shadow: inset 0px 0px 10px 0px rgba(0,0,0,0.25);
	box-shadow: inset 0px 0px 10px 0px rgba(0,0,0,0.25);
	transition: all .3s ease;
}

.icon-bg-tl {
	border-radius: 0 0 5px 0;
}

.icon-bg-bl {
	border-radius: 0 5px 0 0;
}

.icon-bg-tr {
	border-radius: 0 0 0 5px;
}

.icon-bg-br {
	border-radius: 5px 0 0 0;
}

.news-btn {
}

/*news btn*/
.news-btn {
	padding: 3px;
	position: relative;
	margin: 0;
	width: auto;
	display: inline-block;
	border: 1px solid rgba(237,28,36,0.90);
}

.news-btn-hover {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border-radius: 3px;
	box-sizing: border-box;
	opacity: 1;
	transition: opacity 0.3s ease;
}

.news-btn-inner {
	background: rgba(237,28,36,1.0) url('../graphics/stripe.webp');
	padding-top: 23px;
	width: 74px;
	height: 74px;
	position: relative;
	border-radius: 0px;
	box-sizing: border-box;
	-webkit-box-shadow: inset 0px 0px 10px 0px rgba(0,0,0,0.25);
	-moz-box-shadow: inset 0px 0px 10px 0px rgba(0,0,0,0.25);
	box-shadow: inset 0px 0px 10px 0px rgba(0,0,0,0.25);
	transition: all .3s ease;
	text-align: center;
	color:#ffffff;
}

.news-btn-inner a {
	color: #ffffff;
}

.news-btn-inner:hover {
	background: rgba(237,28,36,0.90);
}

/*quotes btn*/
.btn-quotes {
	border-radius: 25px;
	padding: 10px 100px;
	background: #555555;
	width: 400px;
}

.btn-quotes span img {
	border-radius: 50%;
	border: 5px solid #555555;
	max-width: 90px;
	max-height: 90px;
}

/* -----------------------------------------
:: THUMBNAIL EFFECTS 
----------------------------------------- */
/*thumb background marching ants animation */
@keyframes thumbbg {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 10px 0px;
  }
}
/*thumb hover effects*/
.colored.thm-hover1 .mask1, .colored.thm-hover1 .mask2 {
	background: #555555;
	background: rgba(0,0,0,0.25);
}

.thm {
	position: relative;
	-webkit-transition: all 0.35s ease;
	-moz-transition: all 0.35s ease;
	transition: all 0.35s ease;
}

.thm, .thm * {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.thm a {
	color: #ffffff;
}

.thm a:hover {
	text-decoration: none;
}

.thm img {
	width: 100%;
	height: 100%;
}

.thm.content {
	position: relative;
	width: auto;
	height: auto;
}

.thm-hover1 {
	overflow: hidden;
	position: relative;
}

.thm-hover1 .thm-img {
	-webkit-transition: all 0.35s ease;
	-moz-transition: all 0.35s ease;
	transition: all 0.35s ease;
}

.thm-hover1 .mask1 {
	position: absolute;
	background: #333333;
	background: rgba(0, 0, 0, 0.3);
	height: 200%;
	width: 200%;
	-webkit-transition: all .7s ease;
	-moz-transition: all .7s ease;
	transition: all .7s ease;
}

.thm-hover1 .mask2 {
	position: absolute;
	background: #333333;
	background: rgba(0, 0, 0, 0.3);
	height: 200%;
	width: 200%;
	-webkit-transition: all 2s ease;
	-moz-transition: all 2s ease;
	transition: all 2s ease;
}

.thm-hover1 .mask1 {
	left: auto;
	right: 0;
	top: 0;
	-webkit-transform: rotate(56.5deg) translateX(150%);
	-moz-transform: rotate(56.5deg) translateX(150%);
	-ms-transform: rotate(56.5deg) translateX(150%);
	-o-transform: rotate(56.5deg) translateX(150%);
	transform: rotate(56.5deg) translateX(150%);
	-webkit-transform-origin: 100% 0%;
	-moz-transform-origin: 100% 0%;
	-ms-transform-origin: 100% 0%;
	-o-transform-origin: 100% 0%;
	transform-origin: 100% 0%;
}

.thm-hover1 .mask2 {
	top: auto;
	bottom: 0;
	left: 0;
	-webkit-transform: rotate(56.5deg) translateX(-150%);
	-moz-transform: rotate(56.5deg) translateX(-150%);
	-ms-transform: rotate(56.5deg) translateX(-150%);
	-o-transform: rotate(56.5deg) translateX(-150%);
	transform: rotate(56.5deg) translateX(-150%);
	-webkit-transform-origin: 0% 100%;
	-moz-transform-origin: 0% 100%;
	-ms-transform-origin: 0% 100%;
	-o-transform-origin: 0% 100%;
	transform-origin: 0% 100%;
}

.thm-hover1:hover .mask1 {
	-webkit-transform: rotate(56.5deg) translateX(50%);
	-moz-transform: rotate(56.5deg) translateX(50%);
	-ms-transform: rotate(56.5deg) translateX(50%);
	-o-transform: rotate(56.5deg) translateX(50%);
	transform: rotate(56.5deg) translateX(50%);
}

.thm-hover1:hover .mask2 {
	-webkit-transform: rotate(56.5deg) translateX(-50%);
	-moz-transform: rotate(56.5deg) translateX(-50%);
	-ms-transform: rotate(56.5deg) translateX(-50%);
	-o-transform: rotate(56.5deg) translateX(-50%);
	transform: rotate(56.5deg) translateX(-50%);
}

.thm-hover1 .thm-img {
	-webkit-transition: all .5s ease;
	-moz-transition: all 0.5s ease;
	transition: all .5s ease;
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);
}

.thm-hover1:hover .thm-img {
	-webkit-transform: scale(1.2);
	-moz-transform: scale(1.2);
	-ms-transform: scale(1.2);
	-o-transform: scale(1.2);
	transform: scale(1.2);
}

/*thm carousel effects*/
.thm.content.thm-hover2 {
	overflow: hidden;
}

.thm.content.thm-hover2 .thm-img {
	opacity: 1;
	-webkit-transition: all 0.35s ease-in-out;
	-moz-transition: all 0.35s ease-in-out;
	transition: all 0.35s ease-in-out;
}

.thm.content.thm-hover2:hover .thm-img {
	opacity: 0;
}

.thm.content.thm-hover2:hover .info {
	visibility: visible;
	opacity: 1;
}

.thm.content.thm-hover2.scale_up .thm-img {
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);
}

.thm.content.thm-hover2.scale_up .info {
	-webkit-transform: scale(0);
	-moz-transform: scale(0);
	-ms-transform: scale(0);
	-o-transform: scale(0);
	transform: scale(0);
}

.thm.content.thm-hover2.scale_up .info h3, .thm.content.thm-hover2.scale_up .info p {
	-webkit-transform: scale(0);
	-moz-transform: scale(0);
	-ms-transform: scale(0);
	-o-transform: scale(0);
	transform: scale(0);
}

.thm.content.thm-hover2.scale_up:hover .thm-img {
	-webkit-transform: scale(5);
	-moz-transform: scale(5);
	-ms-transform: scale(5);
	-o-transform: scale(5);
	transform: scale(5);
}

.thm.content.thm-hover2.scale_up:hover .info {
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);
}

.thm.content.thm-hover2.scale_up:hover .info h3, .thm.content.thm-hover2.scale_up:hover .info p {
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);
}

.thm.content.thm-hover2.scale_down .thm-img {
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);
}

.thm.content.thm-hover2.scale_down .info {
	-webkit-transform: scale(5);
	-moz-transform: scale(5);
	-ms-transform: scale(5);
	-o-transform: scale(5);
	transform: scale(5);
}

.thm.content.thm-hover2.scale_down .info h3, .thm.content.thm-hover2.scale_down .info p {
	-webkit-transform: scale(5);
	-moz-transform: scale(5);
	-ms-transform: scale(5);
	-o-transform: scale(5);
	transform: scale(5);
}

.thm.content.thm-hover2.scale_down:hover .thm-img {
	-webkit-transform: scale(0.5);
	-moz-transform: scale(0.5);
	-ms-transform: scale(0.5);
	-o-transform: scale(0.5);
	transform: scale(0.5);
}

.thm.content.thm-hover2.scale_down:hover .info {
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);
}

.thm.content.thm-hover2.scale_down:hover .info h3, .thm.content.thm-hover2.scale_down:hover .info p {
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);
}

.thm-corners {
	position: absolute;
	transition-duration: 0.3s;
	width: 100%;
	z-index: 3;
}

.thm-corners::before, .thm-corners::after {
	border-color: rgba(255,255,255,0.5);
	border-style: solid;
	content: "";
	height: 20px;
	position: absolute;
	transform: translateZ(0px);
	transition-duration: 0.3s;
	width: 20px;
}

.thm-corners::before {
	left: 25px;
}

.thm-corners::after {
	right: 25px;
}

.thm-corners.top-corners {
	top: 25px;
}

.thm-corners.bottom-corners {
	bottom: 45px;
}

.thm-hover1:hover .thm-corners.top-corners {
	top: -20px;
}

.thm-hover1:hover .thm-corners.bottom-corners {
	bottom: -10px;
}

.thm-hover1:hover .thm-corners::before {
	left: -20px;
	border-color: rgba(255,255,255,0.0);
}

.thm-hover1:hover .thm-corners::after {
	right: -20px;
	border-color: rgba(255,255,255,0.0);
}

.thm-corners.top-corners::before {
	border-width: 1px 0 0 1px;
}

.thm-corners.top-corners::after {
	border-width: 1px 1px 0 0;
}

.thm-corners.bottom-corners::before {
	border-width: 0 0 1px 1px;
}

.thm-corners.bottom-corners::after {
	border-width: 0 1px 1px 0;
}

/* -----------------------------------------
:: .thumb
----------------------------------------- */
.thumb {
	padding: 0px;
	position: relative;
	display: inline-block;
	margin: 5px;
}

.thm-img img {
	width: 100%;
}

.thumb.margin0 {
	margin: 0px;
}

/*thumb background animation marching ants*/
.thumb:hover .thumb-hover, .thumb:active .thumb-hover {
	animation: thumbbg 0.3s linear infinite;
}

.thumb-hover {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border-radius: 0px;
	box-sizing: border-box;
	opacity: 1;
	transition: opacity 0.3s ease;
	/*
	background-size: 10px 15px;
	background-image: linear-gradient(45deg, rgba(0, 0, 0, 0.1) 10%, rgba(0, 0, 0, 0) 10%, rgba(0, 0, 0, 0) 20%, rgba(0, 0, 0, 0.1) 20%, rgba(0, 0, 0, 0.1) 30%, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.1) 40%, rgba(0, 0, 0, 0.1) 50%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0) 60%, rgba(0, 0, 0, 0.1) 60%, rgba(0, 0, 0, 0.1) 70%, rgba(0, 0, 0, 0) 70%, rgba(0, 0, 0, 0) 80%, rgba(0, 0, 0, 0.1) 80%, rgba(0, 0, 0, 0.1) 90%, rgba(0, 0, 0, 0) 90%, rgba(0, 0, 0, 0) );
	*/
}

/*thumb inner content container*/
.thumb-inner {
	background: #e8e8e8;
	background: rgba(232,232,232,0.25);
/*border: 1px solid rgba(0,0,0,1);*/padding: 5px;
	position: relative;
	border-radius: 0px;
	box-sizing: border-box;
	transition: all .5s ease;
	overflow: hidden;
}

.thumb-inner:hover {
	background: rgba(255,255,255,1.0);
}

/* -----------------------------------------
:: .thumb.color
----------------------------------------- */
.thumb.color .thumb-inner {
	border: 1px solid rgba(237,28,36,1.0);
	box-shadow: inset 0px 15px 0px 0px rgba(237,28,36,1.0);
}

.thumb.color .thumb-inner:hover {
	border: 1px solid rgba(237,28,36,0.9);
	box-shadow: inset 0px 15px 0px 0px rgba(237,28,36,0.90);
}

/* -----------------------------------------
:: .thumb.dark
----------------------------------------- */
.thumb.dark .thumb-hover {
	border-radius: 3px;
	/*
	background-image: linear-gradient(45deg, rgba(0, 0, 0, 1.0) 10%, rgba(0, 0, 0, 0) 10%, rgba(0, 0, 0, 0) 20%, rgba(0, 0, 0, 1.0) 20%, rgba(0, 0, 0, 1.0) 30%, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 1.0) 40%, rgba(0, 0, 0, 1.0) 50%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0) 60%, rgba(0, 0, 0, 1.0) 60%, rgba(0, 0, 0, 1.0) 70%, rgba(0, 0, 0, 0) 70%, rgba(0, 0, 0, 0) 80%, rgba(0, 0, 0, 1.0) 80%, rgba(0, 0, 0, 1.0) 90%, rgba(0, 0, 0, 0) 90%, rgba(0, 0, 0, 0) );*/
}

.thumb.dark .thumb-inner {
	background: #ED1C24;
	border: 0px solid #555555;
	padding: 4px;
}

/* -----------------------------------------
:: .thumb.content
----------------------------------------- */
/*title*/
.thm-title {
	position: absolute;
	top: 20%;
	left: -100%;
	width: auto;
	height: auto;
	text-align: left;
	border-radius: 0 5px 5px 0;
	padding: 5px 20px;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	background: rgba(0,0,0,0.5);
	visibility: hidden;
	-webkit-transition: all 0.25s ease;
	-moz-transition: all 0.25s ease;
	transition: all 0.25s ease;
}

.thm-title h3 {
	font-size: 25px;
	color: #ffffff;
	font-weight: 300;
	margin: 0;
}

.thm-title h3 span {
	font-weight: 800;
}

.thm-hover1:hover .thm-title {
	visibility: visible;
	left: 0%;
	opacity: 1;
}

.colored .thm-title {
	background: rgba(12, 34, 52, 0.6);
}

/*readmore*/
.thm-readmore {
	position: absolute;
	bottom: 10%;
	left: -100%;
	width: auto;
	height: auto;
	text-align: left;
	padding: 5px 20px;
	border-radius: 0 5px 5px 0;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	background: url('../graphics/list3.webp') 100px center no-repeat;
	visibility: hidden;
	-webkit-transition: all 0.35s ease;
	-moz-transition: all 0.35s ease;
	transition: all 0.35s ease;
}

.thm-readmore span a {
	font-size: 14px;
	color: #ffffff;
}

.thm-readmore span a:hover {
	color: #aaa;
	color: rgba(255,255,255,0.65);
}

.thm-hover1:hover .thm-readmore {
	visibility: visible;
	left: 0%;
	opacity: 1;
	background: url('../graphics/list3.webp') 10px 15px no-repeat;
}

.colored .thm-readmore {
	background: rgba(12, 34, 52, 0.6);
}

/*desc*/
.thm-desc {
	position: absolute;
	left: -100%;
	width: 80%;
	height: auto;
	text-align: left;
	padding: 5px 20px 10px 20px;
	border-radius: 0 5px 5px 0;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	background: rgba(0,0,0,0.5);
	visibility: hidden;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	transition: all 0.5s ease;
	line-height: 1;
	opacity: 0;
}

.thm-desc:before {
	width: 98px;
	content: " ";
	background-image: url('../graphics/ih-desc-top.webp');
	position: absolute;
	left: 10px;
	top: -10px;
	height: 1px;
}

.thm-desc:after {
	width: 98px;
	content: " ";
	background-image: url('../graphics/ih-desc-top.webp');
	position: absolute;
	left: 10px;
	bottom: -10px;
	height: 1px;
}

.thm-desc span {
	font-size: 14px;
	color: #ffffff;
}

.thm-hover1:hover .thm-desc {
	visibility: visible;
	left: 0%;
	opacity: 1;
}

.colored .thm-desc {
	background: rgba(12, 34, 52, 0.6);
}

/* corner icons*/
.thm-link i, .thm-fancy i, .thm-top-left i, .thm-top-right i, .thm-bottom-left i, .thm-bottom-right i {
	position: absolute;
	width: 33px;
	height: 33px;
	text-align: center;
	color: #ffffff;
	padding: 10px;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	background: #555555;
	-webkit-box-shadow: inset 0px 0px 10px 0px rgba(0,0,0,0.25);
	-moz-box-shadow: inset 0px 0px 10px 0px rgba(0,0,0,0.25);
	box-shadow: inset 0px 0px 10px 0px rgba(0,0,0,0.25);
	visibility: hidden;
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	transition: all 0.2s ease;
}

.thm-link i:hover, .thm-fancy i:hover, .thm-top-left i:hover, .thm-top-right i:hover, .thm-bottom-left i:hover, .thm-bottom-right i:hover {
	background: #222222;
	background: rgba(0,0,0,0.5);
}

/*link*/
.thm-link i {
	top: -50px;
	right: -50px;
	border-radius: 0 0 0 5px;
}

.thm-hover1:hover .thm-link i {
	visibility: visible;
	top: 1px;
	right: 1px;
}

/*fancy*/
.thm-fancy i {
	bottom: -50px;
	right: -50px;
	border-radius: 5px 0 0 0;
}

.thm-hover1:hover .thm-fancy i {
	visibility: visible;
	bottom: 1px;
	right: 1px;
}

/* -----------------------------------------
:: .thumb.content2
----------------------------------------- */
/*title*/
.thumb-content2 .thm-title {
	position: absolute;
	top: 0px;
	left: 0%;
	width: 100%;
	text-align: center;
	border-radius: 0 5px 5px 0;
	padding: 5px 20px;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	background: none;
	visibility: hidden;
	-webkit-transition: all 0.25s ease;
	-moz-transition: all 0.25s ease;
	transition: all 0.25s ease;
	opacity: 0;
}

.thumb-content2 .thm-title h3 {
	font-size: 30px;
	color: #ffffff;
	font-weight: 300;
	margin: 0;
	text-shadow: 0px 0px 10px #4DD2FF;
	text-align: center;
}

.thumb-content2 .thm-hover1:hover .thm-title {
	visibility: visible;
	top: 120px;
	left: 0%;
	opacity: 1;
}

/*desc*/
.thumb-content2 .thm-desc {
	position: absolute;
	top: 0px;
	left: 0%;
	width: 100%;
	text-align: center;
	padding: 5px 20px 10px 20px;
	border-radius: 0 5px 5px 0;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	background: rgba(0,0,0,0.0);
	visibility: hidden;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	transition: all 0.5s ease;
	line-height: 1;
	opacity: 0;
}

.thumb-content2 .thm-desc:before {
	background-image: none;
}

.thumb-content2 .thm-desc:after {
	background-image: none;
}

.thumb-content2 .thm-desc span {
	font-size: 16px;
	color: #ffffff;
}

.thumb-content2 .thm-hover1:hover .thm-desc {
	visibility: visible;
	top: 150px;
	left: 0%;
	opacity: 1;
}

/* corner icons*/
.thm-link i, .thm-fancy i, .thm-top-left i, .thm-top-right i, .thm-bottom-left i, .thm-bottom-right i {
	position: absolute;
	width: 33px;
	height: 33px;
	text-align: center;
	color: #ffffff;
	padding: 10px;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	background: #555555;
	-webkit-box-shadow: inset 0px 0px 10px 0px rgba(0,0,0,0.0);
	-moz-box-shadow: inset 0px 0px 10px 0px rgba(0,0,0,0.0);
	box-shadow: inset 0px 0px 10px 0px rgba(0,0,0,0.0);
	visibility: hidden;
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	transition: all 0.2s ease;
}

.thm-link i:hover, .thm-fancy i:hover, .thm-top-left i:hover, .thm-top-right i:hover, .thm-bottom-left i:hover, .thm-bottom-right i:hover {
	background: #222222;
	background: rgba(0,0,0,0.5);
}

/*link*/
.thm-link i {
	top: -50px;
	right: -50px;
	border-radius: 0 0 0 5px;
}

.thm-hover1:hover .thm-link i {
	visibility: visible;
	top: 1px;
	right: 1px;
}

/*fancy*/
.thm-fancy i {
	bottom: -50px;
	right: -50px;
	border-radius: 5px 0 0 0;
}

.thm-hover1:hover .thm-fancy i {
	visibility: visible;
	bottom: 1px;
	right: 1px;
}

/* -----------------------------------------
:: .thumb.social
----------------------------------------- */
.thumb-social .thm-desc:before {
	background-image: none;
}

.thumb-social .thm-desc:after {
	background-image: none;
}

.thm-top-left i {
	top: -50px;
	left: -50px;
	border-radius: 0 0 5px 0;
}

.thm-hover1:hover .thm-top-left i {
	visibility: visible;
	top: 1px;
	left: 1px;
}

/*icon top right*/
.thm-top-right i {
	top: -50px;
	right: -50px;
	border-radius: 0 0 0 5px;
}

.thm-hover1:hover .thm-top-right i {
	visibility: visible;
	top: 1px;
	right: 1px;
}

/*icon bottom right*/
.thm-bottom-right i {
	bottom: -50px;
	right: -50px;
	border-radius: 5px 0 0 0;
}

.thm-hover1:hover .thm-bottom-right i {
	visibility: visible;
	bottom: 1px;
	right: 1px;
}

/*icon bottom left*/
.thm-bottom-left i {
	bottom: -50px;
	left: -50px;
	border-radius: 0 5px 0 0;
}

.thm-hover1:hover .thm-bottom-left i {
	visibility: visible;
	bottom: 1px;
	left: 1px;
}

/* -----------------------------------------
:: .thumb.social-gallery
----------------------------------------- */
/* -----------------------------------------
:: .thumb.carousel
----------------------------------------- */
.thm.content.thm-hover2.colored .info {
	background: #555555;
}

.thm.content.thm-hover2.colored .info h3 {
	background: rgba(12, 34, 52, 0.6);
}

.thm.content .info {
	backface-visibility: hidden;
	bottom: 0;
	left: 0;
	position: absolute;
	right: 0;
	text-align: center;
	top: 0;
}

.thm.content.thm-hover2 .info {
	background: #ffffff;
	visibility: hidden;
	opacity: 0;
	border: 1px solid #ED1C24;
	-webkit-box-shadow: inset 0px 0px 50px 0px rgba(0,0,0,0.25);
	-moz-box-shadow: inset 0px 0px 50px 0px rgba(0,0,0,0.25);
	box-shadow: inset 0px 0px 50px 0px rgba(0,0,0,0.25);
	-webkit-transition: all 0.35s ease-in-out;
	-moz-transition: all 0.35s ease-in-out;
	transition: all 0.35s ease-in-out;
}

.thm.content.thm-hover2 .info h3 {
	text-transform: uppercase;
	color: #ffffff;
	text-align: center;
	font-size: 30px;
	padding: 10px;
	margin: 100px 0 0 0;
	background: #ED1C24;
	-webkit-transition: all 0.35s 0.1s ease-in-out;
	-moz-transition: all 0.35s 0.1s ease-in-out;
	transition: all 0.35s 0.1s ease-in-out;
}

.thm.content.thm-hover2 .info p {
	font-style: italic;
	font-size: 16px;
	position: relative;
	color: #222;
	padding: 5px;
	text-align: center;
	background: #555555;
	background: rgba(237,28,36 ,0.5);
	-webkit-transition: all 0.35s 0.15s linear;
	-moz-transition: all 0.35s 0.15s linear;
	transition: all 0.35s 0.15s linear;
}

/*link*/
.thm-hover2:hover .thm-link i {
	visibility: visible;
	top: 1px;
	right: 1px;
}

/*fancy*/
.thm-hover2:hover .thm-fancy i {
	visibility: visible;
	bottom: 1px;
	right: 1px;
}

.thm-hover2 .thm-link i:hover, .thm-hover2 .thm-fancy i:hover {
	background: #555555;
	background: rgba(237,28,36 ,0.8);
	-webkit-box-shadow: inset 0px 0px 0px 0px rgba(0,0,0,0.0);
	-moz-box-shadow: inset 0px 0px 0px 0px rgba(0,0,0,0.0);
	box-shadow: inset 0px 0px 0px 0px rgba(0,0,0,0.0);
}

.thm-hover2:hover .thm-corners.top-corners {
	top: 0px;
}

.thm-hover2:hover .thm-corners.bottom-corners {
	bottom: 20px;
}

.thm-hover2:hover .thm-corners::before {
	left: 0px;
	border-color: rgba(237,28,36 ,1.0);
}

.thm-hover2:hover .thm-corners::after {
	right: 0px;
	border-color: rgba(237,28,36 ,1.0);
}

/* -----------------------------------------
:: .thumb.catalog
----------------------------------------- */
/* -----------------------------------------
:: .thumb.icon 
/* -----------------------------------------
:: BACK TO TOP 
----------------------------------------- */
.cd-top {
	display: inline-block;
	height: 40px;
	width: 40px;
	position: fixed;
	bottom: 10px;
	right: 10px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
	overflow: hidden;
	text-indent: 100%;
	white-space: nowrap;
	background: url(../graphics/back-to-top-arrow.webp) no-repeat center 50%;
	visibility: hidden;
	opacity: 0;
	-webkit-transition: opacity .3s 0s, visibility 0s .3s;
	-moz-transition: opacity .3s 0s, visibility 0s .3s;
	transition: opacity .3s 0s, visibility 0s .3s;
}

.cd-top.cd-is-visible, .cd-top.cd-fade-out, .no-touch .cd-top:hover {
	-webkit-transition: opacity .3s 0s, visibility 0s 0s;
	-moz-transition: opacity .3s 0s, visibility 0s 0s;
	transition: opacity .3s 0s, visibility 0s 0s;
}

.cd-top.cd-is-visible {
	/* the button becomes visible */
  visibility: visible;
	opacity: .5;
}

.cd-top.cd-fade-out {
	/* if the user keeps scrolling down, the button is out of focus and becomes less visible */
	opacity: .5;
}

.no-touch .cd-top:hover {
	opacity: 1;
}

/* -----------------------------------------
:: BUTTONS 
----------------------------------------- */
@keyframes barberpole {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 10px 0px;
  }
}
/*theme btn*/
.theme-btn {
	padding: 3px;
	position: relative;
	margin: 0;
	width: auto;
	display: inline-block;
	color: #ffffff;
}

.theme-btn a {
	color: #ffffff;
	color: rgba(255,255,255,0.85);
	transition: all .3s ease;
}

.theme-btn a:hover {
	color: #ffffff;
	color: rgba(255,255,255,1.0);
}

.theme-btn-hover {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border-radius: 0px;
	box-sizing: border-box;
	opacity: 1;
	transition: opacity 0.3s ease;
}

.theme-btn-inner {
	background: rgba(208,62,42,1.0);
	padding: 10px 20px 10px 20px;
	position: relative;
	border-radius: 0px;
	box-sizing: border-box;
	border: 1px solid transparent;
	transition: all .3s ease;
}

.theme-btn-inner:hover {
	background: rgba(208,62,42,0.90);
	border: 1px solid transparent;
	box-shadow: 0px 0px #F6887A, 0px 0px #F6887A, 0px 0px #F6887A;
}

.theme-btn-arrow {
	width: 0;
	height: 0;
	border-top: 21px solid transparent;
	border-left: 0px solid rgba(0,0,0,0.2);
	border-bottom: 21px solid transparent;
	position: absolute;
	top: 0;
	left: 0px;
	opacity: 0;
	transition: all .3s ease;
	overflow: hidden;
}

.theme-btn-inner:hover .theme-btn-arrow {
	border-left: 20px solid rgba(0,0,0,0.5);
	left: 0px;
	opacity: 1;
}

/*prev-btn */
.theme-btn.prev-btn {
	width: 46px;
	height: 46px;
}

.prev-btn .theme-btn-inner {
	width: 40px;
	height: 40px;
}

.prev-btn-arrow {
	width: 0;
	height: 0;
	border-top: 20px solid transparent;
	border-right: 20px solid rgba(0,0,0,0.2);
	border-bottom: 20px solid transparent;
	position: absolute;
	top: 0;
	right: 0;
	transition: all .3s ease;
}

.prev-btn .theme-btn-inner:hover .prev-btn-arrow {
	border-right: 25px solid rgba(0,0,0,0.5);
}

/*next-btn */
.theme-btn.next-btn {
	width: 46px;
	height: 46px;
}

.next-btn .theme-btn-inner {
	width: 40px;
	height: 40px;
}

.next-btn-arrow {
	width: 0;
	height: 0;
	border-top: 20px solid transparent;
	border-left: 20px solid rgba(0,0,0,0.2);
	border-bottom: 20px solid transparent;
	position: absolute;
	top: 0;
	left: 0;
	transition: all .3s ease;
}

.next-btn .theme-btn-inner:hover .next-btn-arrow {
	border-left: 25px solid rgba(0,0,0,0.5);
}

/*round-btn*/
.round-btn {
	padding: 3px;
	position: relative;
	margin: 0;
	width: auto;
	display: inline-block;
	border-radius: 50%;
}

.round-btn:hover .round-btn-hover, .round-btn:active .round-btn-hover {
	animation: barberpole 0.3s linear infinite;
}

.round-btn-hover {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	box-sizing: border-box;
	border-radius: 50%;
	opacity: 1;
	transition: opacity 0.3s ease;
	background-size: 10px 15px;
	background-image: linear-gradient(45deg, rgba(0, 0, 0, 0.1) 10%, rgba(0, 0, 0, 0) 10%, rgba(0, 0, 0, 0) 20%, rgba(0, 0, 0, 0.1) 20%, rgba(0, 0, 0, 0.1) 30%, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.1) 40%, rgba(0, 0, 0, 0.1) 50%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0) 60%, rgba(0, 0, 0, 0.1) 60%, rgba(0, 0, 0, 0.1) 70%, rgba(0, 0, 0, 0) 70%, rgba(0, 0, 0, 0) 80%, rgba(0, 0, 0, 0.1) 80%, rgba(0, 0, 0, 0.1) 90%, rgba(0, 0, 0, 0) 90%, rgba(0, 0, 0, 0) );
}

.round-btn-inner {
	background: #555555 url('../graphics/stripe.webp');
	padding: 20px;
	position: relative;
	border-radius: 50%;
	box-sizing: border-box;
	-webkit-box-shadow: inset 0px 0px 10px 0px rgba(0,0,0,0.25);
	-moz-box-shadow: inset 0px 0px 10px 0px rgba(0,0,0,0.25);
	box-shadow: inset 0px 0px 10px 0px rgba(0,0,0,0.25);
	transition: all .3s ease;
}

.round-btn-inner:hover {
	background: #555555;
}

.round-btn-sm .round-btn-inner {
	padding: 15px;
}

.corner-icon {
	background: #555555 url('../graphics/stripe.webp');
	width: 33px;
	height: 33px;
	position: relative;
	border-radius: 0;
	box-sizing: border-box;
	-webkit-box-shadow: inset 0px 0px 10px 0px rgba(0,0,0,0.25);
	-moz-box-shadow: inset 0px 0px 10px 0px rgba(0,0,0,0.25);
	box-shadow: inset 0px 0px 10px 0px rgba(0,0,0,0.25);
	transition: all .3s ease;
}

.icon-bg-tl {
	border-radius: 0 0 5px 0;
}

.icon-bg-bl {
	border-radius: 0 5px 0 0;
}

.icon-bg-tr {
	border-radius: 0 0 0 5px;
}

.icon-bg-br {
	border-radius: 5px 0 0 0;
}

.news-btn {
}

/*news btn*/
.news-btn {
	padding: 3px;
	position: relative;
	margin: 0;
	width: auto;
	display: inline-block;
	border: 1px solid rgba(208,62,42,0.90);
}

.news-btn-hover {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border-radius: 3px;
	box-sizing: border-box;
	opacity: 1;
	transition: opacity 0.3s ease;
}

.news-btn-inner {
	background: rgba(208,62,42,1.0) url('../graphics/stripe.webp');
	padding-top: 23px;
	width: 74px;
	height: 74px;
	position: relative;
	border-radius: 0px;
	box-sizing: border-box;
	-webkit-box-shadow: inset 0px 0px 10px 0px rgba(0,0,0,0.25);
	-moz-box-shadow: inset 0px 0px 10px 0px rgba(0,0,0,0.25);
	box-shadow: inset 0px 0px 10px 0px rgba(0,0,0,0.25);
	transition: all .3s ease;
	text-align: center;
	color:#ffffff;
}

.news-btn-inner a {
	color: #ffffff;
}

.news-btn-inner:hover {
	background: rgba(208,62,42,0.90);
}

/*quotes btn*/
.btn-quotes {
	border-radius: 25px;
	padding: 10px 100px;
	background: #555555;
	width: 400px;
}

.btn-quotes span img {
	border-radius: 50%;
	border: 5px solid #555555;
	max-width: 90px;
	max-height: 90px;
}

/* -----------------------------------------
:: THUMBNAIL EFFECTS 
----------------------------------------- */
/*thumb background marching ants animation */
@keyframes thumbbg {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 10px 0px;
  }
}
/*thumb hover effects*/
.colored.thm-hover1 .mask1, .colored.thm-hover1 .mask2 {
	background: #555555;
	background: rgba(0,0,0,0.25);
}

.thm {
	position: relative;
	-webkit-transition: all 0.35s ease;
	-moz-transition: all 0.35s ease;
	transition: all 0.35s ease;
}

.thm, .thm * {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.thm a {
	color: #ffffff;
}

.thm a:hover {
	text-decoration: none;
}

.thm img {
	width: 100%;
	height: 100%;
}

.thm.content {
	position: relative;
	width: auto;
	height: auto;
}

.thm-hover1 {
	overflow: hidden;
	position: relative;
}

.thm-hover1 .thm-img {
	-webkit-transition: all 0.35s ease;
	-moz-transition: all 0.35s ease;
	transition: all 0.35s ease;
}

.thm-hover1 .mask1 {
	position: absolute;
	background: #333333;
	background: rgba(0, 0, 0, 0.3);
	height: 200%;
	width: 200%;
	-webkit-transition: all .7s ease;
	-moz-transition: all .7s ease;
	transition: all .7s ease;
}

.thm-hover1 .mask2 {
	position: absolute;
	background: #333333;
	background: rgba(0, 0, 0, 0.3);
	height: 200%;
	width: 200%;
	-webkit-transition: all 2s ease;
	-moz-transition: all 2s ease;
	transition: all 2s ease;
}

.thm-hover1 .mask1 {
	left: auto;
	right: 0;
	top: 0;
	-webkit-transform: rotate(56.5deg) translateX(150%);
	-moz-transform: rotate(56.5deg) translateX(150%);
	-ms-transform: rotate(56.5deg) translateX(150%);
	-o-transform: rotate(56.5deg) translateX(150%);
	transform: rotate(56.5deg) translateX(150%);
	-webkit-transform-origin: 100% 0%;
	-moz-transform-origin: 100% 0%;
	-ms-transform-origin: 100% 0%;
	-o-transform-origin: 100% 0%;
	transform-origin: 100% 0%;
}

.thm-hover1 .mask2 {
	top: auto;
	bottom: 0;
	left: 0;
	-webkit-transform: rotate(56.5deg) translateX(-150%);
	-moz-transform: rotate(56.5deg) translateX(-150%);
	-ms-transform: rotate(56.5deg) translateX(-150%);
	-o-transform: rotate(56.5deg) translateX(-150%);
	transform: rotate(56.5deg) translateX(-150%);
	-webkit-transform-origin: 0% 100%;
	-moz-transform-origin: 0% 100%;
	-ms-transform-origin: 0% 100%;
	-o-transform-origin: 0% 100%;
	transform-origin: 0% 100%;
}

.thm-hover1:hover .mask1 {
	-webkit-transform: rotate(56.5deg) translateX(50%);
	-moz-transform: rotate(56.5deg) translateX(50%);
	-ms-transform: rotate(56.5deg) translateX(50%);
	-o-transform: rotate(56.5deg) translateX(50%);
	transform: rotate(56.5deg) translateX(50%);
}

.thm-hover1:hover .mask2 {
	-webkit-transform: rotate(56.5deg) translateX(-50%);
	-moz-transform: rotate(56.5deg) translateX(-50%);
	-ms-transform: rotate(56.5deg) translateX(-50%);
	-o-transform: rotate(56.5deg) translateX(-50%);
	transform: rotate(56.5deg) translateX(-50%);
}

.thm-hover1 .thm-img {
	-webkit-transition: all .5s ease;
	-moz-transition: all 0.5s ease;
	transition: all .5s ease;
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);
}

.thm-hover1:hover .thm-img {
	-webkit-transform: scale(1.2);
	-moz-transform: scale(1.2);
	-ms-transform: scale(1.2);
	-o-transform: scale(1.2);
	transform: scale(1.2);
}

/*thm carousel effects*/
.thm.content.thm-hover2 {
	overflow: hidden;
}

.thm.content.thm-hover2 .thm-img {
	opacity: 1;
	-webkit-transition: all 0.35s ease-in-out;
	-moz-transition: all 0.35s ease-in-out;
	transition: all 0.35s ease-in-out;
}

.thm.content.thm-hover2:hover .thm-img {
	opacity: 0;
}

.thm.content.thm-hover2:hover .info {
	visibility: visible;
	opacity: 1;
}

.thm.content.thm-hover2.scale_up .thm-img {
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);
}

.thm.content.thm-hover2.scale_up .info {
	-webkit-transform: scale(0);
	-moz-transform: scale(0);
	-ms-transform: scale(0);
	-o-transform: scale(0);
	transform: scale(0);
}

.thm.content.thm-hover2.scale_up .info h3, .thm.content.thm-hover2.scale_up .info p {
	-webkit-transform: scale(0);
	-moz-transform: scale(0);
	-ms-transform: scale(0);
	-o-transform: scale(0);
	transform: scale(0);
}

.thm.content.thm-hover2.scale_up:hover .thm-img {
	-webkit-transform: scale(5);
	-moz-transform: scale(5);
	-ms-transform: scale(5);
	-o-transform: scale(5);
	transform: scale(5);
}

.thm.content.thm-hover2.scale_up:hover .info {
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);
}

.thm.content.thm-hover2.scale_up:hover .info h3, .thm.content.thm-hover2.scale_up:hover .info p {
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);
}

.thm.content.thm-hover2.scale_down .thm-img {
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);
}

.thm.content.thm-hover2.scale_down .info {
	-webkit-transform: scale(5);
	-moz-transform: scale(5);
	-ms-transform: scale(5);
	-o-transform: scale(5);
	transform: scale(5);
}

.thm.content.thm-hover2.scale_down .info h3, .thm.content.thm-hover2.scale_down .info p {
	-webkit-transform: scale(5);
	-moz-transform: scale(5);
	-ms-transform: scale(5);
	-o-transform: scale(5);
	transform: scale(5);
}

.thm.content.thm-hover2.scale_down:hover .thm-img {
	-webkit-transform: scale(0.5);
	-moz-transform: scale(0.5);
	-ms-transform: scale(0.5);
	-o-transform: scale(0.5);
	transform: scale(0.5);
}

.thm.content.thm-hover2.scale_down:hover .info {
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);
}

.thm.content.thm-hover2.scale_down:hover .info h3, .thm.content.thm-hover2.scale_down:hover .info p {
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);
}

.thm-corners {
	position: absolute;
	transition-duration: 0.3s;
	width: 100%;
	z-index: 3;
}

.thm-corners::before, .thm-corners::after {
	border-color: rgba(255,255,255,0.5);
	border-style: solid;
	content: "";
	height: 20px;
	position: absolute;
	transform: translateZ(0px);
	transition-duration: 0.3s;
	width: 20px;
}

.thm-corners::before {
	left: 25px;
}

.thm-corners::after {
	right: 25px;
}

.thm-corners.top-corners {
	top: 25px;
}

.thm-corners.bottom-corners {
	bottom: 45px;
}

.thm-hover1:hover .thm-corners.top-corners {
	top: -20px;
}

.thm-hover1:hover .thm-corners.bottom-corners {
	bottom: -10px;
}

.thm-hover1:hover .thm-corners::before {
	left: -20px;
	border-color: rgba(255,255,255,0.0);
}

.thm-hover1:hover .thm-corners::after {
	right: -20px;
	border-color: rgba(255,255,255,0.0);
}

.thm-corners.top-corners::before {
	border-width: 1px 0 0 1px;
}

.thm-corners.top-corners::after {
	border-width: 1px 1px 0 0;
}

.thm-corners.bottom-corners::before {
	border-width: 0 0 1px 1px;
}

.thm-corners.bottom-corners::after {
	border-width: 0 1px 1px 0;
}

/* -----------------------------------------
:: .thumb
----------------------------------------- */
.thumb {
	padding: 0px;
	position: relative;
	display: inline-block;
	margin: 5px;
}

.thm-img img {
	width: 100%;
}

.thumb.margin0 {
	margin: 0px;
}

/*thumb background animation marching ants*/
.thumb:hover .thumb-hover, .thumb:active .thumb-hover {
	animation: thumbbg 0.3s linear infinite;
}

.thumb-hover {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border-radius: 0px;
	box-sizing: border-box;
	opacity: 1;
	transition: opacity 0.3s ease;
	/*
	background-size: 10px 15px;
	background-image: linear-gradient(45deg, rgba(0, 0, 0, 0.1) 10%, rgba(0, 0, 0, 0) 10%, rgba(0, 0, 0, 0) 20%, rgba(0, 0, 0, 0.1) 20%, rgba(0, 0, 0, 0.1) 30%, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.1) 40%, rgba(0, 0, 0, 0.1) 50%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0) 60%, rgba(0, 0, 0, 0.1) 60%, rgba(0, 0, 0, 0.1) 70%, rgba(0, 0, 0, 0) 70%, rgba(0, 0, 0, 0) 80%, rgba(0, 0, 0, 0.1) 80%, rgba(0, 0, 0, 0.1) 90%, rgba(0, 0, 0, 0) 90%, rgba(0, 0, 0, 0) );
	*/
}

/*thumb inner content container*/
.thumb-inner {
	background: #e8e8e8;
	background: rgba(232,232,232,0.25);
/*border: 1px solid rgba(0,0,0,1);*/padding: 5px;
	position: relative;
	border-radius: 0px;
	box-sizing: border-box;
	transition: all .5s ease;
	overflow: hidden;
}

.thumb-inner:hover {
	background: rgba(255,255,255,1.0);
}

/* -----------------------------------------
:: .thumb.color
----------------------------------------- */
.thumb.color .thumb-inner {
	border: 1px solid rgba(208,62,42,1.0);
	box-shadow: inset 0px 15px 0px 0px rgba(208,62,42,1.0);
}

.thumb.color .thumb-inner:hover {
	border: 1px solid rgba(208,62,42,0.9);
	box-shadow: inset 0px 15px 0px 0px rgba(208,62,42,0.90);
}

/* -----------------------------------------
:: .thumb.dark
----------------------------------------- */
.thumb.dark .thumb-hover {
	border-radius: 3px;
	/*
	background-image: linear-gradient(45deg, rgba(0, 0, 0, 1.0) 10%, rgba(0, 0, 0, 0) 10%, rgba(0, 0, 0, 0) 20%, rgba(0, 0, 0, 1.0) 20%, rgba(0, 0, 0, 1.0) 30%, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 1.0) 40%, rgba(0, 0, 0, 1.0) 50%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0) 60%, rgba(0, 0, 0, 1.0) 60%, rgba(0, 0, 0, 1.0) 70%, rgba(0, 0, 0, 0) 70%, rgba(0, 0, 0, 0) 80%, rgba(0, 0, 0, 1.0) 80%, rgba(0, 0, 0, 1.0) 90%, rgba(0, 0, 0, 0) 90%, rgba(0, 0, 0, 0) );*/
}

.thumb.dark .thumb-inner {
	background: #D03E2A;
	border: 0px solid #555555;
	padding: 4px;
}

/* -----------------------------------------
:: .thumb.content
----------------------------------------- */
/*title*/
.thm-title {
	position: absolute;
	top: 20%;
	left: -100%;
	width: auto;
	height: auto;
	text-align: left;
	border-radius: 0 5px 5px 0;
	padding: 5px 20px;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	background: rgba(0,0,0,0.5);
	visibility: hidden;
	-webkit-transition: all 0.25s ease;
	-moz-transition: all 0.25s ease;
	transition: all 0.25s ease;
}

.thm-title h3 {
	font-size: 25px;
	color: #ffffff;
	font-weight: 300;
	margin: 0;
}

.thm-title h3 span {
	font-weight: 800;
}

.thm-hover1:hover .thm-title {
	visibility: visible;
	left: 0%;
	opacity: 1;
}

.colored .thm-title {
	background: rgba(12, 34, 52, 0.6);
}

/*readmore*/
.thm-readmore {
	position: absolute;
	bottom: 10%;
	left: -100%;
	width: auto;
	height: auto;
	text-align: left;
	padding: 5px 20px;
	border-radius: 0 5px 5px 0;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	background: url('../graphics/list3.webp') 100px center no-repeat;
	visibility: hidden;
	-webkit-transition: all 0.35s ease;
	-moz-transition: all 0.35s ease;
	transition: all 0.35s ease;
}

.thm-readmore span a {
	font-size: 14px;
	color: #ffffff;
}

.thm-readmore span a:hover {
	color: #aaa;
	color: rgba(255,255,255,0.65);
}

.thm-hover1:hover .thm-readmore {
	visibility: visible;
	left: 0%;
	opacity: 1;
	background: url('../graphics/list3.webp') 10px 15px no-repeat;
}

.colored .thm-readmore {
	background: rgba(12, 34, 52, 0.6);
}

/*desc*/
.thm-desc {
	position: absolute;
	left: -100%;
	width: 80%;
	height: auto;
	text-align: left;
	padding: 5px 20px 10px 20px;
	border-radius: 0 5px 5px 0;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	background: rgba(0,0,0,0.5);
	visibility: hidden;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	transition: all 0.5s ease;
	line-height: 1;
	opacity: 0;
}

.thm-desc:before {
	width: 98px;
	content: " ";
	background-image: url('../graphics/ih-desc-top.webp');
	position: absolute;
	left: 10px;
	top: -10px;
	height: 1px;
}

.thm-desc:after {
	width: 98px;
	content: " ";
	background-image: url('../graphics/ih-desc-top.webp');
	position: absolute;
	left: 10px;
	bottom: -10px;
	height: 1px;
}

.thm-desc span {
	font-size: 14px;
	color: #ffffff;
}

.thm-hover1:hover .thm-desc {
	visibility: visible;
	left: 0%;
	opacity: 1;
}

.colored .thm-desc {
	background: rgba(12, 34, 52, 0.6);
}

/* corner icons*/
.thm-link i, .thm-fancy i, .thm-top-left i, .thm-top-right i, .thm-bottom-left i, .thm-bottom-right i {
	position: absolute;
	width: 33px;
	height: 33px;
	text-align: center;
	color: #ffffff;
	padding: 10px;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	background: #555555;
	-webkit-box-shadow: inset 0px 0px 10px 0px rgba(0,0,0,0.25);
	-moz-box-shadow: inset 0px 0px 10px 0px rgba(0,0,0,0.25);
	box-shadow: inset 0px 0px 10px 0px rgba(0,0,0,0.25);
	visibility: hidden;
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	transition: all 0.2s ease;
}

.thm-link i:hover, .thm-fancy i:hover, .thm-top-left i:hover, .thm-top-right i:hover, .thm-bottom-left i:hover, .thm-bottom-right i:hover {
	background: #222222;
	background: rgba(0,0,0,0.5);
}

/*link*/
.thm-link i {
	top: -50px;
	right: -50px;
	border-radius: 0 0 0 5px;
}

.thm-hover1:hover .thm-link i {
	visibility: visible;
	top: 1px;
	right: 1px;
}

/*fancy*/
.thm-fancy i {
	bottom: -50px;
	right: -50px;
	border-radius: 5px 0 0 0;
}

.thm-hover1:hover .thm-fancy i {
	visibility: visible;
	bottom: 1px;
	right: 1px;
}

/* -----------------------------------------
:: .thumb.content2
----------------------------------------- */
/*title*/
.thumb-content2 .thm-title {
	position: absolute;
	top: 0px;
	left: 0%;
	width: 100%;
	text-align: center;
	border-radius: 0 5px 5px 0;
	padding: 5px 20px;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	background: none;
	visibility: hidden;
	-webkit-transition: all 0.25s ease;
	-moz-transition: all 0.25s ease;
	transition: all 0.25s ease;
	opacity: 0;
}

.thumb-content2 .thm-title h3 {
	font-size: 30px;
	color: #ffffff;
	font-weight: 300;
	margin: 0;
	text-shadow: 0px 0px 10px #4DD2FF;
	text-align: center;
}

.thumb-content2 .thm-hover1:hover .thm-title {
	visibility: visible;
	top: 120px;
	left: 0%;
	opacity: 1;
}

/*desc*/
.thumb-content2 .thm-desc {
	position: absolute;
	top: 0px;
	left: 0%;
	width: 100%;
	text-align: center;
	padding: 5px 20px 10px 20px;
	border-radius: 0 5px 5px 0;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	background: rgba(0,0,0,0.0);
	visibility: hidden;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	transition: all 0.5s ease;
	line-height: 1;
	opacity: 0;
}

.thumb-content2 .thm-desc:before {
	background-image: none;
}

.thumb-content2 .thm-desc:after {
	background-image: none;
}

.thumb-content2 .thm-desc span {
	font-size: 16px;
	color: #ffffff;
}

.thumb-content2 .thm-hover1:hover .thm-desc {
	visibility: visible;
	top: 150px;
	left: 0%;
	opacity: 1;
}

/* corner icons*/
.thm-link i, .thm-fancy i, .thm-top-left i, .thm-top-right i, .thm-bottom-left i, .thm-bottom-right i {
	position: absolute;
	width: 33px;
	height: 33px;
	text-align: center;
	color: #ffffff;
	padding: 10px;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	background: #555555;
	-webkit-box-shadow: inset 0px 0px 10px 0px rgba(0,0,0,0.0);
	-moz-box-shadow: inset 0px 0px 10px 0px rgba(0,0,0,0.0);
	box-shadow: inset 0px 0px 10px 0px rgba(0,0,0,0.0);
	visibility: hidden;
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	transition: all 0.2s ease;
}

.thm-link i:hover, .thm-fancy i:hover, .thm-top-left i:hover, .thm-top-right i:hover, .thm-bottom-left i:hover, .thm-bottom-right i:hover {
	background: #222222;
	background: rgba(0,0,0,0.5);
}

/*link*/
.thm-link i {
	top: -50px;
	right: -50px;
	border-radius: 0 0 0 5px;
}

.thm-hover1:hover .thm-link i {
	visibility: visible;
	top: 1px;
	right: 1px;
}

/*fancy*/
.thm-fancy i {
	bottom: -50px;
	right: -50px;
	border-radius: 5px 0 0 0;
}

.thm-hover1:hover .thm-fancy i {
	visibility: visible;
	bottom: 1px;
	right: 1px;
}

/* -----------------------------------------
:: .thumb.social
----------------------------------------- */
/* -----------------------------------------
:: .thumb.carousel
----------------------------------------- */
.thm.content.thm-hover2.colored .info {
	background: #555555;
}

.thm.content.thm-hover2.colored .info h3 {
	background: rgba(12, 34, 52, 0.6);
}

.thm.content .info {
	backface-visibility: hidden;
	bottom: 0;
	left: 0;
	position: absolute;
	right: 0;
	text-align: center;
	top: 0;
}

.thm.content.thm-hover2 .info {
	background: #ffffff;
	visibility: hidden;
	opacity: 0;
	border: 1px solid #D03E2A;
	-webkit-box-shadow: inset 0px 0px 50px 0px rgba(0,0,0,0.25);
	-moz-box-shadow: inset 0px 0px 50px 0px rgba(0,0,0,0.25);
	box-shadow: inset 0px 0px 50px 0px rgba(0,0,0,0.25);
	-webkit-transition: all 0.35s ease-in-out;
	-moz-transition: all 0.35s ease-in-out;
	transition: all 0.35s ease-in-out;
}

.thm.content.thm-hover2 .info h3 {
	text-transform: uppercase;
	color: #ffffff;
	text-align: center;
	font-size: 30px;
	padding: 10px;
	margin: 100px 0 0 0;
	background: #D03E2A;
	-webkit-transition: all 0.35s 0.1s ease-in-out;
	-moz-transition: all 0.35s 0.1s ease-in-out;
	transition: all 0.35s 0.1s ease-in-out;
}

.thm.content.thm-hover2 .info p {
	font-style: italic;
	font-size: 16px;
	position: relative;
	color: #222;
	padding: 5px;
	text-align: center;
	background: #555555;
	background: rgba(208,62,42 ,0.5);
	-webkit-transition: all 0.35s 0.15s linear;
	-moz-transition: all 0.35s 0.15s linear;
	transition: all 0.35s 0.15s linear;
}

/*link*/
.thm-hover2:hover .thm-link i {
	visibility: visible;
	top: 1px;
	right: 1px;
}

/*fancy*/
.thm-hover2:hover .thm-fancy i {
	visibility: visible;
	bottom: 1px;
	right: 1px;
}

.thm-hover2 .thm-link i:hover, .thm-hover2 .thm-fancy i:hover {
	background: #555555;
	background: rgba(208,62,42 ,0.8);
	-webkit-box-shadow: inset 0px 0px 0px 0px rgba(0,0,0,0.0);
	-moz-box-shadow: inset 0px 0px 0px 0px rgba(0,0,0,0.0);
	box-shadow: inset 0px 0px 0px 0px rgba(0,0,0,0.0);
}

.thm-hover2:hover .thm-corners.top-corners {
	top: 0px;
}

.thm-hover2:hover .thm-corners.bottom-corners {
	bottom: 20px;
}

.thm-hover2:hover .thm-corners::before {
	left: 0px;
	border-color: rgba(208,62,42 ,1.0);
}

.thm-hover2:hover .thm-corners::after {
	right: 0px;
	border-color: rgba(208,62,42 ,1.0);
}

/* -----------------------------------------
:: .thumb.catalog
----------------------------------------- */
/* -----------------------------------------
:: .thumb.quotes .thumb.quotes2
----------------------------------------- */
/* -----------------------------------------
:: .thumb.loadmore
----------------------------------------- */
.loadmore-content {
	float: left;
	position: absolute;
	top: 25px;
	z-index: 999;
}

.loadmore-content img {
	vertical-align: middle;
	max-width: 100px;
	max-height: 100px;
	display: inline;
	border-radius: 50%;
	border: 5px solid rgba(208,62,42,0.90);
	margin-top: -10px;
}

.thm-loadmore {
	padding-top: 5px;
	padding-bottom: 5px;
	padding-right: 5px;
	padding-left: 5px;
	margin-bottom: 35px;
	position: relative;
}

.thm-loadmore:after {
	content: "";
	position: absolute;
	top: 0;
	left: 54px;
	width: 2px;
	height: 130%;
	border-left: 2px solid rgba(208,62,42,0.90);
}

.thm-loadmore:hover {
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
}

.thumb-load {
	z-index: 9999;
	position: relative;
	margin-top: 17px;
}

.thumb-load img {
	position: absolute;
	left: -20px;
	display: none;
}

.thumb-hide {
	display: none;
}

.thm-loadmore .thumb-desc {
	background: rgba(232,232,232,0.20);
	border: 1px solid rgba(208,62,42,0.90);
	padding: 25px;
	font-size: 16px;
	font-style: italic;
	text-align: center;
	line-height: 20px;
	position: relative;
	border-radius: 3px;
	box-sizing: border-box;
	overflow: hidden;
	transition: all .5s ease;
	margin-left: 150px;
}

.thm-loadmore .thumb-desc:hover {
	background: rgba(232,232,232,1.0);
	border: 1px solid #D03E2A;
}

/*thumb inner content container*/
.thm-loadmore:before {
	position: absolute;
	top: 0px;
	left: 130px;
	content: '';
	width: 0;
	height: 0;
	margin-top: 40px;
	border-top: 20px solid transparent;
	border-right: 25px solid rgba(208,62,42,0.5);
	border-bottom: 20px solid transparent;
	z-index: 999;
	transition: all .5s ease;
}

.thm-loadmore:hover:before {
	border-right: 25px solid rgba(208,62,42,0.90);
}

.loadmore-content img {
	-webkit-transition-timing-function: ease;
	-moz-transition-timing-function: ease;
	-ms-transition-timing-function: ease;
	-o-transition-timing-function: ease;
	-webkit-transition-duration: 400ms;
	-moz-transition-duration: 400ms;
	-ms-transition-duration: 400ms;
	-o-transition-duration: 400ms;
}

.loadmore-content img:hover {
	-webkit-transform: scale(1.1, 1.1);
	-moz-transform: scale(1.1, 1.1);
	-ms-transform: scale(1.1, 1.1);
	-o-transform: scale(1.1, 1.1);
	-webkit-transition-timing-function: ease;
	-moz-transition-timing-function: ease;
	-ms-transition-timing-function: ease;
	-o-transition-timing-function: ease;
	-webkit-transition-duration: 200ms;
	-moz-transition-duration: 200ms;
	-ms-transition-duration: 200ms;
	-o-transition-duration: 200ms;
	border: solid 2px rgba(208,62,42,0.90);
	cursor: pointer;
}

.appear {
	visibility: hidden;
}

.thm-loadmore.history .thumb-desc {
	background: rgba(0,0,0,0.25);
	border: 1px solid rgba(208,62,42,0.90);
	border-top: 35px solid rgba(208,62,42,0.90);
	overflow: visible;
	box-sizing: border-box;
}

.thm-loadmore.history .thumb-desc:hover {
	background: rgba(0,0,0,0.75);
	border-bottom: 5px solid #D03E2A;
}

.thm-loadmore.history:before {
	margin-top: 60px;
}

.thm-loadmore.history:hover:before {
	margin-top: 40px;
}

.thm-loadmore.history .thumb-desc .history-title {
	float: left;
	color: #ffffff;
	font-size: 22px;
	margin-top: -52px;
	font-style: normal;
	letter-spacing: -1px;
}

.thm-loadmore.history .thumb-desc .history-year {
	float: right;
	color: #ffffff;
	font-size: 22px;
	margin-top: -52px;
	font-style: normal;
	letter-spacing: -1px;
}

/* -----------------------------------------
:: .thumb.iconlarge
----------------------------------------- */

/* -----------------------------------------
:: .thumb.contents-center
----------------------------------------- */
/* -----------------------------------------
:: .thumbnail default 
----------------------------------------- */
.thumbnail {
	display: block;
	padding: 4px;
	margin-bottom: 22px;
	line-height: 1.42857143;
	background-color: #ffffff;
	border: 1px solid #aaa;
	border-radius: 4px;
	-webkit-transition: border 0.2s ease-in-out;
	-o-transition: border 0.2s ease-in-out;
	transition: border 0.2s ease-in-out;
}

.thumbnail > img, .thumbnail a > img {
	margin-left: auto;
	margin-right: auto;
}

a.thumbnail:hover, a.thumbnail:focus, a.thumbnail.active {
	border-color: #555555;
}

.thumbnail .caption {
	padding: 9px;
	color: #555555;
}

.img-thumbnail {
	padding: 4px;
	line-height: 1.42857143;
	background-color: #ffffff;
	border: 1px solid #aaa;
	border-radius: 4px;
	-webkit-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
	display: inline-block;
	max-width: 100%;
	height: auto;
}

.thumbnail, .img-thumbnail {
	background-color: rgba(0,0,0,0.0);
	border: 1px solid #555555;
	border-radius: 4px;
	display: block;
	line-height: 1.42857;
	margin-bottom: 20px;
	padding: 5px;
	transition: all 0.2s ease-in-out 0s;
}

.thumbnail .caption {
	color: #555555;
}

.well, .panel {
	background-color: rgba(0, 0, 0, 0.1);
	border: 0px solid #222222;
	border-radius: 4px;
	box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05) inset;
	margin-bottom: 20px;
	min-height: 20px;
	padding: 0px;
}

/* -----------------------------------------------------------
:: YOUTUBEBACKGROUND: VIDEO BACKGROUND  
----------------------------------------------------------- */
/* -----------------------------------------------------------
:: LIBRARY-PRO-COMPONENT: STYLES  
----------------------------------------------------------- */
/**/
/**/
/* -----------------------------------------------------------
:: Library / components / accordions / faq / faq  
----------------------------------------------------------- */
.faqs .panel-group .panel-heading a {
	color: #e8e8e8;
}

.faqs .faqHeader {
	font-size: 27px;
	margin: 20px;
}

.faqs .panel-heading [data-toggle=collapse]:after {
	color: #e8e8e8;
	font-size: 18px;
	font-family: FontAwesome;
	content: "\f0a7";
	float: right;
	line-height: 22px; ;
}

.faqs .panel-heading [data-toggle=collapse].collapsed:after {
	color: #e8e8e8;
	font-family: FontAwesome;
	content: "\f0a6"; ;
	-webkit-transform: rotate(90deg);
	-moz-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	-o-transform: rotate(90deg);
	transform: rotate(90deg);
}

/* -----------------------------------------------------------
:: Library / components / counters / clients / clients  
----------------------------------------------------------- */
.counter1 {
	font-family: 'Open Sans', sans-serif;
	float: left;
	width: 100%;
	margin-bottom: 21px;
	margin-top: 20px;
	line-height: 1.1;
}

.counter1-info {
	width: 25%;
	float: left;
	padding-bottom: 45px;
}

.counter1-num {
	font-size: 50px;
	text-align: center;
	color: #555555;
	font-weight: bold;
}

.counter1-label {
	font-size: 16px;
	text-align: center;
}

.counter1-icon {
	text-align: center;
	color: #D03E2A;
	margin-bottom: -5px;
}

/* -----------------------------------------------------------
:: Library / components / counters / countdown / countdown  
----------------------------------------------------------- */
#countdown {
	margin-bottom: 50px;
}

.countdown-row {
	clear: both;
	display: block;
	padding: 0;
	text-align: center;
}

.countdown-show1 .countdown-section {
	width: 98%;
}

.countdown-show2 .countdown-section {
	width: 48%;
}

.countdown-show3 .countdown-section {
	width: 32.5%;
}

.countdown-show4 .countdown-section {
	width: 14.5%;
	margin: 0%;
	padding: 0%;
	text-align: center;
}

.countdown-show5 .countdown-section {
	width: 19.5%;
}

.countdown-show6 .countdown-section {
	width: 16.25%;
}

.countdown-show7 .countdown-section {
	width: 14%;
	background: #999;
}

.countdown-section {
	display: inline-block;
	text-align: center;
	font-family: 'Open Sans', sans-serif;
	margin-bottom: 50px;
}

.countdown-amount {
	font-size: 50px;
	color: #D03E2A;
	font-weight: bold;
}

.countdown-period {
	display: block;
	font-size: 16px;
	text-align: center;
}

.countdown-descr {
	display: block;
	width: 100%;
}

/* -----------------------------------------------------------
:: Library / components / pricing / switcher / pricing
----------------------------------------------------------- */
/* -------------------------------- 

xkeyframes 

-------------------------------- */
/* -----------------------------------------------------------
:: Library / components / progressbar / skills / skills
----------------------------------------------------------- */
.stretchRight {
	visibility: visible;
}

.stretchRight {
	animation-name: stretchRight;
	-webkit-animation-name: stretchRight;
	animation-duration: 1.5s;
	-webkit-animation-duration: 1.5s;
	animation-timing-function: ease-out;
	-webkit-animation-timing-function: ease-out;
	transform-origin: 0% 0%;
	-ms-transform-origin: 0% 0%;
	-webkit-transform-origin: 0% 0%;
}

@keyframes stretchRight {
	0% {
		transform: scaleX(0.0);
	}
	40% {
		transform: scaleX(1.02);
	}
	60% {
		transform: scaleX(0.98);
	}
	80% {
		transform: scaleX(1.01);
	}
	100% {
		transform: scaleX(0.98);
	}				
	80% {
		transform: scaleX(1.01);
	}
	100% {
		transform: scaleX(1);
	}							
}
@-webkit-keyframes stretchRight {
	0% {
		-webkit-transform: scaleX(0.0);
	}
	40% {
		-webkit-transform: scaleX(1.02);
	}
	60% {
		-webkit-transform: scaleX(0.98);
	}
	80% {
		-webkit-transform: scaleX(1.01);
	}
	100% {
		-webkit-transform: scaleX(0.98);
	}				
	80% {
		-webkit-transform: scaleX(1.01);
	}
	100% {
		-webkit-transform: scaleX(1);
	}		
}
/* -----------------------------------------------------------
:: Library / components / tabs / details / details
----------------------------------------------------------- */
/*tabs horizontal*/
.tabs-info ul.nav.nav-tabs {
	overflow: visible;
}

.tabs.tabs-info ul.nav.nav-tabs li.active {
	color: #ffffff!important;
}

.tabs.tabs-info ul.nav.nav-tabs > li.active > a, .tabs.tabs-info ul.nav.nav-tabs > li.active > a:hover, .tabs.tabs-info ul.nav.nav-tabs > li.active > a:focus {
	background-color: rgba(208,62,42,1.00);
	border-bottom-color: transparent;
	color: #ffffff;
	height: 55px;
}

.tabs.tabs-info ul.nav.nav-tabs > li > a, .tabs.tabs-info ul.nav.nav-tabs > li > a:hover, .tabs.tabs-info ul.nav.nav-tabs > li > a {
	background-color: rgba(232,232,232,0.5);
	color: #555555;
	border: 1px solid rgba(208,62,42,1.00);
	border-bottom-color: transparent;
	transition: all .4s ease;
}

.tabs.tabs-info ul.nav.nav-tabs > li > a:hover {
	background-color: rgba(208,62,42,1.00);
	color: #ffffff;
	border: 1px solid rgba(208,62,42,1.00);
	border-bottom-color: transparent;
	border-bottom: 0px;
}

.tabs.tabs-info div.tab-content-wrapper {
	border: 1px solid rgba(208,62,42,1.00);
	border-radius: 5px;
	padding: 5px;
	background-color: rgba(232,232,232,0.5);
	margin-top: -6px;
}

.tab-content .tab-pane {
	padding: 20px;
	margin-top: -15px;
}

.tabs.tabs-info div.tab-content {
	border: 1px solid rgba(208,62,42,1.00);
	border-radius: 3px;
	border-top: 15px solid rgba(208,62,42,1.00);
	padding: 5px;
	font-size: 14px;
}

.tabs.tabs-info ul {
	margin-left: 30px;
}

.tabs-info {
	margin-top: 35px;
}

ul.comments .comment-arrow {
	border-right-color: #F5F7F7;
}

ul.comments .comment-block {
	background: #F5F7F7;
}

ul.comments li img.avatar {
	height: 80px;
	width: 80px;
}

ul.comments li .img-thumbnail {
	margin-top: 25px;
	margin-left: -115px;
	position: absolute;
}

ul.comments .comment-arrow {
	border-bottom: 15px solid transparent;
	border-right: 15px solid #333;
	border-top: 15px solid transparent;
	height: 0;
	left: -15px;
	position: absolute;
	top: 28px;
	width: 0;
}

ul.comments .comment-block .comment-by {
	display: block;
	font-size: 1em;
	line-height: 21px;
	margin: 0;
	padding: 0 0 5px;
}

ul.comments {
	list-style: outside none none;
	margin: 0;
	padding: 0;
}

ul.comments li {
	clear: both;
	padding: 10px 0 0 115px;
}

ul.comments li .comment {
	margin-bottom: 10px;
}

ul.comments {
	list-style: outside none none;
}

ul.comments .comment-block {
	background: none repeat scroll 0 0 #e8e8e8;
	border-radius: 5px;
	padding: 20px 20px 30px;
	position: relative;
	border:1px solid #333;
}

form#prodreview div.row div.col-sm-12 input {
	margin-top: 5px;
}

/* -----------------------------------------------------------
:: Library / components / tabs / services / services
----------------------------------------------------------- */
/* tabs vertical */
@media (min-width: 992px) {
.thumb.color.tabsv-wrapper {
	margin-left: 20px;
}

}
.tabsv .tab-content {
	padding: 0;
	border-radius: 0 5px 5px 5px;
	padding: 20px 20px 10px 20px;
}

.nav-tabs {
	border-bottom-color: transparent;
	font-size: 16px;
	margin-top: 0px;
	margin-bottom: -1px;
}

.nav-tabs > li > a {
	padding: 13px 20px;
	margin-right: 2px;
	margin-top: 0px;
	border: 1px solid rgba(208,62,42,0.9);
	color: rgba(208,62,42,1.00);
}

.nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus {
	border-bottom-color: transparent;
	background-color: rgba(208,62,42,0.9);
	color: rgba(208,62,42,1.00);
}

.tabsv .nav > li > a {
	border: 1px solid rgba(208,62,42,0.5);
	border-radius: 4px;
	margin-bottom: 5px;
	font-size: 16px;
	line-height: 1.7em;
}

.tabsv .nav > li > a:hover {
	color: rgba(208,62,42,0.5);
}

.tabsv .nav > li.active a {
	color: rgba(208,62,42,0.9);
}

.tabsv-wrapper .tab-content .tab-pane {
	margin-top: 0px;
	padding: 0px;
}

.tabsv-wrapper div.thumb-inner div.tab-content div#tab4.tab-pane.fade.active.in {
}

@media (min-width: 768px) 	{
.tabsv .nav {
	margin-right: -25px;
}

.tabsv .tab-content {
	border-radius: 5px;
}

.tabsv .nav > li.active {
	position: relative;
	z-index: 2;
}

.tabsv .nav > li.active a:after, .tabsv .nav > li.active a:before {
	display: block;
	content: '';
	width: 23px;
	height: 5px;
	position: absolute;
	right: -25px;
	top: 40%;
	margin-top: 0;
}

.tabsv .nav > li.active a:after, .tabsv .nav > li.active a:before {
	border-top: 5px solid rgba(208,62,42,0.5);
	border-bottom: 5px solid rgba(208,62,42,0.5);
}

.tabsv .nav > li.active a:after {
	border-left-color: rgba(208,62,42,0.5);
	border-left-width: 20px;
}

}
.tabsv .nav li a {
	margin-top: 4px;
	padding: 10px 20px;
}

/* -----------------------------------------------------------
:: Library / components / tabs / 2-column-left / 2-column-right
----------------------------------------------------------- */
/* sidebar */
#sidetab ul.nav-list.list2 > li {
	margin: 0;
	padding: 0;
}

#sidetab ul.nav-list.list2 > li a {
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
	background-position: 9px 16px;
	background-repeat: no-repeat;
	border-bottom: 1px solid rgba(208,62,42,0.90);
	padding: 8px 20px;
}

/* side tabs */
#sidetab.tabs {
	border-radius: 4px;
	margin-bottom: 35px;
}

#sidetab .nav-tabs.tabs1 {
	margin: 0;
	font-size: 0;
	border-bottom-color: rgba(208,62,42,0.90);
}

#sidetab .nav-tabs.tabs1 li {
	display: inline-block;
	float: none;
}

#sidetab .nav-tabs.tabs1 li:last-child a {
	margin-right: 0;
}

#sidetab .nav-tabs.tabs1 li a {
	border-radius: 5px 5px 0 0;
	font-size: 14px;
	margin-right: 1px;
}

#sidetab .nav-tabs.tabs1 li a, .nav-tabs.tabs1 li a:hover {
	background: rgba(232,232,232,0.25);
	border-bottom: none;
	border-left: 1px solid rgba(208,62,42,0.90);
	border-right: 1px solid rgba(208,62,42,0.90);
	border-top: 3px solid rgba(208,62,42,0.90);
	color: #333;
}

#sidetab .nav-tabs.tabs1 li a:hover {
	border-bottom-color: transparent;
	border-top: 1px solid rgba(208,62,42,0.90);
	box-shadow: none;
}

#sidetab .nav-tabs.tabs1 li a:active, .nav-tabs.tabs1 li a:focus {
	border-bottom: 0;
}

#sidetab .nav-tabs.tabs1 li.active a, .nav-tabs.tabs1 li.active a:hover, .nav-tabs.tabs1 li.active a:focus {
	background: rgba(232,232,232,0.25);
	border-left-color: rgba(208,62,42,0.90);
	border-right-color: rgba(208,62,42,0.90);
	border-top: 3px solid rgba(208,62,42,0.90);
	color: #D03E2A;
}

#sidetab .tab-content.tabs1 {
	border-radius: 0 0 4px 4px;
	box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.04);
	background: rgba(232,232,232,0.25);
	border: 1px solid rgba(208,62,42,0.90);
	border-top: 0;
	padding: 15px;
}

/* side tab content */
#sidetab ul.side-tabs1 {
	list-style: none;
	margin: 0;
	padding: 0;
}

#sidetab ul.side-tabs1 li {
	*zoom: 1;
	border-bottom: 1px dotted #E2E2E2;
	padding: 15px 0;
}

#sidetab ul.side-tabs1 li:before, ul.side-tabs1 li:after {
	content: " ";
	display: table;
}

#sidetab ul.side-tabs1 li:after {
	clear: both;
}

#sidetab ul.side-tabs1 li:last-child {
	border-bottom: 0;
}

#sidetab ul.side-tabs1 .side-tabs1-img {
	float: left;
	margin-right: 12px;
}

#sidetab ul.side-tabs1 .post-meta {
	color: #888;
	font-size: 0.8em;
}

/* -----------------------------------------------------------
:: Library / components / carousels / laptop / laptop
----------------------------------------------------------- */
/* owl carousel laptop */
.laptop-bg {
	background: url("../themed-images/pages/index/laptop-bg.webp") center center no-repeat;
	width: 672px;
	height: 360px;
	margin: auto;
}

#owl-laptop .item {
}

#owl-laptop .item img {
	margin-top: 27px;
	margin-left: 122px;
	max-width: 430px;
	max-height: 270px;
}

#owl-laptop .owl-next {
	display: none!important;
}

#owl-laptop .owl-prev {
	display: none!important;
}

/* -----------------------------------------------------------
:: Library / components / carousels / logos / logos
----------------------------------------------------------- */
/* owl carousel logo */
.owllogo .owl-next {
	position: absolute!important;
	right: -60px;
	top: 50px;
}

.owllogo .owl-prev {
	position: absolute!important;
	left: -60px;
	top: 50px;
}

#owl-logos.owllogo .owl-carousel.owl-theme.owl-loaded div.owl-controls div.owl-dots {
	margin-top: -120px;
	z-index: 99999;
	visibility: hidden;
}

#owl-logos.owllogo.owl-carousel.owl-theme.owl-loaded div.owl-controls {
	margin-top: -65px;
}

@media only screen and (max-width: 768px) {
#owl-logos .owl-stage-outer {
	overflow: visible;
}

}
/* -----------------------------------------------------------
:: Library / components / carousels / logos / logos
----------------------------------------------------------- */
/* owl carousel logo */
.breadcrumb-car .owl-next {
	display: none;
}

.breadcrumb-car .owl-prev {
	display: none;
}

#owl-breadcrumb.breadcrumb-car.owl-carousel.owl-theme.owl-loaded div.owl-controls div.owl-dots {
	margin-top: 0px;
	z-index: 99999;
}

#owl-breadcrumb.breadcrumb-car.owl-carousel.owl-theme.owl-loaded div.owl-controls div.owl-nav {
	display: none;
}

#owl-breadcrumb.breadcrumb-car.owl-carousel.owl-theme.owl-loaded div.owl-controls {
	position: absolute;
	bottom: -35px;
	left: 48%;
}

#owl-breadcrumb img {
	max-width: 75px;
	float: right;
	border-radius: 50%;
	border: 5px rgba(255,255,255,0.25) solid;
}

#owl-breadcrumb .con-heading2 {
	padding: 30px 55px 10px 55px;
}

#owl-breadcrumb .con-heading2.dark h3 {
	font-size: 20px;
}

#owl-breadcrumb .con-heading2.dark p {
	font-size: 12px;
}

#owl-breadcrumb .item {
	border-right: 1px solid #555555;
}

#owl-breadcrumb .item {
	border-left: -1px solid #555555;
}

@media (max-width: 991px) {
#owl-breadcrumb.breadcrumb-car.owl-carousel.owl-theme.owl-loaded div.owl-controls {
	bottom: -35px;
	left: 0%;
}

}
@media only screen and (max-width: 768px) {
#owl-breadcrumb .owl-stage-outer {
	overflow: visible;
}

}
/* -----------------------------------------------------------
:: Library / components / carousels / single / single
----------------------------------------------------------- */
/* owl carousel single */
#owl-single div.owl-dots {
	position: absolute;
	bottom: 5%;
	width: 100%;
}

#owl-single .owl-next {
	position: absolute!important;
	right: 20px;
	top: 43%;
}

#owl-single .owl-prev {
	position: absolute!important;
	left: 20px;
	top: 43%;
}

/* -----------------------------------------------------------
:: Library / components / carousels / about / about 
----------------------------------------------------------- */
/* owl carousel single */
#owl-about div.owl-dots {
	position: absolute;
	bottom: 5%;
	width: 100%;
}

#owl-about .owl-next {
	position: absolute!important;
	right: 20px;
	top: 43%;
}

#owl-about .owl-prev {
	position: absolute!important;
	left: 20px;
	top: 43%;
}

/* -----------------------------------------------------------
:: Library / components / carousels / customers / customers 
----------------------------------------------------------- */
#owl-customers .owl-nav {
	display: none;
}

#owl-customers .thumb-inner {
	padding-bottom: 40px;
}

#owl-customers .owl-controls {
	margin-top: -40px;
	z-index: 99999;
}

#owl-customers.team.owl-carousel.owl-theme.owl-loaded div {
	position: relative;
}

/* -----------------------------------------------------------
:: Library / components / carousels / welcome / welcome
----------------------------------------------------------- */
/* -----------------------------------------
:: INDEX BOX CAROUSEL
----------------------------------------- */

/* -----------------------------------------------------------
:: OWL CAROUSEL 2.0 
----------------------------------------------------------- */
.owl-carousel .item-video {
	height: 300px;
}

.owl-carousel .animated {
	-webkit-animation-duration: 1000ms;
	animation-duration: 1000ms;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}

.owl-carousel .owl-animated-in {
	z-index: 0;
}

.owl-carousel .owl-animated-out {
	z-index: 1;
}

.owl-carousel .fadeOut {
	-webkit-animation-name: fadeOut;
	animation-name: fadeOut;
}

@-webkit-keyframes fadeOut{0%{opacity:1}100%{opacity:0}}
@keyframes fadeOut{0%{opacity:1}100%{opacity:0}}
.owl-height {
	-webkit-transition: height 500ms ease-in-out;
	-moz-transition: height 500ms ease-in-out;
	-ms-transition: height 500ms ease-in-out;
	-o-transition: height 500ms ease-in-out;
	transition: height 500ms ease-in-out;
}

.owl-carousel {
	display: none;
	width: 100%;
	-webkit-tap-highlight-color: transparent;
	position: relative;
	z-index: 1;
}

.owl-carousel .owl-stage {
	position: relative;
	-ms-touch-action: pan-Y;
}

.owl-carousel .owl-stage:after {
	content: ".";
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0;
}

.owl-carousel .owl-stage-outer {
	position: relative;
	overflow: hidden;
	-webkit-transform: translate3d(0px,0,0);
}

.owl-carousel .owl-controls .owl-dot, .owl-carousel .owl-controls .owl-nav .owl-next, .owl-carousel .owl-controls .owl-nav .owl-prev {
	cursor: pointer;
	cursor: hand;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.owl-carousel.owl-loaded {
	display: block;
}

.owl-carousel.owl-loading {
	opacity: 0;
	display: block;
}

.owl-carousel.owl-hidden {
	opacity: 0;
}

.owl-carousel .owl-refresh .owl-item {
	display: none;
}

.owl-carousel .owl-item {
	position: relative;
	min-height: 1px;
	float: left;
	-webkit-backface-visibility: hidden;
	-webkit-tap-highlight-color: transparent;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.owl-carousel .owl-item img {
	display: block;
	width: 100%;
	-webkit-transform-style: preserve-3d;
}

.owl-carousel.owl-text-select-on .owl-item {
	-webkit-user-select: auto;
	-moz-user-select: auto;
	-ms-user-select: auto;
	user-select: auto;
}

.owl-carousel .owl-grab {
	cursor: move;
	cursor: -webkit-grab;
	cursor: -o-grab;
	cursor: -ms-grab;
	cursor: grab;
}

.owl-carousel.owl-rtl {
	direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
	float: right;
}

.no-js .owl-carousel {
	display: block;
}

.owl-carousel .owl-item .owl-lazy {
	opacity: 0;
	-webkit-transition: opacity 400ms ease;
	-moz-transition: opacity 400ms ease;
	-ms-transition: opacity 400ms ease;
	-o-transition: opacity 400ms ease;
	transition: opacity 400ms ease;
}

.owl-carousel .owl-item img {
	transform-style: preserve-3d;
}

.owl-carousel .owl-video-wrapper {
	position: relative;
	height: 100%;
	background: #000;
}

.owl-carousel .owl-video-play-icon {
	position: absolute;
	height: 80px;
	width: 80px;
	left: 50%;
	top: 50%;
	margin-left: -40px;
	margin-top: -40px;
	background: url('../graphics/owl.video.play.webp') no-repeat;
	cursor: pointer;
	z-index: 1;
	-webkit-backface-visibility: hidden;
	-webkit-transition: scale 100ms ease;
	-moz-transition: scale 100ms ease;
	-ms-transition: scale 100ms ease;
	-o-transition: scale 100ms ease;
	transition: scale 100ms ease;
}

.owl-carousel .owl-video-play-icon:hover {
	-webkit-transition: scale(1.3,1.3);
	-moz-transition: scale(1.3,1.3);
	-ms-transition: scale(1.3,1.3);
	-o-transition: scale(1.3,1.3);
	transition: scale(1.3,1.3);
}

.owl-carousel .owl-video-playing .owl-video-play-icon, .owl-carousel .owl-video-playing .owl-video-tn {
	display: none;
}

.owl-carousel .owl-video-tn {
	opacity: 0;
	height: 100%;
	background-position: center center;
	background-repeat: no-repeat;
	-webkit-background-size: contain;
	-moz-background-size: contain;
	-o-background-size: contain;
	background-size: contain;
	-webkit-transition: opacity 400ms ease;
	-moz-transition: opacity 400ms ease;
	-ms-transition: opacity 400ms ease;
	-o-transition: opacity 400ms ease;
	transition: opacity 400ms ease;
}

.owl-carousel .owl-video-frame {
	position: relative;
	z-index: 1;
}

/* theme here */
.owl-theme .owl-controls {
	margin-top: 10px;
	text-align: center;
	-webkit-tap-highlight-color: transparent;
}

.owl-theme .owl-controls .owl-nav [class*=owl-] {
	color: #fff;
	font-size: 12px;
	margin: 5px;
	padding-top: 10px;
	display: inline-block;
	cursor: pointer;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
	width: 40px;
	height: 40px;
	text-align: center;
	box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.75);
	position: relative;
	-webkit-box-shadow: inset 0px 0px 10px 0px rgba(0,0,0,0.25);
	-moz-box-shadow: inset 0px 0px 10px 0px rgba(0,0,0,0.25);
	box-shadow: inset 0px 0px 10px 0px rgba(0,0,0,0.25);
}

.owl-next {
	color: #fff;
	background: #555555 url('../graphics/arrow-next.webp') top left;
}

.owl-prev {
	color: #fff;
	background: #555555 url('../graphics/arrow-prev.webp') top right;
}

.owl-theme .owl-controls .owl-nav [class*=owl-]:hover {
	background: #D03E2A;
	color: #fff;
	text-decoration: none;
}

.owl-theme .owl-controls .owl-nav .disabled {
	opacity: .5;
	cursor: default;
}

.owl-theme .owl-dots .owl-dot {
	display: inline-block;
	zoom: 1;
}

.owl-theme .owl-dots .owl-dot span {
	width: 10px;
	height: 10px;
	margin: 5px 7px;
	background: #555555;
	display: block;
	-webkit-backface-visibility: visible;
	-webkit-transition: opacity 200ms ease;
	-moz-transition: opacity 200ms ease;
	-ms-transition: opacity 200ms ease;
	-o-transition: opacity 200ms ease;
	transition: opacity 200ms ease;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	border-radius: 30px;
}

.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
	background: #000;
}

}
----------------------------------------- */
.thumb.thm-icon .thumb-inner {
	transition: all .5s ease;
	padding: 20px;
	text-align: center;
}

.thumb.thm-icon .thumb-inner i {
	margin-bottom: 20px;
}

.thumb.thm-icon .thumb-inner h3 {
	color: #999;
	font-size: 20px;
	font-weight: 800;
	margin: -5px 0 10px 0;
	text-align: center;
}

.thumb.thm-icon .thumb-inner p {
	font-size: 12px;
	margin-bottom: 5px;
}

.thumb.thm-icon div.thumb-inner div.icon {
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 20px;
}

.thumb.thm-icon .thumb-inner:hover {
	background: #fff;
	border: 1px solid #555555;
}

/* -----------------------------------------
:: .thumb.quotes .thumb.quotes2
----------------------------------------- */
/* -----------------------------------------
:: .thumb.loadmore
----------------------------------------- */
.loadmore-content {
	float: left;
	position: absolute;
	top: 25px;
	z-index: 999;
}

.loadmore-content img {
	vertical-align: middle;
	max-width: 100px;
	max-height: 100px;
	display: inline;
	border-radius: 50%;
	border: 5px solid rgba(237,28,36,0.90);
	margin-top: -10px;
}

.thm-loadmore {
	padding-top: 5px;
	padding-bottom: 5px;
	padding-right: 5px;
	padding-left: 5px;
	margin-bottom: 35px;
	position: relative;
}

.thm-loadmore:after {
	content: "";
	position: absolute;
	top: 0;
	left: 54px;
	width: 2px;
	height: 130%;
	border-left: 2px solid rgba(237,28,36,0.90);
}

.thm-loadmore:hover {
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
}

.thumb-load {
	z-index: 9999;
	position: relative;
	margin-top: 17px;
}

.thumb-load img {
	position: absolute;
	left: -20px;
	display: none;
}

.thumb-hide {
	display: none;
}

.thm-loadmore .thumb-desc {
	background: rgba(232,232,232,0.20);
	border: 1px solid rgba(237,28,36,0.90);
	padding: 25px;
	font-size: 16px;
	font-style: italic;
	text-align: center;
	line-height: 20px;
	position: relative;
	border-radius: 3px;
	box-sizing: border-box;
	overflow: hidden;
	transition: all .5s ease;
	margin-left: 150px;
}

.thm-loadmore .thumb-desc:hover {
	background: rgba(232,232,232,1.0);
	border: 1px solid #ED1C24;
}

/*thumb inner content container*/
.thm-loadmore:before {
	position: absolute;
	top: 0px;
	left: 130px;
	content: '';
	width: 0;
	height: 0;
	margin-top: 40px;
	border-top: 20px solid transparent;
	border-right: 25px solid rgba(237,28,36,0.5);
	border-bottom: 20px solid transparent;
	z-index: 999;
	transition: all .5s ease;
}

.thm-loadmore:hover:before {
	border-right: 25px solid rgba(237,28,36,0.90);
}

.loadmore-content img {
	-webkit-transition-timing-function: ease;
	-moz-transition-timing-function: ease;
	-ms-transition-timing-function: ease;
	-o-transition-timing-function: ease;
	-webkit-transition-duration: 400ms;
	-moz-transition-duration: 400ms;
	-ms-transition-duration: 400ms;
	-o-transition-duration: 400ms;
}

.loadmore-content img:hover {
	-webkit-transform: scale(1.1, 1.1);
	-moz-transform: scale(1.1, 1.1);
	-ms-transform: scale(1.1, 1.1);
	-o-transform: scale(1.1, 1.1);
	-webkit-transition-timing-function: ease;
	-moz-transition-timing-function: ease;
	-ms-transition-timing-function: ease;
	-o-transition-timing-function: ease;
	-webkit-transition-duration: 200ms;
	-moz-transition-duration: 200ms;
	-ms-transition-duration: 200ms;
	-o-transition-duration: 200ms;
	border: solid 2px rgba(237,28,36,0.90);
	cursor: pointer;
}

.appear {
	visibility: hidden;
}

.thm-loadmore.history .thumb-desc {
	background: rgba(0,0,0,0.25);
	border: 1px solid rgba(237,28,36,0.90);
	border-top: 35px solid rgba(237,28,36,0.90);
	overflow: visible;
	box-sizing: border-box;
}

.thm-loadmore.history .thumb-desc:hover {
	background: rgba(0,0,0,0.75);
	border-bottom: 5px solid #ED1C24;
}

.thm-loadmore.history:before {
	margin-top: 60px;
}

.thm-loadmore.history:hover:before {
	margin-top: 40px;
}

.thm-loadmore.history .thumb-desc .history-title {
	float: left;
	color: #ffffff;
	font-size: 22px;
	margin-top: -52px;
	font-style: normal;
	letter-spacing: -1px;
}

.thm-loadmore.history .thumb-desc .history-year {
	float: right;
	color: #ffffff;
	font-size: 22px;
	margin-top: -52px;
	font-style: normal;
	letter-spacing: -1px;
}

/* -----------------------------------------
:: .thumb.iconlarge
----------------------------------------- */

/* -----------------------------------------
:: .thumb.contents-center
----------------------------------------- */
/* -----------------------------------------
:: .thumbnail default 
----------------------------------------- */
.thumbnail {
	display: block;
	padding: 4px;
	margin-bottom: 22px;
	line-height: 1.42857143;
	background-color: #ffffff;
	border: 1px solid #aaa;
	border-radius: 4px;
	-webkit-transition: border 0.2s ease-in-out;
	-o-transition: border 0.2s ease-in-out;
	transition: border 0.2s ease-in-out;
}

.thumbnail > img, .thumbnail a > img {
	margin-left: auto;
	margin-right: auto;
}

a.thumbnail:hover, a.thumbnail:focus, a.thumbnail.active {
	border-color: #555555;
}

.thumbnail .caption {
	padding: 9px;
	color: #555555;
}

.img-thumbnail {
	padding: 4px;
	line-height: 1.42857143;
	background-color: #ffffff;
	border: 1px solid #aaa;
	border-radius: 4px;
	-webkit-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
	display: inline-block;
	max-width: 100%;
	height: auto;
}

.thumbnail, .img-thumbnail {
	background-color: rgba(0,0,0,0.0);
	border: 1px solid #555555;
	border-radius: 4px;
	display: block;
	line-height: 1.42857;
	margin-bottom: 20px;
	padding: 5px;
	transition: all 0.2s ease-in-out 0s;
}

.thumbnail .caption {
	color: #555555;
}

.well, .panel {
	background-color: rgba(0, 0, 0, 0.1);
	border: 0px solid #222222;
	border-radius: 4px;
	box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05) inset;
	margin-bottom: 20px;
	min-height: 20px;
	padding: 0px;
}

/* -----------------------------------------------------------
:: YOUTUBEBACKGROUND: VIDEO BACKGROUND  
----------------------------------------------------------- */
/* -----------------------------------------------------------
:: LIBRARY-PRO-COMPONENT: STYLES  
----------------------------------------------------------- */
/**/
/**/
/* -----------------------------------------------------------
:: Library / components / accordions / faq / faq  
----------------------------------------------------------- */
.faqs .panel-group .panel-heading a {
	color: #e8e8e8;
}

.faqs .faqHeader {
	font-size: 27px;
	margin: 20px;
}

.faqs .panel-heading [data-toggle=collapse]:after {
	color: #e8e8e8;
	font-size: 18px;
	font-family: FontAwesome;
	content: "\f0a7";
	float: right;
	line-height: 22px; ;
}

.faqs .panel-heading [data-toggle=collapse].collapsed:after {
	color: #e8e8e8;
	font-family: FontAwesome;
	content: "\f0a6"; ;
	-webkit-transform: rotate(90deg);
	-moz-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	-o-transform: rotate(90deg);
	transform: rotate(90deg);
}

/* -----------------------------------------------------------
:: Library / components / counters / clients / clients  
----------------------------------------------------------- */
.counter1 {
	font-family: 'Open Sans', sans-serif;
	float: left;
	width: 100%;
	margin-bottom: 21px;
	margin-top: 20px;
	line-height: 1.1;
}

.counter1-info {
	width: 25%;
	float: left;
	padding-bottom: 45px;
}

.counter1-num {
	font-size: 50px;
	text-align: center;
	color: #555555;
	font-weight: bold;
}

.counter1-label {
	font-size: 16px;
	text-align: center;
}

.counter1-icon {
	text-align: center;
	color: #ED1C24;
	margin-bottom: -5px;
}

/* -----------------------------------------------------------
:: Library / components / counters / countdown / countdown  
----------------------------------------------------------- */
#countdown {
	margin-bottom: 50px;
}

.countdown-row {
	clear: both;
	display: block;
	padding: 0;
	text-align: center;
}

.countdown-show1 .countdown-section {
	width: 98%;
}

.countdown-show2 .countdown-section {
	width: 48%;
}

.countdown-show3 .countdown-section {
	width: 32.5%;
}

.countdown-show4 .countdown-section {
	width: 14.5%;
	margin: 0%;
	padding: 0%;
	text-align: center;
}

.countdown-show5 .countdown-section {
	width: 19.5%;
}

.countdown-show6 .countdown-section {
	width: 16.25%;
}

.countdown-show7 .countdown-section {
	width: 14%;
	background: #999;
}

.countdown-section {
	display: inline-block;
	text-align: center;
	font-family: 'Open Sans', sans-serif;
	margin-bottom: 50px;
}

.countdown-amount {
	font-size: 50px;
	color: #ED1C24;
	font-weight: bold;
}

.countdown-period {
	display: block;
	font-size: 16px;
	text-align: center;
}

.countdown-descr {
	display: block;
	width: 100%;
}

/* -----------------------------------------------------------
:: Library / components / pricing / switcher / pricing
----------------------------------------------------------- */
.stretchRight {
	visibility: visible;
}

.stretchRight {
	animation-name: stretchRight;
	-webkit-animation-name: stretchRight;
	animation-duration: 1.5s;
	-webkit-animation-duration: 1.5s;
	animation-timing-function: ease-out;
	-webkit-animation-timing-function: ease-out;
	transform-origin: 0% 0%;
	-ms-transform-origin: 0% 0%;
	-webkit-transform-origin: 0% 0%;
}

@keyframes stretchRight {
	0% {
		transform: scaleX(0.0);
	}
	40% {
		transform: scaleX(1.02);
	}
	60% {
		transform: scaleX(0.98);
	}
	80% {
		transform: scaleX(1.01);
	}
	100% {
		transform: scaleX(0.98);
	}				
	80% {
		transform: scaleX(1.01);
	}
	100% {
		transform: scaleX(1);
	}							
}
@-webkit-keyframes stretchRight {
	0% {
		-webkit-transform: scaleX(0.0);
	}
	40% {
		-webkit-transform: scaleX(1.02);
	}
	60% {
		-webkit-transform: scaleX(0.98);
	}
	80% {
		-webkit-transform: scaleX(1.01);
	}
	100% {
		-webkit-transform: scaleX(0.98);
	}				
	80% {
		-webkit-transform: scaleX(1.01);
	}
	100% {
		-webkit-transform: scaleX(1);
	}		
}
/* -----------------------------------------------------------
:: Library / components / tabs / details / details
----------------------------------------------------------- */
/*tabs horizontal*/
.tabs-info ul.nav.nav-tabs {
	overflow: visible;
}

.tabs.tabs-info ul.nav.nav-tabs li.active {
	color: #ffffff!important;
}

.tabs.tabs-info ul.nav.nav-tabs > li.active > a, .tabs.tabs-info ul.nav.nav-tabs > li.active > a:hover, .tabs.tabs-info ul.nav.nav-tabs > li.active > a:focus {
	background-color: rgba(237,28,36,1.00);
	border-bottom-color: transparent;
	color: #ffffff;
	height: 55px;
}

.tabs.tabs-info ul.nav.nav-tabs > li > a, .tabs.tabs-info ul.nav.nav-tabs > li > a:hover, .tabs.tabs-info ul.nav.nav-tabs > li > a {
	background-color: rgba(232,232,232,0.5);
	color: #555555;
	border: 1px solid rgba(237,28,36,1.00);
	border-bottom-color: transparent;
	transition: all .4s ease;
}

.tabs.tabs-info ul.nav.nav-tabs > li > a:hover {
	background-color: rgba(237,28,36,1.00);
	color: #ffffff;
	border: 1px solid rgba(237,28,36,1.00);
	border-bottom-color: transparent;
	border-bottom: 0px;
}

.tabs.tabs-info div.tab-content-wrapper {
	border: 1px solid rgba(237,28,36,1.00);
	border-radius: 5px;
	padding: 5px;
	background-color: rgba(232,232,232,0.5);
	margin-top: -6px;
}

.tab-content .tab-pane {
	padding: 20px;
	margin-top: -15px;
}

.tabs.tabs-info div.tab-content {
	border: 1px solid rgba(237,28,36,1.00);
	border-radius: 3px;
	border-top: 15px solid rgba(237,28,36,1.00);
	padding: 5px;
	font-size: 14px;
}

.tabs.tabs-info ul {
	margin-left: 30px;
}

.tabs-info {
	margin-top: 35px;
}

ul.comments .comment-arrow {
	border-right-color: #F5F7F7;
}

ul.comments .comment-block {
	background: #F5F7F7;
}

ul.comments li img.avatar {
	height: 80px;
	width: 80px;
}

ul.comments li .img-thumbnail {
	margin-top: 25px;
	margin-left: -115px;
	position: absolute;
}

ul.comments .comment-arrow {
	border-bottom: 15px solid transparent;
	border-right: 15px solid #333;
	border-top: 15px solid transparent;
	height: 0;
	left: -15px;
	position: absolute;
	top: 28px;
	width: 0;
}

ul.comments .comment-block .comment-by {
	display: block;
	font-size: 1em;
	line-height: 21px;
	margin: 0;
	padding: 0 0 5px;
}

ul.comments {
	list-style: outside none none;
	margin: 0;
	padding: 0;
}

ul.comments li {
	clear: both;
	padding: 10px 0 0 115px;
}

ul.comments li .comment {
	margin-bottom: 10px;
}

ul.comments {
	list-style: outside none none;
}

ul.comments .comment-block {
	background: none repeat scroll 0 0 #e8e8e8;
	border-radius: 5px;
	padding: 20px 20px 30px;
	position: relative;
	border:1px solid #333;
}

form#prodreview div.row div.col-sm-12 input {
	margin-top: 5px;
}

/* -----------------------------------------------------------
:: Library / components / tabs / services / services
----------------------------------------------------------- */
/* tabs vertical */
@media (min-width: 992px) {
.thumb.color.tabsv-wrapper {
	margin-left: 20px;
}

}
.tabsv .tab-content {
	padding: 0;
	border-radius: 0 5px 5px 5px;
	padding: 20px 20px 10px 20px;
}

.nav-tabs {
	border-bottom-color: transparent;
	font-size: 16px;
	margin-top: 0px;
	margin-bottom: -1px;
}

.nav-tabs > li > a {
	padding: 13px 20px;
	margin-right: 2px;
	margin-top: 0px;
	border: 1px solid rgba(237,28,36,0.9);
	color: rgba(237,28,36,1.00);
}

.nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus {
	border-bottom-color: transparent;
	background-color: rgba(237,28,36,0.9);
	color: rgba(237,28,36,1.00);
}

.tabsv .nav > li > a {
	border: 1px solid rgba(237,28,36,0.5);
	border-radius: 4px;
	margin-bottom: 5px;
	font-size: 16px;
	line-height: 1.7em;
}

.tabsv .nav > li > a:hover {
	color: rgba(237,28,36,0.5);
}

.tabsv .nav > li.active a {
	color: rgba(237,28,36,0.9);
}

.tabsv-wrapper .tab-content .tab-pane {
	margin-top: 0px;
	padding: 0px;
}

.tabsv-wrapper div.thumb-inner div.tab-content div#tab4.tab-pane.fade.active.in {
}

@media (min-width: 768px) 	{
.tabsv .nav {
	margin-right: -25px;
}

.tabsv .tab-content {
	border-radius: 5px;
}

.tabsv .nav > li.active {
	position: relative;
	z-index: 2;
}

.tabsv .nav > li.active a:after, .tabsv .nav > li.active a:before {
	display: block;
	content: '';
	width: 23px;
	height: 5px;
	position: absolute;
	right: -25px;
	top: 40%;
	margin-top: 0;
}

.tabsv .nav > li.active a:after, .tabsv .nav > li.active a:before {
	border-top: 5px solid rgba(237,28,36,0.5);
	border-bottom: 5px solid rgba(237,28,36,0.5);
}

.tabsv .nav > li.active a:after {
	border-left-color: rgba(237,28,36,0.5);
	border-left-width: 20px;
}

}
.tabsv .nav li a {
	margin-top: 4px;
	padding: 10px 20px;
}

/* -----------------------------------------------------------
:: Library / components / tabs / 2-column-left / 2-column-right
----------------------------------------------------------- */
/* sidebar */
#sidetab ul.nav-list.list2 > li {
	margin: 0;
	padding: 0;
}

#sidetab ul.nav-list.list2 > li a {
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
	background-position: 9px 16px;
	background-repeat: no-repeat;
	border-bottom: 1px solid rgba(237,28,36,0.90);
	padding: 8px 20px;
}

/* side tabs */
#sidetab.tabs {
	border-radius: 4px;
	margin-bottom: 35px;
}

#sidetab .nav-tabs.tabs1 {
	margin: 0;
	font-size: 0;
	border-bottom-color: rgba(237,28,36,0.90);
}

#sidetab .nav-tabs.tabs1 li {
	display: inline-block;
	float: none;
}

#sidetab .nav-tabs.tabs1 li:last-child a {
	margin-right: 0;
}

#sidetab .nav-tabs.tabs1 li a {
	border-radius: 5px 5px 0 0;
	font-size: 14px;
	margin-right: 1px;
}

#sidetab .nav-tabs.tabs1 li a, .nav-tabs.tabs1 li a:hover {
	background: rgba(232,232,232,0.25);
	border-bottom: none;
	border-left: 1px solid rgba(237,28,36,0.90);
	border-right: 1px solid rgba(237,28,36,0.90);
	border-top: 3px solid rgba(237,28,36,0.90);
	color: #333;
}

#sidetab .nav-tabs.tabs1 li a:hover {
	border-bottom-color: transparent;
	border-top: 1px solid rgba(237,28,36,0.90);
	box-shadow: none;
}

#sidetab .nav-tabs.tabs1 li a:active, .nav-tabs.tabs1 li a:focus {
	border-bottom: 0;
}

#sidetab .nav-tabs.tabs1 li.active a, .nav-tabs.tabs1 li.active a:hover, .nav-tabs.tabs1 li.active a:focus {
	background: rgba(232,232,232,0.25);
	border-left-color: rgba(237,28,36,0.90);
	border-right-color: rgba(237,28,36,0.90);
	border-top: 3px solid rgba(237,28,36,0.90);
	color: #ED1C24;
}

#sidetab .tab-content.tabs1 {
	border-radius: 0 0 4px 4px;
	box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.04);
	background: rgba(232,232,232,0.25);
	border: 1px solid rgba(237,28,36,0.90);
	border-top: 0;
	padding: 15px;
}

/* side tab content */
#sidetab ul.side-tabs1 {
	list-style: none;
	margin: 0;
	padding: 0;
}

#sidetab ul.side-tabs1 li {
	*zoom: 1;
	border-bottom: 1px dotted #E2E2E2;
	padding: 15px 0;
}

#sidetab ul.side-tabs1 li:before, ul.side-tabs1 li:after {
	content: " ";
	display: table;
}

#sidetab ul.side-tabs1 li:after {
	clear: both;
}

#sidetab ul.side-tabs1 li:last-child {
	border-bottom: 0;
}

#sidetab ul.side-tabs1 .side-tabs1-img {
	float: left;
	margin-right: 12px;
}

#sidetab ul.side-tabs1 .post-meta {
	color: #888;
	font-size: 0.8em;
}

/* -----------------------------------------------------------
:: Library / components / carousels / laptop / laptop
----------------------------------------------------------- */
/* owl carousel laptop */
.laptop-bg {
	background: url("../themed-images/pages/index/laptop-bg.webp") center center no-repeat;
	width: 672px;
	height: 360px;
	margin: auto;
}

#owl-laptop .item {
}

#owl-laptop .item img {
	margin-top: 27px;
	margin-left: 122px;
	max-width: 430px;
	max-height: 270px;
}

#owl-laptop .owl-next {
	display: none!important;
}

#owl-laptop .owl-prev {
	display: none!important;
}

/* -----------------------------------------------------------
:: Library / components / carousels / logos / logos
----------------------------------------------------------- */
/* owl carousel logo */
.owllogo .owl-next {
	position: absolute!important;
	right: -60px;
	top: 50px;
}

.owllogo .owl-prev {
	position: absolute!important;
	left: -60px;
	top: 50px;
}

#owl-logos.owllogo .owl-carousel.owl-theme.owl-loaded div.owl-controls div.owl-dots {
	margin-top: -120px;
	z-index: 99999;
	visibility: hidden;
}

#owl-logos.owllogo.owl-carousel.owl-theme.owl-loaded div.owl-controls {
	margin-top: -65px;
}

@media only screen and (max-width: 768px) {
#owl-logos .owl-stage-outer {
	overflow: visible;
}

}
/* -----------------------------------------------------------
:: Library / components / carousels / logos / logos
----------------------------------------------------------- */
/* owl carousel logo */
.breadcrumb-car .owl-next {
	display: none;
}

.breadcrumb-car .owl-prev {
	display: none;
}

#owl-breadcrumb.breadcrumb-car.owl-carousel.owl-theme.owl-loaded div.owl-controls div.owl-dots {
	margin-top: 0px;
	z-index: 99999;
}

#owl-breadcrumb.breadcrumb-car.owl-carousel.owl-theme.owl-loaded div.owl-controls div.owl-nav {
	display: none;
}

#owl-breadcrumb.breadcrumb-car.owl-carousel.owl-theme.owl-loaded div.owl-controls {
	position: absolute;
	bottom: -35px;
	left: 48%;
}

#owl-breadcrumb img {
	max-width: 75px;
	float: right;
	border-radius: 50%;
	border: 5px rgba(255,255,255,0.25) solid;
}

#owl-breadcrumb .con-heading2 {
	padding: 30px 55px 10px 55px;
}

#owl-breadcrumb .con-heading2.dark h3 {
	font-size: 20px;
}

#owl-breadcrumb .con-heading2.dark p {
	font-size: 12px;
}

#owl-breadcrumb .item {
	border-right: 1px solid #555555;
}

#owl-breadcrumb .item {
	border-left: -1px solid #555555;
}

@media (max-width: 991px) {
#owl-breadcrumb.breadcrumb-car.owl-carousel.owl-theme.owl-loaded div.owl-controls {
	bottom: -35px;
	left: 0%;
}

}
@media only screen and (max-width: 768px) {
#owl-breadcrumb .owl-stage-outer {
	overflow: visible;
}

}
/* -----------------------------------------------------------
:: Library / components / carousels / single / single
----------------------------------------------------------- */
/* owl carousel single */
#owl-single div.owl-dots {
	position: absolute;
	bottom: 5%;
	width: 100%;
}

#owl-single .owl-next {
	position: absolute!important;
	right: 20px;
	top: 43%;
}

#owl-single .owl-prev {
	position: absolute!important;
	left: 20px;
	top: 43%;
}

/* -----------------------------------------------------------
:: Library / components / carousels / about / about 
----------------------------------------------------------- */
/* owl carousel single */
#owl-about div.owl-dots {
	position: absolute;
	bottom: 5%;
	width: 100%;
}

#owl-about .owl-next {
	position: absolute!important;
	right: 20px;
	top: 43%;
}

#owl-about .owl-prev {
	position: absolute!important;
	left: 20px;
	top: 43%;
}

/* -----------------------------------------------------------
:: Library / components / carousels / customers / customers 
----------------------------------------------------------- */
#owl-customers .owl-nav {
	display: none;
}

#owl-customers .thumb-inner {
	padding-bottom: 40px;
}

#owl-customers .owl-controls {
	margin-top: -40px;
	z-index: 99999;
}

#owl-customers.team.owl-carousel.owl-theme.owl-loaded div {
	position: relative;
}

/* -----------------------------------------------------------
:: Library / components / carousels / welcome / welcome
----------------------------------------------------------- */
/* -----------------------------------------------------------
:: Library / components / carousels / quotes / quotes
----------------------------------------------------------- */
/* -----------------------------------------------------------
:: OWL CAROUSEL 2.0 
----------------------------------------------------------- */
.owl-carousel .item-video {
	height: 300px;
}

.owl-carousel .animated {
	-webkit-animation-duration: 1000ms;
	animation-duration: 1000ms;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}

.owl-carousel .owl-animated-in {
	z-index: 0;
}

.owl-carousel .owl-animated-out {
	z-index: 1;
}

.owl-carousel .fadeOut {
	-webkit-animation-name: fadeOut;
	animation-name: fadeOut;
}

@-webkit-keyframes fadeOut{0%{opacity:1}100%{opacity:0}}
@keyframes fadeOut{0%{opacity:1}100%{opacity:0}}
.owl-height {
	-webkit-transition: height 500ms ease-in-out;
	-moz-transition: height 500ms ease-in-out;
	-ms-transition: height 500ms ease-in-out;
	-o-transition: height 500ms ease-in-out;
	transition: height 500ms ease-in-out;
}

.owl-carousel {
	display: none;
	width: 100%;
	-webkit-tap-highlight-color: transparent;
	position: relative;
	z-index: 1;
}

.owl-carousel .owl-stage {
	position: relative;
	-ms-touch-action: pan-Y;
}

.owl-carousel .owl-stage:after {
	content: ".";
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0;
}

.owl-carousel .owl-stage-outer {
	position: relative;
	overflow: hidden;
	-webkit-transform: translate3d(0px,0,0);
}

.owl-carousel .owl-controls .owl-dot, .owl-carousel .owl-controls .owl-nav .owl-next, .owl-carousel .owl-controls .owl-nav .owl-prev {
	cursor: pointer;
	cursor: hand;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.owl-carousel.owl-loaded {
	display: block;
}

.owl-carousel.owl-loading {
	opacity: 0;
	display: block;
}

.owl-carousel.owl-hidden {
	opacity: 0;
}

.owl-carousel .owl-refresh .owl-item {
	display: none;
}

.owl-carousel .owl-item {
	position: relative;
	min-height: 1px;
	float: left;
	-webkit-backface-visibility: hidden;
	-webkit-tap-highlight-color: transparent;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.owl-carousel .owl-item img {
	display: block;
	width: 100%;
	-webkit-transform-style: preserve-3d;
}

.owl-carousel.owl-text-select-on .owl-item {
	-webkit-user-select: auto;
	-moz-user-select: auto;
	-ms-user-select: auto;
	user-select: auto;
}

.owl-carousel .owl-grab {
	cursor: move;
	cursor: -webkit-grab;
	cursor: -o-grab;
	cursor: -ms-grab;
	cursor: grab;
}

.owl-carousel.owl-rtl {
	direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
	float: right;
}

.no-js .owl-carousel {
	display: block;
}

.owl-carousel .owl-item .owl-lazy {
	opacity: 0;
	-webkit-transition: opacity 400ms ease;
	-moz-transition: opacity 400ms ease;
	-ms-transition: opacity 400ms ease;
	-o-transition: opacity 400ms ease;
	transition: opacity 400ms ease;
}

.owl-carousel .owl-item img {
	transform-style: preserve-3d;
}

.owl-carousel .owl-video-wrapper {
	position: relative;
	height: 100%;
	background: #000;
}

.owl-carousel .owl-video-play-icon {
	position: absolute;
	height: 80px;
	width: 80px;
	left: 50%;
	top: 50%;
	margin-left: -40px;
	margin-top: -40px;
	background: url('../graphics/owl.video.play.webp') no-repeat;
	cursor: pointer;
	z-index: 1;
	-webkit-backface-visibility: hidden;
	-webkit-transition: scale 100ms ease;
	-moz-transition: scale 100ms ease;
	-ms-transition: scale 100ms ease;
	-o-transition: scale 100ms ease;
	transition: scale 100ms ease;
}

.owl-carousel .owl-video-play-icon:hover {
	-webkit-transition: scale(1.3,1.3);
	-moz-transition: scale(1.3,1.3);
	-ms-transition: scale(1.3,1.3);
	-o-transition: scale(1.3,1.3);
	transition: scale(1.3,1.3);
}

.owl-carousel .owl-video-playing .owl-video-play-icon, .owl-carousel .owl-video-playing .owl-video-tn {
	display: none;
}

.owl-carousel .owl-video-tn {
	opacity: 0;
	height: 100%;
	background-position: center center;
	background-repeat: no-repeat;
	-webkit-background-size: contain;
	-moz-background-size: contain;
	-o-background-size: contain;
	background-size: contain;
	-webkit-transition: opacity 400ms ease;
	-moz-transition: opacity 400ms ease;
	-ms-transition: opacity 400ms ease;
	-o-transition: opacity 400ms ease;
	transition: opacity 400ms ease;
}

.owl-carousel .owl-video-frame {
	position: relative;
	z-index: 1;
}

/* theme here */
.owl-theme .owl-controls {
	margin-top: 10px;
	text-align: center;
	-webkit-tap-highlight-color: transparent;
}

.owl-theme .owl-controls .owl-nav [class*=owl-] {
	color: #fff;
	font-size: 12px;
	margin: 5px;
	padding-top: 10px;
	display: inline-block;
	cursor: pointer;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
	width: 40px;
	height: 40px;
	text-align: center;
	box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.75);
	position: relative;
	-webkit-box-shadow: inset 0px 0px 10px 0px rgba(0,0,0,0.25);
	-moz-box-shadow: inset 0px 0px 10px 0px rgba(0,0,0,0.25);
	box-shadow: inset 0px 0px 10px 0px rgba(0,0,0,0.25);
}

.owl-next {
	color: #fff;
	background: #555555 url('../graphics/arrow-next.webp') top left;
}

.owl-prev {
	color: #fff;
	background: #555555 url('../graphics/arrow-prev.webp') top right;
}

.owl-theme .owl-controls .owl-nav [class*=owl-]:hover {
	background: #ED1C24;
	color: #fff;
	text-decoration: none;
}

.owl-theme .owl-controls .owl-nav .disabled {
	opacity: .5;
	cursor: default;
}

.owl-theme .owl-dots .owl-dot {
	display: inline-block;
	zoom: 1;
}

.owl-theme .owl-dots .owl-dot span {
	width: 10px;
	height: 10px;
	margin: 5px 7px;
	background: #555555;
	display: block;
	-webkit-backface-visibility: visible;
	-webkit-transition: opacity 200ms ease;
	-moz-transition: opacity 200ms ease;
	-ms-transition: opacity 200ms ease;
	-o-transition: opacity 200ms ease;
	transition: opacity 200ms ease;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	border-radius: 30px;
}

.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
	background: #000;
}

}
