
/*** 

====================================================================
	Fonts
====================================================================

 ***/

@import url('https://fonts.googleapis.com/css2?family=Sansita:ital,wght@0,400;0,700;0,800;0,900;1,400;1,700;1,800;1,900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


/*** 

====================================================================
	Reset
====================================================================

 ***/

*{
	margin:0px;
	padding:0px;
	border:none;
	outline:none;
	font-size: 100%;
}

/*** 

====================================================================
	Global Settings
====================================================================

 ***/

body {
	
	font-size:14px;
	color:#787878;
	line-height:1.6em;
	font-weight:400;
	background:#ffffff;
	-webkit-font-smoothing: antialiased;
	-moz-font-smoothing: antialiased;
	font-family: 'Sansita', sans-serif;
}

.dark-layout{
	background-color:#1a1a1a;
}

a{
	text-decoration:none;
	cursor:pointer;
}



h1,h2,h3,h4,h5,h6 {
	position:relative;
	font-weight:normal;
	margin:0px;
	background:none;
	line-height:1.2em;
	letter-spacing: -0.02em;
	font-family: 'Sansita', sans-serif;
}

textarea{
	overflow:hidden;	
}

button{
	outline: none !important;
	cursor: pointer;
}

p{
	font-size: 16px;
	line-height: 1.6em;
	font-weight: 400;
	color: #555555;
}

.text{
	font-size: 16px;
	line-height: 1.6em;
	font-weight: 400;
	color: #555555;
	margin: 0;
}

::-webkit-input-placeholder{color: inherit;}
::-moz-input-placeholder{color: inherit;}
::-ms-input-placeholder{color: inherit;}

.auto-container{
	position:static;
	max-width:1210px;
	padding:0px 20px;
	margin:0 auto;
}

.large-container{
	position:static;
	max-width:1600px;
	padding:0px 15px;
	margin:0 auto;
}

/*.page-wrapper{
	position:relative;
	margin:0 auto;
	width:100%;
	min-width:300px;
	overflow: hidden;
	z-index: 9;
}*/

ul,li{
	list-style:none;
	padding:0px;
	margin:0px;	
}

.theme-btn{
	display:inline-block;
	-webkit-transition:all 0.3s ease;
	-moz-transition:all 0.3s ease;
	-ms-transition:all 0.3s ease;
	-o-transition:all 0.3s ease;
	transition:all 0.3s ease;
}

.theme-btn i{
	position: relative;
	display: inline-block;
	font-size: 14px;
	margin-left: 3px;
}

.centered{
	text-align:center !important;
}

/*Btn Style One*/

.btn-style-one{
	position: relative;
	display: inline-block;
	font-size: 13px;
	line-height: 30px;
	color: #242424;
	padding: 8px 26px;
	font-weight: 600;
	overflow: hidden;
	letter-spacing:3px;
	background-color: #dfb162;
	text-transform: uppercase;
	font-family: 'Sansita', sans-serif;
}

.btn-style-one .txt{
	position:relative;
	z-index:1;
}

.btn-style-one:before{
	position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0;
    background-color: #ffffff;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    -webkit-transform: scale(0.5, 1);
    transform: scale(0.5, 1);
}

.btn-style-one:hover::before{
    opacity: 1;
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
}

.btn-style-one:hover{
	color: #242424;
}

/* Btn Style Two */

.btn-style-two{
	position: relative;
	display: inline-block;
	font-size: 13px;
	line-height: 30px;
	color: #242424;
	padding: 10px 37px;
	font-weight: 600;
	overflow: hidden;
	letter-spacing:2px;
	background-color: #ffffff;
	text-transform: uppercase;
	transition: all 600ms ease;
    -moz-transition: all 600ms ease;
    -webkit-transition: all 600ms ease;
    -ms-transition: all 600ms ease;
    -o-transition: all 600ms ease;
	font-family: 'Sansita', sans-serif;
}

.btn-style-two .txt{
	position:relative;
	z-index:1;
}

.btn-style-two:before{
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
	right: -50px;
	transition: all 600ms ease;
    -moz-transition: all 600ms ease;
    -webkit-transition: all 600ms ease;
    -ms-transition: all 600ms ease;
    -o-transition: all 600ms ease;
    border-right: 50px solid transparent;
    border-bottom: 80px solid #dfb162;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
}

.btn-style-two:hover::before{
    -webkit-transform: translateX(-49%);
    transform: translateX(-49%);
}

.btn-style-two:after{
	content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: -50px;
	transition: all 600ms ease;
    -moz-transition: all 600ms ease;
    -webkit-transition: all 600ms ease;
    -ms-transition: all 600ms ease;
    -o-transition: all 600ms ease;
    border-left: 50px solid transparent;
    border-top: 80px solid #dfb162;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
}

.btn-style-two:hover::after{
    -webkit-transform: translateX(49%);
    transform: translateX(49%);
}

.btn-style-two:hover{
	color: #ffffff;
}

/* Btn Style Three */

.btn-style-three{
	position: relative;
	display: inline-block;
	font-size: 22px;
	line-height: 30px;
	padding: 14px 45px;
	font-weight: 700;
	overflow: hidden;
	letter-spacing:1px;
	border-radius:3px;
	background-color: #101010;
	text-transform: capitalize;
	color: rgba(255,255,255,0.30);
	font-family: 'Sansita', sans-serif;
	border:1px solid rgba(255,255,255,0.10);
	box-shadow:0px 0px 15px rgba(0,0,0,0.15);
}

.btn-style-three .txt{
	position:relative;
	z-index:1;
}

.btn-style-three:before{
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
	right: -50px;
	transition: all 600ms ease;
    -moz-transition: all 600ms ease;
    -webkit-transition: all 600ms ease;
    -ms-transition: all 600ms ease;
    -o-transition: all 600ms ease;
    border-right: 50px solid transparent;
    border-bottom: 80px solid #dfb162;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
}

.btn-style-three:hover::before{
    -webkit-transform: translateX(-49%);
    transform: translateX(-49%);
}

.btn-style-three:after{
	content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: -50px;
	transition: all 600ms ease;
    -moz-transition: all 600ms ease;
    -webkit-transition: all 600ms ease;
    -ms-transition: all 600ms ease;
    -o-transition: all 600ms ease;
    border-left: 50px solid transparent;
    border-top: 80px solid #dfb162;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
}

.btn-style-three:hover::after{
    -webkit-transform: translateX(49%);
    transform: translateX(49%);
}

.btn-style-three .txt{
	position:relative;
}

.btn-style-three:hover{
	color: #ffffff;
}

/* Btn Style Four */

.btn-style-four{
	position: relative;
	display: inline-block;
	font-size: 13px;
	line-height: 30px;
	color: #ffffff;
	padding: 9px 37px;
	font-weight: 600;
	overflow: hidden;
	letter-spacing:2px;
	background-color: #dfb162;
	text-transform: uppercase;
	font-family: 'Sansita', sans-serif;
}

.btn-style-four .txt{
	position:relative;
	z-index:1;
}

.btn-style-four:before{
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
	right: -50px;
	transition: all 600ms ease;
    -moz-transition: all 600ms ease;
    -webkit-transition: all 600ms ease;
    -ms-transition: all 600ms ease;
    -o-transition: all 600ms ease;
    border-right: 50px solid transparent;
    border-bottom: 80px solid #222222;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
}

.btn-style-four:hover::before{
    -webkit-transform: translateX(-49%);
    transform: translateX(-49%);
}

.btn-style-four:after{
	content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: -50px;
	transition: all 600ms ease;
    -moz-transition: all 600ms ease;
    -webkit-transition: all 600ms ease;
    -ms-transition: all 600ms ease;
    -o-transition: all 600ms ease;
    border-left: 50px solid transparent;
    border-top: 80px solid #222222;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
}

.btn-style-four:hover::after{
    -webkit-transform: translateX(49%);
    transform: translateX(49%);
}

.btn-style-four .txt{
	position:relative;
}

.btn-style-four:hover{
	color: #ffffff;
}

/*=== List Style One ===*/

.list-style-one{
	position:relative;
}

.list-style-one li{
	position:relative;
	font-size:16px;
	line-height:24px;
	color: #242424;
	font-weight:400;
	padding-left:32px;
	margin-bottom: 12px;
}

.list-style-one li:before{
	position: absolute;
	left: 0;
	top: 0;
	font-size: 14px;
	line-height: 24px;
	color: #242424;
	content: "✔";
	font-weight:700;
	font-family: "Flaticon";
}

.list-style-one li a:hover{
	color: #44bce2;
}

/*=== List Style Two ===*/

.list-style-two{
	position:relative;
}

.list-style-two li{
	position:relative;
	font-size:16px;
	line-height:24px;
	color: #797979;
	font-weight:400;
	margin-bottom: 14px;
}

/*=== List Style Three ===*/

.list-style-three{
	position:relative;
}

.list-style-three li{
	position:relative;
	font-size:20px;
	line-height:24px;
	color: #242424;
	font-weight:400;
	padding-left:32px;
	margin-bottom: 16px;
	font-family: 'Rufina', serif;
}

.list-style-three li:before{
	position: absolute;
	left: 0;
	top: 0;
	font-size: 14px;
	line-height: 24px;
	color: #ffb600;
	content: "\f176";
	font-weight:700;
	font-family: "Flaticon";
}

.list-style-three li a:hover{
	color: #44bce2;
}

/*=== List Style Four ===*/

.list-style-four{
	position:relative;
}

.list-style-four li{
	position:relative;
	font-size:20px;
	line-height:24px;
	color: #797979;
	font-weight:700;
	margin-bottom: 16px;
	font-family: 'Rufina', serif;
}

.theme_color{
	color:#dfb162;
}

.pull-right{
	float: right;
}

.pull-left{
	float: left;
}



img{
	display:inline-block;
	max-width:100%;
	height:auto;	
}

.dropdown-toggle::after{
	display: none;
}

.fa{
	line-height: inherit;
}

/*** 

====================================================================
	Scroll To Top style
====================================================================

***/

.scroll-to-top{
	position:fixed;
	bottom:20px;
	right:20px;
	width:48px;
	height:48px;
	color:#ffffff;
	font-size:20px;
	line-height:48px;
	text-align:center;
	z-index:100;
	cursor:pointer;
	background:#1b1a1c;
	display:none;
	border-radius: 5px;
	-webkit-transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
	transition:all 300ms ease;
}

.scroll-to-top:hover{
	background:#dfb162;
}

/*** 

====================================================================
	Main Header style
====================================================================

***/

.main-header{
	position:relative;
	left:0px;
	top:0px;
	right:0px;
	display: block;
	z-index: 99999;
}

.main-header .header-top{
	position: relative;
	background-color:#009cc4;
	border-bottom:1px solid rgba(255,255,255,0.10);
}

.main-header .header-top .top-right{
	position: relative;
	float: right;
}

.main-header .header-top .info-list{
	position: relative;
	float:left;
}

.main-header .header-top .info-list li{
	position: relative;
	float: left;
	font-size: 14pt;
	line-height: 30px;
	color: #fff;
	font-weight: 400;
	padding: 10px 0px;
}

.main-header .header-top .info-list li a{
	position:relative;
	color: #fff;
	margin-right: 18px;
	padding-right:18px;
	border-right:1px solid #fff;
	-webkit-transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
	transition:all 300ms ease;
	font-family: 'Sansita', sans-serif;
}

.main-header .header-top .info-list li:last-child a{
	margin-right:0px;
	padding-right:0px;
	border:none;
}

.main-header .header-top .info-list li a:hover{
	color:#ffffff;
}

.main-header .header-top .info-list li.quote a{
	position:relative;
	color:#fbda05;
	font-weight:500;
	letter-spacing:1px;
	text-transform:uppercase;
}

/* Dropdown Language */

.main-header .language{
	position:relative;
	float:left;
	padding:13px 0px;
	margin-left:28px;
}

.main-header .language .dropdown-menu{
	top:100%;
	left:0px;
	width:180px;	
	border-radius:0px;
	margin-top:13px;
	background-color:#222222;
	border:none;
	padding:0px;
    border-top:3px solid #dfb162;
}

.main-header .language > a{
	position:relative;
	color:#d4c0cd;
	border:0px;
	font-size:15px;
	padding:0px 0px;
	border-radius:0px;
	background:none !important;
}

.main-header language a:hover{
	background:none;
}

.main-header .language > a:focus{
	box-shadow:none;
}

.main-header .language .dropdown-menu > li{
	padding:0px !important;
	margin:0px !important;
	float:none;
	width:100%;
	display:block !important;
    border-bottom: 1px solid rgba(255,255,255,0.20);
}

.main-header .language .dropdown-menu > li:last-child{
	border-bottom:none;	
}

.main-header .language .dropdown-menu > li > a{
	padding:10px 18px;
	color:#ffffff !important;
	text-align:left;
	display:block;
	font-size:14px;
	-webkit-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	transition:all 300ms ease;
}

.main-header .language .dropdown-menu > li > a:hover{
	color:#ffffff !important;
	background-color:#dfb162;
}

/* Top Right*/

.main-header .header-top .top-left{
	position: relative;
	/*float: left;*/
	text-align: center;
	padding: 12px;
}

.main-header .header-top .top-left .text{
	position: relative;
	display: block;
	font-size: 48pt;
	line-height: 27px;
	color: #fff;
	z-index:1;
	font-weight: 400;
	padding: 12px 0px;
	font-family: 'Sansita', sans-serif;
}

.main-header .header-top .top-left .text .icon{
	position:relative;
	color:#9a8b94;
	font-size:16px;
	line-height:1em;
	margin-right:10px;
}

.main-header .header-top .top-left .text .number{
	color:#fbda05;
	font-size:18px;
	font-weight:500;
	-webkit-transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
	transition:all 300ms ease;		
}

.main-header .header-top .top-left .text .number:hover{
	color:#ffffff;
}

.main-header .header-top .top-right{
	position:relative;
	float:right;
}

/*=== Header Upper ===*/

.main-header .header-upper{
	position:relative;
	width:100%;
	top: 0;
	z-index:5;
	/*background-color: rgba(2,168,0,0.85);*/
}

.header-style-one .header-upper{
	position:relative;
	left:0;
	top:auto;
	padding: 5px;
}

.main-header .header-upper .logo-outer{
	position:relative;
	float: left;
	z-index:25;
	padding: 5px 0px;
	-webkit-transition:all 600ms ease;
	-moz-transition:all 600ms ease;
	-ms-transition:all 600ms ease;
	-o-transition:all 600ms ease;
	transition:all 600ms ease;
}

.main-header .logo-outer .logo img{
	position:relative;
	display:inline-block;
	max-width:100%;
}

.main-header .header-upper .nav-outer{
	position:relative;
	float: right;
}

/*=== Header Lower ===*/

.main-header .header-lower{
	position: relative;
	-webkit-transition:all 600ms ease;
	-moz-transition:all 600ms ease;
	-ms-transition:all 600ms ease;
	-o-transition:all 600ms ease;
	transition:all 600ms ease;
}

.main-menu{
	position:relative;
	float:left;
}

.main-menu .navbar-collapse{
	padding:0px;	
}

.main-menu .navigation{
	position:relative;
	margin:0px;
	font-family: 'Sansita', sans-serif;
}

.main-menu .navigation > li{
	position:relative;
	float:left;
	padding:22px 0px;
	margin-right: 28px;
	-webkit-transition:all 600ms ease;
	-moz-transition:all 600ms ease;
	-ms-transition:all 600ms ease;
	-o-transition:all 600ms ease;
	transition:all 600ms ease;
}

.main-menu .navigation > li:last-child{
	margin-right:0px;
}

.main-menu .navigation > li > a{
	position:relative;
	display:block;
	text-align:center;
	font-size:14pt;
	line-height:35px;
	font-weight:400;
	opacity:1;
	color:#ffffff;
	padding: 0px;
	text-transform:none;
	-webkit-transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
	transition:all 300ms ease;
	font-family: 'Sansita', sans-serif;
}

.main-menu .navigation > li:hover > a,
.main-menu .navigation > li.current > a{
	color: #fbda05;
}

.main-menu .navigation > li > ul{
	position:absolute;
	left:0px;
	top:100%;
	width:240px;
	z-index:100;
	opacity: 1;
	padding: 10px 0;
	background:#161616;
	border-top: 1px solid #dfb162;
	-webkit-transform: translateY(50px);
	-ms-transform: translateY(50px);
	transform: translateY(50px);
	-webkit-transition:all 300ms linear;
	-moz-transition:all 300ms linear;
	-ms-transition:all 300ms linear;
	-o-transition:all 300ms linear;
	transition:all 300ms linear;
}

.main-menu .navigation > li > ul > li{
	position:relative;
	width:100%;
	padding:0 25px;
}

.main-menu .navigation > li > ul > li > a{
	position:relative;
	display:block;
	padding:12px 0px;
	line-height:20px;
	font-weight:400;
	font-size:15px;
	text-align:left;
	color:rgba(255,255,255,0.90);
	border-bottom: 1px solid rgba(255,255,255,0.10);
	text-transform:capitalize;
	-webkit-transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	transition:all 300ms ease;
}

.main-menu .navigation > li > ul > li:last-child > a{
	border-bottom: 0;
}

.main-menu .navigation > li > ul > li:hover > a{
	color: #dfb162;
	padding-left: 15px;
}

.main-menu .navigation > li > ul > li > a:before{
	position: absolute;
	left: 0;
	top: 12px;
	font-size: 14px;
	line-height: 20px;
	color: #dfb162;
	opacity: 0;
	visibility: hidden;
	font-family: 'Font Awesome 5 Free';
	content: "\f105";
	font-weight: 800;
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
}

.main-menu .navigation > li > ul > li:hover > a:before{
	opacity: 1;
	visibility: visible;
}

.main-menu .navigation > li > ul > li.dropdown > a:after{
	font-family: 'Font Awesome 5 Free';
	content: "\f105";
	font-weight: 800;
	position:absolute;
	right:0px;
	top:12px;
	width:10px;
	display:block;
	line-height:20px;
	font-size:14px;
	text-align:center;
	z-index:5;	
}

.main-menu .navigation > li > ul > li > ul{
	position:absolute;
	left:100%;
	top: -20px;
	width:240px;
	z-index:100;
	opacity: 1;
	padding: 10px 0;
	background:#161616;
	border-top: 1px solid #dfb162;
	-webkit-transform: translateX(50px);
	-ms-transform: translateX(50px);
	transform: translateX(50px);
	-webkit-transition:all 300ms linear;
	-moz-transition:all 300ms linear;
	-ms-transition:all 300ms linear;
	-o-transition:all 300ms linear;
	transition:all 300ms linear;
}

.main-menu .navigation > li > ul > li > ul > li{
	position:relative;
	width:100%;
	padding:0 25px;
}

.main-menu .navigation > li > ul > li > ul > li > a{
	position:relative;
	display:block;
	padding:12px 0px;
	line-height:20px;
	font-weight:400;
	font-size:15px;
	text-align:left;
	color:rgba(255,255,255,0.90);
	border-bottom: 1px solid rgba(255,255,255,0.10);
	text-transform:capitalize;
	-webkit-transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	transition:all 300ms ease;
}

.main-menu .navigation > li > ul > li  > ul > li > a:hover{
	color: #dfb162;
	padding-left: 15px;
}

.main-menu .navigation > li > ul > li  > ul > li:last-child > a{
	border-bottom: 0;
}

.main-menu .navigation > li > ul > li  > ul > li > a:before{
	position: absolute;
	left: 0;
	top: 12px;
	font-size: 14px;
	line-height: 20px;
	color: #dfb162;
	opacity: 0;
	visibility: hidden;
	font-family: 'Font Awesome 5 Free';
	content: "\f105";
	font-weight: 800;
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
}

.main-menu .navigation > li > ul > li  > ul > li:hover > a:before{
	opacity: 1;
	visibility: visible;

}

.main-menu .navigation > li.dropdown:hover > ul{
	-webkit-transform: translateY(0px);
	-ms-transform: translateY(0px);
	transform: translateY(0px);
	visibility:visible;
	opacity:1;
	top: 100%;
}

.main-menu .navigation li > ul > li.dropdown:hover > ul{
	visibility:visible;
	opacity:1;
	-webkit-transform: translateX(0px);
	-ms-transform: translateX(0px);
	transform: translateX(0px);
}

.main-menu .navbar-collapse > ul li.dropdown .dropdown-btn{
	position:absolute;
	right:10px;
	top:8px;
	width:34px;
	height:30px;
	border:1px solid #ffffff;
	text-align:center;
	font-size:18px;
	font-weight:700;
	line-height:28px;
	background:#ffffff;
	color:#dfb162;
	cursor:pointer;
	z-index:5;
	display:none;
}

.main-header .outer-box{
	position: relative;
	float: right;
}

.main-header .outer-box .search-box-btn{
	position: relative;
	float: right;
	color:#ffffff;
	padding: 29px 0px;
	margin-left: 25px;
	font-size:18px;
	cursor:pointer;
	-webkit-transition:all 600ms ease;
	-moz-transition:all 600ms ease;
	-ms-transition:all 600ms ease;
	-o-transition:all 600ms ease;
	transition:all 600ms ease;
}

.main-header .outer-box .search-box-btn .icon{
	padding-left:20px;
	border-left:1px solid #888989;
}

.main-header .outer-box .btn-box{
	position:relative;
	float:right;
}

.main-header .outer-box .btn-box .quote-btn{
	position: relative;
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
    padding: 20px 45px;
	line-height: 23px;
    background-color: #000000;
    font-family: 'Sansita', sans-serif;
}

.header-style-one.fixed-header .header-upper,
.header-style-one.fixed-header .header-lower,
.header-style-three.fixed-header .header-upper,
.header-style-three.fixed-header .header-lower{
    position: fixed;
    left: 0px;
    top: 0px;	
}

.fixed-header .header-upper .logo-outer{
	padding:0px 0px;
}

.fixed-header .main-menu .navigation > li{
	padding:17px 0px;
}

.fixed-header .outer-box .search-box-btn{
	padding:24px 0px;
}

/* Header Style Two */

.header-style-two{
	position:relative;
	margin-bottom:80px;
}

.header-style-two .header-upper{
	position:fixed;
	width:100%;
	background:#1a1a1a;
}

.header-style-two .outer-container{
	padding:0px 90px 0px;
}

/* Header Style Three */

.header-style-three{
	position:relative;
	margin-bottom:80px;
}

.header-style-three .header-upper{
	background:none;
	position:absolute;
	left:0;
	top:51px;
	width:100%;
}

.header-style-three.fixed-header .header-upper{
	background-color:#ffffff;
	border-bottom:1px solid #f9f9f9;
}

.header-style-three .main-menu .navigation > li > a{
	color:#242424;
}

.header-style-three .outer-box .search-box-btn{
	color:#242424;
}

.header-style-four{
	position:relative;
	margin-bottom:80px;
}

.header-style-four .header-upper{
	position:fixed;
	left:0;
	top:0;
	background-color:#1b1b1b;
}

/* Header Style Five */

.header-style-five{
	position:relative;
}

.header-style-five .header-upper{
	position:relative;
	padding:17px 0px;
	background:url(../images/background/4.jpg) repeat;
}

.header-style-five .header-lower{
	position:absolute;
	width:100%;
	top:100%;
	background:none;
}

.header-style-five .header-lower .nav-outer{
	background-color:#dfb162;
}

.header-style-five .header-upper .info-outer{
	position:relative;
	float:right;
	padding-top:13px;
}

.header-style-five.fixed-header .header-upper .logo-outer{
	padding:5px 0px;
}

.header-style-five .header-upper .info-outer .info-box{
	position:relative;
	float:left;
	padding-left:45px;
}

.header-style-five .header-upper .info-outer .info-box .icon{
	position:absolute;
	left:0px;
	top:17px;
	color:#898989;
	font-size:24px;
	line-height:1em;
}

.header-style-five .header-upper .info-outer .info-box .text{
	position:relative;
	color:#8e8e8e;
	font-size:15px;
	font-weight:400;
	font-family: 'Sansita', sans-serif;
}

.header-style-five .header-upper .info-outer .info-box .text strong{
	font-weight:400;
	color:#9d9d9d;
	display:block;
}

.header-style-five .header-upper .info-outer .info-box .number{
	font-weight:600;
	color:#dfb162;
	font-size:22px;
	margin-top:6px;
	display:inline-block;
}

.header-style-five .main-menu .navigation > li{
	padding:14px 32px;
	margin:0px;
}

.header-style-five .main-menu .navigation > li:before{
	position:absolute;
	content:'';
	right:0px;
	top:0px;
	width:2px;
	height:100%;
	background:url(../images/icons/separator.jpg) no-repeat;
}

.header-style-five .main-menu .navigation > li > a{
	color:#242424;
	font-size:16px;
	font-weight:500;
	font-family: 'Sansita', sans-serif;
}

.header-style-five .outer-box .search-box-btn{
	color:#242424;
	padding:20px 25px;
}

.header-style-five .outer-box .search-box-btn .icon{
	border:none;
	padding-left:0px;
}

.header-style-five .fixed-outer{
	position:relative;
	top:0%;
	left:0%;
	width:100%;
}

.header-style-five.fixed-header .fixed-outer{
	position:fixed;
}



/*** 

====================================================================
			Mobile Menu
====================================================================

***/

.nav-outer .mobile-nav-toggler{
	position: relative;
	font-size: 36px;
	line-height: 40px;
	cursor: pointer;
	color:#fbda05;
	padding:20px 0px 0px;
	display: none;
}

.mobile-menu{
	position: fixed;
	right: 0;
	top: 0;
	width: 300px;
	padding-right:30px;
	max-width:100%;
	height: 100%;
	opacity: 0;
	visibility: hidden;
	z-index: 999999;
}

.mobile-menu .mCSB_inside>.mCSB_container{
	margin-right:5px;	
}

.mobile-menu .navbar-collapse{
	display:block !important;	
}

.mobile-menu .nav-logo{
	position:relative;
	padding:30px 25px;
	text-align:left;	
}

.mobile-menu-visible{
	overflow: hidden;
}

.mobile-menu-visible .mobile-menu{
	opacity: 1;
	visibility: visible;
}

.mobile-menu .menu-backdrop{
	position: fixed;
	right: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	background:#dfb162;
	-webkit-transform: translateX(101%);
	-ms-transform: translateX(101%);
	transform: translateX(101%);
	transition: all 900ms ease;
    -moz-transition: all 900ms ease;
    -webkit-transition: all 900ms ease;
    -ms-transition: all 900ms ease;
    -o-transition: all 900ms ease;
}

.mobile-menu-visible .mobile-menu .menu-backdrop{
	opacity: 0.70;
	visibility: visible;
	-webkit-transition:all 0.7s ease;
	-moz-transition:all 0.7s ease;
	-ms-transition:all 0.7s ease;
	-o-transition:all 0.7s ease;
	transition:all 0.7s ease;
	-webkit-transform: translateX(0%);
	-ms-transform: translateX(0%);
	transform: translateX(0%);
}

.mobile-menu .menu-box{
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	max-height: 100%;
	overflow-y: auto;
	background: #02a800;
	padding: 0px 0px;
	z-index: 5;
	opacity: 0;
	visibility: hidden;
	border-radius: 0px;
	-webkit-transform: translateX(101%);
	-ms-transform: translateX(101%);
	transform: translateX(101%);
}

.mobile-menu-visible .mobile-menu .menu-box{
	opacity: 1;
	visibility: visible;
	-webkit-transition:all 0.7s ease;
	-moz-transition:all 0.7s ease;
	-ms-transition:all 0.7s ease;
	-o-transition:all 0.7s ease;
	transition:all 0.7s ease;
	-webkit-transform: translateX(0%);
	-ms-transform: translateX(0%);
	transform: translateX(0%);
}

.mobile-menu .close-btn{
	position: absolute;
	right: 10px;
	top: 10px;
	line-height: 30px;
	width: 24px;
	text-align: center;
	font-size: 16px;
	color: #ffffff;
	cursor: pointer;
	z-index: 10;
	-webkit-transition:all 0.9s ease;
	-moz-transition:all 0.9s ease;
	-ms-transition:all 0.9s ease;
	-o-transition:all 0.9s ease;
	transition:all 0.9s ease;
}

.mobile-menu-visible .mobile-menu .close-btn{
	-webkit-transform:rotate(360deg);
	-ms-transform:rotate(360deg);
	transform:rotate(360deg);
}

.mobile-menu .close-btn:hover{
	color:#dfb162;
	-webkit-transform:rotate(90deg);
	-ms-transform:rotate(90deg);
	transform:rotate(90deg);
}

.mobile-menu .navigation{
	position: relative;
	display: block;
	width: 100%;
	float: none;
	font-family: 'Sansita', sans-serif;
}

.mobile-menu .navigation li{
	position: relative;
	display: block;
	border-top: 1px solid rgba(255,255,255,0.10);
}

.mobile-menu .navigation:last-child{
	border-bottom: 1px solid rgba(255,255,255,0.10);
}

.mobile-menu .navigation li > ul > li:first-child{
	border-top: 1px solid rgba(255,255,255,0.10);
}

.mobile-menu .navigation li > a{
	position: relative;
	display: block;
	line-height: 24px;
	padding: 10px 25px;
	font-size: 14px;
	font-weight: 400;
	color: #ffffff;
	text-transform: uppercase;
	-webkit-transition: all 500ms ease;
	-moz-transition: all 500ms ease;
	-ms-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	transition: all 500ms ease;	
}

.mobile-menu .navigation li ul li > a{
	font-size: 14px;
	margin-left: 20px;
	text-transform: capitalize;
}

.mobile-menu .navigation li > a:before{
	content:'';
	position:absolute;
	left:0;
	top:0;
	height:0;
	border-left:5px solid #fbda05;
	-webkit-transition: all 500ms ease;
	-moz-transition: all 500ms ease;
	-ms-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	transition: all 500ms ease;	
}

.mobile-menu .navigation li.current > a,
.mobile-menu .navigation li > a:hover{
	color:#fbda05;	
}

.mobile-menu .navigation li.current > a:before{
	height:100%;
}

.mobile-menu .navigation li.dropdown .dropdown-btn{
	position:absolute;
	right:6px;
	top:6px;
	width:32px;
	height:32px;
	text-align:center;
	font-size:16px;
	line-height:32px;
	color:#ffffff;
	background:rgba(255,255,255,0.10);
	cursor:pointer;
	border-radius:2px;
	-webkit-transition: all 500ms ease;
	-moz-transition: all 500ms ease;
	-ms-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	transition: all 500ms ease;	
	z-index:5;
}

.mobile-menu .navigation li.dropdown .dropdown-btn.open{
	background:#dfb162;	
	-webkit-transform:rotate(90deg);
	-ms-transform:rotate(90deg);
	transform:rotate(90deg);	
}

.mobile-menu .navigation li > ul,
.mobile-menu .navigation li > ul > li > ul{
	display: none;
}

.mobile-menu .social-links{
	position:relative;
	text-align:center;
	padding:30px 25px;
}

.mobile-menu .social-links li{
	position:relative;
	display:inline-block;
	margin:0px 10px 10px;
}

.mobile-menu .social-links li a{
	position:relative;
	line-height:32px;
	font-size:16px;
	color:#ffffff;
	-webkit-transition: all 500ms ease;
	-moz-transition: all 500ms ease;
	-ms-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	transition: all 500ms ease;	
}

.mobile-menu .social-links li a:hover{
	color:#dfb162;	
}


/*** 

====================================================================
	Main Slider INICIO
====================================================================



.main-slider{
	position:relative;
}

.main-slider.style-two .slide{
	padding:200px 0px 250px;
}

.main-slider.style-three .slide{
	padding:190px 0px 220px;
}

.main-slider.style-four .slide{
	padding:210px 0px 165px;
}

.main-slider.style-two:before{
	position:absolute;
	content:'';
	left:0px;
	top:0px;
	width:70px;
	height:100%;
	z-index:10;
	background-color:#1a1a1a;
}

.main-slider.style-two:after{
	position:absolute;
	content:'';
	right:0px;
	top:0px;
	width:70px;
	height:100%;
	z-index:10;
	background-color:#1a1a1a;
}

.main-slider .social-icons{
	position:absolute;
	left:25px;
	bottom:0px;
	z-index:11;
	text-align:center;
}

.main-slider .social-icons li{
	position:relative;
	margin-bottom:12px;
}

.main-slider .social-icons li:last-child{
	margin-bottom:0px;
}

.main-slider .social-icons li a{
	position:relative;
	font-size:14px;
	color:#6f6f70;
	transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	-webkit-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
}

.main-slider .social-icons li a:hover{
	color:#ffffff;
}

.main-slider .slide{
	position:relative;
	padding:170px 0px 210px;
	background-size:cover;
	background-repeat:no-repeat;
	background-position:center center;
}

.main-slider .slide .image-layer{
	position:absolute;
	left:0;
	top:0;
	width:100%;
	height:100%;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	-webkit-transform:scale(1);
	-ms-transform:scale(1);
	transform:scale(1);
	-webkit-transition: all 6000ms linear;
	-moz-transition: all 6000ms linear;
	-ms-transition: all 6000ms linear;
	-o-transition: all 6000ms linear;
	transition: all 6000ms linear;
}

.main-slider .active .slide .image-layer{
	-webkit-transform:scale(1.15);
	-ms-transform:scale(1.15);
	transform:scale(1.15);
}

.main-slider .content{
	position:relative;
	z-index:10;
}

.main-slider .content h2{
	position:relative;
	color:#ffffff;
	font-size:62px;
	font-weight:700;
	line-height:1.1em;
	opacity: 0;
	-webkit-transition: all 1000ms ease;
	-moz-transition: all 100ms ease;
	-ms-transition: all 1000ms ease;
	-o-transition: all 1000ms ease;
	transition: all 1000ms ease;
	-webkit-transform: translateY(80px);
	-moz-transform: translateY(80px);
	-ms-transform: translateY(80px);
	-o-transform: translateY(80px);
	transform: translateY(80px);
}

.main-slider .active .content h2{
	opacity: 1;
	-webkit-transform: translateX(0);
	-moz-transform: translateX(0);
	-ms-transform: translateX(0);
	-o-transform: translateX(0);
	transform: translateX(0);
	transition-delay: 1000ms;
}

.main-slider .content .text{
	position:relative;
	color:#ffffff;
	font-size:18px;
	font-weight:300;
	line-height:1.8em;
	margin-top:35px;
	margin-bottom:40px;
	opacity: 0;
	max-width:570px;
	font-family: 'Sansita', sans-serif;
	-webkit-transition: all 1000ms ease;
	-moz-transition: all 100ms ease;
	-ms-transition: all 1000ms ease;
	-o-transition: all 1000ms ease;
	transition: all 1000ms ease;
	-webkit-transform: translateY(80px);
	-moz-transform: translateY(80px);
	-ms-transform: translateY(80px);
	-o-transform: translateY(80px);
	transform: translateY(80px);
}

.main-slider .active .content .text{
	opacity: 1;
	-webkit-transform: translateX(0);
	-moz-transform: translateX(0);
	-ms-transform: translateX(0);
	-o-transform: translateX(0);
	transform: translateX(0);
	transition-delay: 1800ms;
}

.main-slider .content .theme-btn{
	opacity: 0;
	-webkit-transition: all 1000ms ease;
	-moz-transition: all 100ms ease;
	-ms-transition: all 1000ms ease;
	-o-transition: all 1000ms ease;
	transition: all 1000ms ease;
	-webkit-transform: translateY(80px);
	-moz-transform: translateY(80px);
	-ms-transform: translateY(80px);
	-o-transform: translateY(80px);
	transform: translateY(80px);
}

.main-slider .active .content .theme-btn{
	opacity: 1;
	-webkit-transform: translateX(0);
	-moz-transform: translateX(0);
	-ms-transform: translateX(0);
	-o-transform: translateX(0);
	transform: translateX(0);
	transition-delay: 2200ms;
}

.main-slider .owl-nav{
	position:absolute;
	left:0;
	top:50%;
	margin-top:-25px;
	width:100%;
	height:0;
	opacity:0;
	-webkit-transition:all 0.3s ease;
	-moz-transition:all 0.3s ease;
	-ms-transition:all 0.3s ease;
	-o-transition:all 0.3s ease;
	transition:all 0.3s ease;	
}

.main-slider:hover .owl-nav{
	opacity:1;	
}

.main-slider .owl-next{
	position:absolute;
	right:0px;
	top:0px;
	width:50px;
	height:60px;
	font-size:24px;
	line-height:50px;
	border-radius:5px 0px 0px 5px;
	opacity:0.70;
	text-align:center;
	color:#353535;
	background-image:none;
	-webkit-transition:all 0.5s ease;
	-moz-transition:all 0.5s ease;
	-ms-transition:all 0.5s ease;
	-o-transition:all 0.5s ease;
	transition:all 0.5s ease;
	background-color:rgba(255,255,255,0.90);
}

.main-slider .owl-prev{
	position:absolute;
	top:0;
	left:0px;
	width:50px;
	height:60px;
	font-size:24px;
	line-height:50px;
	border-radius:0px 5px 5px 0px;
	opacity:0.70;
	text-align:center;
	color:#353535;
	-webkit-transition:all 0.5s ease;
	-moz-transition:all 0.5s ease;
	-ms-transition:all 0.5s ease;
	-o-transition:all 0.5s ease;
	transition:all 0.5s ease;
	background-image:none;
	background-color:rgba(255,255,255,0.90);
}

.main-slider .owl-next:hover,
.main-slider .owl-prev:hover{
	background:#02a800;
	opacity:1;	
	color: #fff;
}

.main-slider .owl-dots{
	position:absolute;
	left:0;
	bottom:30px;
	width:100%;
	text-align:center;	
}

.main-slider .owl-dots .owl-dot{
	position:relative;
	display:inline-block;
	width:14px;
	height:14px;
	margin:0px 4px;	
}

.main-slider .owl-dots .owl-dot span{
	position:relative;
	display:block;
	width:14px;
	height:14px;
	background:	rgba(255,255,255,0.90);
	border-radius:50%;
}

.main-slider .owl-dots .owl-dot.active span{
	background:#02a800;	
}
***/
/*** 

====================================================================
	FOOTER
====================================================================

***/

.main-footer{
	font-family: 'Barlow Condensed', sans-serif;
	position:relative;
	background-color:#35c300;
}

.main-footer .widgets-section{
	position:relative;
	padding:30px 0px 0px;
}

.main-footer .footer-widget{
	position:relative;
	margin-bottom:30px;
	text-align: center;
}

.main-footer .footer-widget h2{
	position:relative;
	font-size:20px;
	font-weight:400;
	color:#ffffff;
	padding-bottom:16px;
	margin-bottom:20px;
	text-transform:capitalize;
}

.main-footer .footer-widget h2:after{
	position:absolute;
	content:'';
	left:0px;
	bottom:0px;
	width:30px;
	height:1px;
	background-color:#dfb162;
}

.main-footer .logo-widget{
	position:relative;
}

.main-footer .logo-widget .logo{
	position:relative;
	margin-bottom:12px;
}

.main-footer .logo-widget .text{
	position:relative;
	color:#a8a8a8;
	font-size:14px;
	font-weight:400;
	padding-right:60px;
	margin-bottom:35px;
	line-height:1.9em;
}

.main-footer .logo-widget .social-icons{
	position:relative;
}

.main-footer .logo-widget .social-icons li{
	position:relative;
	margin-right:10px;
	display:inline-block;
}

.main-footer .logo-widget .social-icons li a{
	position:relative;
	width:36px;
	height:36px;
	font-size:14px;
	text-align:center;
	border-radius:50%;
	line-height:34px;
	color:#ffffff;
	font-weight:400;
	display:inline-block;
	border:1px solid rgba(255,255,255,0.30);
	-webkit-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	transition:all 300ms ease;
}

.main-footer .logo-widget .social-icons li a:hover{
	color:#dfb162;
	border-color:#dfb162;
}

.footer_im{
	text-align: center;
	color: #fff;
	font-size: 15pt;
	margin: 0% 0% 2% 0%;
	font-weight: 600;
}
.enlaces_im{
	font-family: 'Barlow Condensed', sans-serif;
color: #444444;
font-size: 13pt;
font-weight: 500;
}
.direccion{
	font-family: 'Barlow Condensed', sans-serif;
	text-align: left;
	margin: -6% 0% 0% 4rem;
	font-weight: 400;
	color: #fff;
	font-size: 13pt;
}
.direccion1{
	font-family: 'Barlow Condensed', sans-serif;
	text-align: right;
	margin: -6% 4rem 0% 0%;
	color: #fff;
	font-weight: 400;
	font-size: 13pt;
}
.correo_fo{
	color: #fff;
	font-weight: 500;
	font-size: 13pt;
}
/* Links Widget */

.links-widget{
	position:relative;
}

.links-widget .list{
	position:relative;
}

.links-widget .list li{
	position:relative;
	margin-bottom:12px;
}

.links-widget .list li a{
	position:relative;
	color:#a8a8a8;
	font-size:15px;
	-webkit-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	transition:all 300ms ease;
}

.links-widget .list li a:hover{
	color:#ffffff;
}

/* Contact Widget */

.contact-widget .contact-number{
	position:relative;
	color:#a8a8a8;
	font-size:20px;
	font-weight:400;
	margin-bottom:10px;
	display:inline-block;
	-webkit-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	transition:all 300ms ease;
}

.contact-widget .contact-number:hover{
	color:#ffffff;
}

.contact-widget ul{
	position:relative;
}

.contact-widget ul li{
	position:relative;
	color:#a8a8a8;
	font-size:15px;
	line-height:1.9em;
	margin-bottom:6px;
}

.contact-widget ul li a{
	position:relative;
	color:#a8a8a8;
	font-size:15px;
	line-height:1.9em;
	margin-left:4px;
	display:inline-block;
	-webkit-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	transition:all 300ms ease;
}

.contact-widget ul li a:hover{
	color:#ffffff;
}

.cont_selec{
	position: relative;
width: 100%;
height: 55px;
background: #fff;
font-size: 16px;
padding: 10px 20px;
border: 2px solid #fff;
transition: all 500ms ease;
}

.direccion1_cont{
	font-size: 13pt;
	text-align: left;
	font-family: 'Barlow Condensed', sans-serif;
	color: #444444;
	padding: 20px 15px;
	margin: 10% 0% 10% 0%;
}

.direccion2_cont{
	font-size: 13pt;
	text-align: right;
	font-family: 'Barlow Condensed', sans-serif;
	color: #444444;
	padding: 20px 15px;
	margin: 10% 0% 10% 0%;
}
.whats_cont{
	font-size: 13pt;
	text-align: center;
	font-family: 'Barlow Condensed', sans-serif;
	color: #444444;
	padding: 20px 15px;
	margin: 10% 0% 10% 0%;
}

.whats_cont1{
	font-size: 13pt;
	text-align: center;
	color: #009cc4;
	padding: 20px 0px;
	margin: 10% 0% 10% 0%;
}

.whas a{
	color: #444444;
}

.map{
width: 100%;
position: relative;
overflow: hidden;
transform: translate3d(0,0,0);
}

.map{
    overflow:hidden;
    padding-bottom:56.25%;
    position:relative;
    height:0;
}

.map iframe{
    left:0;
    top:0;
    height:100%;
    width:100%;
    position:absolute;
}
 
.map2{
width: 100%;
position: relative;
overflow: hidden;
transform: translate3d(0,0,0);
}

.map2{
    overflow:hidden;
    padding-bottom:56.25%;
    position:relative;
    height:0;
}

.map2 iframe{
    left:0;
    top:0;
    height:100%;
    width:100%;
    position:absolute;
}
 


/* Newsletter Widget */

.newsletter-widget .text{
	position:relative;
	color:#a8a8a8;
	font-size:15px;
	line-height:1.9em;
	margin-bottom:15px;
}

/*Newsletter Form*/

.newsletter-form{
	position:relative;
	margin-bottom:30px;
}

.newsletter-form .form-group{
    position: relative;
    display: block;
    z-index:1;
	margin-bottom: 0px;
}

.newsletter-form .form-group input[type="text"],
.newsletter-form .form-group input[type="tel"],
.newsletter-form .form-group input[type="email"],
.newsletter-form .form-group textarea {
    position: relative;
    width: 100%;
    line-height: 28px;
    padding: 10px 25px;
    height: 46px;
	color:#ffffff;
	display:inline-block;
    font-size: 14px;
    background: none;
	letter-spacing:1px;
	border:1px solid rgba(255,255,255,0.20);
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    transition: all 300ms ease;
}

.newsletter-form textarea::-webkit-input-placeholder,
.newsletter-form input::-webkit-input-placeholder{
	color:#cccccc;
}

.newsletter-form .form-group input:focus{
	border-color:#dfb162;
}

.newsletter-form .form-group input[type="submit"],
.newsletter-form .form-group button {
	margin-top:25px;
}

.main-footer .footer-bottom{
	position:relative;
	padding:25px 0px;
	border-top:1px solid rgba(255,255,255,0.10);
}

.main-footer .footer-bottom .copyright{
	position:relative;
	color:#767676;
	font-size:14px;
}

.main-footer .footer-bottom .purchase{
	position:relative;
	color:#dfb162;
	font-size:14px;
}

/**********************/
/** DOCTORE HOME **/

.annual-stats{
  position: relative;
  padding: 0px 0px;
}

#content_block_two .content-box .sec-title{
  margin-bottom: 27px;
}

#content_block_two .content-box .text{
  position: relative;
  display: block;
  margin-bottom: 54px;
}

#content_block_two .content-box .single-progress-box{
  position: relative;
  max-width: 50%;
  width: 100%;
  float: left;
  text-align: center;
  margin: 0 auto;
}

#content_block_two .content-box .single-progress-box .piechart span{
  position: absolute;
  display: flex;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  line-height: 38px;
  font-weight: 200;
  color: #075668;
  text-align: center;
}
.doc{
	font-family: 'Barlow Condensed', sans-serif;
	font-size: 13pt;
	line-height: 1.6em;
	font-weight: 500;
	color: #858686;
}
.titulo_doc{
	font-family: 'Sansita', sans-serif;
	color: #075668;
	font-size: 14pt;
	text-transform: uppercase;
}

.circulo_doc{
	font-family: "TektonPro-Bold", cursive;
	border: 2px solid #075668;
	border-radius: 78px;
	padding: 6px 10px;
	color: #075668;
	font-weight: 400;
}

#content_block_two .content-box .single-progress-box .piechart span:after{
  color: #222;
  content: "%";
  font-size: 36px;
}

#content_block_two .content-box .single-progress-box .piechart{
  position: relative;
  margin-bottom: 23px;
}

#content_block_two .content-box .single-progress-box .box{
  position: relative;
  width: 100%;
  text-align: center;
}

#content_block_two .content-box .single-progress-box .box h5{
  position: relative;
  display: block;
  font-size: 18px;
  line-height: 21px;
  color: #222;
  margin-bottom: 9px;
}

#content_block_two .content-box .single-progress-box .box h3{
  font-size: 24px;
  font-weight: 400;
  margin: 0px;
}

#image_block_one .image-box{
  position: relative;
  display: block;
}

.annual-stats #image_block_one .image-box{
  margin-left: 55px;
  margin-top: 7px;
}

#image_block_one .image-box .image{
  position: relative;
  display: block;
  overflow: hidden;
  clip-path: polygon(0% 0%, 100% 0%, 100% 90%, 0% 100%, 0% 0%);
}

#image_block_one .image-box .image:before{
  position: absolute;
  top: 0;
  left: -75%;
  z-index: 2;
  display: block;
  content: '';
  width: 50%;
  height: 100%;
  background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, .3)));
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
  -webkit-transform: skewX(-25deg);
  -ms-transform: skewX(-25deg);
  transform: skewX(-25deg);
}

#image_block_one .image-box .image:hover:before {
  -webkit-animation: shine 1s;
  animation: shine 1s;
}

#image_block_one .image-box .image img{
  width: 100%;
}

#image_block_one .image-box .award-box{
  position: absolute;
  left: 50%;
  bottom: 0px;
  transform: translateX(-50%);
}

#image_block_one .image-box .award-box .box{
  position: relative;
  display: inline-block;
  width: 170px;
  height: 170px;
  text-align: center;
  border-radius: 50%;
  padding: 30px 30px;
  box-shadow: 0 0 0 10px #fff;
}

#image_block_one .image-box .award-box .box .icon-box{
  position: relative;
  margin-bottom: 10px;
}

#image_block_one .image-box .award-box .box span{
  position: relative;
  display: block;
  font-size: 11px;
  line-height: 16px;
  color: #fff;
}

#image_block_one .image-box .pattern-layer{
  position: absolute;
  top: 120px;
  right: -250px;
  width: 347px;
  height: 271px;
  background-repeat: no-repeat;
}
#image_block_one .image-box .award-box .box{
	background: -webkit-linear-gradient(-90deg, #da2c46, #224669 100%);
}
.espacio_home_doc{
	margin-top: -8%;
}
.espacio_home_doc1{
	margin-top: -2%;
}
/********/

.about-section .video-inner .image-box:before{
  position: absolute;
  top: 0;
  left: -75%;
  z-index: 2;
  display: block;
  content: '';
  width: 50%;
  height: 100%;
  background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, .3)));
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
  -webkit-transform: skewX(-25deg);
  -ms-transform: skewX(-25deg);
  transform: skewX(-25deg);
}

.about-section .video-inner .image-box:hover:before {
  -webkit-animation: shine 1s;
  animation: shine 1s;
}

@-webkit-keyframes shine {
  100% {
    left: 125%;
  }
}
  @media only screen and (max-width: 767px)
	.annual-stats {
  	padding: 70px 0px;
	}
 }
   @media only screen and (max-width: 991px){ 
	#content_block_two .content-box {
  	padding-bottom: 50px;
	}
}
  @media only screen and (max-width: 991px){  
.annual-stats #image_block_one .image-box {
  margin: 0px !important;
}
  }

/*************************/
/** project-section **/

.project-section{
  position: relative;
  margin: 2% 0% 0% 0%;
}

.project-block-one .inner-box{
  position: relative;
}

.project-block-one .inner-box .image-box{
  position: relative;
  display: block;
  overflow: hidden;
}

.project-block-one .inner-box .image-box:before {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  right: 0px;
  box-shadow: inset 0px -200px 100px -40px rgba(0, 0, 0, 0.8);
  z-index: 1;
  transition: all 500ms ease;
}

.project-block-one .inner-box .image-box img{
  width: 100%;
  transition: all 5s ease;
}

.project-block-one .inner-box:hover .image-box img{
  transform: scale(1.5);
}

.project-block-one .inner-box .lower-content{
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 100%;
  padding: 30px 75px 57px 75px;
  z-index: 1;
}

.project-block-one .inner-box .lower-content p{
  position: relative;
  display: inline-block;
  color: #fff;
  margin-bottom: 5px;
  padding-right: 58px;
}

.project-block-one .inner-box .lower-content p:before{
  position: absolute;
  content: '';
  width: 45px;
  height: 2px;
  top: 12px;
  right: 0px;
}

.project-block-one .inner-box .lower-content h2{
  position: relative;
  display: block;
  font-size: 30px;
  line-height: 40px;
  color: #fff;
  font-weight: 400;
  margin: 0px;
}

.project-block-one .inner-box .lower-content h2 a{
  display: inline-block;
  color: #fff;
}

.project-block-one .inner-box .lower-content h2 a:hover{

}
.project-block-one .inner-box .lower-content h2 {
  position: relative;
  display: block;
  font-size: 30px;
  line-height: 40px;
  color: #35c300;
  font-weight: 400;
  margin: 0px;
}
.project-block-one .inner-box .image-box {
  position: relative;
  display: block;
  overflow: hidden;
}
figure {
  margin: 0px;
}

/** clients-section **/

.clients-section{
  position: relative;
  padding: 55px 0px;
}

.clients-section .client-logo img{
  display: block;
  max-width: 100%;
  width: auto;
  margin: 0 auto;
  filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}

.clients-section .client-logo:hover img{
  filter: grayscale(0%);
  -webkit-filter: grayscale(0%);
  -moz-filter: grayscale(0%);
  -o-filter: grayscale(0%);
  -ms-filter: grayscale(0%);
}


/*
-----------------------------------------------------------------------
  Shop CSS
-----------------------------------------------------------------------
*/
.single-product-info {
  margin-top: -9px;
  padding-left: 9px;
}
@media only screen and (max-width: 1199px) {
  .single-product-info {
    padding-left: 15px;
    margin-top: -7px;
  }
}
.single-product-info .title {
  font-size: 42px;
  margin-bottom: 7px;
}
@media only screen and (max-width: 1199px) {
  .single-product-info .title {
    font-size: 30px;
  }
}
.single-product-info .product-availability {
  margin-bottom: 15px;
}
.single-product-info .product-availability span {
  font-size: 24px;
  font-weight: 500;
}
.single-product-info .product-desc {
  color: #252525;
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 18px;
}
.single-product-info .single-product-desc .product-stock {
  margin-bottom: 14px;
}
.single-product-info .single-product-desc .product-stock .title {
 font-family: 'Sansita', sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.666;
  margin: 0;
}
.single-product-info .single-product-desc .product-stock .title span {
  color: #fbda05;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.875;
  margin-left: 5px;
}
.single-product-info .single-product-desc .product-sku {
  margin-bottom: 20px;
}
.single-product-info .single-product-desc .product-sku .title {
 font-family: 'Sansita', sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.666;
  margin: 0;
}
.single-product-info .single-product-desc .product-sku .title span {
  color: #252525;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.875;
  margin-left: 9px;
}
.single-product-info .single-product-desc .product-category {
  margin-bottom: 17px;
}
.single-product-info .single-product-desc .product-category .title {
 font-family: 'Sansita', sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.666;
  margin: 0;
}
.single-product-info .single-product-desc .product-category .title span {
  color: #252525;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.875;
  margin-left: 10px;
}
.single-product-info .single-product-desc .product-tag {
  display: flex;
}
.single-product-info .single-product-desc .product-tag .title {
 font-family: 'Sansita', sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.666;
  margin: 0;
}
.single-product-info .single-product-desc .product-tag ul {
  display: flex;
  margin-left: 6px;
}
.single-product-info .single-product-desc .product-tag ul li {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.875;
  margin-left: 3px;
}
.single-product-info .single-product-desc .product-tag ul li a {
  color: #252525;
}
.single-product-info .single-product-desc .product-tag ul li a:hover {
  color: #fbda05;
}
.single-product-info .single-product-desc .quick-product-action {
  margin-bottom: 23px;
  display: flex;
}
@media only screen and (max-width: 479.98px) {
  .single-product-info .single-product-desc .quick-product-action {
    display: block;
  }
}
@media only screen and (max-width: 479.98px) {
  .single-product-info .single-product-desc .quick-product-action .action-top {
    margin-bottom: 30px;
  }
}
.single-product-info .single-product-desc .quick-product-action .action-top .pro-qty-area {
  display: flex;
  align-items: center;
}
.single-product-info .single-product-desc .quick-product-action .action-top .pro-qty-area .title {
 font-family: 'Sansita', sans-serif;
  font-size: 18px;
  line-height: 1.666;
  margin-bottom: 0;
  margin-right: 10px;
}
.single-product-info .single-product-desc .quick-product-action .action-top .pro-qty-area .pro-qty {
  width: 106px;
  position: relative;
  margin-right: 20px;
}
.single-product-info .single-product-desc .quick-product-action .action-top .pro-qty-area .pro-qty input {
  background-color: #252525;
  border-color: #252525;
  color: #fff;
 font-family: 'Sansita', sans-serif;
  font-weight: 600;
  font-size: 20px;
  letter-spacing: 0.5px;
  width: 69px;
  height: 46px;
  line-height: 46px;
  text-align: center;
}
.single-product-info .single-product-desc .quick-product-action .action-top .pro-qty-area .pro-qty .qty-btn {
  background-color: #fbda05;
  color: #fff;
  display: inline-block;
  font-size: 20px;
  width: 37px;
  height: 46px;
  line-height: 25px;
  text-align: center;
}
.single-product-info .single-product-desc .quick-product-action .action-top .pro-qty-area .pro-qty .qty-btn.dec {
  position: absolute;
  bottom: 0;
  right: 0;
  height: 23px;
}
.single-product-info .single-product-desc .quick-product-action .action-top .pro-qty-area .pro-qty .qty-btn.inc {
  position: absolute;
  top: 0;
  right: 0;
  height: 23px;
}
.single-product-info .single-product-desc .quick-product-action .action-bottom .btn-theme {
  color: #252525;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.626;
  padding: 9px 13.63px;
  text-transform: uppercase;
}
.single-product-info .single-product-desc .quick-product-action .action-bottom .btn-theme:hover {
  background-color: #252525;
  color: #fff;
}

.btn-theme {
  background-color: #fbda05;
  border-color: #fbda05;
  border-radius: 0;
  color: #fff;
  display: inline-block;
  font-size: 15px;
  font-weight: 400;
  line-height: 25px;
  padding: 21px 37px;
  position: relative;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}

.product-area.product-default-area {
  padding: 125px 0 131px;
}
@media only screen and (max-width: 1199px) {
  .product-area.product-default-area {
    padding: 90px 0;
  }
}
.product-area.product-grid-area {
  padding: 30px 0 130px;
}
@media only screen and (max-width: 1199px) {
  .product-area.product-grid-area {
    padding: 90px 0;
  }
}
.product-area.product-grid-area .product-content-area .product-item {
  margin-bottom: 30px;
}
.product-area.shop-single-product {
  padding: 0px 0 91px;
}
@media only screen and (max-width: 1199px) {
  .product-area.shop-single-product {
    padding: 90px 0 50px;
  }
}
.product-area.cart-page-area {
  padding: 130px 0 130px;
}
@media only screen and (max-width: 1199px) {
  .product-area.cart-page-area {
    padding: 90px 0 90px;
  }
}
.product-area.wishlist-page-area {
  padding: 112px 0 100px;
}
@media only screen and (max-width: 1199px) {
  .product-area.wishlist-page-area {
    padding: 72px 0 60px;
  }
}

.product-item {
  box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.2);
}
.product-item .product-thumb {
  text-align: center;
  position: relative;
}
.product-item .product-info {
  background-color: #f2f2f2;
  padding: 20px 15px 19px;
  text-align: center;
}
.product-item .product-info .title {
  font-size: 24px;
  margin-bottom: 6px;
}
@media only screen and (max-width: 1199px) {
  .product-item .product-info .title {
    font-size: 20px;
  }
}
@media only screen and (max-width: 991px) {
  .product-item .product-info .title {
    font-size: 16px;
  }
}
.product-item .product-info .title a {
  color: #02a800;
}
.product-item .product-info .title a:hover {
  color: #fbda05;
}
.product-item .product-info .prices .price {
  color: #02a800;
  font-size: 16px;
}
.product-item .ribbons {
  position: absolute;
  font-size: 14px;
  font-weight: 500;
  left: 26px;
  top: 19px;
  text-transform: uppercase;
}
.product-item .ribbons .ribbon-new {
  color: #fbda05;
}
.product-item .ribbons .ribbon-hot {
  color: #ff0000;
}
.product-item .product-action {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translate(-50%, 0);
  opacity: 0;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
.product-item .product-action .btn-theme {
  box-shadow: 0px 3px 8px 0px rgba(0, 0, 0, 0.36);
  border-radius: 17px;
  color: #252525;
  font-weight: 700;
  font-size: 14px;
  width: 116px;
  height: 34px;
  line-height: 34px;
  margin: 0;
  padding: 0;
}
.product-item .product-action .btn-theme:hover {
  color: #fff;
  background-color: #02a800;
}
.product-item:hover .product-action {
  opacity: 1;
  bottom: 17px;
}

.product-btn {
  text-align: center;
  margin-top: 10px;
}



.sidebar-area.shop-sidebar-area .widget-item {
  margin-bottom: 40px;
}
.sidebar-area.shop-sidebar-area .widget-item .widget-title {
  padding: 24px 25px 18px;
}
.sidebar-area.shop-sidebar-area .widget-item .widget-title .title {
  font-weight: 700;
  font-size: 24.01px;
}
.sidebar-area.shop-sidebar-area .widget-item .widget-body {
  padding: 30px 25px 41px 24px;
}
.sidebar-area.shop-sidebar-area .widget-item .widget-body .widget-search-box .form-input-item input {
  padding: 0px 55px 0px 14px;
}
.sidebar-area.shop-sidebar-area .widget-item .widget-body.widget-categorie-body {
  padding: 0;
}
.sidebar-area.shop-sidebar-area .widget-item .widget-body.widget-categorie-body .widget-categories ul li {
  padding: 15px 25px 13px 24px;
}
.sidebar-area.shop-sidebar-area .widget-item .widget-body.widget-price-filter-body {
  padding: 36px 25px 22px 24px;
}
.sidebar-area.shop-sidebar-area .widget-item .widget-body.widget-tags-body {
  padding: 29px 34px 20px 24px;
}

.sidebar-area .widget-item {
  margin-bottom: 40px;
}
.sidebar-area .widget-item .widget-title {
  background-color: #35c300;
display: block;
padding: 25px 35px 17px;
color: #fff;
}
@media only screen and (max-width: 1199px) {
  .sidebar-area .widget-item .widget-title {
    padding: 25px 35px 17px 20px;
  }
}
.sidebar-area .widget-item .widget-title .title {
  font-weight: 800;
  font-size: 24.01px;
}
.sidebar-area .widget-body {
  background-color: #f2f2f2;
  padding: 29px 34px 41px 34px;
}
@media only screen and (max-width: 479.98px) {
  .sidebar-area .widget-body {
    padding: 29px 15px 41px;
  }
}
.sidebar-area .widget-body.widget-categorie-body {
  padding: 0;
}
.sidebar-area .widget-body.widget-post-body {
  border-bottom: 3px solid #e8e8e8;
  padding: 30px 35px 29px 35px;
}
@media only screen and (max-width: 479.98px) {
  .sidebar-area .widget-body.widget-post-body {
    padding: 30px 15px 29px;
  }
}
.sidebar-area .widget-body.widget-post-body:last-child {
  border: none;
}
.sidebar-area .widget-body.widget-tags-body {
  padding: 29px 34px 20px 34px;
}
@media only screen and (max-width: 479.98px) {
  .sidebar-area .widget-body.widget-tags-body {
    padding: 29px 15px 20px;
  }
}
.sidebar-area .widget-search-box {
  position: relative;
}
.sidebar-area .widget-search-box form .form-input-item input {
  border: 2px solid #e4e4e4;
  background-color: #f2f2f2;
  color: #aeaeae;
  font-weight: 400;
  font-size: 16px;
  width: 100%;
  height: 45px;
  line-height: 45px;
  padding: 0 55px 0 19px;
}
.sidebar-area .widget-search-box form .form-input-item input::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #aeaeae;
}
.sidebar-area .widget-search-box form .form-input-item input::-moz-placeholder {
  /* Firefox 19+ */
  color: #aeaeae;
}
.sidebar-area .widget-search-box form .form-input-item input:-ms-input-placeholder {
  /* IE 10+ */
  color: #aeaeae;
}
.sidebar-area .widget-search-box form .form-input-item input:-moz-placeholder {
  /* Firefox 18- */
  color: #aeaeae;
}
.sidebar-area .widget-search-box form .form-input-item .btn-src {
  border: none;
  background-color: #fbda05;
  color: #c5c1c1;
  font-size: 20px;
  width: 50px;
  height: 45px;
  line-height: 45px;
  right: 0;
  padding: 0;
  position: absolute;
  top: 0;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  color: #2b2a2a;
}
.sidebar-area .widget-search-box form .form-input-item .btn-src:hover {
  background-color: #fbda05;
  color: #2b2a2a;
}
.sidebar-area .widget-categories ul li {
  border-bottom: 3px solid #e8e8e8;
  font-size: 16px;
  font-weight: 400;
  padding: 15px 35px 13px 34px;
}
@media only screen and (max-width: 479.98px) {
  .sidebar-area .widget-categories ul li {
    padding: 15px 15px 13px;
  }
}
.sidebar-area .widget-categories ul li:hover a {
  color: #fbda05;
}
.sidebar-area .widget-categories ul li:hover a span {
  color: #fbda05;
}
.sidebar-area .widget-categories ul li:last-child {
  border: none;
}
.sidebar-area .widget-categories ul li.active {
  padding-bottom: 16px;
  font-weight: 500;
}
.sidebar-area .widget-categories ul li.active a {
  color: #fbda05;
}
.sidebar-area .widget-categories ul li.active span {
  color: #fbda05;
}
.sidebar-area .widget-categories ul li a {
  color: #252525;
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}
.sidebar-area .widget-categories ul li a span {
  color: #909090;
  font-size: 14px;
  font-weight: 400;
}
.sidebar-area .widget-categories2 ul li {
  border-bottom: 2px solid #e8e8e8;
  font-size: 16px;
  font-weight: 400;
  padding: 15px 35px 13px 34px;
}
@media only screen and (max-width: 1199px) {
  .sidebar-area .widget-categories2 ul li {
    padding: 15px 30px 13px 20px;
  }
}
.sidebar-area .widget-categories2 ul li:hover a {
  color: #fbda05;
}
.sidebar-area .widget-categories2 ul li:hover a span {
  color: #fbda05;
}
.sidebar-area .widget-categories2 ul li:last-child {
  border: none;
}
.sidebar-area .widget-categories2 ul li.active {
  padding-bottom: 16px;
  font-weight: 500;
}
.sidebar-area .widget-categories2 ul li.active a {
  color: #fbda05;
}
.sidebar-area .widget-categories2 ul li.active span {
  color: #d4d4d4;
}
.sidebar-area .widget-categories2 ul li.yoga {
  padding-bottom: 16px;
}
.sidebar-area .widget-categories2 ul li a {
  color: #252525;
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}
.sidebar-area .widget-categories2 ul li span {
  color: #909090;
  font-size: 14px;
  font-weight: 400;
  text-decoration: underline;
}
.sidebar-area .widget-blog-post ul {
  margin: 0;
}
.sidebar-area .widget-blog-post ul li .content .meta {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1px;
  margin-top: 16px;
  margin-bottom: 9px;
}
.sidebar-area .widget-blog-post ul li .content .meta a {
  color: #787878;
}
@media only screen and (max-width: 479.98px) {
  .sidebar-area .widget-blog-post ul li .content .meta a {
    font-size: 13px;
  }
}
.sidebar-area .widget-blog-post ul li .content .meta a:hover {
  color: #fbda05;
}
.sidebar-area .widget-blog-post ul li .content .meta a i {
  margin-right: 5px;
}
.sidebar-area .widget-blog-post ul li .content .meta .category {
  margin-right: 38px;
}
.sidebar-area .widget-blog-post ul li .content .title {
  font-size: 18px;
  line-height: 1.3333;
  margin: 0;
}
.sidebar-area .widget-blog-post ul li .content .title a {
  color: #252525;
}
.sidebar-area .widget-blog-post ul li .content .title a:hover {
  color: #fbda05;
}
.sidebar-area .widget-tags ul {
  margin: 0;
}
.sidebar-area .widget-tags ul li {
  display: inline-block;
  font-weight: 400;
  font-size: 16px;
  margin-bottom: 10px;
}
.sidebar-area .widget-tags ul li a {
  border: 1px solid #e0e0e0;
  border-radius: 14.5px;
  color: #252525;
  display: inline-block;
  margin-right: 3px;
  padding: 0 12px;
}
.sidebar-area .widget-tags ul li a:hover {
  border-color: #fbda05;
  background-color: #fbda05;
  color: #fff;
}
.sidebar-area .widget-price-filter-body .widget-price-filter .slider-range {
  background-color: #dfdfdf;
  height: 8px;
  margin-bottom: 18px;
}
.sidebar-area .widget-price-filter-body .widget-price-filter .slider-range .noUi-handle {
  background-color: #252525;
  top: -6px;
}
.sidebar-area .widget-price-filter-body .widget-price-filter .slider-range .noUi-handle.noUi-active {
  top: -14px;
}
.sidebar-area .widget-price-filter-body .widget-price-filter .slider-range .noUi-connect {
  background-color: #252525;
}
.sidebar-area .widget-price-filter-body .widget-price-filter .slider-labels {
  display: flex;
}
.sidebar-area .widget-price-filter-body .widget-price-filter .slider-labels .range-separator {
  padding: 0 5px;
}
.sidebar-area .widget-content-ads .ads-thumb img {
  width: 100%;
}
.sidebar-area .widget-hour ul {
  margin: 0;
}
.sidebar-area .widget-hour ul li {
  font-size: 16px;
  line-height: 1.75;
  border-bottom: 2px solid #e8e8e8;
  padding: 15px 20px 13px 34px;
}
@media only screen and (max-width: 1199px) {
  .sidebar-area .widget-hour ul li {
    padding: 15px 20px 13px 20px;
  }
}
.sidebar-area .widget-hour ul li:last-child {
  border: none;
  padding-bottom: 15px;
}
.sidebar-area .widget-hour ul li:last-child i {
  margin-left: 6px;
  margin-right: 2px;
}
.sidebar-area .widget-hour ul li i {
  font-size: 14px;
  margin-right: 8px;
  margin-left: 10px;
}
.sidebar-area .widget-hour ul li span {
  font-size: 14px;
  position: relative;
  top: -1px;
}
.sidebar-area .widget-download ul li {
  font-size: 16px;
  line-height: 1.75;
  border-bottom: 2px solid #e8e8e8;
  padding: 15px 35px 13px 34px;
}
@media only screen and (max-width: 1199px) {
  .sidebar-area .widget-download ul li {
    padding: 15px 35px 13px 20px;
  }
}
.sidebar-area .widget-download ul li:last-child {
  border: none;
}
.sidebar-area .widget-download ul li a {
  color: #252525;
}
.sidebar-area .widget-download ul li a:hover {
  color: #fbda05;
}
.sidebar-area .widget-download ul li i {
  margin-right: 13px;
  font-size: 18px;
}
.sidebar-area.inner-right-padding {
  padding-left: 21px;
}
@media only screen and (max-width: 1199px) {
  .sidebar-area.inner-right-padding {
    padding-left: 0;
  }
}
.sidebar-area.inner-left-padding {
  padding-right: 21px;
}
@media only screen and (max-width: 1199px) {
  .sidebar-area.inner-left-padding {
    padding-right: 0;
  }
}

/***FRACES****/
hr.style-eight {
    overflow: visible; /* For IE */
    padding: 0;
    border: none;
    border-top: 2px solid #009cc4;
	color: #333;
	text-align: center;
	width: 25%;
	margin: 4% auto 0% auto;
}
hr.style-eight:after {
    content: url(../images/palo_verde_perros.png);
    display: inline-block;
    position: relative;
    top: -1.5em;
    font-size: 1.5em;
    padding: 0 0.25em;
    background: white;
}

.frase_sec{
	text-align: center;
	margin: 4% 0% -0.5% 0%;
	font-size: 22pt;
}
.izquierdo_frase{
	color: #075668;
	font-weight: 400;
}
.derecho_frase{
	color: #c51870;
	font-weight: 700;
}

/*-------- Page Title Style Css --------*/
.page-title-area {
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.page-title-area .page-title-content {
  padding: 221px 0 101px;
  z-index: 1;
}
@media only screen and (max-width: 1199px) {
  .page-title-area .page-title-content {
    padding: 180px 0 100px;
  }
}
@media only screen and (max-width: 991px) {
  .page-title-area .page-title-content {
    padding: 160px 0 80px;
  }
}
.page-title-area .page-title-content .title {
  color: #fff;
  font-weight: 300;
  font-size: 120px;
  letter-spacing: 1.6px;
}
@media only screen and (max-width: 1199px) {
  .page-title-area .page-title-content .title {
    font-size: 80px;
  }
}
@media only screen and (max-width: 991px) {
  .page-title-area .page-title-content .title {
    font-size: 38px;
  }
}
.page-title-area .page-title-content span {
  color: #e2c92d;
  font-weight: 600;
}
.page-title-area .page-title-content .desc p {
  color: #fff;
  font-size: 16px;
  line-height: 1.875;
}
@media only screen and (max-width: 991px) {
  .page-title-area .page-title-content .desc p {
    font-size: 14px;
  }
}
@media only screen and (max-width: 575px) {
  .page-title-area .page-title-content .desc p br {
    display: none;
  }
}
.page-title-area .page-title-content.content-style2 {
  padding: 350px 0 145px;
}
@media only screen and (max-width: 1199px) {
  .page-title-area .page-title-content.content-style2 {
    padding: 180px 0 115px;
  }
}
@media only screen and (max-width: 767px) {
  .page-title-area .page-title-content.content-style2 {
    padding: 170px 0 85px;
  }
}
.page-title-area .page-title-content.content-style2 .title {
  margin-bottom: 23px;
}
@media only screen and (max-width: 991px) {
  .page-title-area .page-title-content.content-style2 .title {
    margin-bottom: 15px;
  }
}
.page-title-area .page-title-content.content-style2 .desc p {
  color: #d4d4d4;
  margin-left: 8px;
  font-weight: 400;
}
.page-title-area:before {
  /*background-color: rgba(0, 0, 0, 0.749);*/
  content: "";
  left: 0px;
  position: absolute;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: -1;
}
/*-------- Pagination Style Css --------*/
.pagination-area .page-numbers {
  display: flex;
  margin-top: 20px;
  margin-bottom: 0;
  justify-content: center;
}
.pagination-area .page-numbers li .page-number {
  border-radius: 50%;
  color: #252525;
  display: inline-block;
  font-weight: 500;
  width: 36px;
  height: 35px;
  line-height: 35px;
  text-align: center;
}
.pagination-area .page-numbers li .page-number:hover {
  color: #fbda05;
}
.pagination-area .page-numbers li .page-number.view-all {
  line-height: 28px;
}
.pagination-area .page-numbers li .page-number.active {
  background-color: #fbda05;
}
.pagination-area .page-numbers li .page-number.active:hover {
  color: #252525;
}


/*** 

====================================================================
	Featured Section
====================================================================

***/

.featured-section{
	position:relative;
	padding:75px 0px 50px;
	background-attachment:fixed;
	background-size:cover;
}

.featured-section:before{
	position:absolute;
	content:'';
	left:0px;
	top:0px;
	right:0px;
	bottom:0px;
	background-color:rgba(32,70,105,0.85);
}

.featured-section .title-box{
	position:relative;
	text-align:center;
	margin-bottom:50px;
}

.featured-section .title-box h2{
	position:relative;
	color:#ffffff;
	font-size:36px;
	font-weight:700;
	line-height:1.3em;
}

/* Feature Block */

.feature-block{
	position:relative;
	margin-bottom:30px;
}

.feature-block .inner-box{
	position:relative;
	text-align:center;
}

.feature-block .inner-box .icon-outer{
	position:relative;
	display:inline-block;
}

.feature-block .inner-box .icon-outer .icon-box{
	position:relative;
	width:136px;
	height:136px;
	color:#404040;
	font-size:60px;
	margin:0 auto;
	line-height:90px;
	border-radius:50%;
	background-color:#f0f0f0;
	transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.feature-block .inner-box:hover .icon-outer .icon-box{
	background-color:#fbda05;
	color:#ffffff;
}

.feature-block .inner-box .icon-outer .feature-number{
	position:absolute;
	right:0px;
	bottom:8px;
	width:40px;
	height:40px;
	color:#fff;
	font-size:20px;
	text-align:center;
	line-height:40px;
	border-radius:50px;
	font-weight:600;
	background-color:#35c300;
	transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.feature-block .inner-box:hover .icon-outer .feature-number{
	background-color: #fff;
color: #35c300;
}

.feature-block .inner-box .lower-content{
	position:relative;
	padding-top:34px;
}

.feature-block .inner-box .lower-content h3{
	position:relative;
	font-size:20px;
	font-weight:700;
	line-height:1.3em;
	letter-spacing:1px;
}

.feature-block .inner-box .lower-content h3 a{
	position:relative;
	color:#fbda05;
	transition: all 0.6s ease;
    -moz-transition: all 0.6s ease;
    -webkit-transition: all 0.6s ease;
    -ms-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
}

.feature-block .inner-box .lower-content .text{
	font-family: 'Barlow Condensed', sans-serif;
	position:relative;
	color:#cdcdcd;
	font-size:16px;
	line-height:1.8em;
	margin-top:14px;
	transition: all 0.6s ease;
    -moz-transition: all 0.6s ease;
    -webkit-transition: all 0.6s ease;
    -ms-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
    text-align: justify;
}

.feature-block .inner-box:hover .lower-content h3 a{
	color:#ffffff;
}

/** testimonial-section **/

.testimonial-section{
  position: relative;
  padding: 120px 0px 90px 0px;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
}

.testimonial-section:before{
  position: absolute;
  content: '';
  background: #fff;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  right: 0px;
  opacity: 0.85;
}

.testimonial-section .client-thumb-outer{
  position:relative;
  max-width:510px;
  margin:0 auto;
  overflow:hidden;
  padding-top: 23px;
}

.testimonial-section .client-thumb-outer .client-thumbs-carousel{
  position: relative;
  max-width: 100px;
  margin: 0 auto;
}

.testimonial-section .client-thumb-outer .client-thumbs-carousel .owl-stage-outer{
  overflow:visible;
}

.testimonial-section .client-thumb-outer .client-thumbs-carousel .thumb-item{
  position:relative;
  width:70px;
  border-radius:50%;
  margin: 0 auto;
}

.testimonial-section .client-thumb-outer .thumb-item .thumb-box{
  width:70px;
  height:70px;
  background: #fff;
  opacity: 0.4;
  cursor:pointer;
  overflow: hidden;
  border-radius:50%;
  margin-bottom: 18px;
}

.testimonial-section .client-thumb-outer .owl-item.active .thumb-item{
  width: 100px;
  top: -20px;
}

.testimonial-section .owl-item.active .thumb-item .thumb-box{
  width: 100px;
  height: 100px;
  opacity: 1;
}

.testimonial-section .client-thumb-outer .client-thumbs-carousel .thumb-item img{
  overflow:hidden;
  width:100%;
  height:100%;
  display:block;
  border-radius:50%;
}

.testimonial-section .owl-item .thumb-item .info-box{
  position: relative;
  min-width: 140px;
  text-align: center;
  left: -15px;
  display: none;
}

.testimonial-section .owl-item .thumb-item .info-box h5{
  position: relative;
  display: block;
  font-size: 18px;
  line-height: 26px;
  font-weight: 700;
  color: #02a800;
  text-transform: uppercase;
  margin-bottom: 0px;
}

.testimonial-section .owl-item.active .thumb-item .info-box{
  display: block;
}

.testimonial-section .owl-item .thumb-item .info-box .designation{
  position: relative;
  display: block;
  font-size: 14px;
  line-height: 20px;
}

.owl-nav-none .owl-nav,
.owl-dots-none .owl-dots{
  display: none !important;
}

.testimonial-section .client-thumb-outer .owl-theme .owl-dots{
  min-width: 150px;
  margin-left: -25px;
  margin-top: 23px;
  height: 30px;
  overflow: hidden;
}

.testimonial-section .client-thumb-outer .owl-theme .owl-dots .owl-dot{
  position: relative;
  display: inline-block;
}

.testimonial-section .client-thumb-outer .owl-theme .owl-dots .owl-dot span{
  position: relative;
  display: inline-block;
  width: 20px;
  height: 4px;
  background: #dddddd;
  border-radius: 0px;
  margin: 0px 5px;
  cursor: pointer;
  transition: all 500ms ease;
}

.testimonial-section .client-thumb-outer .owl-theme .owl-dots .owl-dot.active span,
.testimonial-section .client-thumb-outer .owl-theme .owl-dots .owl-dot span:hover{
  
}

.testimonial-section .testimonial-block{
  position: relative;
  display: block;
  max-width: 770px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  padding-bottom: 16px;
}

.testimonial-section .testimonial-block p{
  font-size: 18px;
  line-height: 32px;
  color: #222;
}

.testimonial-section .title-box{
  margin-bottom: 70px;
}

/**TEXTIMONIOS TAXQUEÑA**/

.testimonial-sectiontax{
  position: relative;
  padding: 120px 0px 90px 0px;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
}

.testimonial-sectiontax:before{
  position: absolute;
  content: '';
  background: rgba(32,70,105,0.85);
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  right: 0px;
  opacity: 0.85;
}

.testimonial-sectiontax .client-thumb-outer{
  position:relative;
  max-width:510px;
  margin:0 auto;
  overflow:hidden;
  padding-top: 23px;
}

.testimonial-sectiontax .client-thumb-outer .client-thumbs-carousel{
  position: relative;
  max-width: 100px;
  margin: 0 auto;
}

.testimonial-sectiontax .client-thumb-outer .client-thumbs-carousel .owl-stage-outer{
  overflow:visible;
}

.testimonial-sectiontax .client-thumb-outer .client-thumbs-carousel .thumb-item{
  position:relative;
  width:70px;
  border-radius:50%;
  margin: 0 auto;
}

.testimonial-sectiontax .client-thumb-outer .thumb-item .thumb-box{
  width:70px;
  height:70px;
  background: #fff;
  opacity: 0.4;
  cursor:pointer;
  overflow: hidden;
  border-radius:50%;
  margin-bottom: 18px;
}

.testimonial-sectiontax .client-thumb-outer .owl-item.active .thumb-item{
  width: 100px;
  top: -20px;
}

.testimonial-sectiontax .owl-item.active .thumb-item .thumb-box{
  width: 100px;
  height: 100px;
  opacity: 1;
}

.testimonial-sectiontax .client-thumb-outer .client-thumbs-carousel .thumb-item img{
  overflow:hidden;
  width:100%;
  height:100%;
  display:block;
  border-radius:50%;
}

.testimonial-sectiontax .owl-item .thumb-item .info-box{
  position: relative;
  min-width: 140px;
  text-align: center;
  left: -15px;
  display: none;
}

.testimonial-sectiontax .owl-item .thumb-item .info-box h5{
  position: relative;
  display: block;
  font-size: 18px;
  line-height: 26px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 0px;
}

.testimonial-sectiontax .owl-item.active .thumb-item .info-box{
  display: block;
}

.testimonial-sectiontax .owl-item .thumb-item .info-box .designation{
  position: relative;
  display: block;
  font-size: 14px;
  line-height: 20px;
}

.owl-nav-none .owl-nav,
.owl-dots-none .owl-dots{
  display: none !important;
}

.testimonial-sectiontax .client-thumb-outer .owl-theme .owl-dots{
  min-width: 150px;
  margin-left: -25px;
  margin-top: 23px;
  height: 30px;
  overflow: hidden;
}

.testimonial-sectiontax .client-thumb-outer .owl-theme .owl-dots .owl-dot{
  position: relative;
  display: inline-block;
}

.testimonial-sectiontax .client-thumb-outer .owl-theme .owl-dots .owl-dot span{
  position: relative;
  display: inline-block;
  width: 20px;
  height: 4px;
  background: #dddddd;
  border-radius: 0px;
  margin: 0px 5px;
  cursor: pointer;
  transition: all 500ms ease;
}

.testimonial-sectiontax .client-thumb-outer .owl-theme .owl-dots .owl-dot.active span,
.testimonial-sectiontax .client-thumb-outer .owl-theme .owl-dots .owl-dot span:hover{
  
}

.testimonial-section tax.testimonial-block{
  position: relative;
  display: block;
  max-width: 770px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  padding-bottom: 16px;
}

.testimonial-sectiontax .testimonial-block p{
  font-size: 18px;
  line-height: 32px;
  color: #fff;
}

.testimonial-sectiontax .title-box{
  margin-bottom: 70px;
}


/** news-section **/

.news-section{
  padding: 93px 0px 96px 0px;
}

.news-section .sec-title{
  margin-bottom: 60px;
}

.news-block-one .inner-box{
  position: relative;
  display: block;
}

.news-block-one .inner-box .image-box{
  position: relative;
  display: block;
  overflow: hidden;
  background: #222;
}

.news-block-one .inner-box .image-box img{
  width: 100%;
  transition: all 500ms ease;
}

.news-block-one .inner-box:hover .image-box img{
  opacity: 0.2;
  transform: scale(1.1);
}

.news-block-one .inner-box .lower-content{
  position: relative;
  padding-top: 32px;
}

.news-block-one .inner-box .lower-content .post-info{
  position: relative;
  display: block;
  margin-bottom: 7px;
}

.news-block-one .inner-box .lower-content .post-info li{
  position: relative;
  display: inline-block;
  font-size: 14px;
  color: #666666;
}

.news-block-one .inner-box .lower-content .post-info li:first-child{
  margin-right: 17px;
}

.news-block-one .inner-box .lower-content .post-info li:first-child:before{
  position: absolute;
  content: '';
  background: #666;
  height: 13px;
  width: 1px;
  top: 9px;
  right: -11px;
}

.news-block-one .inner-box .lower-content .post-info li.share{
  position: absolute;
  top: 0px;
  right: 18px;
  font-size: 18px;
  margin: 0px;
}

.news-block-one .inner-box .lower-content .post-info li a{
  color: #666;
}

.news-block-one .inner-box .lower-content .post-info li a:hover{

}

.news-block-one .inner-box .lower-content .post-info li.share .social-links {
  position: absolute;
  right: 0%;
  bottom: -30px;
  width: 120px;
  opacity: 0;
  background: #fff;
  padding: 2px 15px;
  border-radius: 5px;
  visibility: hidden;
  transform: translateY(10px);
  z-index: 1;
  transition: all 500ms ease;
}

.news-block-one .inner-box .lower-content .post-info li.share:hover .social-links {
  opacity: 1;
  right: 0%;
  transform: translateY(0px);
  visibility: visible;
}

.news-block-one .inner-box .lower-content .post-info li.share .social-links li{
  margin: 0px 3px;
}

.news-block-one .inner-box .lower-content .post-info li.share:hover .social-links li a{
  color: #666;
}

.news-block-one .inner-box .lower-content .post-info li.share:hover .social-links li a:hover{

}

.news-block-one .inner-box .lower-content .post-info li.share .social-links li:before{
  display: none !important;
}

.news-block-one .inner-box .lower-content h3{
  display: block;
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 15px;
}

.news-block-one .inner-box .lower-content h3 a{
  display: inline-block;
  color: #222;
}

.news-block-one .inner-box .lower-content h3 a:hover{

}

.news-block-one .inner-box .lower-content p{
  margin-bottom: 22px;
}

.news-block-one .inner-box .lower-content .link a i{
  position: relative;
  display: inline-block;
  font-size: 12px;
  margin-right: 8px;
}

.news-block-one .inner-box .lower-content .link a span{
  position: relative;
  display: inline-block;
  font-size: 16px;
  line-height: 16px;
  color: #222;
  font-weight: 700;
  border-bottom: 1px solid #222;
  transition: all 500ms ease;
}

.news-block-one .inner-box .lower-content .link a:hover span{

}
/*** 

====================================================================
	Fluid Section One
====================================================================

***/

.fluid-section-one{
	position:relative;
	background-color:#02a800;
}

.fluid-section-one .outer-container{
	position:relative;
}

.fluid-section-one .image-column{
    position: absolute;
    right: 0px;
	top:70px;
    width: 45%;
    bottom:0px;
	float:right;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.fluid-section-one .image-column .inner-column{
	position:static;
}

.fluid-section-one .image-column:before{
	position:absolute;
	content:'';
	left:0px;
	top:0px;
	right:0px;
	bottom:0px;
	background-color:rgba(0,0,0,0.20);
}

.fluid-section-one .image-column .image{
    width: 100%;
    display: none;
}

.fluid-section-one .image-column .image img{
    display: block;
    width: 100%;
}

.fluid-section-one .image-column .overlay-link{
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.03);
    transition: all 0.6s ease;
    -moz-transition: all 0.6s ease;
    -webkit-transition: all 0.6s ease;
    -ms-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
}

.fluid-section-one .image-column .overlay-link .icon-box{
    position: absolute;
    left: 50%;
	top: 50%;
    width: 80px;
    height: 80px;
    color: #fff;
    font-size: 30pt;
    padding-left: 3px;
    line-height: 75px;
    text-align: center;
    border-radius: 50%;
    margin-bottom: 50px;
    display: inline-block;
	margin-left: -40px;
	margin-top: -40px;
    background-color: #f61c0d;
}

.fluid-section-one .image-column .overlay-link .ripple,
.fluid-section-one .image-column .overlay-link .ripple:before,
.fluid-section-one .image-column .overlay-link .ripple:after {
    position: absolute;
    top: 50%;
    left: 50%;
    width:80px;
	height: 80px;
	border-radius:50%;
	-ms-border-radius:50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, .6);
    -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, .6);
    -ms-box-shadow: 0 0 0 0 rgba(255, 255, 255, .6);
    -o-box-shadow: 0 0 0 0 rgba(255, 255, 255, .6);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, .6);
    -webkit-animation: ripple 3s infinite;
    -moz-animation: ripple 3s infinite;
    -ms-animation: ripple 3s infinite;
    -o-animation: ripple 3s infinite;
    animation: ripple 3s infinite;
}

.fluid-section-one .image-column .overlay-link .ripple:before {
    -webkit-animation-delay: .9s;
    -moz-animation-delay: .9s;
    -ms-animation-delay: .9s;
    -o-animation-delay: .9s;
    animation-delay: .9s;
    content: "";
    position: absolute;
}

.fluid-section-one .image-column .overlay-link .ripple:after {
    -webkit-animation-delay: .6s;
    -moz-animation-delay: .6s;
    -ms-animation-delay: .6s;
    -o-animation-delay: .6s;
    animation-delay: .6s;
    content: "";
    position: absolute;
}

@-webkit-keyframes ripple {
    70% {box-shadow: 0 0 0 40px rgba(255, 255, 255, 0);}
    100% {box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);}
}

@keyframes ripple {
    70% {box-shadow: 0 0 0 40px rgba(255, 255, 255, 0);}
    100% {box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);}
}

/*Content Column*/

.fluid-section-one .content-column{
	position: relative;
    width: 60%;
	float:left;
	padding:63px 160px 58px 15px;
}

.fluid-section-one .content-column:before{
	position:absolute;
	content:'';
	left:0px;
	top:0px;
	right:0px;
	bottom:0px;
	background-color:#fbda05;
}

.fluid-section-one .content-column .image-layer{
	position:absolute;
	left:0px;
	top:0px;
	width:100%;
	height:100%;
	background-position:left top;
	background-repeat:no-repeat;
}

.fluid-section-one .content-column .content-box{
	position:relative;
	max-width:550px;
	float:right;
}

.fluid-section-one .content-column h2{
	position:relative;
	color:#242424;
	font-size:40px;
	font-weight:700;
	line-height:1.3em;
}

.fluid-section-one .content-column .text{
	position:relative;
	color:#242424;
	font-size:16px;
	font-weight:400;
	line-height:1.8em;
	margin-top:12px;
	margin-bottom:28px;
}

.fluid-section-one .content-column .bold-text{
	position:relative;
	color:#242424;
	font-size:24px;
	font-weight:400;
	line-height:1.5em;
	margin-top:30px;
	font-family: 'Rufina', serif;
}

.fluid-section-one .content-column .bold-text a{
	text-decoration:underline;
	color:#242424;
}

.fluid-section-one.style-two{
	background-color:#ffffff;
}

.fluid-section-one.style-two .content-column:before{
	background-color:#272a2c;
}

.fluid-section-one.style-two .content-column .text{
	color:#b1b1b1;
}

.fluid-section-one.style-two .content-column .bold-text,
.fluid-section-one.style-two .content-column h2{
	color:#ffffff;
}

.fluid-section-one.style-two .content-column .bold-text a{
	color:#dfb162;
}

.fluid-section-one.style-two .list-style-one li:before,
.fluid-section-one.style-two .list-style-one li{
	color:#939393;
}

.fluid-section-one.style-three{
	background-color:#272a2c;
}

/** team-style-two **/

.team-style-two{
  position: relative;
  padding: -1px 0px 105px 0px;
}

.team-style-two .sec-title-two{
  max-width: 510px;
  margin-bottom: 57px;
}

.team-block-two .inner-box{
  position: relative;
  display: block;
  text-align: center;
}

.team-block-two .inner-box .image-box{
  position: relative;
  display: block;
  overflow: hidden;
}

.team-block-two .inner-box .image-box img{
  width: 100%;
}

.team-block-two .inner-box .image-box:before{
  position: absolute;
  content: '';
  width: 50%;
  height: 0%;
  left: 0px;
  bottom: 0px;
  z-index: 1;
  opacity: 0.8;
  transition: all 500ms ease;
}

.team-block-two .inner-box:hover .image-box:before{
  height: 100%;
}

.team-block-two .inner-box .image-box:after{
  position: absolute;
  content: '';
  width: 50%;
  height: 0%;
  right: 0px;
  top: 0px;
  z-index: 1;
  opacity: 0.8;
  transition: all 500ms ease;
}

.team-block-two .inner-box:hover .image-box:after{
  height: 100%;
}

.team-block-two .inner-box .image-box .social-links{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  width: 100%;
  z-index: 2;
  opacity: 0;
  transition: all 500ms ease;
  -webkit-transition-delay: .5s;
  transition-delay: .5s;
}

.team-block-two .inner-box:hover .image-box .social-links{
  opacity: 1;
}

.team-block-two .inner-box .image-box .social-links li{
  position: relative;
  display: inline-block;
  margin: 0px 20px;
}

.team-block-two .inner-box .image-box .social-links li:before{
  position: absolute;
  content: '';
  background: #fff;
  width: 1px;
  height: 22px;
  top: 2px;
  right: -20px;
  opacity: 0.8;
}

.team-block-two .inner-box .image-box .social-links li:last-child:before{
  display: none;
}

.team-block-two .inner-box .image-box .social-links li a{
  position: relative;
  display: inline-block;
  font-size: 15px;
  color: #fff;
}

.team-block-two .inner-box .lower-content{
  position: relative;
  padding-top: 27px;
}

.team-block-two .inner-box .lower-content h3{
  position: relative;
  display: block;
  margin-bottom: 6px;
}

.team-block-two .inner-box .lower-content h3 a{
  display: inline-block;
  color: #222;
}

.team-block-two .inner-box .lower-content h3 a:hover{

}

.team-block-two .inner-box .lower-content .designation{
  position: relative;
  display: block;
  font-size: 13pt;
  line-height: 20px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0px;
}

.team-style-two .owl-nav{
  position: absolute;
  top: 35%;
  width: 100%;
}

.team-style-two .owl-nav .owl-prev,
.team-style-two .owl-nav .owl-next{
  position: absolute;
  display: inline-block;
  font-size: 14px;
  background: #fff;
  width: 55px;
  height: 55px;
  line-height: 55px;
  text-align: center;
  border-radius: 50%;
  cursor: pointer;
  transition: all 500ms ease;
}

.team-style-two .owl-nav .owl-prev{
  left: -95px;
}

.team-style-two .owl-nav .owl-next{
  right: -95px;
}

.team-style-two .owl-nav .owl-prev:hover,
.team-style-two .owl-nav .owl-next:hover{
  color: #fff;
}

.team-style-two .pattern-layer{
  position: absolute;
  top: 0px;
  right: 0px;
  width: 514px;
  height: 600px;
  background-repeat: no-repeat;
}

.team-style-two .anim-icon .icon-1 {
  left: 250px;
  bottom: 80px;
  width: 60px;
  height: 60px;
}

.team-style-two .anim-icon .icon-2 {
  right: 30%;
  top: 130px;
  width: 50px;
  height: 50px;
}




.team-style-two .owl-nav .owl-prev:hover, .team-style-two .owl-nav .owl-next:hover {
  color: #fff;
}
.team-style-two .owl-nav .owl-prev:hover, .team-style-two .owl-nav .owl-next:hover {
  background: #38c179;
}
.team-style-two .owl-nav .owl-prev {
  left: -95px;
}
.team-style-two .owl-nav .owl-prev, .team-style-two .owl-nav .owl-next {
  position: absolute;
  display: inline-block;
  font-size: 14px;
  background: #fff;
  width: 55px;
  height: 55px;
  line-height: 55px;
  text-align: center;
  border-radius: 50%;
  cursor: pointer;
  transition: all 500ms ease;
}
.text_doctores_nosotros{
	text-align: center;
	font-size: 15pt;
	padding: 6px 120px;
	margin-top: -2%;
	color: #35c300;
	line-height: 1.5;
}

.texto_hover_servicios{
	font-size: 12pt;
	text-align: left;
	line-height: 1.2;
	font-family: 'Barlow Condensed', sans-serif;
	color:#222;
	font-weight: 500;
}

.titulos_carousel{
	font-weight: 600;
	color: #000;
	margin-top: 6rem;
text-align: center;
}

.titulos_carousel:hover{
	color: #000;
}

.texto_servicios_carousel2{
	font-size: 12pt;
	text-align: justify;
	color: #fff;
	margin: 0% -19% -12% -18%;
}



.team-block-two .inner-box .image-box:before{
	background: #fbda05;
}

.team-block-two .inner-box .image-box:after{
	background: #fbda05;
}

.team-block-two .inner-box .lower-content h3 a:hover{
  	color: #fbda05;
}

.team-block-two .inner-box .lower-content .designation{
	color: #35c300;
}

/** project-style-three **/

.project-style-three{
  position: relative;
  padding: 50px 0px 110px 0px;
}

.project-style-three .sec-title-two{
  margin-bottom: 50px;
}

.project-style-three .filters{
  position: relative;
  display: block;
  margin-bottom: 40px;
  text-align: center;
}

.project-style-three .more-btn{
  position: relative;
  display: block;
  margin-top: 30px;
}

.project-style-three .more-btn .theme-btn{
  border-radius: 5px;
  overflow: hidden;
  padding: 12.5px 31px;
}

.project-style-three .more-btn .theme-btn i{
  font-size: 14px;
  margin-right: 8px;
}

.project-style-three .filters .filter-tabs li{
  position: relative;
  display: inline-block;
  font-size: 18px;
  color: #909090;
  margin: 0px 20px;
  cursor: pointer;
  transition: all 500ms ease;
}

.project-style-three .filters .filter-tabs li.active,
.project-style-three .filters .filter-tabs li:hover{

}
.project-block-two .inner-box{
  position: relative;
  display: block;
  overflow: hidden;
  margin-bottom: 30px;
}

.project-block-two .inner-box .image-box{
  position: relative;
  display: block;
  overflow: hidden;
}

.project-block-two .inner-box .image-box:before{
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  right: 0px;
  opacity: 0;
  z-index: 1;
  box-shadow: inset 0px -200px 100px -40px rgba(0, 0, 0, 0.9);
  transition: all 500ms ease;
}

.project-block-two .inner-box:hover .image-box:before{
  opacity: 1;
}

.project-block-two .inner-box .image-box a{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  font-size: 40px;
  line-height: 40px;
  color: #fff;
  opacity: 0;
  z-index: 2;
  transition: all 500ms ease;
  -webkit-transition-delay: .3s;
  transition-delay: .3s;
}

.project-block-two .inner-box:hover .image-box a{
  opacity: 1;
}

.project-block-two .inner-box .image-box img{
  width: 100%;
  transition: all 500ms ease;
}

.project-block-two .inner-box:hover .image-box img{
  transform: scale(1.05);
}

.project-block-two .inner-box .content-box{
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 100%;
  z-index: 2;
  text-align: center;
  padding: 0px 15px 16px 15px;
}

.project-block-two .inner-box .content-box h5{
  position: relative;
  display: block;
  font-size: 18px;
  line-height: 20px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 0px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 500ms ease;
}

.project-block-two .inner-box .content-box a{
  position: relative;
  display: inline-block;
  font-size: 12px;
  line-height: 20px;
  font-weight: 700;
  opacity: 0;
  text-transform: uppercase;
  transform: translateY(30px);
}

.project-block-two .inner-box:hover .content-box h5,
.project-block-two .inner-box:hover .content-box a{
  transform: translateY(0px);
  opacity: 1;
}

.project-block-two .inner-box .content-box:hover{
  color: #fbda05;
}
.project-style-three .filters .filter-tabs li.active, .project-style-three .filters .filter-tabs li:hover {
}
.project-style-three .filters .filter-tabs li.active, .project-style-three .filters .filter-tabs li:hover {
  color: #02a800;
}

/* 
 *  Core Owl Carousel CSS File
 */
.owl-carousel-filter {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1;
}
.owl-carousel-filter .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
}
.owl-carousel-filter .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
.owl-carousel-filter .owl-stage-outer {
  position: relative;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px);
}
.owl-carousel-filter .owl-controls .owl-nav .owl-prev,
.owl-carousel-filter .owl-controls .owl-nav .owl-next,
.owl-carousel-filter .owl-controls .owl-dot {
  cursor: pointer;
  cursor: hand;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  text-align: center!important;
}
.owl-carousel-filter.owl-loaded {
  display: block;
}
.owl-carousel-filter.owl-loading {
  opacity: 0;
  display: block;
}
.owl-carousel-filter.owl-hidden {
  opacity: 0;
}
.owl-carousel-filter .owl-refresh .owl-item {
  display: none;
}
.owl-carousel-filter .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl-carousel-filter .owl-item img {
  display: block;
  width: 100%;
  -webkit-transform-style: preserve-3d;
}
.owl-carousel-filter.owl-text-select-on .owl-item {
  -webkit-user-select: auto;
  -moz-user-select: auto;
  -ms-user-select: auto;
  user-select: auto;
}
.owl-carousel-filter .owl-grab {
  cursor: move;
  cursor: -webkit-grab;
  cursor: -o-grab;
  cursor: -ms-grab;
  cursor: grab;
}
.owl-carousel-filter.owl-rtl {
  direction: rtl;
}
.owl-carousel-filter.owl-rtl .owl-item {
  float: right;
}
.owl-nav{
	text-align: center;
}


/* No Js */
.no-js .owl-carousel-filter {
  display: block;
}
/* 
 *  Core Owl Carousel CSS File
 */
.owl-carousel-filter {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1;
}
.owl-carousel-filter .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
}
.owl-carousel-filter .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
.owl-carousel-filter .owl-stage-outer {
  position: relative;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px);
}
.owl-carousel-filter .owl-controls .owl-nav .owl-prev,
.owl-carousel-filter .owl-controls .owl-nav .owl-next,
.owl-carousel-filter .owl-controls .owl-dot {
  cursor: pointer;
  cursor: hand;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl-carousel-filter.owl-loaded {
  display: block;
}
.owl-carousel-filter.owl-loading {
  opacity: 0;
  display: block;
}
.owl-carousel-filter.owl-hidden {
  opacity: 0;
}
.owl-carousel-filter .owl-refresh .owl-item {
  display: none;
}
.owl-carousel-filter .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl-carousel-filter .owl-item img {
  display: block;
  width: 100%;
  -webkit-transform-style: preserve-3d;
}
.owl-carousel-filter.owl-text-select-on .owl-item {
  -webkit-user-select: auto;
  -moz-user-select: auto;
  -ms-user-select: auto;
  user-select: auto;
}
.owl-carousel-filter .owl-grab {
  cursor: move;
  cursor: -webkit-grab;
  cursor: -o-grab;
  cursor: -ms-grab;
  cursor: grab;
}
.owl-carousel-filter.owl-rtl {
  direction: rtl;
}
.owl-carousel-filter.owl-rtl .owl-item {
  float: right;
}

/* No Js */
.no-js .owl-carousel-filter {
  display: block;
}
/*-------------------------------------
	10. Image effects 
-------------------------------------*/
.wt-img-effect {position: relative;	overflow: hidden;	display: block;}
.wt-img-effect img {display: block;	margin: 0;	width: 100%;	height: auto;	box-shadow: 0 0 0 rgba(0,0,0,0);
	-webkit-box-shadow: 0 0 0 rgba(0,0,0,0);
	-moz-box-shadow: 0 0 0 rgba(0,0,0,0);
	transition: all 0.25s;
	-moz-transition: all 0.25s;
	-webkit-transition: all 0.25s;
	-o-transition: all 0.25s;
}

/* 10.1 image-opacity */
.wt-img-effect.opacity img:hover {opacity: 0.8;	-moz-opacity: 0.8;	-webkit-opacity: 0.8;}

/*10.2 image-zoom */
.wt-img-effect.zoom-slow img {transition: all 10s;	-moz-transition: all 10s;	-webkit-transition: all 10s;	-o-transition: all 10s;}
.wt-img-effect.zoom-slow:hover img {-moz-transform: scale(2);	-webkit-transform: scale(2);	-o-transform: scale(2);	-ms-transform: scale(2);	transform: scale(2);}

/*10.3 image-zoom-slow */
.wt-img-effect.zoom:hover img {
	-moz-transform: scale(1.5);
	-webkit-transform: scale(1.5);
	-o-transform: scale(1.5);
	-ms-transform: scale(1.5);
	transform: scale(1.5);
}

/*10.4 image-shrink */
.wt-img-effect.shrink:hover img {
	transform: scale(0.8);
	-ms-transform: scale(0.8);
	-webkit-transform: scale(0.8);
	-o-transform: scale(0.8);
	-moz-transform: scale(0.8);
}

/*10.5 image-side-pan */
.wt-img-effect.side-pan:hover img {
	margin-left: -9%;
	transform: scale(1.2);
	-ms-transform: scale(1.2);
	-webkit-transform: scale(1.2);
	-o-transform: scale(1.2);
	-moz-transform: scale(1.2);
}

/*10.6 image-vertical-pan */
.wt-img-effect.vertical-pan:hover img {
	margin-top: -10%;
	transform: scale(1.2);
	-ms-transform: scale(1.2);
	-webkit-transform: scale(1.2);
	-o-transform: scale(1.2);
	-moz-transform: scale(1.2);
}

/*10.7 image-fade-in */
.wt-img-effect.fade-in {	background: #000}
.wt-img-effect.fade-in img {	opacity: 0.65;	-moz-opacity: 0.65;	-webkit-opacity: 0.65;}
.wt-img-effect.fade-in:hover img {	opacity: 1;	-moz-opacity: 1;	-webkit-opacity: 1;}

/*10.8 image-fade-out */
.wt-img-effect.fade-out {	background: #000}
.wt-img-effect.fade-out:hover img {	opacity: 0.7;	-moz-opacity: 0.7;	-webkit-opacity: 0.7;}

/*10.9 image-rotate */
.wt-img-effect.rotate:hover img {
	-moz-transform: scale(1.5) rotate(-20deg);
	-webkit-transform: scale(1.5) rotate(-20deg);
	-o-transform: scale(1.5) rotate(-20deg);
	-ms-transform: scale(1.5) rotate(-20deg);
	transform: scale(1.5) rotate(-20deg);
}

/*10.10 image-sepia */
.wt-img-effect.sepia img {-webkit-filter: sepia(100%);	filter: sepia(100%);}
.algo-image-hover.sepia:hover img {-webkit-filter: sepia(0);	filter: sepia(0);}

/*10.11 image-blurr */
.wt-img-effect.blurr img {transition: all 0.2s;	-moz-transition: all 0.2s;	-webkit-transition: all 0.2s;	-o-transition: all 0.2s;}
.wt-img-effect.blurr:hover img {filter: blur(3px);	-webkit-filter: blur(3px);	-moz-filter: blur(3px);	-o-filter: blur(3px);	-ms-filter: blur(3px);}

/*10.12 image-blurr-invert */
.wt-img-effect.blurr-invert img {transition: all 0.2s;	-moz-transition: all 0.2s;	-webkit-transition: all 0.2s;	-o-transition: all 0.2s;}
.wt-img-effect.blurr-invert img {filter: blur(3px);	-webkit-filter: blur(3px);	-moz-filter: blur(3px);	-o-filter: blur(3px);	-ms-filter: blur(3px);}
.wt-img-effect.blurr-invert:hover img {filter: blur(0px);	-webkit-filter: blur(0px);	-moz-filter: blur(0px);	-o-filter: blur(0px);	-ms-filter: blur(0px);}

/*10.13 image off color */
.wt-img-effect.off-color img {filter: grayscale(0);	-webkit-filter: grayscale(0);	-moz-filter: grayscale(0);	-o-filter: grayscale(0);	-ms-filter: grayscale(0);}
.wt-img-effect.off-color:hover img {filter: grayscale(1);	-webkit-filter: grayscale(1);	-moz-filter: grayscale(1);	-o-filter: grayscale(1);	-ms-filter: grayscale(1);}

/*10.14 image on color */
.wt-img-effect.on-color img {filter: grayscale(1);	-webkit-filter: grayscale(1);	-moz-filter: grayscale(1);	-o-filter: grayscale(1);	-ms-filter: grayscale(1);}
.wt-img-effect.on-color:hover img {filter: grayscale(0);	-webkit-filter: grayscale(0);	-moz-filter: grayscale(0);	-o-filter: grayscale(0);	-ms-filter: grayscale(0);}

.overlay-bx-2{
	position: absolute;
	left: 0;
	bottom:0px;
	width: 100%;
	height: 100%;
	z-index: 1;
	background-color:#e6c700;
	opacity:0;
	-webkit-transition: all 0.5s linear;
	-moz-transition: all 0.5s linear;
	-ms-transition: all 0.5s linear;
	-o-transition: all 0.5s linear;
	transition: all 0.5s linear;
}

.overlay-bx-2:hover{	opacity:0.9;	bottom:0px;}
/*===========================
37. line-amiation-block
===========================*/
.line-amiation{	position:relative;	width:100%;	height:100%;}
.line-amiation:after,
.line-amiation:before{
	content:"";
	position:absolute;	
    background-color:#fff;
	left:20px;
	top:20px;
	-webkit-transition: all 0.7s linear;
	-moz-transition: all 0.7s linear;
	-ms-transition: all 0.7s linear;
	-o-transition: all 0.7s linear;
	transition: all 0.7s linear;
	opacity:0;
}
.line-amiation:after{width:0%;	height:1px;}
.line-amiation:before{width:1px;	height:0px;}
.line-amiation:hover:after{width:100%;	opacity:1;	left:-20px;}
.line-amiation:hover:before{height:100%;	top:-20px;	opacity:1;}

.line-amiation a.v-button{
	color:#fff;
	border-left:2px solid;
	display:block;
	position:absolute;
	bottom:90px;
	right:-40px;
	-moz-transform: rotate(-90deg);
	-webkit-transform: rotate(-90deg);
	-o-transform: rotate(-90deg);
	-ms-transform: rotate(-90deg);
	transform: rotate(-90deg);
}

@media only screen and (max-width:420px) {	
	.line-amiation a.v-button{bottom:70px;}	
}
@media only screen and (max-width:768px) {
.latest_project-outer{padding-left:30px;	padding-right:30px;}
}
@media only screen and (max-width:600px) {
.latest_project-outer{padding-left:15px;	padding-right:15px;}
}
.square_shape3,
.square_shape4{
	position:relative;
	overflow: hidden;
	z-index:0;
}
.square_shape1:after,
.square_shape2:before,
.square_shape3:before,
.square_shape4:after{
	width:800px;
	height:800px;	
	position:absolute;
	content:"";
	border:40px solid rgba(191,191,191,0.1);
	
	-moz-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	z-index:-1;
}
.square_shape3:before{right:-700px;	bottom:-300px;}

.owl-btn-bottom-left .owl-nav {text-align:left;}
.text-white {color:#FFF; }
.text-white h1,
.text-white h2,
.text-white h3,
.text-white h4,
.text-white h5,
.text-white h6,
.text-white p,
.text-white .title-small {color:#FFF; }
.letter-spacing-4{letter-spacing:4px;color: #000;}
.site-button.text-uppercase {text-transform:uppercase;}
.text-uppercase {	text-transform: uppercase}
.p-a40 {
  padding: 40px;
}
.font-weight-300 {
  font-weight: 300;
}
.p-lr80 {
  padding-left: 80px;
  padding-right: 80px;
}
h2 {
  font-family: 'Sansita', sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 30px;
  color: #000;
}
.owl-btn-bottom-left .owl-nav {
  text-align: center;
}
.owl-carousel .owl-nav {
  margin-top: 40px;

}
.owl-prev {
  margin-right: 5px;
}
.owl-prev, .owl-next {
  background-color: #000;
  color: #ffffff;
  padding: 8px 10px;
  width: 35px;
  height: 35px;
  text-align: center;
  font-size: 13px;
  display: inline-block;
  cursor: pointer;
}
.owl-next {
  margin-left: 5px;
}
.owl-prev, .owl-next {
  background-color: #02a800;
  color: #ffffff;
  padding: 5px 10px;
  width: 35px;
  height: 35px;
  text-align: center;
  font-size: 13px;
  display: inline-block;
  cursor: pointer;
}

.feature-box {
  text-align: center;
}

.feature-thumb {
  overflow: hidden;
}

.feature-thumb img {
  -moz-border-radius: 10px 10px 0 0px;
  -webkit-border-radius: 10px 10px 0 0px;
  -ms-border-radius: 10px 10px 0 0px;
  -o-border-radius: 10px 10px 0 0px;
  border-radius: 10px 10px 0 0px;
  -moz-transition: all 900ms ease;
  -webkit-transition: all 900ms ease;
  -ms-transition: all 900ms ease;
  -o-transition: all 900ms ease;
  transition: all 900ms ease;
}

.feature-box:hover .feature-thumb img {
  -moz-transform: scale(1.2) rotate(3deg);
  -o-transform: scale(1.2) rotate(3deg);
  -ms-transform: scale(1.2) rotate(3deg);
  -webkit-transform: scale(1.2) rotate(3deg);
  transform: scale(1.2) rotate(3deg);
}

.feature-content {
  padding: 30px 25px 45px;
  background: #fff;
  border-radius: 0px 0px 10px 10px;
  position: relative;
  -moz-transition: all 400ms ease-out 0s;
  -webkit-transition: all 400ms ease-out 0s;
  -ms-transition: all 400ms ease-out 0s;
  -o-transition: all 400ms ease-out 0s;
  transition: all 400ms ease-out 0s;
}

.feature-box:hover .feature-content {
  -webkit-box-shadow: 0 0 16px 10px rgba(0, 0, 0, 0.06);
  -khtml-box-shadow: 0 0 16px 10px rgba(0, 0, 0, 0.06);
  -moz-box-shadow: 0 0 16px 10px rgba(0, 0, 0, 0.06);
  -ms-box-shadow: 0 0 16px 10px rgba(0, 0, 0, 0.06);
  -o-box-shadow: 0 0 16px 10px rgba(0, 0, 0, 0.06);
  box-shadow: 0 0 16px 10px rgba(0, 0, 0, 0.06);
}

.feature-content:after {
  border-radius: 15px;
  position: absolute;
  background: #fbda05;
  height: 3px;
  width: 0;
  left: 0;
  bottom: 0;
  content: "";
  right: 0;
  margin: 0 auto;
  -moz-transition: all 400ms ease-out 0s;
  -webkit-transition: all 400ms ease-out 0s;
  -ms-transition: all 400ms ease-out 0s;
  -o-transition: all 400ms ease-out 0s;
  transition: all 400ms ease-out 0s;
  opacity: 0.6;
  z-index: 0;
}

.feature-box:hover .feature-content:after {
  width: 85%;
}

.feature-content .title {
  margin-bottom: 15px;
}

.feature-box .link a {
  position: absolute;
  background: linear-gradient(45deg, #0E90D5, #3032A2) !important;
  color: #fff;
  height: 45px;
  width: 85px;
  line-height: 45px;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: -20px;
  border-radius: 30px;
  z-index: 1;
  -moz-transition: all 400ms ease-out 0s;
  -webkit-transition: all 400ms ease-out 0s;
  -ms-transition: all 400ms ease-out 0s;
  -o-transition: all 400ms ease-out 0s;
  transition: all 400ms ease-out 0s;
}

.feature-box .link a:hover {
  width: 110px;
}
.titulos_ser{
	color: #02a800;
}

/** contact-style-two **/

.contact-style-two{
  position: relative;
  width: 100%;
  padding: 93px 0px 100px 0px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
}

.contact-style-two:before{
  position: absolute;
  content: '';
  background: #204669;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  right: 0px;
  opacity: 0.8;
}

.contact-style-two .default-form{
  position: relative;
  margin: 0px 5px;
}

.contact-style-two .default-form .form-group{
  position: relative;
  margin-bottom: 20px;
  padding: 0px 10px;
}

.contact-style-two .default-form .form-group:last-child{
  margin-bottom: 0px;
}

.contact-style-two .default-form .form-group input[type='text'],
.contact-style-two .default-form .form-group input[type='email'],
.contact-style-two .default-form .form-group textarea{
  position: relative;
  width: 100%;
  height: 55px;
  background: #fff;
  font-size: 16px;
  padding: 10px 20px;
  border: 2px solid #fff;
  transition: all 500ms ease;
}

.contact-style-two .default-form .form-group input:focus,
.contact-style-two .default-form .form-group textarea:focus{

}

.contact-style-two .default-form .form-group textarea{
  display: block;
  height: 170px;
  resize: none;
}

.contact-style-two .default-form .form-group button{
  text-transform: uppercase;
  display: block;
  width: 100%;
  padding: 12.5px 30px;
}

.contact-style-two .sec-title{
  margin-bottom: 39px;
}

.contact-style-two .sec-title h2{
  margin-bottom: 17px;
}

.contact-style-two .sec-title p{
  color: #fff;
  font-size: 18pt;
}


/** google-map **/

.google-map-section{
  position: relative;
  display: block;
}

#contact-google-map{
  position: relative;
  display: block;
  height: 550px;
}

.contact-style-two .default-form .form-group input[type="text"], .contact-style-two .default-form .form-group input[type="email"], .contact-style-two .default-form .form-group textarea {
  position: relative;
  width: 100%;
  height: 55px;
  background: #fff;
  font-size: 16px;
  padding: 10px 20px;
  border: 2px solid #fff;
  transition: all 500ms ease;
}

.contact-style-two .default-form .form-group:last-child {
  margin-bottom: 0px;
}
.contact-style-two .default-form .form-group {
  position: relative;
  margin-bottom: 20px;
  padding: 0px 10px;
}
.contact-style-two .default-form .form-group button {
  text-transform: uppercase;
  display: block;
  width: 100%;
  padding: 12.5px 30px;
}
.theme-btn.style-one {
}
.theme-btn.style-one {
  background: #fbda05;
}

.arlumi{
	padding: 5px;
	text-align: center;
	font-weight: 300;
	font-size: 11pt;
	color: #1196a7;
	margin: 2% -8% 1% 20%;
	float: right;
}
.alin_arlumi{
	color: #1196a7;
	float: left;
	margin: 6% 0% 0% 10%;
}
.alin_arlumi1{
	margin: 13% 0% 0% 10%;
	text-align: center;
}
.foot_ciudad{
	color: #fff;
}
.foot_alin{
	/*border-right: 2px solid #02a800;*/
	height: 50px;
	margin: 2% 0% 0% 0%;
}
.foot_alin1{
	/*border-right: 2px solid #02a800;*/
	height: 50px;
	text-align: center;
	margin: 1.8% 0% 0% 0%;
}



.ofertas:hover{
	color: #35c300;
}

div#slider { overflow: hidden; } /* las imágenes no van a salir del márgen de la pantalla*/
div#slider figure img { width: 20%; float: left; }

div#slider figure { 
  position: relative;
  width: 500%;
  margin: 0;
  left: 0;
  text-align: left;
  font-size: 0;
  animation: 30s slidy infinite; /*el movimiento se va a mantener de forma indefinida -infinito-*/
}


/*esta parte del código define el movimiento de las imágenes a la izquierda*/
@keyframes slidy {
0% { left: 0%; }
20% { left: 0%; }
25% { left: -100%; }
45% { left: -100%; }
50% { left: -200%; }
70% { left: -200%; }
75% { left: -300%; }
95% { left: -300%; }
100% { left: -400%; }
}


.layer-overlay.overlay-white-8::before {
  background-color: rgba(255, 255, 255, 0.3);
}
.layer-overlay::before {
  z-index: -1;
}
.layer-overlay::before {
  background: rgba(17, 17, 17, 0.5) none repeat scroll 0 0;
    background-color: rgba(17, 17, 17, 0.5);
  content: " ";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.img-icon-service-box.style2::before {
  border-style: solid;
  border-width: 0 0 30px 30px;
  border-color: transparent transparent #dfdfdf transparent;
  bottom: 6px;
  content: "";
  display: inline-block;
  height: 0;
  opacity: 0;
  position: absolute;
  right: 6px;
  width: 0;
  transition: all 0.3s ease;
}
.img-icon-service-box.style2 .tm-thumb {
  overflow: hidden;
}
.img-icon-service-box.style2 .tm-thumb img {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  transition: all 0.4s ease-in-out;
}
.tm-fullwidth, .img-fullwidth {
  width: 100% !important;
}
.img-icon-service-box.style2 .tm-details {
  padding: 50px 25px 40px 25px;
}
.img-icon-service-box .tm-details {
  position: relative;
}

.img-icon-service-box.style2:hover .tm-thumb img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
.img-icon-service-box.style2 .tm-thumb img {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  transition: all 0.4s ease-in-out;
}
.tm-fullwidth, .img-fullwidth {
  width: 100% !important;
}
.img-icon-service-box.style2 .tm-details {
  padding: 18px 25px 16px 25px;
}
.img-icon-service-box .tm-details {
  position: relative;
}
.text-center {
  text-align: center !important;
}
*, ::after, ::before {
  box-sizing: border-box;
}

.img-icon-service-box.style2:hover::before {
  opacity: 1;
}

.img-icon-service-box:hover::before {
  display: none;
}
.img-icon-service-box.style2::before {
  border-style: solid;
  border-width: 0 0 30px 30px;
  border-color: transparent transparent #fbda05 transparent;
  bottom: 6px;
  content: "";
  display: inline-block;
  height: 0;
  opacity: 0;
  position: absolute;
  right: 6px;
  width: 0;
  transition: all 0.3s ease;
}
.pb-lg-70 {
    padding-bottom: 70px !important; }
.img-icon-service-box.style2 {
  background-color: #fff;
  border: 1px solid #e6e6e6;
  padding: 0;
  position: relative;
  -moz-box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.05);
  -webkit-box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.05);
  z-index: 9;
}
.espacio_especialidad{
	margin: 0% 0% 3% 0%;
}
.titulos_especialidades{
	color: #02a800;
}
.tex_especialidades{
	text-align: justify;
}
.boton_especialidades{
	text-align: center;
margin: 3% 0% 2% 0%;
}
.especialidades_boton{
	background: #fff;
	border: 2px solid #35c300;
padding: 9px 50px;
color: #313030;
font-size: 12pt;
box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);

}
.especialidades_boton:hover{
	background: #fbda05;
	border: 2px solid #fbda05;
	color: #fff;
}

.botonF1{
  width:40px;
  height:40px;
  border-radius:100%;
  background:#fbda05;
  right:0;
  bottom:0;
  position: fixed;
  margin-right:16px;
  margin-bottom:29%;
  border:none;
  outline:none;
  color:#FFF!important;
  box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
  transition:.3s;  
  z-index: 999;
  line-height: 0.3
}
.botonF1 a{
	color: #fff;
}
.botonFace a{
	color: #fff;
}

.botonFace{
  width:40px;
  height:40px;
  border-radius:100%;
  background:#3b5998;
  right:0;
  bottom:0;
  position: fixed;
  margin-right:16px;
  margin-bottom:25.5%;
  border:none;
  outline:none;
  color:#FFF!important;
  box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
  transition:.3s;  
  z-index: 999;
  line-height: 0.3;
}
.botonInst a{
	color: #fff;
}

.botonInst{
  width:40px;
  height:40px;
  border-radius:100%;
  background: #d6249f;
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%);
  right:0;
  bottom:0;
  position: fixed;
  margin-right:16px;
  margin-bottom:22.2%;
  border:none;
  outline:none;
  color:#FFF!important;
  box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
  transition:.3s;  
  z-index: 999;
  line-height: 0.3;
}
.botonWhat a{
	color: #fff;
}

.botonWhat{
  width:40px;
  height:40px;
  border-radius:100%;
  background: #25D366;
  right:0;
  bottom:0;
  position: fixed;
  margin-right:16px;
  margin-bottom:18.8%;
  border:none;
  outline:none;
  color:#FFF!important;
  box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
  transition:.3s;  
  z-index: 999;
  line-height: 0.3;
}

.botonyou a{
	color: #fff;
}

.botonyou{
  width:40px;
  height:40px;
  border-radius:100%;
  background: #c4302b;
  right:0;
  bottom:0;
  position: fixed;
  margin-right:16px;
  margin-bottom:15.5%;
  border:none;
  outline:none;
  color:#FFF!important;
  box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
  transition:.3s;  
  z-index: 999;
  line-height: 0.3;
}
span{
  transition:.5s;  
}
.botonF1:hover span{
  transform:rotate(360deg);
}
.botonF1:active{
  transform:scale(1.4);
}

//***********TAPS***********//
#features .owl-thumb-item {
    display: block;
    width: 100%;
    background: #fff;
    margin-bottom: 16px;
    border-radius: 2px;
    padding: 5px;
    -webkit-transition: .2s;
    transition: .2s;
}

#features .owl-thumb-item.active {
    background: #2cc5ae;
    color: #fff;
    -webkit-transition: all 0.1s ease-out;
    transition: all 0.1s ease-out;
}

#features .owl-thumb-item.active:before {
    content: '\f0d9';
    font-family: 'FontAwesome';
    float: left;
    margin-left: -14px;
    margin-top: 28px;
    font-size: 25px;
    color: #2cc5ae;
}

#features .owl-thumb-item:hover {
    cursor: pointer;
}

#features .owl-thumb-item .media {
    cursor: pointer;
    padding-bottom: 48px;
}

#features .owl-thumb-item .media-body h5 {
    margin-top: 4px;
    font-size: 17px;
    font-weight: 600;
    color: #075668;
}

#features .owl-thumb-item.active .media-body h5 {
    color: #fff;
}

#features .owl-thumb-item .media-body p {
    font-size: .98em;
    color: #009cc4;
    margin: 7px 0;
}

#features .owl-thumb-item.active .media-body p {
    color: #fff;
}

#features .owl-thumb-item .media-left {
    float: left;
    margin-right: 10px;
    margin-top: 10px;
    display: block;
    vertical-align: middle;
    width: 50px;
}

#features .owl-thumb-item .media-left {
    color: #deb666;
    font-size: 2em;
    line-height: 2em;
    text-align: center;
    margin-left: 14px;
}

#features .owl-thumb-item .media-left i:before {
    font-size: 38px;
    margin: 0;
}
#features .owl-thumb-item {
  display: block;
  width: 100%;
  background: #fff;
  margin-bottom: 16px;
  border-radius: 2px;
  padding: 5px;
  -webkit-transition: .2s;
  transition: .2s;
}
#features .owl-thumb-item .media-left {
  color: #deb666;
  font-size: 2em;
  line-height: 2em;
  text-align: center;
  margin-left: 14px;
}
.media-body{
	padding: 6px;
}

.resumen_prod{
	width: 100%;
	background: #fff;
	box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
	padding: 10px 10px;
}
.prod_compra{
	font-size: 11pt;
	font-weight: 700;
	margin: -3.8rem 0% 2rem 4.5rem;
}

span {
	cursor:pointer; 
}
.number{
  margin: 0% 0% 0% 0rem;
  color: #009cc4;
}

.number-sec{
  margin: 0% 0% 0% 0rem;
  color: #fff;
}

.number-sec:hover{
  margin: 0% 0% 0% 0rem;
  color: #fff;
  text-decoration: none;
}

.minus, .plus{
  width: 27px;
height: 30px;
background: #35c300;
border-radius: 4px;
padding: 0px 0px 0px 2px;
border: 1px solid #ddd;
display: inline-block;
vertical-align: middle;
text-align: center;
font-weight: 600;
font-size: 14pt;
color: #fff;
}
input{
    height:34px;
    width: 100px;
    font-size: 15pt;
    border:1px solid #ddd;
    border-radius:4px;
    display: inline-block;
    vertical-align: middle;
}
.precio_compra{
	text-align: center;
	font-weight: 600;
	font-size: 12pt;
	margin: 0 0% 0% 0%;
}
.aliniado_compra{
	text-align: left;
padding: 0px 35px;
}   
.gratis{
	background: #02a800;
	color: #fff;
	padding: 4px 0px;
	text-align: center;
	margin: 0.8rem 0rem 1rem 0rem;
}
.bnt-compra{
	padding: 9px 0px;
	text-align: center;
	width: 100%;
	margin: 1rem 0rem 0rem 0rem;
	background: #fbda05;
}


/****NOTIFICACIONES****/
.nav a {
  text-decoration: none;
}

.nav,
.nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  float: left;
}

.nav li {
  display: block;
  float: left;
  clear: both;
}

.nav > li {
  position: relative;
  cursor: pointer;
  padding: 15px;
  font-size: 20px;

}



.nav > li .num {
  position: absolute;
  display: block;
  top: -2px;
  right: 2px;
  width: 20px;
  height: 20px;
  font-size: 14px;
  line-height: 20px;
  border-radius: 100%;
  background-color: #A52019;
  color: #fff;
  text-align: center;
}

.nav > li > ul {
  position: absolute;
  left: -1px;
  display: none;
  width: 350px;
  border: 1px solid #ccc;
  margin-top: 15px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, .25);
  webkit-box-shadow: 0 3px 8px rgba(0, 0, 0, .25);
}

.nav > li:hover > ul {
  display: block;
}

.nav > li > ul:before,
.nav > li > ul:after {
  display: block;
  position: absolute;
  top: -10px;
  left: 15px;
  content: '';
  width: 8px;
  height: 8px;
  border-style: solid;
}

.nav > li > ul:before {
  border-width: 0 10px 10px 10px;
  border-color: transparent transparent #ccc transparent;
  z-index: 1px;
}

.nav > li > ul:after {
  top: -9.5px;
  left: 16px;
  border-width: 0 9px 9px 9px;
  border-color: transparent transparent #fff transparent;
  z-index: 2px;
}

.nav > li > ul > li {
  width: 100%;
  font-size: 14px;
  border-top: 1px solid #ccc;
  padding: 15px;
}

.nav > li > ul > li.title {
  font-size: 16px;
  font-widght: bold;
  color: #000;
  padding: 8px 15px;  
}

.nav > li > ul > li.footer {
  font-size: 14px;
  font-widght: bold;
  color: #000;
  background-color: #eee;
  text-align: center;
  padding: 8px;
}

.nav > li > ul > li:first-child {
  border-top: 0;
}

.nav > li > ul > li:last-child {
  border-bottom: 0;
}

.nav > li > ul > li a {
  display: block;
  color: #444;
}

.nav > li > ul > li:hover a {
  color: #37a000;
}

/****************/
.container form .user_details{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

form .user_details .input_pox{
    margin-bottom: 15px;
    margin: 20px 0 12px 0;
    width: 100%;
}
.user_details .input_pox .datails{
    display: block;
    font-weight: 500;
    margin-bottom: 5px;
}
.user_details .input_pox input{
    height: 45px;
    width: 100%;
    outline: none;
    border-radius: 5px;
    border: 1px solid #ccc;
    padding-left: 15px;
    font-size: 16px;
    border-bottom-width: 2px;
    transition: all 0.3s ease;

}
.user_details .input_pox input:focus,
.user_details .input_pox input:valid{
border-color: #9b59b6;
}
form .gender_details .gender_title{
    font-size: 20px;
    font-weight: 500;
}
form .gender_details .category{
    display: flex;
    width: 40%;
    margin: 14px 0;
    justify-content: space-between;
}
.gender_details .category label{
display: flex;
}
.gender_details .category .dot{
height: 18px;
width: 18px;
background: #d9d9d9;
border-radius: 50%;
margin-right: 10px;
border: 5px solid transparent;
}
#dot-1:checked ~ .category label .one,
#dot-2:checked ~ .category label .two,
#dot-3:checked ~ .category label .three{
border-color: #d9d9d9;
background-color: #9b59b6;
}
form input[type="radio"]{
    display: none;
}
form .button{
    height: 45px;
    margin: 45px 0;
}
form .button input{
    height: 100%;
    width: 100%;
    outline: none;
    color: #fff;
    border: none;
    font-size: 18px;
    font-weight: 500;
    border-radius: 5px;
    letter-spacing: 1px;
    background: linear-gradient(123deg, #02a800,#35c300);

}
form .button input :hover{
    background: linear-gradient(-123deg, #71b8e7,#9b59b6);
}
@media (max-width: 584px){
    .container{
        max-width: 100%;
    }
    form .user_details .input_pox{
        margin-bottom: 15px;
        width:100%;
    }
    form .gender_details .category{
        width: 100%;
    }
    .container form .user_details{
        max-height: 300px;
        overflow: scroll;
    }
    .user_details::-webkit-scrollber{
     width: 0;
    }
}


input[type="radio"][id^="cb"] {
  display: none;
}

label {
  border: 1px solid #fff;
  padding: 10px;
  display: block;
  position: relative;
  margin: 10px;
  cursor: pointer;
}

label:before {
  background-color: #35c300;
color: white;
content: " ";
display: block;
border-radius: 50%;
position: absolute;
top: 0px;
left: 0px;
height: 25px;
text-align: center;
line-height: 23px;
transition-duration: 0.4s;
transform: scale(0);
width: 28px;
}

label img {
  height: 100px;
  width: 100px;
  transition-duration: 0.2s;
  transform-origin: 50% 50%;
}


:checked + label:before {
  content: "✓";
  background-color: #35c300;
  transform: scale(1);
}

:checked + label img {
  transform: scale(0.9);
  box-shadow: 0 0 5px #333;
  z-index: -1;
}

.horarios{
	border-radius: 12px;
border: 2px solid #064882;
width: 100%;
height: 54px;
margin: auto;
padding: 12px 22px;
}


hr.style-two {
    border: 0;
    height: 1px;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));
    width: 40%;
margin: 3% auto 5% auto;
}

.res1{
	background-color: #f9f9f9;-webkit-box-shadow: 14px 18px 36px -26px rgba(0,0,0,0.75);
-moz-box-shadow: 14px 18px 36px -26px rgba(0,0,0,0.75);
box-shadow: 14px 18px 36px -26px rgba(0,0,0,0.75);
}
.btn-res{
	background-color: #02a800;padding: 6px 49px;
}
.btn-res:hover{
	background-color: #eaca00;
}


/******NUEVO MENU WEB 290923*******/


:root {
  --hover-color: rgb(102, 40, 245);
}


nav {
  background: #009cc4;
  box-shadow: 0px 5px 15px 0px rgba(212, 201, 201, 0.75);
  position: fixed;
  z-index: 9;
  width: 100%;
}
.logo a {
  font-size: 20px;
  font-weight: 700;
  color: #353535;
  text-transform: uppercase;
}

/* normal menu css */

.main_menu > ul > li {
  display: inline-block;
  position: relative;
  margin: 0 -2px;
}
.main_menu ul li {
  position: relative;
}

.main_menu ul li a {
  font-size: 16px;
  color: #fff;
  padding: 20px 10px;
  display: block;
  font-weight: 400;
  text-decoration: none;
}

.main_menu ul li .active,
.main_menu ul li:hover > a {
  color: #fff;
  transition: none;
}
/* Normal Dropdown menu */
.main_menu ul li ul {
  width: 200px;
  background: #2cc5ae;
  transition: 0.5s;
  box-shadow: 0px 5px 15px 0px rgba(212, 201, 201, 0.75);
}

.main_menu ul li ul li a {
  padding: 10px 25px;
  font-size: 15px;
  border-bottom: 2px solid #009cc4;
}
.main_menu ul li ul li a i {
  float: right;
}

.main_menu ul li ul li ul {
  left: 100%;
  top: 0;
}

.sub_menu ul li{
	background-color: #075668;
	border-bottom: 2px solid #009cc4;
}

/* mega menu css */
.mega_menu_dropdown {
  position: static !important;
}
.mega_menu {
  left: 0;
  right: 0;
  background: #fff;
  display: flex;
  flex-wrap: wrap;
  transition: 0.5s;
  box-shadow: 0px 5px 15px 0px rgba(212, 201, 201, 0.75);
}
.mega_menu_item {
  width: 50%;
  padding: 30px 20px;
}
.main_menu ul li .mega_menu_item a {
  padding: 10px 0;
}

.main_menu ul li .mega_menu_item a:hover {
  color: var(--hover-color);
}
.mega_menu_item h3 {
  margin-bottom: 15px;
}
.mega_menu_item img {
  width: 100%;
}

/* demo_2 css */
.mega_menu_demo_2 .mega_menu {
  left: 75%;
  transform: translateX(-50%);
  width: 486px;
}

.mobile_btn {
  display: none;
}

/* responsive css */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .container {
    width: 960px;
  }
  .mega_menu_demo_2 .mega_menu {
    width: 940px;
  }
  .main_menu ul li ul {
    width: 150px;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .container {
    width: 720px;
  }
  .mega_menu_demo_2 .mega_menu {
    width: 700px;
  }
  .main_menu ul li a {
    font-size: 15px;
    padding: 20px 16px;
  }
  .main_menu ul li ul {
    width: 150px;
  }
}
@media (min-width: 768px) {
  .main_menu ul li ul {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    margin-top: 50px;
  }
  .main_menu ul li .mega_menu {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    margin-top: 50px;
  }
  .main_menu ul li:hover > ul {
    visibility: visible;
    opacity: 1;
    margin-top: 0px;
    z-index: 99;
  }
  .main_menu ul li:hover > .mega_menu {
    visibility: visible;
    opacity: 1;
    margin-top: 0;
    z-index: 99;
  }
}

@media (max-width: 767.98px) {
  .mega_menu_demo_2 .mega_menu,
  .container {
    width: 100%;
  }

  nav {
    padding: 15px;
  }
  .mobile_btn {
    cursor: pointer;
    display: block;
    margin: 2rem 0% 0% 14rem;
    color: #fff;
    font-size: 2rem;
  }

  .main_menu {
    display: none;
    width: 100%;
  }

  .main_menu ul li {
    display: block;
  }
  .main_menu ul li a i {
    float: right;
  }
  .main_menu ul li a {
    border-bottom: 1px solid #ddd;
  }
  .main_menu ul li ul {
    width: 100%;
  }
  .main_menu ul li ul li ul {
    left: 0;
    top: auto;
  }

  .mega_menu .mega_menu_item {
    width: 50%;
  }
  .main_menu ul li ul {
    display: none;
    transition: none;
  }
  .main_menu ul li .mega_menu {
    display: none;
    transition: none;
  }

  .mega_menu_demo_2 .mega_menu {
    transform: translateX(0);
  }
}

@media (max-width: 575.98px) {
  .mega_menu .mega_menu_item {
    width: 100%;
  }
}

/******NUEVO MENU WEB 290923*******/

.services-section{
	position:relative;
	padding:40px 20px 15px;
	background-color:#075668;
}

.services-section .title-box{
	position:relative;
	padding-left:32px;
	margin-bottom:55px;
	border-left:1px solid rgba(255,255,255,0.20);
}

.services-section .title-box h2{
	position:relative;
	color:#dfb162;
	font-size:38px;
	line-height:1.3em;
}

.service-block{
	position:relative;
	margin-bottom:30px;
}

.service-block .inner-box{
	position:relative;
}

.service-block .inner-box .image{
	position:relative;
	overflow:hidden;
}

.service-block .inner-box .image img{
	position:relative;
	width:100%;
	display:block;
	-webkit-transform:translateX(50px) scale(1.3,1.3);
	-ms-transform:translateX(50px) scale(1.3,1.3);
	transform:translateX(50px) scale(1.3,1.3);
	-webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    transition: all 300ms ease;
}

.service-block .inner-box:hover .image img{
	-webkit-transform:translateX(0px);
	-ms-transform:translateX(0px);
	transform:translateX(0px);
}

.service-block .inner-box .image a{
	position:relative;
	display:block;
}

.service-block .inner-box .image a:before{
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	background: padding-box content-box;
	background-color: #dfb162;
	padding: 15px;
	content: "";
	outline-offset: -15px;
	visibility: hidden;
	opacity: 0.5;
	z-index:1;
	-webkit-transform: scale(0.5) rotateX(180deg);
    -moz-transform: scale(0.5) rotateX(180deg);
    -ms-transform: scale(0.5) rotateX(180deg);
    -o-transform: scale(0.5) rotateX(180deg);
    transform: scale(0.5) rotateX(180deg);
    transition: all 900ms ease;
    -moz-transition: all 900ms ease;
    -webkit-transition: all 900ms ease;
    -ms-transition: all 900ms ease;
    -o-transition: all 900ms ease;
}

.service-block .inner-box:hover .image a:before{
    -webkit-transform: scale(1) rotateX(0deg);
    -moz-transform: scale(1) rotateX(0deg);
    -ms-transform: scale(1) rotateX(0deg);
    -o-transform: scale(1) rotateX(0deg);
    transform: scale(1) rotateX(0deg);
    visibility: visible;
}


.consulta0{
	text-align: center;
	margin: 15% 20% 0% 0%;
}

.m-carousel-1::after {
  content: "";
  position: absolute;
  top: 70px;
  left: -70px;
  width: 100%;
  height: 100%;
  background-color: transparent;
  border: 32px solid rgba(0,0,0,0.1);
  z-index: 1;
}
.owl-carousel, .owl-carousel .owl-item {
  -webkit-tap-highlight-color: transparent;
  position: relative;
}

.general-modulo-servicios{
	background: #c51870;
	padding: 42px 10px;
	text-align: center;
	color: #fff;
	font-size: 15pt;
}
hr.new2 {
  border-top: 3px dotted #fff;
  width: 70%;
  margin: 4% auto 4% auto;
}

.contact-style-two1{
  position: relative;
  width: 100%;
  padding: 3px 0px 20px 0px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
}

.contact-style-two1:before{
  position: absolute;
  content: '';

  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  right: 0px;
  opacity: 0.8;
}

.contact-style-two1 .default-form{
  position: relative;
  margin: 0px 5px;
}

.contact-style-two1 .default-form .form-group{
  position: relative;
  margin-bottom: 20px;
  padding: 0px 10px;
}

.contact-style-two1 .default-form .form-group:last-child{
  margin-bottom: 0px;
}

.contact-style-two1 .default-form .form-group input[type='text'],
.contact-style-two1 .default-form .form-group input[type='email'],
.contact-style-two1 .default-form .form-group textarea{
  position: relative;
  width: 100%;
  height: 55px;
  background: #fff;
  font-size: 16px;
  padding: 10px 20px;
  border: 2px solid #fff;
  transition: all 500ms ease;
}

.contact-style-two1 .default-form .form-group input:focus,
.contact-style-two1 .default-form .form-group textarea:focus{

}

.contact-style-two1 .default-form .form-group textarea{
  display: block;
  height: 170px;
  resize: none;
}

.contact-style-two1 .default-form .form-group button{
  text-transform: uppercase;
  display: block;
  width: 100%;
  padding: 12.5px 30px;
}

.contact-style-two1 .sec-title{
  margin-bottom: 39px;
}

.contact-style-two1 .sec-title h2{
  margin-bottom: 17px;
}

.contact-style-two1 .sec-title p{
  color: #fff;
  font-size: 18pt;
}



.contact-style-two1 .default-form .form-group input[type="text"], .contact-style-two1 .default-form .form-group input[type="email"], .contact-style-two1 .default-form .form-group textarea {
  position: relative;
  width: 100%;
  height: 50px;
  background: #009cc4;
  font-size: 16px;
  padding: 10px 20px;
  transition: all 500ms ease;
  color: #fff;
}

.contact-style-two1 .default-form .form-group:last-child {
  margin-bottom: 0px;
}
.contact-style-two1 .default-form .form-group {
  position: relative;
  margin-bottom: 20px;
  padding: 0px 10px;
}
.contact-style-two1 .default-form .form-group button {
  text-transform: uppercase;
  display: block;
  width: 100%;
  padding: 12.5px 30px;
}
.cont_selec1{
	position: relative;
width: 100%;
height: 55px;
background: #009cc4;
font-size: 16px;
padding: 10px 20px;
transition: all 500ms ease;
color: #fff;
}
.theme-btn1.style-one1 {
  background: #075668;
  color: #fff;
}

.llamar{
	border: 1px solid #fff;
	border-radius: 22px;
	padding: 10px 70px;
}

.boton_servicios{
	background-color: #009cc4;
	border-radius: 22px;
	padding: 10px 15px;
	width: 60%;
	margin: auto;
	color: #fff;
	font-size: 14pt;
	cursor: pointer;
	text-align: center;
}


.contacto_servicios{
	color: #075668;
	margin: 0% 0% 2% 4%;
}
.text_contacto_servicios{
	margin: 0% 0% 2% 4%;
	color: #009cc4;
}

.card:hover {
  transform: scale(1.05);
  box-shadow: 0px 2px 40px #d7dfe2;
}
.card {
  overflow: hidden;
  box-shadow: 0px 2px 20px #d7dfe2;
  background: white;
  border-radius: 0.5rem;
  position: relative;
  width: 350px;
  margin: 1rem;
  transition: 250ms all ease-in-out;
  cursor: pointer;
}


/******BOTON BANNER***/
.modal-title{
	text-align: center;
	color: #fff;
}
.modal-header{
	background: #2cc5ae
;
}
button.close {
  padding: 0;
  background-color: none;
  border: 0;
  -webkit-appearance: none;
  color: #fff;
}
button.close:hover {
  color: #fff;
}
.text-modal{
	font-size: 13pt;
	text-align: justify;
	color: #075668;
}
.btn-modal{
	background: #009cc4;
	color: #fff;
}
.boton-modall{
	background: #9d1a18;
	color: #fff;
}

.boton-modall:hover{
	background: #fff;
	color: #9d1a18;
}
.posicion-boton-banner{
	margin: -5rem 2% 0% -6rem;
	z-index: 9;
	position: absolute;
}