@charset "utf-8";
/* CSS Document */

/*@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@200;300;500;700;900&display=swap');
*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;600;700;800&display=swap');


.menu_pie
{ 
    color: #fff; 
    text-decoration: none; 
    font-weight: 300; 
    display: flex; 
    gap:10px; 
    align-items: center; 
    letter-spacing: -0.5px;
    
    -webkit-transition: all .2s ease;
	-moz-transition: all .2s ease;
	-ms-transition: all .2s ease;
	-o-transition: all .2s ease;
	transition: all .2s ease;
}

.menu_pie:hover
{
    color: #e05c5c; 
}


.lista
{
    font-weight: 600; 
    font-size: 14px; 
    color: #000; 
    border-radius: 40px; 
    padding: 10px; 
    padding-left: 20px; 
    padding-right: 20px; 
    margin-top: 20px; 
    background-color: #fff; 
    display: flex; 
    gap:10px; 
    align-items: center;
}

.lista > span
{
    width: 25px;
    min-width: 25px;
    height: 25px; 
    min-height: 25px;
    background-color: #0033a0; 
    border-radius: 100px; 
    display: flex; 
    justify-content: center; 
    align-items: center;
}


.lista2
{
    font-weight: 600; 
    font-size: 14px; 
    color: #000; 
    border-radius: 40px; 
    padding: 10px; 
    padding-left: 20px; 
    padding-right: 20px; 
    margin-top: 20px; 
    background-color: #fff; 
    display: flex; 
    gap:10px; 
    align-items: center;
    
    box-shadow: 0px 0px 23px 4px rgba(0,0,0,0.1);
	-webkit-box-shadow: 0px 0px 23px 4px rgba(0,0,0,0.1);
	-moz-box-shadow: 0px 0px 23px 4px rgba(0,0,0,0.1);
}

.lista2 > span
{
    width: 25px; 
    min-width: 25px;
    height: 25px; 
    min-height: 25px; 
    background-color: #e05c5c; 
    border-radius: 100px; 
    display: flex; 
    justify-content: center; 
    align-items: center;
}



.galeria_instalaciones
{
	height: 300px; 
	border-radius: 30px;
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
}




.slider
{
    width: 90%;
    height: auto;
}

.slick-slide {
  /*margin: 0px 20px;*/
  margin: 20px;
}

.slick-slide img {
  /*width: 100%;*/
}

.slick-prev:before,
.slick-next:before {
  color: black;
}


.slick-slide {
  transition: all ease-in-out .3s;
  opacity: .2;
  transform: scale(0.8);
}

.slick-active {
  opacity: 1;
  transform: scale(1);
}

.slick-current {
  opacity: 1;
  transform: scale(1);
}


.doctor
{
    display: flex!important; 
    flex-direction: column!important; 
    justify-content: center!important; 
    align-items: center!important;
}

.doctor_imagen
{
    width: 200px;
    height: auto;
    border-radius: 20px;
}

.titulo_doctor
{
    font-weight: 500; 
    margin-top: 10px; 
    max-width: 200px; 
    text-align: center;
}

.profesion_doctor
{
    background-color: #e05c5c; 
    border-radius: 50px; 
    padding: 5px; 
    padding-left: 15px; 
    padding-right: 15px; 
    color: #fff; 
    font-size:12px; 
    margin-top: 10px;
    text-align: center;
}





.staff_seleccionado
{
    padding: 5px; 
    padding-left: 15px; 
    padding-right: 15px; 
    border:2px solid #001d7e; 
    border-radius: 50px; 
    font-weight: 700; 
    color:#fff!important; 
    background-color: #001d7e;
    font-size: 10px;
}

.staff
{
    padding: 5px; 
    padding-left: 15px; 
    padding-right: 15px; 
    border:2px solid #001d7e; 
    border-radius: 50px; 
    font-weight: 600; 
    color:#001d7e;
    font-size: 10px;
    
    -webkit-transition: all .2s ease;
	-moz-transition: all .2s ease;
	-ms-transition: all .2s ease;
	-o-transition: all .2s ease;
	transition: all .2s ease;
}

.staff:hover
{
    background-color: #ff5c5c;
    border:2px solid #ff5c5c;
    cursor: pointer;
    color:#fff;
}




.dropdownmenu 
{
    margin-top: 20px;
    font-size: 16px;
}

.dropdownmenu ul, .dropdownmenu li 
{
	margin: 0;
    padding: 0;
}
.dropdownmenu ul 
{
	
    color:#fff;
	list-style: none;
	width: 100%;
}
.dropdownmenu li 
{
	float: left;
	position: relative;
	width:auto;
}
.dropdownmenu a 
{
	color: #000;
	display: block;
	font-weight: 700;
	padding: 10px 25px;
    border-radius: 20px;
	text-align: center;
	text-decoration: none;
	-webkit-transition: all .2s ease;
	-moz-transition: all .2s ease;
	-ms-transition: all .2s ease;
	-o-transition: all .2s ease;
	transition: all .2s ease;
}
.dropdownmenu li:hover a 
{
	background-color: #001d7e;
    color:#fff;
}

#submenu 
{
	left: 0;
	opacity: 0;
	position: absolute;
	visibility: hidden;
	z-index: 1;
    background-color:#fff;
    border-radius: 20px;
    margin-top: 5px;
}
li:hover ul#submenu 
{
	opacity: 1;
	top: 40px;	/* adjust this as per top nav padding top & bottom comes */
	visibility: visible;
}
#submenu li 
{
	float: none;
	width: auto;
}
#submenu a:hover 
{
	background-color: #F1F1F1;
}
#submenu a 
{
	background-color:#fff;
    color: #000;
    font-weight:400!important;
}




.video_principal
{
    box-sizing: border-box;
    position: absolute; 
    width: 100%;
}

.textoprincipal
{
	font-size: 70px;
    line-height: 65px;
}


.carne-cruda
{
    position: absolute; 
    bottom:-80px; 
    margin: 0 auto; 
    max-width: 300px;
}


.banner_principal
{
    background-image: url(images/fondo_banner_principal.png); 
    display: flex; 
    justify-content: center;
    align-items: center;
    position: relative; 
    overflow: hidden;
    padding-top: 100px;
    height: 600px!important;
}

.frase1
{
    position: absolute; 
    bottom: 0px; 
    left: 5%;
    width: 300px;
    height: auto;
}

.frase2
{
    position: absolute; 
    top: 30px; 
    right: 5%;
    width: 300px;
    height: auto;
}

.ajo
{
    position: absolute; 
    top:20px; 
    margin: 0 auto; 
    max-width: 130px;
}


.asadero
{
    display: flex; 
    justify-content: center; 
    align-items: center; 
    position: relative; 
    max-height: 500px; 
    overflow: hidden;
}


.asadero_video
{
    width: 100%; 
    height: auto;
}

.contenedorcarneprincipal
{
    display: flex; 
    flex-direction: column; 
    position: relative; 
    overflow: visible; 
    align-items: flex-end; 
    justify-content: flex-end; 
    height: auto;
}



.carne_principal
{
    width: 150%;
    height: auto;
    max-width: 700px; 
    margin-top: 30px; 
    transform: rotate(-45deg);
}



.PorQue
{
    max-width: 1250px;
    display: flex; 
    justify-content: center; 
    align-items: center; 
    position: relative;  
    gap:80px;
}


.titulocentrarmovil
{
    width: 100%; 
    box-sizing: border-box; 
    text-align: left;
}


.custom-shape-divider-bottom-1675545512 {
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}


.corte
{
    width: 90%; 
    max-width: 200px; 
}






.custom-shape-divider-bottom-1675545512 svg {
    position: relative;
    display: block;
    width: calc(154% + 1.3px);
    height: 369px;
	z-index: -1;
}

.custom-shape-divider-bottom-1675545512 .shape-fill {
    fill: #FFFFFF;
}


.SoloPc
{
	display: flex;
}

.SoloMovil
{
	display: none;
}



.imagen_izquierda
{
	 position: absolute;
	 left: -80px;
}

.alinear_izquierda_movil_centro
{
	align-items: flex-start;
}

.imagen_derecha
{
	 position: absolute;
	 right:-80px;
}

.alinear_derecha_movil_centro
{
	align-items: flex-end;
}


.texto_derecha_centro
{
	text-align: right;
}


.texto_izquierda_centro
{
	text-align: left;
}







.canceleria1
{
	grid-column-start: 1; 
	grid-column-end: 5; 
}

.canceleria2
{
	grid-column-start: 5; 
	grid-column-end: 9; 
}

.canceleria3
{
	grid-column-start: 9; 
	grid-column-end: 13; 
	grid-row-start: 1; 
	grid-row-end: 3;
	max-height: 830px;
}

.canceleria4
{
	grid-column-start: 1; 
	grid-column-end: 5; 
}

.canceleria5
{
	grid-column-start: 5; 
	grid-column-end: 9; 
}


.galeria_nosotros
{
	height: 400px; 
	border-radius: 15px;
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
}

.menumovil
{
	position: fixed; 
	z-index: 1000; 
	width: 100%; 
	height: 100%;
	left: -150%;
	backdrop-filter: saturate(200%) blur(30px); 
	background-color: hsla(0,0%,100%,0.6)!important; 
	display: flex; 
	justify-content: center; 
	align-items: center; 
	flex-direction: column; 
	gap:20px;
	
	-webkit-transition:All 0.3s ease;
	-moz-transition:All 0.3s ease;
	-o-transition:All 0.3s ease;
}

.menumovil.toggle
{
	left: 0;
}

.imagenx2
{
	width: calc(50% - 10px);
	align-self: stretch;
	border-radius: 10px;
}

.lista_maquinaria
{
	padding-right: 20px; 
	background-color: #ededed; 
	border-radius: 30px; 
	display: flex; 
	gap:15px; 
	align-items: center;
}

.numero_lista_maquinaria
{
	width: 70px;
	min-width: 70px;
	height: 70px; 
	border: 2px solid #325cfd; 
	display: flex; 
	justify-content: center; 
	align-items: center; 
	border-radius: 50px; 
	font-weight: 900; 
	font-size: 30px;
}


.boton_categoria
{
	padding: 15px;
	padding-left: 20px;
	padding-right: 20px;
	border-radius: 30px;
	color: #fff;
	border:2px dashed #fff;
	font-weight: 900;
	
	-webkit-transition:All 0.3s ease;
	-moz-transition:All 0.3s ease;
	-o-transition:All 0.3s ease;
}

.boton_categoria:hover
{
	background-color: #000;
	border:2px dashed #000;
	cursor: pointer;
}


.boton_categoria_seleccionado
{
	background-color: #000;
	border:2px solid #000 !important;
	cursor: pointer;
	color: #fff !important;
}



.boton_categoria_gris
{
	padding: 15px;
	padding-left: 20px;
	padding-right: 20px;
	border-radius: 30px;
	color: #393939;
	border:2px dashed #393939;
	font-weight: 900;
	
	-webkit-transition:All 0.3s ease;
	-moz-transition:All 0.3s ease;
	-o-transition:All 0.3s ease;
}

.boton_categoria_gris:hover
{
	background-color: #000;
	border:2px solid #000;
	cursor: pointer;
	color: #fff !important;
}




.boton_flecha
{
	color: #000; 
	background-color: #fff; 
	border-radius: 30px; 
	display: flex; 
	justify-content: center; 
	align-items: center; 
	gap:10px; 
	padding: 10px; 
	padding-left: 25px; 
	padding-right: 25px; 
	text-decoration: none;
	font-size: 14px;
	
	-webkit-transition:All 0.3s ease;
	-moz-transition:All 0.3s ease;
	-o-transition:All 0.3s ease;
}

.boton_flecha span
{
	width: 30px; 
	height: 30px; 
	background-color: #92242c; 
	display: flex; 
	justify-content: center; 
	align-items: center; 
	border-radius: 50%;
}

.boton_flecha:hover
{
	background-color: #262626;
	color: #fff;
}


#engrane_izquierdo
{
	position: absolute; 
	left: 0px; 
	top: 40%;
}

#engrane_derecho
{
	position: absolute; 
	right: 0px; 
	bottom: 0px;
}

#somosunamepresatitulo
{
	margin-top: 300px;
}

.lista_azul
{
	font-weight: 600; 
	font-size: 18px; 
	line-height: 20px;
}

.lista_azul ul 
{
	padding: 0;
	margin-left: 10px;
}

.lista_azul ul li
{
	color: #325cfd;
	margin-top: 15px;
}

.lista_azul ul li span
{
	color: #000;
}


.lista_blanca
{
	font-weight: 600; 
	font-size: 18px; 
	line-height: 20px;
}

.lista_blanca ul 
{
	padding: 0;
	margin-left: 10px;
}

.lista_blanca ul li
{
	color: #fff;
	margin-top: 15px;
}

.lista_blanca ul li span
{
	color: #fff;
}




.boton_rojo
{
	padding: 10px;
	padding-left: 20px;
	padding-right: 20px;
	color: #fff;
	width: auto;
	border-radius: 30px;
	font-weight: 700;
	text-align: center;
	text-decoration: none;
	
	background-color: #e30044;
	
	-webkit-transition:All 0.3s ease;
	-moz-transition:All 0.3s ease;
	-o-transition:All 0.3s ease;
}


.boton_rojo:hover
{
	background-color: #000;
	
	-webkit-transition:All 0.3s ease;
	-moz-transition:All 0.3s ease;
	-o-transition:All 0.3s ease;
}







.boton_naranja
{
	padding: 10px;
	padding-left: 20px;
	padding-right: 20px;
	color: #fff;
	width: auto;
	border-radius: 30px;
	font-weight: 700;
	text-align: center;
	text-decoration: none;
    cursor: pointer;
	
    background-color: #fd6c00;
	
	-webkit-transition:All 0.3s ease;
	-moz-transition:All 0.3s ease;
	-o-transition:All 0.3s ease;
}


.boton_naranja:hover
{
	background-color: #000;
	
	-webkit-transition:All 0.3s ease;
	-moz-transition:All 0.3s ease;
	-o-transition:All 0.3s ease;
}








.boton_azul
{
	padding: 10px;
	padding-left: 20px;
	padding-right: 20px;
	background-color: #001d7e;
	color: #fff;
	width: auto;
	border-radius: 30px;
	font-weight: 700;
	text-align: center;
	text-decoration: none;
    cursor: pointer;
	
	-webkit-transition:All 0.3s ease;
	-moz-transition:All 0.3s ease;
	-o-transition:All 0.3s ease;
}


.boton_azul:hover
{
	background-color:#ff5c5c;
	
	-webkit-transition:All 0.3s ease;
	-moz-transition:All 0.3s ease;
	-o-transition:All 0.3s ease;
}


.boton_gris
{
	padding: 5px;
	padding-left: 10px;
	padding-right: 10px;
	background-color: #e8ecf5;
	color: #001d7e;
	width: auto;
	border-radius: 30px;
	text-align: center;
	text-decoration: none;
    cursor: pointer;
    font-size: 12px;
	
	-webkit-transition:All 0.3s ease;
	-moz-transition:All 0.3s ease;
	-o-transition:All 0.3s ease;
}


.boton_gris:hover
{
	background-color:#dee3ef;
	
	-webkit-transition:All 0.3s ease;
	-moz-transition:All 0.3s ease;
	-o-transition:All 0.3s ease;
}







.boton_negro
{
	padding: 10px;
	padding-left: 20px;
	padding-right: 20px;
	background-color: #202020;
	color: #fff;
	width: auto;
	border-radius: 50px;
	font-weight: 400;
	text-align: center;
	text-decoration: none;
	display: flex;
	justify-content: center;
	align-items: center;
	
	-webkit-transition:All 0.3s ease;
	-moz-transition:All 0.3s ease;
	-o-transition:All 0.3s ease;
}


.boton_negro:hover
{
	background-color:#000000;
	
	-webkit-transition:All 0.3s ease;
	-moz-transition:All 0.3s ease;
	-o-transition:All 0.3s ease;
}


#menu
{
	height: auto; 
	display: flex; 
	justify-content: center
}

#trescuadros
{
	margin: 0 auto; 
	max-width: 1250px; 
	display: flex; 
	justify-content: center; 
	align-items: center; 
	position: absolute; 
	top: -150px; 
	box-sizing: border-box;
}

#direccion_top
{
	display: flex; 
	align-items: center; 
	gap:10px; 
	padding-left: 60px; 
	border-left: 1px solid #e5e5e5;
}

#correo_top
{
	display: flex; 
	align-items: center; 
	gap:10px; 
	padding-left: 40px;
}


.sombra
{
	box-shadow: 0px 0px 23px 4px rgba(0,0,0,0.1);
	-webkit-box-shadow: 0px 0px 23px 4px rgba(0,0,0,0.1);
	-moz-box-shadow: 0px 0px 23px 4px rgba(0,0,0,0.1);
}


.boton_menu
{
	font-weight: 700;
	color:#000;
	padding:10px;
	padding-left:15px;
	padding-right: 15px;
	text-decoration: none;
	font-size: 14px;
	border-radius: 30px;
	display: flex;
	justify-content: center;
	
	-webkit-transition:All 0.5s ease;
	-moz-transition:All 0.5s ease;
	-o-transition:All 0.5s ease;
}
.boton_menu:hover
{
	color:#fff;
	background-color: #fd6c00;
}


		
body
{
	margin: 0px;
	font-family: 'Poppins', sans-serif;
    font-size: 14px;
}

.boton
{
	width: 500px; 
	height: 100px; 
	background-color:#FF0004;
}


#datostop
{
	display: flex;
}

#boton_menu_movil
{
	display: none;
}

.MargenMovil
{
	margin: 0px;
}


.contenedor1
{
	float:left;
	width:100%;
	height:auto;
	box-sizing:border-box;
    
    -webkit-transition:All 0.5s ease;
	-moz-transition:All 0.5s ease;
	-o-transition:All 0.5s ease;
}
  
  
.contenedor2
{
	float:left;
	width:50%;
	height:auto;
	box-sizing:border-box;
    
    -webkit-transition:All 0.5s ease;
	-moz-transition:All 0.5s ease;
	-o-transition:All 0.5s ease;
}
  
  
.contenedor3
{
	float:left;
	width:33.3333%;
	height:auto;
	box-sizing:border-box;
    
    -webkit-transition:All 0.5s ease;
	-moz-transition:All 0.5s ease;
	-o-transition:All 0.5s ease;
}

.contenedor4
{
	float:left;
	width:25%;
	height:auto;
	box-sizing:border-box;
    
    -webkit-transition:All 0.5s ease;
	-moz-transition:All 0.5s ease;
	-o-transition:All 0.5s ease;
}

.contenedor5
{
	float:left;
	width:20%;
	height:auto;
	box-sizing:border-box;
    
    -webkit-transition:All 0.5s ease;
	-moz-transition:All 0.5s ease;
	-o-transition:All 0.5s ease;
}

.contenedor75
{
	float:left;
	width:75%;
	height:auto;
	box-sizing:border-box;
    
    -webkit-transition:All 0.5s ease;
	-moz-transition:All 0.5s ease;
	-o-transition:All 0.5s ease;
}

.contenedor30
{
	float:left;
	width:30%;
	height:auto;
	box-sizing:border-box;
    
    -webkit-transition:All 0.5s ease;
	-moz-transition:All 0.5s ease;
	-o-transition:All 0.5s ease;
}

.contenedor40
{
	float:left;
	width:40%;
	height:auto;
	box-sizing:border-box;
}




input[type="text"],
input[type="email"],
input[type="search"],
input[type="password"],
input[type="number"],
input[type="date"],
input[type="time"]
{
  border: none;
  width: 100%;
  background-image: none;
  background-color: transparent;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  background-color: #fff;
  font-size: 14px;
  color: #000000;
  padding: 8px;
  padding-left: 10px;
  padding-right: 10px;
  border-radius: 6px;
  border: 1px solid #d2d6da;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}



input[type="text"]:focus-visible,
input[type="email"]:focus-visible,
input[type="search"]:focus-visible,
input[type="password"]:focus-visible,
input[type="number"]:focus-visible,
input[type="date"]:focus-visible,
input[type="time"]:focus-visible
{
  outline: 2px solid #ffe9e9;
  border: 1px solid #ffe9e9;
}


input[type="text"]:hover,
input[type="email"]:hover,
input[type="search"]:hover,
input[type="password"]:hover,
input[type="number"]:hover,
input[type="date"]:hover,
input[type="time"]:hover
{
  border: 1px solid #ffe9e9;
}




.Campo
{
  border: none;
  width: 100%;
  background-image: none;
  background-color: transparent;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  background-color: #fff;
  font-size: 14px;
  color: #000000;
  padding: 15px;
  padding-left: 10px;
  padding-right: 10px;
  border-radius: 6px;
  border: 1px solid #d2d6da;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}



.Campo:focus-visible
{
  outline: 2px solid #ffe9e9;
  border: 1px solid #ffe9e9;
}


.Campo:hover
{
  border: 1px solid #ffe9e9;
}








.Alertas
{
	position:fixed;
	width:100%;
	height:100%;
	background-color: rgba(0,0,0,0.4);
	z-index:1500;
	display:none;
	justify-content:center;
	align-items:center;
}
.Alertas.toggle
{
	display:flex;
}

.AlertasContenedor
{
	width:65%;
	max-width:480px;
	background-color:#FFFFFF;
	padding:40px;
	text-align:center;
    border-radius: 25px;
}



@media only screen and (max-width:1300px)
{	
	.MargenMovil
	{
		padding-left: 20px;
		padding-right: 20px;
	}
	
	.textoprincipal
	{
		font-size: 50px;
	}
    
    .carne_principal
    {
        width: 150%;
        height: auto;
        max-width: 600px; 
        margin-top: 30px; 
        transform: rotate(-45deg);
    }
    
    .frase1
    {
        bottom: 0px; 
        left: 5%;
        width: 250px;
    }
    
    .frase2
    {
        top: 30px; 
        right: 5%;
        width: 250px;
    }
	
}




@media only screen and (max-width:1024px)
{	
    .frase1
    {
        bottom: 0px; 
        left: 5%;
        width: 200px;
    }
    
    .frase2
    {
        top: 30px; 
        right: 2%;
        width: 200px;
    }
    
	.imagen_principal
	{
		padding-bottom: 300px;
	}
	
	#direccion_top
	{
		display:none;
	}
	
	#correo_top
	{
		display: flex; 
		padding-right: 0px;
	}
	
	.lista_azul
	{ 
		font-size: 16px;
	}
	
	.lista_blanca
	{
		font-size: 16px;
	}
    
    .carne_principal
    {
        width: 100%;
        height: auto;
        max-width: 400px; 
        margin-top: 30px; 
        transform: rotate(-45deg);
    }	
}



@media only screen and (max-width:830px)
{
    #menu
	{
		display: none;
	}
    
    #menu_movil
	{
		display: flex;
	}
    
    #boton_menu_movil
	{
		display: block;
	}
    
    .contenedorhistoria
    {
        flex-direction: column-reverse;
    }
    
    .iconos_nosotros_historia
    {
        align-items: center;
        justify-content: center;
    }
    
    .banner_principal
    {
        height: 400px;
        padding-top: 0px;
    }
    
    .video_principal
    {
        box-sizing: border-box;
        position: absolute; 
        width: auto;
        height: 600px;
    }
    
    .doctor_imagen
    {
        width: 150px;
        height: auto;
    }
    
    .slider
    {
        width: 70%;
        height: auto;
    }
    
    .galeria_instalaciones
	{
		height: 150px; 
		border-radius: 30px;
	}
}


/*@media only screen and (max-width:780px)*/
@media only screen and (max-width:550px)
{
    .frase1
    {
        bottom: -30px; 
        left: 2%;
        width: 200px;
    }
    
    .frase2
    {
        top: 0px; 
        right: 2%;
        width: 150px;
    }

    .contenedorhistoria
    {
        flex-direction: column-reverse;
    }
    
    .iconos_nosotros_historia
    {
        align-items: center;
        justify-content: center;
    }
    
    .ajo
    {
        right: 20px;
        top: 20px;
        width: 80px;
    }

    .carne-cruda
    {
        bottom:-20px;
        right: 0px;
        width: 100px;
    }
    
    
    .asadero
    {
        height: 1000px;
    }
    
    .asadero_video
    {
        width: auto; 
        height: 600px;
    }
    
    .contenedorcarneprincipal
    {
        justify-content: center;
        display: block;
        height: 400px;
    }
    
    .carne_principal
    {
        width: auto;
        max-width: 500px; 
        margin-top: 70px;
        margin-left: -70px;
        transform: rotate(-30deg);
    }
    
    .corte
    {
        width: 90%; 
        max-width: 150px; 
    }
    
    .PorQue
    {
        padding-top: 80px;
        flex-direction: column-reverse;
    }
    
    .titulocentrarmovil
    { 
        text-align: center;
    }
    
    .adomicilio
    {
         text-align: center;
    }
    



    #trescuadros
	{
		flex-direction: column;
	}
	
    #menu
	{
		display: none;
	}
	
	
	#datostop
	{
		display: none;
	}
	
	#boton_menu_movil
	{
		display: block;
	}
	
	.contenedor2
	{
		width:100%;
	}



	.contenedor3
	{
		width:100%;
	}

	.contenedor4
	{
		width:100%;
	}


	.contenedor5
	{
		width:100%;
	}


	.contenedor75
	{
		width:100%;
	}


	.contenedor30
	{
		width:100%;
	}


	.contenedor40
	{
		width:100%;
	}
	
	.SoloPc
	{
		display: none;
	}

	.SoloMovil
	{
		display: flex;
	}
	
	#somosunamepresatitulo
	{
		margin-top: 780px;
	}
	
	#engrane_izquierdo
	{
		position: absolute; 
		left: 0px; 
		top: 55%;
	}
	
	#engrane_derecho
	{
		position: absolute; 
		right: 0px; 
		bottom: 0px;
	}
	
	.FlexColumMovil
	{
		flex-direction: column;
	}
	
	.imagenx2
	{
		height:150px;
	}
	
	.grid1
	{
		grid-column-start: 1!important; 
		grid-column-end: 5!important;
	}
	
	.galeria_nosotros
	{
		height: 500px; 
		border-radius: 30px;
	}
	
	.canceleria1
	{
		grid-column-start: 1; 
		grid-column-end: 13; 
	}
	
	.canceleria2
	{
		grid-column-start: 1; 
		grid-column-end: 13; 
	}
	
	.canceleria3
	{
		grid-column-start: 1; 
		grid-column-end: 13; 
		grid-row-start: 1; 
		grid-row-end: 1;
		height: 500px;
	}
	
	.canceleria4
	{
		grid-column-start: 1; 
		grid-column-end: 13; 
	}
	
	.canceleria5
	{
		grid-column-start: 1; 
		grid-column-end: 13; 
	}
	
	.imagen_izquierda
	{
		position: relative;
		left: 0px;
	}
	
	.alinear_izquierda_movil_centro
	{
		align-items: center;
	}
	
	.imagen_derecha
	{
		 position: relative;
		 right:0px;
	}

	.alinear_derecha_movil_centro
	{
		align-items: center;
	}
	
	.texto_derecha_centro
	{
		text-align: center;
	}
	
	.texto_izquierda_centro
	{
		text-align: center;
	}
	
	.custom-shape-divider-bottom-1675545512 svg 
	{
		height: 100px;
	}
	
	.imagen_principal
	{
		padding-bottom: 150px;
	}
	
	.margen_nosotros_index
	{
		margin-top: 50px;
	}

}

