@font-face{	
	font-family:'Tipo Ligera';
	src:url('fonts/Montserrat-Regular.ttf');	
}
@font-face{	
	font-family:'Tipo Semi Bold';
	src:url('fonts/Montserrat-Bold.ttf');	
}
@font-face{	
	font-family:'Tipo Cursiva';
	src:url('fonts/ClickerScript-Regular.ttf');	
}

@font-face{	
	font-family:'Tipo h1';
	src:url('fonts/EBGaramond-Regular.ttf');	
}
:root {
	--tipografia-font-family: 'Tipo Ligera';
	--tipografiaSemiBold-font-family: 'Tipo Semi Bold';
	--tipografiaCursiva-font-family: 'Tipo Cursiva';
	--tipografiaH1-font-family: 'Tipo h1';
}

body {
	margin:0;
	padding:0;
	font-family:var(--tipografia-font-family);
	background:#FAFAFA;
}

.iframeSlide {
	position:absolute;
	width:94%;
	height:125%; 
	left:3%; 
	top:112px;
	border:none;
}

.general {
	text-align:center;/*CONTROLA ALINEACION DE LOS HIJOS (.container OSEA TODOS LOS DIVS DENTRO DE GENREAL)*/
	padding:20px;
	margin-top:60%;
}

.container { /*REGLA GENERAL PARA TODOS LOS CONTENEDORES (TODOS LOS DIVS)*/
	display: inline-block;
	padding:10px;	
	box-sizing: border-box;
	margin-right:-4px;
	vertical-align: top; /*middle*/
	text-align:left; /*CONTROLA LOS POSIBLES HIJOS DISPLAY BLOCK QUE ESTUBIERAN DENTRO DE CONTAINER*/
	transition: 0.4s;
}

/*SUB CLASES DE container PARA MANEJAR ANCHOS*/
.row-cols-100 {width:100%;}
.row-cols-75 {width:75%;}
.row-cols-50 {width:50%;}
.row-cols-33 {width:33%;}
.row-cols-25 {width:24%;}


/*TITULOS Y PARRAFOS*/

h1 {
	display:block;
	text-align:center;
	color:#17066e;
	background:none;
	margin-top: 0;
	margin-bottom: 0;
	/*
	font-family:var(--tipografiaH1-font-family);
	font-size: 64px;
	*/
	font-family:var(--tipografiaSemiBold-font-family); /*tipografia modificada*/
	font-size: 36px;
	font-weight:normal;
}

h2 {
	display:block;
	text-align:center;
	color:#ff7e00;
	background:none;
	/*font-family:var(--tipografiaCursiva-font-family);*/
	font-family:var(--tipografiaSemiBold-font-family);
	font-size: 24px;
	margin-top: 0;
	margin-bottom: 0;
}
h3 {/*SUB TITULOS PIE DE PAGINA*/
	display:block;
	text-align:left;
	color:white;
	background:none;
	/*
	font-family:var(--tipografiaH1-font-family);
	font-size: 24px;
	*/
	font-family:var(--tipografiaSemiBold-font-family); /*tipografia modificada*/
	font-size: 16px;
	font-weight: normal;
	margin-top: 0;
	margin-bottom: 0;
}

h4 {
	display:block;
	text-align:center;
	color:#ff7e00;
	background:none;
	/*font-family:var(--tipografiaCursiva-font-family);*/
	font-family:var(--tipografiaSemiBold-font-family);
	font-size: 24px;
	margin-top: 0;
	margin-bottom: 0;
}

.containerTitulosImgSecciones { /*TITULOS SOBRE IMAGENES (HEADER) DE LAS SECCIONES*/
	position:absolute;
	left:0;
	bottom:40%;
	text-align:center; 
	padding:0;
	color:white; 
	/*
	font-family:var(--tipografiaH1-font-family);
	font-size:400%;
	*/
	font-family:var(--tipografiaSemiBold-font-family); /*tipografia modificada*/
	font-size:300%;
	
}


p {
	text-align:left;
	color: #999999;
}

.pResalto {
	color:#444;
}

.parseMayuscula{
	text-transform: lowercase;
}
.parseMayuscula:first-letter {
    text-transform: uppercase;
}


/*REGLA PARA EL BOTON GENERAL DE TEXTO*/

a{
	display:inline-block;
	vertical-align: top;
	padding:0px 0px;
	height:auto;
	cursor:pointer;
	background:none;
	border:none;
	text-decoration:none;
}

button {
	display:inline-block;
	vertical-align: top;
	padding:0px 40px;
	cursor:pointer;
	background:none;
	border:none;
	border-radius:4px;
	box-shadow:0px 3px 3px #999999;
}

/*CONTENDORES MENU*/
.menu_no_index {
	height:124px;
	background:white;
	padding-top:5px;
	padding-bottom:0px;
	border-bottom:solid thin #e4e4e4;
	display:inline-block;
}

#navbar {
	background:none; 
	text-align:center; 
	position:absolute; 
	z-index:100; 
	top:40px;
	display:blocK;
}

#menuPrincipalFixed {
	height:100px; 
	background:white; 
	position:fixed;
	top:-100px;
	left:0;
	z-index:100;
	border-bottom:solid thin #ffffff;
	padding:10px 70px;
	box-shadow:0px 0px 10px #e1e1e1;
	display:blocK;
}

.contenedorDelBotonMenu{
	position:relative; 
	width:auto; 
}

.dropMenuContainer{
	position:absolute; 
	height:auto; 
	background:white;
	margin-top:0px; 
	border:solid thin #f1f1f1; 
	border-top:solid 3px orange;
	display:block;
	box-shadow: 0px 2px 3px #777;
}


#dropSubNosotros{
	width:250px; 
	margin-left:38px; 
	display:none;	
}

#dropSubNosotrosFixed{
	width:250px; 
	margin-left:18px; 
	display:none;	
}

#dropSubMenuPlatillos{
	width:250px; 
	margin-left:50px; 
	display:none;	
}

#dropSubMenuPlatillosFixed{
	width:250px; 
	margin-left:18px; 
	display:none;		
}


#dropSubEventos{
	width:250px; 
	margin-left:42px; 
	display:none;	
}

#dropSubEventosFixed{
	width:250px; 
	margin-left:18px; 
	display:none;	
}

.btnInnerDropMenu{
	display:block;
	width:100%;
	padding:15px 15px;
	box-sizing: border-box;
	border:none;
	border-bottom:solid thin #f1f1f1;
	color:#000;
	font-family:var(--tipografiaSemiBold-font-family);
	font-size:12px;
	transition: 0.2s;
	text-align:left;
	box-shadow:0px 0px 0px #000;
}

.btnInnerDropMenu:hover{
	color:orange
}
/*CONTENDORES MENU*/

/*MENU RESPONSIVE*/
#headerMenuResponsive {
	background:white;
	height:96px;
	display:none;
}

#menu_responsive_modal_container {
	position:fixed; 
	width:100%; 
	height:100%; 
	top:0;
	left:-100%;
	background:rgb(0,0,0,0.7); 
	z-index:200;
	display:none;
}

#menu_responsive_container{
	position:absolute; 
	width:320px; 
	height:100%; 
	top:0;
	left:-100%;
	background:white;
	
}

.clsBtnOpenMenuResponsive{
	float:right; 
	margin-right:20px;
	width:50px;
	height:50px;
	background:orange;
	color:white;
	border-radius:50px;
	margin-top:14px;
	padding:0;
	font-size:22px;
	box-shadow:0px 0px 0px #000;
}

.clsBtnCloseMenuResponsive{
	position:absolute;width:26px; height:28px;background:orange; color:white; border-radius:35px;padding-left:11px; padding-top:8px; font-size:20px; right:-19px;top:20px;cursor:pointer;
}

.containerLogoHeaderResponsive{
	display:inline-block;
	width:100%; height:auto; text-align:center;padding-top:10px;padding-bottom:10px;
}

.containerListaMenuResponsive{
	display:inline-block;
	width:100%; 
	height:350px; 
	text-align:center;
	padding-top:0px;
	padding-bottom:0px; 
	overflow:auto;
}

.accordion {
	background-color: #fff;
	color: #000;
	cursor: pointer;
	padding: 0px;
	height:48px;
	width: 100%;
	text-align: left;
	outline: none;
	font-size: 15px;
	transition: 0.4s;
	box-shadow:0px 0px 0px #000;
	box-sizing: border-box;
	border:none;
	border-top:solid thin #f4f4f4;
	border-bottom:solid thin #f4f4f4;
	padding:14px 10px;
	font-family:var(--tipografiaSemiBold-font-family);
}

.accordion_a {
	background-color: #fff;
	color: #000;
	cursor: pointer;
	padding: 0px;
	height:48px;
	width: 100%;
	text-align: left;
	outline: none;
	font-size: 15px;
	transition: 0.4s;
	box-shadow:0px 0px 0px #000;
	box-sizing: border-box;
	border:none;
	border-top:solid thin #f4f4f4;
	border-bottom:solid thin #f4f4f4;
	padding:14px 10px;
	font-family:var(--tipografiaSemiBold-font-family);
}

.active, .accordion:hover, .accordion_a:hover {
	color:orange
}

.accordion:after {
	content: '\203a';
	display:inline-block;
	background:none;
	color: #777;
	font-weight: bold;
	float: right;
	margin-top:-7px;
	margin-right: 0px;
	padding-left:11px;/*por rotacion se convierte en top*/
	padding-right:10px;/*por rotacion se convierte en bottom*/
	padding-top: 0px;/*por rotacion se convierte en right*/
	padding-bottom: 3px;/*por rotacion se convierte en left*/
	font-size:26px;
	transform: rotate(90deg);
	border-radius:60px;
	transition: 0.5s;
}

.active:after {
	content: '\203a';
	background:orange;
	color:white;
	transform: rotate(180deg);
	padding-left:14px;/*por rotacion se convierte en top*/
	padding-right:11px;/*por rotacion se convierte en bottom*/
	padding-top: 0px;/*por rotacion se convierte en right*/
	padding-bottom: 3px;/*por rotacion se convierte en left*/
	margin-top:-9px;
	transition: 0.5s;
}

.panel {
	padding: 0 0;
	background-color: white;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.2s ease-out;
}

.btnMenuAccordion {
	display:inline-block;
	width:100%;
	margin:0;
	text-align:left;
	background:#fff;
	border:none;
	border-top:solid thin #f4f4f4;
	text-decoration:none;
	padding:14px 26px;
	box-sizing: border-box;
	color:#000;
	font-family:var(--tipografiaSemiBold-font-family);
	font-size:13px;
}
.btnMenuAccordion:hover {
	color:orange;
}
/*MENU RESPONSIVE*/

/*SUB REGLAS PARA LOS BOTONES CON TEXTO*/

.aHrefClaro {
	color:#999;
	font-size:16px;
}

.btnHeader {
	
	width: 137px;
	background:none;
	border:none;
	color:#000000;
	box-shadow:0px 0px 0px #999999;
	padding:50px 5px;
	margin-top: 0px;
	font-size:14px;
	font-family:var(--tipografiaSemiBold-font-family);
	text-align:center;
	transition: 0.2s;
}

.btnHeader:hover{
	color:orange;
}

.btnMenuFixed {
	
	background:none;
	border:none;
	color:#000000;
	box-shadow:0px 0px 0px #999999;
	padding:35px 20px;
	font-size:14px;
	font-family:var(--tipografiaSemiBold-font-family);
	transition: 0.2s;
}

.btnMenuFixed:hover {
	color:orange;
	transition: 0.2s;
}

.btnSeccion {
	background:#333333;
	border:solid thin #222222;
	color:#FFFFFF;
}
.btnPie {
	padding:0px 0px;
	color:#FFFFFF;
	box-shadow:0px 0px 0px #999999;
	text-align: left;
}


/*REGLA PARA EL BOTON GENERAL DE ICONO*/
.btnIcon {
	padding:0px 20px;
	font-size:24px;	
}


/*SUB REGLAS PARA LOS BOTONES DE ICONO*/
.btnIconSeccion {
	background:#333333;
	border:solid thin #222222;
	color:#ffffff;
}
.btnIconModal{
	background:red;
	border:solid thin red;
	color:#ffffff;
}
.btnIconHeader{
		
	background:none;
	border:none;
	padding:0;
	box-shadow:0px 0px 0px #000;
}
.btnIconFoother{
	width: 40px;
	height: 40px;
	padding: 0;
	border:solid thin #555555;
	color:white;
	box-shadow:0px 0px 0px #999999;
	border-radius: 30px;
	font-size: 15px;
	margin-right: 6px;
}

/*REGLA PARA EL CAMPO GENERAL*/
input {
	display: inline-block;
	width: 100%;
	padding: 6px;
	box-sizing: border-box;
	font-family:var(--tipografiaSemiBold-font-family);
	background: none;
	border: none;
	outline: none;
}



/*SUB REGLAS PARA LOS CAMPOS*/
.campoReservar {
	display: inline-block;
	width: 100%;
	padding: 14px;
	box-sizing: border-box;
	font-family:var(--tipografiafont-family);
	font-size: 15px;
	background: none;
	border: none;
	outline: none;
	color: white;
}

.btnReservar {
	width: 200px;
	height: 65px;
	background: #fa8507;
	border-radius: 35px;
	color: white;
}


/*CLASES DEL CARRUSEL*/
.anchoCarruselPor3{
	width:345px;	
}

.anchoCarruselPor2{
	width:445px;
}

.externoCarrusel {
	height:auto;
	margin-left:-10px;
	border:solid thin #cccccc;
	margin-top:0px;
	margin-left:10px;
	margin-top:10px; 
	position:relative; 
	padding-bottom:10px;
}
.internoCarrusel{
	height:auto; 
	background:white; 
	margin-top:-10px;
	margin-left:-10px;
	border:solid thin #cccccc;
	position:relative
}

.conteinImgCarrusel{
	overflow:hidden;	
}

.imgCarrusel{
	scale: 1;
	transition: 0.4s;
}

.imgCarrusel:hover{
	scale: 1.2;
	transition: 0.4s;
}

.divConteinTextCarrusel {
	padding:20px 45px;
}

.iconChevronCarrusel {
	position: absolute; 
	margin-left: 40px; 
	bottom: -10px; 
	background:white; 
	padding:16px 18px; 
	border-radius:30px; 
	box-shadow:0px 5px 10px #e1e1e1; 
	color:#999;
}

.titleCarrusel{
	display: block;
	width: 100%;
	
	text-align: left;
	font-weight: normal;
	color: #000000;
	/*
	font-family:var(--tipografiaH1-font-family);
	font-size: 36px;
	*/
	font-family:var(--tipografiaSemiBold-font-family);  /*tipografia modificada*/
	font-size: 18px;
	margin: 0;
}

.textCarrusel {
	display: block;
	width: 100%;
	text-align: left;
	color:  #999999;
	padding-bottom:15px;
}

/* Sliders*/

/*el tamaño de cada slide es de 345px;*/
.sliderServicios { margin: 0px auto; max-width: 1112px; margin-top:100px;}

.sliderUltimosEventos { margin: 0px auto; max-width: 936px; margin-bottom:100px;margin-top:100px; }

.slider {
	width: 100%;
	margin: 0px auto;
}

.slick-slide {
	margin: 0px 10px;
}

.slick-slide img {
	width: 100%;
}

.slick-slider
{
    position: relative;
	display: block;
    box-sizing: border-box;
	-webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;
	display: block;
    overflow: hidden;
	margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;
	display: block;
    margin-left: auto;
    margin-right: auto;
}
.slick-track:before,
.slick-track:after
{
    display: table;
	content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;
	height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;
	height: auto;
	border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}

.btnSlikLeft {
	position:absolute;top:50%;left:-60px;box-shadow:0px 0px 0px #000;
	padding:0;display:block;
}
.btnSlikRight {
	position:absolute;top:50%;right:-60px;box-shadow:0px 0px 0px #000;
	padding:0;display:block;
}

.colorArrowSliders {
	font-size:26px;
	color:#ccc;
}

/* Dots */
.slick-dotted.slick-slider
{
    margin-bottom: 30px;
}

.slick-dots
{
    position: absolute;
    bottom: -80px;
	display: block;
	width: 100%;
    padding: 0;
    margin: 0;
	list-style: none;
	text-align: center;
}
.slick-dots li
{
    position: relative;
	display: inline-block;
	width: 20px;
    height: 20px;
    margin: 0 5px;
    padding: 0;
	cursor: pointer;
}
.slick-dots li button
{
    font-size: 0;
    line-height: 0;
	display: block;
	width: 20px;
    height: 20px;
    padding: 5px;
	cursor: pointer;
	color: transparent;
    border: 0;
    outline: none;
    background: transparent;
	box-shadow:0px 0px 0px #000;
}
.slick-dots li button:hover,
.slick-dots li button:focus
{
    outline: none;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before
{
    opacity: 1;
}
.slick-dots li button:before
{

    font-size: 40px;
    line-height: 20px;
	position: absolute;
    top: 0;
    left: 0;
	width: 14px;
    height: 14px;
	/*content: '•';*/
	content: '';
    text-align: center;
	/*opacity: .25;*/
    color: black;
	-webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
	border:solid 2px #ccc;
	border-radius:30px;
	background:#ccc;
}
.slick-dots li.slick-active button:before
{
    opacity: .75;
    color: orange;
	background:none;
	border:solid 2px orange;
	
}
/* Sliders*/

/*CLASES DEL CARRUSEL*/


/*SECCION RESERVACION*/
.conteinerReservacion {
	width: 100%;
	height: auto;
	background-image: url(../img/reservacionBg.jpg);
	background-size: cover;
	/*background-position: 0px -400px;*/
	background-attachment: fixed;
  	background-position: center;
  	background-repeat: no-repeat;
  	background-size: cover;
  	padding-top: 120px;
  	padding-bottom: 120px;
  	text-align: center;
}

.containerCamposReservar {
	background: #000000;
	border-radius: 32px;
	border: solid thin #444444;

}
/*SECCION RESERVACION*/

/*SECCION IMAGEN PRINCIPAL*/

.containerImgPrncipal {
	padding-top:140px; 
	padding-bottom:240px;
}

.imgPrincipal {
	width: 502px;
}

.contenedorRectangulosImgPrincipal {
 	text-align: center;
 	padding-top: 0;
}
.rectangleSoloBorder {
	position:absolute; 
	width:270px; 
	height:296px;
	bottom:-140px;
	left: inherit;
	right:-130px; 
	top: inherit;
	border:solid thin #ccc;
	display: block;
}
.rectangleSubImage {
	position:absolute; 
	width:270px; 
	height:296px; 
	bottom:-120px;
	right:-100px; 
	left: inherit;
	top: inherit;
	padding:10px;
	background-color: rgba(255, 255, 255, 0.3);
	box-sizing: border-box;
}

.contenedorDeIconos {
	display: inline-block;
	width:75%; 
	height: auto; 
}

.tituloIcono {
	font-size: 30px;
	text-align: left;
	padding: 0;
	margin: 0;
	font-size:20px; /* tipografia modificada */
}
/*SECCION IMAGEN PRINCIPAL*/

/*SECCION CONTENDOR CONTADORES*/
.conteinerContadores{
	width: 100%;
	height: auto;
	background-image: url(../img/gastronomia.jpg);
	background-size: cover;
	background-attachment: fixed;
  	background-position: center;
  	background-repeat: no-repeat;
  	background-size: cover;
  	padding-top: 86px;
  	padding-bottom: 86px;
  	text-align: center;
}

.numerosContador {
	display:inline-block;
	width:100%;
	font-family:var(--tipografiaH1-font-family);
	font-size:60px;
	padding-top:0px;
	color:white;
	text-align:right;
}

.textosContador {
	display:block;
	width:100%;
	padding-top:25px;
	color:white;
	font-size:13px;
}
/*SECCION CONTENDOR CONTADORES*/

/*SECCION TESTIMONIOS*/
.contenedorTestimonios{
	background-image: url(../img/testimoniosBg.jpg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100%;
	text-align:center;
	padding:200px 0px;
	/*transform: scale(1.5);*/
}

.circuloTestimonios {
	display:inline-block;
	width:500px; 
	height:500px; 
	border-radius:250px; 
	background:white; 
	margin-top:0px;
}
/*SECCION TESTIMONIOS*/


/*GALLERIES*/
.containerMiniatura{
	display:inline-block;
	width:30%;
	height:auto;
	background:white;
	box-shadow:0px 5px 5px #e8e8e8;
	padding:0;
	text-align:center;
	margin:10px;
	padding-bottom:20px;
	position:relative;
}


.titleContainerMiniatura {
	display:block;
	width:100%;
	margin-top:10px;
	margin-bottom:10px;
	color:black;
	font-family:var(--tipografiaH1-font-family);
	font-size:24px;	
}

.starContainerMiniatura {
	color:orange;
	font-size:16px;
}

.containerEyeMiniatura {
	position:absolute;
	top:55%;
	width:100%;
	opacity:0;
	transition: 0.4s;
}

.iconEyeMiniatura {
	background:orange; 
	color: white; 
	padding:12px;
	font-size:20px;
	border-radius:30px;
	transition: 0.4s;
}
.iconEyeMiniatura:hover {
	background:white; 
	color: #777; 
	cursor:pointer;
	transition: 0.4s;
}

.imgMiniaturaGallery {
	display:block;
	width:100%;
	opacity:1;
	transition: 0.4s;
}


.fondoNegroMiniatura {
	background:white;
	transition: 0.4s;
}
.fondoNegroMiniatura:hover {
	background:black;
	transition: 0.4s;
}

/*GALLERIES*/


/*EVENTOS*/
.contenedorLeftEventos{
	width:60%;
	margin-right:5%;
	padding:0;
}
.contenedorLeftEventosInner{
	text-align:left;
	padding:0px; 
	border:solid thin #f1f1f1;
	margin-bottom:34px;
}

.paddingInnerLeftEventos{
	padding:30px;
}
.contenedorRightEventos{
	width:30%;
	padding:0;
}
.contenedorRightEventosInner{
	text-align:center;
	padding:30px; 
	border:solid thin #f1f1f1;
	margin-bottom:50px;
}

.btnCategoriasEventos{
	display:inline-block;
	width:100%;
	background:#f5f5f5;
	box-sizing: border-box;
	padding-left:16px;
	padding-top:13px;
	padding-bottom:13px;
	text-align:left;
	margin-bottom:10px;
	color:#555;
	font-size:15px;
	transition: 0.4s;
}

.btnCategoriasEventos:hover{
	background:orange;
	color:white;
	transition: 0.4s;
}

.containerIconsEventos{
	display:inline-block;
	width:auto;
	margin-right:20px;
	color:#111;
	font-size:13px;
	margin-top:24px;
}

.iconoEventos{
	color:#555;
	margin-right:6px;
}

.verMasEevento {
	display:block;
	width:100%;
	color:orange;
	font-family:var(--tipografiaSemiBold-font-family);
	transition: 1s;
	text-decoration:none;
	margin-top:24px;
}

.redesEventosTalamantes {
	display:inline-block;
	width:18px;
	background:none;
	color:#999;
	border:solid thin #ccc;
	padding:8px;
	border-radius:20px;
	margin-left:4px;
	transition: 0.4s;
}

.redesEventosTalamantes:hover {
	background:orange;
	color:white;
	border:solid thin orange;
	transition: 0.4s;
	
}

/*EVENTOS*/

/*CONTACTO*/

.containerContact {
	width:80%;
}

.inputContact {
	background:white;
	padding:20px 10px;
	border:solid 2px #e4e4e4;
	box-shadow:0px 0px 20px #e8e8e8;
	color:#666;
	margin-bottom:20px;
	width:100%;
	box-sizing: border-box;
	font-family:var(--tipografia-font-family);
	font-size:15px;
}

.inputContact:focus{
	outline:none;
}

.btnContacto{
	width:210px;
	background:orange;
	padding-top:24px;
	padding-bottom:24px;
	color:white;
	transition: 0.4s;
}
.btnContacto:hover{
	
	background:white;
	color:black;
	transition: 0.4s;
	cursor:pointer;
}

.listaHorarios {
	display:inline-block;
	width:100%;
	box-sizing: border-box;	
	padding:14px 0px;
	border-bottom:solid thin #e8e8e8;
	color:#777;
}

.diasLista {
	float:left;
}

.horasLista {
	float:right;
}

.icosContacto {
	color:orange;
}

/*CONTACTO*/

/*SECCION PIE*/
.contenedorPie {
	background:#cccccc; 
	background-image: url(../img/pieBg.jpg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	padding:30px 130px;
}

.chevronPequenio {
	font-size: 12px;
	font-weight: normal;
	color: #666;
}

.btnFlotanteIrTop{
	position:fixed;
	width:66px;
	height:66px;
	bottom:25px;
	right:25px;
	border-radius:66px;
	border-style: dotted;
	border-color: orange;
	rotate: 0deg;
	z-index:100;
	opacity:0;
}

.btnFlotanteIrTopInterno{
	position:absolute;
	padding:0;
	width:60px;
	height:60px;
	border-radius:60px;
	background:orange;
	top:3px;
	left:3px;
	box-shadow:0px 0px 0px #000;
	z-index:100;
	
}
/*SECCION PIE*/

/*WHATS APP*/
#containerBntWhatsApp{
	opacity: 0;
}
#buttonWatsApp {
	position:fixed;
	bottom:104px;
	right:34px;
	background:#FFF;
	padding:10px 12px;
	border-radius:200px;
	box-shadow: 0px 0px 12px #CCC;
	z-index:100;
	cursor:pointer;
}
#buttonWatsAppPuntoRojo {
	position:fixed;
	bottom:150px;
	right:36px;
	background:red;
	padding:2px 2px;
	border-radius:200px;
	width:6px;
	height:6px;
	z-index:100;
}
#mensajeInicialWhatssApp{
	position:fixed;
	width:300px;
	height:280px;
	bottom:180px;
	right:20px;
	background:#E8E8E8;
	z-index:200;
	border-radius:10px;
	opacity:0;
	display:none;
	text-align:center;
}

#headerWhatsApp{
	width:90%;
	height:auto;
	background:#095e54; 
	border-radius:10px 10px 0px 0px;
	padding:14px 5%;
	overflow:hidden;
}

.avatarWhatsApp {
	width:50px;
	height:50px; 
	border-radius:30px; 
	background-image: url("../img/avatarWhatsApp.jpg");
	background-size: cover;
	background-repeat: no-repeat;	
	float:left;
}

.ContieneTxtHeaderWhatsApp {
	width:auto;
	height:auto; 
	float:left; 
	text-align:left; 
	margin-left:10px; 
	margin-top:6px;
}

#mensajeWhatsApp{
	width:200px;
	height:auto;
	background:#fff;
	box-shadow:0px 0px 10px #ccc;
	border-radius:0px 4px 4px 4px;
	text-align:left;
	font-size:12px;
	padding:12px 12px 24px 12px;
}

#bodyWhatsApp{
	width:90%;
	height:80px;
	background-image: url("../img/bgWhatsApp.jpg");	
	padding:24px 5%;
	overflow:hidden;
}

.buttonOpenWhatsApp {
	text-decoration:none; 
	background:#14c656; 
	color:#FFF; 
	font-weight:bold; 
	padding:10px 30px; 
	border-radius:20px; 
	font-size:13px;
	cursor:pointer;
}

#btnAbreWhatPC{
	display:block;
}

#btnAbreWhatMovil{
	display:none;
}

.whatsAppPersonajesMovil{
	display:none;
	margin-top:17px;
}

.whatsAppPersonajesPc{
	display:inline-block;
	margin-top:17px;
}

/*RESPONSIVE*/
@media only screen and (min-width: 1000px) and (max-width: 1240px) {
	/*CARRUSEL*/
	.sliderServicios {max-width: 570px;}

	.sliderUltimosEventos {max-width: 570px;}

	.anchoCarruselPor3{
		width:260px;	
	}

	.anchoCarruselPor2{
		width:260px;
	}
	/*CARRUSEL*/
	
	.numerosContador {
		text-align:left;
		font-size:36px;
	}
	.textosContador {
		padding-top:0px;
		font-size:13px;
	}
	
	.general {
		margin-top:650px;
	}
	
	/*IMAGEN PRINCIPAL*/
	.rectangleSoloBorder {
		bottom:-222px;
		right:-82px; 
	}
	
	.rectangleSubImage {
		bottom:-220px;
		right:-80px; 
	}
	/*IMAGEN PRINCIPAL*/
}

@media only screen and (min-width: 720px) and (max-width: 1060px) {
	
	#navbar {
		display:none;
	}
	#menuPrincipalFixed {
		display:none;
	}
	.iframeSlide { 
		top:100px;
		height:520px; 
	}
	
	.general {
		margin-top:420px;
	}
	
	.numerosContador {
		text-align:left;
		font-size:28px;
	}
	.textosContador {
		padding-top:0px;
		font-size:12px;
	}
	
	/*CARRUSEL*/
	.sliderServicios {max-width: 570px;}

	.sliderUltimosEventos {max-width: 570px;}

	.anchoCarruselPor3{
		width:260px;	
	}

	.anchoCarruselPor2{
		width:260px;
	}
	
	/*CARRUSEL*/
	
	.row-cols-100 {width:100%;}
	
	.row-cols-33 {width:100%;}
	.contenedorPie {
		padding:40px 10px;
	}
	
	/*IMAGEN PRINCIPAL*/
	.imgPrincipal {
		width: 100%;
	}
	.rectangleSoloBorder {
		display: none;
	}
	.rectangleSubImage {
		position:relative; 
		width:100%; 
		height:auto; 
		bottom:inherit;
		right:inherit; 
		left: 0;
		top: 0;
		padding:0px;
	}
	.contenedorDeIconos {
		width:100%; 
	}
	
	h1 {font-size:30px;}
	h2 {font-size:40px;}
	/*IMAGEN PRINCIPAL*/
	
	/*MENU RESPONSIVE*/
	#headerMenuResponsive {
		display:inline-block;
	}
	#menu_responsive_modal_container {
		display:inline-block;
	}
	/*MENU RESPONSIVE*/
	
	/*MENU NO INDEX*/
	.menu_no_index {
		display:none;
	}
	
	/*MINIATURAS GALLERY*/
	.containerMiniatura{
		width:40%;
		margin:20px;
	}
	
	/*EVENTOS*/
	.containerIconsEventos{
		width:100%;
	}
	
	/*CONTACTO*/
	.containerContact {
		width:98%;
	}
	
	/*WHATAS APP*/
	#btnAbreWhatPC{
		display:none;
	}

	#btnAbreWhatMovil{
		display:block;
	}
	
	.whatsAppPersonajesMovil{
		display:inline-block;
	}

	.whatsAppPersonajesPc{
		display:none;
	}
}

@media screen and (max-width: 720px) {
	.row-cols-100 {width:100%;}
	.row-cols-75 {width:100%;}
	.row-cols-50 {width:100%;}
	.row-cols-33 {width:100%;}
	.row-cols-25 {width:100%;}
	
	#navbar {
		display:none;
	}

	#menuPrincipalFixed {
		display:none;
	}
	
	.iframeSlide { 
		top:100px;
		height:350px; 
	}
	
	.general {
		margin-top:240px;
	}
	
	/*IMAGEN PRINCIPAL*/
	.containerImgPrncipal {
		padding-top:50px; 
		padding-bottom:40px;
	}

	.imgPrincipal {
		width: 100%;
	}
	.contenedorRectangulosImgPrincipal {
 		padding-top: 40px;
	}
	.rectangleSoloBorder {
		display: none;
	}
	.rectangleSubImage {
		position:relative; 
		width:100%; 
		height:auto; 
		bottom:inherit;
		right:inherit; 
		left: 0;
		top: 0;
		padding:0px;
	}
	
	.contenedorDeIconos {
		width:100%; 
	}
	
	h1 {font-size:30px;}
	h2 {font-size:40px;}
	/*IMAGEN PRINCIPAL*/

	.contenedorPie {
		padding:40px 10px;
	}
	
	.numerosContador {
		text-align:left;
		font-size:45px;
	}
	.textosContador {
		padding-top:0px;
		font-size:20px;
	}
	
	.circuloTestimonios {
		width:90%; 
		height:500px; 
		border-radius:0px; 
	}
	
	/*CARRUSEL*/
	.sliderServicios {max-width: 360px;}

	.sliderUltimosEventos {max-width: 400px;}

	.anchoCarruselPor3{
		width:340px;	
	}

	.anchoCarruselPor2{
		width:380px;
	}

	.btnSlikLeft {
		display:none;
		left:20px;
		z-index:-100;
		
	}
	.btnSlikRight {
		display:none;
		right:20px;
		z-index:-100;
		
	}
	/*CARRUSEL*/
	
	
	/*MENU RESPONSIVE*/
	#headerMenuResponsive {
		display:inline-block;
	}
	#menu_responsive_modal_container {
		display:inline-block;
	}
	/*MENU RESPONSIVE*/
	
	/*MENU NO INDEX*/
	.menu_no_index {
		display:none;
	}
	
	/*MINIATURAS GALLERY*/
	.containerMiniatura{
		width:100%;
		margin:0px;
	}
	
	/*TITULOS DE SECCIONES SOBRE IMAGEN HEADER*/
	.containerTitulosImgSecciones { /*TITULOS SOBRE IMAGENES (HEADER) DE LAS SECCIONES*/
		font-size:200%;
	}
	
	/*SECCION TESTIMONIOS*/
	.contenedorTestimonios{
		padding:50px 0px;
	}
	
	/*EVENTOS*/
	.contenedorLeftEventos{
		width:100%;
		margin-right:0%;
	}
	.contenedorRightEventos{
		width:100%;
	}
	
	.containerIconsEventos{
		width:100%;
	}
	
	/*CONTACTO*/
	.containerContact {
		width:100%;
	}
	
	/*WHATS APP*/
	#btnAbreWhatPC{
		display:none;
	}

	#btnAbreWhatMovil{
		display:block;
	}
	
	.whatsAppPersonajesMovil{
		display:inline-block;
	}

	.whatsAppPersonajesPc{
		display:none;
	}
}



