.gallery {
	margin-bottom: 20px;
	position: relative;
}
.gallery:before {
    content: "";
    position: absolute;
    width: 30px;
    height: 25px;
	background: url(../images/icons/picture.svg) no-repeat center;
    background-size: contain;
    bottom: 100px;
    left: 15px;
    z-index: 2;
    pointer-events: none;
}
.gallery .img{
	position: relative;
}
.gallery .img:before{
	content: "";
	position: absolute;
    top: 15px;
	bottom:15px;
	left: 50%;
    right: 50%;
	border-top: solid 1px rgba(255,255,255,0.3);
	border-bottom: solid 1px rgba(255,255,255,0.3);
	-webkit-transition: all 0.5s linear;
	-o-transition: all 0.5s linear;
	transition: all 0.5s linear;
	pointer-events: none;
	z-index: 1;
}
.gallery .img:hover:before{
	-webkit-transition: all 0.5s linear;
	-o-transition: all 0.5s linear;
	transition: all 0.5s linear;
    left: 15px;
    right: 15px;
}
.gallery .img:after{
	content: "";
	position: absolute;
    left: 15px;
	right: 15px;
	top: 50%;
    bottom: 50%;
	border-left: solid 1px rgba(255,255,255,0.3);
	border-right: solid 1px rgba(255,255,255,0.3);
	-webkit-transition: all 0.5s linear;
	-o-transition: all 0.5s linear;
	transition: all 0.5s linear;
	pointer-events: none;
	z-index: 1;
}
.gallery .img:hover:after{
	-webkit-transition: all 0.5s linear;
	-o-transition: all 0.5s linear;
	transition: all 0.5s linear;
	top: 15px;
    bottom: 15px;
}
.gallery .img a{
	display: block;
	padding-top: 66.666666%;
	position: relative;
	overflow: hidden;
}
.gallery .img a:before{
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: #000000;
	z-index: 1;
	opacity: 0;
	-webkit-transition: all 0.3s linear;
	-o-transition: all 0.3s linear;
	transition: all 0.3s linear;
}
.gallery:hover .img a:before{
	opacity: 0.3;
}
.gallery .img a img{
    position: absolute;
    left: -100%;
    bottom: -100%;
    top: -100%;
    right: -100%;
    min-width: 100%;
    min-height: 100%;
    margin: auto;
    max-width: 100%;
	transition: -webkit-transform 4s cubic-bezier(0,.6,.45,1);
	transition: transform 4s cubic-bezier(0,.6,.45,1);
	transition: transform 4s cubic-bezier(0,.6,.45,1), -webkit-transform 7s cubic-bezier(0,.6,.45,1);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}
.gallery .img a:hover img{
	-webkit-transform: scale(1.1);
	-ms-transform: scale(1.1);
	-o-transform: scale(1.1);
	transform: scale(1.1);
}
.gallery .tend{
	z-index: 2;
	-webkit-transition: all 0.3s linear;
	-o-transition: all 0.3s linear;
	transition: all 0.3s linear;
	padding: 15px;
	background-color: #ffffff;
}
.gallery .tend h3{
	display: block;
	font-size: 16px;
	line-height: 24px;
	font-weight: 600;
	text-transform: uppercase;
}
 .videoItem {
	margin-bottom: 30px;
	position: relative;
}
.videoItem .img{
	position: relative;
}
.videoItem .img a{
	display: block;
	padding-top: 66.666666%;
	position: relative;
	overflow: hidden;
}
.videoItem .img a:before{
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: #000000;
	z-index: 1;
	opacity: 0.2;
	-webkit-transition: all 0.3s linear;
	-o-transition: all 0.3s linear;
	transition: all 0.3s linear;
}
.videoItem:hover .img a:before{
	opacity: 0;
}
.videoItem .img a img{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	transition: -webkit-transform 4s cubic-bezier(0,.6,.45,1);
	transition: transform 4s cubic-bezier(0,.6,.45,1);
	transition: transform 4s cubic-bezier(0,.6,.45,1), 
	-webkit-transform 7s cubic-bezier(0,.6,.45,1);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}
.videoItem .img a:hover img{
	-webkit-transform: scale(1.1);
	-ms-transform: scale(1.1);
	-o-transform: scale(1.1);
	transform: scale(1.1);
}
.videoItem .tend{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 1;
	pointer-events: none;	
}
.videoItem .tend a{
	display: block;
	font-size: 22px;
	line-height: 30px;
	color: #fff;
	text-align: center;
	font-weight: 400;
}
.videoItem .tend a .playVid{
	width: 55px;
    height: 55px;
    border-radius: 100%;
	display: block;
	background-color: rgba(255, 255, 255, 0.9);
	margin: 0 auto;
	margin-bottom: 5px;
	position: relative;
}
.videoItem .tend a .playVid::before{
	content: '\f04b';
    position: absolute;
    left: 54%;
    top: 53%;
    transform: translate(-50%, -50%);
    font-family: FontAwesome;
    color: var(--primary-color);
	font-size: 15px;
    line-height: 20px;
    z-index: 1;
}
.videoItem .tend a .txt{
	
}
/*=======================================================*/
.linkAll{
	text-align: center;
}
.linkAll a{
	display: inline-block;
	width: 180px;
	background: #fafafa;
	letter-spacing: 2.25px;
	border:solid 1px rgba(0,0,0,0.15);
	padding: 10px;
	text-transform: uppercase;
	font-size: 12px;
	line-height: 20px;
}
.linkAll a:hover{
	background: #bf1e2e;
	color:#ffffff;
}
/*========================================================*/
.vhstygallery .fancybox-slide--html{
	padding: 0;
}
.vhstygallery .fancybox-slide--iframe .fancybox-content{
	margin-bottom: 0;
	height: 100%;
	width: 400px;
}
.vhstygallery .fancybox-close-small{
	width: 50px;
	height: 50px;
	background: var(--primary-color);
	top: 10px;
	right: 10px;
	color: #fff;
	opacity: 1;
	border-radius: 100%;
}
.vhstygallery .fancybox-button svg{
	width: 100%;
}
.wrapper.v2{
	max-width: 830px;
}
.the-title{
	margin-bottom: 35px;
    padding: 0 10px;
    text-align: center;
}
.the-title h1{
	font-size: 30px;
    line-height: 45px;
    text-transform: uppercase;
    font-weight: normal;
}
.magBox{
	margin-bottom: 30px;
}
.playVideo{
	margin-bottom: 40px;
	position: relative;
	padding-top: 65.56%;
	height: 0;
}
.playVideo iframe{
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
}
/*  */
.the-other .title{
    margin-bottom: 40px;
    text-align: center;
}

.the-other .title h2{
    position: relative;
    display: inline-block;
    font-size: 45px;
    line-height: 60px;
    font-family: 'Minion';
    font-weight: 600;
    color: #000000;
    padding-bottom: 50px;
}
.the-other .title h2::before{
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background-image: url(../images/logo.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center bottom;
}

/*  */


.sliderOrther{
	margin-bottom: 10px;
}
.sliderOrther .videoItem{
	margin-bottom: 0;
}



/*================================================================*/
/*=========================RESPONSIVE=============================*/
/*================================================================*/
@media all and (max-width: 1200px){
	.sliderOrther .slick-prev{
        left: 10px;
    }
    .sliderOrther .slick-next{
        right: 10px;
    }
}
@media all and (max-width: 1025px){

}
@media all and (max-width: 991px){
	.videoItem .tend a{
		font-size: 18px;
		line-height: 27px;
	}
	.playVideo{
		margin-bottom: 20px;
	}
	.the-title h1{
		font-size: 20px;
		line-height: 30px;
	}
	.magBox{
		margin-bottom: 10px;
	}
	/* 
	 */
	 .the-other .title{
        margin-bottom: 30px;
    }
    .the-other .title h2{
		font-size: 30px;
        line-height: 40px;
        padding-bottom: 40px;
	}
	.the-other .title h2::before{
		width: 30px;
		height: 30px;
	}
}
@media all and (max-width: 768px){
.gallery{
	margin-bottom: 20px;
}
.gallery .tend h3{
	font-size: 18px;
	line-height: 26px;
}
}

@media all and (max-width: 640px){
.vnt-gallery .row .col-xs-6{
	width: 100%;
}
}

@media all and (max-width: 480px){

}

@media all and (max-width: 420px){
    
}