@charset "utf-8";

/****************************************************
* FUENTES
****************************************************/
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Fredoka+One&family=Plus+Jakarta+Sans:wght@300;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Fira+Sans:wght@200&family=Plus+Jakarta+Sans:wght@300;600&display=swap');

/****************************************************
* VARIABLES
****************************************************/
:root {
	/* FUENTES */
	--fuente_01: 'Plus Jakarta Sans', sans-serif;
	/* COLORES FUENTE*/
	--color_menu: #4D1E0C;
	--color_menu_select: #026634;
	--color_menu_fuente_select: #FFFFFF;
	--color_menu_fuente_movil: #FFF;
	--color_fuente_titulo_banner: rgb(239, 238, 137);
	--color_fuente_parrafo_banner: #FFF;
	--color_fuente_boton_banner: #11173F;
	--color_fuente_boton_banner_select: #FFFFFF;
	--color_fuente_avisos: #4D1E0C;
	--color_fuente_textos: #000;
	--color_fuente_item_titulo: #FFF;
	--color_fuente_item_resumen: #454343;
	--color_fuente_item_resumen_select: #000;


	/* COLORES FONDO */
	--colfon_00: #fff;
	--color_menu_fondo: #62290C;
	--color_menu_fondo_select: #000;
	--color_seleccionar_bmovil: #3fe67f;
	--color_fondo_menu_movil: #026634;
	--color_fondo_movil_select: #000;
	--color_fondo_boton_banner: #00FA60;
	--color_fondo_boton_banner_select: darkred;
	--color_fondo_contenido: #FFF;
	--color_fondo_pie: #221707;
	--color_fondo_item: #FFF;
	--color_fondo_item_titulo: #026634;
	--color_fondo_item_titulo_select: #52AE32;
	--color_fondo_item_resumen: #e9e9e3;
	--color_fondo_item_resumen_select: #dbdbc7;




	/* COLORES BORDES */
	--color_borde_pie: #31220a;






}
  
/****************************************************
* ESTILOS GENERALES
****************************************************/
html,
body 
{
	background-color: var(--colfon_00);
}

a { outline: none; }

img { outline: none; }

* { 
	box-sizing: border-box;
	margin: 0px; 
	padding: 0px; 
  }

  .textos 
  { 
	  font-family: var(--fuente_01);
	  font-size:14px; 
	  resize:none; 
	  padding: 5px 5px 5px 5px;
	  border:#D8DFE2 1px solid; 
	  color: var(--color_fuente_textos);
	  cursor: pointer; background-color:#fff; 
  }
  
  .textos:focus 
  { 
	  outline: none; 
  }
  
  
/****************************************************
* CLASES DEL HEADER
****************************************************/
header{
	position: fixed;
	width: 100%;
	height: 150px;
	z-index: 3000; 
	background-color: var(--colfon_00);
	transition: all 200ms ease;
}

	header .bsuperior 
	{ 
		display: flex;
		justify-content: flex-start;
		width: 100%;
		flex-wrap: wrap; 
	}

		header .bsuperior .bs1{
			display: flex;
			justify-content:center;
			width: 30%; 
		}

			header .bsuperior .bs1 .logotipo{
				width:auto;
				height: 130px;
				transition: all 200ms ease;
			}

				header .bsuperior .bs1 .logotipo img{
					display: block;
					margin-top: 8px;
					height: 90%;
					transition: all 200ms ease;
				}

		header .bsuperior .bs2{
			width: 70%;
			display: flex;
			justify-content:center;
			flex-wrap: wrap;
		}

			header .bsuperior .bs2 .seccion1{
				width: 100%;
				display: flex;
				justify-content:center;
				height: 50px; 
			}

			header .bsuperior .bs2 .seccion2{
				width: 100%;
				display: flex;
				justify-content:center;
				height: calc(100% - 50px);
			}

.header2{
	position: fixed;
	width: 100%;
	height: 150px;
	z-index: 3000; 
	background-color: var(--colfon_00);
	margin-top: -50px;
}

	.header2 .bsuperior 
	{ 
		display: flex;
		justify-content: flex-start;
		width: 100%;
		flex-wrap: wrap; 
	}

		.header2 .bsuperior .bs1{
			display: flex;
			justify-content:center;
			width: 30%; 
		}

			.header2 .bsuperior .bs1 .logotipo{
				width:auto;
				height: 150px;
				transition: all 200ms ease;
			}

				.header2 .bsuperior .bs1 .logotipo img{
					display: block;
					margin-top: 55px;
					height: 60%;
				}

		.header2 .bsuperior .bs2{
			display: flex;
			justify-content:center;
			width: 70%;
		}

			.header2 .bsuperior .bs2 .seccion1{
				width: 100%;
				display: flex;
				justify-content:center;
				height: 50px;
			}

			.header2 .bsuperior .bs2 .seccion2{
				width: 100%;
				display: flex;
				justify-content:center;
				height: calc(100% - 50px);
			}


/****************************************************
* CLASES DE MENU OPCIONES
****************************************************/
.menu_opciones{
	width:auto;
	height: 30px;
	color:var(--color_menu);
	font-family: var(--fuente_01);
	font-size: 15px;
	font-weight: bold;
	margin-top: 50px;
}

	.menu_opciones ul{
		list-style: none;
		text-decoration: none;
		margin: 0px auto;
		width: 100%;
	}

		.menu_opciones > ul > li{
			transition: all 300ms; 
			cursor: pointer;
			display:inline-block;
			width:auto;
			height:30px;
			position:relative;
		}

			.menu_opciones > ul > li a{
				display: block;
				padding-left: 5px;
				padding-right: 10px;
				color: var(--color_menu);
				text-decoration: none;
				border-radius: 5px;
			}

				.menu_opciones > ul > li a:hover{
					color:var(--color_menu_select);
				}

					.menu_opciones > ul > li > ul{
						display: none;
						position: absolute;
						width: 200px;
						z-index: 1; 
						/*border-left: var(--color_menu) 1px solid;
						border-right: var(--color_menu) 1px solid;
						border-bottom: var(--color_menu) 1px solid;*/
						box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.5); 
					}

					.menu_opciones > ul > li:hover ul{
						display: block;	
						top:25px;
						left:0px;	
					}

						.menu_opciones > ul > li:hover ul > li{
							background-color: var(--color_menu_fondo);
							padding: 4px;
							line-height: 30px;
							font-size: 13px;
							transition: all 300ms;
							/*border-bottom: #ccc 1px solid;*/
						}

						/*
						.menu_opciones > ul > li:hover ul > li:last-child{
							border-bottom-left-radius: 5px;
							border-bottom-right-radius: 5px;
							border-bottom:none;
						}
						*/
						
							.menu_opciones > ul > li:hover ul > li a{
								color: var(--color_menu_fuente_select);
							}
					
							.menu_opciones > ul > li:hover ul > li a:hover{
								/*box-shadow: 0px 0px 2px #ccc inset;*/
								background-color:var(--color_menu_fondo_select);
							}


/****************************************************
* REDES SOCIALES
****************************************************/
.redes
{  
	width:40px;
	height:40px;
	opacity:1;
	position:fixed;
	/*bottom:20px;*/
	right:15px;
	display:block;
	text-indent:-9999px;
	z-index:3000;
}


/****************************************************
* CLASES DEL TOOLTIPSTER
****************************************************/
.tooltipster-custom .tooltipster-content{
	font-family: var(--fuente_01);
	font-size: 17px;
	line-height: 16px;
	padding: 8px 10px;
	overflow: hidden;
}


/****************************************************
* CLASES DE BARRA DE OPERACION MOVIL
****************************************************/
#boperacion_movil
{ 
	width: 100%;
	height: 40px; 
	background-color:transparent;
	display: none;
	margin-top: 25px;
}

	#boperacion_movil .icono{
		width: 50px;
		height: 100%;
		cursor: pointer;
		transition: all 500ms; 
		background-color: transparent;
		margin-right: 25px;
	}

	#boperacion_movil .icono:hover{
		background-color: var(--color_seleccionar_bmovil);
	}

		#boperacion_movil .icono img{ 
			display: block; 
			margin: 10px auto;
			height: 50%; 
		}

	/*
	#boperacion_movil .titulo{
		display: block; 
		width: 300px; 
		height: 100%;
		font-family: var(--fuente_01);
		font-size: 17px;
		color:#FFFFFF; 
		padding: 9px 10px; 
		text-align: left; 
	}
	*/


/* VENTANA DE MENU MOVIL DESPLEGABLE */
#bop{ 
	margin-top: 100px;
	width: 100%;
	height: auto;
	display: none; 
	border-bottom: #C9C9C9 1px solid; 
	position: absolute; 
	z-index: 1; 
	left: 0;
}

	#bop span{ 
		display: block;
		width: 100%;
		height: 40px;
		color: var(--color_menu_fuente_movil);
		background-color: var(--color_fondo_menu_movil);
		font-family: var(--fuente_01);
		font-size: 17px;
		text-align: left;
		padding: 8px 10px;
		cursor: pointer; 
	}

	#bop span:hover{ 
		/*color:#000;*/
		background-color: var(--color_fondo_movil_select);
	}

  
/****************************************************
* CLASES DE CONTENIDO
****************************************************/
#contenido
{ 
	width:100%; 
	height:auto; 
	min-height: 1000px; 
	background-color: var(--color_fondo_contenido);
	float: left;
	margin-top: 150px;
}


/****************************************************
* CLASES DEL BANNER CARRUSEL
****************************************************/
.owl-carousel {
    width: 100%;
    height: 650px; 
}

.slide {
    width: 100%;
    height: 650px;
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.slide::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 650px;
    background-color: rgba(0, 0, 0, 0.5);
}

.slide_alter {
    width: 100%;
    height: 650px;
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.slide_alter::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 650px;
    background-color: rgba(0, 0, 0, 0.5);
}

.slide-1 {
    background-image:none;
}

.slide-2 {
    background-image:none;
}

.slide-3 {
    background-image:none;
}

.slide-4 {
    background-image:none;
}

.slide-5 {
    background-image:none;
}

.slide-6 {
    background-image:none;
}

.slide-7 {
    background-image:none;
}

.slide-8 {
    background-image:none;
}

.slide-9 {
    background-image:none;
}

.slide-10 {
    background-image:none;
}

.slide-content {
    text-align: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    /*color: #fff;*/
    padding: 0 20%;
    /*background-color: rgba(0, 0, 0, 0.5);*/
	width: 100%;
}

.slide-content h1 {
	/*font-family: var(--fuente_01);*/
    font-family: "Anton", serif;
    font-size: 55px; 
	color: #fff;
    text-transform: uppercase;
}

.slide-content p {
    font-family: var(--fuente_01);
    font-size: 20px;
    margin-bottom: 20px; 
	color: var(--color_fuente_parrafo_banner);
}

.slide-content button {
    font-family: var(--fuente_01);
    font-size: 18px;
    text-transform: uppercase;
    font-weight: bolder;
    padding: 10px 25px;
    border: none; 
	margin-bottom: 20px; 
	cursor: pointer; 
	background-color: #3B5704; 
	color: #fff;
	border-radius: 5px;
}

	.slide-content button:hover {
		background-color: var(--color_fondo_boton_banner_select); 
		color: var(--color_fuente_boton_banner_select);
	}


.owl-dots {
    width: 100%;
    text-align: center;
    position: absolute;
    bottom: 1%;
}

.owl-dots span {
    width: 20px !important;
    height: 20px !important;
}

.owl-dots button {
    border: none !important;
    outline: none !important;
}

.owl-nav button {
    border: none !important;
    outline: none !important;
}

.owl-prev, .owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #fff !important;
    font-size: 65px !important;
    font-weight: bolder !important;
    background:none !important;
}

.owl-prev {
    left: 1%;
}

.owl-next {
    right: 1%;
}


/****************************************************
* CLASES AVISOS
****************************************************/
.cont_avisos{ 
	display: flex;
	justify-content: center; 
	width:100%; 
	height:auto; 
	margin-top: 80px;
}

	.cont_avisos .centro{
		width: 80%;
		height: 100%;
		display: flex;
		justify-content: center; 
		flex-wrap: wrap;
		min-height: 300px;
		padding-bottom: 80px;
	}

		.cont_avisos .centro .titulo{
			width:100%;
			height: auto;
			margin-top: 50px;
			margin-bottom: 30px;
			text-align: center; 
			font-family: var(--fuente_01);
			font-size: 40px; 
			font-weight: bold;
			color: var(--color_fuente_avisos);
		}

		.cont_avisos .centro .aviso{
			width:50%;
			height: auto;
			min-height: 100px;
			display: flex;
			justify-content: center; 
			flex-wrap: wrap; 
			margin: 15px 0px 15px 0px;
		}

			.cont_avisos .centro .aviso .cimg{
				width: 110px;
				height: 100%; 
			}

				.cont_avisos .centro .aviso .cimg img{
					width: 90%;
					height:auto;
					display: block; 
					margin: 5px auto;
				}
			
			.cont_avisos .centro .aviso .ccnt{
				width: calc(100% - 110px);
				height: 100%; 
			}

				.cont_avisos .centro .aviso .ccnt .tit{
					width: 100%;
					height:auto;
					font-family: var(--fuente_01);
					font-size: 20px; 
					font-weight: bold;
					color: var(--color_fuente_avisos);
					padding: 5px 25px 5px 15px;
				}
			
				.cont_avisos .centro .aviso .ccnt .cnt{
					width: 100%;
					height:auto;
					font-family: var(--fuente_01);
					font-size: 15px; 
					color: var(--color_fuente_avisos);
					padding: 5px 25px 5px 15px;
				}





#cont_slogan{ 
	display: flex;
	justify-content: center; 
	flex-wrap: wrap;
	width:100%; 
	height:auto; 
	margin-top: 50px;
}

	#cont_slogan .seleccion{ 
		background-color: #81B622;
		color:#FFF;
		font-family: 'Plus Jakarta Sans', sans-serif;
		font-size: 25px;
		height:50px; 
		padding: 10px;
		width: 350px;
		text-align: center; 
		font-weight: bold; 
		cursor: pointer; border-radius: 10px;
	}

	#cont_slogan .seleccion:hover{ 
		background-color: #143A65; 
		color: #FFF;
	}

	#cont_slogan img{ 
		height: 150px;
	}

	#cont_slogan .t1{ 
		font-family: "Anton", serif;
		font-size: 65px; 
		color:#3B5704;
		height:50px;
		width: 90%;
		max-width: 1000px; 
		text-align: center;
	}

	#cont_slogan .t2{ 
		font-family: "Anton", serif;
		font-size: 40px; 
		color:#81B622;
		height:30px;
		width: 90%;
		max-width: 1000px; 
		text-align: center;
	}

	#cont_slogan .reseña{ 
		color:#000;
		font-family: 'Plus Jakarta Sans', sans-serif;
		font-size: 22px;
		height:auto; 
		width: 90%;
		max-width: 1000px; 
		text-align: center; 
		margin-bottom: 30px;
	}
				

/****************************************************
* CLASES DEL PIE DE PAGINA
****************************************************/
#cont_pie{ 
	display: flex;
	justify-content: center; 
	flex-wrap: wrap;
	width:100%; 
	height:auto; 
	background-color: #fff;
}

	#cont_pie #contenedor_pie{ 
		display: flex;
		justify-content: center; 
		flex-wrap: wrap;
		height:auto;
		max-width: 1200px; 
		min-height: 200px; 
		width: 90%;
	}

		#cont_pie #contenedor_pie .item_pie{
			width: 300px;
			height:auto; 
			margin: 30px;
		}

			#cont_pie #contenedor_pie .item_pie .renglon{
				width: 100%;
				height:30px; 
				display: flex;
				justify-content: flex-start;
			}

				#cont_pie #contenedor_pie .item_pie .renglon .imagen{
					width: 25px;
					height:30px; 
					text-align: left; 
				}

					#cont_pie #contenedor_pie .item_pie .renglon .imagen img{
						width: 25px; 
						margin-top: 2px;
					}

				#cont_pie #contenedor_pie .item_pie .renglon .texto{
					width: calc(100% - 25px);
					height:30px; 
					text-align: left; padding-top: 3px;
				}
	
					#cont_pie #contenedor_pie .item_pie .renglon .texto a{
						font-family: var(--fuente_01);
						font-size: 17px;
						color: #666666; 
						font-weight: bold; 
					}

						#cont_pie #contenedor_pie .item_pie .renglon .texto a:hover{
							color: #000;
						}

				#cont_pie #contenedor_pie .item_pie .renglon span{
					font-family: "Roboto", serif;
					font-size: 17px;
					color: #FFF; 
					display: inline-block; 
				}









/****************************************************
* CLASES PRODUCTOS
****************************************************/
.cont_productos{ 
	display: flex;
	justify-content: center; 
	flex-wrap: wrap;
	width:100%; 
	height:auto; 
	margin-top: 50px;
}

	.cont_productos .titular{
		width:100%;
		height: auto;
		/*
		margin-top: 50px;
		margin-bottom: 30px;
		*/
		text-align: center; 
		font-family: var(--fuente_01);
		font-size: 40px; 
		font-weight: bold;
		color: var(--color_fuente_avisos);
	}

	.cont_productos .contenedor{ 
		display: flex;
		justify-content: center; 
		flex-wrap: wrap;
		height:auto;
		max-width: 1200px; 
		width: 90%; 
		margin-bottom: 50px;
	}

		.cproducto{
			width: 350px;
			height: 400px; 
			margin: 20px 20px 20px 20px;
			box-shadow: 1px 1px 3px rgba(159, 141, 140, 0.5); 
			background: var(--color_menu_select); 
			cursor:pointer;
			transition: all 500ms ease;
			border-bottom-left-radius: 5px; 
			border-bottom-right-radius: 5px; 
		}

		.cproducto:hover
		{ 
			box-shadow: 10px 10px 10px rgba(159, 141, 140, 0.5); 
			background: var(--color_fondo_pie); 
		}

			.cproducto img{
				width: 100%;
				height: 70%; 
				background: var(--color_menu_select); 
			}

			.cproducto .descripcion{
				width: 100%;
				height: 30%; 
				color: #FFF;
				font-family: 'Plus Jakarta Sans', sans-serif;
				font-size: 17px; 
				text-align: center; 
				display: block; 
				padding: 5px;
				border-bottom-left-radius: 5px; 
				border-bottom-right-radius: 5px; 
			}






/****************************************************
* CLASES DE COMENTARIOS FACEBOOK
****************************************************/
.cont_facebook{ 
	display: flex;
	justify-content: center; 
	flex-wrap: wrap;
	width:100%; 
	height:auto; 
	margin-top: 50px; 
	margin-bottom: 50px;
}

	.cont_facebook .cf_contenedor{ 
		display: flex;
		justify-content:flex-start; 
		flex-direction: column;
		flex-wrap: wrap;
		height:auto;
		width: 370px;
	}


/****************************************************
* CLASES DEL CARRUSEL ITEMS
****************************************************/
.cont_items{ 
	display: flex;
	justify-content: center; 
	flex-wrap: wrap;
	width:100%; 
	height:auto; 
	margin-top: 50px;
}

	.cont_items .titular{
		width:100%;
		height: auto;
		margin-top: 50px;
		margin-bottom: 30px;
		text-align: center; 
		font-family: "Anton", serif;
		font-size: 50px; 
		font-weight: bold;
		color: #7B481F;
	}

	.cont_items .contenedor{ 
		display: flex;
		justify-content: center; 
		flex-wrap: wrap;
		height:auto;
		max-width: 1200px; 
		width: 90%; 
		margin-bottom: 50px;
	}

		.item_red{
			width: 300px;
			height: 300px; 
			margin: 20px 20px 20px 20px;
			cursor:pointer;
			padding: 20px; 
			/*
			display: flex;
			justify-content: flex-start;
			*/
		}

			.item_red .imagen{
				width: 258px;
				height: 258px; 
				background: transparent; 
				background-image:none; 
				background-size: cover; 
			}

			.item_red .title{
				width: 100%;
				height:auto; 
				font-family: 'Plus Jakarta Sans', sans-serif;
				font-size: 22px;
				color:#4D1E0C;
				text-align: center; 
				margin-top: 10px; 
				font-weight: bold;
			}

		.item{
			width: 414px;
			height: 223px; 
			margin: 10px 10px 10px 10px;
			background: #3B5704; 
			cursor:pointer;
			border-radius: 30px; 
			padding: 20px; 
			display: flex;
			justify-content: flex-start;
		}

			.item .imagen{
				width: 212px;
				height: 179px; 
				background: transparent; 
				background-image:none; 
				background-size: cover; 
				border-radius: 15px; 
			}

			.item .container{
				width: 162px;
				height: 179px; padding: 10px; 
			}

				.item .container .title{
					width: 100%;
					height:auto;
					min-height: 30px;
					max-height: 80px;
					font-family: "Anton", serif;
					font-size: 30px;
					color: #fff;
					margin-top: 20px; 
					text-align: center; 
				}

				.item .container .datos{
					width: 100%;
					height:auto; 
					font-family: 'Plus Jakarta Sans', sans-serif;
					font-size: 14px;
					color: #fff;
					text-align: center; 
					margin-top: 10px; font-weight: bold;
				}




		.item2{
			width: 250px;
			height: 270px; 
			margin: 20px 20px 20px 20px;
		}

			.item .titulo{
				width:100%; 
				height: 60px;
				background-color: var(--color_fondo_item_titulo);
				display:flex;
				justify-content: center;
				align-items: center;
				text-align: center; 
				font-family: var(--fuente_01);
				font-size: 20px; 
				color: var(--color_fuente_item_titulo);
			}

				.item:hover .titulo{
					background-color: var(--color_fondo_item_titulo_select);
				}

			.item .resumen{
				width:100%; 
				height: 100px;
				background-color: var(--color_fondo_item_resumen);
				display:flex;
				justify-content: center;
				align-items: center;
				text-align: center; 
				font-family: var(--fuente_01);
				font-size: 17px;
				color: var(--color_fuente_item_resumen); 
				margin-top: 241px;
				border-bottom-left-radius: 5px; 
				border-bottom-right-radius: 5px; padding: 10px 10px 10px 10px; 
			}

				.item:hover .resumen{
					background-color: var(--color_fondo_item_resumen_select);
					color: var(--color_fuente_item_resumen_select);
				}

		.item_categoria{
			width: 350px;
			height: 400px; 
			margin: 20px 20px 20px 20px;
			box-shadow: 1px 1px 3px rgba(159, 141, 140, 0.5); 
			background: var(--color_fondo_item); 
			cursor:pointer;
			transition: all 500ms ease;
			background-image:none; 
			background-size: cover; 
			/*background-position: right bottom;*/
			border-bottom-left-radius: 5px; 
			border-bottom-right-radius: 5px; 
		}

		.item_categoria:hover
		{ 
			box-shadow: 10px 10px 10px rgba(159, 141, 140, 0.5); 
		}

			.item_categoria .titulo{
				width:100%; 
				height: 60px;
				background-color: var(--color_menu_fondo);
				display:flex;
				justify-content: center;
				align-items: center;
				text-align: center; 
				font-family: var(--fuente_01);
				font-size: 15px; 
				color: var(--color_fuente_item_titulo);
				transition: all 200ms ease;
			}

				.item_categoria:hover .titulo{
					background-color: var(--color_menu_fondo_select);
					height: 120px;
					font-size: 20px; 
				}










/****************************************************
* CLASES DE ELEMENTOS OPCIONES
****************************************************/
.cont_opciones{ 
	display: flex;
	justify-content: center; 
	flex-wrap: wrap;
	width:100%; 
	height:auto;  
	min-height: 200px;
	margin-top: 50px; 
	background-color: rgb(96, 225, 246);
}

	.cont_opciones .chitem{
		width: 200px;
		height: 200px; 
		margin: 20px 20px 20px 20px;
		box-shadow: 3px 3px 3px rgba(96, 92, 92, 0.5); 
		background:#FFF; 
		cursor:pointer;
		transition: all 500ms ease;
		background-image:none; 
		background-size: cover; 
		background-position: right bottom; 
		border-radius: 50%; 
	}

	.cont_opciones .chitem:hover
	{ 
		box-shadow: 10px 10px 10px rgba(14, 13, 13, 0.5); 
	}

	.cont_opciones .chitem:hover .chcomplemento{
		background-color: #000;
		color: yellow;	
	}

		.cont_opciones .chitem .chcomplemento{
			width:100%; 
			height: 100px;
			margin-top:50px;
			background-color: rgba(0, 0, 0, 0.4); 
			border-radius: 25px/45px;
			display:flex;
			justify-content: center;
			align-items: center;
			text-align: center; 
			font-family: 'Plus Jakarta Sans', sans-serif;
			font-size: 25px; 
			font-weight: bold;
			color:#FFF;
			transition: all 1000ms ease;
		}







.video-responsive {
	position: relative;
	padding-bottom: 56.25%; /* 16/9 ratio */
	padding-top: 30px; /* IE6 workaround*/
	height: 0;
	overflow: hidden;
}
	
	.video-responsive iframe,
	.video-responsive object,
	.video-responsive embed {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
	}




	
	



/****************************************************
* CLASES DE LA FIGURA DEL VIDEO
****************************************************/
.elementor-shape {
    overflow: hidden;
    position: absolute;
    left: 0;
    width: 100%;
    line-height: 0;
    direction: ltr;
  }  
  
  .elementor-shape[data-negative="false"].elementor-shape-bottom, .elementor-shape[data-negative="true"].elementor-shape-top {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
  }

.elementor-shape-top {
  top: -1px;
}

.elementor-shape-bottom {
  bottom: -1px;
}

.elementor-shape .elementor-shape-fill {
  fill:#FFF;
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
  -webkit-transform: rotateY(0deg);
  transform: rotateY(0deg);
}


/****************************************************
* CLASES DEL MAPA RESPONSIVO
****************************************************/
.map-responsive{
    overflow:hidden;
    padding-bottom:56.25%;
    position:relative;
    height:0;
	margin-bottom: 50px;
}

.map-responsive iframe{
    left:0;
    top:0;
    height:100%;
    width:100%;
    position:absolute; 
	margin: auto;
}
 


/****************************************************
* CLASES DEL CONTENIDO
****************************************************/
.cont_contenido{ 
	display: flex;
	justify-content: center; 
	flex-wrap: wrap;
	width:100%; 
	background-color:#FFF;
}

	.cont_contenido .contenedor_contenido{ 
		display: flex;
		justify-content: center; 
		flex-wrap: wrap;
		height:auto;
		max-width: 1200px; 
		/*min-height: 400px;*/ 
		width: 90%; 
		margin-bottom: 30px;
	}

		.cont_contenido .contenedor_contenido .promotor{
			width: 250px;
			height: 270px; 
			margin: 20px 20px 20px 20px;
			box-shadow: 1px 1px 3px rgba(159, 141, 140, 0.5); 
			background-color: #143A65;
			transition: all 500ms ease;
			background-image:none; 
			background-size: cover; 
			background-position: right bottom; 
		}

			.cont_contenido .contenedor_contenido .promotor img{
				width: 100%;
				height: 70%; 
			}

			.cont_contenido .contenedor_contenido .promotor .nombre{
				width: 100%;
				height: 30%; 
				color: #FFF;
				font-family: 'Plus Jakarta Sans', sans-serif;
				font-size: 17px; 
				text-align: center; display: block; padding: 5px;
			}

		.cont_contenido .contenedor_contenido .seccion{ 
			height:auto; 
			padding: 20px; 
			min-width: 350px;
		}

			.cont_contenido .contenedor_contenido .seccion .tit{
				font-family: "Anton", serif;
				font-size: 65px; 
				color:#3B5704;
				height:auto;
				width: 100%;
				max-width: 1000px; 
			}

			.cont_contenido .contenedor_contenido .seccion .con{
				font-family: 'Plus Jakarta Sans', sans-serif;
				font-size: 25px; 
				color:#000;
				height:auto;
				width: 100%;
				max-width: 1000px; 
				text-align: justify; 
			}




		.cont_contenido .contenedor_contenido .seccion img{ 
			width: 100%; 
		}
	
		.cont_contenido .contenedor_contenido .seccion span{
			font-family: 'Plus Jakarta Sans', sans-serif;
			font-size: 15px;
			color:gray; font-weight: bold; 
		}

		.cont_contenido .contenedor_contenido .seccion .renglon{ 
			width: 100%; 
			height:auto; 
			text-align: center; 
		}

		.cont_contenido .contenedor_contenido .seccion .renglon .boton{
			font-family: "Roboto", serif;
			font-size: 15px;
			text-transform: uppercase;
			font-weight: bolder;
			padding: 10px 25px;
			border: none; 
			margin-bottom: 10px; 
			cursor: pointer; 
			background-color:#AA4D1A; 
			color: #FFF; 
		}
		
			.cont_contenido .contenedor_contenido .seccion .renglon .boton:hover{
				background-color:#803913; 
			}
		

#boton_busqueda{
	font-family: "Roboto", serif;
	font-size: 18px;
	/*text-transform: uppercase;*/
	/*font-weight: bolder;*/
	padding: 12px 15px;
	border: none; 
	/*margin-bottom: 20px;*/ 
	cursor: pointer; 
	background-color:red; 
	color: #FFF; 
	border-top-right-radius: 5px;
	border-bottom-right-radius: 5px;
	/*border-radius: 5px; */
	height: 100%;
}

	#boton_busqueda:hover{
		background-color:#52AE32; 
		color: #000;
	}
	









/****************************************************
* PANTALLA MENOR A 800 PIXELES DE ANCHO (MOVILES)
****************************************************/
@media only screen and (max-width: 800px) 
{

	header .bsuperior .bs1{
		display: flex;
		justify-content:center;
		width: 70%; 
	}

		header .bsuperior .bs1 .logotipo img{
			display: block;
			margin-top: 35px;
			height: 70px;
			transition: all 200ms ease;
		}

	header .bsuperior .bs2{
		width: 30%;
		display: flex;
		justify-content:center;
		flex-wrap: wrap;
	}

	.header2 .bsuperior .bs1{
		display: flex;
		justify-content:center;
		width: 70%; 
	}
	
		.header2 .bsuperior .bs1 .logotipo img{
			display: block;
			margin-top: 110px;
			height: 40px;
		}
	
	.header2 .bsuperior .bs2{
		display: flex;
		justify-content:center;
		width: 30%;
	}
	
	#cont_slogan .t1{ 
		font-family: "Anton", serif;
		font-size: 40px; 
		color:#3B5704;
		height:80px;
		width: 90%;
		max-width: 1000px; 
		text-align: center;
	}

	#cont_slogan .t2{ 
		font-family: "Anton", serif;
		font-size: 30px; 
		color:#81B622;
		height:30px;
		width: 90%;
		max-width: 1000px; 
		text-align: center;
	}

	.cont_contenido .contenedor_contenido .seccion img{ 
		margin-left: -50px;
	}

	.cont_contenido .contenedor_contenido .seccion .renglon label{
		font-size: 12px;
	}

	.cont_contenido .contenedor_contenido .seccion .tit{
		font-family: "Anton", serif;
		font-size: 40px; 
		color:#3B5704;
		height:auto;
		width: 100%;
		max-width: 1000px; 
	}

	.item .container .title{
		width: 100%;
		height: 40px; 
		font-family: "Anton", serif;
		font-size: 20px;
		color: #fff;
		margin-top: 20px; 
		text-align: center; 
	}



	#boperacion_movil
	{
		display:flex;
		justify-content:flex-end;
	}

	#opciones{
		display: none;
	}


	/* AVISOS */
	.cont_avisos .centro .aviso{
		width:100%; 
		margin-bottom: 30px;
	}

		.cont_avisos .centro .aviso .cimg{
			width: 100%;
			height:auto; 
		}

			.cont_avisos .centro .aviso .cimg img{
				width: 110px;
				height:auto;
				display: block; 
				margin: 5px auto;
			}

		.cont_avisos .centro .aviso .ccnt{
			width: 100%;
			height:auto; 
		}

			.cont_avisos .centro .aviso .ccnt .tit{
				text-align: center;
			}
		
			.cont_avisos .centro .aviso .ccnt .cnt{
				text-align: center;
			}




	.slide-content {
		padding: 0 0;
	}
	
	.slide-content h1 {
		font-size: 40px;
	}
	
	.slide-content p { 
		margin: 10px 30px 10px 30px;
		color: #FFF; 
		font-size: 20px; 
	}
	





	
	
}


/****************************************************
* PANTALLA MAS DE 800 PIXELES DE ANCHO (ESCRITORIO)
****************************************************/
@media only screen and (min-width: 800px) 
{

	#bop{ 
		display: none!important;
	}






	
}








