* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	outline: none;
}
body {
	font-family: Verdana, sans-serif;
	font-size: 14px;
}
#main_wrap {
	width: 100%;
	float: left;
	background: url(../images/background_image.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	height: 100vh;
	padding: 5vh 0;
}
.block_wrapper {
	width: 100%;
	max-width: 75vw;
	margin: 0 auto;
}
.single_slide {
	opacity: 0.1;
	transform: scale(0.9);
	border-radius: 10px;
	overflow: hidden;
	transition: transform 0.5s, opacity 0.5s;
	position: relative;
}
.active.center .single_slide {
	opacity: 1;
	transform: scale(1);
}
.single_slide:hover {
	opacity: 0.4;
}
.content_block {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	display: flex;
	flex-flow: column;
	align-items: center;
	text-align: center;
	color: #fff;
	padding: 15px;
}
.content_wrap {
	padding: 15px;
	background: rgba(0,0,0,0.6);
	display: inline-block;
	width: 100%;
	border-radius: 10px;
	position: relative;
	z-index: 2;
}
.content_wrap h2 {
	margin-bottom: 15px;
	font-weight: normal;
}
.content_top .content_block {
	justify-content: flex-start;
}
.content_middle .content_block {
	justify-content: center;
}
.content_bottom .content_block {
	justify-content: flex-end;
}
#slider_main .owl-nav {
	margin-top: 0px;
}
#slider_main .owl-nav > button.owl-prev.disabled {
	display: none;
}
#slider_main .owl-nav > button {
	position: absolute;
	left: -10vw;
	width: 50px;
	height: 50px;
	background: #fff;
	border-radius: 100%;
	font-size: 20px;
	line-height: 50px;
	text-align: center;
	top: 50%;
	margin-top: -25px;
	opacity: 0.7;
	transform: scale(0.9);
	transition: all 0.5s;
}
#slider_main .owl-nav > button:hover {
	opacity: 1;
	transform: scale(1);
}
#slider_main .owl-nav > button.owl-next {
	right: -10vw;
	left: auto;
}
#slider_main .owl-nav > button span {
	color: #333!important;
	font-size: 30px;
	line-height: 48px;
}
#slider_main .owl-nav > button span.fa {
	font-size: 24px;
	text-decoration: none;
	line-height: 52px;
	position: relative;
	left: 2px;
}
#slider_main .owl-nav > button.owl-next.disabled {
	-webkit-user-select: all!important;
	-khtml-user-select: all!important;
	-moz-user-select: all!important;
	-ms-user-select: all!important;
	user-select: all!important;
	cursor: pointer!important;
}
#slider_main .owl-nav > button.owl-next.disabled a {
	color: #333!important;
	text-decoration: none!important;
}
#slider_main.owl-carousel button.owl-dot {
	width: 25px;
	height: 6px;
	border-radius: 50px;
	background: #fff;
	margin: 7px 2px;
	transition: all 0.5s;
	opacity: 0.35;
}
#slider_main.owl-carousel button.owl-dot span {
	display: none;
}
#slider_main.owl-carousel button.owl-dot:hover, #slider_main.owl-carousel button.owl-dot.active {
	opacity: 1;
}
.stay_potrait_mode {
	display: none;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.95);
	position: fixed;
	left: 0;
	top: 0;
	z-index: 10;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: #fff;
	flex-flow: column;
}
.stay_potrait_mode span {
	width: 50px;
	height: 50px;
	line-height: 50px;
	font-size: 30px;
	border: 1px solid #fff;
	border-radius: 100%;
	margin-bottom: 15px;
}
.audio_player {
	color: #fff;
}
.audio_player span {
	width: 40px;
	height: 40px;
	border: 1px solid #fff;
	border-radius: 100%;
	font-size: 24px;
	line-height: 40px;
	text-align: center;
	cursor: pointer;
}
.audio_player #pause_music {
	display: none;
}
.audio_player {
	color: #fff;
	position: absolute;
	right: 25px;
	top: 5vh;
	z-index: 11;
}
.stop_animate_untill_active > img::nth-child(1) {
	position: relative;
	z-index: 2;
	display:inline-block;
}
.stop_animate_untill_active > img:nth-child(2) {
	display:none;
}
.owl-item.active.center .stop_animate_untill_active > img:nth-child(1){
	display:none;
}
.owl-item.active.center .stop_animate_untill_active > img:nth-child(2) {
	position: relative;
	z-index: 2;
	display:inline-block;
}

.service_block .vc_btn3-center a:hover {color:#333;}

@-moz-keyframes scales {
  from {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    transform: scale(1);
  }
  to {
    -webkit-transform: scale(1.08);
    -moz-transform: scale(1.08);
    transform: scale(1.08);
  }
}
@-webkit-keyframes scales {
  from {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    transform: scale(1);
  }
  to {
    -webkit-transform: scale(1.08);
    -moz-transform: scale(1.08);
    transform: scale(1.08);
  }
}
@-o-keyframes scales {
  from {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    transform: scale(1);
  }
  to {
    -webkit-transform: scale(1.08);
    -moz-transform: scale(1.08);
    transform: scale(1.08);
  }
}
@keyframes scales {
	  from {
		-webkit-transform: scale(1);
		-moz-transform: scale(1);
		transform: scale(1);
	  }
	  to {
		-webkit-transform: scale(1.08);
		-moz-transform: scale(1.05);
		transform: scale(1.08);
	  }
	}	
	
.end_line_txt {

    white-space: nowrap;
    font-size: 14px;
    position: absolute;
    top: 0;
    left: -120px;
    color: #fff;

}


/***************************** Media Query *******************************/

@media(min-width:479px) and (max-height:768px) {
.stay_potrait_mode {
	display: flex;
}
}




@media(min-width:1024px) {
.stay_potrait_mode {
	display: none;
}
html #slider_main .owl-nav > button.owl-next {
	display: inline-block!important;
}
	.block_wrapper {
	max-height: 90vh;
}
	
	html #slider_main .owl-nav > button div{display:none!important;}
	
}


@media(min-width:1024px) and (max-height:540px) {
.stay_potrait_mode {
	display: flex;
}
}


@media(min-width:1024px) and (max-width:1359px) {

#slider_main .owl-nav > button.owl-prev {
	left: -7vw;
}
#slider_main .owl-nav > button.owl-next {
	right: -7vw;
}
	.block_wrapper {
	max-width: 90vw;
}
	
}

@media(max-width:1023px) {
#main_wrap {
	padding-top: 0px;
}
.block_wrapper {
	max-width: 100%;
}
.single_slide {
	border-radius: 0px;
	height: 100vh;
	overflow: hidden;
}
.single_slide > img {
    width: 110vw !important;
    height: auto;
    margin-left: -2vw;
}
.single_slide{transform: scale(1)!important;}
	
.single_slide .content_wrap{margin-bottom: 5vw;}	
	
#slider_main .owl-nav > button {
	left: 0px;
	width: 50%;
	height: 100%;
	background: none!important;
	border-radius: 0;
	top: 0;
	margin-top: 0px;
}
#slider_main .owl-nav > button a {
	width: 100%;
	right: 0px;
	left: auto;
	position: absolute;
}
#slider_main .owl-nav > button.owl-next {
	right: 0
}
#slider_main .owl-nav > button span, #slider_main .owl-nav > button span:before {
	transition: transform 0.5s;
	display: none;
}
	#slider_main .owl-nav > button div{display:none;}	

#slider_main .owl-nav > button .show_arrow_2s{
    display: inline-block!important;
    background: rgba(255,255,255,0.95);
    width: 60px;
    height: 60px;
    float: right;
    margin-right: 15px;
    border-radius: 100%;
    line-height: 52px;
    font-size: 40px;
	-webkit-animation: scales  0.5s ease-in-out infinite alternate;
  -moz-animation: scales  0.5s ease-in-out infinite alternate;
  animation: scales 0.5s ease-in-out infinite alternate;
	color:#666;
}	


	
	
.content_block {
	padding-top: 50px;
}
#slider_main .owl-dots {
	position: absolute;
	width: 100%;
	top: 0;
	bottom: auto;
}
.audio_player span {
	width: 30px;
	height: 30px;
	border: 1px solid #fff;
	border-radius: 100%;
	font-size: 18px;
	line-height: 30px;
	text-align: center;
	cursor: pointer;
}
.audio_player {
	right: 10px;
	top: 2vh;
}
	
	.end_line_txt{display:none;}
}

@media(max-width:767px) {
#slider_main .owl-nav > button {
	/*display: none;*/
}
	
	.audio_player #pause_music {
		display: block;
	}
	
	.audio_player #play_music {
		display: none;
	}
	
	
}
@media(max-width:374px) and (min-height:481px) {
	.single_slide > img {
		width: 130vw !important;
		height: auto;
		margin-left: -16vw;
	}
}