header .logo img {
    max-width: 295px;
    width: 100%;
    height: 137px;
    object-fit: contain;
    display: block;
    margin: auto;
    padding: 1em 0;
}

header a {
    text-decoration: none;
    text-transform: uppercase;
}

header ul {
    display: flex;
    flex-flow: row;
    justify-content: space-evenly;
    align-items: center;
    padding: 1rem 15px;
    max-width: 1280px;
    margin: auto;
}

a.metrotenerife-logo img {
    max-height: 33px;
}

header ul, header ul li {
    list-style-type: none;
}

header ul li a:active,
header ul li a:focus,
header ul li a:hover,
header ul li a {
    color: var(--dark-blue);
}

header .utils-container {
    background-color: var(--dark-blue);
    color: var(--white);
}

header .utils-container a {
    color: var(--white);
}

header .utils-container .content-container {
    display: flex;
    flex-flow: row;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 15px;
}

section.language-switcher {
    display: flex;
    flex-flow: row;
    justify-content: center;
    gap: 2.2rem;
}

section.language-switcher a {
    color: var(--white);
    font-size: 12px;
    font-weight: 400;
}

section.language-switcher a.current-lang {
    color: var(--white);
    font-weight: 700;
}

section.header-banner.banner.bg-image {
    min-height: 800px;
    display: grid;
    place-content: center;
    place-items: center;
    gap: 8rem;
    padding: 0 15px;
    width: 100%;
}

section.header-banner .content-container {
    background-color: var(--transparent-dark-blue);
    padding: 2em;
    border-radius: 1.3em;
    max-width: 800px;
}

section.header-banner .content.text-center {
    display: grid;
    gap: 1rem;
}

section.header-banner.banner.bg-image .content-container p {
    font-size: 25px;
}

section.header-banner.banner.bg-image .content-container h1,
section.header-banner.banner.bg-image .content-container p {
    font-weight: 400;
}

section.header-banner.banner.bg-image .content-container h2 {
    font-weight: 100;
}

section.header-banner.banner.bg-image .content-container h2, 
section.header-banner.banner.bg-image .content-container h1 {
    font-size: 38px;
}

section.header-banner.banner.bg-image .content-container p,
section.header-banner.banner.bg-image .content-container h2,
section.header-banner.banner.bg-image .content-container h1 {
    color: var(--white);
    font-family: 'Roboto', sans-serif;
    margin: 0;
}

section.header-banner.banner.bg-image img.logo {
    max-width: 170px;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@media(max-width: 980px) {
    header ul {
        display: none;
    }

    #menu-toggle {
        display: flex;
        flex-flow: column;
        gap: 4px;
        position: absolute;
        right: 2em;
        top: 5em;
        z-index: 299;
    }

    .menu-bar {
        width: 30px;
        height: 3px;
        background: var(--black);
        transition: transform 0.3s ease, opacity 0.3s ease;
    }

    body.open #menu-toggle .menu-bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    body.open #menu-toggle .menu-bar:nth-child(2) {
        opacity: 0;
    }

    body.open #menu-toggle .menu-bar:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }

    html:has(body.open), body.open {
        overflow: hidden;
    }

    body.open header .main_menu > div {
        background-color: rgba(255, 255, 255, 0.95);
        height: 100vh;
        width: 100%;
        z-index: 2;
        position: absolute;
        top: 0;
        left: 0;
        display: grid;
        place-content: center;
        place-items: start center;
        padding-top: 0em;
    }

    body.open header .main_menu > div > ul {
        display: flex;
        position: absolute;
        flex-flow: column;
        gap: 2em;
        padding-top: 13em;
    }

    body.open header .logo, body.open header .utils-container {
        z-index: 4;
        position: relative;
    }

}

@media(max-width: 680px) {
    section.header-banner.banner.bg-image {
        min-height: 500px;
        gap: 30px;
        padding: 30px 15px;
    }
}




@media(max-width: 555px) {
    header .utils-container .content-container {
        flex-flow: column;
        gap: .5rem;
        padding: 1.2rem 15px .5rem;
    }

    #menu-toggle {
        top: 7em;
    }

    body.open header .main_menu > div > ul {
        padding-top: 13em;
    }
}