
/*** 

====================================================================
	Fonts
====================================================================

 ***/

@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');
@import url('https://fonts.googleapis.com/css2?family=Old+Standard+TT:ital,wght@0,400;0,700;1,400&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: 'Barlow Condensed', 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: 'Barlow Condensed', 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:12px 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: 'Barlow Condensed', 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: 'Barlow Condensed', 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: 'Barlow Condensed', 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:'Barlow Condensed', sans-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: 'Barlow Condensed', sans-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:#8e1827;
	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: "Old Standard TT", serif;
	text-align: left;
}
}

.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:absolute;
	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
====================================================================

/******NUEVO MENU WEB 290923*******/


:root {
  --hover-color: rgb(102, 40, 245);
}


nav {
  background: rgba(255, 255, 255, 0.70);
  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: 15pt;
  color: #8e1827;
  padding: 20px 16px;
  display: block;
  font-weight: 600;
  text-decoration: none
}

.main_menu ul li .active,
.main_menu ul li:hover > a {
  color: #fff;
  transition: none;
  background: #8e1827;
}
/* 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;
  }
}

.ajuste_menu{
  	padding:3px;
  	margin:8px; 
  	float: right;
  	font-family: "Old Standard TT", serif;
  }

@media (max-width: 767.98px) {
  .mega_menu_demo_2 .mega_menu,
  .container {
    width: 100%;
  }

  nav {
    padding: 15px;
  }
  .mobile_btn {
    cursor: pointer;
    display: block;
    margin: -3rem 0% 0% 20rem;
    color: #8e1827;
    font-size: 2.5rem;
  }

  .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 only screen and (max-width: 600px) {
.ajuste_menu{
    padding:3px;
    margin:8px; 
    float: none;
  }
}

@media (max-width: 575.98px) {
  .mega_menu .mega_menu_item {
    width: 100%;
  }
}

.frase_sec {
  text-align: center;
  margin: 4% 0% -0.5% 0%;
  font-size: 22pt;
}
.izquierdo_frase {
  color: #b91a47;
  font-weight: 400;
}
span {
  cursor: pointer;
}
span {
  transition: .5s;
}
.derecho_frase {
  color: #c47d47;
  font-weight: 700;
}
hr.style-eight::after {
  content: url(../images/icono_frase.png);
  display: inline-block;
  position: relative;
  top: -1.5em;
  font-size: 1.5em;
  padding: 0 0.25em;
  background: white;
}
hr.style-eight {
  overflow: visible;
  padding: 0;
  border: none;
    border-top-width: medium;
    border-top-style: none;
    border-top-color: currentcolor;
  border-top: 2px solid #8e1827;
  color: #333;
  text-align: center;
  width: 15%;
  margin: 4% auto 0% auto;
}
.espacio_home_doc {
  margin-top: -8%;
}



/*****+FOOTER*******/
.footer-section{
  position: relative;
  background-color:#a91e45;
  background-position: center center;
  width: 100%;
  padding: 45px 0px 0px 0px;
  color: #fff;
  z-index:999;
}
.footer-section .footer-top {
    padding-bottom: 1px;
}
.footer-section p {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 15px;
}
.footer-section .first-colmn a:hover{
  color: #03cdff;
  transition: all 500ms ease;
}
.footer-section .first-colmn a{
  font-size: 16px;
 font-family: 'Barlow Condensed', sans-serif;
  line-height: 24px;
  margin-bottom: 15px;
  color: #fff;
  transition: all 500ms ease;
}
.footer-section .time-hour{
  font-size: 14px;
  font-family: 'Barlow Condensed', sans-serif;
  line-height: 24px;
  margin-bottom: 15px;
}
.footer-section .time-hour{
  margin-bottom: 0px;
}


.titulos{
	text-align:left;
	font-size:25px;
	color:#fff;
	font-family: 'Barlow Condensed', sans-serif;
}
.titulos1{
	
	font-size:25px;
	color:#fff;
	text-align:center;
	font-family: 'Barlow Condensed', sans-serif;
}
.titulos2{
	font-family: 'Barlow Condensed', sans-serif;
    font-size: 16px;
    padding-top: 10px;
    text-align: left;
	color:#fff;
}

.aviso{
	font-family: 'Barlow Condensed', sans-serif;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 15px;
	text-align:center;
	color:#fff;
}

.aceptamos{
	font-family: 'Barlow Condensed', sans-serif;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 15px;
	text-align:center;
	color:#fff;
}
.tarjetas{
    line-height: 24px;
    margin-bottom: 15px;
	text-align:center;
}

.redes{
	text-align:center;
}

.tarjeta1{
	padding-top:1px;
}
.tarjeta2{
	padding-top:1px;
}

.footer1{
	background-color:#fff;
	padding:13px;
}

.icons{
	font-size:14px;
	color:#fbda05;
}
.telefono{
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 16px;
    padding-top: 5px;
    text-align: left;
	color:#fff;
}

.aliniados{
	left:9%;
}
.aliniados1{
	left:4px;
}
.espacio {
  padding-top: 14px;
}
/************/

/******-------------*******/


/******ESTILOS CHOCOLATE*******/
.img-choc{
	background: #8e1827;
	padding: 50px 30px;
}
#myImg {
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
    display: block;
    margin-left: auto;
    margin-right: auto
}

#myImg:hover {opacity: 0.7;}



/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.9); /* Black w/ opacity */
}

/* Modal Content (image) */
.modal-content {
    margin: auto;
    display: block;
    width: 50%;
}

/* Caption of Modal Image */
#caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 150px;
}

/* Add Animation */
.modal-content, #caption {
    -webkit-animation-name: zoom;
    -webkit-animation-duration: 0.6s;
    animation-name: zoom;
    animation-duration: 0.6s;
}

.out {
  animation-name: zoom-out;
  animation-duration: 0.6s;
}

@-webkit-keyframes zoom {
    from {-webkit-transform:scale(1)}
    to {-webkit-transform:scale(2)}
}

@keyframes zoom {
    from {transform:scale(0.4)}
    to {transform:scale(1)}
}

@keyframes zoom-out {
    from {transform:scale(1)}
    to {transform:scale(0)}
}

/* The Close Button */
.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

/* 100% Image Width on Smaller Screens */
@media only screen and (max-width: 700px){
    .modal-content {
        width: 100%;
    }
}
/******/
#myImg1 {
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
    display: block;
    margin-left: auto;
    margin-right: auto
}

#myImg1:hover {opacity: 0.7;}

/* The Modal (background) */
.modal1 {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.9); /* Black w/ opacity */
}

/* Modal Content (image) */
.modal-content1 {
    margin: auto;
    display: block;
    width: 50%;
}

/* Caption of Modal Image */
#caption1 {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 150px;
}

/* Add Animation */
.modal-content1, #caption1 {
    -webkit-animation-name: zoom;
    -webkit-animation-duration: 0.6s;
    animation-name: zoom;
    animation-duration: 0.6s;
}

.out1 {
  animation-name: zoom-out;
  animation-duration: 0.6s;
}

@-webkit-keyframes zoom {
    from {-webkit-transform:scale(1)}
    to {-webkit-transform:scale(2)}
}

@keyframes zoom {
    from {transform:scale(0.4)}
    to {transform:scale(1)}
}

@keyframes zoom-out {
    from {transform:scale(1)}
    to {transform:scale(0)}
}

/* The Close Button */
.close1 {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}

.close1:hover,
.close1:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

/* 100% Image Width on Smaller Screens */
@media only screen and (max-width: 700px){
    .modal-content1 {
        width: 100%;
    }
}
/*******/
#myImg2 {
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
    display: block;
    margin-left: auto;
    margin-right: auto
}

#myImg2:hover {opacity: 0.7;}

/* The Modal (background) */
.modal2 {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.9); /* Black w/ opacity */
}

/* Modal Content (image) */
.modal-content2 {
    margin: auto;
    display: block;
    width: 50%;
}

/* Caption of Modal Image */
#caption2 {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 150px;
}

/* Add Animation */
.modal-content2, #caption2 {
    -webkit-animation-name: zoom;
    -webkit-animation-duration: 0.6s;
    animation-name: zoom;
    animation-duration: 0.6s;
}

.out2 {
  animation-name: zoom-out;
  animation-duration: 0.6s;
}

@-webkit-keyframes zoom {
    from {-webkit-transform:scale(1)}
    to {-webkit-transform:scale(2)}
}

@keyframes zoom {
    from {transform:scale(0.4)}
    to {transform:scale(1)}
}

@keyframes zoom-out {
    from {transform:scale(1)}
    to {transform:scale(0)}
}

/* The Close Button */
.close2 {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}

.close2:hover,
.close2:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

/* 100% Image Width on Smaller Screens */
@media only screen and (max-width: 700px){
    .modal-content2 {
        width: 100%;
    }
}
/********/
#myImg3 {
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
    display: block;
    margin-left: auto;
    margin-right: auto
}

#myImg3:hover {opacity: 0.7;}

/* The Modal (background) */
.modal3 {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.9); /* Black w/ opacity */
}

/* Modal Content (image) */
.modal-content3 {
    margin: auto;
    display: block;
    width: 50%;
}

/* Caption of Modal Image */
#caption3 {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 150px;
}

/* Add Animation */
.modal-content3, #caption3 {
    -webkit-animation-name: zoom;
    -webkit-animation-duration: 0.6s;
    animation-name: zoom;
    animation-duration: 0.6s;
}

.out3 {
  animation-name: zoom-out;
  animation-duration: 0.6s;
}

@-webkit-keyframes zoom {
    from {-webkit-transform:scale(1)}
    to {-webkit-transform:scale(2)}
}

@keyframes zoom {
    from {transform:scale(0.4)}
    to {transform:scale(1)}
}

@keyframes zoom-out {
    from {transform:scale(1)}
    to {transform:scale(0)}
}

/* The Close Button */
.close3 {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}

.close3:hover,
.close3:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

/* 100% Image Width on Smaller Screens */
@media only screen and (max-width: 700px){
    .modal-content3 {
        width: 100%;
    }
}
/*******/

.hvr-float-shadow::before {
  pointer-events: none;
  position: absolute;
  z-index: -1;
  content: '';
  top: 100%;
  left: 5%;
  height: 10px;
  width: 90%;
  opacity: 0;
  background: -webkit-radial-gradient(center, ellipse, rgba(2, 205, 255, 0.35) 0%, rgba(0, 0, 0, 0) 80%);
  background: radial-gradient(ellipse at center, rgba(2, 205, 255, 0.35) 0%, rgba(0, 0, 0, 0) 80%);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform, opacity;
  transition-property: transform, opacity;
}
figure {
  margin: 0;
}
.doctor-section .single-content {
  position: relative;
  padding: 0px 10px;
}
.enfermedades {
  background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
  color: #8e1827;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: normal;
  line-height: 1.6em;
  margin: 0;
  position: relative;
}
.doctor-section .single-content span {
  font-size: 14px;
  font-family: 'Barlow Condensed', sans-serif;
  line-height: 25px;
  color: #777777;
  display: inline-block;
  margin-bottom: 4px;
}
.doctor-section {
  position: relative;
  padding: 36px 0px 23px 0px;
}
.text-center {
  text-align: center;
}


/* Float Shadow */
.hvr-float-shadow {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
}
.hvr-float-shadow:before {
  pointer-events: none;
  position: absolute;
  z-index: -1;
  content: '';
  top: 100%;
  left: 5%;
  height: 10px;
  width: 90%;
  opacity: 0;
  background: -webkit-radial-gradient(center, ellipse, rgba(196, 125, 71, 0.35) 0%, rgba(0, 0, 0, 0) 80%);
  background: radial-gradient(ellipse at center, rgba(196, 125, 71, 0.35) 0%, rgba(0, 0, 0, 0) 80%);
  /* W3C */
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform, opacity;
  transition-property: transform, opacity;
}

.hvr-float-shadow:hover, .hvr-float-shadow:focus, .hvr-float-shadow:active {
  -webkit-transform: translateY(-5px);
  transform: translateY(-5px);
  /* move the element up by 5px */
}
.hvr-float-shadow:hover:before, .hvr-float-shadow:focus:before, .hvr-float-shadow:active:before {
  opacity: 1;
  -webkit-transform: translateY(5px);
  transform: translateY(5px);
  /* move the element down by 5px (it will stay in place because it's attached to the element that also moves up 5px) */
}

.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(142, 25, 25,0.7);
}

.text_doctores_nosotros {
  text-align: justify;
  font-size: 15pt;
  padding: 6px 120px;
  margin-top: -2%;
  color: #000;
  line-height: 1.5;
}

.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 */


.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;
}
.team-block-two .inner-box:hover .image-box::after {
  height: 100%;
}
.team-block-two .inner-box .image-box::after {
  background: #8e1827;
}
.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::before {
  height: 100%;
}
.team-block-two .inner-box .image-box::before {
  background: #8e1827;
}


.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%;
}



.service-area.service-default-area {
  padding: 35px 0 70px;
}
@media only screen and (max-width: 1199px) {
  .service-area.service-default-area {
    padding: 90px 0 50px;
  }
}
@media only screen and (max-width: 991px) {
  .service-area.service-default-area {
    padding: 90px 0 30px;
  }
}
.service-area.class-service-area {
  padding: 142px 0 71px;
}
@media only screen and (max-width: 1199px) {
  .service-area.class-service-area {
    padding: 120px 0 30px;
  }
}

@media only screen and (max-width: 575px) {
  .service-item {
    margin-left: auto;
    margin-right: auto;
    max-width: 320px;
  }
}
.service-item .inner-content {
  margin-left: 70px;
  margin-bottom: 60px;
  position: relative;
}
@media only screen and (max-width: 575px) {
  .service-item .inner-content {
    margin-bottom: 40px;
  }
}
.service-item .inner-content .thumb {
  position: relative;
}
.service-item .inner-content .thumb:before {
  background-color: #b91a47;
  bottom: 0;
  content: "";
  height: calc(100% - 63px);
  position: absolute;
  right: 0;
  width: 100%;
  z-index: -1;
}
.service-item .inner-content .thumb span {
  display: block;
  left: -70px;
  overflow: hidden;
  position: relative;
}
.service-item .inner-content .thumb img {
  transition: 0.9s;
  -webkit-transition: 0.9s;
  -moz-transition: 0.9s;
  -ms-transition: 0.9s;
  -o-transition: 0.9s;
}
.service-item .inner-content .content {
  background-color: #b91a47;
  padding: 22px 0 20px 7px;
}
.service-item .inner-content .content .title {
  bottom: 42px;
  display: inline-block;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 0;
  letter-spacing: -0.2px;
  writing-mode: vertical-lr;
  position: absolute;
  right: 20px;
  text-transform: uppercase;
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  color: #fff;
}
.service-item .inner-content .content .title a {
  color: #252525;
}
.service-item .inner-content .content .title a:hover {
  color: #e5ba03;
}
.service-item .inner-content .content .class-time {
  color: #787878;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 0;
  margin-left: 15px;
  letter-spacing: 0.3px;
}
.service-item:hover .inner-content .thumb span img {
  transform: scale(1.25);
  -webkit-transform: scale(1.25);
  -moz-transform: scale(1.25);
  -ms-transform: scale(1.25);
  -o-transform: scale(1.25);
}
.service-item:hover .inner-content .content .title a {
  color: #e5ba03;
}


.contact-section{
  position: relative;
  padding: 2px 0px 22px 0px;
}
.contact-section input{
  width: 100%;
  padding: 10px 10px;
  border: 1px solid #e7e7e7;
  margin-bottom: 30px;
  line-height: 28px;
  border-radius: 5px;
  transition: all 500ms ease;
}
.contact-section textarea{
  width: 100%;
  padding: 10px 10px;
  height: 110px;
  resize: none;
  border: 1px solid #e7e7e7;
  margin-bottom: 20px;
  border-radius: 5px;
  transition: all 500ms ease;
}
.contact-section button {
    position: relative;
    font-size: 14px;
    font-family: 'Barlow Condensed', sans-serif;
    line-height: 23px;
    font-weight: bold;
    text-transform: capitalize;
    color: #fff;
    margin: 0px;
    background: #a91e45;
    text-transform: uppercase;
    padding: 13px 31px;
    border: 1px solid #a91e45;
    border-radius: 25px;
    transition: all 500ms ease;
}
.contact-section button:hover {
    background: #fff;
    color: #a91e45;
    transition: all 500ms ease;
    box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.5);
}
.contact-section .contact-head p{
  font-size: 14px;
  font-family:"opensans",sans-serif;
  color: #848484;
  line-height: 25px;
  margin-bottom: 42px;
}
.contact-section h2.section-title{
  margin-bottom: 17px;
}
.contact-section .single-item{
  position: relative;
  border: 1px solid #e5e5e5;
  border-radius: 3px;
  background: #f9f9f9;
  padding: 21px 0 27px 97px;
  margin-bottom: 10px;
  display: block;
}
.contact-section .single-item:hover{
  display: block;
}
.contact-section .single-item .icon-box{
  position: absolute;
  left: 30px;
  top: 35px;
}
.contact-section .single-item .icon-box i{
  padding: 0px;
  height: 45px;
  width: 45px;
  line-height: 0px;
  border: 1px solid #d6d6d6;
  border-radius: 50%;
  text-align: center;
  line-height: 44px;
}
.contact-section .contact-right{
  position: relative;
  padding: 55px 0px 0px 0px;
}
.contact-section .single-item .icon-box i:before{
  font-size: 14px;
  color: #a91e45;
}
.contact-section .single-item h5{
  font-size: 16px;
  color: #222;
  font-family:'Barlow Condensed', sans-serif;
  line-height: 26px;
  margin-bottom: 6px;
}
.contact-section .single-item p{
  font-size: 14px;
  font-family: 'Barlow Condensed', sans-serif;
  color: #848484;
  line-height: 25px;
  margin-bottom: 0px;
}
.contact-section .single-item a{
  font-size: 14px;
  font-family: 'Barlow Condensed', sans-serif;
  color: #848484;
  line-height: 25px;
  display: inline-block;
  margin-bottom: 0px;
  transition: all 500ms ease;
}
.contact-section .single-item a:hover{
  color: #49d4d8;
  transition: all 500ms ease;
}
.contact-section .contact-left{
  position: relative;
  padding: 0px 40px 0px 0px;
}
.contact-section input[type="text"]:focus, .contact-section input[type="number"]:focus, .contact-section input[type="email"]:focus, .contact-section input[type="password"]:focus, .contact-section input[type="date"]:focus, .contact-section input[type="datetime"]:focus, .contact-section input[type="url"]:focus, .contact-section input[type="time"]:focus, .contact-section select:focus, .contact-section textarea:focus {
    border-color: #1cc9ce;
    background: rgba(238, 238, 238, 0.62);
    transition: all 500ms ease;
}
.google-map-area {
    position: relative;
}
#contact-google-map {
    height: 480px;
    width: 100%;
}

.horario{
    left: 21%;
    color: #ffffff;
}
}





