*{
    box-sizing: border-box;
    margin: 0px;
    padding: 0px;
}

@font-face {
    font-family: 'Designer';
    src: url('../font/Designer.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

:root{
    --NARANJA: #FF5F00;
    --NARANJATRANS:rgba(255, 95, 0, 0.1);
    --AZUL: #002379;
    --Tiulos: 'Designer', sans-serif;
}

h1{
    font-family: var(--Tiulos);
    font-weight: 200;
}

h2{
    font-family: var(--Tiulos);
    font-weight: 100;
}

h3{
    font-family: var(--Tiulos);
    font-weight: 100;
}

p{
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
}

a{
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
}

body {
    font-size: 14px;
    line-height: 24px;
    color: #333;
    background-color: #ffffff;
}

.ancho {
    max-width: 1200px;
    margin: auto;
}

.margen{
    padding: 15px;
}

html{
    scroll-behavior: smooth;
}

.fila{
    display: flex;
    flex-direction: row;
    gap: 20px;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
}

/********* Header ***************/
.cabezera{
    background-color: white;
    width: 100%;
    position:fixed;
    z-index: 999;
    top: 0%;
    left: 0%;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

.cabezera figure{
    max-width: 200px;
}

.cabezera img{
    width: 100%;
    display: block;

}

.Menu ul{
    list-style: none;

}

.Menu ul a{
    display: inline-block;
    text-decoration: none;
    color: black;
    padding: 8px 16px;
    border-radius: 12px;
    transition: all 0.3s linear;
}

.Menu ul a:hover{
    color: var(--NARANJA);
    background-color: var(--NARANJATRANS)
    
}

.Menu_movil{
    display: none;
}

.Menu_movil_desplace{
    display: none;
}


/****************************************************/

/* -------BOTONES---------------------- */

.btnInicio{
    text-align: center;
    color: var(--AZUL);
    border-radius: 90px;
    transition: all 0.3s linear;

}

.btnInicio i{
    
    border-radius: 180px;
    padding: 10px;
    font-size: 36px;
}

.btnInicio:hover{
    background-color: var(--NARANJATRANS);
    color: var(--NARANJA);
}

.btnNaranja{
    text-decoration: none;
    display: inline-block;
    font-family: var(--Tiulos);
    font-size: 16px;
    border: 1px black solid;
    color: black;
    background-color: var(--NARANJA);
    padding: 10px 15px;
    border-radius: 10px;
    line-height: 15px;
    
}


/* -------FIN DE BOTONES--------------- */


/*------- GRID's -----------------------*/
.grid3{
    display: grid;
    grid-template: auto / repeat(3, 1fr);
    margin: 0px;
    padding: 0px;
    grid-column-gap: 20px;
    grid-row-gap: 40px;

}
/*------- FIN FR GRID's ----------------*/


.About{
    color: var(--AZUL);
    font-size: 18px;
    line-height: 24px;
    padding-top: 3%;
    padding-bottom: 3%;
}

.About h2{
    color: var(--NARANJA);

}

.AboutInfo{
    width: 100%;
}
.AboutInfo.fila{
    align-items: flex-start;
}
.AboutInfo h3{
    color: black;
    margin-bottom: 8px;
}

.AboutInfo i{
    background-color: var(--AZUL);
    color: var(--NARANJA);
    padding: 15px;
    font-size: 40px;
    border-radius: 90px;
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.borde{
    border: 1px red solid;
}

.AboutSec1{
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: flex-start;
    width: 49%;

}


/*------------- Pie de pagina -------------------*/

.Pie_Pagina{
    background-color: black;
    color: white;
    font-size: 18px;
}

.Pie_Pagina h3{
    font-size: 20px;
    margin-top: 20px;
}

.Pie_Pagina img{
    width: 100%;
    display: block;
}

.Pie_Pagina a{
    display: block;
    color: white;
    text-decoration: none;   
}

.Pie_Pagina a:hover{
    color: var(--NARANJA);  
}

.Pie_Pagina hr{
    margin-top: 20px;
    margin-bottom: 20px;
}

.Pie_Pagina_enlaces{
    display: flex;
    flex-direction: row;
    gap: 20px;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: flex-start;
    color: white;
}

.Pie_Pagina_enlaces_izquierdo{
    width: 69%;

}

.Pie_Pagina_enlaces_derecho{
    width: 29%;

}
.Pie_Pagina_enlaces_fila{
    display: flex;
    flex-direction: row;
    gap: 80px;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;

}
.Pie_Pagina_enlaces_columna{
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: flex-start;

}

.derechos{
    color: #707070;
}

.Pie_Pagina_enlaces_movil{
    display: none;
}

/* --------------------------------------------- */