.address-container {
    width: 43%; 
    height: 50%; 
    position:fixed; 
    bottom: 0px; 
    left: 0px;
    /*transform: translate3d(101%, 0, 0);*/
    transform: scaleX(0);
    transform-origin: right;
    transition:  1s ease;
    
    .image-background-container {
        position: absolute;
        left: 0px; 
        top: 0px; 
        object-fit: cover;
        width: 100%;
        height: 100%;
        
        
        &::before {
            content: "";
            position: absolute;
            top: 0px;
            left: 0px;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.65);
            z-index: 2;
        }
    }
    
    .addresses {
        color: white;
        font-size: 1.4em;
        position: absolute;
        right: 4.5rem;
        bottom: 3.5rem;
        text-align: right;
        z-index: 5;
        
        .address {
            margin-bottom: 10px;
        }
        
    }
}
.et_pb_slide_menu_opened {
    .address-container { 
        /*transform: translate3d(-0%, 0, 0);*/
        transform: scaleX(1);
    }
}

@media (max-height: 655px) {
    .address-container {
        height: stretch;   
    }
}

@media (max-width: 767px) {
    .address-container {
        display: none;
    }
}


.addresses-mobile {
    z-index:9999;
    padding: 10px 40px;
    bottom: 0px;
    position: absolute;
    gap: 10px;
    flex-wrap: wrap;
    display: none;
    
    .address {
        margin-right: 10px;
    }
    
    @media ( max-width: 767px ) {
        display: flex;
    }
    
}