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

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

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

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


body
{
    margin: 0px;
    padding: 0px;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    background-color: #fff;
}

#logo
{
    width: 380px;
    height: auto;
}


.boton_buscador
{
    width: 120px; 
    height: 80px; 
    background-color: #fff; 
    color: #000; 
    text-decoration: none; 
    position: absolute; 
    left: 0px; 
    top: -80px; 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    z-index: 4;
}


.boton_buscador_seleccionado
{ 
    background-color: #e4332d; 
    color: #fff;
}



.Columnas2y1
{
	display:grid; 
	grid-template-columns: 70% 25%;
	box-sizing: border-box;
    justify-content: space-between;
}


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

.bannertitulo
{
	font-size: 80px;
    line-height: 75px;
}

.bannersubtitulo
{
	font-size: 22px;
    line-height: 30px;
}

.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_gris
{
	width: 50px;
	height: 6px;
	background-color: #dbdbdb;
	border-radius: 10px;
}


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


.raya
{
	width: 50px;
	height: 8px;
    margin-top: 15px;
	background-color: #ff0b2d;
	border-radius: 10px;
}

.raya2
{
	width: 50px;
	height: 8px;
    margin-top: 15px;
	background-color: #001f91;
	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;
}


.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_rojo_blanco
{
    padding: 15px;
    padding-left: 25px;
    padding-right: 25px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    color: #fff;
    border-radius: 10px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    letter-spacing: -0.5px;
    line-height: 16px;
    
    background-color: #e4332d;
    border: 1px solid #e4332d;
    
    -webkit-transition:all 0.5s ease;
	-moz-transition:all 0.5s ease;
	-o-transition:all 0.5s ease;
}

.boton_rojo_blanco:hover
{
    cursor: pointer;
    color: #fff;
	
	background-color:  transparent;
	border: 1px solid #fff;
          
    -webkit-transition:all 0.2s ease;
	-moz-transition:all 0.2s ease;
	-o-transition:all 0.2s ease;
}



.boton_rojo
{
    padding: 15px;
    padding-left: 25px;
    padding-right: 25px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    color: #fff;
    border-radius: 10px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    letter-spacing: -0.5px;
    line-height: 16px;
    
    background-color: #e4332d;
    border: 1px solid #e4332d;
    
    -webkit-transition:all 0.5s ease;
	-moz-transition:all 0.5s ease;
	-o-transition:all 0.5s ease;
}

.boton_rojo:hover
{
    cursor: pointer;
    color: #fff;
	
	background-color:  #000;
	border: 1px solid #000;
          
    -webkit-transition:all 0.2s ease;
	-moz-transition:all 0.2s ease;
	-o-transition:all 0.2s ease;
}









.boton_amarillo
{
    padding: 15px;
    padding-left: 25px;
    padding-right: 25px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    color: #000;
    border-radius: 0px 25px 25px 25px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    letter-spacing: -0.5px;
    line-height: 16px;
    
    background-color: #ffda00;
    
    -webkit-transition:all 0.5s ease;
	-moz-transition:all 0.5s ease;
	-o-transition:all 0.5s ease;
}

.boton_amarillo:hover
{
    cursor: pointer;
    color: #000;
    
    border-radius: 25px 25px 25px 0px;
          
    -webkit-transition:all 0.2s ease;
	-moz-transition:all 0.2s ease;
	-o-transition:all 0.2s ease;
}





.boton_azul
{
    padding: 15px;
    padding-left: 25px;
    padding-right: 25px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    color: #fff;
    border-radius: 25px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    letter-spacing: -0.5px;
    
    background-color: #001f91;
    
    -webkit-transition:all 0.5s ease;
	-moz-transition:all 0.5s ease;
	-o-transition:all 0.5s ease;
}

.boton_azul:hover
{
    cursor: pointer;
    -webkit-box-shadow: 5px 5px 22px -7px rgba(0,0,0,0.4); 
    box-shadow: 5px 5px 22px -7px rgba(0,0,0,0.4);
    
    -webkit-transform: translateY(-0.30em);
    transform: translateY(-0.30em);
      
    -webkit-transition:all 0.2s ease;
	-moz-transition:all 0.2s ease;
	-o-transition:all 0.2s ease;
}


.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: #fff;
    font-weight: 700;
    letter-spacing: -0.5px;
    width: auto;
    height: 40px;
    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:#e4332d;
    padding-bottom: 10px;
    
    -webkit-transition:All 0.5s ease;
	-moz-transition:All 0.5s ease;
	-o-transition:All 0.5s ease;
}




.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;
}




select
{
	border: none;
    background-image: none;
    background-color: transparent;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    background-color: #ffffff;
    font-size: 14px;
    color: #000000;
    padding: 16px;
    padding-left: 10px;
    padding-right: 10px;
    border-radius: 6px;
    border: 1px solid #ffffff;
    box-sizing: border-box;
    font-family: 'Open Sans', sans-serif;
	background: #ffffff url(../images/chevron.svg);
	background-position:98% center;
    background-repeat: no-repeat;
	background-size: 12px;
	width: 100%;
	
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
}
select:hover
{
	border: 1px solid #e4332d;
}
select:focus
{
  outline: 2px solid #e4332d;
  border: 1px solid #e4332d;
}

select > option
{
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	padding: 50px;
	font-weight: 700;
}

select:before {
   font-weight: 600;
   padding-right: 5px;
}





#menu
{
    width: 100%;
    max-width: 1170px;
    margin:0 auto;
    height: 100px;
    background-color: #1b1b1b;
	display: flex;
	align-items: center;display: flex;
	justify-content: space-between;
}


.sombra
{
    box-shadow: -2px 3px 35px 1px rgba(0,0,0,0.2);
    -webkit-box-shadow: -2px 3px 35px 1px rgba(0,0,0,0.2);
    -moz-box-shadow: -2px 3px 35px 1px rgba(0,0,0,0.2);
}

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

.textbox:focus
{
    outline: none;
    border: 1px #ff0b2d 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: flex;
}

.Direccion
{
    flex-direction: row;
}

.Left30
{
    margin-left: 30px;
}

.Subtitulo
{
    font-size: 32px;
    font-weight: 700;
}

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

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

.Marcas
{
    margin-top: 0px;
}


.edificio_categorias
{
    position: absolute; 
    left: -50px; 
    transform: rotate(45deg); 
    top: 100px;
    width: 200px;
}

#MenuPc
{
    display: flex;
}

#MenuMovil
{
    display: none;
}


.contenedor_formulario
{
    width: 100%; 
    height: 1000px; 
    box-sizing: border-box; 
    position: relative;
}

.contenedor_formulario_2
{
    position: absolute; 
    top:250px; 
    right: 0px; 
    z-index: 5; 
    overflow: visible;
    width: 50%;
}


.edificio_formulario
{
    display: flex;
}

.formulario
{
    width: 100%; 
    max-width: 400px; 
    box-sizing: border-box; 
    background-color: #fff; 
    border-radius: 10px; 
    padding: 30px; 
    margin-top: 30px; 
    font-size: 12px; 
    display: flex; 
    flex-direction: column; 
    position: relative;
}


.banner_formulario
{
    display: none;
}



@media only screen and (max-width:1180px)
{
	.MargenTablet
	{
		padding-left: 40px;
		padding-right: 40px;
	}
	
    .bannertitulo
    {
        font-size: 60px;
        line-height: 55px;
    }

    .bannersubtitulo
    {
        font-size: 18px;
        line-height: 24px;
    }
	
	.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;
	}
    
    .edificio_categorias
    { 
        left: -50px;
        /*transform: rotate(25deg);*/
        width: 150px;
    }
}



@media only screen and (max-width:1025px)
{
	.Sobreponer
	{
		top: -50px;
	}
    
    .edificio_categorias
    { 
        left: -30px;
        transform: rotate(15deg);
        width: 130px;
        top: 130px;
    }
    
    #MenuPc
    {
        display: none;
    }

    #MenuMovil
    {
        display: flex;
    }
}


@media only screen and (max-width:870px)
{
	#logo
    {
        width: 280px;
        height: auto;
    }
    
    .edificio_categorias
    { 
        left: -50px;
        transform: rotate(15deg);
        width: 100px;
        top: 130px;
    }
    
    .contenedor_formulario
    {
        height: auto;
    }
    
    .edificio_formulario
    {
        display: none;
    }
    
    .contenedor_formulario_2
    {
        position: relative; 
        top:0px; 
        right: 0px; 
        z-index: 1; 
        overflow: visible;
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding-bottom: 40px;
    }
    
    .formulario
    {
        width: 100%; 
        max-width: 80%;
        padding: 30px; 
        margin-top: 30px;
    }
    
    .banner_formulario
    {
        display: flex;
    }
}





@media only screen and (max-width:750px)
{
	.Columnas2y1
	{
		grid-template-columns: 100%;
	}


    .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: flex;
    }
    
    .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;
	}
}