nav .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    padding-bottom: 20px;
}

.open-menu-mobile{
    border: 0;
    background: transparent;
    color: #c92c25;
}

.logo-mobile img {
    width: 250px;
}

nav {
    background: #fff;
}

.open-menu-mobile i {
    font-size: 24px;
}

.backdrop {
    position: fixed;
    width: 100vw;
    height: 100vh;
    backdrop-filter: blur(10px);
    top: 0px;
    display: none;
    z-index: 99998;
}

.backdrop.open {
    display: block;
}

.menu-mobile{
    background: rgb(201 44 37 / 80%);
    padding: 80px 0px;
    min-width: 240px;
    height: 100vh;
    position: fixed;
    right: 0px;
    top: 0px;
    transform: translateX(280px);
    transition: 0.8s;
    z-index: 99999;
}

.menu-mobile.open {
    transform: translateX(0px);
}

.menu-mobile .close-menu{
    position: absolute;
    top: 20px;
    right: 20px;
    border: 0px;
    background: transparent;
    color: rgb(255, 255, 255);
}

.menu-mobile-item{
    width: 100%;
}

.menu-mobile-item a, .menu-mobile-item button{
    display: flex;
    width: 100%;
    -webkit-box-align: center;
    align-items: center;
    border: 0px;
    background: transparent;
    transition: all 0.3s ease 0s;
    padding: 10px 20px;
    color: rgb(255, 255, 255);
    text-decoration: none;
    font-size: 20px;
}