/* Ultima actualizacion 26 Sept 2024 */

.Position-Fixed {
    height: 60px;
    padding-top: 5px;
    padding-bottom: 5px;
    top: 0;
    background: rgb(84, 67, 67, .10);
    background: linear-gradient(90deg, rgb(50, 49, 49, .60) 0%, rgb(50, 49, 49, .60) 48%, rgb(141, 167, 190, .60) 84%);
    backdrop-filter: blur(5px);
    box-shadow: none;
    z-index: 1000;
}


nav {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 9vh;
    padding-top: 10px;
    padding-bottom: 10px;
    background: rgb(141, 167, 190);
    box-shadow: 0px 5px 5px 5px rgb(0, 0, 0, .2);
}

.Container-Nav {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.Container-Nav .Normal-Link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
}

.Container-Nav ul li {
    display: flex;
    justify-content: center;
    align-items: center;
}

.Container-Nav ul li a {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    color: white;
    text-transform: uppercase;
    text-decoration: none;
    padding-bottom: 5px;
    padding-top: 5px;
    font-size: 12px;
    font-weight: 500;
}

.Container-Nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: white;
    transition: width 0.3s;
}

.Container-Nav ul li a:hover::after {
    width: 100%;
}

.Container-Nav ul li a img {
    width: 60%;
}

.Hamburguer-Button {
    visibility: hidden;
}

.Map-Map-Code__Container {
    position: relative;
    width: 100%;
    height: 600px;
}

.Map-Shape {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 99000;
}

.Map-Shape:hover {
    background: rgb(158, 215, 245, .2);
}

@media screen and (max-width: 768px) {

    .Container-Nav {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .Container-Nav ul li a img {
        width: 150px;
    }

    .Container-Nav .Movil-Hidden {
        visibility: hidden;
        display: none;
    }

    .Hamburguer-Button {
        display: flex;
        justify-content: space-around;
        align-items: center;
        padding: 4px;
        border: #455869;
        flex-direction: column;
        background: #455869;
        border-radius: 10px;
        width: 50px;
        height: 45px;
        visibility: visible;
        cursor: pointer;
        transition: all ease-in-out .2s;
        z-index: 200000;
    }

    .Hamburguer-Button:hover {
        background: rgb(91, 103, 114, .5);
        backdrop-filter: blur(7px);
        padding: 6px;
        border: 1px solid white;
    }

    .Hamburguer-Button span {
        width: 90%;
        height: 2px;
        background: white;
        transition: all ease-in-out .1s;
    }

    .Welcome-Dermaestetic-Section__Container {
        flex-direction: column-reverse;
    }

    .WD-Text, .WD-Title-Img {
        width: 100%;
    }

    .WD-Text__Container, .WD-Title-Img__Container {
        width: 100%;
    }

  }