/* --------------------------footer starts--------------------------- */

.footer{

    margin-top: 1vh;
    height: 25vh;
    padding: 2vh 2vh 0vh 2vh;
    background-color: #92cdf5;
    border-radius: 1rem 1rem 0px 0px;
    }
    .footer_part1{
         display:flex;
         flex-direction:column;
         justify-content:space-between;
         
    }
    .footer_part1_elements{
        margin:10px 0px;
        width: 100%;
    }
    .join_newsletter{
        font-size: .7rem;
        display:flex;
        justify-content: space-evenly;
        align-items: center;
        flex-direction:row-reverse;
    }
    #join_newsletter_form_container{
        /* width: 50%; */
        background-color: white;
        padding: 3px;
        border-radius: 8px;
        line-height: 1.5;
    }
    #join_newsletter_form_container form{margin:0px;}
    #join_newsletter_form{direction:rtl;display:flex;align-items:center;}
    #join_newsletter_form_tag{display:flex;}
    #email_input_tag{
        border:none;
        outline: none;
        font-size: .7rem;
        
    }
    #join_newsletter_button{
        color: #0084ff;
        border: 2px solid #0084ff;
        border-radius: 10px;
        padding: 0px 5px;
        min-width: 50px;
        display: flex;
        justify-content: center;
        align-items: center;}
    .footer_social_media{
    display: flex;
    justify-content: space-evenly;
    }
    .footer-social-media a img{width: 43px;height: 36px;}
    #footer_part2{
        display: flex;
        direction: rtl;
        flex-direction: column;
        font-size: clamp(9px, 2vw, 14px);
        border-top: 1px solid;
        border-bottom: 1px solid;
        padding: 10px 0px 10px 0px;
    }
    .footer_part2_items{}
    #address{}
    #e_logo{
    height: 40%;
    display: flex;
    justify-content:space-around;
    margin-top: 3vh;
    }
    
    
    /*------------------- footer desktop start-------------------- */
    @media (min-width: 768px) {
        .footer{
            border-radius: .5rem .5rem 0px 0px;
        }
        .footer_part1{flex-direction: row-reverse;}
        .footer_part1_elements{
        margin:10px 0px;
        width: 50%;
    }  
    .join_newsletter,#email_input_tag,#join_newsletter_form{font-size: clamp(9px, 1vw, 14px);}
    
    #join_newsletter_form_tag{min-width: 175px;}
    #join_newsletter_caption{min-width: 75px;}
    #footer_part2{flex-direction: row;justify-content: space-evenly;}
    #space{}
}
    /*------------------- footer desktop end-------------------- */
    /* --------------------------footer ends--------------------------- */