@charset "utf-8";
/*
/*	Copyright 2017. Frenify
/*

	01) BASE
	02)	AUDIOBOX
	03) HORIZONTAL MENU
	04) DATA (VERTICAL MENU BACKGROUND)
	05) VERTICAL MENU

		-------------------------------------
		05.1) LEFT BAR
			-------------------	
			05.1.1) TRIGGER
			-------------------	
		05.2) LEFT BAR NAVIGATION
		05.3) PROFILE PREVIEW
		05.4) GALLERY PREVIEW
		05.5) SEARCH PREVIEW
		05.6) SHARE PREVIEW
		05.7) TOOLTIP 
		--------------------------------------
	
	06) SUBMENU
	07) INDEX (NEW PAGE)

		--------------------------------------
		07.1) FLEXSLIDER
		--------------------------------------
		
	08) ABOUT (NEW PAGE)
	09) MAIN BUTTON
	10) PROJECT LIST	
	11) FULL WIDTH CONTAINER
	12) PROJECT #1 (NEW PAGE)
	13) PROJECT #2 (NEW PAGE)
	14) PROJECT #3 (NEW PAGE)
	15) PROJECT SINGLE (NEW PAGE)
	16) MAGNIFIC POPUP
	17) PROJECT SINGLE 2 (NEW PAGE)
	18) PROJECT SINGLE 3 (NEW PAGE)
	19) PROJECT SINGLE 4 (NEW PAGE)
	20) PROJECT SINGLE 5 (NEW PAGE)
	21) PROJECT SINGLE 6 (NEW PAGE)
	22) PROJECT SINGLE 7 (NEW PAGE)
	23) SHORTCODES #1
	24) GRIDBG
	25) HALFSLIDE
	26) NOTIFICATION
	27) ACCORDION
	28) TOGGLE
	29) TABS
	30) IMAGE COMPARISON (Before/After)
	31) ROW SPAN
	32) TESTIMONIALS
	33) TEAM CAROUSEL
	34) CONTACT (NEW PAGE)
	35) BLOG (NEW PAGE)
	36) TOTOP (BUTTON)
	37) MEDIA QUERIES (FOR SMALL DEVICES) [RESPONSIVE VERSION]

/*------------------------------------------------------------------*/
/*	01) BASE
/*------------------------------------------------------------------*/
html {
	overflow-x:hidden;
	padding: 0px !important;
	margin:0px !important;
}
body{
	font-family:'Rubik', Arial, Helvetica, sans-serif;
	font-size:14px;
	line-height:1.5;
	letter-spacing:0.5px;
	font-weight:400;
}
.photolane_fn_wrapper_all{
	width:100%;
	height:auto;
}
.photolane_fn_content{
	width:100%;
	height:auto;
	z-index: 1;
}
textarea, input, button{outline: none;}
:focus {
 	outline-color: transparent;
	outline-style: none;
}
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  display: none;
}
/*------------------------------------------------------------------*/
/*	02) AUDIOBOX
/*------------------------------------------------------------------*/
.myaudio{
	position: absolute;
	display: none;
	opacity: 0;
	visibility: hidden;
}
/*------------------------------------------------------------------*/
/*	03) HORIZONTAL MENU
/*------------------------------------------------------------------*/
.photolane_fn_horizontal_menu{
	width: 100%;
	clear: both;
	float: left;
	height: auto;
	display: none;
}
.photolane_fn_horizontal_menu .horizontal_menu_in{
	width: 100%;
	float: left;
	position: relative;
	background-color: #111;
	z-index: 99;
	padding: 15px;
	
	-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
	-moz-box-sizing: border-box;    /* Firefox, other Gecko */
	box-sizing: border-box;         /* Opera/IE 8+ */
}
.photolane_fn_horizontal_menu .logo{
	width: auto;
	height: auto;
	float: left;
}
.photolane_fn_horizontal_menu .logo > a{
	display: block;
	text-decoration: none;
}
.photolane_fn_horizontal_menu .logo img{
	max-width: 300px;
}
.photolane_fn_horizontal_menu .menu_list{
	float: right;
	width: auto;
	height: auto;
}
.photolane_fn_horizontal_menu .menu_list > ul{
	list-style-type: none;
	margin: 0px;
	height: auto;
	line-height: 0;
}
.photolane_fn_horizontal_menu .menu_list > ul > li{
	display: inline-block;
	margin: 0px;
	position: relative;
	line-height: 0;
	vertical-align: middle;
}
.photolane_fn_horizontal_menu .menu_list > ul > li > a{
	text-decoration: none;
	color: #fff;
	display: inline-block;
	padding: 15px 10px;
}
.photolane_fn_horizontal_menu .menu_list > ul > li svg{
	fill: currentcolor;
    width: 18px;
	height: 18px;
    opacity: 1;
    visibility: visible;
}
.photolane_fn_horizontal_menu span.menu{
	width: 30px;
}
.photolane_fn_horizontal_menu span.menu span{
	background-color: #fff;
	margin-bottom: 6px;
	height: 2px;
	display: block;
	text-align: center;
	
	transition: all .2s ease;
	-o-transition: all .2s ease;
	-ms-transition: all .2s ease;
	-moz-transition: all .2s ease;
	-webkit-transition: all .2s ease;
}
.photolane_fn_horizontal_menu span.menu span:last-child{
	margin-bottom: 0px;
}
.photolane_fn_horizontal_menu span.menu span.b{
	width: 30px;
}
.photolane_fn_horizontal_menu span.menu span.a,
.photolane_fn_horizontal_menu span.menu span.c{
	width: 20px;
	margin-left: 5px;
}
.photolane_fn_horizontal_menu ul li a.trigger:hover span.menu span.a,
.photolane_fn_horizontal_menu ul li a.trigger:hover span.menu span.c{
	width: 30px;
	margin-left: 0px;
}
.photolane_fn_horizontal_menu .navigation_list{
	display: none;
	position: relative;
	width: 100%;
	background-color: #111;
	padding: 20px 20px 20px 20px;
	
	z-index: 99;
	
	-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
	-moz-box-sizing: border-box;    /* Firefox, other Gecko */
	box-sizing: border-box;         /* Opera/IE 8+ */
}
.photolane_fn_horizontal_menu .language{
	width: 100%;
	height: auto;
	border-bottom: 1px solid rgba(255,255,255,0.05);
	padding-bottom: 10px;
}
.photolane_fn_horizontal_menu .language a{
	text-decoration: none;
}
.photolane_fn_horizontal_menu .language a span{
	text-transform: uppercase;
	color: #999;
	margin-right: 14px;
	letter-spacing: 2px;
	font-size: 12px;
	
	transition: all .5s ease;
	-o-transition: all .5s ease;
	-ms-transition: all .5s ease;
	-moz-transition: all .5s ease;
	-webkit-transition: all .5s ease;
}
.photolane_fn_horizontal_menu .language a.active span{
	color: #fff;
}
.photolane_fn_horizontal_menu .language a:hover span{
	color: #fff;
}
.photolane_fn_horizontal_menu .search_share{
	width: 100%;
	border-bottom: 1px solid rgba(255,255,255,0.05);
	padding: 11px 0px;
	margin-bottom: 10px;
}
.photolane_fn_horizontal_menu .search_share a{
	display: inline-block;
	text-decoration: none;
	color: #fff;
	letter-spacing: 2px;
	font-size: 12px;
	text-transform: uppercase;
	margin-right: 7px;
}
.photolane_fn_horizontal_menu .search_share a:last-child{
	margin-right: 0px;
	margin-left: 7px;
}
.photolane_fn_horizontal_menu .search_share span{
	color: #fff;
	font-size: 12px;
}
.photolane_fn_horizontal_menu a.volume svg.hidden{
	opacity: 0;
	visibility: hidden;
	display: none;
}
.photolane_fn_horizontal_menu .profile_res_info{
	position: relative;
	z-index: 99;
	width: 100%;
	height: auto;
	background-color: #111;
	padding: 20px;
	float: left;
	
	display: none;
	
	-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
	-moz-box-sizing: border-box;    /* Firefox, other Gecko */
	box-sizing: border-box;         /* Opera/IE 8+ */
}
.photolane_fn_horizontal_menu .profile_res_info .profile_img{
	float: left;
	margin-bottom: 20px;
	margin-right: 40px;
}
.photolane_fn_horizontal_menu .profile_res_info .profile_img img{
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}
.photolane_fn_horizontal_menu .profile_res_info .social_icons{
	margin-bottom: 20px;
}
.photolane_fn_horizontal_menu .profile_res_info .social_icons ul{
	list-style-type: none;
	margin: 0px;
}
.photolane_fn_horizontal_menu .profile_res_info .social_icons ul li{
	margin: 0px;
	display: inline-block;
	margin-right: 10px;
}
.photolane_fn_horizontal_menu .profile_res_info .social_icons ul li a{
	color: #999;
}
.photolane_fn_horizontal_menu .profile_res_info .social_icons ul li a:hover{
	color: #fff;
}
.photolane_fn_horizontal_menu .profile_res_info .info{
	float: left;
	display: table;
	min-height: 160px;
}
.photolane_fn_horizontal_menu .profile_res_info .info_in{
	width: 100%;
	display: table-cell;
	vertical-align: middle;
}
.photolane_fn_horizontal_menu .profile_res_info .info_in h3{
	color: #fff;
    text-transform: uppercase;
    font-size: 16px;
    letter-spacing: 2px;
    font-weight: 300;
    margin: 0px;
	margin-bottom: 10px;
}
/*------------------------------------------------------------------*/ 
/*	04) DATA (VERTICAL MENU BACKGROUND)
/*------------------------------------------------------------------*/

/*  light (Background: white; Text: black) */
.photolane_fn_vertical_menu[data-bg-color="light"] .photolane_fn_leftbar {background: rgba(255,255,255,1); border-right-color: #eee;}
.photolane_fn_vertical_menu[data-bg-color="light"] .photolane_fn_leftbar ul li{border-bottom-color: #eee;}
.photolane_fn_vertical_menu[data-bg-color="light"] .photolane_fn_leftbar ul li a{color: #333;}
.photolane_fn_vertical_menu[data-bg-color="light"] .photolane_fn_leftbar span.menu span{background-color: #0c0000;}
.photolane_fn_vertical_menu[data-bg-color="light"] .photolane_fn_leftbar .photolane_fn_cright span{color: #4e4e4e;}

/*  noBg (Background: none; Text: white) */
.photolane_fn_vertical_menu[data-bg-color="noBg"] .photolane_fn_leftbar{background: rgba(255,255,255,0); border-right-color: rgba(255,255,255,0.2);}
.photolane_fn_vertical_menu[data-bg-color="noBg"] .photolane_fn_leftbar ul li{border-bottom-color: rgba(255,255,255,0.2);}
.photolane_fn_vertical_menu[data-bg-color="noBg"] .photolane_fn_leftbar ul li a{color: #fff;}
.photolane_fn_vertical_menu[data-bg-color="noBg"] .photolane_fn_leftbar span.menu span{background-color: #fff;}
.photolane_fn_vertical_menu[data-bg-color="noBg"] .photolane_fn_leftbar .photolane_fn_cright span{color: #fff;}

/*  dark (Background: black; Text: white) */
.photolane_fn_vertical_menu[data-bg-color="dark"] .photolane_fn_leftbar{background: rgba(17,17,17,1); border-right-color: rgba(255,255,255,.07);}
.photolane_fn_vertical_menu[data-bg-color="dark"] .photolane_fn_leftbar ul li{border-bottom-color: rgba(255,255,255,.07);}
.photolane_fn_vertical_menu[data-bg-color="dark"] .photolane_fn_leftbar ul li a{color: #fff;}
.photolane_fn_vertical_menu[data-bg-color="dark"] .photolane_fn_leftbar span.menu span{background-color: #fff;}
.photolane_fn_vertical_menu[data-bg-color="dark"] .photolane_fn_leftbar .photolane_fn_cright span{color: #fff;}

/*  darkTrans (Background: black with opacity; Text: white) */
.photolane_fn_vertical_menu[data-bg-color="darkTrans"] .photolane_fn_leftbar{background: rgba(17,17,17,.9); border-right-color: rgba(255,255,255,.07);}
.photolane_fn_vertical_menu[data-bg-color="darkTrans"] .photolane_fn_leftbar ul li{border-bottom-color: rgba(255,255,255,.07);}
.photolane_fn_vertical_menu[data-bg-color="darkTrans"] .photolane_fn_leftbar ul li a{color: #fff;}
.photolane_fn_vertical_menu[data-bg-color="darkTrans"] .photolane_fn_leftbar span.menu span{background-color: #fff;}
.photolane_fn_vertical_menu[data-bg-color="darkTrans"] .photolane_fn_leftbar .photolane_fn_cright span{color: #fff;}

/*  noBgBlack (Background: none; Text: Black) */
.photolane_fn_vertical_menu[data-bg-color="noBgBlack"] .photolane_fn_leftbar{background: rgba(255,255,255,0); border-right-color: rgba(255,255,255,0.2);}
.photolane_fn_vertical_menu[data-bg-color="noBgBlack"] .photolane_fn_leftbar ul li{border-bottom-color: rgba(255,255,255,0.2);}
.photolane_fn_vertical_menu[data-bg-color="noBgBlack"] .photolane_fn_leftbar ul li a{color: #000;}
.photolane_fn_vertical_menu[data-bg-color="noBgBlack"] .photolane_fn_leftbar span.menu span{background-color: #000;}
.photolane_fn_vertical_menu[data-bg-color="noBgBlack"] .photolane_fn_leftbar .photolane_fn_cright span{color: #000;}



/* noBg ---> light */
.photolane_fn_vertical_menu[data-bg-color="noBg"][data-bg-color2="light"].scrolled .photolane_fn_leftbar{background: rgba(255,255,255,1); border-right-color: #eee;}
.photolane_fn_vertical_menu[data-bg-color="noBg"][data-bg-color2="light"].scrolled .photolane_fn_leftbar ul li{border-bottom-color: #eee;}
.photolane_fn_vertical_menu[data-bg-color="noBg"][data-bg-color2="light"].scrolled .photolane_fn_leftbar ul li a{color: #333;}
.photolane_fn_vertical_menu[data-bg-color="noBg"][data-bg-color2="light"].scrolled .photolane_fn_leftbar span.menu span{background-color: #0c0000;}
.photolane_fn_vertical_menu[data-bg-color="noBg"][data-bg-color2="light"].scrolled .photolane_fn_leftbar .photolane_fn_cright span{color: #4e4e4e;}
/* noBg ---> dark */
.photolane_fn_vertical_menu[data-bg-color="noBg"][data-bg-color2="dark"].scrolled .photolane_fn_leftbar{background: rgba(17,17,17,1); border-right-color: rgba(255,255,255,.07);}
.photolane_fn_vertical_menu[data-bg-color="noBg"][data-bg-color2="dark"].scrolled .photolane_fn_leftbar ul li{border-bottom-color: rgba(255,255,255,.07);}
.photolane_fn_vertical_menu[data-bg-color="noBg"][data-bg-color2="dark"].scrolled .photolane_fn_leftbar ul li a{color: #fff;}
.photolane_fn_vertical_menu[data-bg-color="noBg"][data-bg-color2="dark"].scrolled .photolane_fn_leftbar span.menu span{background-color: #fff;}
.photolane_fn_vertical_menu[data-bg-color="noBg"][data-bg-color2="dark"].scrolled .photolane_fn_leftbar .photolane_fn_cright span{color: #fff;}



/* noBgBlack ---> light */
.photolane_fn_vertical_menu[data-bg-color="noBgBlack"][data-bg-color2="light"].scrolled .photolane_fn_leftbar{background: rgba(255,255,255,1); border-right-color: #eee;}
.photolane_fn_vertical_menu[data-bg-color="noBgBlack"][data-bg-color2="light"].scrolled .photolane_fn_leftbar ul li{border-bottom-color: #eee;}
.photolane_fn_vertical_menu[data-bg-color="noBgBlack"][data-bg-color2="light"].scrolled .photolane_fn_leftbar ul li a{color: #333;}
.photolane_fn_vertical_menu[data-bg-color="noBgBlack"][data-bg-color2="light"].scrolled .photolane_fn_leftbar span.menu span{background-color: #0c0000;}
.photolane_fn_vertical_menu[data-bg-color="noBgBlack"][data-bg-color2="light"].scrolled .photolane_fn_leftbar .photolane_fn_cright span{color: #4e4e4e;}
/* noBgBlack ---> dark */
.photolane_fn_vertical_menu[data-bg-color="noBgBlack"][data-bg-color2="dark"].scrolled .photolane_fn_leftbar{background: rgba(17,17,17,1); border-right-color: rgba(255,255,255,.07);}
.photolane_fn_vertical_menu[data-bg-color="noBgBlack"][data-bg-color2="dark"].scrolled .photolane_fn_leftbar ul li{border-bottom-color: rgba(255,255,255,.07);}
.photolane_fn_vertical_menu[data-bg-color="noBgBlack"][data-bg-color2="dark"].scrolled .photolane_fn_leftbar ul li a{color: #fff;}
.photolane_fn_vertical_menu[data-bg-color="noBgBlack"][data-bg-color2="dark"].scrolled .photolane_fn_leftbar span.menu span{background-color: #fff;}
.photolane_fn_vertical_menu[data-bg-color="noBgBlack"][data-bg-color2="dark"].scrolled .photolane_fn_leftbar .photolane_fn_cright span{color: #fff;}



/* darkTrans ---> light */
.photolane_fn_vertical_menu[data-bg-color="darkTrans"][data-bg-color2="light"].scrolled .photolane_fn_leftbar{background: rgba(255,255,255,1); border-right-color: #eee;}
.photolane_fn_vertical_menu[data-bg-color="darkTrans"][data-bg-color2="light"].scrolled .photolane_fn_leftbar ul li{border-bottom-color: #eee;}
.photolane_fn_vertical_menu[data-bg-color="darkTrans"][data-bg-color2="light"].scrolled .photolane_fn_leftbar ul li a{color: #333;}
.photolane_fn_vertical_menu[data-bg-color="darkTrans"][data-bg-color2="light"].scrolled .photolane_fn_leftbar span.menu span{background-color: #0c0000;}
.photolane_fn_vertical_menu[data-bg-color="darkTrans"][data-bg-color2="light"].scrolled .photolane_fn_leftbar .photolane_fn_cright span{color: #4e4e4e;}
/* noBgBlack ---> dark */
.photolane_fn_vertical_menu[data-bg-color="darkTrans"][data-bg-color2="dark"].scrolled .photolane_fn_leftbar{background: rgba(17,17,17,1); border-right-color: rgba(255,255,255,.07);}
.photolane_fn_vertical_menu[data-bg-color="darkTrans"][data-bg-color2="dark"].scrolled .photolane_fn_leftbar ul li{border-bottom-color: rgba(255,255,255,.07);}
.photolane_fn_vertical_menu[data-bg-color="darkTrans"][data-bg-color2="dark"].scrolled .photolane_fn_leftbar ul li a{color: #fff;}
.photolane_fn_vertical_menu[data-bg-color="darkTrans"][data-bg-color2="dark"].scrolled .photolane_fn_leftbar span.menu span{background-color: #fff;}
.photolane_fn_vertical_menu[data-bg-color="darkTrans"][data-bg-color2="dark"].scrolled .photolane_fn_leftbar .photolane_fn_cright span{color: #fff;}


/*------------------------------------------------------------------*/ 
/*	05) VERTICAL MENU
/*------------------------------------------------------------------*/
.photolane_fn_vertical_menu{
	position: fixed;
	width: 80px;
	height: 100%;
	z-index: 99;
}
.photolane_fn_vertical_menu_overlay{
	position: fixed;
	width: 100%;
	height: 100%;
	padding-left: 80px;
	background: rgba(0,0,0,0);
	z-index: 15;
	
	opacity: 0;
	visibility: hidden;
	
	-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
	-moz-box-sizing: border-box;    /* Firefox, other Gecko */
	box-sizing: border-box;         /* Opera/IE 8+ */
}
.photolane_fn_vertical_menu_overlay.activated{
	opacity: 1;
	visibility: visible;
}
/*------------------------------------------------------------------*/ 
/*	05.1) LEFT BAR
/*------------------------------------------------------------------*/
.photolane_fn_leftbar{
	width: 80px;
	height: 100%;
	position: fixed;
	z-index: 20;
	background: rgba(0,0,0,0);
	border-right: 1px solid #eee;
}
.photolane_fn_leftbar ul{
	list-style-type: none;
	margin: 0px;
	margin-bottom: 50px;
}
.photolane_fn_leftbar ul li{
	margin: 0px;
	width: 100%;
	height: 80px;
	line-height: 80px;
	text-align: center;
	position: relative;
	border-bottom: 1px solid #eee;
	
	-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
	-moz-box-sizing: border-box;    /* Firefox, other Gecko */
	box-sizing: border-box;         /* Opera/IE 8+ */
}
.photolane_fn_leftbar ul li a.trigger:hover span.menu span.a,
.photolane_fn_leftbar ul li a.trigger:hover span.menu span.c{
	width: 30px;
	margin-left: 0px;
}
.photolane_fn_leftbar ul li.profile:hover .tooltip{
	opacity: 1;
	visibility: visible;
}
.photolane_fn_leftbar ul li.gallery:hover .tooltip{
	opacity: 1;
	visibility: visible;
}
.photolane_fn_leftbar ul li a{
	display: block;
	width: 100%;
	height: 100%;
	text-decoration: none;
	color: #fff;
}
.photolane_fn_leftbar ul li svg{
	fill: currentcolor;
	width: 25px;
	height: 25px;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -12px;
	margin-left: -12px;
	
	opacity: 1;
	visibility: visible;
}
.photolane_fn_leftbar ul li a.volume svg.hidden{
	opacity: 0;
	visibility: hidden;
}
.photolane_fn_leftbar .photolane_fn_cright_wrap{
	position: relative;
	width: 100%;
	height: auto;
}
.photolane_fn_leftbar .photolane_fn_cright{
	-webkit-transform: rotate(-90deg);
	   -moz-transform: rotate(-90deg);
	    -ms-transform: rotate(-90deg);
	        transform: rotate(-90deg);
	
	transform-origin: top left;
	position: absolute;
	white-space: nowrap;
	bottom: 20px;
	left: 50%;
	margin-left: -10px;
}
.photolane_fn_leftbar .photolane_fn_cright span{
	color: #fff;
	text-transform: uppercase;
	font-size: 10px;
}
/*------------------------------------------------------------------*/ 
/*	05.1.1) TRIGGER
/*------------------------------------------------------------------*/
.photolane_fn_leftbar span.menu{
	left: 50%;
	top:50%;
	width: 30px;
	position: absolute;
	margin-top: -9px;
	margin-left: -15px;
}
.photolane_fn_leftbar span.menu span{
	background-color: #fff;
	margin-bottom: 6px;
	height: 2px;
	display: block;
	text-align: center;
	
	transition: all .2s ease;
	-o-transition: all .2s ease;
	-ms-transition: all .2s ease;
	-moz-transition: all .2s ease;
	-webkit-transition: all .2s ease;
}
.photolane_fn_leftbar span.menu span:last-child{
	margin-bottom: 0px;
}
.photolane_fn_leftbar span.menu span.b{
	width: 30px;
}
.photolane_fn_leftbar span.menu span.a,
.photolane_fn_leftbar span.menu span.c{
	width: 20px;
	margin-left: 5px;
}
/*------------------------------------------------------------------*/ 
/*	05.2) LEFT BAR NAVIGATION
/*------------------------------------------------------------------*/
.photolane_fn_leftbar_nav{
	padding-left: 80px;
	position: fixed;
	width: 380px;
	height: 100%;
	background-color: rgba(17,17,17,.9);
	z-index: 15;
	
	opacity: 0;
	visibility: hidden;
	
	-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
	-moz-box-sizing: border-box;    /* Firefox, other Gecko */
	box-sizing: border-box;         /* Opera/IE 8+ */
	
	transition: all .5s ease;
	-o-transition: all .5s ease;
	-ms-transition: all .5s ease;
	-moz-transition: all .5s ease;
	-webkit-transition: all .5s ease;
}
.photolane_fn_leftbar_nav.opened{
	opacity: 1;
	visibility: visible;
}
.photolane_fn_leftbar_nav_in{
	width: 100%;
	height: auto;
}
.left_bar{
	padding: 40px;
	height: auto;
	
	
	-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
	-moz-box-sizing: border-box;    /* Firefox, other Gecko */
	box-sizing: border-box;         /* Opera/IE 8+ */
}
.photolane_fn_leftbar_nav_in .language{
	width: 100%;
	height: auto;
	margin-bottom: 40px;
}
.photolane_fn_leftbar_nav_in .language a{
	text-decoration: none;
}
.photolane_fn_leftbar_nav_in .language a span{
	text-transform: uppercase;
	color: #999;
	margin-right: 14px;
	letter-spacing: 2px;
	font-size: 12px;
	
	transition: all .5s ease;
	-o-transition: all .5s ease;
	-ms-transition: all .5s ease;
	-moz-transition: all .5s ease;
	-webkit-transition: all .5s ease;
}
.photolane_fn_leftbar_nav_in .language a.active span{
	color: #fff;
}
.photolane_fn_leftbar_nav_in .language a:hover span{
	color: #fff;
}
.photolane_fn_leftbar_nav_in .logo{
	margin-bottom: 80px;
}
.photolane_fn_leftbar_nav_in .cright{
	line-height: 1.4;
}
.photolane_fn_leftbar_nav_in .cright span{
	color: #999;
	letter-spacing: 1px;
	font-size: 10px;
	display: block;
}
.photolane_fn_leftbar_nav_in .cright span a{
	color: #fff;
	text-decoration: none;
	border-bottom: 1px dotted transparent;
	padding-bottom: 2px;
	
	transition: all .5s ease;
	-o-transition: all .5s ease;
	-ms-transition: all .5s ease;
	-moz-transition: all .5s ease;
	-webkit-transition: all .5s ease;
}
.photolane_fn_leftbar_nav_in .cright span a:hover{
	border-bottom-color: #fff;
}
/*------------------------------------------------------------------*/ 
/*	05.3) PROFILE PREVIEW
/*------------------------------------------------------------------*/
.photolane_fn_profile_prev{
	padding-left: 80px;
	position: fixed;
	width: 380px;
	height: 100%;
	background-color: rgba(17,17,17,.9);
	z-index: 15;
	
	opacity: 0;
	visibility: hidden;
	
	-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
	-moz-box-sizing: border-box;    /* Firefox, other Gecko */
	box-sizing: border-box;         /* Opera/IE 8+ */
	
	transition: all .5s ease;
	-o-transition: all .5s ease;
	-ms-transition: all .5s ease;
	-moz-transition: all .5s ease;
	-webkit-transition: all .5s ease;
}
.photolane_fn_profile_prev.opened{
	opacity: 1;
	visibility: visible;
}
.profile_preivew{
	padding: 40px;
	height: auto;
	
	-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
	-moz-box-sizing: border-box;    /* Firefox, other Gecko */
	box-sizing: border-box;         /* Opera/IE 8+ */
}
.photolane_fn_profile_prev_in .profile_img{
	margin-bottom: 40px;
}
.photolane_fn_profile_prev_in .profile_img img{	
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
}
.photolane_fn_profile_prev_in .title_holder{
	margin-bottom: 27px;
}
.photolane_fn_profile_prev_in .title_holder h3{
	color: #fff;
	text-transform: uppercase;
	font-size: 16px;
	letter-spacing: 1px;
	font-weight: 300;
	margin: 0px;
	margin-bottom: 29px;
}
.photolane_fn_profile_prev_in .title_holder p{
	color: #999;
	letter-spacing: 1px;
	line-height: 1.6;
	font-size: 14px;
}
.photolane_fn_profile_prev_in .social_icons{
	margin-bottom: 44px;
	float: left;
}
.photolane_fn_profile_prev_in .social_icons ul{
	list-style-type: none;
	margin: 0px;
	margin-left: -15px;
}
.photolane_fn_profile_prev_in .social_icons ul li{
	float: left;
	margin-left: 15px;
}
.photolane_fn_profile_prev_in .social_icons ul li a{
	text-decoration: none;
	color: #999;
	
	transition: none;
	-o-transition: none;
	-ms-transition: none;
	-moz-transition: none;
	-webkit-transition: none;
}
.photolane_fn_profile_prev_in .social_icons ul li a:hover{
	color: #fff;
}
/*------------------------------------------------------------------*/ 
/*	05.4) GALLERY PREVIEW
/*------------------------------------------------------------------*/
.photolane_fn_gallery_prev{
	padding-left: 80px;
	position: fixed;
	width: 380px;
	height: 100%;
	background-color: rgba(17,17,17,.9);
	z-index: 15;
	
	opacity: 0;
	visibility: hidden;
	
	-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
	-moz-box-sizing: border-box;    /* Firefox, other Gecko */
	box-sizing: border-box;         /* Opera/IE 8+ */
	
	transition: all .5s ease;
	-o-transition: all .5s ease;
	-ms-transition: all .5s ease;
	-moz-transition: all .5s ease;
	-webkit-transition: all .5s ease;
}
.photolane_fn_gallery_prev.opened{
	opacity: 1;
	visibility: visible;
}
.photolane_fn_gallery_prev_in ul{
	list-style-type: none;
	margin: 0px;
	margin-top: -30px;
	padding: 40px;
	
	-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
	-moz-box-sizing: border-box;    /* Firefox, other Gecko */
	box-sizing: border-box;         /* Opera/IE 8+ */
}
.photolane_fn_gallery_prev_in ul li{
	margin: 0px;
	margin-top: 30px;
}
.photolane_fn_gallery_prev_in ul li img{
	min-height: 100%;
	max-height: 100%;
	min-width: 100%;
	max-width: 100%;
	
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
}
/*------------------------------------------------------------------*/ 
/*	05.5) SEARCH PREVIEW
/*------------------------------------------------------------------*/
.photolane_fn_search{
	position: fixed;
	width: 100%;
	height: 100%;
	background-color: rgba(17,17,17,.9);
	z-index: 100;
	
	opacity: 0;
	visibility: hidden;
	
	transition: all .5s ease;
	-o-transition: all .5s ease;
	-ms-transition: all .5s ease;
	-moz-transition: all .5s ease;
	-webkit-transition: all .5s ease;
}
.photolane_fn_search.opened{
	opacity: 1;
	visibility: visible;
}
.photolane_fn_search_in{
	display: table;
	height: 100%;
	width: 100%;
}
.photolane_fn_search_in .aaa{
	display: table-cell;
	width: 100%;
	height: 100%;
	text-align: center;
	vertical-align: middle;
}
div.closer{
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0px;
	z-index: 105;
}
.photolane_fn_search .search_box{
	display: inline-block;
	background-color: #111;
	padding: 120px 80px;
	height: auto;
	max-width: 600px;
	text-align: left;
	z-index: 999;
	position: relative;
	border: 1px solid transparent;
	
	-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
	-moz-box-sizing: border-box;    /* Firefox, other Gecko */
	box-sizing: border-box;         /* Opera/IE 8+ */
}
.photolane_fn_search .search_box_in .form{
	position: relative;
}
.photolane_fn_search .search_box_in .form input{
	font-size: 24px;
	font-weight: 100;
	color: #fff;
	letter-spacing: 3px;
	padding: 9px 30px 9px 0px !important;
	width: 440px;
	height: auto;
	line-height: 1;
	border: none;
	background-color: transparent;
	border-bottom: 1px solid rgba(255,255,255,.1);
	outline-color: transparent;
	font-family: "Rubik";
}
.photolane_fn_search .search_box_in .form input:hover,
.photolane_fn_search .search_box_in .form input:focus{
	border-bottom-color: #fff;
}
.photolane_fn_search .search_box_in .form input::-webkit-input-placeholder {color:#fff; font-weight: 200;}
.photolane_fn_search .search_box_in .form input::-moz-placeholder          {color:#fff; font-weight: 200;}/* Firefox 19+ */
.photolane_fn_search .search_box_in .form input:-moz-placeholder           {color:#fff; font-weight: 200;}/* Firefox 18- */
.photolane_fn_search .search_box_in .form input:-ms-input-placeholder      {color:#fff; font-weight: 200;}

::-webkit-input-placeholder {color:#111; font-weight: 200;}
::-moz-placeholder          {color:#111; font-weight: 200;}/* Firefox 19+ */
:-moz-placeholder           {color:#111; font-weight: 200;}/* Firefox 18- */
:-ms-input-placeholder      {color:#111; font-weight: 200;}

.photolane_fn_search .search_box_in .form .icon{
	position: absolute;
	right: 0px;
	bottom: 10px;
}
.photolane_fn_search .search_box_in .form .icon a{
	text-decoration: none;
	display: block;
	color: #fff;
}
.photolane_fn_search .search_box_in .form .icon a svg{
	fill: currentcolor;
	width: 22px;
	height: 22px;
}
/* for all svg files*/
img.svg{
	width: 25px;
	height: 25px;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -12.5px;
	margin-left: -12.5px;
}
img.svg.hidden{
	opacity: 0;
	visibility: hidden;
}
/*------------------------------------------------------------------*/ 
/*	05.6) SHARE PREVIEW
/*------------------------------------------------------------------*/
.photolane_fn_share{
	position: fixed;
	width: 100%;
	height: 100%;
	background-color: rgba(17,17,17,.9);
	z-index: 100;
	
	opacity: 0;
	visibility: hidden;
	
	transition: all .5s ease;
	-o-transition: all .5s ease;
	-ms-transition: all .5s ease;
	-moz-transition: all .5s ease;
	-webkit-transition: all .5s ease;
}
.photolane_fn_share.opened{
	opacity: 1;
	visibility: visible;
}
.photolane_fn_share_in{
	display: table;
	height: 100%;
	width: 100%;
}
.photolane_fn_share_in .aaa{
	display: table-cell;
	vertical-align: middle;
	width: 100%;
	text-align: center;
}
.photolane_fn_share .share_box{
	width: 600px;
	background-color: #111;
	padding: 70px 50px;
	display: inline-block;
	text-align: left;
	z-index: 999;
	position: relative;
	border: 1px solid transparent;
	
	-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
	-moz-box-sizing: border-box;    /* Firefox, other Gecko */
	box-sizing: border-box;         /* Opera/IE 8+ */
	
	transition: all .5s ease;
	-o-transition: all .5s ease;
	-ms-transition: all .5s ease;
	-moz-transition: all .5s ease;
	-webkit-transition: all .5s ease;
}
.photolane_fn_share .share_box_in h3{
	margin: 0px;
	margin-bottom: 40px;
	font-size: 16px;
	color: #fff;
	letter-spacing: 1px;
	font-weight: 400;
	text-transform: uppercase;
}
.photolane_fn_share .share_box_in ul{
	list-style-type: none;
	margin: 0px;
}
.photolane_fn_share .share_box_in ul li{
	margin: 0px;
	display: inline-block;
	width: 49%;
	margin-bottom: 11px;
}
.photolane_fn_share .share_box_in ul li a{
	text-decoration: none;
	color: #999;
	font-size: 12px;
	letter-spacing: 1px;
	text-transform: uppercase;
	border-bottom: 1px solid transparent;
	padding-bottom: 3px;
	
	transition: all .5s ease;
	-o-transition: all .5s ease;
	-ms-transition: all .5s ease;
	-moz-transition: all .5s ease;
	-webkit-transition: all .5s ease;
}
.photolane_fn_share .share_box_in ul li a:hover{
	color: #fff;
	border-bottom-color: #fff;
}
/*------------------------------------------------------------------*/ 
/*	05.7) TOOLTIPS
/*------------------------------------------------------------------*/
.tooltip{
	position: absolute;
	left: 100%;
	z-index: 20;
	width: auto;
	margin-left: 10px;
	white-space: nowrap;
	line-height: 1;
	height: auto;
	top:50%;
	margin-top: -19px;
	
	opacity: 0;
	visibility: hidden;
	
	transition: all .5s ease;
	-o-transition: all .5s ease;
	-ms-transition: all .5s ease;
	-moz-transition: all .5s ease;
	-webkit-transition: all .5s ease;
}
 .tooltip span{
	padding: 13px 24px;
	background-color: #111;
	font-size: 12px;
	text-transform: uppercase;
	color: #fff;
	display: block;
	position: relative;
	
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
}
.tooltip span:after{
	content: '';
	position: absolute;
	left: -10px;
	top: 50%;
	margin-top: -5px;
	border: 5px solid transparent;
	border-right-color: #111;
}
.tooltip_all{
	position: absolute;
	z-index: 20;
	width: auto;
	white-space: nowrap;
	line-height: 1;
	height: auto;
	bottom: 100%;
	margin-bottom: 17px;
	
	opacity: 0;
	visibility: hidden;
	
	transition: all .5s ease;
	-o-transition: all .5s ease;
	-ms-transition: all .5s ease;
	-moz-transition: all .5s ease;
	-webkit-transition: all .5s ease;
}
 .tooltip_all span{
	padding: 13px 24px;
	background-color: #111;
	font-size: 12px;
	text-transform: uppercase;
	color: #fff;
	display: block;
	position: relative;
	 
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
}
.tooltip_all span:after{
	content: '';
	position: absolute;
	bottom: -9px;
	left: 50%;
	margin-left: -5px;
	border: 5px solid transparent;
	border-top-color: #111;
}
/*------------------------------------------------------------------*/ 
/*	06) SUBMENU
/*------------------------------------------------------------------*/
ul.nav{
	list-style-type: none;
	margin: 0px;
	margin-bottom: 37px;
}
ul.nav > li{
	margin-bottom: 11px;
}
ul.nav > li:last-child{
	margin: 0px;
}
ul.nav li a{
	text-decoration: none;
	color: #fff;
	font-size: 12px;
	letter-spacing: 2px;
}
ul.nav li a span{
	color: #fff;
	font-size: 12px;
	letter-spacing: 2px;
}
ul.nav > li > a{
	text-transform: uppercase;
}
ul.nav li a i{
	color: #999;
	font-size: 14px;
}
ul.nav li ul{
	list-style-type: none;
	margin-left: 15px;
	display: none;
	margin-top: 9px;
}
ul.nav li ul li{
	margin-bottom: 11px;
}
/*------------------------------------------------------------------*/ 
/*	07) INDEX (NEW PAGE)
/*------------------------------------------------------------------*/
.photolane_fn_content_in{
	width:100%;
	height:auto;
	position:relative;
	z-index:20;
	padding-left: 80px;
	float: left;
	
	-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
	-moz-box-sizing: border-box;    /* Firefox, other Gecko */
	box-sizing: border-box;         /* Opera/IE 8+ */
}
.photolane_fn_fluid_wrap{
	margin-left:-80px;
}
.photoplane_fn_fotorama img{
	min-width: 100%;
	min-height: 100%;
}
/*------------------------------------------------------------------*/ 
/*	07.1) FLEXSLIDER
/*------------------------------------------------------------------*/
.photolane_fn_main_slider ul.slides > li{
	margin:0px;
	overflow:hidden;
	position: relative;
}
.photolane_fn_main_slider ul li img{
	min-height:100%;
}

.photolane_fn_main_slider .flexslider ul li .slides_bg.one{
	background-image: url(../img/main_slider/1.jpg);
}
.photolane_fn_main_slider .flexslider ul li .slides_bg.two{
	background-image: url(../img/main_slider/2.jpg);
}
.photolane_fn_main_slider .flexslider ul li .slides_bg.three{
	background-image: url(../img/main_slider/3.jpg);
}
.photolane_fn_main_slider .flexslider ul li .slides_bg.four{
	background-image: url(../img/main_slider/4.jpg);
}
.photolane_fn_main_slider .flexslider ul li .slides_bg.five{
	background-image: url(../img/main_slider/5.jpg);
}

.photolane_fn_main_slider .flexslider ul li .slides_bg{
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	position: absolute;
	top:0px;
	right: 0px;
	bottom: 0px;
	left: 0px;
}
.photolane_fn_main_slider .purchase{
	position: absolute;
	z-index: 15;
	bottom: 85px;
	left: 120px;
}
.photolane_fn_main_slider .purchase a{
	text-decoration: none;
	color: #fff;
	display: block;
}
.photolane_fn_main_slider .purchase:hover .tooltip{
	opacity: 1;
	visibility: visible;
}
.photolane_fn_main_slider .purchase svg{
	fill: currentcolor;
	width: 25px;
	height: 25px;
}
.photolane_fn_main_slider .title_holder{
	position:absolute;
	z-index:15;
	color:#fff;
	bottom:27px;
	left:120px;
}
.photolane_fn_main_slider .title_holder a{
	text-decoration:none;
	color:#fffefe;
}
.photolane_fn_main_slider .title_holder h2{
	font-size:30px;
	text-transform:uppercase;
	letter-spacing:1px;
	margin:0px;
	font-weight:400;
}
.photolane_fn_main_slider .photolane_fn_overlay{
	position:absolute;
	z-index:10;
	top:0px;
	bottom:0px;
	left:0px;
	right:0px;
	background:rgba(0,0,0,0);
	
	transition: all .5s ease;
	-o-transition: all .5s ease;
	-ms-transition: all .5s ease;
	-moz-transition: all .5s ease;
	-webkit-transition: all .5s ease;
}
.photolane_fn_main_slider .photolane_fn_overlay:after{
	content:'';
	position:absolute;
	left:0;
	bottom:0;
	width:100%;
	height:100%;
	z-index:3;
	
	background-image:-webkit-gradient(linear,left top,left bottom,from(transparent),color-stop(70%,transparent),color-stop(76%,rgba(0,0,0,0.1)),color-stop(93%,rgba(0,0,0,0.4)),to(rgba(0,0,0,0.49)));
	background-image:-webkit-linear-gradient(transparent 0%,transparent 70%,rgba(0,0,0,0.1) 76%,rgba(0,0,0,0.4) 93%,rgba(0,0,0,0.49) 100%);
	background-image:linear-gradient(transparent 0%,transparent 70%,rgba(0,0,0,0.1) 76%,rgba(0,0,0,0.4) 93%,rgba(0,0,0,0.49) 100%);	
}
/*------------------------------------------------------------------*/ 
/*	08) ABOUT (NEW PAGE)
/*------------------------------------------------------------------*/
.photolane_fn_secondary_wrap{
	position: relative;
	width: 100%;
	height: auto;
	float: left;
}
.photolane_fn_secondary_wrap_in{
	margin:100px 0px 0px;
}
.photolane_fn_secondary_wrap .photer_box{
	float: left;
	clear: both;
	margin-bottom: 150px;
}
.photolane_fn_secondary_wrap .photer_img{
	width: 50%;
	position: relative;
	float: left;
}
.photolane_fn_secondary_wrap .photer_img img{
	min-width: 100%;
	max-width: 100%;
	min-height: 100%;
	max-height: 100%;
}
.photolane_fn_secondary_wrap .photer_img.jarallax{
	background-repeat: no-repeat;
	background-image: url(../img/about/1.jpg);
}
.photolane_fn_secondary_wrap .photer_img.jarallax img{
	min-width: auto;
	min-height: auto;
}
.photolane_fn_secondary_wrap .photer_img .overlay{
	position:absolute;
	z-index:10;
	top:0px;
	bottom:0px;
	left:0px;
	right:0px;
	background:rgba(0,0,0,0);
	
	transition: all .5s ease;
	-o-transition: all .5s ease;
	-ms-transition: all .5s ease;
	-moz-transition: all .5s ease;
	-webkit-transition: all .5s ease;
}
.photolane_fn_secondary_wrap .photer_img .overlay:after{
	content:'';
	position:absolute;
	left:0;
	bottom:0;
	width:100%;
	height:100%;
	z-index:3;
	
	background-image:-webkit-gradient(linear,left top,left bottom,from(transparent),color-stop(70%,transparent),color-stop(76%,rgba(0,0,0,0.1)),color-stop(93%,rgba(0,0,0,0.4)),to(rgba(0,0,0,0.49)));
	background-image:-webkit-linear-gradient(transparent 0%,transparent 70%,rgba(0,0,0,0.1) 76%,rgba(0,0,0,0.4) 93%,rgba(0,0,0,0.49) 100%);
	background-image:linear-gradient(transparent 0%,transparent 70%,rgba(0,0,0,0.1) 76%,rgba(0,0,0,0.4) 93%,rgba(0,0,0,0.49) 100%);	
}
.photolane_fn_secondary_wrap .photer_img .title_holder{
	position: absolute;
	bottom: 34px;
	text-align: center;
	z-index: 15;
	width: 100%;
}
.photolane_fn_secondary_wrap .photer_img .title_holder_in{
	display: inline-block;
}
.photolane_fn_secondary_wrap .photer_img .title_holder h3{
	font-size: 36px;
	letter-spacing: .5px;
	color: #fffefe;
	margin-bottom: 2px;
	line-height: 1;
	font-weight: 400;
}
.photolane_fn_secondary_wrap .photer_img .title_holder span{
	font-size: 12px;
	letter-spacing: 5px;
	color: #fffefe;
	line-height: 1;
	text-transform: uppercase;
}
.photolane_fn_secondary_wrap .photer_full_info{
	width: 50%;
	float: left;
	clear: right;
	margin-top: 76px;
	padding: 0px 40px;
	
	-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
	-moz-box-sizing: border-box;    /* Firefox, other Gecko */
	box-sizing: border-box;         /* Opera/IE 8+ */
}
.photolane_fn_secondary_wrap .photer_full_info h3{
	font-size: 30px;
	letter-spacing: 1px;
	color: #111;
	line-height: 1.2;
	font-weight: 400;
	margin-bottom: 41px;
}
.photolane_fn_secondary_wrap .photer_full_info h3 em{
	font-family: "Playfair Display";
}
.photolane_fn_secondary_wrap .photer_full_info p{
	font-size: 16px;
	letter-spacing: 2px;
	line-height: 26px;
	color: #777;
	display: block;
	margin-bottom: 41px;
}
.photolane_fn_secondary_wrap .photer_full_info p a{
	color: #3651ff;
	text-decoration: none;
	border-bottom: 1px solid transparent;
	padding-bottom: 3px;
	
	transition: all .5s ease;
	-o-transition: all .5s ease;
	-ms-transition: all .5s ease;
	-moz-transition: all .5s ease;
	-webkit-transition: all .5s ease;
}
.photolane_fn_secondary_wrap .photer_full_info p a:hover{
	border-bottom-color: #3651ff;
}
.photolane_fn_secondary_wrap .photer_full_info .social_icons{
	margin-bottom: 46px;
	float: left;
}
.photolane_fn_secondary_wrap .photer_full_info .social_icons ul{
	list-style-type: none;
	margin: 0px;
	margin-left: -15px;
}
.photolane_fn_secondary_wrap .photer_full_info .social_icons ul li{
	float: left;
	margin-left: 15px;
}
.photolane_fn_secondary_wrap .photer_full_info .social_icons ul li a{
	text-decoration: none;
	color: #999;
	
	transition: none;
	-o-transition: none;
	-ms-transition: none;
	-moz-transition: none;
	-webkit-transition: none;
}
.photolane_fn_secondary_wrap .photer_full_info .social_icons ul li a:hover{
	color: #111;
}
.photolane_fn_secondary_wrap .photer_knowledge{
	margin-bottom: 150px;
	margin-left: -6%;
}
.photolane_fn_secondary_wrap .photer_knowledge .title_holder{
	float: left;
	width: 27.333333%;
	margin-left: 6%;
	padding-right: 50px;
	
	-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
	-moz-box-sizing: border-box;    /* Firefox, other Gecko */
	box-sizing: border-box;         /* Opera/IE 8+ */
}
.photolane_fn_secondary_wrap .photer_knowledge .title_holder h1{
	font-size: 72px;
	line-height: 1;
	letter-spacing: 0;
	color: #ddd;
	margin-bottom: 14px;
	font-weight: 400;
}
.photolane_fn_secondary_wrap .photer_knowledge .title_holder h2{
	font-size: 24px;
	letter-spacing: .5px;
	color: #111;
	font-weight: 400;
	margin-bottom: 37px;
	line-height: 29px;
}
.photolane_fn_secondary_wrap .photer_knowledge .title_holder span{
	font-size: 16px;
	line-height: 26px;
	letter-spacing: 1px;
	color: #777;
}
.photolane_fn_secondary_wrap .container_wo_right{
	padding-left: 50px;
	width: 100%;
	float: left;
	clear: both;
	
	-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
	-moz-box-sizing: border-box;    /* Firefox, other Gecko */
	box-sizing: border-box;         /* Opera/IE 8+ */
}
.photolane_fn_secondary_wrap .about_msg .overlay_color{
	position: absolute;
	top: 0px;
	right: 0px;
	bottom: 0px;
	left: 0px;
	background-color: #3651ff;
	z-index: -1;
}
.photolane_fn_secondary_wrap .about_msg{
	padding: 66px 0px;
	margin-bottom: 150px;
	position: relative;
	width: 100%;
	float: left;
}
.photolane_fn_secondary_wrap .about_msg p{
	font-size: 30px;
	letter-spacing: .5px;
	color: #fff;
	line-height: 34px;
}
.photolane_fn_secondary_wrap .about_msg p em{
	font-family: "Playfair Display";
}
.photolane_fn_secondary_wrap .about_msg span.text{
	font-size: 24px;
	letter-spacing: 1px;
	color: #fff;
	text-transform: uppercase;
}
/*------------------------------------------------------------------*/ 
/*	09) MAIN BUTTON
/*------------------------------------------------------------------*/
a.photolane_fn_btn{
	text-decoration: none;
	padding: 18px 40px;
	color: #3651ff;
	letter-spacing: 2px;
	font-size: 12px;
	border: 2px solid #3651ff;
	text-transform: uppercase;
	display: inline-block;
	font-weight: 400;
	line-height: 1;
}
a.photolane_fn_btn[data-position="right"]{
	float: right;
}
/*------------------------------------------------------------------*/ 
/*	10) PROJECT LIST
/*------------------------------------------------------------------*/
.aaaabbbb{
	width: 100%;
	height: auto;
	margin-bottom: 150px;
	float: left;
}
ul.project_list{
	list-style-type: none;
	margin: 0px;
	margin-left: -6.3%;
}
ul.project_list li{
	margin: 0px;
	width: 44%;
	margin-left: 6%;
	float: left;
	margin-bottom: 6%;
}
.photolane_fn_main_img_holder{
	position: relative;
}
.photolane_fn_main_img_holder img{
	min-width: 100%;
	max-width: 100%;
	
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
}
.photolane_fn_main_img_holder .overlay{
	position:absolute;
	z-index:10;
	top:0px;
	bottom:0px;
	left:0px;
	right:0px;
	background:rgba(0,0,0,0);
	
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	
	transition: all .5s ease;
	-o-transition: all .5s ease;
	-ms-transition: all .5s ease;
	-moz-transition: all .5s ease;
	-webkit-transition: all .5s ease;
}
.photolane_fn_main_img_holder .overlay a{
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: 15;
}
.photolane_fn_main_img_holder .overlay:after{
	content:'';
	position:absolute;
	left:0;
	bottom:0;
	width:100%;
	height:100%;
	z-index:3;
	
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	
	background-image:-webkit-gradient(linear,left top,left bottom,from(transparent),color-stop(70%,transparent),color-stop(76%,rgba(0,0,0,0.1)),color-stop(93%,rgba(0,0,0,0.4)),to(rgba(0,0,0,0.49)));
	background-image:-webkit-linear-gradient(transparent 0%,transparent 70%,rgba(0,0,0,0.1) 76%,rgba(0,0,0,0.4) 93%,rgba(0,0,0,0.49) 100%);
	background-image:linear-gradient(transparent 0%,transparent 70%,rgba(0,0,0,0.1) 76%,rgba(0,0,0,0.4) 93%,rgba(0,0,0,0.49) 100%);	
}
.photolane_fn_main_img_holder .img_name{
	position: absolute;
	bottom: 12px;
	left: 12px;
	padding-right: 95px;
	background-color: transparent;
	
	z-index: 20;
	
	transition: all .5s ease;
	-o-transition: all .5s ease;
	-ms-transition: all .5s ease;
	-moz-transition: all .5s ease;
	-webkit-transition: all .5s ease;
}
.photolane_fn_main_img_holder .img_name a{
	color: #fff;
	display: inline-block;
	text-decoration: none;
	
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}
.photolane_fn_main_img_holder .img_name span{
	font-size: 19px;
	letter-spacing: 1px;
	color: #fff;
	padding: 2px 8px;
	display: inline-block;
	
	transition: all .5s ease;
	-o-transition: all .5s ease;
	-ms-transition: all .5s ease;
	-moz-transition: all .5s ease;
	-webkit-transition: all .5s ease;
}
.photolane_fn_main_img_holder:hover .img_name a:hover{
	background-color: rgba(255,255,255,.1);
}
.photolane_fn_main_img_holder .img_icons{
	position: absolute;
	bottom: 19px;
	right: 20px;
	line-height: 0;
	z-index: 21;
	display: block;
	
	opacity: 0;
	visibility: hidden;
	
	transition: all .5s ease;
	-o-transition: all .5s ease;
	-ms-transition: all .5s ease;
	-moz-transition: all .5s ease;
	-webkit-transition: all .5s ease;
}
.photolane_fn_main_img_holder:hover .img_icons{
	opacity: 1;
	visibility: visible;
}
.photolane_fn_main_img_holder .img_icons a{
	color: #fff;
	text-decoration: none;
	display: inline-block;
	margin-right: 11px;
}
.photolane_fn_main_img_holder .img_icons a:last-child{
	margin-right: 0px;
}
.photolane_fn_main_img_holder .img_icons svg{
	fill: currentcolor;
	width: 20px;
	height: 20px;
	display: block;
}
.aaaabbbb .view_all a{
	font-size: 14px;
	letter-spacing: 1px;
	color: #777;
	text-transform: uppercase;
	text-decoration: none;
}
.aaaabbbb .view_all a:hover i{
	margin-left: 10px;
}
/*------------------------------------------------------------------*/ 
/*	11) FULL WIDTH CONTAINER
/*------------------------------------------------------------------*/
.photolane_fn_full_width_container{
	width: 100%;
	position: relative;
	clear: both;
}
.photolane_fn_full_width_container .background_holder{
	position: absolute;
	top: 0px;
	right: 0px;
	bottom: 0px;
	left: 0px;
	
	z-index: 5;
}
.photolane_fn_full_width_container .background_holder .bg_img{
	position: absolute;
	top: 0px;
	right: 0px;
	bottom: 0px;
	left: 0px;
	
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	
	z-index: 5;
}
.photolane_fn_full_width_container .background_holder .bg_video{
	position: absolute;
	top: 0px;
	right: 0px;
	bottom: 0px;
	left: 0px;
	
	z-index: 5;
}
.photolane_fn_full_width_container .background_holder .bg_color{
	position: absolute;
	top: 0px;
	right: 0px;
	bottom: 0px;
	left: 0px;
	
	z-index: 10;
}
.photolane_fn_full_width_container .content_holder{
	position: relative;
	max-width: 700px;
	margin: 0px auto;
	text-align: center;
	z-index: 20;
	
	-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
	-moz-box-sizing: border-box;    /* Firefox, other Gecko */
	box-sizing: border-box;         /* Opera/IE 8+ */
}
.photolane_fn_full_width_container .content_holder > p{
	font-size: 16px;
	line-height: 1.5;
	letter-spacing: 1px;
	color: #777;
	display: block;
	margin-bottom: 35px;
}
.photolane_fn_full_width_container .content_holder > img{
	margin-bottom: 35px;
}
.photolane_fn_full_width_container .content_holder h3{
	margin: 0px;
	font-size: 36px;
	letter-spacing: .5px;
	line-height: 1.2;
	color: #333;
	font-weight: 400;
}
.photolane_fn_full_width_container .content_holder h3 em{
	font-family: "Playfair Display";
}
.photolane_fn_full_width_container .content_holder > span{
	display: block;
	font-size: 12px;
	letter-spacing: 5px;
	color: #777;
	text-transform: uppercase;
	margin-bottom: 19px;
}
.photolane_fn_full_width_container.shortcode .bg_img.jarallax{
	background-image: url(../img/shortcodes/2.jpg);
}
/*------------------------------------------------------------------*/ 
/*	12) PROJECT #1 (NEW PAGE)
/*------------------------------------------------------------------*/
.photolane_fn_secondary_wrap .breadcrumbs p{
	display: inline-block;
	padding: 8px 20px;
	background-color: #f5f5f5;
	letter-spacing: 1px;
	font-size: 13px;
	color: #777;
	line-height: 1;
	margin-bottom: 53px;
	
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}
.photolane_fn_secondary_wrap .breadcrumbs p a:first-child{
	padding-right: 5px;
}
.photolane_fn_secondary_wrap .breadcrumbs p a{
	text-decoration: none;
	color: #777;
	padding: 0px 5px;
}
.photolane_fn_secondary_wrap .breadcrumbs p span{
	color: #ccc;
	padding-left: 5px;
}
.photolane_fn_secondary_wrap .project_title{
	margin-bottom: 80px;
}
.photolane_fn_secondary_wrap .project_title h3{
	font-size: 48px;
	letter-spacing: .5px;
	color: #111;
	margin-bottom: 0px;
	font-weight: 400;
}
.photolane_fn_secondary_wrap .aaaabbbb .next{
	clear: both;
}
.photolane_fn_secondary_wrap .aaaabbbb .next a{
	display: inline-block;
	font-size: 15px;
	letter-spacing: 1px;
	color: #777;
	text-decoration: none;
	text-transform: uppercase;
	position: relative;
	padding-right: 20px;
}
.photolane_fn_secondary_wrap .aaaabbbb .next a i{
	font-size: 20px;
	position: absolute;
	top: 0px;
	right: -10px;
	line-height: 0;
}
.photolane_fn_secondary_wrap .aaaabbbb .next a:hover i{
	right: -20px;
}
/*------------------------------------------------------------------*/ 
/*	13) PROJECT #2 (NEW PAGE)
/*------------------------------------------------------------------*/
.second_type_of_project{
	background: url(../img/project/full1.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	height: 500px;
	margin-bottom: 100px;
	position: relative;
}
.second_type_of_project .breadcrumbs p{
	color: #fff;
	background-color: rgba(17,17,17,.2);
}
.second_type_of_project .breadcrumbs p a{
	color: #fff;
}
.second_type_of_project .breadcrumbs p span{
	color: #bbb;
}
.second_type_of_project .project_title{
	position: absolute;
	margin-bottom: 0px !important;
	bottom: 40px;
	left: 40px;
}
.second_type_of_project .project_title h3{
	color: #fff;
}
.second_type_of_project > .container{
	min-height: 500px;
}
/*------------------------------------------------------------------*/ 
/*	14) PROJECT #3 (NEW PAGE)
/*------------------------------------------------------------------*/
.third_type_of_project{
	background: url(../img/project/full1.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	margin-bottom: 100px;
	padding-left: 80px;
	position: relative;
}
.third_type_of_project .breadcrumbs p{
	color: #fff;
	background-color: rgba(17,17,17,.2);
}
.third_type_of_project .breadcrumbs p a{
	color: #fff;
}
.third_type_of_project .breadcrumbs p span{
	color: #bbb;
}
.third_type_of_project .project_title{
	position: absolute;
	bottom: 20px;
	margin-bottom: 0px !important;
}
.third_type_of_project .project_title h3{
	color: #fff;
}
.third_type_of_project > .container{
	position: static;
}
/*------------------------------------------------------------------*/ 
/*	15) PROJECT SINGLE (NEW PAGE)
/*------------------------------------------------------------------*/
.third_type_of_project.single{
	background: url(../img/project_single/bg.jpg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	background-color: #333;
}
.section_q{
	float: left;
	margin-bottom: 150px;
	clear: both;
}
.customer{
	width: 28%;
	margin-right: 6%;
	float: left;
}
.customer ul{
	list-style-type: none;
	margin: 0px;
	margin-bottom: 17px;
}
.customer ul > li{
	margin: 0px;
	position: relative;
	line-height: 40px;
}
.customer ul > li span.span1{
	font-size: 16px;
	color: #333;
	letter-spacing: 0px;
	font-weight: 500;
	padding-right: 25px;
	display: inline-block;
	width: 120px;
	word-break: break-all;
}
.customer ul > li span.span2{
	font-size: 16px;
	color: #777;
}
.customer ul > li span.span2 a{
	text-decoration: none;
	color: #3651ff;
	border-bottom: 1px solid transparent;
	padding-bottom: 3px;
}
.customer ul > li span.span2 a:hover{
	border-color: #3651ff;
}
.customer .likeshare{
	margin-bottom: 30px;
}
.customer .likeshare a{
	display: inline-block;
	font-size: 12px;
	letter-spacing: 1px;
	line-height: 1;
	text-decoration: none;
	padding: 8px 15px 8px 41px;
	border: 1px solid transparent;
	margin-right: 6px;
	position: relative;
	text-transform: uppercase;
	font-weight: 500;
	
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
}
.customer .likeshare a:last-child{
	margin-right: 0px;
}
.customer .likeshare a.like{
	background-color: #fc4545;
	border-color: #e43c3c;
	color: #fff;
}
.customer .likeshare a.share{
	background-color: #f5f5f5;
	border-color: #eee;
	color: #777;
}

.customer .likeshare img{
	width: 16px;
	height: 14px;
	position: absolute;
}
.customer .likeshare svg{
	width: 18px;
	height: 16px;
	fill: currentcolor;
	position: absolute;
	left: 15px;
	top: 50%;
	margin-top: -8px;
}
.customer .details{
	position: relative;
	margin-bottom: 60px;
}
.customer .details svg{
	width: 22px;
	height: 22px;
	fill: currentcolor;
	position: absolute;
	left: 0px;
	top: 0px;
}
.customer .details a{
	text-decoration: none;
	color: #333;
	font-size: 14px;
	line-height: 26px;
	letter-spacing: 1px;
	font-style: italic;
	display: inline-block;
}
.customer .details a span{
	padding-left: 32px;
}
.customer .info p{
	font-size: 16px;
	line-height: 26px;
	letter-spacing: 1px;
	color: #777;
}
.project_img_list.full{
	width: 100%;
}
.project_img_list{
	width: 66%;
	float: right;
}
.project_img_list ul{
	list-style-type: none;
	margin: 0px;
	margin-top: -70px;
}
.project_img_list ul li{
	margin: 0px;
	width: 100%;
	float: left;
	margin-top: 70px;
}
.project_img_list ul li:last-child{
	margin-bottom: 0px;
}
.project_img_list ul li a{
	display: block;
}

.section_q[data-img-pos="left"] .customer{float: right;margin-right: 0px;margin-left: 6%;}
.section_q[data-img-pos="left"] .project_img_list{float: left;}

.section_q[data-img-pos="right"] .customer{float: left;margin-right: 6%;margin-left: 0px;}
.section_q[data-img-pos="right"] .project_img_list{float: right;}

.prevnext{
	width: 100%;
	border: 1px solid transparent;
	border-top-color: #eee;
	border-bottom-color: #eee;
	padding: 70px 0px;
	float: left;
	position: relative;
	margin-bottom: 150px;
}
.prevnext .pnbox{
	width: 100%;
	float: left;
}
.prevnext ul{
	list-style-type: none;
	margin: 0px;
}
.prevnext ul li{
	margin: 0px;
	width: 50%;
	float: left;
	position: relative;
}
.prevnext ul li a{
	text-decoration: none;
	font-size: 14px;
	letter-spacing: 1px;
	color: #777;
	text-transform: uppercase;
	display: inline-block;
}
.prevnext ul li.prev a{
	padding-left: 21px;
}
.prevnext ul li.next a{
	padding-right: 21px;
}
.prevnext ul li span.text{
	font-size: 19px;
	letter-spacing: .5px;
	color: #333;
	display: block;
	text-transform: none;
}
.prevnext ul li.prev span.text{
	margin-left: -21px;
}
.prevnext ul li.next span.text{
	margin-right: -21px;
}
.prevnext ul li.prev span i{
	position: absolute;
	left: -9px;
	top: -1px;
	line-height: 0;
	font-size: 20px;
}
.prevnext ul li.next span i{
	position: absolute;
	right: -9px;
	top: -1px;
	line-height: 0;
	font-size: 20px;
}
.prevnext ul li.prev{
	text-align: left;
	padding-right: 50px;
	
	-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
	-moz-box-sizing: border-box;    /* Firefox, other Gecko */
	box-sizing: border-box;         /* Opera/IE 8+ */
}
.prevnext ul li.next{
	text-align: right;
	padding-left: 50px;
	
	-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
	-moz-box-sizing: border-box;    /* Firefox, other Gecko */
	box-sizing: border-box;         /* Opera/IE 8+ */
}
.prevnext ul li.prev span.prev,
.prevnext ul li.next span.next{
	display: block;
}

.prevnext ul li a span.wov_text{
	position: relative;
}
.prevnext .hover_img{
	opacity: 0;
	visibility: hidden;
	position: absolute;
	bottom: 100%;
	margin-bottom: 10px;
	
	transition: all .5s ease;
	-o-transition: all .5s ease;
	-ms-transition: all .5s ease;
	-moz-transition: all .5s ease;
	-webkit-transition: all .5s ease;
}
.prevnext ul li.prev .hover_img{
	left: 0px;
}
.prevnext ul li.next .hover_img{
	right: 0px;
}
.prevnext .pnbox .hover_img img{
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}
.prevnext ul li.prev:hover .hover_img{
	opacity: 1;
	visibility: visible;
}
.prevnext ul li.next:hover .hover_img{
	opacity: 1;
	visibility: visible;
}
.prevnext .all{
	position: absolute;
	left: 50%;
	top:50%;
	margin-top: -12.5px;
	margin-left: -12.5px;
	width: 25px;
	height: 25px;
	display: block;
	
	transition: all .5s ease;
	-o-transition: all .5s ease;
	-ms-transition: all .5s ease;
	-moz-transition: all .5s ease;
	-webkit-transition: all .5s ease;
}
.prevnext .all_in{
	position: relative;
}
.prevnext .all a{
	text-decoration: none;
	display: block;
}
.prevnext .all  span.a,
.prevnext .all  span.b,
.prevnext .all  span.c{
	display: block;
	width: 5px;
	height: 5px;
	background-color: #333;
	position: relative;
	margin-left: 10px;
}
.prevnext .all span.a,
.prevnext .all span.b{
	margin-bottom: 5px;
}
.prevnext .all span.a:after,
.prevnext .all span.b:after,
.prevnext .all span.c:after{
	position: absolute;
	content: '';
	width: 5px;
	height: 5px;
	background-color: #333;
	left: -10px;
}
.prevnext .all span.a:before,
.prevnext .all span.b:before,
.prevnext .all span.c:before{
	position: absolute;
	content: '';
	width: 5px;
	height: 5px;
	background-color: #333;
	right: -10px;
}
.prevnext .all:hover .tooltip_all{
	opacity: 1;
	visibility: visible;
}
.prevnext > .container{
	position: static;
}
.last_section .aaaabbbb ul li{margin-bottom:0px;}
/*------------------------------------------------------------------*/ 
/*	16) MAGNIFIC POPUP
/*------------------------------------------------------------------*/
.mfp-close-btn-in .mfp-close{
	color: #fff;
}
.details_popup{
	position: relative;
	width: auto;
	max-width: 500px;
	margin: 0px auto;
	padding: 70px 50px;
	background-color: #111;
}
.details_popup .title_holder{
	margin-bottom: 40px;
}
.details_popup .title_holder h3{
	font-size: 16px;
	letter-spacing: 1px;
	color: #fff;
	margin-bottom: 0px;
	font-weight: 400;
}
.details_popup table,
.details_popup table tr,
.details_popup table td{
	border: none;
} 
.details_popup table{
	font-size: 12px;
	letter-spacing: 1px;
	color: #999;
	margin-bottom: 0px;
	line-height: 1;
}
.details_popup table td{
	padding: 10px 0px;
}
.details_popup table td.label{
	text-transform: uppercase;
}
/*------------------------------------------------------------------*/ 
/*	17) PROJECT SINGLE 2 (NEW PAGE)
/*------------------------------------------------------------------*/
.section_q.second_single .customer{
	width: 100%;
	margin: 0px;
}
.section_q.second_single .customer .labels{
	width: 28%;
	margin-right: 6%;
	float: left;
}
.section_q.second_single .customer .info{
	width: 66%;
	float: left;
}
.project_img_list img{
	min-width: 100%;
	max-width: 100%;
	min-height: 100%;
	max-height: 100%;
}
.section_q.second_single .project_img_list{
	width: 100%;
	float: inherit;
}

.section_q.second_single .project_img_list[data-cols="one"] ul li{width: 100%;margin-left: 0px;}
.section_q.second_single .project_img_list[data-cols="one"] ul{margin-left: 0px;}

.section_q.second_single .project_img_list[data-cols="two"] ul li{width: 48%; margin: 2% 0 0 2%;}
.section_q.second_single .project_img_list[data-cols="two"] ul{margin: -2% 0 0 -2%;}

.section_q.second_single .project_img_list[data-cols="three"] ul li{width: 31.33%; margin: 2% 0 0 2%;}
.section_q.second_single .project_img_list[data-cols="three"] ul{margin: -2% 0 0 -2%;}


/*------------------------------------------------------------------*/ 
/*	18) PROJECT SINGLE 3 (NEW PAGE)
/*------------------------------------------------------------------*/
.section_q.third_single .customer .details{
	margin-bottom: 0px;
}
.photolane_fn_main_slider.third_single  .flexslider ul li .slides_bg.one{
	background-image: url(../img/project_single/slider/1.jpg);
}
.photolane_fn_main_slider.third_single  .flexslider ul li .slides_bg.two{
	background-image: url(../img/project_single/slider/2.jpg);
}
.photolane_fn_main_slider.third_single  .flexslider ul li .slides_bg.three{
	background-image: url(../img/project_single/slider/3.jpg);
}
.photolane_fn_main_slider.third_single  .flexslider ul li .slides_bg.four{
	background-image: url(../img/project_single/slider/4.jpg);
}
.photolane_fn_main_slider.third_single  .flexslider ul li .slides_bg.five{
	background-image: url(../img/project_single/slider/5.jpg);
}
.photolane_fn_main_slider.third_single .flex-direction-nav{
	display: block;
}
.photolane_fn_main_slider.third_single .flex-direction-nav .flex-prev{
	left: 110px;
}
.photolane_fn_main_slider.third_single .flex-direction-nav .flex-next{
	right: 30px;
}
.photolane_fn_main_slider.third_single .flex-direction-nav a{
	width: 50px;
	height: 50px;
	margin: -25px 0px 0px;
	background: rgba(17,17,17,.9);
	line-height: 50px;
	
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}
.photolane_fn_main_slider.third_single .flex-direction-nav a:before{
	font-size: 32px;
	font-weight: 100;
}
/*------------------------------------------------------------------*/ 
/*	19) PROJECT SINGLE 4 (NEW PAGE)
/*------------------------------------------------------------------*/
.photolane_fn_carousel .owl-carousel{
	position: relative;
	height: 100%;
	z-index: 5;
}
.photolane_fn_carousel{
	position: relative;
	width: 100%;
	height: auto;
	margin-bottom: 33px;
}
.title_four{
	clear: both;
	height: auto;
	margin-bottom: 37px;
}
.title_four > .project_title{
	margin-bottom: 10px;
}
.title_four > .breadcrumbs p{
	margin-bottom:0px;
}
.custom_nav{
	position: absolute;
	top:50%;
	z-index: 999;
	width: 100%;
	margin-top: -25px;
	
	opacity: 1;
	visibility: visible;
}
.custom_nav a{
	display: block;
	color: #fff;
	font-size: 30px;
	width: 50px;
	height: 50px;
	line-height: 50px;
	background-color: rgba(17,17,17,.9);
	
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}
.custom_nav a i{
	display: block;
}
.custom_nav a i:before{
	margin: 0px;
	margin: 0px 10px;
}
.custom_nav a.prev{
	float: left;
	margin-left: 30px;
}
.custom_nav a.next{
	float: right;
	margin-right: 30px;
}
/*------------------------------------------------------------------*/ 
/*	20) PROJECT SINGLE 5 (NEW PAGE)
/*------------------------------------------------------------------*/
.photolane_fn_scroll{
	margin-bottom: 35px;
	width: 100%;
	overflow-x: scroll;
}
.photolane_fn_scroll table{
	width: auto !important;
	border-collapse: collapse;
	border: none;
}
.photolane_fn_scroll table tr{
	border: none;
	border-collapse: collapse;
	padding: 0px;
}
.photolane_fn_scroll table td{
	width:auto;
	display: table-cell;
    vertical-align: middle;
	padding:0px;
	padding-right: 10px;
    border: none !important;
}
.photolane_fn_scroll table td:last-child{
	padding-right: 0px;
}
.photolane_fn_scroll .img_holder img{
	width: auto;
	max-width: none;
	min-height: 400px;
	max-height: 400px;
}
.nicescroll-rails{
	margin-top: 5px;
}
div.gallery{
	width: auto;
}
div.gallery a{
	display: block;
}
div.gallery a img{
	display: block;
}
/*------------------------------------------------------------------*/ 
/*	22) PROJECT SINGLE 7 (NEW PAGE)
/*------------------------------------------------------------------*/
.photolane_fn_equal_project{
	width: 100%;
	float: left;
	clear: both;
	height: auto;
}
.photolane_fn_equal_project ul{
	list-style-type: none;
	margin: -2% 0 0 -2%;
}
.photolane_fn_equal_project ul li{
	width: 31.3333%;
	margin: 2% 0 0 2%;
	float: left;
}
.photolane_fn_equal_project ul li a{
	display: block;
}
.photolane_fn_equal_project ul li img{
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
}
.section_q.seventh_single .details{
	margin-bottom: 0px;
}
.section_q.seventh_single .customer{
	margin-bottom: 50px;
}
/*------------------------------------------------------------------*/ 
/*	23) SHORTCODES #1
/*------------------------------------------------------------------*/

/* FIRST SECTION */
.section_short_a{
	width: 100%;
	height: auto;
	float: left;
	margin-bottom: 150px;
	clear: both;
}
.section_short_a .img_holder{
	width: 50%;
	float: left;
	background-image: url(../img/shortcodes/1.jpg);
	min-height: 550px;
}
.section_short_a .img_info{
	width: 50%;
	float: right;
	clear: right;
	padding: 0px 50px 0px 50px;
	display: table;
	line-height: 1;
	height: 550px;
	
	-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
	-moz-box-sizing: border-box;    /* Firefox, other Gecko */
	box-sizing: border-box;         /* Opera/IE 8+ */
}
.section_short_a .img_info_in{
	display: table-cell;
	vertical-align: middle;
}
.section_short_a .img_info .title_holder{
	margin-bottom: 40px;
}
.section_short_a .img_info .title_holder h3{
	margin: 0px;
	font-size: 30px;
	letter-spacing: .5px;
	line-height: 1.2;
	color: #111;
	font-weight: 400;
	margin-bottom: 40px;
}
.section_short_a .img_info .title_holder h3 em{
	font-family: "Playfair Display";
	font-weight: 400;
}
.section_short_a .img_info .title_holder p{
	font-size: 16px;
	letter-spacing: 1px;
	line-height: 26px;
	color: #777;
}
.section_short_a .img_info a{
	font-size: 14px;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: #333;
	text-decoration: none;
}
.section_short_a .img_info a:hover i{
	margin-left: 10px;
}
/* SECOND SECTION */
.section_short_b{
	width: 100%;
	height: auto;
	float: left;
	clear: both;
	margin-bottom: 150px;
}
.section_short_b_in{
	float: left;
	width: 100%;
	border-bottom: 1px solid #eee;
	padding: 70px 0px;
}
.hideforanimation{
	opacity: 0;
	visibility: hidden;
}
.section_short_b_in_content{
	float: left;
	width: 100%;
	margin-bottom: 50px;
}
.section_short_b_in_content:last-child{
	margin-bottom: 0px;
}
.section_short_b_in .row_a{
	width: 25%;
	float: left;
	min-height: 1px;
}
.section_short_b_in .row_b{
	width: 75%;
	float: left;
	clear: right;
}
.section_short_b_in .row_b_a{
	width: 33.3333%;
	float: left;
}
.section_short_b_in .row_b_b{
	width: 66.6666%;
	float: left;
	margin-bottom: 30px;
}
.section_short_b_in .row_a h3{
	margin: 0px;
	font-size: 30px;
	letter-spacing: .5px;
	color: #333;
	font-weight: 400;
	line-height: 1;
}
.section_short_b_in .row_b_a span.place{
	font-size: 18px;
	letter-spacing: .5px;
	color: #333;
	line-height: 1;
	display: block;
	margin-bottom: 10px;
}
.section_short_b_in .row_b_a span.years{
	font-size: 16px;
	letter-spacing: 1px;
	color: #777;
	line-height: 1;
	display: block;
}
.section_short_b_in .row_b_b p{
	font-size: 16px;
	letter-spacing: 1px;
	line-height: 26px;
	color: #777;
}

.mypie{
	width: 33.3333%;
	float: left;
	padding-right: 60px;
	text-align: center;
	margin-bottom: 50px;
	
	-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
	-moz-box-sizing: border-box;    /* Firefox, other Gecko */
	box-sizing: border-box;         /* Opera/IE 8+ */
	
	transition: all .5s ease;
	-o-transition: all .5s ease;
	-ms-transition: all .5s ease;
	-moz-transition: all .5s ease;
	-webkit-transition: all .5s ease;
}

.pie_progress{
	width: 160px;/*width: 160px;*/
	display: inline-block;
	margin-bottom: 35px;
}
.mypie .pie_title_holder span.label{
	display: block;
	font-size: 18px;
	letter-spacing: 0.5px;
	line-height: 1;
	color: #333;
	margin-bottom: 20px;
}
.mypie .pie_title_holder span.info{
	font-size: 16px;
	line-height: 1.5;
	letter-spacing: 0.5px;
	color: #777;
}

.progress_bar .bar_bg,
.progress_bar .bar{
	-webkit-border-radius:2px;
	-moz-border-radius:2px;
	border-radius:2px;
}
.progress_bar{
	width:100%;
	margin-bottom:15px;
}
.progress_bar > span{
	margin:0px 0px 1px 0px;
	width:100%;
	display:block;
	text-align:left;
}
.progress_bar span.label{
	font-size:12px;
	text-transform:uppercase;
	font-weight:500;
	color:#333;
	letter-spacing:2px;
	line-height: 1;
}
.progress_bar span.number{
	float:right;
	font-size:12px;
	color:#777;
	letter-spacing: 2px;
	line-height: 1;
}
.progress_bar .bar_bg{
	background:#eee;
	width:100%;
	min-width:100%;
	position:relative;
	height:3px;
}
.progress_bar .bar_bg .bar_wrap{
	width:0px;
	height:100%;
	
	transition: all .5s ease;
	-o-transition: all .5s ease;
	-ms-transition: all .5s ease;
	-moz-transition: all .5s ease;
	-webkit-transition: all .5s ease;
}
.progress_bar .bar_bg .bar{
	height:100%;
	background:#333;
	overflow:hidden;
}
.progress_bar[data-bg-theme="dark"] .bar_bg .bar{background-color: #333 !important;}
.progress_bar[data-bg-theme="dark"] .bar_bg{background-color: #bbb !important;}

.progress_bar[data-bg-theme="red"] .bar_bg .bar{background-color: #ff0000 !important;}
.progress_bar[data-bg-theme="red"] .bar_bg{background-color: #ffbbbb !important;}

.progress_bar[data-bg-theme="blue"] .bar_bg .bar{background-color: #3651ff !important;}
.progress_bar[data-bg-theme="blue"] .bar_bg{background-color: #B7C1FF !important;}


/* THIRD SECTION */
.section_short_c{
	float: left;
	width: 100%;
	clear: both;
	margin-bottom: 150px;
}
.section_short_c .row_a{
	width: 65%;
	float: left;
}
.section_short_c h3{
	font-size: 30px;
	letter-spacing: .5px;
	line-height: 1;
	font-weight: 400;
	color: #333;
	margin-bottom: 34px;
}
.section_short_c .row_b{
	width: 35%;
	float: left;
	clear: right;
}
.section_short_c .row_a ul{
	list-style-type: none;
	margin: 0px;
}
.section_short_c .row_a ul li{
	margin: 0px;
	width: 50%;
	float: left;
	padding-left: 21px;
	
	-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
	-moz-box-sizing: border-box;    /* Firefox, other Gecko */
	box-sizing: border-box;         /* Opera/IE 8+ */
}
.section_short_c .row_a ul li span{
	font-size: 16px;
	letter-spacing: 1px;
	line-height: 36px;
	color: #777;
	position: relative;
}
.section_short_c .row_a ul li span:after{
	position: absolute;
	content: '';
	width: 10px;
	height: 1px;
	background-color: #777;
	right: 100%;
	top:50%;
	margin-top: -1px;
	margin-right: 11px;
}
.section_short_c .row_b .asd{
	margin-bottom: 36px;
}
.section_short_c .row_b .asd:last-child{
	margin-bottom: 0px;
}
.section_short_c .row_b .asd span{
	display: block;
	line-height: 1;
}
.section_short_c .row_b .asd span.label{
	font-size: 18px;
	letter-spacing: .5px;
	color: #333;
	margin-bottom: 10px;
}
.section_short_c .row_b .asd span.date{
	font-size: 16px;
	letter-spacing: 1px;
	color: #777;
}
/* FIVETH SECTION */
.section_short_e{
	clear: both;
	float: left;
	width: 100%;
	text-align: center;
	line-height: 1;
	margin-bottom: 150px;
	position: relative;
}
.section_short_e_bg{
	position: absolute;
	top: 0px;
	right: 0px;
	bottom: 0px;
	left: 0px;
	background-color: #3651ff;
	z-index: 10;
}
.section_short_e_content{
	z-index: 20;
	position: relative;
}
.section_short_e_content a{
	font-size: 14px;
	letter-spacing: 1px;
	color: #fff;
	text-transform: uppercase;
	text-decoration: none;
	padding: 75px 0px;
	display: block;
}
.section_short_e_content a span{
	transition: all .3s ease;
}
.section_short_e_content a:hover i{
	margin-left: 10px;
}
.section_short_e_content a:hover span{
	margin-left: 10px;
}
/* SIXTH SECTION */
.section_short_f{
	position: relative;
	clear: both;
	float: left;
	width: 100%;
	margin-bottom: 150px;
}
.owl-stage{
	cursor: e-resize
}
.section_short_f .member_holder{
	text-align: center;
	border: 1px solid #eee;
	width: 300px;
	
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}
.section_short_f .member_holder_in{
	padding: 50px;
}
.section_short_f .member_holder_in:last-child{
	padding: 30px;
	border-top: 1px solid #eee;
}
.section_short_f .owl-carousel .owl-item img{
	display: inline-block;
	width: auto;
}
.section_short_f .member_holder .member_img{
	margin-bottom: 28px;
}
.section_short_f .member_holder .member_img img{
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	border-radius: 100%;
}
.section_short_f .member_holder span.member_name{
	display: block;
	font-size: 18px;
	letter-spacing: .5px;
	line-height: 1;
	color: #333;
	margin-bottom: 11px;
}
.section_short_f .member_holder span.member_job{
	display: block;
	font-size: 12px;
	letter-spacing: 2px;
	line-height: 1;
	color: #777;
	text-transform: uppercase;
	margin-bottom: 25px;
}
.section_short_f .social_icons ul{
	list-style-type: none;
	margin: 0px;
	margin-left: -6px;
}
.section_short_f .social_icons ul li{
	display: inline-block;
	margin-left: 6px;
}
.section_short_f .social_icons ul li a{
	text-decoration: none;
	color: #999;
	
	transition: none;
	-o-transition: none;
	-ms-transition: none;
	-moz-transition: none;
	-webkit-transition: none;
}
.section_short_f .social_icons ul li a:hover{
	color: #111;
}
.section_short_f .member_holder span.phone{
	display: block;
	font-size: 12px;
	letter-spacing: 2px;
	color: #777;
}
.owl-carousel .owl-dot.active span{
	background-color: #3651ff;
}

.section_short_g{
	float: left;
	width: 100%;
	clear: both;
	margin-bottom: 150px;
}
.section_short_g_in{
	float: left;
	width: 100%;
	clear: both;
	margin-bottom: 100px;
}
.section_short_g_in:last-child{
	margin-bottom: 0px;
}
.section_short_g .collage_img{
	position: relative;
	float: left;
	width: 480px;
	margin-right: 50px;
	
	-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
	-moz-box-sizing: border-box;    /* Firefox, other Gecko */
	box-sizing: border-box;         /* Opera/IE 8+ */
}
.section_short_g .collage_img img{
	display: block;
	
	-webkit-box-shadow: 0px 0px 50px rgba(0,0,0,0.2);
	-moz-box-shadow: 0px 0px 50px rgba(0,0,0,0.2);
	box-shadow: 0px 0px 50px rgba(0,0,0,0.2);
}
.section_short_g .collage_img img.one{
	margin-left: 57px;
	z-index: 5;
	clear: both;
}
.section_short_g .collage_img img.two{
	position: relative;
	margin-left: 240px;
	margin-top: -280px;
	z-index: 10;
}
.section_short_g .collage_img img.three{
	position: relative;
	margin-top: -135px;
	z-index: 15;
}
.section_short_g .collage_title{
	width: 200px;
	float: right;
	padding: 0px 20px;
	display: table;
	
	-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
	-moz-box-sizing: border-box;    /* Firefox, other Gecko */
	box-sizing: border-box;         /* Opera/IE 8+ */
}
.section_short_g .collage_title_in{
	display: table-cell;
	vertical-align: middle;
}
.section_short_g .collage_title > span{
	display: block;
	font-size: 12px;
	letter-spacing: 5px;
	color: #777;
	line-height: 1;
	text-transform: uppercase;
	margin-bottom: 22px;
}
.section_short_g .collage_title h3{
	margin: 0px;
	font-size: 36px;
	letter-spacing: .5px;
	color: #333;
	line-height: 1.2;
	font-weight: 200;
	margin-bottom: 41px;
}
.section_short_g .collage_title h3 em{
	font-family: "Playfair Display";
	font-weight: 400;
}
.section_short_g .collage_title a{
	display: inline-block;
	font-size: 12px;
	letter-spacing: 2px;
	color: #333;
	line-height: 1;
	text-decoration: none;
	padding: 18px 33px;
	text-transform: uppercase;
	border: 2px solid #333;
	
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	
	transition: all .5s ease;
	-o-transition: all .5s ease;
	-ms-transition: all .5s ease;
	-moz-transition: all .5s ease;
	-webkit-transition: all .5s ease;
}
.section_short_g .collage_title a:hover{
	border-color: #333;
	background-color: #333;
	color: #fff;
}
.section_short_g.edited .section_short_g_in[data-img-pos="left"] .collage_img{
	margin-right: 0px;
	margin-bottom: 50px;
	float: inherit;
	width: 100%;
}
.section_short_g.edited .section_short_g_in[data-img-pos="left"] .collage_title{
	width: 100%;
	float: inherit;
	min-height: auto;
	text-align: center;
}
.section_short_g.edited .section_short_g_in[data-img-pos="right"] .collage_img{
	margin-right: 0px;
	float: inherit;
	width: 100%;
	margin-bottom: 50px;
}
.section_short_g.edited .section_short_g_in[data-img-pos="right"] .collage_title{
	width: 100%;
	float: inherit;
	min-height: auto;
	text-align: center;
}

.section_short_g_in[data-img-pos="left"] .collage_img{float: left; margin-right: 50px;width: auto;}
.section_short_g_in[data-img-pos="left"] .collage_title{float: right; margin-right: 0px;}

.section_short_g_in[data-img-pos="right"] .collage_img{float: right;margin-right: 0px; margin-left: 50px;}
.section_short_g_in[data-img-pos="right"] .collage_title{float: left;}

.section_short_i{
	float: left;
	clear: both;
	width: 100%;
	height: auto;
}
/*------------------------------------------------------------------*/ 
/*	24) GRIDBG
/*------------------------------------------------------------------*/
.photolane_fn_gridbg{
	width: 100%;
}
.photolane_fn_gridbg .overlay{
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0px;
	
	background-color: rgba(0,0,0,.9);
	/*background-image:url(../img/gridbg/1.jpg);*/
	background-size:cover;
	background-repeat: no-repeat;
	background-position: center center;
	background-attachment: fixed;
	
	z-index: 10;
}
.photolane_fn_gridbg .overlay > div{
	position: fixed;
	width: 100%;
	height: 100%;
	
	background-size:cover;
	background-repeat: no-repeat;
	background-position: center center;
	background-attachment: fixed;
	
	opacity: 0;
	visibility: hidden;
	
	z-index: 5;
	
	transform: scale(1,1);
	
	
	transition: opacity 1s ease, transform 4s ease;
	-o-transition: opacity 1s ease, transform 4s ease;
	-ms-transition: opacity 1s ease, transform 4s ease;
	-moz-transition: opacity 1s ease, transform 4s ease;
	-webkit-transition: opacity 1s ease, transform 4s ease;
}
.photolane_fn_gridbg .overlay .one{background-image:url(../img/gridbg/1.jpg);}
.photolane_fn_gridbg .overlay .two{background-image:url(../img/gridbg/2.jpg);}
.photolane_fn_gridbg .overlay .three{background-image:url(../img/gridbg/3.jpg);}
.photolane_fn_gridbg .overlay .four{background-image:url(../img/gridbg/4.jpg);}
.photolane_fn_gridbg .overlay .five{background-image:url(../img/gridbg/5.jpg);}
.photolane_fn_gridbg .overlay .six{background-image:url(../img/gridbg/6.jpg);}
.photolane_fn_gridbg .overlay .seven{background-image:url(../img/gridbg/7.jpg);}
.photolane_fn_gridbg .overlay .eight{background-image:url(../img/gridbg/8.jpg);}
.photolane_fn_gridbg .overlay .nine{background-image:url(../img/gridbg/9.jpg);}
.photolane_fn_gridbg .overlay .ten{background-image:url(../img/gridbg/10.jpg);}

.photolane_fn_gridbg .overlay > div.opened{
	opacity: 1;
	visibility: visible;
	
	-webkit-transform: scale(1.1,1.1);
	   -moz-transform: scale(1.1,1.1);
	    -ms-transform: scale(1.1,1.1);
	        transform: scale(1.1,1.1);
}

.photolane_fn_gridbg_in{
	width: 100%;
	height: auto;
	padding-left: 80px;
	float: left;
	position: relative;
	
	z-index: 50;
	
	-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
	-moz-box-sizing: border-box;    /* Firefox, other Gecko */
	box-sizing: border-box;         /* Opera/IE 8+ */
}
.photolane_fn_gridbg_in ul{
	margin: 0px;
	list-style-type: none;
	margin-left: -3.5%;
	clear: both;
}
.photolane_fn_gridbg_in ul li{
	margin: 0px;
	width: 21.5%;
	float: left;
	margin-left: 3.5%;
	margin-bottom: 3.5%;
	position: relative;
	border: 1px solid rgba(255,255,255,.2);
	
	-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
	-moz-box-sizing: border-box;    /* Firefox, other Gecko */
	box-sizing: border-box;         /* Opera/IE 8+ */
}
.photolane_fn_gridbg_in ul li:hover{
	background-color: rgba(17,17,17,.9);
	border-color: rgba(0,0,0,.2);
}
.photolane_fn_gridbg_in ul li > img{
	width: 100%;
	height: 100%;
	max-width: 100%;
	min-width: 100%;
	min-height: 100%;
	max-height: 100%;
	position: relative;
}
.photolane_fn_gridbg_in ul li .gridli{
	width: 100%;
	height: auto;
	min-height: 250px;
	
	background-size:cover;
	background-repeat: no-repeat;
	background-position: center center;
}
.photolane_fn_gridbg_in .aaa{
	padding: 50px;
	width: 100%;
	float: left;
	clear: both;
	
	-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
	-moz-box-sizing: border-box;    /* Firefox, other Gecko */
	box-sizing: border-box;         /* Opera/IE 8+ */
}

.photolane_fn_gridbg_in .img_name{
	position: absolute;
	bottom: 30px;
	left: 30px;
	padding-right: 30px;
	z-index: 20;
	background-color: transparent;
	
	transition: all .5s ease;
	-o-transition: all .5s ease;
	-ms-transition: all .5s ease;
	-moz-transition: all .5s ease;
	-webkit-transition: all .5s ease;
}
.photolane_fn_gridbg_in .img_name a{
	color: #fff;
	display: inline-block;
	text-decoration: none;
	
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
}
.photolane_fn_gridbg_in .img_name span{
	font-size: 24px;
	letter-spacing: .5px;
	color: #fff;
	padding: 2px 8px;
	display: inline-block;
	
	transition: all .5s ease;
	-o-transition: all .5s ease;
	-ms-transition: all .5s ease;
	-moz-transition: all .5s ease;
	-webkit-transition: all .5s ease;
}
.photolane_fn_gridbg_in ul li .gridli:hover .img_name a:hover{
	background-color: rgba(255,255,255,.1);
}
.photolane_fn_gridbg_in .img_icons{
	position: absolute;
	left: 40px;
	top: 40px;
	line-height: 0;
	z-index: 20;
	display: block;
	
	opacity: 0;
	visibility: hidden;
	
	transition: all .5s ease;
	-o-transition: all .5s ease;
	-ms-transition: all .5s ease;
	-moz-transition: all .5s ease;
	-webkit-transition: all .5s ease;
}
.photolane_fn_gridbg_in ul li .gridli:hover .img_icons{
	opacity: 1;
	visibility: visible;
}
.photolane_fn_gridbg_in .img_icons a{
	color: #fff;
	text-decoration: none;
	display: inline-block;
	margin-right: 11px;
}
.photolane_fn_gridbg_in .img_icons a:last-child{
	margin-right: 0px;
}
.photolane_fn_gridbg_in .img_icons svg{
	fill: currentcolor;
	width: 20px;
	height: 20px;
	display: block;
}
/*------------------------------------------------------------------*/ 
/*	25) HALFSLIDE
/*------------------------------------------------------------------*/
.photolane_fn_halfslide{
	width: 100%;
	float: left;
	clear: both;
	height: auto;
}
.photolane_fn_halfslide .half_a{
	width: 33.3333%;
	float: left;
	height: auto;
	position: relative;
	padding-top: 40px;
	
	-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
	-moz-box-sizing: border-box;    /* Firefox, other Gecko */
	box-sizing: border-box;         /* Opera/IE 8+ */
}
.photolane_fn_halfslide .half_b{
	width: 66.6666%;
	float: left;
	height: auto;
	position: relative;
}

a.all_projects{
	display: inline-block;
	font-size: 15px;
	letter-spacing: 1px;
	color: #777;
	text-decoration: none;
	text-transform: uppercase;
	position: relative;
	padding-right: 20px;
}
a.all_projects i{
	font-size: 20px;
	position: absolute;
	top: 0px;
	right: -10px;
	line-height: 0;
}

.photolane_fn_halfslide .half_b .flexslider ul.slides li{
	position: relative;
}
.photolane_fn_halfslide .half_b .flexslider .slides_bg{
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	position: absolute;
	top:0px;
	right: 0px;
	bottom: 0px;
	left: 0px;
	z-index: 10;
}

.photolane_fn_halfslide .half_b .flexslider .slides_bg.one{background-image: url(../img/halfslide/1.jpg);}
.photolane_fn_halfslide .half_b .flexslider .slides_bg.two{background-image: url(../img/halfslide/2.jpg);}
.photolane_fn_halfslide .half_b .flexslider .slides_bg.three{background-image: url(../img/halfslide/3.jpg);}
.photolane_fn_halfslide .half_b .flexslider .slides_bg.four{background-image: url(../img/halfslide/4.jpg);}
.photolane_fn_halfslide .half_b .flexslider .slides_bg.five{background-image: url(../img/halfslide/5.jpg);}
.photolane_fn_halfslide .half_b .flexslider .slides_bg.six{background-image: url(../img/halfslide/6.jpg);}

.photolane_fn_halfslide .half_b .flexslider .img_icons{
	position: absolute;
	bottom: 39px;
	right: 40px;
	line-height: 0;
	z-index: 20;
	display: block;
}
.photolane_fn_halfslide .half_b .flexslider .img_icons a{
	color: #fff;
	text-decoration: none;
	display: inline-block;
	margin-right: 11px;
}
.photolane_fn_halfslide .half_b .flexslider .img_icons a:last-child{
	margin-right: 0px;
}
.photolane_fn_halfslide .half_b .flexslider .img_icons svg{
	fill: currentcolor;
	width: 20px;
	height: 20px;
	display: block;
}
.photolane_fn_halfslide .half_b .flexslider .title_holder{
	position: absolute;
	width: 50%;
	right: 100%;
	padding-right: 100px;
	bottom: 34px;
	padding-left: 39px;
	
	-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
	-moz-box-sizing: border-box;    /* Firefox, other Gecko */
	box-sizing: border-box;         /* Opera/IE 8+ */
}
.photolane_fn_halfslide .half_b .flexslider .title_holder h3{
	font-size: 36px;
	letter-spacing: .5px;
	color: #333;
	line-height: 1;
	font-weight: 400;
	margin-bottom: 0px;
}
.photolane_fn_halfslide .half_b .flexslider .flex-direction-nav a{
	background-color: transparent;
	bottom: 36px;
	top: auto;
	width: 30px;
	height: 30px;
	margin: -15px 0px 0px;
	line-height: 30px;
	color: #333;
}
.photolane_fn_halfslide .half_b .flexslider .flex-direction-nav .flex-prev{
	right: 100%;
	left: auto;
	margin-right: 64px;
}
.photolane_fn_halfslide .half_b .flexslider .flex-direction-nav .flex-next{
	right: 100%;
	left: auto;
	margin-right: 30px;
}
.photolane_fn_halfslide .half_b .flexslider .flex-direction-nav a:before{
	color: #333;
	font-size: 36px;
	font-weight: inherit;
}
/*------------------------------------------------------------------*/ 
/*	26) NOTIFICATION
/*------------------------------------------------------------------*/
.photolane_fn_notification{
	width: 100%;
	position: relative;
	margin-bottom: 20px;
	clear: both;
	
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
}
.photolane_fn_notification > .inner{
	width: 100%;
	padding: 50px;
	min-height: 170px;
	border: 1px solid #e2e6e7;
	
	-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
	-moz-box-sizing: border-box;    /* Firefox, other Gecko */
	box-sizing: border-box;         /* Opera/IE 8+ */
}
.photolane_fn_notification > .inner > i{
	display: inline-block;
	padding: 17px 19px;
	background-color: transparent;
	font-size: 24px;
	line-height: 1.5;
	
	float: left;
	
	margin-right: 30px;
	margin-bottom: 10px;
	
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	border-radius: 100%;
}
.photolane_fn_notification .title_holder h3{
	margin: 0px;
	font-size: 16px;
	letter-spacing: 1px;
	color: #111;
	font-weight: 500;
	line-height: 1;
	text-transform: uppercase;
	margin-bottom: 15px;
}
.photolane_fn_notification .title_holder p{
	font-size: 14px;
	line-height: 24px;
	letter-spacing: 1px;
	color: #777;
}
.photolane_fn_notification span.closer{
	display: inline-block;
	position: absolute;
	right: 20px;
	top: 20px;
	cursor: pointer;
	color: #777;
}
.photolane_fn_notification.notice > .inner > i{
	color: #a47503;
	background-color: #ffc22f;
}
.photolane_fn_notification.success > .inner > i{
	color: #558502;
	background-color: #9bdc7b;
}
.photolane_fn_notification.alert > .inner > i{
	color: #bf270e;
	background-color: #fd725b;
}
.photolane_fn_notification.info > .inner > i{
	color: #0787d4;
	background-color: #68d8fd;
}
/*------------------------------------------------------------------*/ 
/*	27) ACCORDION 
/*------------------------------------------------------------------*/
.accordion_title_holder h3{
	margin: 0px;
	font-size: 30px;
	line-height: 1.5;
	letter-spacing: 0px;
	color: #333;
	font-weight: 400;
	margin-bottom: 40px;
}
.photolane_fn_accordion{
	position: relative;
	margin: 0;
	padding: 0;
	list-style: none;
	margin-bottom: 20px;
	clear:both;
	
	-webkit-perspective:500px;
	-moz-perspective:500px;
	perspective:500px;
}
.photolane_fn_accordion .accordion_in{
	position: relative;
	z-index: 10;
	overflow: hidden;
	margin-bottom:5px;
}
.photolane_fn_accordion .accordion_in .acc_head{
	position: relative;
	background-color: transparent;
	cursor: pointer;
	border: 1px solid #eee;
	display: table;
	width: 100%;
	
	-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
	-moz-box-sizing: border-box;    /* Firefox, other Gecko */
	box-sizing: border-box;         /* Opera/IE 8+ */
	
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
}
.photolane_fn_accordion .accordion_in .acc_head span{
	font-size: 16px;
	line-height: 1.5;
	letter-spacing: 0.5px;
	color: #333;
	padding: 16px 20px;
	display: block;
}
.photolane_fn_accordion .accordion_in .acc_head i{
	display: table-cell;
	vertical-align: middle;
	width: 10px;
	padding: 0px 15px;
	border-left: 1px solid #eee;
	font-size: 16px;
	color: #777;
}
.photolane_fn_accordion .accordion_in .acc_head i:before{
	transition: transform .5s ease;
	-o-transition: transform .5s ease;
	-ms-transition: transform .5s ease;
	-moz-transition: transform .5s ease;
	-webkit-transition: transform .5s ease;
}
.photolane_fn_accordion .accordion_in.acc_active .acc_head i:before{
	-webkit-transform: rotate(-180deg);
	   -moz-transform: rotate(-180deg);
	    -ms-transform: rotate(-180deg);
	        transform: rotate(-180deg);
}
.photolane_fn_accordion .accordion_in .acc_content{
	color: #333;
	padding: 20px;
	border: 1px solid #eee;
	border-top:none;
	position: relative;
	float: left;
	
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
}
.photolane_fn_accordion .accordion_in .acc_content .acc_img{
	float: left;
	margin-right: 30px;
}
.photolane_fn_accordion .accordion_in .acc_content p{
	font-size: 16px;
	line-height: 1.5;
	letter-spacing: 0.5px;
	color: #777;
	display: block;
	
	-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
	-moz-box-sizing: border-box;    /* Firefox, other Gecko */
	box-sizing: border-box;         /* Opera/IE 8+ */
}
.photolane_fn_accordion .accordion_in.acc_active > .acc_content {
  	display: block;
}
/*------------------------------------------------------------------*/ 
/*	28) TOGGLE 
/*------------------------------------------------------------------*/
.photolane_fn_toggle_wrap{
	margin-bottom: 20px;
	clear:both;
	
	-webkit-perspective:500px;
	-moz-perspective:500px;
	perspective:500px;
}
.photolane_fn_toggle_wrap .photolane_fn_toggle{
	position: relative;
	margin: 0;
	padding: 0;
	list-style: none;
	z-index: 10;
	overflow: hidden;
	margin-bottom:5px;
}
.photolane_fn_toggle_wrap .photolane_fn_toggle .tog_head{
	position: relative;
	background-color: #eee;
	cursor: pointer;
	border: 1px solid #e5e5e5;
	display: table;
	width: 100%;
	
	-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
	-moz-box-sizing: border-box;    /* Firefox, other Gecko */
	box-sizing: border-box;         /* Opera/IE 8+ */
	
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
}
.photolane_fn_toggle_wrap .photolane_fn_toggle .tog_head span{
	font-size: 16px;
	line-height: 1.5;
	letter-spacing: 0.5px;
	color: #333;
	padding: 16px 20px;
	display: block;
}
.photolane_fn_toggle_wrap .photolane_fn_toggle .tog_head i{
	display: table-cell;
	vertical-align: middle;
	width: 10px;
	padding: 0px 15px;
	border-left: 1px solid #e5e5e5;
	font-size: 16px;
	color: #777;
}
.photolane_fn_toggle_wrap .photolane_fn_toggle .tog_head i:before{
	transition: transform .5s ease;
	-o-transition: transform .5s ease;
	-ms-transition: transform .5s ease;
	-moz-transition: transform .5s ease;
	-webkit-transition: transform .5s ease;
}
.photolane_fn_toggle_wrap .photolane_fn_toggle.open .tog_head i:before{
	-webkit-transform: rotate(-180deg);
	   -moz-transform: rotate(-180deg);
	    -ms-transform: rotate(-180deg);
	        transform: rotate(-180deg);
}
.photolane_fn_toggle_wrap .photolane_fn_toggle .tog_content{
	color: #333;
	padding: 20px;
	border: 1px solid #e5e5e5;
	border-top:none;
	position: relative;
	display: none;
	float: left;
	
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
}
.photolane_fn_toggle_wrap .photolane_fn_toggle .tog_content .tog_img{
	float: left;
	margin-right: 30px;
}
.photolane_fn_toggle_wrap .photolane_fn_toggle .tog_content p{
	font-size: 16px;
	line-height: 1.5;
	letter-spacing: 0.5px;
	color: #777;
	display: block;
	
	-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
	-moz-box-sizing: border-box;    /* Firefox, other Gecko */
	box-sizing: border-box;         /* Opera/IE 8+ */
}
/*------------------------------------------------------------------*/ 
/*	29) TABS
/*------------------------------------------------------------------*/
.photolane_fn_tabs ul.etabs{
	list-style-type:none;
}
.photolane_fn_tabs ul.etabs li{
	display:inline-block;
	margin-right:-5px;
}
.photolane_fn_tabs ul.etabs li a{
	text-decoration: none;
	font-size: 16px;
	line-height: 1.5;
	letter-spacing: 0.5px;
	color: #333;
	background-color: transparent;
	display: block;
	padding: 10px 20px;
	border: 1px solid #eee;
	margin-bottom: -1px;
}
.photolane_fn_tabs ul.etabs li a.active{
	border-bottom-color:#fff;
	border-top-color: #3651ff;
}
.photolane_fn_tabs .tabcontent{
	display: block;
	padding: 30px;
	border: 1px solid #eee;
	background: #fff;
	
	font-size: 16px;
	line-height: 1.5;
	letter-spacing: 0.5px;
	color: #777;
}

/* position */
.photolane_fn_tabs[data-x-pos="center"] ul.etabs{text-align:center;}
.photolane_fn_tabs[data-x-pos="right"] ul.etabs{text-align:right;}
.photolane_fn_tabs[data-x-pos="right"] ul.etabs li{margin-right:0px; margin-left:-5px;}

/* skin */
.photolane_fn_tabs[data-skin="dark"] ul.etabs li a{
	background:#333;
	color:#fff;
	border:none;
}
.photolane_fn_tabs[data-skin="dark"] ul.etabs li a.active{
	background:#222;
}
.photolane_fn_tabs[data-skin="dark"] .tabcontent{
	border:none;
	background:#222;
	color:#FFF;
}
/*------------------------------------------------------------------*/ 
/*	30) IMAGE COMPARISON (Before/After)
/*------------------------------------------------------------------*/
.twentytwenty-wrapper{
	z-index:10;
	position:relative;
}
.twentytwenty-horizontal .twentytwenty-handle:before, .twentytwenty-horizontal .twentytwenty-handle:after, .twentytwenty-vertical .twentytwenty-handle:before, .twentytwenty-vertical .twentytwenty-handle:after {
	content: "";
	display: block;
	background: #fff;
	position: absolute;
	z-index: 30;
	
	-webkit-box-shadow: 0px 0px 12px rgba(51, 51, 51, 0.5);
	-moz-box-shadow: 0px 0px 12px rgba(51, 51, 51, 0.5);
	box-shadow: 0px 0px 12px rgba(51, 51, 51, 0.5);
}
.twentytwenty-overlay{
	position: absolute;
	top: 0;
	width: 100%;
	height: 100%;
}
.twentytwenty-before-label, .twentytwenty-after-label{
	position: absolute;
	top: 0; 
	color:#fff;
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-weight: 500;
}
.twentytwenty-before-label, .twentytwenty-after-label, .twentytwenty-overlay{
	-webkit-transition-duration: 0.5s;
	-moz-transition-duration: 0.5s;
	transition-duration: 0.5s;
}
.twentytwenty-before-label, .twentytwenty-after-label{
	-webkit-transition-property: opacity;
	-moz-transition-property: opacity;
	transition-property: opacity;
}
.twentytwenty-left-arrow, .twentytwenty-right-arrow, .twentytwenty-up-arrow, .twentytwenty-down-arrow {
	width: 0;
	height: 0;
	border: 6px inset transparent;
	position: absolute;
}
.twentytwenty-left-arrow, .twentytwenty-right-arrow{
	top: 50%;
	margin-top: -6px;
}
.twentytwenty-up-arrow, .twentytwenty-down-arrow {
	left: 50%;
	margin-left: -6px;
}
.twentytwenty-container{
	z-index: 0;
	overflow: hidden;
	position: relative;
	
	-webkit-user-select: none;
	-moz-user-select: none;
	
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box;
}
.twentytwenty-container img {
	max-width: 100%;
	position: absolute;
	top: 0;
	display: block;
}
.twentytwenty-container.active .twentytwenty-overlay, .twentytwenty-container.active :hover.twentytwenty-overlay {
	background: rgba(0, 0, 0, 0);
}
.twentytwenty-container.active .twentytwenty-overlay .twentytwenty-before-label,
.twentytwenty-container.active .twentytwenty-overlay .twentytwenty-after-label, .twentytwenty-container.active :hover.twentytwenty-overlay .twentytwenty-before-label,
.twentytwenty-container.active :hover.twentytwenty-overlay .twentytwenty-after-label {
	opacity: 0;
}
.twentytwenty-container * {
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box;
}
.twentytwenty-before-label {
	opacity: 0;
}
.twentytwenty-after-label {
	opacity: 0;
}
.twentytwenty-horizontal .twentytwenty-before-label{
	left: 15px;
	top:auto;
	bottom:10px;
	right:auto;
}
.twentytwenty-horizontal .twentytwenty-after-label{
	right: 15px;
	top:auto;
	bottom:10px;
	left:auto;
}
.twentytwenty-vertical .twentytwenty-before-label{
	top: 10px;
	left: 15px;
}
.twentytwenty-vertical .twentytwenty-after-label{
	bottom: 10px;
	top:auto;
	left:15px;
}
.twentytwenty-overlay{
	-webkit-transition-property: background;
	-moz-transition-property: background;
	transition-property: background;
	background: rgba(0, 0, 0, 0);
	z-index: 25;
}
.twentytwenty-overlay:hover{
	background: rgba(0, 0, 0, 0.7);
}
.twentytwenty-overlay:hover .twentytwenty-after-label{
 	opacity: 1;
}
.twentytwenty-overlay:hover .twentytwenty-before-label{
	opacity: 1;
}
.twentytwenty-before{
	z-index: 20;
}
.twentytwenty-after{
	z-index: 10;
}
.twentytwenty-handle{
	height: 30px;
	width: 30px;
	position: absolute;
	left: 50%;
	top: 50%;
	margin-left: -15px;
	margin-top: -15px;
	background:#fff;
	
	-webkit-border-radius: 1000px;
	-moz-border-radius: 1000px;
	border-radius: 1000px;
	
	-webkit-box-shadow: 0px 0px 12px rgba(51, 51, 51, 0.5);
	-moz-box-shadow: 0px 0px 12px rgba(51, 51, 51, 0.5);
	box-shadow: 0px 0px 12px rgba(51, 51, 51, 0.5);
	
	z-index: 40;
	cursor: pointer;
}
.twentytwenty-left-arrow{
	border-right: 6px solid #111;
	left: 50%;
	margin-left: -14px;
}
.twentytwenty-right-arrow{
	border-left: 6px solid #111;
	right: 50%;
	margin-right: -14px;
}
.twentytwenty-up-arrow{
	border-bottom: 6px solid #111;
	top: 50%;
	margin-top: -14px;
}
.twentytwenty-down-arrow{
	border-top: 6px solid #111;
	bottom: 50%;
	margin-bottom: -14px;
}
/*------------------------------------------------------------------*/ 
/*	31) ROW SPAN
/*------------------------------------------------------------------*/
.photolane_fn_row_span{
	clear: both;
	float: left;
	width: 100%;
	height: auto;
}
.photolane_fn_row_span span.label{
	font-weight: 700;
	font-size: 18px;
	letter-spacing: .5px;
	color: #333;
	display: block;
	margin: 10px 0px;
}
.photolane_fn_row_span p{
	font-size: 16px;
	line-height: 1.7;
	letter-spacing: .5px;
	color: #777;
}
/*------------------------------------------------------------------*/ 
/*	32) TESTIMONIALS
/*------------------------------------------------------------------*/
.photolane_fn_testimonails{
	clear: both;
	width: 100%;
	height: auto;
	position: relative;
}
.photolane_fn_testimonails .testimonials{
	max-width: 600px;
	margin: 0px auto;
}
.photolane_fn_testimonails .item{
	text-align: center;
	width: 100%;
	padding: 0px 10px;
	
	-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
	-moz-box-sizing: border-box;    /* Firefox, other Gecko */
	box-sizing: border-box;         /* Opera/IE 8+ */
}
.photolane_fn_testimonails .item img{
	width: 100px;
	height: 100px;
	display: inline-block;
	margin-bottom: 20px;
	
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	border-radius: 100%;
}
.photolane_fn_testimonails .item p{
	font-size: 16px;
	line-height: 1.7;
	letter-spacing: .5px;
	color: #777;
	font-style: italic;
	margin-bottom: 17px;
}
.photolane_fn_testimonails .item h3{
	font-size: 18px;
	letter-spacing: .5px;
	color: #333;
	margin-bottom: 1px;
	font-weight: 400;
	line-height: 1;
}
.photolane_fn_testimonails .item span{
	font-size: 12px;
	line-height: 1;
	letter-spacing: 2px;
	color: #777;
	text-transform: uppercase;
}
.photolane_fn_testimonails .prev_next_btn a{
	position: absolute;
	top: 50%;
	font-size: 40px;
	color: #777;
	margin-top: -30px;
}
.photolane_fn_testimonails .prev_next_btn a.prev{
	left: 0px;
}
.photolane_fn_testimonails .prev_next_btn a.next{
	right: 0px;
}
.photolane_fn_testimonails .prev_next_btn a i:before{
	width: auto;
	margin-right: 0px;
	margin-left: 0px;
}
/*------------------------------------------------------------------*/ 
/*	33) TEAM CAROUSEL
/*------------------------------------------------------------------*/
.photolane_fn_team_carousel{
	float: left;
	width: 100%;
	clear: both;
	height: auto;
}
.photolane_fn_team_carousel .box_wrap{
	padding: 40px;
	width: 400px;
	border: 1px solid #eee;
	
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}
.photolane_fn_team_carousel .box_wrap .box{
	width: 100%;
	height: auto;
}
.photolane_fn_team_carousel .box_wrap .box .info_title{
	width: 100%;
	height: auto;
	min-height: 100px;
	display: table;
	position: relative;
	margin-bottom: 23px;
}
.photolane_fn_team_carousel .box_wrap .box .info_title .img{
	float: left;
	width: 100px;
	height: 100px;
}
.photolane_fn_team_carousel .box_wrap .box .info_title .img img{	
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	border-radius: 100%;
}
.photolane_fn_team_carousel .box_wrap .box .info_title .title_holder{
	display: table-cell;
	vertical-align: middle;
}
.photolane_fn_team_carousel .box_wrap .box .info_title .title_holder h3{
	font-size: 18px;
	letter-spacing: .5px;
	color: #333;
	margin-bottom: 6px;
	font-weight: 400;
	line-height: 1;
}
.photolane_fn_team_carousel .box_wrap .box .info_title .title_holder span{
	font-size: 12px;
	line-height: 1;
	letter-spacing: 2px;
	color: #777;
	text-transform: uppercase;
}
.photolane_fn_team_carousel .box_wrap .box .info_content{
	width: 100%;
	height: auto;
}
.photolane_fn_team_carousel .box_wrap .box .info_content p{
	font-size: 16px;
	line-height: 1.7;
	letter-spacing: .5px;
	color: #777;
	font-style: italic;
}
/*------------------------------------------------------------------*/ 
/*	34) CONTACT (NEW PAGE)
/*------------------------------------------------------------------*/
.photolane_fn_contact{
	width: 100%;
	height: auto;
	float: left;
	padding: 100px 0px;
}
.photolane_fn_contact_form_wrap{
	width: 100%;
	height: auto;
	display: table;
}
.photolane_fn_contact_form_wrap > .contact_form{
	display: table-cell;
	vertical-align: middle;
}
.contact_form .empty_notice{
	color: #F00;
	display: none;
	position: relative;
}
.contact_form .returnmessage{
	display: none;
	position: relative;
}
.contact_form .returnmessage span{
	color: #009900;
	display: block;
}
.contact_form .returnmessage span.contact_error{
	color: #f00;
}
.photolane_fn_form{
	position: relative;
	width: 100%;
	margin: 0px auto;
	padding: 30px 0px;
}
.photolane_fn_form{
	width: 100%;
	height: auto;
}
.book_online label span{
	color: #FF0004;
}
.photolane_fn_form h3{
	font-size: 48px;
    letter-spacing: .5px;
    color: #111;
	margin: 0px;
    font-weight: 400;
	line-height: 1;
	margin-bottom: 10px;
}
.photolane_fn_form > p{
	font-size: 15px;
    line-height: 1.6;
    letter-spacing: 1px;
    color: #777;
	display: block;
	margin-bottom: 50px;
	max-width: 500px;
}
.photolane_fn_form form input[type="text"]{
	width:100%;
	min-width: 100%;
}
.photolane_fn_form form input[type="text"],
.photolane_fn_form form textarea{
	letter-spacing: 1px;
	font-size: 14px;
	font-weight: 400;
	color: #111;
	background-color: #fff !important;
	border-color: #eee !important;
}
.photolane_fn_form form input[type="text"]:focus,
.photolane_fn_form form input[type="text"]:hover,
.photolane_fn_form form textarea:focus,
.photolane_fn_form form textarea:hover{
	border-color: #111 !important;
}
.photolane_fn_form form .your-message{
	clear: both;
}
.photolane_fn_form form input,
.photolane_fn_form form textarea{
	background-color: #fff;
	border: 1px solid #eee;
}
.photolane_fn_form form input:focus,
.photolane_fn_form form textarea:focus{
	border: 1px solid #eee;
}
.photolane_fn_form form > div{
	margin-bottom: 20px;
}
.photolane_fn_form form :last-child{
	margin-bottom: 0px;
}
.photolane_fn_form form input[type="button"]{
	font-weight: 500;
	text-transform: uppercase;
	color: #111;
	letter-spacing: 2px;
	line-height: 1;
	padding: 18px 40px;
	font-size: 12px;
	display: inline-block;
	background-color: #fff;
	border: 2px solid #3651ff;
}
.photolane_fn_form form input[type="button"]:hover{
	background-color: #3651ff;
	color: #fff;
}
.photolane_fn_contact .google_map{
	width: 100%;
	height: 700px;
}
.photolane_fn_contact .google_map iframe{
	max-width: 100%;
	min-width: 100%;
	min-height: 100%;
	max-height: 100%;
	display: block;
	position: relative; /* IE needs a position other than static */
    pointer-events: none;
}
.photolane_fn_contact .google_map iframe.clicked{
    pointer-events: auto;
}
/*------------------------------------------------------------------*/ 
/*	35) BLOG (NEW PAGE)
/*------------------------------------------------------------------*/
.photolane_fn_blog_wrap{
	width: 100%;
	height: auto;
	padding: 100px 0px;
	float: left;
	
	-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
	-moz-box-sizing: border-box;    /* Firefox, other Gecko */
	box-sizing: border-box;         /* Opera/IE 8+ */
}
.photolane_fn_blog_list{
	width: 100%;
	height: auto;
	margin-bottom: 70px;
	float: left;
}
.photolane_fn_blog_list:last-child{
	margin-bottom: 0px;
}
.photolane_fn_blog_list .img{
	width: 50%;
	height: auto;
	float: left;
}
.photolane_fn_blog_list .img a{
	display: block;
	text-decoration: none;
}
.photolane_fn_blog_list .img img{
	border-radius: 3px;
}
.photolane_fn_blog_list .blog_wrap{
	width: 50%;
	float: left;
	display: table;
	padding: 0 5%;
	height: 426px;
	
	-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
	-moz-box-sizing: border-box;    /* Firefox, other Gecko */
	box-sizing: border-box;         /* Opera/IE 8+ */
}
.photolane_fn_blog_wrap .blog{
	display: table-cell;
	vertical-align: middle;
}
.photolane_fn_blog_wrap .title_holder{
	margin-bottom: 20px;
	width: 100%;
	height: auto;
}
.photolane_fn_blog_wrap .title_holder h3{
	line-height: 1.2;
    font-weight: 400;
}
.photolane_fn_blog_wrap .title_holder h3 a{
	font-size: 30px;
    letter-spacing: 1px;
    color: #111;
	margin-bottom: 20px;
	text-decoration: none;
}
.photolane_fn_blog_wrap .title_holder span{
	font-size: 14px;
	color: #3651ff;
	margin-left: -4px;
}
.photolane_fn_blog_wrap .title_holder span a{
	color: #3651ff;
    text-decoration: none;
    border-bottom: 1px solid transparent;
	padding-bottom: 3px;
	margin: 0px 4px;
	
    transition: all .5s ease;
    -o-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -webkit-transition: all .5s ease;
}
.photolane_fn_blog_wrap .title_holder a:hover{
	border-bottom-color: #3651ff;
}
.photolane_fn_blog_wrap .blog .view_all a{
	display: inline-block;
    font-size: 15px;
    letter-spacing: 1px;
    color: #777;
    text-decoration: none;
    text-transform: uppercase;
    position: relative;
    padding-right: 20px;
}
.photolane_fn_blog_wrap .blog .view_all a i{
	font-size: 20px;
    position: absolute;
    top: 0px;
    right: -10px;
    line-height: 0;
}
.photolane_fn_blog_wrap .blog .view_all a:hover i{
	right: -20px;
}
.photolane_fn_blog_wrap .info{
	width: 100%;
	height: auto;
	margin-bottom: 25px;
}
.photolane_fn_blog_wrap .info p{
	font-size: 16px;
    line-height: 1.6;
    letter-spacing: 1px;
    color: #777;
}
.photolane_fn_blog_wrap .next a{
	display: inline-block;
    font-size: 15px;
    letter-spacing: 1px;
    color: #777;
    text-decoration: none;
    text-transform: uppercase;
    position: relative;
    padding-right: 20px;
}
.photolane_fn_blog_wrap .next a i{
	font-size: 20px;
    position: absolute;
    top: 0px;
    right: -10px;
    line-height: 0;
}
.photolane_fn_blog_wrap .next a:hover i{
	right: -20px;
}
.photolane_fn_blog_wrap .image{
	width: 100%;
	height: auto;
	margin-bottom: 30px;
}
.photolane_fn_blog_wrap .info p{
	display: block;
	margin-bottom: 15px;
}
.photolane_fn_blog_wrap .info p:last-child{
	margin-bottom: 0px;
}
.photolane_fn_blog_wrap .next{
	clear: both;
}
.photolane_fn_blog_list[data-img-pos="left"] .img{float: left;}
.photolane_fn_blog_list[data-img-pos="left"] .blog_wrap{float: left;}

.photolane_fn_blog_list[data-img-pos="right"] .img{float: right;}
.photolane_fn_blog_list[data-img-pos="right"] .blog_wrap{float: left;}

/* second blog page */
.photolane_fn_secondblog_list > .inner,
.photolane_fn_secondblog_list{
	width: 100%;
	float: left;
	clear: both;
	height: auto;
}
.photolane_fn_secondblog_list ul{
	list-style-type: none;
	margin: 0px;
	margin-left: -70px;
}
.photolane_fn_secondblog_list ul li{
	width: 50%;
	float: left;
	padding-left: 70px;
	margin-bottom: 70px;
	
	-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
	-moz-box-sizing: border-box;    /* Firefox, other Gecko */
	box-sizing: border-box;         /* Opera/IE 8+ */
}
.photolane_fn_secondblog_list ul li .item{
	width: 100%;
	float: left;
}
.photolane_fn_secondblog_list .item .img_holder{
	margin-bottom: 55px;
}
.photolane_fn_secondblog_list .item .img_holder a{
	display: block;
    text-decoration: none;
}
.photolane_fn_secondblog_list .item .img_holder img{
	border-radius: 3px;
}
.photolane_fn_secondblog_list .item .title_holder{
	margin-bottom: 20px;
	width: 100%;
	height: auto;
}
.photolane_fn_secondblog_list .item .title_holder h3{
	line-height: 1.2;
    font-weight: 400;
}
.photolane_fn_secondblog_list .item .title_holder h3 a{
	font-size: 30px;
    letter-spacing: 1px;
    color: #111;
	margin-bottom: 20px;
	text-decoration: none;
}
.photolane_fn_secondblog_list .item .title_holder span{
	font-size: 14px;
	color: #3651ff;
	margin-left: -4px;
}
.photolane_fn_secondblog_list .item .title_holder span a{
	color: #3651ff;
    text-decoration: none;
    border-bottom: 1px solid transparent;
	padding-bottom: 3px;
	margin: 0px 4px;
	
    transition: all .5s ease;
    -o-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -webkit-transition: all .5s ease;
}
.photolane_fn_secondblog_list .item .title{
	margin-bottom: 20px;
}
.photolane_fn_secondblog_list .item .title_holder a:hover{
	border-bottom-color: #3651ff;
}
.photolane_fn_secondblog_list .item .view_all a{
	display: inline-block;
    font-size: 15px;
    letter-spacing: 1px;
    color: #777;
    text-decoration: none;
    text-transform: uppercase;
    position: relative;
    padding-right: 20px;
}
.photolane_fn_secondblog_list .item .view_all a i{
	font-size: 20px;
    position: absolute;
    top: 0px;
    right: -10px;
    line-height: 0;
}
.photolane_fn_secondblog_list .item .view_all a:hover i{
	right: -20px;
}
.photolane_fn_secondblog_list .item .info{
	width: 100%;
	height: auto;
	margin-bottom: 25px;
}
.photolane_fn_secondblog_list .item .info p{
	font-size: 16px;
    line-height: 1.6;
    letter-spacing: 1px;
    color: #777;
}
/* blog page #3 */
.photolane_fn_secondblog_list.mycover ul li{
	width: 100%;
}
.photolane_fn_secondblog_list.bordered .item{
	width: 100%;
	padding: 40px 30px;
	
	border: 1px solid #aaa;
	
	-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
	-moz-box-sizing: border-box;    /* Firefox, other Gecko */
	box-sizing: border-box;         /* Opera/IE 8+ */
	
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}
/*------------------------------------------------------------------*/ 
/*	36) TOTOP (BUTTON)
/*------------------------------------------------------------------*/
a.totop{
	position: fixed;
	bottom: 10px;
	right: 10px;
	width: 30px;
	height: 30px;
	line-height: 30px;
	color: #fff;
	z-index: 999;
	
	opacity: 0;
	visibility: hidden;
	
	overflow: hidden;
	background: #888;
	
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
	
	transition: all .5s ease;
	-o-transition: all .5s ease;
	-ms-transition: all .5s ease;
	-moz-transition: all .5s ease;
	-webkit-transition: all .5s ease;
}
a.totop i:before{
	position: absolute;
	font-size: 18px;
	top:50%;
	margin: 0;
	margin-top: -9px;
	left: 50%;
	margin-left: -9px;
	
	-webkit-transform: rotate(180deg);
	   -moz-transform: rotate(180deg);
	    -ms-transform: rotate(180deg);
	        transform: rotate(180deg);
	
	transition: all .5s ease;
	-o-transition: all .5s ease;
	-ms-transition: all .5s ease;
	-moz-transition: all .5s ease;
	-webkit-transition: all .5s ease;
}
a.totop.opened{
	opacity: 1;
	visibility: visible;
}
/*------------------------------------------------------------------*/ 
/*	37) MEDIA QUERIES (FOR SMALL DEVICES) [RESPONSIVE VERSION]
/*------------------------------------------------------------------*/

@media (max-width: 1700px) {
/* GRIDBG */
.photolane_fn_gridbg_in ul li{width: 21.5%;}
}

@media (max-width: 1366px) {
/* GRIDBG */
.photolane_fn_gridbg_in ul li{width: 29.83333%;}
}

@media (max-width: 1200px) {
/* HALFSLIDE */
.photolane_fn_halfslide .half_a{width: 40%;}
.photolane_fn_halfslide .half_b{width: 60%;}
.photolane_fn_halfslide .half_b .flexslider .title_holder{width: 66.6666%;}
/* ABOUT */
.photolane_fn_secondary_wrap .photer_full_info{margin-top: 30px;}
.photolane_fn_secondary_wrap .photer_full_info h3{font-size: 28px;}
.photolane_fn_secondary_wrap .photer_full_info p{ margin-bottom: 30px;}
.photolane_fn_secondary_wrap .photer_full_info .social_icons{margin-bottom: 35px;}
.photolane_fn_secondary_wrap .photer_knowledge .title_holder{padding-right: 0px;}
/* PROJECT SINGLE #2*/
.section_q.second_single .project_img_list[data-cols="three"] ul{margin: 0 0 0 -2%;}
.section_q.second_single .project_img_list[data-cols="three"] ul li{width: 48%; margin: 0 0 2% 2%;}
/* CONTACT */
.photolane_fn_form h3{font-size: 34px;}
}

@media (max-width: 1120px) {
/* PROJECT SINGLE #1*/
.section_q .customer{width: 36%;}
.section_q .project_img_list{width: 58%;}
/* PROJECT SINGLE #2*/
.section_q.second_single .customer .labels{width: 36%;}
.section_q.second_single .customer .info{width: 58%;}
/* GRIDBG */
.photolane_fn_gridbg_in ul li{width: 46.5%;}
}

@media (max-width: 1078px) {
/* PROJECT SINGLE #1*/
.section_q .customer{width: 100%; margin: 0px !important; margin-bottom: 50px !important;}
.section_q .project_img_list{width: 100%;}
.section_q .customer .details{margin-bottom: 0px;}
.section_q .customer .labels{width: 44%; margin-right: 6%; float: left;}
.section_q .customer .info{width: 50%; float: left;}
/* PROJECT SINGLE #2*/
.section_q.second_single .customer .labels{width: 44%;}
.section_q.second_single .customer .info{width: 50%;}
/* PROJECT SINGLE #3*/
.section_q.third_single .customer .details{margin-bottom: 30px;}
/* PROJECT SINGLE #7*/
.photolane_fn_equal_project ul li{width: 48%;}
/* SHORTCODES #1 */
.section_short_a .img_info{padding: 0px 30px;}
/* SHORTCODES #2 */
.mypie{width: 50%; padding: 0px 50px;}
}

@media (max-width: 1040px) {
/* PROJECT SINGLE #2*/
.second_type_of_project .project_title{left: 20px; bottom: 10px;}
/* HALFSLIDE */
.photolane_fn_halfslide .half_b .flexslider .title_holder{padding-left: 19px; bottom: 14px;}
.photolane_fn_halfslide .half_a{padding-top: 20px;}
.photolane_fn_halfslide .half_b .flexslider .img_icons{right: 20px; bottom: 19px;}
.photolane_fn_halfslide .half_b .flexslider .flex-direction-nav a{bottom: 18px;}
/* SHORTCODES #1 */
.section_short_b_in .row_a{width: 100%;margin-bottom: 30px;}
.section_short_b_in .row_b{width: 100%;}
.section_short_c .row_a{width: 50%;}
.section_short_c .row_b{width: 50%;}
.section_short_c .row_a ul li{width: 100%;}
/* SHORTCODES #2 */
.photolane_fn_secondary_wrap .about_msg span.text{padding-right: 0px; display: block;margin-bottom: 20px;font-size: 20px;}
.photolane_fn_secondary_wrap .about_msg a.photolane_fn_btn{float: inherit; margin-bottom: 10px;}
}

@media (max-width: 979px) {
/* GRIDBG */
.photolane_fn_gridbg_in .img_name span{font-size: 18px;}
/* HALFSLIDE */
.photolane_fn_halfslide .half_a{width: 100%; position: absolute; z-index: 10;}
.photolane_fn_halfslide .half_b{width: 100%;}
.photolane_fn_halfslide .half_b .flexslider .title_holder{width: 50%; right: auto; z-index: 10; padding-right: 20px;}
.photolane_fn_halfslide .half_b .flexslider .title_holder h3{color: #fff;}
.photolane_fn_halfslide .half_b .flexslider .flex-direction-nav .flex-next{right: auto; color: #fff; left: 50%;margin-left: 50px}
.photolane_fn_halfslide .half_b .flexslider .flex-direction-nav .flex-next:before{color: #fff;}
.photolane_fn_halfslide .half_b .flexslider .flex-direction-nav .flex-prev:before{color: #fff;}
.photolane_fn_halfslide .half_b .flexslider .flex-direction-nav .flex-prev{right: auto; color: #fff; left: 50%;}
/* ABOUT */
.photolane_fn_secondary_wrap .photer_img{width: 100%;margin-right: 0px;min-height: auto;}
.photolane_fn_secondary_wrap .photer_full_info{margin-top: 50px; width: 100%;padding: 0px;}
.photolane_fn_secondary_wrap .photer_full_info h3{margin-bottom: 20px;}
.photolane_fn_secondary_wrap .photer_full_info h3{font-size: 30px;}
.photolane_fn_secondary_wrap .photer_full_info p{ margin-bottom: 20px;}
.photolane_fn_secondary_wrap .photer_full_info .social_icons{margin-bottom: 20px;}
.photolane_fn_secondary_wrap .photer_img .title_holder h3{font-size: 48px;}
.photolane_fn_secondary_wrap .photer_img .title_holder span{font-size: 16px;}
.photolane_fn_secondary_wrap .photer_box{margin-bottom: 50px;}
.photolane_fn_secondary_wrap .photer_knowledge .title_holder h2{margin-bottom: 17px;}
.photolane_fn_secondary_wrap .photer_knowledge .title_holder{width: 44%;margin-bottom: 30px;padding-right: 50px;}
.photolane_fn_secondary_wrap .photer_knowledge .title_holder:last-child{margin-bottom: 0px;}
.photolane_fn_secondary_wrap .about_msg{padding: 40px 0px;}
.photolane_fn_secondary_wrap .photer_knowledge{margin-bottom: 50px;}
.photolane_fn_secondary_wrap .about_msg{margin-bottom: 50px;}
.photolane_fn_secondary_wrap_in{margin-top: 50px;}
/* SHORTCODES #1 */
.section_short_a .img_holder{width: 100%;}
.section_short_a .img_info{width: 100%; height: auto; padding: 50px 20px 0px;}
/* SHORTCODES #2 */
.mypie{padding: 0px 30px;}
.photolane_fn_testimonails .testimonials{max-width:500px;}
/* CONTACT */
.photolane_fn_form h3{font-size: 28px;}
.photolane_fn_form > p{font-size: 15px;margin-bottom: 30px;}
}

@media (max-width: 768px) {
.photolane_fn_secondblog_list ul li{width: 100%;}
.prevnext .all,
.prevnext ul li .hover_img{display: none;}
/* INDEX */
.photolane_fn_main_slider .title_holder{bottom: 29px; left: 40px;}
.photolane_fn_main_slider .title_holder h2{font-size: 24px;}
.photolane_fn_main_slider .purchase{bottom: 75px; left: 40px;}
/* VERT HOR MENUS*/
.photolane_fn_vertical_menu{display: none;}
.photolane_fn_horizontal_menu{display: block;}
/* MAIN DIVS WITH PADDING*/
.photolane_fn_content_in{float: left;padding-left: 0px;}
.photolane_fn_fluid_wrap{margin-left: 0px;}
/* PROJECT #1*/
.photolane_fn_secondary_wrap .project_title h3{font-size: 36px;}
.photolane_fn_secondary_wrap .project_title{margin-bottom: 50px;bottom: 10px;}
.photolane_fn_secondary_wrap .breadcrumbs p{margin-bottom: 40px;}
ul.project_list{margin-left: 0px;}
ul.project_list li{width: 100%;margin-left: 0px;}
.aaaabbbb{margin-bottom: 50px;}
/* PROJECT #2*/	
.second_type_of_project{margin-bottom: 50px;}
/* PROJECT #3*/
.third_type_of_project{padding-left: 0px; margin-bottom: 50px;}
/* PROJECT SINGLE #1*/
.section_q .customer .labels{width: 100%; margin-left: 0px;}
.section_q .customer .info{width: 100%;}
.section_q .customer ul > li span.span1{width: 50%;}
.section_q .customer .details{margin-bottom: 30px;}
.project_img_list ul{margin-top: -20px;}
.project_img_list ul li{margin-top: 20px;}
.section_q{margin-bottom: 50px;}
.prevnext{padding: 30px 0px; margin-bottom: 50px;}
.prevnext ul li span.text{display: none;}
.last_section .aaaabbbb ul li{margin-bottom:6%;}
.last_section .aaaabbbb ul li:last-child{margin-bottom:0px;}
/* PROJECT SINGLE #2*/
.section_q.second_single .customer .labels{width: 100%; margin-right: 0px;}
.section_q.second_single .customer .info{width: 100%;}
.section_q.second_single .customer ul > li span.span1{width: 50%;}
.section_q .customer .details{margin-bottom: 30px;}
.section_q.second_single .project_img_list[data-cols="two"] ul{margin: 0px !important;}
.section_q.second_single .project_img_list[data-cols="two"] ul li{width: 100%; margin: 0 0 2% 0;}
.section_q.second_single .project_img_list[data-cols="three"] ul{margin: 0px !important;}
.section_q.second_single .project_img_list[data-cols="three"] ul li{width: 100%; margin: 0 0 2% 0;}
/* PROJECT SINGLE #3*/
.section_q.third_single .customer{margin-bottom: 0px !important;}
/* PROJECT SINGLE #4*/
.section_q.third_single{margin-bottom: 50px;}
.section_q.seventh_single{margin-bottom: 50px;}
/* GRIDBG */
.photolane_fn_gridbg_in{padding-left: 0px;}
.photolane_fn_gridbg_in .aaa{padding: 40px;}
/* ABOUT */
.photolane_fn_secondary_wrap .photer_img .title_holder h3{font-size: 30px;}
.photolane_fn_secondary_wrap .photer_img .title_holder span{font-size: 12px;}
.photolane_fn_secondary_wrap .photer_full_info h3{font-size:  24px;}
.photolane_fn_secondary_wrap .photer_knowledge{margin-left: 0px;}
.photolane_fn_secondary_wrap .photer_knowledge .title_holder{width: 100%;margin-left: 0px;}
.photolane_fn_secondary_wrap .about_msg p{font-size: 24px;}
/* SHORTCODES #1 */
.section_short_a .img_info .title_holder h3{margin-bottom: 20px; font-size: 26px;}
.section_short_a .img_info .title_holder{margin-bottom: 20px;}
.section_short_a{margin-bottom: 50px;}
.section_short_b_in{padding: 30px 0px;}
.section_short_b{margin-bottom: 50px;}
.section_short_c{margin-bottom: 50px;}
.section_short_c h3{margin-bottom: 20px;}
.section_short_c .row_b .asd{margin-bottom: 20px;}
.photolane_fn_full_width_container .content_holder{padding: 0px 20px;}
.photolane_fn_full_width_container .content_holder h3{font-size: 28px;}
.section_short_e_content a{padding: 40px 0px;}
.section_short_i .photolane_fn_main_img_holder{width: 400px;}
/* SHORTCODES #2 */
.photolane_fn_notification > .inner{padding: 50px; min-height: 140px;}
.mypie{padding: 0px 10px;}
.accordion_title_holder h3{margin-bottom: 20px; font-size: 26px;}
/* SEARCH PREVIEW */
.photolane_fn_search{padding-left: 0px;}
.photolane_fn_search .search_box{padding: 60px 40px; border-color: #222;}
.photolane_fn_search .search_box_in .form input{font-size: 18px;width: 300px;}
.photolane_fn_search .search_box_in .form .icon{bottom: 10px;}
.photolane_fn_share .share_box{width: 400px; padding: 30px 40px;}
.photolane_fn_share .share_box_in h3{margin-bottom: 20px;}
/* SHARE PREVIEW */
.photolane_fn_share{padding-left: 0px;}
.photolane_fn_share .share_box{border-color: #222;}
/* CONTACT */
.photolane_fn_form h3{font-size: 32px; margin-bottom: 10px;}
.photolane_fn_contact .google_map{margin-bottom: 30px;}
/* TOTOP */
a.totop{background-color: #111; color: #fff;}
/* BLOG */
.photolane_fn_blog_list{margin-bottom: 50px;}
.photolane_fn_blog_list .img{width: 100%;margin-bottom: 30px;}
.photolane_fn_blog_list .blog_wrap{width: 100%; padding: 0px;min-height: auto;}
}

@media (max-width: 650px) {
/* PROJECT SINGLE #7*/
.photolane_fn_equal_project ul li{width: 100%; margin-left: 0%;}
.photolane_fn_equal_project ul{margin-left: 0%;}
/* SHORTCODES #1 */
.section_short_b_in .row_b_a{width: 100%;margin-bottom: 30px;}
.section_short_b_in .row_b_b:last-child{margin-bottom: 0px;}
.section_short_b_in .row_b_b{width: 100%;}
.section_short_i .photolane_fn_main_img_holder{width: 350px;}
/* SHORTCODES #2 */
.photolane_fn_testimonails .testimonials{max-width:400px;}
}

@media (max-width: 600px) {
/* GRIDBG */
.photolane_fn_gridbg_in .aaa{padding: 30px;}
.photolane_fn_gridbg_in .img_name span{font-size: 24px;}
.photolane_fn_gridbg_in ul li{width: 100%;margin-left: 0px;}
.photolane_fn_gridbg_in ul{margin-left: 0px;}
/* SHORTCODES #1 */
.section_short_c .row_a{width: 100%; margin-bottom: 20px;}
.section_short_c .row_b{width: 100%;}
.section_short_c .row_a ul li{width: 50%;}
/* SHORTCODES #2 */
.mypie{width: 100%;padding: 0px 80px;}
.photolane_fn_testimonails .testimonials{max-width:360px;}
.photolane_fn_team_carousel .box_wrap{width: 360px;padding:30px;}
}

@media (max-width: 550px) {
.photolane_fn_horizontal_menu .profile_res_info .info{width: 100%;}
.photolane_fn_horizontal_menu .profile_res_info .profile_img{width: 100%;min-height: auto;}
}

@media (max-width: 500px) {
/* SHORTCODES #1 */
.section_short_c .row_a ul li{width: 100%;}
/* SHORTCODES #2 */
.mypie{padding: 0px 20px;}
.photolane_fn_team_carousel .box_wrap{width: 300px;}
.photolane_fn_team_carousel .box_wrap .box .info_title .title_holder{padding-left: 0px; text-align:center;}
}

@media (max-width: 480px) {
.photolane_fn_secondary_wrap .about_msg{text-align: center;}
	.photolane_fn_accordion .accordion_in .acc_content .acc_img{float: none;text-align: center;margin: 20px 0px;}
	
.photolane_fn_testimonails .prev_next_btn{display: none;}
/* INDEX */
.photolane_fn_main_slider .title_holder{bottom: 31px; left: 20px;}
.photolane_fn_main_slider .title_holder h2{font-size: 18px;}
.photolane_fn_main_slider .purchase{bottom: 70px; left: 20px}
/* PROJECT #1*/
.photolane_fn_main_img_holder .img_icons svg{width: 16px; height: 16px;}
.photolane_fn_main_img_holder .img_name span{font-size: 15px;}
.photolane_fn_main_img_holder .img_icons{bottom: 17px;}
.photolane_fn_secondary_wrap .aaaabbbb .next a{font-size: 14px;}
.photolane_fn_secondary_wrap .aaaabbbb .next a i{font-size: 18px; top: 1px; right: -5px;}
/* PROJECT #2*/
.photolane_fn_secondary_wrap .project_title h3{font-size: 24px;}
.second_type_of_project{height: 400px;}
.second_type_of_project .project_title{left: 10px;bottom: 5px;}
/* PROJECT #3*/
.third_type_of_project .project_title{bottom: 5px;}
/* PROJECT SINGLE #1*/
.section_q .customer ul > li span.span1{width: 120px;}
/* PROJECT SINGLE #2*/
.section_q.second_single .customer ul > li span.span1{width: 120px;}
/* GRIDBG */
.photolane_fn_gridbg_in .aaa{padding: 20px;}
/* HALFSLIDE */
.photolane_fn_halfslide .half_b .flexslider .title_holder{padding-left: 9px;}
.photolane_fn_halfslide .half_b .flexslider .img_icons{right: 10px; bottom: 19px;}
.photolane_fn_halfslide .half_b .flexslider .title_holder h3{font-size: 24px;}
.flex-direction-nav a:before{font-size: 22px !important;}
.photolane_fn_halfslide .half_b .flexslider .flex-direction-nav a{width: 20px; height: 20px; line-height: 20px;}
.photolane_fn_halfslide .half_b .flexslider .flex-direction-nav .flex-next{margin-left: 30px;}
/* ABOUT */
.photolane_fn_secondary_wrap .photer_full_info h3{font-size:  20px;line-height: 29px;}
.photolane_fn_secondary_wrap .photer_knowledge .title_holder h1{font-size: 36px;}
.photolane_fn_secondary_wrap .photer_knowledge .title_holder h2{font-size: 20px;}
.photolane_fn_secondary_wrap .photer_knowledge .title_holder{padding-right: 0px;}
.photolane_fn_secondary_wrap .about_msg p{font-size: 20px;}
/* SHORTCODES #1 */
.section_short_a .img_info{padding: 50px 10px 0px;}
.section_short_a .img_info .title_holder h3{font-size: 24px;}
.section_short_b_in{padding: 15px 0px;}
.photolane_fn_full_width_container .content_holder h3{font-size: 24px; line-height: 1.4;}
.photolane_fn_full_width_container .content_holder{padding: 0px 10px;}
.section_short_e_content a{font-size: 13px;}
.section_short_i .photolane_fn_main_img_holder{width: 300px;}
/* SHORTCODES #2 */
.photolane_fn_notification > .inner{padding: 50px 20px 20px 20px;}
.mypie{padding: 0px 10px;}
.photolane_fn_testimonails .item p{line-height: 1.4; font-size: 15px; letter-spacing: 1px;}
.photolane_fn_team_carousel .box_wrap{width: 240px;}
.photolane_fn_team_carousel .box_wrap .box .info_content p{line-height: 1.4; font-size: 15px; letter-spacing: 1px;text-align: left;}
.photolane_fn_team_carousel .box_wrap .box .info_title .img{float: none;margin: 0px auto 20px auto;}
.photolane_fn_team_carousel .box_wrap .box .info_title .title_holder{float: left;width: 100%;}
/* SEARCH PREVIEW */
.photolane_fn_search .search_box_in .form input{width: auto;}
.photolane_fn_search .search_box{padding: 40px 30px;}
/* SHARE PREVIEW */
.photolane_fn_share .share_box{width: 200px; padding: 30px 40px;}
.photolane_fn_share .share_box_in ul li{width: 100%; display: block;}
.photolane_fn_share .share_box_in h3{font-size: 15px;}
/* SUBMENU */
.photolane_fn_horizontal_menu .logo{width: 100%;text-align: center;}
.photolane_fn_horizontal_menu .menu_list{width: 100%;text-align: center;}
/* CONTACT */
.photolane_fn_form h3{font-size: 24px;}
.photolane_fn_form > p{font-size: 14px;}
.photolane_fn_form form input[type="button"]{width: 100%;}
/* BLOG */
.photolane_fn_blog_list .blog .title_holder h3{line-height: 1;}
.photolane_fn_blog_list .blog .title_holder h3 a{font-size: 24px;}
/* CAMERA DETAILS */
.details_popup{padding: 50px 30px;}
}

@media (max-width: 350px) {
/* PROJECT #2*/
.second_type_of_project{height: 300px;}
.photolane_fn_team_carousel .box_wrap{width: 200px;}
/* SHORTCODES #1 */
.section_short_i .photolane_fn_main_img_holder{width: 250px;}
/* CAMERA DETAILS */	
.details_popup table td{float: left; clear: both;padding: 5px 0px;}
.details_popup table td.label{color: #f1f1f1;}
}

/* LV CUSTOM STYLES */
/* Latido Viajero: ajustes premium y componentes */
.lv_muted{opacity:.75}
.lv_simple_page{padding:110px 0 120px 0}
.lv_page_head h3{margin:0 0 20px 0}
.lv_page_body p{font-size:16px; line-height:1.8}
.lv_bg_page{
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
.lv_bg_page .photolane_fn_horizontal_menu .horizontal_menu_in{
  background-color: transparent;
}
.lv_bg_page .photolane_fn_horizontal_menu .navigation_list{
  background-color: rgba(0,0,0,0.25);
}
.lv_bg_page .photolane_fn_vertical_menu[data-bg-color="light"] .photolane_fn_leftbar{
  background: transparent;
  border-right-color: rgba(255,255,255,0.2);
}
.lv_bg_page .photolane_fn_vertical_menu[data-bg-color="light"] .photolane_fn_leftbar ul li{
  border-bottom-color: rgba(255,255,255,0.2);
}
.lv_bg_page .photolane_fn_vertical_menu[data-bg-color="light"] .photolane_fn_leftbar ul li a{
  color: #fff;
}
.lv_bg_page .photolane_fn_vertical_menu[data-bg-color="light"] .photolane_fn_leftbar span.menu span{
  background-color: #fff;
}
.lv_bg_page .photolane_fn_vertical_menu[data-bg-color="light"] .photolane_fn_leftbar .photolane_fn_cright span{
  color: #fff;
}
.lv_bg_contact{ background-image: url("../img/bg-paginas/Contacto/bg.JPG"); }
.lv_bg_admin{ background-image: url("../img/bg-paginas/admin/bg.JPG"); }
.lv_bg_clientes{ background-image: url("../img/bg-paginas/clientes-servicios/bg.JPG"); }
.lv_bg_promociones{ background-image: url("../img/bg-paginas/Promociones/bg.JPG"); }
.lv_bg_nacionales{ background-image: url("../img/bg-paginas/viajes nacionales/bg.JPG"); }
.lv_bg_internacionales{ background-image: url("../img/bg-paginas/viajes internacionales/bg.JPG"); }
.lv_bg_boda{ background-image: url("../img/bg-paginas/boda en la playa/1.jpg"); }
.lv_bg_traslados{ background-image: url("../img/bg-paginas/Traslados/1.JPG"); }
.lv_bg_vip{ background-image: url("../img/bg-paginas/VIP/1.jpg"); }
.lv_destinos_page .photolane_fn_main_slider .title_holder h2,
.lv_destinos_page .photolane_fn_main_slider .title_holder h2 span{
  color: #fff;
}
.lv_destinos_page .lv_slider_intro{
  position: absolute;
  left: 120px;
  top: 120px;
  z-index: 25;
  max-width: 860px;
}
@media (max-width: 980px){
  .lv_destinos_page .lv_slider_intro{
    left: 24px;
    top: 100px;
    max-width: calc(100% - 48px);
  }
}
.lv_destinos_page .lv_page_body{
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 14px;
  padding: 18px 20px;
  color: #fff;
  box-shadow: 0 18px 40px rgba(0,0,0,0.25);
  max-width: 760px;
}
.lv_destinos_page .lv_page_body p{
  color: #fff;
  line-height: 1.7;
  font-size: 16px;
  margin: 0 0 12px;
}
.lv_destinos_page .lv_page_body p:last-child{
  margin-bottom: 0;
}
.lv_destinos_page .lv_page_head h3{
  font-size: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 12px 0;
  font-weight: 400;
  color: #fff;
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 10px 16px;
  border-radius: 12px;
  display: inline-block;
  box-shadow: 0 18px 40px rgba(0,0,0,0.25);
}
.lv_nacionales .lv_page_body{
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 14px;
  padding: 16px 18px;
  color: #fff;
  box-shadow: 0 18px 40px rgba(0,0,0,0.25);
  max-width: 980px;
  width: min(980px, 100%);
  margin: 0 auto;
  text-align: left;
}
.lv_nacionales .lv_page_body p{
  color: #fff;
}
.lv_nacionales .lv_page_head h3{
  display: inline-block;
  padding: 10px 16px;
  margin: 0 0 12px 0;
  border-radius: 12px;
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
}
.lv_internacionales .lv_page_body{
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 14px;
  padding: 16px 18px;
  color: #fff;
  box-shadow: 0 18px 40px rgba(0,0,0,0.25);
  max-width: 980px;
  width: min(980px, 100%);
  margin: 0 auto;
  text-align: left;
}
.lv_internacionales .lv_page_body p{
  color: #fff;
}
.lv_internacionales .lv_page_head h3{
  display: inline-block;
  padding: 10px 16px;
  margin: 0 0 12px 0;
  border-radius: 12px;
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
}
.lv_internacionales .photolane_fn_content_in,
.lv_internacionales .photolane_fn_contact{
  position: relative;
  z-index: 2;
}
.lv_internacionales .photolane_fn_contact .container{
  max-width: 1100px;
  width: 100%;
}
.lv_internacionales .lv_actions{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  text-align: center;
}
@media (max-width: 640px){
  .lv_internacionales .lv_actions{
    flex-direction: column;
    gap: 10px;
  }
  .lv_internacionales .lv_actions a{
    width: min(280px, 100%);
  }
}

/* Mobile menu final lock: Promociones same size as other items (e.g. Contacto) */
@media (max-width: 900px){
  .photolane_fn_horizontal_menu .navigation_list ul.nav > li > a.lv_nav_promo{
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 10px 12px !important;
    border-radius: 10px !important;
    line-height: inherit !important;
    white-space: normal !important;
    background: #F73B6D !important;
    border: 1px solid rgba(255,255,255,0.20) !important;
    color: #fff !important;
    box-shadow: none !important;
    transform: none !important;
    font-weight: inherit !important;
    letter-spacing: inherit !important;
  }
  .photolane_fn_horizontal_menu .navigation_list ul.nav > li > a.lv_nav_promo span{
    color: #fff !important;
    font-weight: inherit !important;
    letter-spacing: inherit !important;
    line-height: inherit !important;
  }
}

/* Final mobile override: keep Promociones aligned with other menu items */
@media (max-width: 768px){
  .photolane_fn_horizontal_menu .navigation_list ul.nav > li > a.lv_nav_promo{
    display: inline-flex !important;
    width: auto !important;
    max-width: max-content !important;
    white-space: nowrap;
    padding: 7px 10px !important;
    border-radius: 8px !important;
    min-height: 0 !important;
    line-height: 1.15 !important;
  }
}
.lv_service_page .lv_page_body{
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 14px;
  padding: 16px 18px;
  color: #fff;
  box-shadow: 0 18px 40px rgba(0,0,0,0.25);
  max-width: 980px;
  width: min(980px, 100%);
  margin: 0 auto;
  text-align: left;
}
.lv_service_page .lv_page_body p{
  color: #fff;
}
.lv_service_page .lv_page_head h3{
  display: inline-block;
  padding: 10px 16px;
  margin: 0 0 12px 0;
  border-radius: 12px;
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  box-shadow: 0 18px 40px rgba(0,0,0,0.25);
}
.lv_service_page .lv_page_head{
  max-width: 980px;
  width: min(980px, 100%);
  margin: 0 auto 12px;
}
.lv_portal_page .lv_page_body,
.lv_admin_page .lv_page_body{
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 16px;
  padding: 20px;
  color: #fff;
  box-shadow: 0 18px 40px rgba(0,0,0,0.25);
}
.lv_portal_page .lv_page_head{
  margin-bottom: 14px;
}
.lv_portal_page .lv_page_head .lv_client_title_outlier{
  display: inline-block;
  margin: 0;
  padding: 12px 16px 11px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.22);
  background:
    radial-gradient(circle at 20% 15%, rgba(54,81,255,0.28), transparent 58%),
    radial-gradient(circle at 80% 18%, rgba(23,184,144,0.24), transparent 55%),
    rgba(0,0,0,0.52);
  color: #fff;
  letter-spacing: .4px;
  box-shadow: 0 16px 36px rgba(0,0,0,0.28);
  position: relative;
}
.lv_portal_page .lv_page_head .lv_client_title_outlier::after{
  content: "CLIENTES";
  position: absolute;
  top: -10px;
  right: 12px;
  font-size: 10px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: .16em;
  color: #dcf8ff;
  background: rgba(54,81,255,0.22);
  border: 1px solid rgba(123,165,255,0.38);
  border-radius: 999px;
  padding: 5px 8px;
}
.lv_admin_page .lv_page_head{
  margin-bottom: 14px;
}
.lv_admin_page .lv_page_head .lv_admin_title_outlier{
  display: inline-block;
  margin: 0;
  padding: 12px 16px 11px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.22);
  background:
    radial-gradient(circle at 18% 20%, rgba(247,59,109,0.30), transparent 60%),
    radial-gradient(circle at 82% 18%, rgba(54,81,255,0.26), transparent 55%),
    rgba(0,0,0,0.52);
  color: #fff;
  letter-spacing: .4px;
  box-shadow: 0 16px 36px rgba(0,0,0,0.28);
  position: relative;
}
.lv_admin_page .lv_page_head .lv_admin_title_outlier::after{
  content: "ADMIN";
  position: absolute;
  top: -10px;
  right: 12px;
  font-size: 10px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: .18em;
  color: #ffd8e5;
  background: rgba(247,59,109,0.22);
  border: 1px solid rgba(247,59,109,0.38);
  border-radius: 999px;
  padding: 5px 8px;
}
.lv_portal_page .lv_page_body p,
.lv_admin_page .lv_page_body p{
  color: #fff;
}
.lv_panel{
  background: rgba(0,0,0,0.45);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.2);
}
.lv_panel + .lv_panel{margin-top:16px;}
.lv_panel h4{
  margin: 0 0 12px 0;
  color: #fff;
  font-size: 18px;
  letter-spacing: .2px;
}
.lv_portal_grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 16px;
}
.lv_service_card{
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 14px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.lv_service_card h5{margin:0;color:#fff;font-size:17px;}
.lv_service_meta{
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  font-size: 14px;
  color: rgba(255,255,255,0.85);
}
.lv_status_badge{
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .3px;
  text-transform: uppercase;
}
.lv_status_paid{background: rgba(49,197,122,0.2); color:#a4f2c8; border:1px solid rgba(49,197,122,0.4);}
.lv_status_pending{background: rgba(255,193,7,0.2); color:#ffe29a; border:1px solid rgba(255,193,7,0.4);}
.lv_status_cancelled{background: rgba(244,67,54,0.2); color:#ffb1aa; border:1px solid rgba(244,67,54,0.4);}
.lv_status_closed{background: rgba(150,150,150,0.2); color:#ddd; border:1px solid rgba(200,200,200,0.35);}
.lv_btn_small{
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.lv_btn_small.lv_btn_pay{
  border-color: rgba(54,81,255,0.45);
  background: rgba(54,81,255,0.16);
}
.lv_btn_small.lv_btn_danger{
  border-color: rgba(255,120,120,0.55);
  background: rgba(110, 14, 24, 0.55);
  color: #ffe7ea;
}
.lv_btn_small.is_disabled{
  opacity: .7;
  cursor: default;
  pointer-events: none;
}
.lv_table{
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.lv_table th,
.lv_table td{
  padding: 10px 8px;
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.lv_table th{color:#fff;font-weight:600;}
.lv_table td{color:rgba(255,255,255,0.9);}
.lv_table_wrap_text{
  display: inline-block;
  max-width: 100%;
  white-space: normal;
  overflow-wrap: anywhere;
  line-height: 1.35;
}
.lv_table_actions{
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.lv_admin_grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 16px;
}
.lv_admin_full{grid-column: 1 / -1;}
.lv_admin_panel_tall .lv_table{
  table-layout: fixed;
}
.lv_promo_admin{
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 16px;
}
.lv_promo_admin .lv_promo_card_page{
  position: relative;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(0,0,0,0.28);
}
.lv_promo_actions{
  position: absolute;
  top: 58px;
  right: 10px;
  z-index: 3;
  display: flex;
  gap: 8px;
}
.lv_promo_actions .lv_btn_small{
  box-shadow: 0 8px 18px rgba(0,0,0,0.25);
}
.lv_promo_actions .lv_btn_small.lv_btn_pay{
  border-color: rgba(54,81,255,0.45);
  background: rgba(31, 56, 176, 0.78);
  color: #eef2ff;
}
.lv_promo_actions .lv_btn_small.lv_btn_danger{
  border-color: rgba(255,120,120,0.55);
  background: rgba(110, 14, 24, 0.78);
  color: #ffe7ea;
  box-shadow: 0 8px 18px rgba(0,0,0,0.25);
}
.lv_promo_actions .lv_btn_small.lv_btn_pay:hover{
  background: rgba(41, 72, 216, 0.88);
}
.lv_promo_actions .lv_btn_small.lv_btn_danger:hover{
  background: rgba(150, 18, 34, 0.88);
}
.lv_promo_card_page .lv_promo_meta{
  z-index: 2;
}
.lv_payment_stack{
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.lv_payment_chip{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 9px 10px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
}
.lv_payment_chip_meta{
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}
.lv_payment_chip_meta strong{
  color: #fff;
  font-size: 13px;
  line-height: 1.2;
}
.lv_payment_chip_meta span{
  color: rgba(255,255,255,.82);
  font-size: 12px;
  line-height: 1.25;
}
.lv_payment_chip_meta .lv_status_badge{
  width: fit-content;
}
.lv_transfer_info{
  margin-top: 4px;
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.03);
  color: rgba(255,255,255,.9) !important;
  white-space: normal;
  line-height: 1.35;
}
.lv_payment_chip_actions{
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.lv_service_card_unified .lv_payment_stack{
  margin-top: 4px;
}
.lv_client_config{
  margin-top: 12px;
  padding: 14px;
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
}
.lv_client_config .lv_admin_form{
  grid-template-columns: repeat(2, minmax(0,1fr));
}
.lv_client_config .lv_admin_form button,
.lv_client_config .lv_admin_form .lv_muted{
  grid-column: 1 / -1;
}
.lv_admin_form{
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 10px;
}
.lv_admin_form input,
.lv_admin_form select,
.lv_admin_form textarea{
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.08);
  color: #fff;
}
.lv_admin_form textarea{
  resize: vertical;
  min-height: 86px;
}
.lv_admin_fullrow{
  grid-column: 1 / -1;
}
.lv_form_hint{
  font-size: 12px;
  line-height: 1.35;
  color: rgba(255,255,255,0.78);
  padding: 2px 2px 0;
}
.lv_admin_form button{
  grid-column: 1 / -1;
}
.lv_admin_form_actions{
  grid-column: 1 / -1;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}
.lv_admin_form_actions button{
  grid-column: auto;
}
.lv_admin_form .lv_muted{
  grid-column: 1 / -1;
  font-size: 13px;
}
.lv_table_actions select{
  padding: 6px 10px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.08);
  color: #fff;
}
@media (max-width: 720px){
  .lv_admin_form{
    grid-template-columns: 1fr;
  }
  .lv_payment_chip{
    align-items: flex-start;
    flex-direction: column;
  }
  .lv_payment_chip_actions{
    width: 100%;
  }
}
@media (max-width: 980px){
  .lv_portal_grid,
  .lv_admin_grid,
  .lv_promo_admin{
    grid-template-columns: 1fr;
  }
}
.lv_package_page .lv_page_body{
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 16px;
  padding: 20px;
  color: #fff;
  box-shadow: 0 18px 40px rgba(0,0,0,0.25);
}
.lv_package_page .lv_page_body h4,
.lv_package_page .lv_page_body p,
.lv_package_page .lv_page_body li{
  color: #fff;
}
.lv_package_page .lv_page_head h3{
  display: inline-block;
  padding: 10px 16px;
  margin: 0 0 12px 0;
  border-radius: 12px;
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  box-shadow: 0 18px 40px rgba(0,0,0,0.25);
}
.lv_contact_page .photolane_fn_form{
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 16px;
  padding: 28px 24px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.25);
  max-width: 980px;
  margin: 0 auto;
}
.lv_contact_page .photolane_fn_form h3,
.lv_contact_page .photolane_fn_form p{
  color: #fff;
}
.lv_contact_page .photolane_fn_form,
.lv_contact_page .photolane_fn_form .lv_form_label,
.lv_contact_page .photolane_fn_form .lv_form_note,
.lv_contact_page .photolane_fn_form .lv_field_help,
.lv_contact_page .photolane_fn_form .lv_check_label,
.lv_contact_page .photolane_fn_form .lv_check_label span,
.lv_contact_page .photolane_fn_form strong,
.lv_contact_page .photolane_fn_form label,
.lv_contact_page .photolane_fn_form .returnmessage,
.lv_contact_page .photolane_fn_form .returnmessage span,
.lv_contact_page .photolane_fn_form .empty_notice,
.lv_contact_page .photolane_fn_form .empty_notice span{
  color: #fff !important;
}
.lv_contact_page .lv_form_note{
  margin: 0 0 14px;
  font-size: 13px;
  color: #fff;
}
.lv_contact_page .lv_form_label{
  display: block;
  margin: 0 0 6px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .02em;
  color: #fff;
}
.lv_contact_page .lv_field_help{
  margin-top: 6px;
  font-size: 12px;
  color: #fff;
}
.lv_contact_page .photolane_fn_form input[type="text"],
.lv_contact_page .photolane_fn_form input[type="email"],
.lv_contact_page .photolane_fn_form input[type="tel"],
.lv_contact_page .photolane_fn_form input[type="number"],
.lv_contact_page .photolane_fn_form input[type="date"],
.lv_contact_page .photolane_fn_form select,
.lv_contact_page .photolane_fn_form textarea{
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  border-radius: 10px;
  padding: 12px 14px;
}
.lv_contact_page .photolane_fn_form input[type="text"]::placeholder,
.lv_contact_page .photolane_fn_form input[type="email"]::placeholder,
.lv_contact_page .photolane_fn_form input[type="tel"]::placeholder,
.lv_contact_page .photolane_fn_form input[type="number"]::placeholder,
.lv_contact_page .photolane_fn_form textarea::placeholder{
  color: rgba(255,255,255,0.7);
}
.lv_contact_page .photolane_fn_form select{
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, rgba(255,255,255,0.7) 50%),
    linear-gradient(135deg, rgba(255,255,255,0.7) 50%, transparent 50%);
  background-position: calc(100% - 18px) 50%, calc(100% - 12px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}
.lv_contact_page .photolane_fn_form .button{
  text-align: center;
  margin-top: 12px;
}
.lv_contact_page .your-consent{
  margin-top: 12px;
}
.lv_contact_page .lv_check_label{
  display: inline-flex;
  align-items: flex-start;
  gap: 9px;
  color: #fff;
  font-size: 13px;
  line-height: 1.4;
}
.lv_contact_page .lv_check_label input{
  margin-top: 2px;
}
.lv_contact_page .lv_honeypot{
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.lv_contact_page .photolane_fn_form .lv_btn_cotiza[disabled]{
  opacity: .72;
  cursor: wait;
}
.lv_contact_page .photolane_fn_form .lv_field_error{
  border-color: rgba(255,120,120,.8) !important;
  box-shadow: 0 0 0 2px rgba(255,120,120,.2);
}
.lv_destinos_page .lv_actions,
.lv_service_page .lv_actions{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  text-align: center;
  flex-wrap: wrap;
}
.lv_destinos_page .lv_actions .lv_btn_cotiza.lv_btn_outline,
.lv_internacionales .lv_actions .lv_btn_cotiza.lv_btn_outline,
.lv_nacionales .lv_actions .lv_btn_cotiza.lv_btn_outline{
  background: #F73B6D;
  color: #fff !important;
  border: 1px solid rgba(255,255,255,0.24);
}
@media (max-width: 640px){
  .lv_destinos_page .lv_actions,
  .lv_service_page .lv_actions{
    flex-direction: column;
    gap: 10px;
  }
  .lv_destinos_page .lv_actions a,
  .lv_service_page .lv_actions a{
    width: min(280px, 100%);
  }
}
.lv_nacionales .photolane_fn_content_in,
.lv_nacionales .photolane_fn_contact{
  position: relative;
  z-index: 2;
}
.lv_nacionales .photolane_fn_contact .container{
  max-width: 1100px;
  width: 100%;
}
.lv_nacionales .lv_actions{
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.lv_destinos_page .photolane_fn_horizontal_menu .horizontal_menu_in{
  background-color: transparent;
}
.lv_destinos_page .photolane_fn_horizontal_menu .navigation_list{
  background-color: rgba(0,0,0,0.25);
}
.lv_destinos_page .photolane_fn_main_slider{
  position: fixed;
  inset: 0;
  z-index: 1;
}
.lv_destinos_page .photolane_fn_content_in{
  position: relative;
  z-index: 2;
  min-height: 100vh;
}
.lv_destinos_page .photolane_fn_main_slider .flexslider,
.lv_destinos_page .photolane_fn_main_slider .flexslider .slides,
.lv_destinos_page .photolane_fn_main_slider .flexslider .slides > li{
  height: 100vh;
}
.lv_btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 18px; border-radius:10px;
  background:#3651ff; color:#fff; font-weight:600;
  transition:all .25s ease; text-decoration:none; border:1px solid #3651ff;
}
.lv_btn:hover{transform:translateY(-1px); opacity:.95}
.lv_btn_outline{background:transparent; color:#3651ff}
.lv_btn_inline{margin-top:14px}

.lv_form{margin-top:16px}
.lv_form label{display:block; margin-bottom:12px}
.lv_form label span{display:block; font-size:13px; opacity:.75; margin-bottom:6px}
.lv_form input{
  width:100%; padding:12px 12px; border-radius:10px;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(0,0,0,.25); color:#fff; outline:none;
  -webkit-text-fill-color:#fff;
  caret-color:#fff;
}
.lv_form input:focus{border-color:#3651ff}
.lv_form input::placeholder{color:rgba(255,255,255,.65);}
.lv_status{margin-top:10px; font-size:13px}
.lv_status.ok{color:#8ef0b0}
.lv_status.err{color:#ffb0b0}

.lv_promos_head{padding:18px 20px 10px 20px}
.lv_promos_head h3{margin:0 0 6px 0}
.lv_promos_head p{margin:0; opacity:.75}

.lv_promos_grid{display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:14px; padding:12px 20px 20px 20px}
@media(max-width:768px){ .lv_promos_grid{grid-template-columns:1fr;} }

.lv_promo_card{
  position:relative; display:block; overflow:hidden; border-radius:14px;
  text-decoration:none; color:#fff;
  --lv-promo-title-color:#fff;
  --lv-promo-title-bg:rgba(0,0,0,.42);
  --lv-promo-title-shadow:0 2px 10px rgba(0,0,0,.38);
}
.lv_promo_card.lv_title_black,
.lv_promo_card_page.lv_title_black{
  --lv-promo-title-color:#111;
  --lv-promo-title-bg:rgba(255,255,255,.82);
  --lv-promo-title-shadow:none;
}
.lv_promo_card.lv_title_white,
.lv_promo_card_page.lv_title_white{
  --lv-promo-title-color:#fff;
  --lv-promo-title-bg:rgba(0,0,0,.42);
  --lv-promo-title-shadow:0 2px 10px rgba(0,0,0,.38);
}
.lv_promo_card img{width:100%; height:200px; object-fit:cover; display:block; filter:saturate(1.05)}
.lv_promo_meta{
  position:absolute; inset:0;
  padding:84px 14px 12px 14px;
  display:flex; flex-direction:column; justify-content:flex-end; align-items:flex-start;
  background:linear-gradient(180deg, rgba(0,0,0,.08) 0%, rgba(0,0,0,.16) 24%, rgba(0,0,0,.72) 78%, rgba(0,0,0,.84) 100%);
}
.lv_promo_meta > *:not(h4){position:relative; z-index:1}
.lv_promo_meta h4{
  position:absolute; top:14px; left:50%; transform:translateX(-50%);
  width:calc(100% - 28px); margin:0; padding:8px 14px;
  border-radius:999px; text-align:center; font-size:16px; line-height:1.25;
  color:var(--lv-promo-title-color); background:var(--lv-promo-title-bg);
  text-shadow:var(--lv-promo-title-shadow);
  -webkit-backdrop-filter:blur(8px); backdrop-filter:blur(8px);
}
.lv_promo_meta p{margin:0 0 8px 0; font-size:13px; opacity:.85}
.lv_promo_meta p:first-of-type{font-weight:700}
.lv_promo_cta{font-size:12px; font-weight:700; letter-spacing:.04em; text-transform:uppercase}

.lv_promos_grid_page{
  display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:16px; margin-top:18px
}
@media(max-width:992px){ .lv_promos_grid_page{grid-template-columns:repeat(2,minmax(0,1fr));} }
@media(max-width:640px){ .lv_promos_grid_page{grid-template-columns:1fr;} }
.lv_promo_card_page{
  position:relative; display:block; overflow:hidden; border-radius:16px; text-decoration:none; color:#fff;
  --lv-promo-title-color:#fff;
  --lv-promo-title-bg:rgba(0,0,0,.42);
  --lv-promo-title-shadow:0 2px 10px rgba(0,0,0,.38);
}
.lv_promo_card_page img{width:100%; height:260px; object-fit:cover; display:block; filter:saturate(1.08) brightness(1.04)}
.lv_promo_card_page .lv_promo_meta{
  background:linear-gradient(180deg, rgba(0,0,0,.01) 0%, rgba(0,0,0,.05) 34%, rgba(0,0,0,.24) 76%, rgba(0,0,0,.36) 100%);
}
@media(max-width:640px){
  .lv_promo_card img{
    height:clamp(168px, 46vw, 184px);
    object-position:center 34%;
  }
  .lv_promo_card_page img{
    height:clamp(196px, 58vw, 224px);
    object-position:center 34%;
    filter:saturate(1.1) brightness(1.06);
  }
  .lv_promo_card_page .lv_promo_meta{
    background:linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,.03) 38%, rgba(0,0,0,.16) 74%, rgba(0,0,0,.28) 100%);
  }
  .lv_promo_meta{
    padding:72px 12px 12px 12px;
  }
  .lv_promo_meta h4{
    top:12px;
    width:calc(100% - 24px);
    padding:7px 12px;
    font-size:15px;
  }
  .lv_promo_meta p{
    margin:0 0 6px 0;
    font-size:12px;
  }
}

.lv_package{display:grid; grid-template-columns:1.2fr 1fr; gap:22px; margin-top:16px}
@media(max-width:900px){ .lv_package{grid-template-columns:1fr;} }
.lv_package_media img{width:100%; height:420px; object-fit:cover; border-radius:18px; display:block}
@media(max-width:640px){
  .lv_package{
    gap:16px;
  }
  .lv_package_media img{
    height:clamp(196px, 58vw, 224px);
    object-position:center 34%;
  }
}
.lv_package_info h4{margin:0 0 8px 0; font-size:22px}
.lv_price{font-size:16px; font-weight:700; color:#fff}
.lv_bullets{margin:14px 0 0 18px}
.lv_bullets li{margin:8px 0}
.lv_actions{margin-top:16px; display:flex; flex-wrap:wrap; gap:10px}

.lv_notice{
  padding:14px 16px; border-radius:14px;
  background:rgba(0,0,0,.25); border:1px solid rgba(255,255,255,.12)
}

.lv_quote_modal_overlay{
  position: fixed;
  inset: 0;
  z-index: 11000;
  background: rgba(5,8,15,.62);
  backdrop-filter: blur(4px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.lv_quote_modal{
  width: min(560px, 96vw);
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(12,16,28,.96);
  color: #fff;
  padding: 16px;
  position: relative;
  box-shadow: 0 30px 60px rgba(0,0,0,.45);
}
.lv_quote_modal_close{
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.08);
  color: #fff;
  font-size: 21px;
  line-height: 1;
  cursor: pointer;
}
.lv_quote_modal h4{
  margin: 0 34px 8px 0;
  color: #fff;
}
.lv_quote_modal_text{
  margin: 0 0 12px 0;
  color: rgba(255,255,255,.82);
}
.lv_quote_modal_form{
  display: grid;
  gap: 10px;
}
.lv_quote_modal_form .lv_field{
  display: grid;
  gap: 6px;
}
.lv_quote_modal_form .lv_field span{
  color: rgba(255,255,255,.84);
  font-size: 13px;
}
.lv_quote_modal_form .lv_field input{
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.08);
  color: #fff;
  padding: 10px 12px;
}
@media (max-width: 640px){
  .lv_quote_modal{
    padding: 14px;
  }
}

.lv_client_cards{display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:16px; margin-top:18px}
@media(max-width:992px){ .lv_client_cards{grid-template-columns:repeat(2,minmax(0,1fr));} }
@media(max-width:640px){ .lv_client_cards{grid-template-columns:1fr;} }
.lv_client_card{
  padding:16px; border-radius:16px;
  background:rgba(0,0,0,.25); border:1px solid rgba(255,255,255,.12)
}
.lv_client_card h4{margin:0 0 10px 0}

/* Ajustes menú (mejor dropdown touch) */
.navigation_list .nav > li > a span{display:flex; align-items:center; justify-content:space-between; gap:10px}
.navigation_list .sub_menu{min-width:240px}


/* =========================
   Latido Viajero - Login Panel
   ========================= */
.lv_login_box{margin-top:18px;}
.lv_login_form{display:flex;flex-direction:column;gap:12px;}
.lv_label{display:flex;flex-direction:column;gap:6px;font-size:14px;letter-spacing:.2px;}
.lv_label span{opacity:.85;}
.lv_login_form input{
  width:100%;
  padding:12px 12px;
  border-radius:10px;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(255,255,255,.06);
  color:#fff;
  -webkit-text-fill-color:#fff;
  caret-color:#fff;
  outline:none;
}
.lv_login_form input::placeholder{color:rgba(255,255,255,.55);}

/* Safari/Chrome autofill text visibility fix */
.lv_form input:-webkit-autofill,
.lv_form input:-webkit-autofill:hover,
.lv_form input:-webkit-autofill:focus,
.lv_login_form input:-webkit-autofill,
.lv_login_form input:-webkit-autofill:hover,
.lv_login_form input:-webkit-autofill:focus{
  -webkit-text-fill-color:#fff !important;
  caret-color:#fff;
  box-shadow: 0 0 0px 1000px rgba(18,18,18,0.92) inset;
  transition: background-color 9999s ease-out 0s;
}

/* Focus contrast: texto negro al escribir en formularios */
.lv_form input:focus,
.lv_login_form input:focus,
.lv_field input:focus,
.lv_field select:focus,
.lv_contact_page .photolane_fn_form input[type="text"]:focus,
.lv_contact_page .photolane_fn_form input[type="email"]:focus,
.lv_contact_page .photolane_fn_form input[type="tel"]:focus,
.lv_contact_page .photolane_fn_form input[type="number"]:focus,
.lv_contact_page .photolane_fn_form input[type="date"]:focus,
.lv_contact_page .photolane_fn_form select:focus,
.lv_contact_page .photolane_fn_form textarea:focus,
.lv_admin_form input:focus,
.lv_admin_form select:focus{
  background: #fff !important;
  color: #111 !important;
  -webkit-text-fill-color: #111 !important;
  caret-color: #111 !important;
}

.lv_contact_page .photolane_fn_form textarea:focus::placeholder,
.lv_contact_page .photolane_fn_form input:focus::placeholder,
.lv_form input:focus::placeholder,
.lv_login_form input:focus::placeholder,
.lv_field input:focus::placeholder{
  color: rgba(17,17,17,.45) !important;
}
.lv_btn{
  margin-top:4px;
  padding:12px 14px;
  border-radius:10px;
  border:1px solid rgba(255,255,255,.22);
  background:rgba(0,122,255,.85);
  color:#fff;
  font-weight:600;
  cursor:pointer;
  transition:transform .08s ease, filter .15s ease;
}
.lv_btn:hover{filter:brightness(1.06);}
.lv_btn:active{transform:translateY(1px);}
.lv_status{margin:8px 0 0;font-size:13px;opacity:.9;}
.lv_status.ok{color:#63e6be;}
.lv_status.err{color:#ff8787;}


/* ===========================
   LATIDO VIAJERO - HOME UPGRADE
   =========================== */
.photolane_fn_main_slider{position:relative;}
.lv_home_center{
  position:absolute;
  left:50%;
  top:50%;
  transform:translate(-50%,-50%);
  z-index:60;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:18px;
  text-align:center;
  padding:10px 14px;
}
.lv_home_logo{
  width:min(420px,70vw);
  height:auto;
  filter:drop-shadow(0 12px 28px rgba(0,0,0,.35));
}
.lv_btn_cotiza{
  background:#F73B6D;
  color:#fff;
  padding:10px 18px;
  border-radius:999px;
  font-weight:700;
  letter-spacing:.2px;
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 12px 28px rgba(0,0,0,.25);
  transition:transform .2s ease, filter .2s ease, background .2s ease;
}
.lv_btn_cotiza:hover{
  filter:brightness(1.05);
  transform:translateY(-2px);
}
.lv_nav_promo{
  background:#F73B6D;
  color:#fff !important;
  padding:6px 12px;
  border-radius:999px;
  font-weight:700;
  box-shadow:0 10px 24px rgba(0,0,0,.2);
}
.lv_nav_promo:hover{
  filter:brightness(1.05);
}
@media (max-width: 600px){
  .photolane_fn_horizontal_menu .horizontal_menu_in{
    padding: 10px 12px;
  }
  .photolane_fn_horizontal_menu .logo img{
    max-width: 140px;
  }
  .photolane_fn_horizontal_menu .menu_list > ul > li > a{
    padding: 10px 8px;
  }
  .photolane_fn_horizontal_menu .menu_list > ul > li svg{
    width: 16px;
    height: 16px;
  }
  .photolane_fn_content_in{
    padding-top: 10px;
  }
  .lv_page_body,
  .lv_portal_page .lv_page_body,
  .lv_admin_page .lv_page_body,
  .lv_contact_page .photolane_fn_form,
  .lv_package_page .lv_page_body{
    padding: 16px;
  }
  .lv_page_head h3,
  .lv_destinos_page .lv_page_head h3,
  .lv_nacionales .lv_page_head h3,
  .lv_internacionales .lv_page_head h3,
  .lv_service_page .lv_page_head h3{
    font-size: 22px;
    padding: 8px 12px;
  }
  .lv_service_card{
    padding: 14px;
  }
  .lv_service_meta{
    gap: 8px 12px;
    font-size: 13px;
  }
  .lv_panel{
    padding: 14px;
  }
  .lv_portal_grid{
    grid-template-columns: 1fr;
  }
  .lv_btn_cotiza{
    padding: 10px 16px;
  }
  .lv_home_logo{
    width: min(300px, 78vw);
  }
  body.lv_about .lv_about_toplogo{
    width: min(140px, 42vw);
  }
}

/* ===========================
   LATIDO VIAJERO - CHATBOT FAB (visual placeholder)
   =========================== */
.lv_chatbot_launcher{
  position:fixed;
  right:20px;
  bottom:20px;
  z-index:9998;
  width:58px;
  height:58px;
  border-radius:999px;
  background:rgba(247,59,109,.16);
  border:1px solid rgba(247,59,109,.38);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:26px;
  cursor:pointer;
  backdrop-filter:blur(10px);
  box-shadow:0 18px 40px rgba(0,0,0,.22);
  transition:transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.lv_chatbot_launcher:hover{
  background:rgba(247,59,109,.24);
  transform:translateY(-2px) scale(1.02);
}
.lv_chatbot_launcher.is_open{
  background:rgba(247,59,109,.35);
}
.lv_chatbot_panel{
  position:fixed;
  right:20px;
  bottom:88px;
  width:min(380px,calc(100vw - 24px));
  max-height:min(70vh,620px);
  display:flex;
  flex-direction:column;
  border-radius:16px;
  background:rgba(8,12,22,.92);
  border:1px solid rgba(255,255,255,.18);
  box-shadow:0 24px 48px rgba(0,0,0,.35);
  backdrop-filter:blur(12px);
  z-index:9999;
  overflow:hidden;
}
.lv_chatbot_hidden{
  display:none;
}
.lv_chatbot_head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  padding:12px 14px;
  border-bottom:1px solid rgba(255,255,255,.12);
  color:#fff;
}
.lv_chatbot_close{
  width:30px;
  height:30px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.2);
  background:rgba(255,255,255,.08);
  color:#fff;
  font-size:20px;
  line-height:1;
  cursor:pointer;
}
.lv_chatbot_messages{
  flex:1 1 auto;
  overflow:auto;
  padding:12px;
  display:flex;
  flex-direction:column;
  gap:10px;
}
.lv_chat_msg{
  display:flex;
}
.lv_chat_user{
  justify-content:flex-end;
}
.lv_chat_bot{
  justify-content:flex-start;
}
.lv_chat_bubble{
  max-width:88%;
  padding:9px 11px;
  border-radius:12px;
  font-size:13px;
  line-height:1.42;
}
.lv_chat_user .lv_chat_bubble{
  background:#f73b6d;
  color:#fff;
  border-top-right-radius:4px;
}
.lv_chat_bot .lv_chat_bubble{
  background:rgba(255,255,255,.1);
  color:#f7f8fb;
  border-top-left-radius:4px;
}
.lv_chatbot_form{
  display:flex;
  gap:8px;
  padding:10px;
  border-top:1px solid rgba(255,255,255,.12);
}
.lv_chatbot_form input{
  flex:1 1 auto;
  min-width:0;
  border-radius:10px;
  border:1px solid rgba(255,255,255,.2);
  background:#fff;
  color:#111;
  -webkit-text-fill-color:#111;
  caret-color:#111;
  padding:10px 12px;
  font-size:13px;
}
.lv_chatbot_form input::placeholder{
  color:rgba(17,17,17,.52);
}
.lv_chatbot_form button{
  border:1px solid rgba(255,255,255,.18);
  background:#14367a;
  color:#fff;
  border-radius:10px;
  padding:0 12px;
  font-weight:600;
}
.lv_chatbot_form.is_loading button{
  opacity:.68;
  pointer-events:none;
}
@media (max-width: 640px){
  .lv_chatbot_panel{
    left:8px;
    right:8px;
    width:auto;
    bottom:84px;
    max-height:62vh;
  }
  .lv_chatbot_launcher{
    right:14px;
    bottom:14px;
    width:52px;
    height:52px;
  }
}

/* ===========================
   LATIDO VIAJERO - PWA INSTALL
   =========================== */
.lv_hidden{display:none !important;}

/* ===========================
   LATIDO VIAJERO - COOKIE CONSENT
   =========================== */
.lv_cookie_banner{
  position: fixed;
  left: max(14px, env(safe-area-inset-left, 0px));
  right: max(14px, env(safe-area-inset-right, 0px));
  bottom: calc(18px + env(safe-area-inset-bottom, 0px));
  z-index: 10020;
}
.lv_cookie_hidden{
  display: none !important;
}
.lv_cookie_inner{
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(10,15,28,.94);
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 42px rgba(0,0,0,.32);
  padding: 12px 12px 10px;
}
.lv_cookie_inner p{
  margin: 0;
  color: rgba(255,255,255,.92);
  font-size: 13px;
  line-height: 1.45;
}
.lv_cookie_actions{
  margin-top: 10px;
  display: flex;
  gap: 8px;
}
.lv_cookie_btn{
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 10px;
  min-height: 38px;
  padding: 0 12px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}
.lv_cookie_accept{
  background: linear-gradient(135deg, #ff5f8a 0%, #f73b6d 100%);
  color: #fff;
}
.lv_cookie_reject{
  background: rgba(255,255,255,.08);
  color: #fff;
}
.lv_cookie_manage{
  position: fixed;
  left: max(14px, env(safe-area-inset-left, 0px));
  bottom: calc(18px + env(safe-area-inset-bottom, 0px));
  z-index: 10015;
  display: none;
  border: 1px solid rgba(255,255,255,.24);
  background: rgba(8,14,28,.9);
  color: #fff;
  border-radius: 999px;
  min-height: 34px;
  padding: 0 12px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 14px 34px rgba(0,0,0,.28);
}
@media (max-width: 640px){
  .lv_cookie_banner{
    left: max(10px, env(safe-area-inset-left, 0px));
    right: max(10px, env(safe-area-inset-right, 0px));
    bottom: calc(12px + env(safe-area-inset-bottom, 0px));
  }
  .lv_cookie_inner{
    padding: 10px 10px 9px;
  }
  .lv_cookie_inner p{
    font-size: 12px;
  }
  .lv_cookie_btn{
    flex: 1 1 0;
    min-height: 36px;
    font-size: 11px;
  }
  .lv_cookie_manage{
    left: max(10px, env(safe-area-inset-left, 0px));
    bottom: calc(12px + env(safe-area-inset-bottom, 0px));
    min-height: 32px;
    font-size: 11px;
  }
}

.lv_pwa_install_card{
  position:absolute;
  top:12px;
  left:0;
  right:0;
  z-index:85;
  width:100%;
  margin:0 auto;
  background:transparent;
  border:0;
  border-radius:0;
  padding:0 10px;
  box-sizing:border-box;
  color:#fff;
}
@media (min-width: 821px){
  .lv_pwa_install_card{
    display:none !important;
  }
}
.lv_pwa_install_card.lv_pwa_installed{
  color:#d8ffe9;
}
.lv_pwa_row{
  width:100%;
  max-width:min(1100px,96vw);
  margin:0 auto;
  display:flex;
  align-items:center;
  flex-wrap:nowrap;
  gap:12px;
  min-height:44px;
  padding:6px 12px;
  border-radius:999px;
  background:rgba(6,10,18,.55);
  border:1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(8px);
}
.lv_pwa_badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height:24px;
  min-width:48px;
  padding:0 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.34);
  background:rgba(255,255,255,.14);
  color:#fff;
  font-size:11px;
  font-weight:700;
  letter-spacing:.3px;
  flex:0 0 auto;
}
.lv_pwa_inline_text{
  margin:0;
  min-width:0;
  flex:1 1 auto;
  display:flex;
  align-items:center;
  gap:8px;
  color:#f4f7ff;
}
.lv_pwa_inline_text strong{
  margin:0;
  font-size:15px;
  line-height:1.2;
  color:#fff;
  font-weight:700;
}
.lv_pwa_inline_text span{
  color:rgba(255,255,255,.88);
  font-size:13px;
  white-space:nowrap;
}
.lv_btn_cotiza.lv_pwa_install_btn{
  margin-left:auto;
  flex:0 0 auto;
  padding:8px 16px;
  background:#14367a;
  border:1px solid rgba(255,255,255,.2);
  color:#fff !important;
  box-shadow:none;
  font-size:13px;
  line-height:1;
}
.lv_pwa_status{
  margin:0 0 0 6px !important;
  font-size:12px;
  color:#9ff6c9 !important;
  white-space:nowrap;
  max-width:170px;
  overflow:hidden;
  text-overflow:ellipsis;
}
.lv_pwa_status:empty{
  display:none;
}
@media (max-width: 820px){
  .lv_pwa_install_card{
    top:calc(8px + env(safe-area-inset-top, 0px));
    left:0;
    right:0;
    width:auto;
    padding-left:max(8px, env(safe-area-inset-left, 0px));
    padding-right:max(8px, env(safe-area-inset-right, 0px));
  }
  .lv_pwa_row{
    width:100%;
    max-width:100%;
    min-height:38px;
    padding:6px 8px;
    gap:6px;
    display:grid;
    grid-template-columns:auto minmax(0,1fr) auto;
    align-items:center;
    border-radius:999px;
    overflow:hidden;
  }
  .lv_pwa_inline_text{
    order:0;
    width:100%;
    min-width:0;
    display:block;
  }
  .lv_pwa_inline_text strong{
    font-size:12px;
    display:block;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
  }
  .lv_pwa_inline_text span{
    display:none;
  }
  .lv_pwa_badge{
    font-size:10px;
    height:19px;
    min-width:34px;
    padding:0 6px;
  }
  .lv_btn_cotiza.lv_pwa_install_btn{
    margin-left:auto;
    width:auto;
    justify-content:center;
    padding:7px 11px;
    min-height:30px;
    border-radius:999px;
    font-size:11px;
    letter-spacing:0;
    white-space:nowrap;
  }
  .lv_pwa_status{
    display:none !important;
  }
}

@media (max-width: 430px){
  .lv_pwa_row{
    grid-template-columns:minmax(0,1fr) auto;
    padding:6px 7px;
    gap:7px;
  }
  .lv_pwa_badge{
    display:none;
  }
  .lv_pwa_inline_text strong{
    font-size:11px;
  }
  .lv_btn_cotiza.lv_pwa_install_btn{
    padding:7px 10px;
    font-size:11px;
  }
}

@media (max-width: 360px){
  .lv_pwa_install_card{
    padding-left:max(6px, env(safe-area-inset-left, 0px));
    padding-right:max(6px, env(safe-area-inset-right, 0px));
  }
  .lv_pwa_row{
    min-height:34px;
    padding:5px 6px;
    gap:6px;
  }
  .lv_pwa_inline_text strong{
    font-size:10px;
  }
  .lv_btn_cotiza.lv_pwa_install_btn{
    padding:6px 9px;
    font-size:10px;
  }
}

/* ===========================
   LV - Mobile Vertical Backgrounds
   =========================== */
@media (max-width: 820px){
  .lv_bg_page{
    background-size: cover !important;
    background-attachment: scroll !important;
    background-position: center center !important;
    min-height: 100svh;
  }

  .lv_bg_contact{ background-image: url("../img/mobile-bg/bg-paginas/Contacto/bg.JPG") !important; background-position: 54% center !important; }
  .lv_bg_admin{ background-image: url("../img/mobile-bg/bg-paginas/admin/bg.JPG") !important; background-position: 50% center !important; }
  .lv_bg_clientes{ background-image: url("../img/mobile-bg/bg-paginas/clientes-servicios/bg.JPG") !important; background-position: 50% center !important; }
  .lv_bg_promociones{ background-image: url("../img/mobile-bg/bg-paginas/Promociones/bg.JPG") !important; background-position: 50% center !important; }
  .lv_bg_nacionales{ background-image: url("../img/mobile-bg/bg-paginas/viajes nacionales/bg.JPG") !important; background-position: 56% center !important; }
  .lv_bg_internacionales{ background-image: url("../img/mobile-bg/bg-paginas/viajes internacionales/bg.JPG") !important; background-position: 54% center !important; }
  .lv_bg_boda{ background-image: url("../img/mobile-bg/bg-paginas/boda en la playa/1.jpg") !important; background-position: 52% center !important; }
  .lv_bg_traslados{ background-image: url("../img/mobile-bg/bg-paginas/Traslados/1.JPG") !important; background-position: 56% center !important; }
  .lv_bg_vip{ background-image: url("../img/mobile-bg/bg-paginas/VIP/1.jpg") !important; background-position: 55% center !important; }

  .photolane_fn_main_slider .flexslider ul li .slides_bg.one{ background-image: url(../img/mobile-bg/main_slider/1.jpg) !important; }
  .photolane_fn_main_slider .flexslider ul li .slides_bg.two{ background-image: url(../img/mobile-bg/main_slider/2.jpg) !important; }
  .photolane_fn_main_slider .flexslider ul li .slides_bg.three{ background-image: url(../img/mobile-bg/main_slider/3.jpg) !important; }
  .photolane_fn_main_slider .flexslider ul li .slides_bg.four{ background-image: url(../img/mobile-bg/main_slider/4.jpg) !important; }
  .photolane_fn_main_slider .flexslider ul li .slides_bg.five{ background-image: url(../img/mobile-bg/main_slider/5.jpg) !important; }
  .photolane_fn_main_slider .flexslider ul li .slides_bg{
    background-position: center center !important;
    background-size: cover !important;
  }
}

@media (max-width: 430px){
  .lv_bg_nacionales{ background-position: 58% center !important; }
  .lv_bg_internacionales{ background-position: 57% center !important; }
  .lv_bg_traslados{ background-position: 59% center !important; }
  .lv_bg_vip{ background-position: 58% center !important; }
}

/* ===========================
   LATIDO VIAJERO - ABOUT (page scoped)
   No global overrides (only body.lv_about)
   =========================== */
body.lv_about{
  background-image:url('../img/bg-paginas/Contacto/bg.JPG');
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
  background-attachment:fixed;
}
body.lv_about .background_holder{display:none;}

body.lv_about .photolane_fn_secondary_wrap_in{margin-top:70px;}

/* Top-right logo (half size vs Home) */
body.lv_about .lv_about_toplogo{
  position:fixed;
  top:18px;
  right:18px;
  z-index:120;
  display:block;
  width:min(210px,46vw);
  pointer-events:auto;
}
body.lv_about .lv_about_toplogo img{width:100%;height:auto;display:block;}

/* Image thinner + text aligned to top */
body.lv_about .photolane_fn_secondary_wrap .photer_img{width:42%;}
body.lv_about .photolane_fn_secondary_wrap .photer_full_info{
  width:58%;
  margin-top:0;
  padding:0px 40px;
}

/* Signature small, elegant, centered */
body.lv_about .lv_about_signature{
  width:100%;
  float:left;
  clear:both;
  text-align:center;
  margin:-70px 0 80px;
}
body.lv_about .lv_about_signature img{
  display:inline-block;
  width:auto;
  height:140px;
  opacity:.92;
}
body.lv_about .lv_about_signature h3{
  font-size:18px;
  letter-spacing:.6px;
  margin:10px 0 2px;
  font-weight:500;
}
body.lv_about .lv_about_signature span{
  display:block;
  font-size:11px;
  letter-spacing:4px;
  text-transform:uppercase;
  color:#777;
}

/* About-only responsive safety */
@media (max-width: 979px){
  body.lv_about .lv_about_toplogo{position:absolute;}
  body.lv_about .photolane_fn_secondary_wrap .photer_img{width:100%;}
  body.lv_about .photolane_fn_secondary_wrap .photer_full_info{
    width:100%;
    margin-top:26px;
    padding:0;
  }
  body.lv_about .lv_about_signature{margin:-10px 0 60px;}
}


/* ---------------------------
   AJUSTES ABOUT - Personalizados
   --------------------------- */

/* Reducir el espaciado superior para que el contenido quede más arriba */
.photolane_fn_secondary_wrap_in{
  margin-top: 20px; /* antes estaba en 70px, lo bajamos */
}

/* Fila principal: imagen izquierda - texto derecha */
.photolane_fn_secondary_wrap .about_row{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 20px;
  box-sizing: border-box;
  z-index: 20;
}

/* Columna izquierda: imagen */
.about_left{
  flex: 0 0 36%;
}
.about_left img{
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.18);
}

/* Columna derecha: texto y firma */
.about_right{
  flex: 1 1 56%;
  color: #fff;
  max-width: 520px;
}
.about_right .about_text{
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 14px;
  padding: 16px 18px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.25);
}

/* Firma y bloque inferior (centrado debajo de la fila en diseño amplio) */
.lv_about_signature_wrap{
  margin-top: 30px;
  text-align: center; /* centra firma y nombre */
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Imagen firma */
.lv_about_signature_img{
  display: block;
  margin: 0 auto 6px;
  max-width: 160px;
  height: auto;
  float: none;
  clear: none;
}

/* Nombre y título */
.lv_about_name{
  font-weight: 700;
  color: #000;
  margin-bottom: 0;
  font-size: 18px;
  display: block;
}
.lv_about_title{
  color: rgba(255,255,255,0.75);
  font-size: 14px;
  margin-bottom: 18px;
  text-transform: none;
}
body.lv_about .lv_page_head h3{
  display: inline-block;
  padding: 10px 16px;
  margin: 0 0 12px 0;
  border-radius: 12px;
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  box-shadow: 0 18px 40px rgba(0,0,0,0.25);
}
body.lv_promociones_page .lv_page_head h3{
  display: inline-block;
  padding: 12px 18px;
  margin: 0 0 14px 0;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.22);
  background:
    radial-gradient(circle at 18% 20%, rgba(247,59,109,0.30), transparent 58%),
    radial-gradient(circle at 82% 18%, rgba(255,185,0,0.20), transparent 56%),
    rgba(0,0,0,0.56);
  color: #fff;
  box-shadow: 0 18px 40px rgba(0,0,0,0.25);
  position: relative;
}
body.lv_promociones_page .lv_page_head h3::after{
  content: "DESTACADO";
  position: absolute;
  top: -10px;
  right: 12px;
  font-size: 10px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: .16em;
  color: #ffe7ee;
  background: rgba(247,59,109,0.24);
  border: 1px solid rgba(247,59,109,0.40);
  border-radius: 999px;
  padding: 5px 8px;
}

/* Botón estilo igual que index (usa photolane_fn_btn ya definido) */
a.photolane_fn_btn.cotiza{
  display: inline-block;
  background: #3651ff; /* si el índice usa este color */
  color: #fff;
  padding: 14px 34px;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  transition: transform .12s ease, box-shadow .12s ease;
}
a.photolane_fn_btn.cotiza:hover{
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(54,81,255,0.18);
}

/* Top-right small logo (ajuste) */
.lv_about_toplogo{
  position: fixed;
  top: 18px;
  right: 18px;
  z-index: 120;
  display: block;
}
.lv_about_toplogo img{
  width: 46px;
  height: auto;
  display: block;
}

/* Responsive: apilar en pantallas pequeñas */
@media (max-width: 979px){
  .photolane_fn_secondary_wrap .about_row{
    flex-direction: column;
    padding: 30px 16px;
  }
  .about_left, .about_right{
    flex: 0 0 100%;
    max-width: 100%;
  }
  .lv_about_signature{
    margin: 20px auto;
    max-width: 180px;
  }
  a.photolane_fn_btn.cotiza{
    margin-top: 6px;
  }
}

/* ===========================
   LATIDO VIAJERO - MOBILE PERFECTION
   =========================== */
body.lv_promociones_page a.lv_nav_promo{
  background: linear-gradient(135deg, #ff5f8a 0%, #f73b6d 100%);
  color: #fff !important;
  border: 1px solid rgba(255,255,255,0.45);
}

.lv_bg_page{
  min-height: 100vh;
  min-height: 100svh;
}

.lv_destinos_page .photolane_fn_main_slider .flexslider ul li .slides_bg{
  background-size: cover;
  background-position: center;
}

@media (max-width: 768px){
  .photolane_fn_horizontal_menu .horizontal_menu_in{
    position: sticky;
    top: 0;
    z-index: 120;
    background: rgba(10,10,10,0.88) !important;
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(255,255,255,0.12);
    box-shadow: 0 8px 20px rgba(0,0,0,0.24);
    padding: 10px 12px !important;
  }

  .photolane_fn_horizontal_menu .logo{
    width: auto !important;
    float: left !important;
    text-align: left !important;
  }

  .photolane_fn_horizontal_menu .logo img{
    max-width: 118px !important;
    width: 118px;
    height: auto;
  }

  .photolane_fn_horizontal_menu .menu_list{
    width: auto !important;
    float: right !important;
    text-align: right !important;
  }

  .photolane_fn_horizontal_menu .menu_list > ul{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 2px;
  }

  .photolane_fn_horizontal_menu .menu_list > ul > li > a{
    padding: 10px 8px !important;
  }

  .photolane_fn_horizontal_menu .menu_list > ul > li > a img.svg,
  .photolane_fn_horizontal_menu .menu_list > ul > li > a svg{
    width: 16px !important;
    height: 16px !important;
  }

  .photolane_fn_horizontal_menu span.menu{
    width: 24px;
  }

  .photolane_fn_horizontal_menu span.menu span.b{
    width: 24px;
  }

  .photolane_fn_horizontal_menu span.menu span.a,
  .photolane_fn_horizontal_menu span.menu span.c{
    width: 16px;
    margin-left: 4px;
  }

  .photolane_fn_horizontal_menu .navigation_list,
  .photolane_fn_horizontal_menu .profile_res_info{
    background: rgba(8,8,8,0.96) !important;
    border-top: 1px solid rgba(255,255,255,0.08);
  }

  .photolane_fn_horizontal_menu .navigation_list{
    max-height: calc(100svh - 60px);
    overflow-y: auto;
  }

  .photolane_fn_horizontal_menu .profile_res_info{
    max-height: calc(100svh - 60px);
    overflow-y: auto;
  }

  .navigation_list ul.nav{
    margin-bottom: 10px;
  }

  .navigation_list ul.nav > li{
    margin-bottom: 12px;
  }

  .navigation_list ul.nav > li > a{
    display: block;
    padding: 10px 12px;
    border-radius: 10px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
  }

  .navigation_list .sub_menu{
    margin-left: 0;
    padding-left: 10px;
    border-left: 1px solid rgba(255,255,255,0.14);
  }

  .navigation_list ul.nav > li > a.lv_nav_promo{
    display: inline-flex !important;
    width: auto !important;
    max-width: max-content !important;
    padding: 7px 11px !important;
    border-radius: 8px;
    background: #F73B6D !important;
    border: 1px solid rgba(255,255,255,0.20);
    color: #fff !important;
    box-shadow: 0 4px 12px rgba(247,59,109,0.22);
    font-size: inherit !important;
    font-weight: inherit !important;
    line-height: 1.15 !important;
    white-space: nowrap;
    vertical-align: top;
  }

  .navigation_list ul.nav > li > a.lv_nav_promo span{
    color: #fff !important;
    font-weight: inherit !important;
    letter-spacing: inherit !important;
    line-height: inherit !important;
    font-size: inherit !important;
  }

  body.lv_promociones_page .navigation_list ul.nav > li > a.lv_nav_promo{
    box-shadow: 0 6px 14px rgba(247,59,109,0.28);
    transform: none;
  }

  .lv_bg_page{
    background-attachment: scroll;
    background-position: center top;
    background-size: cover;
  }

  .lv_destinos_page .photolane_fn_main_slider,
  .lv_destinos_page .photolane_fn_main_slider .flexslider,
  .lv_destinos_page .photolane_fn_main_slider .flexslider .slides,
  .lv_destinos_page .photolane_fn_main_slider .flexslider .slides > li,
  .lv_destinos_page .photolane_fn_content_in{
    min-height: 100svh;
  }
}

/* ===========================
   LATIDO VIAJERO - MOBILE FIXES (round 2)
   =========================== */
@media (max-width: 768px){
  /* Header: logo mucho mas pequeno y bien esquinado */
  .photolane_fn_horizontal_menu .horizontal_menu_in{
    padding: 8px 10px !important;
  }

  .photolane_fn_horizontal_menu .logo{
    margin: 0 !important;
    padding: 0 !important;
  }

  .photolane_fn_horizontal_menu .logo > a{
    display: block;
    line-height: 0;
  }

  .photolane_fn_horizontal_menu .logo img{
    width: 58px !important;
    max-width: 58px !important;
  }

  .photolane_fn_horizontal_menu .menu_list > ul > li > a{
    padding: 9px 7px !important;
  }

  /* Destinos/servicios: que el bloque de contenido fluya y los botones no se pierdan */
  .lv_destinos_page .lv_slider_intro{
    position: absolute !important;
    left: 12px !important;
    right: 12px !important;
    top: 72px !important;
    bottom: 16px !important;
    max-width: none !important;
    width: auto;
    margin: 0;
    z-index: 22;
    overflow-y: auto;
    padding-right: 2px;
  }

  .lv_destinos_page .photolane_fn_content_in{
    padding-top: 0 !important;
    min-height: 100svh;
  }

  .lv_destinos_page .lv_page_body,
  .lv_destinos_page .lv_page_head h3{
    backdrop-filter: blur(4px);
  }

  .lv_destinos_page .lv_actions,
  .lv_service_page .lv_actions,
  .lv_internacionales .lv_actions,
  .lv_nacionales .lv_actions{
    width: 100%;
    margin-top: 14px;
    align-items: stretch;
    justify-content: center;
  }

  .lv_destinos_page .lv_actions a,
  .lv_service_page .lv_actions a,
  .lv_internacionales .lv_actions a,
  .lv_nacionales .lv_actions a{
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box;
    text-align: center;
    justify-content: center;
    display: flex;
    min-height: 46px;
    padding: 12px 14px !important;
    line-height: 1.2;
    white-space: normal;
    word-break: break-word;
  }

  .lv_btn_cotiza.lv_btn_outline{
    background: #F73B6D !important;
    color: #fff !important;
    border: 1px solid rgba(255,255,255,0.24);
    box-shadow: 0 10px 24px rgba(0,0,0,.20);
  }

  /* Cotizaciones + Contacto: fondo movil igual de limpio que promociones */
  body.lv_nacionales.lv_bg_page,
  body.lv_internacionales.lv_bg_page,
  body.lv_contact_page.lv_bg_page{
    background-attachment: scroll !important;
    background-size: cover !important;
    background-position: center center !important;
    min-height: 100svh;
  }

  .lv_nacionales .photolane_fn_content_in,
  .lv_internacionales .photolane_fn_content_in,
  .lv_contact_page .photolane_fn_content_in{
    min-height: 100svh;
  }

  /* Contacto: apilar columnas y limpiar espaciados */
  .lv_contact_page .container{
    width: 100%;
    padding-left: 12px;
    padding-right: 12px;
    box-sizing: border-box;
  }

  .lv_contact_page .photolane_fn_content_in{
    padding-top: 70px !important;
  }

  .lv_contact_page .photolane_fn_contact{
    margin-top: 0;
  }

  .lv_contact_page .photolane_fn_contact_form_wrap,
  .lv_contact_page .contact_form{
    width: 100%;
  }

  .lv_contact_page .photolane_fn_form{
    padding: 18px 14px !important;
    border-radius: 14px;
  }

  .lv_contact_page .photolane_fn_form h3{
    font-size: 24px !important;
    line-height: 1.15;
    margin-bottom: 8px;
  }

  .lv_contact_page .photolane_fn_form > p{
    font-size: 13px !important;
    line-height: 1.5;
    letter-spacing: .2px;
    margin-bottom: 16px !important;
    max-width: none;
  }

  .lv_contact_page .photolane_fn_form form{
    display: block;
  }

  .lv_contact_page .photolane_fn_form form [class*="fl-col-"]{
    width: 100% !important;
    float: none !important;
    margin: 0 0 12px 0 !important;
    padding: 0 !important;
  }

  .lv_contact_page .photolane_fn_form form .last{
    margin-right: 0 !important;
  }

  .lv_contact_page .photolane_fn_form form > div{
    margin-bottom: 12px !important;
  }

  .lv_contact_page .photolane_fn_form form .your-message{
    margin-top: 2px;
  }

  .lv_contact_page .photolane_fn_form textarea{
    min-height: 132px;
    resize: vertical;
  }

  .lv_contact_page .photolane_fn_form .button{
    margin-top: 4px;
    margin-bottom: 8px;
  }

  .lv_contact_page .photolane_fn_form .button .lv_btn_cotiza{
    width: 100%;
    max-width: 100%;
    min-height: 48px;
    border-radius: 12px;
    box-sizing: border-box;
  }

  .lv_contact_page .returnmessage,
  .lv_contact_page .empty_notice{
    font-size: 13px;
    line-height: 1.4;
  }
}

/* ===========================
   LATIDO VIAJERO - NATIONAL QUOTE SEARCH (Amadeus)
   =========================== */
.lv_quote_search{
  display: grid;
  gap: 18px;
}
.lv_quote_tabs{
  display: inline-flex;
  gap: 8px;
  padding: 6px;
  border-radius: 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  width: fit-content;
  max-width: 100%;
}
.lv_quote_tab{
  border: 1px solid transparent;
  background: transparent;
  color: rgba(255,255,255,0.85);
  border-radius: 10px;
  padding: 10px 14px;
  font-weight: 600;
  cursor: pointer;
}
.lv_quote_tab:hover{
  background: rgba(255,255,255,0.06);
}
.lv_quote_tab.is-active{
  background: linear-gradient(135deg, #ff5f8a 0%, #f73b6d 100%);
  color: #fff;
  border-color: rgba(255,255,255,0.28);
  box-shadow: 0 10px 22px rgba(247,59,109,0.25);
}
.lv_quote_panel{
  display: none;
}
.lv_quote_panel.is-active{
  display: block;
}
.lv_quote_form,
.lv_quote_results_wrap{
  background: rgba(0,0,0,0.38);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 16px 36px rgba(0,0,0,0.18);
}
.lv_quote_header h4,
.lv_quote_results_head h4{
  margin: 0 0 6px 0;
  color: #fff;
  font-size: 20px;
}
.lv_quote_header p,
.lv_quote_results_head p{
  margin: 0;
  color: rgba(255,255,255,0.82);
  font-size: 13px;
  line-height: 1.55;
}
.lv_quote_grid{
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.lv_field{
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.lv_field span{
  color: rgba(255,255,255,0.88);
  font-size: 12px;
  letter-spacing: .4px;
  text-transform: uppercase;
}
.lv_field input,
.lv_field select{
  width: 100%;
  padding: 12px 12px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.08);
  color: #fff;
  min-height: 44px;
  box-sizing: border-box;
}
.lv_field select option{
  color: #111;
}
.lv_field input::placeholder{
  color: rgba(255,255,255,0.55);
}
.lv_field input:focus,
.lv_field select:focus{
  border-color: rgba(247,59,109,0.65);
  box-shadow: 0 0 0 3px rgba(247,59,109,0.14);
}
.lv_field_switch{
  justify-content: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 10px 12px;
}
.lv_field_switch input[type="checkbox"]{
  width: 20px;
  height: 20px;
  min-height: 20px;
  margin: 0;
  accent-color: #f73b6d;
}
.lv_quote_actions{
  display: flex;
  gap: 10px;
  margin-top: 14px;
}
.lv_quote_actions .lv_btn_cotiza{
  border: none;
  cursor: pointer;
}
.lv_quote_actions .lv_btn_cotiza[disabled]{
  opacity: .65;
  cursor: wait;
}
.lv_quote_status{
  margin-top: 10px;
  min-height: 20px;
  font-size: 13px;
  color: rgba(255,255,255,0.86);
}
.lv_quote_status.ok{ color: #9bf4c0; }
.lv_quote_status.err{ color: #ffb3bd; }
.lv_quote_status.loading{ color: #fff1a8; }

.lv_quote_results_wrap{
  margin-top: 0;
}
.lv_quote_results{
  margin-top: 14px;
  display: grid;
  gap: 14px;
}
.lv_flight_card{
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 14px;
}
.lv_flight_card_head{
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 12px;
}
.lv_flight_label{
  margin: 0 0 4px 0;
  color: rgba(255,255,255,0.72);
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.lv_flight_card_head h5{
  margin: 0;
  color: #fff;
  font-size: 18px;
}
.lv_flight_price{
  text-align: right;
  min-width: 130px;
}
.lv_flight_price span{
  display: block;
  color: rgba(255,255,255,0.75);
  font-size: 12px;
}
.lv_flight_price strong{
  display: block;
  color: #fff;
  font-size: 20px;
  line-height: 1.2;
}
.lv_itinerary{
  background: rgba(0,0,0,0.2);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 12px;
  margin-bottom: 10px;
}
.lv_itinerary:last-of-type{
  margin-bottom: 0;
}
.lv_itinerary_head{
  display: flex;
  justify-content: space-between;
  gap: 8px;
  color: #fff;
  margin-bottom: 10px;
  font-size: 13px;
}
.lv_itinerary_head strong{font-weight: 700;}
.lv_itinerary_head span{color: rgba(255,255,255,0.78);}
.lv_itinerary_body{
  display: grid;
  gap: 8px;
}
.lv_seg{
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 10px;
}
.lv_seg_top{
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  margin-bottom: 6px;
}
.lv_seg_top strong{
  color: #fff;
  font-size: 13px;
}
.lv_seg_top span{
  color: rgba(255,255,255,0.74);
  font-size: 12px;
}
.lv_seg_route{
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 13px;
  flex-wrap: wrap;
}
.lv_seg_arrow{
  opacity: .7;
}
.lv_seg_meta{
  margin-top: 6px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  color: rgba(255,255,255,0.76);
  font-size: 12px;
}
.lv_flight_footer{
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  color: rgba(255,255,255,0.75);
  font-size: 12px;
}
.lv_hotel_card{
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 14px;
}
.lv_hotel_card_head{
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 12px;
}
.lv_hotel_card_head h5{
  margin: 0;
  color: #fff;
  font-size: 18px;
}
.lv_hotel_sub{
  margin: 4px 0 0;
  color: rgba(255,255,255,0.7);
  font-size: 12px;
}
.lv_hotel_grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 8px;
}
.lv_hotel_chip{
  background: rgba(0,0,0,0.2);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 10px;
}
.lv_hotel_chip span{
  display: block;
  font-size: 11px;
  color: rgba(255,255,255,0.72);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: .6px;
}
.lv_hotel_chip strong{
  color: #fff;
  font-size: 13px;
  line-height: 1.3;
}
.lv_hotel_desc{
  margin: 10px 0 0;
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  line-height: 1.5;
}
.lv_hotel_booking{
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.lv_hotel_book_btn{
  min-width: 140px;
}
.lv_flight_book_btn{
  min-width: 190px;
}
.lv_hotel_book_form{
  margin-top: 10px;
  padding: 12px;
  border-radius: 12px;
  background: rgba(0,0,0,0.22);
  border: 1px solid rgba(255,255,255,0.08);
}
.lv_hotel_book_form .lv_quote_grid{
  margin-top: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.lv_hotel_book_form .lv_quote_actions{
  margin-top: 10px;
}
.lv_flight_book_form .lv_quote_grid{
  margin-top: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 1100px){
  .lv_quote_grid{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 820px){
  .lv_quote_grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .lv_hotel_grid{
    grid-template-columns: repeat(2, minmax(0,1fr));
  }
  .lv_flight_book_btn{
    min-width: 100%;
  }
  .lv_flight_book_form .lv_quote_grid{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px){
  .lv_quote_tabs{
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .lv_quote_form,
  .lv_quote_results_wrap{
    padding: 14px;
    border-radius: 14px;
  }
  .lv_quote_grid{
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .lv_quote_actions{
    flex-direction: column;
  }
  .lv_quote_actions .lv_btn_cotiza{
    width: 100%;
    justify-content: center;
  }
  .lv_flight_card_head{
    flex-direction: column;
    align-items: stretch;
  }
  .lv_hotel_card_head{
    flex-direction: column;
    align-items: stretch;
  }
  .lv_flight_price{
    text-align: left;
    min-width: 0;
  }
  .lv_hotel_grid{
    grid-template-columns: 1fr;
  }
  .lv_seg_route{
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  .lv_seg_arrow{
    display: none;
  }
}

/* ===========================
   LV - Forms/Login polish
   =========================== */
.lv_admin_form textarea,
.lv_admin_form input[type="file"]{
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.08);
  color: #fff;
  padding: 12px;
  box-sizing: border-box;
}
.lv_admin_form textarea{
  min-height: 96px;
  resize: vertical;
}
.lv_admin_form input[type="file"]{
  padding: 10px;
}
.lv_admin_form textarea::placeholder{
  color: rgba(255,255,255,.6);
}
.lv_admin_form textarea:focus,
.lv_admin_form input[type="file"]:focus{
  background:#fff !important;
  color:#111 !important;
  -webkit-text-fill-color:#111 !important;
  caret-color:#111 !important;
  outline:none;
}

.lv_form .lv_btn,
.lv_login_form .lv_btn{
  background: linear-gradient(135deg, #ff5f8a 0%, #f73b6d 100%) !important;
  border-color: rgba(247,59,109,.8) !important;
  color: #fff !important;
}

.photolane_fn_profile_prev .social_icon,
.profile_res_info .social_icons.lv_social_keep{
  display: none !important;
}
.photolane_fn_profile_prev .title_holder p{
  display: none !important;
}

/* Login fields remain white text (user request) */
.lv_form#lv-login-form input,
.lv_login_form input{
  background: rgba(255,255,255,.08) !important;
  color: #fff !important;
  -webkit-text-fill-color:#fff !important;
  caret-color:#fff !important;
  border-color: rgba(255,255,255,.18) !important;
}

/* Cotizaciones nacionales: mantener login visual igual al resto */
body.lv_nacionales .profile_res_info .lv_form#lv-login-form input,
body.lv_nacionales .photolane_fn_profile_prev .lv_login_form input{
  background: rgba(255,255,255,.08) !important;
  color:#fff !important;
  -webkit-text-fill-color:#fff !important;
  caret-color:#fff !important;
  border-color: rgba(255,255,255,.18) !important;
}
body.lv_nacionales .profile_res_info .lv_form#lv-login-form input::placeholder,
body.lv_nacionales .photolane_fn_profile_prev .lv_login_form input::placeholder{
  color: rgba(255,255,255,.62) !important;
}

/* Premium mobile spacing polish across all pages */
@media (max-width: 640px){
  .photolane_fn_secondary_wrap,
  .photolane_fn_contact,
  .lv_page_body{
    padding-left: 12px !important;
    padding-right: 12px !important;
  }
  .lv_panel,
  .lv_notice,
  .lv_quote_form,
  .lv_quote_results_wrap{
    border-radius: 14px !important;
  }
  .lv_btn,
  .lv_btn_cotiza{
    min-height: 44px;
  }
}
.lv_form#lv-login-form input::placeholder,
.lv_login_form input::placeholder{
  color: rgba(255,255,255,.62) !important;
}
.lv_form#lv-login-form input:focus,
.lv_login_form input:focus{
  background: rgba(255,255,255,.12) !important;
  color:#fff !important;
  -webkit-text-fill-color:#fff !important;
  caret-color:#fff !important;
}

/* Contact page specific text in black (Nombre completo / Título / Mensaje) */
.lv_contact_page #name,
.lv_contact_page #message-title,
.lv_contact_page #message{
  color: #111 !important;
  -webkit-text-fill-color:#111 !important;
  caret-color:#111 !important;
}
.lv_contact_page #name::placeholder,
.lv_contact_page #message-title::placeholder,
.lv_contact_page #message::placeholder{
  color: rgba(17,17,17,.72) !important;
}

@media (max-width: 820px){
  .lv_form input,
  .lv_login_form input,
  .lv_field input,
  .lv_field select,
  .lv_admin_form input,
  .lv_admin_form select,
  .lv_admin_form textarea,
  .lv_contact_page .photolane_fn_form input[type="text"],
  .lv_contact_page .photolane_fn_form input[type="email"],
  .lv_contact_page .photolane_fn_form input[type="tel"],
  .lv_contact_page .photolane_fn_form input[type="number"],
  .lv_contact_page .photolane_fn_form input[type="date"],
  .lv_contact_page .photolane_fn_form select,
  .lv_contact_page .photolane_fn_form textarea{
    background: #fff !important;
    color: #111 !important;
    -webkit-text-fill-color: #111 !important;
    caret-color: #111 !important;
    border-color: rgba(0,0,0,.12) !important;
  }
  .lv_form input::placeholder,
  .lv_login_form input::placeholder,
  .lv_field input::placeholder,
  .lv_contact_page .photolane_fn_form input::placeholder,
  .lv_contact_page .photolane_fn_form textarea::placeholder,
  .lv_admin_form textarea::placeholder{
    color: rgba(17,17,17,.52) !important;
  }
  .lv_form input:-webkit-autofill,
  .lv_form input:-webkit-autofill:hover,
  .lv_form input:-webkit-autofill:focus,
  .lv_login_form input:-webkit-autofill,
  .lv_login_form input:-webkit-autofill:hover,
  .lv_login_form input:-webkit-autofill:focus,
  .lv_field input:-webkit-autofill,
  .lv_field input:-webkit-autofill:hover,
  .lv_field input:-webkit-autofill:focus{
    -webkit-text-fill-color:#111 !important;
    box-shadow: 0 0 0 1000px #fff inset !important;
    caret-color:#111 !important;
  }
  .lv_form#lv-login-form input:-webkit-autofill,
  .lv_form#lv-login-form input:-webkit-autofill:hover,
  .lv_form#lv-login-form input:-webkit-autofill:focus,
  .lv_login_form input:-webkit-autofill,
  .lv_login_form input:-webkit-autofill:hover,
  .lv_login_form input:-webkit-autofill:focus{
    -webkit-text-fill-color:#fff !important;
    box-shadow: 0 0 0 1000px rgba(18,18,18,0.92) inset !important;
    caret-color:#fff !important;
  }
  .lv_form#lv-login-form input,
  .lv_login_form input{
    background: rgba(255,255,255,.08) !important;
    color:#fff !important;
    -webkit-text-fill-color:#fff !important;
    caret-color:#fff !important;
    border-color: rgba(255,255,255,.18) !important;
  }
  .lv_hotel_book_form .lv_quote_grid{
    grid-template-columns: 1fr;
  }
}

/* ===========================
   LV - Management Dashboard
   =========================== */
.lv_mgmt_cards{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:14px;
  margin: 14px 0 20px;
}
.lv_mgmt_card{
  border-radius: 14px;
  padding: 14px;
  background: rgba(0,0,0,.24);
  border: 1px solid rgba(255,255,255,.12);
}
.lv_mgmt_card span{
  display:block;
  color: rgba(255,255,255,.78);
  font-size: 12px;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: .6px;
}
.lv_mgmt_card strong{
  display:block;
  color:#fff;
  font-size: 24px;
  line-height: 1.2;
}
@media (max-width: 1000px){
  .lv_mgmt_cards{ grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 640px){
  .lv_mgmt_cards{ grid-template-columns: 1fr; }
}
.lv_mgmt_maps{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap:18px;
  margin-top: 8px;
}
.lv_mgmt_map_panel{
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  padding: 18px;
  background:
    radial-gradient(circle at top left, rgba(99,210,255,.16), transparent 34%),
    radial-gradient(circle at bottom right, rgba(255,99,146,.10), transparent 28%),
    linear-gradient(145deg, rgba(5,10,22,.94), rgba(6,14,31,.88) 54%, rgba(6,19,42,.94));
  border: 1px solid rgba(110,203,255,.18);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.06),
    0 20px 44px rgba(0,0,0,.30);
}
.lv_mgmt_map_panel::before{
  content:"";
  position:absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(255,255,255,.04), transparent 24%, transparent 76%, rgba(255,255,255,.03)),
    repeating-linear-gradient(90deg, rgba(123,214,255,.05) 0 1px, transparent 1px 84px);
  pointer-events:none;
}
.lv_mgmt_map_head{
  position: relative;
  z-index: 1;
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:16px;
}
.lv_mgmt_map_titles h5{
  margin: 0;
  color:#f5fbff;
  font-size:24px;
  line-height:1.1;
  letter-spacing: -.02em;
}
.lv_mgmt_map_titles p{
  margin: 6px 0 0;
  color: rgba(224,241,255,.76);
  font-size: 13px;
  line-height: 1.45;
}
.lv_mgmt_map_stats{
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  gap:8px;
  min-width: 150px;
}
.lv_mgmt_map_stat{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height: 36px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(9,18,38,.78);
  border: 1px solid rgba(117,213,255,.18);
  color:#f5fbff;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05);
}
.lv_mgmt_map_stat_sub{
  color: rgba(213,236,255,.82);
  font-weight: 600;
}
.lv_mgmt_map_canvas{
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin-top: 16px;
  border-radius: 22px;
  padding: 12px;
  background:
    linear-gradient(180deg, rgba(4,13,31,.96), rgba(6,18,42,.86)),
    radial-gradient(circle at top center, rgba(91,193,255,.12), transparent 52%);
  border: 1px solid rgba(108,202,255,.24);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.05),
    inset 0 0 0 1px rgba(76,169,255,.07),
    0 16px 28px rgba(0,0,0,.24);
}
.lv_mgmt_svg_map{
  width:100%;
  height:auto;
  display:block;
  aspect-ratio: 520 / 320;
  min-height: 0;
  filter: drop-shadow(0 16px 20px rgba(0,0,0,.22));
}
.lv_mgmt_svg_map.is-empty{
  opacity: .98;
}
.lv_mgmt_map_empty{
  position:absolute;
  inset: auto 14px 14px 14px;
  display:grid;
  gap:4px;
  padding: 12px 14px;
  border-radius: 14px;
  text-align:left;
  background: linear-gradient(180deg, rgba(4,13,28,.60), rgba(6,17,36,.78));
  border: 1px solid rgba(125,215,255,.16);
  box-shadow: 0 14px 28px rgba(0,0,0,.20);
  backdrop-filter: blur(8px);
  pointer-events:none;
}
.lv_mgmt_map_empty strong{
  display:block;
  color:#f5fbff;
  font-size:13px;
  line-height:1.35;
}
.lv_mgmt_map_empty span{
  display:block;
  color: rgba(219,239,255,.76);
  font-size: 11px;
  line-height: 1.45;
}
.lv_mgmt_map_legend{
  position: relative;
  z-index: 1;
  margin-top: 14px;
  display:grid;
  gap:8px;
}
.lv_mgmt_map_legend_head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom: 2px;
}
.lv_mgmt_map_legend_head span{
  color: rgba(223,239,255,.74);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.lv_mgmt_map_legend_head strong{
  color:#fff;
  font-size: 13px;
}
.lv_mgmt_map_legend_item{
  display:grid;
  grid-template-columns: 10px minmax(0,1fr) auto;
  align-items:center;
  gap:10px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(116,211,255,.12);
}
.lv_mgmt_map_legend_dot{
  width:10px;
  height:10px;
  border-radius:999px;
  box-shadow: 0 0 0 4px rgba(255,255,255,.04);
}
.lv_mgmt_map_legend_name{
  min-width:0;
  color:#f2faff;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.lv_mgmt_map_legend_amount{
  color: rgba(224,244,255,.86);
  font-size: 12px;
  font-weight: 700;
}
.lv_mgmt_map_legend_empty{
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255,255,255,.04);
  border: 1px dashed rgba(120,213,255,.18);
}
.lv_mgmt_map_legend_empty_kicker{
  display:block;
  color: rgba(204,232,255,.66);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .1em;
}
.lv_mgmt_map_legend_empty strong{
  display:block;
  margin-top: 6px;
  color:#f3fbff;
  font-size: 13px;
  line-height: 1.45;
}
@media (max-width: 820px){
  .lv_mgmt_maps{ grid-template-columns: 1fr; }
  .lv_mgmt_map_head{
    flex-direction: column;
  }
  .lv_mgmt_map_stats{
    width: 100%;
    flex-direction: row;
    align-items: stretch;
    justify-content: flex-start;
    flex-wrap: wrap;
    min-width: 0;
  }
  .lv_mgmt_map_stat{
    white-space: normal;
  }
}
@media (max-width: 640px){
  .lv_mgmt_map_panel{
    padding: 14px;
    border-radius: 18px;
  }
  .lv_mgmt_map_titles h5{
    font-size: 21px;
  }
  .lv_mgmt_map_canvas{
    padding: 8px;
    border-radius: 18px;
  }
  .lv_mgmt_map_empty{
    inset: auto 10px 10px 10px;
    text-align:center;
  }
  .lv_mgmt_map_legend_item{
    grid-template-columns: 10px minmax(0,1fr);
  }
  .lv_mgmt_map_legend_amount{
    grid-column: 2;
    padding-left: 0;
  }
}

/* Contact/Cotizaciones: asegurar textos guía visibles sobre fondos grises */
body.lv_bg_page .photolane_fn_form .lv_form_note,
body.lv_bg_page .photolane_fn_form .lv_form_note *,
body.lv_bg_page .photolane_fn_form .lv_form_label,
body.lv_bg_page .photolane_fn_form .lv_field_help,
body.lv_bg_page .photolane_fn_form .lv_check_label,
body.lv_bg_page .photolane_fn_form .lv_check_label *,
body.lv_bg_page .photolane_fn_form .returnmessage,
body.lv_bg_page .photolane_fn_form .returnmessage *,
body.lv_bg_page .photolane_fn_form .empty_notice,
body.lv_bg_page .photolane_fn_form .empty_notice *{
  color: #fff !important;
}

/* Fallback fuerte: contacto con cualquier combinación de clases en body */
.photolane_fn_form .lv_form_note,
.photolane_fn_form .lv_form_note *,
.photolane_fn_form .lv_form_label,
.photolane_fn_form .lv_field_help,
.photolane_fn_form .lv_check_label,
.photolane_fn_form .lv_check_label *,
.contact_form .lv_form_note,
.contact_form .lv_form_note *,
.contact_form .lv_form_label,
.contact_form .lv_field_help,
.contact_form .lv_check_label,
.contact_form .lv_check_label *,
.contact_form .returnmessage,
.contact_form .returnmessage *,
.contact_form .empty_notice,
.contact_form .empty_notice *{
  color: #fff !important;
}
