@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=Great+Vibes&display=swap');



@font-face
{
  font-family: "codeproregular";
  src: url("fonts/codepro/codepro.otf");
}

@font-face
{
  font-family: "codeprobold";
  src: url("fonts/codepro/codeprobold.otf");
}

@font-face
{
  font-family: "codeproregulardelgada";
  src: url("fonts/codepro/codeprodelgada.otf");
}

.codeproregular
{
    font-family: "codeproregular";
}

.codeprobold
{
  font-family: "codeprobold";
}

.codeprodelgada
{
    font-family: "codeproregulardelgada";
}





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

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


.greatvibes
{
	font-family: 'Great Vibes', cursive;
}



.Margen60pc
{
    padding-left: 60px;
}

.Margen60derechapc
{
    padding-right: 60px;
}


.ColumnaRever
{
     flex-direction:row;
}



.bannertitulo
{
	font-size: 36px;
}

.bannersubtitulo
{
	font-size: 18px;
}



.TopPc
{
    margin-top: 150px;
}


.TopMovil
{
    margin-top: 0px;
}



.BottomMaiz
{
    padding-bottom: 300px;
}



.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(255,255,255,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(254,254,254,1);
	z-index: 2;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
    border: 1px solid #dbdbdb;
	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: #67a250;
	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: 15px;
	padding-left: 20px;
	padding-right: 20px;
    font-size: 18px;
    line-height: 18px;
    font-weight: 300;
	margin: 0px;
    color: #FFFFFF;
    border-radius: 25px;
    text-decoration: none;
	background-color: #67a250;
    border: 1px solid #67a250;
    
    -webkit-transition:all 0.5s ease;
	-moz-transition:all 0.5s ease;
	-o-transition:all 0.5s ease;
}

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




.boton_gris_linea
{
    padding: 15px;
	padding-left: 20px;
	padding-right: 20px;
    font-size: 18px;
    line-height: 18px;
    font-weight: 300;
	margin: 0px;
    color: #4a4a4a;
    border-radius: 25px;
    text-decoration: none;
	background-color: #fff;
    border: 1px solid #4a4a4a;
    
    -webkit-transition:all 0.5s ease;
	-moz-transition:all 0.5s ease;
	-o-transition:all 0.5s ease;
}

.boton_gris_linea:hover
{
	background-color: #4a4a4a;
    color: #fff;
	
	-webkit-transition:all 0.5s ease;
	-moz-transition:all 0.5s ease;
	-o-transition:all 0.5s ease;
}




.boton_verde_linea
{
    padding: 5px;
	padding-left: 15px;
	padding-right: 15px;
    font-size: 14px;
    line-height: 18px;
    font-weight: 300;
	margin: 0px;
    color: #67a250;
    border-radius: 25px;
    text-decoration: none;
    border: 1px solid #67a250;
    
    -webkit-transition:all 0.5s ease;
	-moz-transition:all 0.5s ease;
	-o-transition:all 0.5s ease;
}

.boton_verde_linea:hover
{
	background-color: #67a250;
    color: #fff;
	
	-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;
    color: #000;
    font-family: 'Roboto', sans-serif;
	font-weight: 600;
    width: auto;
    height: 80px;
    float: right;
    padding-left: 30px;
    padding-right: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    letter-spacing: -0.5px;
    
    -webkit-transition:All 0.5s ease;
	-moz-transition:All 0.5s ease;
	-o-transition:All 0.5s ease;
}

.boton_menu:hover
{
    color: #67a250;
}




.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;
	display: flex;
	align-items: center;
    box-sizing: border-box;
}


.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;
	}
	
    .TopPc
    {
        margin-top: 0px;
    }
    
    
    .BottomMaiz
    {
        padding-bottom: 400px;
    }

    
	.bannertitulo
	{
		font-size: 30px;
	}
	
	.bannersubtitulo
	{
		font-size: 16px;
	}
	
	.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;
	}
    
    .TopPc
    {
        margin-top: 0px;
    }
}




@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: 14px;
	}
	
	.MargenTablet
	{
		padding-left: 20px;
		padding-right: 20px;
	}
	
	.MargenParrafo
	{
		padding: 20px;
	}
    
    .TopPc
    {
        margin-top: 0px;
    }
    
    .BottomMaiz
    {
        padding-bottom: 200px;
    }
    
    .Margen60pc
    {
        padding-left: 0px;
    }
    
    .TopMovil
    {
        margin-top: 40px;
    }
    
    .Margen60derechapc
    {
        padding-right: 0px;
    }
    
    .ColumnaRever
    {
         flex-direction: column-reverse;
    }
}


@media only screen and (max-width:400px)
{
	.bannertitulo
	{
		font-size: 26px;
	}
	
	.MargenParrafo
	{
		padding: 20px;
	}
    
    .Margen60pc
    {
        padding-left: 0px;
    }
    
    .Margen60derechapc
    {
        padding-right: 0px;
    }
    
    .ColumnaRever
    {
         flex-direction: column-reverse;
    }
}