@font-face {
    font-family: "Overused";
     src: 
      url("OverusedGrotesk-VF.woff2") format("woff2 supports variations"),
      url("OverusedGrotesk-VF.woff2") format("woff2-variations");
    font-weight: 400 600 800;
    font-style: normal;
    font-display: swap;
  }

/* CSS Reset -------------------------------------------------------*/
*:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)) {
    all: unset;
    display: revert;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

a,
button {
    cursor: revert;
}

ol,
ul,
menu {
    list-style: none;
}

img {
    max-inline-size: 100%;
    max-block-size: 100%;
}

table {
    border-collapse: collapse;
}

input,
textarea {
    -webkit-user-select: auto;
}

textarea {
    white-space: revert;
}

meter {
    -webkit-appearance: revert;
    appearance: revert;
}

pre {
    all: revert;
}

::placeholder {
    color: unset;
}

::marker {
    content: "";
}

:where([hidden]) {
    display: none;
}

:where([contenteditable]:not([contenteditable="false"])) {
    -moz-user-modify: read-write;
    -webkit-user-modify: read-write;
    overflow-wrap: break-word;
    -webkit-line-break: after-white-space;
    -webkit-user-select: auto;
}

:where([draggable="true"]) {
    -webkit-user-drag: element;
}

:where(dialog:modal) {
    all: revert;
}

*::selection {
    background: #FAC000;
    color: #000;
}

*::-moz-selection {
    background: #FAC000;
    color: #000;
}

*::-webkit-selection {
    background: #FAC000;
    color: #000;
}

/* CSS Variables -------------------------------------------------------*/
:root {
    --padding-6: 0.375rem;
    --padding-10: 0.6rem;
    --padding-20: 1.2rem;
    --padding-30: 1.8rem;
    --padding-40: 2.4rem;
    --padding-60: 3.75rem;
}

/* CSS General ----------------------------------------------------------*/
html {
    height: 100%;
    height: 100vh;
    width: 100%;
    font-size: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    height: 100%;
    height: 100vh;
    width: 100%;
    font-family: 'Overused', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.5;
    height: 100%;
    background:#fff;
    background-color: #fff;
}

body.scrolling {
    overflow-y: hidden;
}

h1,
h2,
h3,
h4 {
    line-height: 1.2;
    margin-bottom: 0.4rem;
}

h1 {
    font-size: 2.7rem;
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.07rem;
}

h2 {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.05rem;
}

h3 {
    font-size: 1.6rem;
    font-weight: 900;
    line-height: 1.1;    
    letter-spacing: -0.04rem;
}

h4 {
    font-size: 1.4rem;
    font-weight: 900;
    line-height: 1.1;       
    letter-spacing: -0.02rem;
}

a,
button,
input {
    margin-bottom: 0;
}

a {
    color:#0000DB;
    text-decoration: underline;
    transition: color 0.2s ease-in-out;
}

a:hover {
    color: #354CC0;
}

p {
    font-size: 1.2rem;
    line-height: 1.4;
    font-weight: 400;
    color: #000;
}

/* CSS header ------------------------------------------------------------*/
.header {
    position: fixed;
    width: 100%;
    left: 0;
    right: 0;
    top: 0;
    height: auto;
    margin: 0 auto;
    border: none;
    outline: none;
    padding: var(--padding-20) var(--padding-30);
    z-index: 2;
    background-color: #fff;
    /* box-shadow: 0 6px 6px #fff; */
}

.header .wrapper {
    max-width: 1560px;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin: 0 auto;
    padding: 0;
    height: auto;
}

.logo {
    display: block;
    border: none;
    outline: none;
    background: none;
    height: 30px;
    width: 193px;
}

.logo img {
    height: 100%;
    width: 100%;
}

.header .navbar {
    max-width: 100%;
    height: auto;
    margin: 0;
    border: 0;
    z-index: 3;
}

.header .menu>.menu-item {
    position: relative;
    display: inline-block;
    margin: 0;
}

.header .menu>.menu-item>a {
    display: block;
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1.2;
    padding: 0 0 0 var(--padding-20);
    text-decoration: none;
    outline: none;
    color: #000;
    text-transform: capitalize;
    text-rendering: optimizeLegibility;
    transition: opacity 0.2s ease-in-out;
}

.header .menu>.menu-item:hover>a,
.header .menu>.menu-item .item-active:hover {
    opacity: 0.6;
}

.header .menu>.menu-item .item-active {
    opacity: 0.6;
    text-decoration: underline;
}

.header .opened-menu,
.header .closed-menu {
    display: none;
    height: 100%;
    cursor: pointer;
    margin: 0;
    border: none;
    outline: none;
    opacity: 1;
    transition: opacity 0.2s ease-in-out;
    width: 30px;
    height: 30px;
}

.header button:hover.opened-menu,
.header button:hover.closed-menu {
    opacity: 0.4;
}

.header .overlay {
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: 4;
    opacity: 0;
    visibility: hidden;
    background: rgba(0, 0, 0, 0.8);
}

/* CSS header breakpoints --------------------------------------------------------*/
@media only screen and (max-width: 768px) {
    .header .navbar {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100%;
        padding: 0;
        opacity: 0;
        overflow-y: auto;
        margin: 0;
        visibility: hidden;
        background-color: #fff;
    }

    .header .navbar.active {
        right: 0;
        opacity: 1;
        visibility: visible;
        background-color: #354CC0;
    }

    .header .navbar.active button:hover.closed-menu:hover {
        opacity: 0.6;
    }

    .header .navbar::-webkit-scrollbar {
        width: 0.6rem;
        background: #f2f2f2;
    }

    .header .navbar::-webkit-scrollbar-thumb {
        background: #adadad;
        border-radius: 0;
    }

    .header .menu {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        width: 100%;
        height: 99%;
    }

    .header .menu>.menu-item {
        display: block;
        margin: 0;
        border: none;
    }

    .header .menu>.menu-item>a {
        font-size: 2.2rem;
        font-weight: 400;
        padding: 0.5rem;
        padding-left: 2rem;
        color: #fff;
        border: none;
    }

    .header .menu>.menu-item:hover>a {
        border: 0;
    }

    .header .opened-menu {
        display: flex;
        opacity: 1;
        height: 100%;
        visibility: visible;
        margin: 0;
        border: 0;
        padding: 0;
    }

    .header .closed-menu {
        position: absolute;
        display: block;
        top: var(--padding-20);
        right: var(--padding-30);
    }

    .header .overlay.active {
        display: block;
        opacity: 1;
        visibility: visible;
        z-index: 3;
    }
}

/* CSS main ---------------------------------------------------------------*/
.main-container {
    width: 100%;
    position: relative;
    height: auto;
    margin: 0 auto;
    padding-top: 4.28rem;
}

/* CSS main cabecera  --------------------------------------------------------*/
.main-cabecera {
    position: relative;
    padding: 0 var(--padding-30);
    margin: 0 auto;
    background-color: #fff;
    margin-bottom: var(--padding-60);
}

.main-cabecera-wrapper {
    max-width: 1560px;
    height: auto;
    margin: 0 auto;
    padding: 0;
    display: flex;  
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
    gap: var(--padding-40);
}

.main-cabecera-text {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    flex-grow: 1;
    flex-basis: 56%;
}

.cabecera-text-header {
    justify-self: flex-start;
}

.cabecera-text-header h1 {
    margin-bottom: var(--padding-20);
    text-wrap: balance;
}

.cabecera-text-header p {
    justify-self: flex-start;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: -0.03rem;
    color: #4D5B5B;
    font-weight: 600;
    margin-bottom: var(--padding-10);
}

.cabecera-text-para p {
    margin-bottom: var(--padding-10);
}

.cabecera-text-para p:last-child {
    margin-bottom: 0;
}

.main-cabecera-img {
    height: auto;
    width: auto;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: flex-end;
    border-radius: var(--padding-10);
    flex-grow: 0;
    flex-basis: 44%;
    margin-top: var(--padding-30);
}

.main-cabecera-img img {
    max-height: 360px;
}

/* CSS main cabecera breakpoints  --------------------------------------------------------*/
@media only screen and (max-width: 1500px) {
    .main-cabecera-text {
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: flex-start;
        flex-grow: 1;
        flex-basis: 70%;
    }

    .main-cabecera-img {
        background-color: #F5F6F6;
        flex-basis: 50%;
        width: 100%;
        align-items: center;
        justify-content: center;
    }

}

@media only screen and (max-width: 768px) {
    .main-cabecera-wrapper { 
        flex-direction: column;
    }

    .main-cabecera-img {
        flex-basis: 100%;
        margin-top: 0;
    }

    .main-cabecera-img img {
        max-height: 280px;
    }

}

/* CSS panel servicios  --------------------------------------------------------*/
.panel-servicios {
    position: relative;
    padding: 0 var(--padding-30);
    margin: 0 auto;
    margin-bottom: var(--padding-60);
}

.panel-servicios p {
    margin-bottom: var(--padding-20);
}

.panel-servicios p:last-child {
    margin-bottom: 0;
}

.panel-servicios-wrapper {
    max-width: 1560px;
    height: auto;
    margin: 0 auto;
    padding: 0;
    display: flex;  
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
    gap: var(--padding-6);
}

.panel-servicios-wrapper img {
    width: 70px;
    height: auto;
}

.panel-servicios-wrapper a {
    text-decoration: none;
    flex-basis: 20%;
    padding: var(--padding-20);
    border-radius: var(--padding-10);
    transition: background-color 0.2s ease-in-out;
}

.panel-servicios-wrapper a:hover {
    text-decoration: none;
    cursor: pointer;
}

.panel-servicios-wrapper p {
    line-height: 1.1;
    font-size: 1rem;
}

.panel-servicios-wrapper .panel-title {
    line-height: 1.1;
    font-size: 1.15rem;
    font-weight: 900;
    margin-bottom: 0.2rem;
}

.panel-servicios-mantenimiento {
    background-color: #FFE07A;
}
.panel-servicios-mantenimiento:hover {
    background-color: #FFDC64;
}

.panel-servicios-redes {
    background-color: #DDD3F1;
}

.panel-servicios-redes:hover {
    background-color: #DACFEF;
}

.panel-servicios-ciberseguridad {
    background-color: #D4EA9A;   
}

.panel-servicios-ciberseguridad:hover {
    background-color: #CDE789;   
}

.panel-servicios-soporte {
    background-color: #BECFF4;
}
.panel-servicios-soporte:hover {
    background-color: #BACCF1;
}

.panel-servicios-formacion {
    background-color: #FFCFBF;
}

.panel-servicios-formacion:hover {
    background-color: #FFC8B5;
}

/* CSS panel servicios breakpoints  --------------------------------------------------------*/
@media only screen and (max-width: 1200px) {
    .panel-servicios-wrapper { 
        flex-wrap: wrap;
    }

    .panel-servicios-wrapper a { 
        flex-grow: 1;
        flex-basis: 32%;
    }

    .panel-servicios-wrapper img {
        width: 65px;
    }

}

@media only screen and (max-width: 768px) {
    .panel-servicios-wrapper a { 
        flex-grow: 1;
        flex-basis: 48%;
    }

    .panel-servicios-wrapper img {
        width: 60px;
    }

}

@media only screen and (max-width: 520px) {
    .panel-servicios-wrapper { 
        flex-direction: column;
    }

    .panel-servicios-wrapper a { 
        flex-grow: 1;
        flex-basis: 100%;
    }

    .panel-servicios-wrapper img {
        width: 50px;
    }

}

/* CSS panel secundario  --------------------------------------------------------*/
.panel-secundario {
    position: relative;
    padding: 0 var(--padding-30);
    margin: 0 auto;
    margin-bottom: var(--padding-60);
}

.panel-secundario-wrapper {
    max-width: 1560px;
    height: auto;
    margin: 0 auto;
    padding: 0;
    display: flex;  
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
    gap: var(--padding-30);
}

.panel-secundario-accion {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    flex-basis: 43%;
}

.panel-secundario-accion p {
    line-height: 1.2;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.03rem;
    margin-bottom: var(--padding-20);
}

.panel-secundario-accion span {
    font-weight: 900;
}

.panel-secundario-servicio {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    flex-basis: 19%;
}

.panel-secundario-servicio p {
    line-height: 1.1;
    font-size: 1.15rem;
    font-weight: 900;
    letter-spacing: -0.02rem;
    margin-top: var(--padding-10);
    text-wrap: balance;
}

.panel-secundario-servicio img {
    width: 64px;
    height: auto;
}


/* CSS panel servicios breakpoints  --------------------------------------------------------*/
@media only screen and (max-width: 1200px) {
    .panel-secundario-accion {
        flex-basis: 46%;
    }

    .panel-secundario-servicio {
        flex-basis: 18%;
    }

}

@media only screen and (max-width: 960px) {
    .panel-secundario-wrapper { 
       flex-wrap: wrap;
    }

    .panel-secundario-accion {
        flex-basis: 100%;
    }

    .panel-secundario-servicio {
        flex-basis: 28%;
        align-items: center;
    }

    .panel-secundario-servicio p {
        text-align: center;
    }

}

@media only screen and (max-width: 650px) {
    .panel-secundario-servicio {
        flex-basis: 30%;
    }

}

@media only screen and (max-width: 520px) {
    .panel-secundario-wrapper { 
        flex-direction: column;
    }

    .panel-secundario-servicio p {
        max-width: 200px;
    }

}

/* CSS panel accion  --------------------------------------------------------*/
.panel-accion {
    padding: var(--padding-60) var(--padding-30);
    margin: 0;
    background-color: #BECFF4;
    width: 100%;
    height: auto;
}

.panel-accion-wrapper {
    max-width: 1560px;
    height: auto;
    margin: 0 auto;
    padding: 0;
    display: flex;  
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: var(--padding-40);
}

.panel-accion-wrapper p {
    line-height: 1.2;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.03rem;
}

.panel-accion-wrapper p span {
    font-weight: 900;
}

.panel-accion-wrapper .btn-main {
    flex-basis: 180px;
}

/* CSS panel accion breakpoints  --------------------------------------------------------*/
@media only screen and (max-width: 720px) {
    .panel-accion-wrapper {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: var(--padding-20);
    }

    .panel-accion-wrapper .btn-main {
        flex-basis: auto;
    }

}

/* CSS inicio contenido  --------------------------------------------------------*/
.inicio-contenido {
    position: relative;
    padding: var(--padding-60) var(--padding-30);
    margin: 0 auto;
    background-color: #fff;
    margin-bottom: var(--padding-60);
    background-color: #DDE1E1;
}

.inicio-contenido p {
    margin-bottom: var(--padding-10);
}

.inicio-contenido p:last-child {
    margin-bottom: 0;
}

.inicio-contenido-wrapper {
    max-width: 1560px;
    height: auto;
    margin: 0 auto;
    padding: 0;
    display: flex;  
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
    gap: var(--padding-40);
}

.inicio-contenido-text {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    flex-basis: 50%;
    flex-grow: 0;
}

.inicio-text-header h2 {
    max-width: 720px;
    text-wrap: balance;
    margin-bottom: var(--padding-20);
}

.inicio-text-para p {
    max-width: 720px;
}

.inicio-contenido-img {
    height: auto;
    width: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-self: flex-start;
    flex-grow: 1;
}

.inicio-contenido-img img {
    max-height: 360px;
    border-radius: var(--padding-10);
    object-fit: cover;
    background-color: #D3D9D9;
}

.inicio-contenido-info {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    flex-basis: 25%;
}

.inicio-info-para p {
    font-size: 1.1rem;
    line-height: 1.3;
}

.inicio-info-para p:last-child {
    margin-bottom: var(--padding-20);
}

.inicio-info-accion {
    width: 100%;
}

.inicio-info-accion p {
    font-size: 1.3rem;
    line-height: 1.2;
    letter-spacing: -0.03rem;
    font-weight: 600;
    margin-bottom: var(--padding-20);
}

.inicio-info-accion span {
    font-weight: 900;
}

.inicio-info-accion .btn-main {
    justify-self: flex-start;
}

/* CSS inicio contenido breakpoints  --------------------------------------------------------*/
@media only screen and (max-width: 1100px) {
    .inicio-contenido-wrapper { 
        flex-wrap: wrap;
    }

    .inicio-contenido-text {
        flex-basis: 100%;
    }

    .inicio-contenido-img {
        flex-grow: 1;
        flex-basis: 46%;
    }

    .inicio-contenido-img img {
        max-height: 290px;
    }

    .inicio-contenido-info {
        width: 100%;
        flex-grow: 0;
        flex-basis: 46%;
    }

}

@media only screen and (max-width: 560px) {
    .inicio-contenido-wrapper {
        flex-direction: column;
    }

    .inicio-contenido-img {
        flex-basis: 100%;
        width: 100%;
    }

    .inicio-contenido-img img {
        max-height: 240px;
    }

    .inicio-contenido-info {
        width: 100%;
        flex-basis: 100%
    }
    
}

/* CSS quienes contenido  --------------------------------------------------------*/
.quienes-contenido {
    position: relative;
    padding: var(--padding-60) var(--padding-30);
    margin: 0 auto;
    background-color: #fff;
    margin-bottom: var(--padding-60);
    background-color: #DDE1E1;
}

.quienes-contenido p {
    margin-bottom: var(--padding-10);
}

.quienes-contenido p:last-child {
    margin-bottom: 0;
}

.quienes-contenido-wrapper {
    max-width: 1560px;
    height: auto;
    margin: 0 auto;
    padding: 0;
    display: flex;  
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
    gap: var(--padding-60);
}

.quienes-contenido-text {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    flex-basis: 47%;
}

.quienes-text-header h2 {
    max-width: 720px;
    text-wrap: balance;
    margin-bottom: var(--padding-20);
}

.quienes-text-para p {
    max-width: 720px;
}

.quienes-text-para p span {
    font-weight: 900;
}

.quienes-contenido-info {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    flex-basis: 49%;
}

.quienes-info-img {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    height: auto;
    gap: var(--padding-6);
    margin-bottom: var(--padding-60);
}

.quienes-info-img img {
    border-radius: var(--padding-10);
    object-fit: cover;
    max-height: 180px;
    width: 100%;
    background-color: #D3D9D9;
}

.quienes-info-accion {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--padding-20);
    width: 100%;
    margin-top: var(--padding-60);
}

.quienes-info-accion p {
    font-size: 1.3em;
    line-height: 1.2;
    letter-spacing: -0.03rem;
    font-weight: 600;
    margin-bottom: 0;
}

.quienes-info-accion span {
    font-weight: 900;
}

.quienes-info-accion .btn-main {
    justify-self: flex-start;
    flex-basis: 50%;
}

/* CSS quienes contenido breakpoints  --------------------------------------------------------*/
@media only screen and (max-width: 1200px) {
    .quienes-contenido-wrapper { 
        flex-wrap: wrap;
    }

    .quienes-contenido-text {
        flex-basis: 100%;
    }

    .quienes-text-header h2 {
        max-width: 100%;
    }

    .quienes-text-para p {
        max-width: 100%;
    }

    .quienes-contenido-info {
        flex-direction: row;
        flex-basis: 100%;
        gap: var(--padding-30);
        margin-top: 0;
    }

    .quienes-info-img {
        margin-bottom: 0;
        margin-top: 0;
    }

    .quienes-info-accion {
        flex-direction: column;
        justify-content: center;
        align-items: stretch;
        width: auto;
        height: 100%;
        flex-basis: 34%;
        margin-top:  0;
    }

    .quienes-info-accion .btn-main {
        flex-basis: auto;
    }
}

@media only screen and (max-width: 960px) {
    .quienes-info-img img {
        max-height: 160px;
    }
}

@media only screen and (max-width: 768px) {
    .quienes-contenido-info {
        flex-direction: column;
        margin: 0;
    }

    .quienes-info-img {
        margin: 0;
    }

    .quienes-info-accion {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        width: 100%;
        flex-basis: 100%;
        margin:  0;
    }

    .quienes-info-accion .btn-main {
        justify-self: flex-start;
    }
    
}

@media only screen and (max-width: 620px) {
    .quienes-info-img img {
        max-height: 140px;
    }
}

@media only screen and (max-width: 480px) {
    .quienes-info-img {
        flex-direction: column;
    }
}

@media only screen and (max-width: 360px) {
    .quienes-info-img img {
        max-height: 100px;
    }
}

/* CSS servicios contenido  --------------------------------------------------------*/
.servicios-contenido {
    padding: var(--padding-60) var(--padding-30);
    margin: 0;
    margin-bottom: var(--padding-60);
    background-color: #DDE1E1;
    width: 100%;
    height: auto;
}

.servicios-contenido p {
    margin-bottom: var(--padding-10);
}

.servicios-contenido p:last-child {
    margin-bottom: 0;
}

.servicios-contenido-wrapper {
    max-width: 1560px;
    height: auto;
    margin: 0 auto;
    padding: 0;
    display: flex;  
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
    gap: var(--padding-60);
}

.servicios-contenido-text {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    flex-basis: 40%;
    gap: var(--padding-30);
}

.servicios-text-header {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;
    height: auto;
    width: 100%;
}

.servicios-text-header .p-lead {
    font-size: 1.8rem;
    line-height: 1.1;
}

.servicios-text-header .p-lead:last-child {
    margin-bottom: 0;
}

.servicios-text-accion {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    gap: var(--padding-10);
    width: 100%;
}

.servicios-text-accion p {
    font-size: 1.3em;
    line-height: 1.2;
    letter-spacing: -0.03rem;
    font-weight: 600;
}

.servicios-text-accion p span {
    font-weight: 900;
}

.servicios-text-accion .btn-main {
    justify-self: flex-start;
}

.servicios-contenido-info {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    flex-basis: 60%;
    gap: var(--padding-6);
}

.servicios-info-item {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    gap: var(--padding-20);
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    background-color: #fff;
    border-radius: var(--padding-10);
    gap: var(--padding-10);
}

.servicios-info-img {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    height: 100%;
    width: 100%;
    flex-basis: 160px;
    margin-left: var(--padding-6);
}

.servicios-info-para {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    flex-basis: auto;
    height: 100%;
    width: 100%;
    padding: var(--padding-20);
    padding-left: 0;
}

.servicios-info-para h2 {
    font-size: 1.5rem;
    margin-bottom: var(--padding-10);
}

.servicios-info-para p {
    font-size: 1.1rem;
    line-height: 1.3;
}

/* CSS servicios contenido breakpoints  --------------------------------------------------------*/
@media only screen and (max-width: 1200px) {
    .servicios-contenido-wrapper {
        flex-direction: column;
    }

    .servicios-contenido-text {
        flex-direction: row;
        align-items: stretch;
        flex-basis: 100%;
        width: auto;
    }

    .servicios-text-header {
        margin-bottom: 0;
        justify-content: space-between;
        flex-basis: 50%;
    }

    .servicios-text-header .p-lead {
        text-wrap: balance;
    }

    .servicios-text-header .p-lead:last-child {
        margin-bottom: 0;
    }

    .servicios-text-accion {
        flex-basis: 50%;
    }

    .servicios-contenido-info {
        flex-basis: 100%;
    }

    .servicios-info-item {
        align-items: center;
    }

    .servicios-info-img {
        flex-basis: 140px;
    }

}

@media only screen and (max-width: 720px) {
    .servicios-contenido-text {
        flex-direction: column;
    }

    .servicios-text-header {
        flex-basis: 100%;
    }

    .servicios-text-accion {
        flex-basis: 100%;
        margin-top: var(--padding-10);
    }

    .servicios-info-img {
        flex-basis: 100px;
    }

    .servicios-info-para h2 {
        font-size: 1.4rem;
    }

}

@media only screen and (max-width: 480px) {
    .servicios-info-item {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: var(--padding-10);
        width: 100%;
        height: 100%;
        margin: 0;
        padding: var(--padding-20);
    }

    .servicios-info-img {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        height: 100%;
        width: 100%;
        flex-basis: 100%;
        margin: 0;
        padding: 0;
    }

    .servicios-info-img img {
        max-height: 80px;
    }

    .servicios-info-para {
        padding: 0;
        flex-basis: 100%;
    }

}

/* CSS cabecera contacto  --------------------------------------------------------*/
.cabecera-contacto {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: center;
    width: 100%;
    height: auto;
    gap: var(--padding-6);
    padding: 0;
    margin-top: var(--padding-30);
}

.cabecera-contacto-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
    height: auto;
    padding: 0;
    padding-left: var(--padding-10);
    border-left: 6px solid #DDE1E1;
}

.cabecera-contacto-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: var(--padding-10);
    margin-bottom: var(--padding-10);
    width: 100%;
    height: auto;
}

.cabecera-contacto-header img {
    max-height: 28px;
}

.cabecera-contacto-header p {
    font-size: 1.3rem;
    font-weight: 900;
    width: 100%;
    height: auto;
    letter-spacing: -0.03rem;
}

.cabecera-contacto-text {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: start;
    gap: var(--padding-6);
    width: 100%;
    height: auto;
}

.cabecera-contacto-text p {
    font-size: 1.1rem;
    line-height: 1.1;
}

.cabecera-contacto-text p span {
    font-weight: 600;
    font-size: 1.2rem
}

/* CSS cabecera contacto breakpoints  --------------------------------------------*/
@media only screen and (max-width: 1200px) {
    .cabecera-contacto {
        flex-direction: column;
        align-items: stretch;
        justify-content: center;
    }

    .cabecera-contacto-item {
        flex-direction: row;
        align-items: flex-end;
        justify-content: space-between;
        padding-left: 0;
        padding-bottom: var(--padding-6);
        border-left: 0;
        border-bottom: var(--padding-6) solid #DDE1E1;
        margin-bottom: var(--padding-20);
    }
    .cabecera-contacto-item:last-child {
        margin-bottom: 0;
    }

    .cabecera-contacto-header {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 0;
    }

    .cabecera-contacto-text {
        flex-direction: row;
        align-items: center;
        justify-content: flex-end;
    }

}

@media only screen and (max-width: 720px) {
    .cabecera-contacto-header img {
        max-height: 24px;
    }

}

@media only screen and (max-width: 360px) {
    .cabecera-contacto-item {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding-bottom: var(--padding-10);
        margin-bottom: var(--padding-20);
    }

    .cabecera-contacto-header {
        justify-content: flex-start;
        align-items: center;
        margin-bottom: var(--padding-10)
    }

    .cabecera-contacto-text {
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
    }

}


/* CSS contacto contenido  --------------------------------------------------------*/
.contacto-contenido {
    padding: var(--padding-60) var(--padding-30);
    margin: 0;
    margin-bottom: var(--padding-60);
    background-color: #DDE1E1;
    width: 100%;
    height: auto;
}

.contacto-contenido p {
    margin-bottom: var(--padding-10);
}

.contacto-contenido p:last-child {
    margin-bottom: 0;
}

.contacto-contenido-wrapper {
    max-width: 1560px;
    height: auto;
    margin: 0 auto;
    padding: 0;
    display: flex;  
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
    gap: var(--padding-60);
}

.contacto-contenido-form {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    flex-basis: 48%;
    gap: var(--padding-30);
}

.contacto-contenido-map {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;
    flex-basis: 48%;
    border-radius: var(--padding-10);
}

.contacto-form {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
    height: auto;
}

.contacto-form .btn-main {
    align-self: flex-end;
    width: 100%;
}

.contacto-form legend {
    font-size: 1.1rem;
    line-height: 1.3;
    font-weight: 600;
    margin-bottom: var(--padding-6);
}

.form-footer {
    display: flex;
    justify-content: flex-end;
    align-self: stretch;
    margin: 0;
    gap: var(--padding-10);
}

input.input-form {
    display: block;
    width: 100%;
    padding: 0;
    color: #000;
    margin: 0;
    margin-right: 0.0;
    text-align: center;
    text-decoration: none;
    background-color: #fff;
    border: 0;
    cursor: pointer;
    border-radius: var(--padding-10);
}

.form-input {
    font-size: 1.1rem;
    line-height: 1.2;
    border: 0;
    border-radius: var(--padding-10);
    border: 0;
    padding: var(--padding-10);
    width: 100%;
    height: auto;
    white-space: normal;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: #fff;
    outline: 0;
    box-shadow: 0;
    transition: background-color 0.2s ease-in-out;
    margin-bottom: var(--padding-10);
}

.form-input:hover,
.form-input:focus,
.form-input:active {
    background-color: #FFF4D5;
}

.form-input::-webkit-input-placeholder {
    color: #4D5B5B;
}

.form-input::-moz-placeholder {
    color: #4D5B5B;
}

.form-input:-ms-input-placeholder {
    color: #4D5B5B;
}

.form-input::placeholder {
    color: #4D5B5B;
}

.contacto-form abbr {
    color: #940000;
}

.contacto-form textarea {
    font-size: 1.1rem;
    line-height: 1.2;
    border: 0;
    border-radius: var(--padding-10);
    border: 0;
    padding: var(--padding-10);
    width: 100%;
    height: 100%;
    outline: 0;
    white-space: normal;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    box-shadow: 0;
    background-color: #fff;
    transition: background-color 0.2s ease-in-out;
    margin-bottom: var(--padding-20);
}

.contacto-form textarea:hover,
.contacto-form textarea:focus,
.contacto-form textarea:active {
    background-color: #FFF4D5;
}

.contacto-form textarea::-webkit-input-placeholder {
    color: #75808A;
    font-weight: normal;
}

.contacto-form textarea::-moz-placeholder {
    color: #75808A;
    font-weight: normal;
}

.contacto-form textarea:-ms-input-placeholder {
    color: #75808A;
    font-weight: normal;
}

.contacto-form textarea::placeholder {
    color: #75808A;
    font-weight: normal;
}

.map-container {
    overflow: hidden;
    position: relative;
    height: 100%;
    width: auto;
    border: 0;
    background-color: #D3D9D9;
    border-radius: var(--padding-10);
}

.map-container iframe {
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    position: absolute;
}

/* CSS contacto contenido breakpoints  --------------------------------------------------------*/
@media only screen and (max-width: 768px) {
    .contacto-contenido-wrapper {
        flex-direction: column;
    }

    .map-container iframe {
        height: 340px;
        width: 100%;
        position: relative;
    }
}

@media only screen and (max-width: 360px) {
    .map-container iframe {
        height: 280px;
    }
}

/* CSS footer  --------------------------------------------------------*/
.main-footer {
    position: relative;
    padding: 0 var(--padding-30);
    margin: 0 auto;
    margin-bottom: var(--padding-30);
    background-color: #354CC0;
}

.main-footer-wrapper {
    max-width: 1560px;
    height: auto;
    margin: 0 auto;
    padding: 0;
    display: flex;  
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;
    gap: var(--padding-30);
}

.main-footer-info {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: space-between;
    flex-basis: 100%;
    padding: var(--padding-60) 0;
    margin-bottom: var(--padding-30);
    gap: var(--padding-30);
}

.footer-text {
    font-size: 3rem;
    line-height: 0.85;
    font-weight: 600;
    color: #fff;
    letter-spacing: -0.1rem;
}

.footer-text::after {
    display: block;
    content: url("/img/footer-flecha.svg");
    margin-top: 0.7rem;
}

.footer-contacto {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-contacto p {
    display: inline-block;
    margin-left: 0.5rem;
    color: #fff;
}

.footer-direccion {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    font-size: 1.3rem;
    line-height: 1;
    margin-bottom: var(--padding-6);
}

.footer-tel,
.footer-email {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    flex-grow: 0;
    gap: 0;
}

.footer-links a {
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.04rem;
    color: #fff;
    opacity: 1;
    transition: opacity 0.2s ease-in-out;
}

.footer-links a:hover {
    opacity: 0.6;
}

.main-footer-credits {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: var(--padding-30) 0;
    gap: var(--padding-30);
}

.footer-legal {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: var(--padding-10);
}

.footer-legal a {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    opacity: 1;
    transition: opacity 0.2s ease-in-out;
}

.footer-legal a:hover {
    opacity: 0.6;
}

.footer-legal p {
    display: inline-block;
    font-size: 1.2rem;
    line-height: 1;
    font-weight: 600;
    color: #fff;
}

.footer-legal span {
    font-weight: 400;
}

.footer-idiomas {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: var(--padding-10);
}

.footer-idiomas .idiomas-active {
    border: 2px solid #fff;
}

.footer-idiomas .idiomas-active:hover {
    opacity: 1;
}

.footer-idiomas img {
    border-radius: var(--padding-10);
}

.footer-idiomas a {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    border-radius: var(--padding-10);
    border: 2px solid #25378f;
    opacity: 1;
    transition: opacity 0.2s ease-in-out;
}

.footer-idiomas a:hover {
    opacity: 0.6;
}

/* CSS footer breakpoints  --------------------------------------------------------*/
@media only screen and (max-width: 800px) {
    .main-footer-info { 
        flex-wrap: wrap;
        justify-content: space-around;
        padding: var(--padding-60) 0;
        padding-bottom: var(--padding-20);
        margin-bottom: 0;
    }

    .footer-text {
        flex-basis: 100%;
        margin-bottom: var(--padding-30);
    }

    .footer-contacto {
        flex-basis: auto;
        gap: var(--padding-10);
    }

    .footer-links {
        flex-direction: column;
        flex-basis: auto;
        padding-top: 0;
    }
}

@media only screen and (max-width: 520px) {
    .main-footer-info { 
       flex-direction: column;
        padding-bottom: var(--padding-20);
    }

    .footer-contacto {
        align-self: center;
        padding-right: var(--padding-40);
        margin-bottom: var(--padding-40);
    }

    .footer-links {
        align-self: center;
        gap: var(--padding-20);
        margin-bottom: var(--padding-20);
    }

    .main-footer-credits {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: var(--padding-60);
    }

    .footer-legal {
        width: 100%;
        order: 2;
        align-items: center;
        justify-content: flex-start;
        gap: var(--padding-20)
    }

    .footer-idiomas {
        order: 1;
        gap: var(--padding-20);
    }

}

@media only screen and (max-width: 360px) {
    .footer-contacto {
        align-self: flex-start;
        padding-right: 0;
        margin-bottom: var(--padding-40);
    }

    .footer-links {
        align-self: flex-start;
    }

    .footer-legal {
        flex-wrap: wrap;
        order: 2;
    }

    .footer-legal p {
        flex-basis: 100%;
        margin-top: var(--padding-20);
    }

}

/* CSS kit-logos -------------------------------------------------------------*/
.kit-logos {
    margin: 0;
    padding: 0 var(--padding-30);
    height: auto;
    width: 100%;
}

.kit-logos-wrapper {
    width: 100%;
    max-width: 1560px;
    height: auto;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--padding-20);
    padding-bottom: var(--padding-30);
}

.kit-logos-wrapper li {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-basis: 100%;
}

.kit-logos img {
    display: block;
    max-height: 60px;
    margin: 0;
}

/* CSS part-logos Breakpoints ---------------------------------------------------------*/
@media only screen and (max-width: 1000px) {
    .kit-logos-wrapper {
        flex-wrap: wrap;
        width: 100%;
        max-width: 1560px;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: var(--padding-20);
        padding-bottom: var(--padding-30);
    }

    .kit-logos-wrapper li {
        flex-basis: 31%;
    }

    .kit-logos img {
        max-height: 50px;
    }

}

@media only screen and (max-width: 600px) {
    .kit-logos-wrapper li {
        flex-basis: 48%;
    }

}

@media only screen and (max-width: 390px) {
    .kit-logos-wrapper li {
        flex-basis: 100%;
        justify-content: flex-start;
    }

}

/* CSS modaL  --------------------------------------------------------------*/
.micromodal a,
.micromodal h1,
.micromodal h2,
.micromodal h3,
.micromodal h4,
.micromodal h5,
.micromodal p,
.micromodal ul {
    margin-bottom: 1rem;
}

.micromodal {
    position: relative;
    display: none;
    z-index: 99;
}

.micromodal a.section-link {
    color: #2167A0;
    font-weight: normal;
    text-decoration: underline;
    transition: color 0.2s ease-in-out;
}

.micromodal a:hover.section-link {
    color: #67A2D3;
}

.micromodal.is-open {
    position: relative;
    display: block;
    z-index: 99;
}

.micromodal__overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0,0,0,0.8);
}

.micromodal__container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    box-sizing: border-box;
    overflow-y: auto;
    overflow-x: hidden;
    max-width: 960px;
    z-index: 9999999;
    max-height: 100%;
    margin: 0;
    padding: 0;
    background-color: #fff;
    border-radius: 0;
}

.micromodal__container::-webkit-scrollbar {
    width: var(--padding-10);
    border-radius: 0;
    background: #f2f2f2;
}

.micromodal__container::-webkit-scrollbar-thumb {
    background: #adadad;
    border-radius: 0;
}

.micromodal[aria-hidden="false"] .micromodal__overlay {
    animation: microModalFadeIn .2s cubic-bezier(0.0, 0.0, 0.2, 1);
}

.micromodal[aria-hidden="false"] .micromodal__container {
    animation: microModalSlideIn .2s cubic-bezier(0, 0, .2, 1);
}

button.modal-close {
    position: fixed;
    align-self: flex-end;
    width: 30px;
    height: 30px;
    padding: 0;
    margin: var(--padding-20);
    margin-right: var(--padding-20);
    line-height: 1;
    opacity: 1;
    background-color: #fff;
    transition: opacity 0.2s ease-in-out;
    border: 0;
    cursor: pointer;
}

button.modal-close img {
    width: 30px;
    height: 30px;
    margin-bottom: 0;
    padding: 0;
}
button.modal-close:hover {
    opacity: 0.4;
}

.modal-wrapper {
    padding: 0;
    margin: 0;
    height: 100%;
    width: 100%;
    border: 2rem #fff inset;
    border-top: 4rem #fff inset;
    border-style: solid;
}

.modal-footer {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
    padding: 0;
    margin: 0;
    margin-top: 2rem;
}

.modal-footer button,
.modal-footer a {
    margin-bottom: 0;
}

.modal-footer.right {
    justify-content: flex-end;
}

.modal-user-contact {
    width: 100%;
    padding: 0;
    margin: 0;
    margin-top: 1rem;
}

.modal-user-contact h5 {
    margin-bottom: 0;
}

.modal-user-contact a {
    display: inline-block
}

/* CSS buttons ----------------------------------------------------*/
button.btn-main,
a.btn-main,
button.btn-sec,
a.btn-sec {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: var(--padding-10) var(--padding-20) ;
    color: #000;
    width: auto;
    text-align: center;
    text-decoration: none;
    background: #fff;
    font-size: 1.25rem;
    line-height: 1;
    font-weight: 600;
    letter-spacing: -0.04rem;
    border: 0;
    cursor: pointer;
    box-shadow: none;
    border-radius: var(--padding-10);
    transition: background-color 0.2s ease-in-out;
}

button.btn-main:hover,
a.btn-main:hover {
    background-color: #FAC000;
    color: #000;
}

button.btn-sec,
a.btn-sec {
    color: #fff;
    background-color: #000;

}

button.btn-sec:hover,
a.btn-sec:hover {
    color: #000;
    background-color: #FAC000;;
}


/* CSS General Breakpoints ----------------------------------------------------*/
@media only screen and (max-width: 1200px) {
    html {
        font-size: 98%;
    }

    h1 {
        font-size: 2.6rem;
    }

    h2 {
        font-size: 1.9rem;
    }

    :root {
        --padding-6: 0.313rem;
        --padding-10: 0.57rem;
        --padding-20: 1.15rem;
        --padding-30: 1.7rem;
        --padding-40: 2.1rem;
        --padding-60: 3.125rem;
    }

    .main-container {
        padding-top: 4.24rem;
    }
}

@media only screen and (max-width: 960px) {
    html {
        font-size: 94%;
    }

    h1 {
        font-size: 2.4rem;
    }

    h2 {
        font-size: 1.9rem;
    }
    p {
        font-size: 1.125rem;
    }

    :root {
        --padding-6: 0.250rem;
        --padding-10: 0.55rem;
        --padding-20: 1.1rem;
        --padding-30: 1.6rem;
        --padding-40: 2.2rem;
        --padding-60: 2.8rem;    
    }

    .main-container {
        padding-top: 4.24rem;
    }
}

@media only screen and (max-width: 720px) {
    html {
        font-size: 92%;
    }

    h1 {
        font-size: 2.3rem;
    }

    h2 {
        font-size: 1.7rem;
    }

    :root {
        --padding-6: 0.188rem;
        --padding-10: 0.5rem;
        --padding-20: 1rem;
        --padding-30: 1.4rem;
        --padding-40: 2rem;
        --padding-60: 2.5rem;
    }
    
    .main-container {
        padding-top: 4.15rem;
    }
}

@media only screen and (max-width: 560px) {
    html {
        font-size: 88%;
    }

    h1 {
        font-size: 2.1rem;
    }

    h2 {
        font-size: 1.6rem;
    }
}  

@media only screen and (max-width: 360px) {
    html {
        font-size: 84%;
    }

    h1 {
        font-size: 2rem;
        line-height: 1.05;
    }

    h2 {
        font-size: 1.6rem;
        line-height: 1.15;
    }

    :root {
        --padding-6: 0.125rem;
        --padding-10: 0.4rem;
        --padding-20: 0.8rem;
        --padding-30: 1.2rem;
        --padding-40: 1.8rem;
    }
    
    .main-container {
        padding-top: 3.94rem;
    }
}   
 
