/*
HAMBURGUER SECTION
*/

.Content-Link {
    display: none;
    visibility: hidden;
}

.Hamburguer {
    display: none;
    justify-content: center;
    align-items: center;
    position: relative;
    flex-direction: column;
    gap: 5px;
    width: 50px;
    height: 50px;
    border-radius: 50px;
    border: none;
    background: #DAC9BC;
    transition: all ease-in-out .2s;
}

.Curtain-Menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgb(141, 167, 190, .5);
    backdrop-filter: blur(7px);
    border-radius: 50% 0 50% 0;
    transform-origin: top right;
    transform: scale(0);
    transition: transform 0.2s ease-in-out;
    z-index: 99000;
}

.Curtain-Menu.open {
    transform: scale(1);
    transition: transform 0.2s ease-in-out;
    background: rgb(141, 167, 190, .5);
    backdrop-filter: blur(7px);
}

.Hamburguer-Button.showX {
    display: flex;
    justify-content: center;
    align-items: center;
}


.Hamburguer-Button.showX:hover span {
    background: white;
}

.Hamburguer-Button.showX span:nth-child(2) {
    transform: scaleX(0);
    display: none;
}

.Hamburguer-Button.showX span:nth-child(1) {
    transform: rotate(45deg) translate(0.5px, 0.5px);
    width: 70%;
}

.Hamburguer-Button.showX span:nth-child(3) {
    transform: rotate(-45deg) translate(0.5px, -0.5px);
    width: 70%;
}

@media screen and (max-width: 550px) {
    .Hamburguer {
        display: flex;
    }

    .Content-Link {
        visibility: hidden;
        transform: scale(0);
    }

    .Container-Nav .Content-Link {
        display: none;
        transition: all ease-in-out 0.5s;
        padding-bottom: 50px !important;
        margin-bottom: 50px !important;
    }

    .Container-Nav .Content-Link.open {
        display: flex;
        justify-content: center;
        flex-direction: column;
        gap: 30px;
        visibility: visible;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 92vh;
        transform: scale(1);
        padding: 0;
        z-index: 100000;
        background: rgb(141, 167, 190, .5);
        backdrop-filter: blur(7px);
    }

    .Container-Nav .Content-Link.open li a {
        font-size: 17px;
        font-weight: 600;
    }    

    .Container-Nav {
        width: 95%;
    }
}