@charset "utf-8";
/* CSS Document */

.photobox {
	display: inline-block;
--photoboxOverlay: rgba(135, 135, 134, 0.60);
	cursor: pointer;
	photoboxAnimationDuration: .5s;
}
.photobox img {
	transition: transform 0.8s ease-in-out 0s;
}
.photobox:hover img {
	transform: scale(1.08);
	transition: all 1.5s ease 0s;
}
.photobox:hover .thumbs-bar1 img {
	transform: none;
	transition: none;
}
.photobox:hover .thumbs-bar2 img {
	transform: none;
	transition: none;
}
.previewbox {
	position: relative;
	overflow: hidden;
}
.preview {
	display: block;
	max-width: 100%;
}
.previewbox:before, .previewbox:after {
	content: "";
}
.enquer-bar1:hover .previewbox:after {
	width: 60px;
	height: 60px;
	margin: 0 auto 0;
	background: /*url(../images/plus-thumb1.png)*/ no-repeat center / cover;
	transform: translateY(-50%);
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	z-index: 99;
	transition: all 0.25s ease-out 0s;
}
.photobox-effect1 .previewbox:before {
	width: 0;
	height: 0;
	padding: 25%;
	background-color: var(--photoboxOverlay, rgba(0, 0, 0, .8));
	border-radius: 50%;
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 99;
	transition: -webkit-transform var(--photoboxAnimationDuration, .4s) ease;
	transition: transform var(--photoboxAnimationDuration, .4s) ease;
	transition: transform var(--photoboxAnimationDuration, .4s) ease, -webkit-transform var(--photoboxAnimationDuration, .4s) ease;
	will-change: transform;
	-webkit-transform: translate(-50%, -50%) scale(0);
	transform: translate(-50%, -50%) scale(0);
}
.photobox-effect1:hover .previewbox:before {
	-webkit-transform: translate(-50%, -50%) scale(4);
	transform: translate(-50%, -50%) scale(4);
 transition-duration: calc(var(--photoboxAnimationDuration, .4s) * 2);
}
.treter-wrapp .photobox {
--photoboxOverlay: rgba(38, 88, 168, 0.88);
}

/* photobox boder effect */
.photobox-effect1 {
	position: relative;
	z-index: 1;
	overflow: hidden;
	cursor:pointer;
}
.photobox-effect1 img {
	width: 100%;
	-webkit-transition-duration: 800ms;
	-o-transition-duration: 800ms;
	transition-duration: 800ms;
}
.photobox-effect1:hover img { filter:grayscale(100%); -webkit-filter:grayscale(100%);}
.photobox-effect1 .line1 {
	width: 80px;
	height: 8px;
	background-color: #fae004;
	position: absolute;
	z-index: 9999;
	top: -15px;
	right: 0;
	opacity: 0;
	visibility: hidden;
	-webkit-transition-duration: 300ms;
	-o-transition-duration: 300ms;
	transition-duration: 300ms;
}
.photobox-effect1 .line2 {
	width: 80px;
	height: 8px;	
	background-color: #fae004;
	position: absolute;
	z-index: 9999;
	bottom: -15px;
	left: 0;
	opacity: 0;
	visibility: hidden;
	-webkit-transition-duration: 300ms;
	-o-transition-duration: 300ms;
	transition-duration: 300ms;
}
.photobox-effect1:hover .line1 {
	opacity: 1;
	visibility: visible;
	top: 0;
	right: 0;
}
.photobox-effect1:hover .line2 {
	opacity: 1;
	visibility: visible;
	bottom: 0;
	left: 0;
}

/*hovicon-effect*/
.hovicon:after {
    pointer-events: none;
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    content:'';
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
}
.hovicon:before {
    speak: none;
    font-size: 48px;
    line-height: 90px;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    display: block;
    -webkit-font-smoothing: antialiased;
}
.hovicon.effect-1:after {
    top: -7px;
    left: -7px;
    padding: 7px;
    box-shadow: 0 0 0 4px #ffffff;
    -webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
    -webkit-transform: scale(.8);
    -moz-transition: -moz-transform 0.2s, opacity 0.2s;
    -moz-transform: scale(.8);
    -ms-transform: scale(.8);
    transition: transform 0.2s, opacity 0.2s;
    transform: scale(.8);
    opacity: 0;
}
.hovicon.effect-1.sub-a:hover {
    background: rgba(72, 72, 71, 0.90);
}
.hovicon.effect-1.sub-a:hover:after {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 1;
}