div#contact-information {
    background-color: var(--footer-color);
    color: var(--white);
    display: grid;
    place-content: center;
    z-index: 9999;
    position: relative;
    min-height: 32px;
}

div#contact-information * {
    font-family: "Arial Rounded MT Bold";
}

div#contact-information a {
    text-decoration: none;
    color: var(--white);
}

div#contact-information a, div#contact-information p {
    margin: 0;
    font-size: 13px;
    font-weight: 700;
    text-align: center;
    text-wrap: balance;
}

div#contact-information img {
    height: 26px;
    width: 26px;
    display: block;
}

div#contact-information .content-container {
    width: 100%;
    display: flex;
    flex-flow: row;
    justify-content: center;
    gap: 10px;
}

div#contact-information .images {
    display: flex;
    flex-flow: row;
    justify-content: center;
    gap: 10px;
}

#contact-information .content {
    display: flex;
    align-items: center;
    justify-content: center;
}

#contact-information strong {
    padding: 0 5px;
    color: var(--orange);
}


div#identity-header {
    display: flex;
    flex-flow: row;
    justify-content: space-between;
    gap: 2rem;
    max-width: 1280px;
    width: 100%;
    margin: auto;
    align-items: center;
    padding: 1rem 15px;
}

header .logo {
    max-width: 200px;
    width: 100%;
    object-fit: contain;
    height: auto;
}

header section.main_menu {
    flex: 1;
}

header section.main_menu ul {
    display: grid;
    grid-template-columns: repeat(4, auto);
    place-content: end;
    place-items: end;
    gap: 2.5rem;
}

header section.main_menu ul li {
    border-left: 2px solid var(--orange);
}

header section.main_menu ul li a {
    color: var(--header-link);
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    padding: 0 15px 0 7px;
}

header .buttons {
    display: grid;
    grid-template-columns: repeat(2, 165px);
    gap: 2rem;
}

header .buttons p {
    margin: 0;
}

header .buttons a {
    color: var(--white);
    text-decoration: none;
    border-radius: 1rem;
    padding: 10px;
}

header .buttons a.whatsapp {
    background-color: var(--green);
    display: grid;
    place-content: center;
    place-items: center;
    gap: 10px;
    font-family: "Arial Rounded MT Bold";
}

header .buttons a.presupuesto {
    background-color: var(--orange);
    display: grid;
    place-content: center;
    text-align: center;
    place-items: center;
}

.presupuesto p {
    max-width: 80%;
    text-align: center;
    text-wrap: balance;
    font-weight: 700;
    font-size: 16px;
}


@media(max-width: 1150px) {

    div#identity-header {
        display: grid;
        grid-template-columns: 1fr;
        place-items: center;
        place-content: center;
        gap: 1rem;
        padding: 2em 15px 1em;
    }

    header section.main_menu {
        flex: 0;
    }

    header section.main_menu ul {
        display: none;
    }

    #menu-toggle {
        display: flex;
        flex-flow: column;
        gap: 4px;
        position: absolute;
        right: 2em;
        top: 2.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);
    }

    body.open {
        overflow: hidden;
    }

    body.open header a {
        font-weight: 700;
    }
    
    body.open header picture {
        z-index: 999;
        position: relative;
    }

    body.open header .menu-main_menu-container {
        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 #menu-main_menu {
        display: flex;
        position: absolute;
        flex-flow: column;
        gap: 2em;
        padding-top: 12em;
    }
    
    body.open header a.logo {
        position: relative;
        z-index: 9999;
    }

    body.open #menu-main_menu li {
        position: relative;
        z-index: 9999;
        width: 100%;
        text-align: center;
    }
}

@media(max-width: 580px) {
    div#contact-information .content-container {
        flex-flow: row wrap;
        padding: 10px 15px;
    }

    div#contact-information span {
        display: none;
    }

    #menu-toggle {
        top: 6.5em;
    }
}