﻿/* -----------------------------------------
:: BACK TO TOP 
----------------------------------------- */
.cd-top {
	display: inline-block;
	height: 40px;
	width: 40px;
	position: fixed;
	bottom: 40px;
	right: 10px;
	overflow: hidden;
	text-indent: 100%;
	white-space: nowrap;
	background: #3398da url(../graphics/cd-top-arrow.svg) 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: 1;
}

.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 {
	background-color: #222222;
	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;
}

.theme-btn a:hover {
	color: #0C1F28;
}

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

.theme-btn-hover {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border-radius: 4px;
	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) );
}

.theme-btn-inner {
	background: #3498DB url('../graphics/stripe.png');
	padding: 10px 20px 10px 20px;
	position: relative;
	border-radius: 3px;
	box-sizing: border-box;
	transition: all .3s ease;
}

.theme-btn-inner:hover {
	background: #56BBFF;
}

.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: #3498DB url('../graphics/stripe.png');
	padding: 20px;
	position: relative;
	border-radius: 50%;
	box-sizing: border-box;
	transition: all .3s ease;
}

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

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

.corner-icon {
	background: #3498DB url('../graphics/stripe.png');
	width: 33px;
	height: 33px;
	position: relative;
	border-radius: 0;
	box-sizing: border-box;
	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 #3498DB;
}

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

.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;
    background-size: 10px 15px;
    background-image: url(../themed-images/backgrounds/branding.png);
}

.news-btn-inner {
    background: #3498DB url('../graphics/stripe.png');
    padding-top: 23px;
    width: 74px;
    height: 74px;
    position: relative;
    border-radius: 0px;
    box-sizing: border-box;
    transition: all .3s ease;
    text-align: center;
    color: #ffffff;
    background-image: url(../graphics/stripe.png);
}

.news-btn-inner:hover {
	background: #56BBFF;
}

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

.btn-quotes span img {
	border-radius: 50%;
	border: 5px solid #3498DB;
	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: #3498DB;
	background: rgba(20, 93, 142, 0.3);
}

.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: #333;
}

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

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

.thm.content {
    position: relative;
    width: auto;
    height: auto;
    text-align: left;
}

.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;
	left: 4px;
}

.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: 983088px;
}

.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: 4px;
	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: 4px;
	box-sizing: border-box;
	opacity: 1;
}

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

.thumb-inner:hover {
	background: #ffffff;
}

/* -----------------------------------------
:: .thumb.color
----------------------------------------- */
.thumb.color .thumb-inner {
	border: 1px solid #3498DB;
}


/* -----------------------------------------
:: .thumb.dark
----------------------------------------- */
.thumb.dark .thumb-hover {
}

.thumb.dark .thumb-inner {
	background: #3498DB;
	border: 0px solid #3498DB;
	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.png') 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.png') 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.png');
	position: absolute;
	left: 10px;
	top: -10px;
	height: 1px;
}

.thm-desc:after {
	width: 98px;
	content: " ";
	background-image: url('../graphics/ih-desc-top.png');
	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: #3498DB;
	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: #0C1F28;
	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;
}



#owl-team.team.owl-carousel.owl-theme.owl-loaded div.owl-stage-outer div.owl-stage div.owl-item.active div.item div.thumb.dark.social-gallery div.thumb-inner div.thm.content.thm-hover1 div.thm-link{
width: 100%;
	height: 100%;
}


#owl-team.team.owl-carousel div.thm-link a{

	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	
}




/* -----------------------------------------
:: .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-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: 20px;
	color: #3498DB;
	font-weight: 800;
}

.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: #3498DB;
	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: #0C1F28;
	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
----------------------------------------- */
.thm-icon1 i, .thm-icon2 i, .thm-icon3 i, .thm-icon4 i {
	width: 40px;
	height: 40px;
	text-align: center;
	color: #ffffff;
	border-radius: 50%;
	padding-top: 12px;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	background: #3498DB;
	visibility: hidden;
	margin-left: auto;
}

.thm-icon1 i:hover, .thm-icon2 i:hover, .thm-icon3 i:hover, .thm-icon4 i:hover {
	background: #0C1F28;
	background: rgba(0,0,0,0.5);
}

/*desc*/
.social-gallery .thm-desc {
	top: 40%;
}

.social-gallery .thm-desc:before {
	background-image: none;
}

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

.thm-hover1:hover .thm-desc {
	top: 40%;
}

.thm-icon-wrapper {
	position: absolute;
	top: 70%;
}

.thm-icon-wrapper {
	width: 80%;
	display: table;
	margin-left: 10%;
	margin-right: 10%;
}

.thm-icon-wrapper > div {
	width: 25%;
	display: table-cell;
	text-align: center;
}

/*icon1 */
.thm-icon1 i {
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	transition: all 0.5s ease;
	transform: scale(0);
}

.thm-hover1:hover .thm-icon1 i {
	visibility: visible;
	transform: scale(1);
}

/*icon2*/
.thm-icon2 i {
	-webkit-transition: all 0.6s ease;
	-moz-transition: all 0.6s ease;
	transition: all 0.6s ease;
	transform: scale(0);
}

.thm-hover1:hover .thm-icon2 i {
	visibility: visible;
	transform: scale(1);
}

/*icon3*/
.thm-icon3 i {
	-webkit-transition: all 0.7s ease;
	-moz-transition: all 0.7s ease;
	transition: all 0.7s ease;
	transform: scale(0);
}

.thm-hover1:hover .thm-icon3 i {
	visibility: visible;
	transform: scale(1);
}

/*icon4*/
.thm-icon4 i {
	-webkit-transition: all 0.8s ease;
	-moz-transition: all 0.8s ease;
	transition: all 0.8s ease;
	transform: scale(0);
}

.thm-hover1:hover .thm-icon4 i {
	visibility: visible;
	transform: scale(1);
}

/* -----------------------------------------
:: .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: #0C1F28;
	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: #0C1F28;
}

/* -----------------------------------------
:: .thumb.caption icons
----------------------------------------- */
.cap-icons {
	height: 40px;
	text-align: center;
	margin-right: -5px;
	margin-left: -5px;
	margin-bottom: 20px;
	position: relative;
}

.cap-icons div.col-xs-2 {
	padding: 0;
}

.cap-icons-bg {
	position: absolute;
	top: 7px;
	left: 0px;
	right: 0px;
	height: 10px;
	background: #3498DB;
	transition: all .5s ease;
}

.thumb.color .thumb-inner:hover .cap-icons-bg {
	background: #56bbff;
}

.cap-icons i {
	width: 40px;
	height: 40px;
	text-align: center;
	color: #3498DB;
	border-radius: 50%;
	padding-top: 8px;
	margin-top: -50px;
	background: #ffffff;
	border: 5px solid #3498DB;
	transition: all .7s ease;
}

.thumb.color .thumb-inner:hover .cap-icons i {
	border: 5px solid #56bbff;
}

.cap-icons i:hover {
	color: #ffffff;
	border-radius: 0%;
	padding-top: 8px;
	margin-top: -50px;
	background: #3498DB;
	border: 5px solid #ffffff;
}

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

.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 #3498DB;
	-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: #3498DB;
	-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: #3498DB;
	background: rgba(52,152,219,0.1);
	-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: #3498DB;
	background: rgba(52,152,219,0.8);
}

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

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

.thm-hover2:hover .thm-corners::before {
	left: 50px;
	border-color: rgba(52,152,219,1.0);
}

.thm-hover2:hover .thm-corners::after {
	right: 50px;
	border-color: rgba(52,152,219,1.0);
}

/* -----------------------------------------
:: .thumb.catalog
----------------------------------------- */
.catalog .thumb-inner {
	border-radius: 3px 3px 0 0;
	border-bottom: 0px;
}

.thm-cat-cart a, .thm-cat-details a {
	font-size: 14px;
	color: #ffffff;
}

.thm-cat-cart a:hover, .thm-cat-details a:hover {
	color: #3498DB;
}

.thm-cat-cart, .thm-cat-details {
	position: absolute;
	left: 0;
	right: 0;
	padding: 8px;
	text-align: center;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	background: #222222;
	background: rgba(0,0,0,0.6);
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	transition: all 0.2s ease;
	visibility: hidden;
}

.thm-cat-cart {
	top: -50px;
}

.thm-cat-details {
	bottom: -50px;
}

.thm-hover1:hover .thm-cat-cart {
	visibility: visible;
	top: 0;
}

.thm-hover1:hover .thm-cat-details {
	visibility: visible;
	bottom: 0;
}

.thm-cat-name {
	background: #3498DB;
	text-align: center;
	font-size: 18px;
	color: #ffffff;
	padding: 10px;
	margin-top: -1px;
}

.thm-cat-name span {
	font-weight: bold;
}

.thm-cat-price1, .thm-cat-price2 {
	font-size: 14px;
	padding: 10px;
	color: #3398DA;
	font-weight: bold;
}

.thm-cat-price1 {
	text-align: left;
	float: left;
}

.thm-cat-price1 span {
	color: #555;
	font-size: 18px;
	font-weight: normal;
	padding-top: 5px;
	text-decoration: line-through;
	position: relative;
	top: 6px;
}

.thm-cat-price2 {
	text-align: right;
	float: right;
	font-weight: normal;
}

.thm-cat-price2 span {
	font-size: 18px;
	font-weight: normal;
	padding-top: 5px;
	position: relative;
	top: 6px;
	font-weight: bold;
}

.catalog-add-to-cart {
	position: relative;
}

.catalog-add-to-cart select {
	color: #3398da;
	font-size: 14px;
	text-align: center;
}

.catalog-add-to-cart form table {
	width: 100%;
	text-align: center;
}

.catalog-add-to-cart form table tbody tr td {
	font-size: 14px;
}

/* -----------------------------------------
:: .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 {
	color: #222;
	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 #3498DB;
}

/* -----------------------------------------
:: .thumb.quotes .thumb.quotes2
----------------------------------------- */
.thumb.quotes {
	overflow: visible;
	margin-bottom: 20px;
}

.thumb.quotes .thumb-inner, .thumb.quotes2 .thumb-inner {
	transition: all .5s ease;
	padding: 20px;
	padding-bottom: 60px;
	border: 1px solid #D3D3D3;
	min-height: 175px;
	text-align: center;
}

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

.thumb.quotes .thumb-inner p, .thumb.quotes2 .thumb-inner p {
	color: #222;
	font-size: 12px;
	margin-bottom: 5px;
}

.thumb.quotes .thumb-inner cite, .thumb.quotes2 .thumb-inner cite {
	color: #3498DB;
	font-size: 12px;
	text-align: center;
	margin-bottom: 30px;
}

.thumb.quotes .thumb-inner:hover, .thumb.quotes2 .thumb-inner:hover {
	background: #fff;
	border: 1px solid #3498DB;
	overflow: visible;
}

.thumb-quotes-img {
	position: absolute;
	bottom: -28px;
	left: 0;
	right: 0;
	text-align: center;
}

.thumb-quotes-img img {
	border-radius: 50%;
}

.thumb-quotes-img div {
	border-radius: 50%;
	display: inline-block;
	transition: all 0.8s ease;
	border: 5px solid #D3D3D3;
}

.thumb.quotes:hover .thumb-quotes-img div {
	border: 5px solid #3498DB;
}

/*quotes2*/
.thumb.quotes2 .icon {
	margin: 0px auto 20px auto;
}

/* -----------------------------------------
:: .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 #3498db;
	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 #3498db;
}

.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;
	position: relative;
}

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

.thumb-hide {
	display: none;
}

.thm-loadmore .thumb-desc {
	background: #eeeeee;
	border: 1px solid rgba(170,170,170,0.4);
	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: #fff;
	border: 1px solid #3498db;
}

/*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 #dddddd;
	border-bottom: 20px solid transparent;
	z-index: 999;
	transition: all .5s ease;
}

.thm-loadmore:hover:before {
	border-right: 25px solid #3498db;
}

.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 #4fb5ff;
	cursor: pointer;
}

.appear {
	visibility: hidden;
}

.thm-loadmore.history .thumb-desc {
	background: #eeeeee;
	border: 1px solid #3498DB;
	border-top: 35px solid #3498DB;
	overflow: visible;
	box-sizing: border-box;
}

.thm-loadmore.history .thumb-desc:hover {
	background: #ffffff;
	border-bottom: 5px solid #3498DB;
}

.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;
}
@media (max-width:578px) {
.loadmore-content {
	display: none;
}
.thm-loadmore .thumb-desc {

	margin-left: 0px;
}	
.thm-loadmore::after {
	content: "";
	position: absolute;
	top: 0;
	left: 54px;
	width: 2px;
	height: 130%;
	border-left: 0px solid #3498db;
}
.thm-loadmore::before {
	display: none;
	
}	
}

@media (max-width:992px) {
.loadmore-content img {
width: 50px;
	height: 50px;

}
.loadmore-content {
	float: left;
	position: absolute;
	top: 25px;
	left: 30px;
	z-index: 999;
}	
.thm-loadmore.history .thumb-desc .history-title {
	float: none;
	display: block;
	color: #3498DB;
	font-size: 16px;
	margin-top: 0px;
	font-style: normal;
	letter-spacing: -1px;
}
	.thm-loadmore.history .thumb-desc .history-year {
	float: none;
	display: block;
		color: #3498DB;
	font-size: 16px;

	margin-top: 0px;
	font-style: normal;
	letter-spacing: -1px;
}
	
}

/* -----------------------------------------
:: .thumb.iconlarge
----------------------------------------- */
.thm-iconl-btn {
	text-align: center;
	margin-top: 30px;
}

.thm-iconl h3 {
	font-weight: 800;
	font-size: 22px;
	color: #999;
}

.thm-iconl .news-btn {
	transition: all .5s ease-in-out;
	-webkit-transform: rotate(0deg);
	transform: rotate(0deg);
}

.thm-iconl:hover .news-btn {
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

.thm-iconl .news-btn-inner i {
	transition: all .5s ease-in-out;
	-webkit-transform: rotate(0deg);
	transform: rotate(0deg);
}

.thm-iconl:hover .news-btn-inner i {
	transition: all .5s ease-in-out;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.thm-iconl {
	font-size: 14px;
	text-align: center;
}

.thm-iconl-btn img {
	width: auto;
	height: auto;
	transition: all .5s ease-in-out;
	-webkit-transform: scale(1.0);
	transform: scale(1.0);
}

.thm-iconl:hover .thm-iconl-btn img {
	-webkit-transform: scale(1.2);
	transform: scale(1.2);
}

/* -----------------------------------------
:: .thumb.news
----------------------------------------- */
.thumb.news {
	border-left: 5px solid #3498DB;
	padding: 5px 0 15px 10px;
	transition: all .2s ease;
	display: block;
}

.thumb.news:hover {
	border-left: 10px solid #3498DB;
}

.thumb.news .news-btn {
	float: left;
	margin-right: 10px;
}

.thumb.news .news-btn-inner {
	width: auto;
	height: auto;
	padding: 3px;
}

.thumb-news-desc {
	padding-top: 20px;
	font-size: 13px;
	font-weight: bold;
}

.thumb-news-readmore a {
	font-style: italic;
	font-size: 12px;
	color: #3498DB;
}

.thumb.news:hover .thumb-news-readmore a {
	color: #ff0000;
}

.thumb-news-date {
	font-size: 12px;
}

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

.dark.content-center .thm-corners::before, .dark.content-center .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;
}

.thumb.dark.content-center .thumb-inner {
	background: #222;
	border: 0 solid #3498db;
	padding: 20px;
}

.thumb.dark.content-center .thumb-inner:hover {
	background: #111111;
	padding: 20px;
}

.thumb.dark.content-center .thumb-inner, .thumb.dark.content-center .thumb-inner a, .thumb.dark.content-center .thumb-inner h1, .thumb.dark.content-center .thumb-inner h2, .thumb.dark.content-center .thumb-inner h3, .thumb.dark.content-center .thumb-inner h4, .thumb.dark.content-center .thumb-inner h5, .thumb.dark.content-center .thumb-inner h6 {
	color: #efefef;
}

.thumb.dark.content-center .thumb-hover {
	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));
	border-radius: 3px;
}

.content-center .thumb-inner {
	padding: 17px 29px;
}

.content-center .thm-corners::before {
	left: -20px;
}

.content-center .thm-corners::after {
	right: 38px;
}

.content-center .thm-corners.top-corners {
	top: 20px;
}

.color.content-center .thm-corners.top-corners {
	top: 25px;
}

.content-center .thm-corners.bottom-corners {
	bottom: 30px;
}

.content-center .thumb-inner:hover .thm-corners.top-corners {
	top: 0px;
}

.content-center .thumb-inner:hover .thm-corners.bottom-corners {
	bottom: 20px;
}

.content-center .thumb-inner:hover .thm-corners::before {
	left: -40px;
	border-color: rgba(255,255,255,0.0);
}

.content-center .thumb-inner:hover .thm-corners::after {
	right: 0px;
	border-color: rgba(255,255,255,0.0);
}

/* -----------------------------------------
:: .thumb.social.icon
----------------------------------------- */
.thumb-social-icon {
	text-align: center;
	padding: 10px 15px 10px 15px;
}

.thumb-social-icon i {
	background: #3498db;
	border-radius: 50%;
	color: #efefef;
	padding: 25px;
	margin: 0px auto;
	transition: all .3s ease;
}

.thumb-social-icon i:hover {
	background: #ffffff;
	color: #3498db;
}

.thumb-social-icon i.fa {
	line-height: 48px!important;
}

.thumb-social-icon h4 {
	font-family: Oswald, sans-serif;
	font-size: 20px;
	font-weight: 400;
	color: #3498DB;
	margin: 10px 0 0 0;
}

.thumb-social-icon p {
	font-family: Raleway, sans-serif;
	font-size: 14px;
	font-weight: 300;
	color: #efefef;
}

/* -----------------------------------------
:: .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: #3498DB;
}

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

.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 #3498DB;
	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: #3498DB;
}

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

/* -----------------------------------------
:: ICONS
----------------------------------------- */
.icon {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	padding: 5px;
	padding-top: 12px;
	background: #3498DB;
	text-align: center;
	transition: all .5s ease;
}

.icon:hover {
	background: #56bbff;
}

i:hover.icon {
	color: #0C1F28;
}

.icon div {
	padding-top: 12px;
}

.icon:hover div {
}

.icon div i, i.icon {
	color: #ffffff;
}

/* apply a natural box layout model to all elements */
*, *:before, *:after {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.icon-image {
	display: inline-block;
	position: relative;
	border: 10px solid #3498db;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	-webkit-transition: all 0.2s ease-in;
	-moz-transition: all 0.2s ease-in;
	transition: all 0.2s ease-in;
}


.icon-image img {
	max-width: 100%;
	position: relative;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
}

@media only screen and (min-width: 1300px) {
.icon-image img {
	z-index: -1;
}

}
/* icon dividers */
.icon-div {
	line-height: 0.5;
	text-align: center;
}

.icon-div span:before {
	right: 100%;
	margin-right: 5px;
}

.icon-div span:after {
	left: 100%;
	margin-left: 5px;
}

.icon-div {
	line-height: 0.5;
	text-align: center;
}

.icon-div span:before {
	right: 100%;
	margin-right: 5px;
}

.icon-div span:after {
	left: 100%;
	margin-left: 5px;
}

/* icon black */
.icon-div.icon-div-black span {
	display: inline-block;
	position: relative;
	width: 45px;
	height: 45px;
	border-radius: 50%;
	background: #ffffff;
	border: 1px solid #0C1F28;
	margin: 10px auto 10px auto;
	padding-top: 8px;
	box-sizing: border-box;
}

.icon-div.icon-div-black span:before, .icon-div.icon-div-black span:after {
	content: "";
	position: absolute;
	height: 21px;
	border-bottom: 1px solid #0C1F28;
	top: 0;
	width: 600%;
}

/* icon white */
.icon-div.icon-div-white span {
	display: inline-block;
	position: relative;
	width: 45px;
	height: 45px;
	border-radius: 50%;
	border: 1px solid #ffffff;
	margin: 10px auto 10px auto;
	padding-top: 8px;
	box-sizing: border-box;
	color: #ffffff;
}

.icon-div.icon-div-white span:before, .icon-div.icon-div-white span:after {
	content: "";
	position: absolute;
	height: 21px;
	border-bottom: 1px solid #ffffff;
	top: 0;
	width: 600%;
}

/* icon color */
.icon-div.icon-div-color span {
	display: inline-block;
	position: relative;
	width: 45px;
	height: 45px;
	border-radius: 50%;
	border: 1px solid #3498DB;
	margin: 10px auto 10px auto;
	padding-top: 8px;
	box-sizing: border-box;
	color: #3498DB;
}

.icon-div.icon-div-color span:before, .icon-div.icon-div-color span:after {
	content: "";
	position: absolute;
	height: 21px;
	border-bottom: 1px solid #3498DB;
	top: 3px;
	width: 600%;
}

.icon-div.icon-circle-black span {
	display: inline-block;
	position: relative;
	width: 17px;
	height: 17px;
	border-radius: 50%;
	background: #3498DB url('../graphics/icon-circle-black.png');
	margin: 5px auto;
}

.icon-div.icon-circle-black span:before, .icon-div.icon-circle-black span:after {
	content: "";
	position: absolute;
	height: 8px;
	border-bottom: 1px solid #0C1F28;
	top: 0;
	width: 600%;
}

.icon-div.icon-circle-white span {
	display: inline-block;
	position: relative;
	width: 17px;
	height: 17px;
	border-radius: 50%;
	background: #3498DB url('../graphics/icon-circle-white.png');
	margin: 5px auto;
}

.icon-div.icon-circle-white span:before, .icon-div.icon-circle-white span:after {
	content: "";
	position: absolute;
	height: 8px;
	border-bottom: 1px solid #ffffff;
	top: 0;
	width: 600%;
}

.icon-div.icon-div-img-color span {
	display: inline-block;
	position: relative;
	width: 70px;
	height: 61px;
	border-radius: 50%;
	background: #ffffff;
	border: 1px solid #3498DB;
	margin: 10px auto 10px auto;
	padding-top: 1px;
	box-sizing: border-box;
}

.icon-div.icon-div-img-color span img {
	border-radius: 50%;
}

.icon-div.icon-div-img-color span:before, .icon-div.icon-div-img-color span:after {
	content: "";
	position: absolute;
	height: 30px;
	border-bottom: 1px solid #3498DB;
	top: 0;
	width: 400%;
}

.icon-div.icon-div-img-black span {
	display: inline-block;
	position: relative;
	width: 61px;
	height: 61px;
	border-radius: 50%;
	background: #ffffff;
	border: 1px solid #0C1F28;
	margin: 10px auto 10px auto;
	padding-top: 2px;
	box-sizing: border-box;
}

.icon-div.icon-div-img-black span img {
	border-radius: 50%;
}

.icon-div.icon-div-img-black span:before, .icon-div.icon-div-img-black span:after {
	content: "";
	position: absolute;
	height: 30px;
	border-bottom: 1px solid #0C1F28;
	top: 0;
	width: 400%;
}

.icon-div.icon-div-img-white span {
	display: inline-block;
	position: relative;
	width: 61px;
	height: 61px;
	border-radius: 50%;
	background: #0C1F28;
	border: 1px solid #ffffff;
	margin: 10px auto 10px auto;
	padding-top: 2px;
	box-sizing: border-box;
	color: #3498DB;
}

.icon-div.icon-div-img-white span img {
	border-radius: 50%;
}

.icon-div.icon-div-img-white span:before, .icon-div.icon-div-img-white span:after {
	content: "";
	position: absolute;
	height: 30px;
	border-bottom: 1px solid #ffffff;
	top: 0;
	width: 400%;
}

/* -----------------------------------------------------------
:: YOUTUBEBACKGROUND: VIDEO BACKGROUND  
----------------------------------------------------------- */
.background-video {
	background-position: top center;
	background-repeat: no-repeat;
	bottom: 0;
	left: 0;
	overflow: hidden;
	position: fixed;
	right: 0;
	top: 0;
}

video, source {
	bottom: 0;
	left: 0;
	min-height: 100%;
	min-width: 100%;
	position: absolute;
}

.loaded .ytplayer-container {
	display: block;
}

.loaded .placeholder-image {
	opacity: 0;
}

.ytplayer-container {
	bottom: 0;
	height: 100%;
	left: 0;
	min-width: 100%;
	overflow: hidden;
	position: absolute;
	right: 0;
	top: 0;
	z-index: 0;
}

.placeholder-image {
	height: 100%;
	left: 0;
	min-height: 100%;
	min-width: 100%;
	position: fixed;
	top: 0;
	z-index: 1;
	opacity: 1;
	transition: opacity .25s ease-in-out;
	-moz-transition: opacity .25s ease-in-out;
	-webkit-transition: opacity .25s ease-in-out;
}

.ytplayer-shield {
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 2;
}

.ytplayer-player {
	position: absolute;
}

/* -----------------------------------------------------------
:: LIBRARY-PRO-COMPONENT: STYLES  
----------------------------------------------------------- */
/**/
/**/
/* -----------------------------------------------------------
:: Library / components / accordions / faq / faq  
----------------------------------------------------------- */
.faqs .panel-group .panel-heading a {
	color: #0088cc;
}

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

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