@charset "utf-8";
/* CSS Document */

@import url('https://fonts.googleapis.com/css2?family=PT+Sans:wght@400;700&family=Roboto:wght@100;300;400;700&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;400;500;700&display=swap');



body
{
    margin: 0px;
    padding: 0px;
    font-family: 'Roboto', sans-serif;
    font-weight: 100;
}

.Roboto
{
    font-family: 'Roboto', sans-serif;
}

.monse
{
	font-family: 'Montserrat', sans-serif;
}

.bannertitulo
{
	font-size: 100px;
}

.bannersubtitulo
{
	font-size: 50px;
}

.MargenTablet
{
	padding-left: 0px;
	padding-right: 0px;
}


.MargenParrafo
{
	padding: 40px;
}


.caracteristicascontenedor
{
	top: -110%;
	position: fixed;
	z-index: 1000;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	background: rgba(0,0,0,0.8);
	
	-webkit-transition:all 0.5s ease;
	-moz-transition:all 0.5s ease;
	-o-transition:all 0.5s ease;
}

.caracteristicascontenedor.toggle
{
	top:0;
	
	-webkit-transition:all 0.5s ease;
	-moz-transition:all 0.5s ease;
	-o-transition:all 0.5s ease;
}

.boton_negro
{
	padding: 10px; 
	padding-left: 15px; 
	padding-right: 15px; 
	background-color: #000; 
	color: #fff; 
	font-size: 18px; 
	margin-top: 20px; 
	font-weight: 300; 
	border-radius: 10px; 
	text-decoration: none;
}

.caracteristicas
{
	width: 80%;
	max-width: 600px;
	height: auto;
	max-height: 90%;
	background: rgba(250,226,0,1);
	z-index: 2;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	border-radius: 10px;
	
	-webkit-transition:all 0.5s ease;
	-moz-transition:all 0.5s ease;
	-o-transition:all 0.5s ease;
}


.raya_amarilla
{
	width: 50px;
	height: 3px;
	background-color: #f1cf00;
	border-radius: 10px;
}


.raya_verde
{
	width: 50px;
	height: 3px;
	background-color: #458650;
	border-radius: 10px;
}


.Sobreponer
{
	top: -50px;
}




.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: 10px !important;
}


.titulo
{
    font-family: 'PT Sans', sans-serif;
}

.espaciosubseccion
{
    padding-top: 100px;
    padding-bottom: 100px;
}

.central
{
    width: 100%;
    float: none;
    max-width: 1170px;
    margin: 0 auto;
    left: 0;
    right: 0;
}


.servicio
{
    display: flex; 
    align-items: center; 
    justify-content:center; 
    position: relative; 
    flex-direction: column;
    padding: 25px;
}



.boton_verde
{
    padding: 10px;
	padding-left: 15px;
	padding-right: 15px;
    font-size: 18px;
    font-weight: 300;
	margin: 0px;
    color: #FFFFFF;
    border-radius: 10px;
    text-decoration: none;
	background-color: #069750;
    
    -webkit-transition:all 0.5s ease;
	-moz-transition:all 0.5s ease;
	-o-transition:all 0.5s ease;
}

.boton_verde:hover
{
    color: #000;
	background-color: #f1cf00;
	
	-webkit-transition:all 0.5s ease;
	-moz-transition:all 0.5s ease;
	-o-transition:all 0.5s ease;
}




.boton_amarillo
{
    padding: 10px;
	padding-left: 15px;
	padding-right: 15px;
    font-size: 18px;
    font-weight: 300;
	margin: 0px;
    color: #000;
    border-radius: 10px;
    text-decoration: none;
	background-color: #fae200;
    
    -webkit-transition:all 0.5s ease;
	-moz-transition:all 0.5s ease;
	-o-transition:all 0.5s ease;
}

.boton_amarillo:hover
{
    color: #fff;
	background-color: #000;
	
	-webkit-transition:all 0.5s ease;
	-moz-transition:all 0.5s ease;
	-o-transition:all 0.5s ease;
}







.boton_azul
{
    padding: 10px;
    padding-left: 15px;
    padding-right: 15px;
    font-size: 14px;
    font-weight: 100;
    color: #FFFFFF;
    border-radius: 10px;
    text-decoration: none;
    background: rgba(0,157,224,1);
    background: -moz-linear-gradient(left, rgba(0,157,224,1) 0%, rgba(10,77,127,1) 100%);
    background: -webkit-gradient(left top, right top, color-stop(0%, rgba(0,157,224,1)), color-stop(100%, rgba(10,77,127,1)));
    background: -webkit-linear-gradient(left, rgba(0,157,224,1) 0%, rgba(10,77,127,1) 100%);
    background: -o-linear-gradient(left, rgba(0,157,224,1) 0%, rgba(10,77,127,1) 100%);
    background: -ms-linear-gradient(left, rgba(0,157,224,1) 0%, rgba(10,77,127,1) 100%);
    background: linear-gradient(to right, rgba(0,157,224,1) 0%, rgba(10,77,127,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#009de0', endColorstr='#0a4d7f', GradientType=1 );
    
    -webkit-transition:All 0.5s ease;
	-moz-transition:All 0.5s ease;
	-o-transition:All 0.5s ease;
}

.boton_azul:hover
{
    color: #000;
    background: rgba(255,255,255,1);
    background: -moz-linear-gradient(left, rgba(255,255,255,1) 0%, rgba(230,230,230,1) 100%);
    background: -webkit-gradient(left top, right top, color-stop(0%, rgba(255,255,255,1)), color-stop(100%, rgba(230,230,230,1)));
    background: -webkit-linear-gradient(left, rgba(255,255,255,1) 0%, rgba(230,230,230,1) 100%);
    background: -o-linear-gradient(left, rgba(255,255,255,1) 0%, rgba(230,230,230,1) 100%);
    background: -ms-linear-gradient(left, rgba(255,255,255,1) 0%, rgba(230,230,230,1) 100%);
    background: linear-gradient(to right, rgba(255,255,255,1) 0%, rgba(230,230,230,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#e6e6e6', GradientType=1 );
}


.boton_blanco
{
    padding: 10px;
    padding-left: 15px;
    padding-right: 15px;
    font-size: 14px;
    font-weight: 100;
    color: #FFFFFF;
    border-radius: 10px;
    border: 1px #fff solid;
    text-decoration: none;
    
    
    -webkit-transition:All 0.5s ease;
	-moz-transition:All 0.5s ease;
	-o-transition:All 0.5s ease;
}

.boton_blanco:hover
{
    border: 1px #fff solid;
    color: #000;
    background: rgba(255,255,255,1);
    background: -moz-linear-gradient(left, rgba(255,255,255,1) 0%, rgba(230,230,230,1) 100%);
    background: -webkit-gradient(left top, right top, color-stop(0%, rgba(255,255,255,1)), color-stop(100%, rgba(230,230,230,1)));
    background: -webkit-linear-gradient(left, rgba(255,255,255,1) 0%, rgba(230,230,230,1) 100%);
    background: -o-linear-gradient(left, rgba(255,255,255,1) 0%, rgba(230,230,230,1) 100%);
    background: -ms-linear-gradient(left, rgba(255,255,255,1) 0%, rgba(230,230,230,1) 100%);
    background: linear-gradient(to right, rgba(255,255,255,1) 0%, rgba(230,230,230,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#e6e6e6', GradientType=1 );
}


.degradado_azul
{
    background: rgba(0,157,224,1);
    background: -moz-linear-gradient(left, rgba(0,157,224,1) 0%, rgba(10,77,127,1) 100%);
    background: -webkit-gradient(left top, right top, color-stop(0%, rgba(0,157,224,1)), color-stop(100%, rgba(10,77,127,1)));
    background: -webkit-linear-gradient(left, rgba(0,157,224,1) 0%, rgba(10,77,127,1) 100%);
    background: -o-linear-gradient(left, rgba(0,157,224,1) 0%, rgba(10,77,127,1) 100%);
    background: -ms-linear-gradient(left, rgba(0,157,224,1) 0%, rgba(10,77,127,1) 100%);
    background: linear-gradient(to right, rgba(0,157,224,1) 0%, rgba(10,77,127,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#009de0', endColorstr='#0a4d7f', GradientType=1 );
}


.boton_menu
{
    font-size: 18px;
    font-weight: 400;
    color: #000;
    font-family: 'Montserrat', sans-serif;
	font-weight: 500;
    width: auto;
    height: 80px;
    float: right;
    padding-left: 30px;
    padding-right: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    
    -webkit-transition:All 0.5s ease;
	-moz-transition:All 0.5s ease;
	-o-transition:All 0.5s ease;
}

.boton_menu:hover
{
    color: #069750;
}




.galeria1
{
    width: 33.33%;
    height: auto;
    padding: 5px;
    box-sizing: border-box;
    position: relative;
}

.galeria2
{
    width: 66.66%;
    height: auto;
    padding: 5px;
    box-sizing: border-box;
    position: relative;
}



#menu
{
    width: 100%;
    max-width: 1170px;
    margin:0 auto;
    height: 100px;
    background-color: #fff;
	display: flex;
	align-items: center;
}


.sombra
{
    -webkit-box-shadow: 10px 10px 25px -13px rgba(0,0,0,0.31);
    -moz-box-shadow: 10px 10px 25px -13px rgba(0,0,0,0.31);
    box-shadow: 10px 10px 25px -13px rgba(0,0,0,0.31);
}

.textbox
{
	-webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
	
    width: 100%;
    padding: 10px;
    padding-left: 15px;
    padding-right: 15px;
    background-color: #f8f7f8;
	border: 0;
    border:1px #f8f7f8 solid;
    border-radius: 10px;
    font-size: 18px;
}

.textbox:focus
{
    outline: none;
    border: 1px #f8f7f8 solid;
}



.contenedor1
{
	float:left;
	width:100%;
	height:auto;
	box-sizing:border-box;
    overflow: hidden;
}
  
  
.contenedor2
{
	float:left;
	width:50%;
	height:auto;
	box-sizing:border-box;
    overflow: hidden;
}
  
  
.contenedor3
{
	float:left;
	width:33.3333%;
	height:auto;
	box-sizing:border-box;
    overflow: hidden;
}

.contenedor4
{
	float:left;
	width:25%;
	height:auto;
	box-sizing:border-box;
    overflow: hidden;
}


.Movil
{
    display: none;
}

.Pc
{
    display: block;
}

.Direccion
{
    flex-direction: row;
}

.Left30
{
    margin-left: 30px;
}

.Subtitulo
{
    font-family: 'PT Sans', sans-serif;
    font-size: 32px;
    font-weight: 700;
}

.galeria1
{
    width: 100%;
    margin-top: 15px;
}

.galeria2
{
    width: 100%;
    margin-top: 15px;
}

.Marcas
{
    margin-top: 0px;
}


@media only screen and (max-width:1180px)
{
	.MargenTablet
	{
		padding-left: 40px;
		padding-right: 40px;
	}
	
	.bannertitulo
	{
		font-size: 60px;
	}
	
	.bannersubtitulo
	{
		font-size: 30px;
	}
	
	.Sobreponer
	{
		top: -50px;
	}

    .contenedor2
    {
        float:left;
        width:50%;
        height:auto;
        box-sizing:border-box;
    }


    .contenedor3
    {
        float:left;
        width:50%;
        height:auto;
        box-sizing:border-box;
    }

    .contenedor4
    {
        float:left;
        width:50%;
        height:auto;
        box-sizing:border-box;
    }
	
	.MargenParrafo
	{
		padding: 40px;
	}
}



@media only screen and (max-width:1025px)
{
	.Sobreponer
	{
		top: -50px;
	}
}




@media only screen and (max-width:750px)
{
    .contenedor2
    {
        float:left;
        width:100%;
        height:auto;
        box-sizing:border-box;
        padding:10px;
    }


    .contenedor3
    {
        float:left;
        width:100%;
        height:auto;
        box-sizing:border-box;
        padding:10px;
    }

    .contenedor4
    {
        float:left;
        width:100%;
        height:auto;
        box-sizing:border-box;
        padding:10px;
    }
    
    .Movil
    {
        display: block;
    }
    
    .Pc
    {
        display: none;
    }
    
    .Direccion
    {
        flex-direction:column;
    }
    
    .espaciosubseccion
    {
        padding: 20px;
        padding-top: 50px;
        padding-bottom: 50px;
    }
    
    .Left30
    {
        margin-left: 0px;
    }
    
    .Subtitulo
    {
        font-size: 22px;
    }
    
    .galeria1
    {
        width: 100%;
        margin-top: 15px;
    }
    
    .galeria2
    {
        width: 100%;
        margin-top: 15px;
    }
    
    .Marcas
    {
        margin-top: 40px;
    }
	
	.bannertitulo
	{
		font-size: 36px;
	}
	
	.bannersubtitulo
	{
		font-size: 24px;
	}
	
	.MargenTablet
	{
		padding-left: 20px;
		padding-right: 20px;
	}
	
	.MargenParrafo
	{
		padding: 20px;
	}
}


@media only screen and (max-width:400px)
{
	.bannertitulo
	{
		font-size: 26px;
	}
	
	.MargenParrafo
	{
		padding: 20px;
	}
}