.footer{
    position: relative;
    border-top: dotted 1px #b4b4b4;
    background-color: rgb(218,218,218);
    font-size: 12px;
    color: #000;
    padding: 10px 5px;
    box-sizing: border-box;
    margin-top: 40px;

    flex-basis: 100%;
}

.footer:after{
    content: "";
    display: block;
    clear: both;
}

.footer-cell{
    width: 20%;
    float: left;
}

.social-cell{
    float: left;
    width: 20%;
}

.icon-social{
    display: inline-block;
    width: 20px;
    height: 25px;
    background-position: center top;
    background-repeat: no-repeat;
    background-size: 80%;
    margin-right: 0px;

    cursor: pointer;
    opacity: 0.6;
    transition: 0.3s;
}

.icon-social:hover{
    opacity: 1;
}

.items-soc-net:hover{
    opacity: 0.8;
}

.facebook-icon{
    background-image: url(../img/facebook.png);
}

.twitter-icon{
    background-image: url(../img/twitter.png);
}

.instagram-icon{
    background-image: url(../img/instagram.png);
}

.youtube-icon{
    background-image: url(../img/youtube.png);
}

.em-logo{
    display: none;
    background-image: url(../img/em.svg);
    background-position: left top;
    background-size: 50%;
    background-repeat: no-repeat;
    width: 50%;
    height: 100px;
    
    background-position-y: -25px;
}

.year-panel{
    width: 100%;
    padding: 10px 0px;
    box-sizing: border-box;
    text-align: center;
    color: #fff;
    background-color: #b4b4b4;
    font-size: 13px;
    background-color: rgb(60,60,60);
    display: none;
}

.bottom-mob-panel{
    display: none;
    height: 30px;
    background-color: rgb(40,40,40);
}

/*New*/
.footer-content{
/*    width: 900px;*/
    padding: 40px 0px;
    margin: 0 auto;
}

.footer-title{
    font-size: 30px;
    margin-bottom: 60px;
    margin-top: 0px;
}

.mini-title-footer{
    margin-bottom: 5px;
    font-size: 11px;
    color: rgba(0,0,0,0.7);
}

.footer-cell-area{
    margin-bottom: 60px;
}

.footer-cell-area:after{
    content: "";
    display: block;
    clear: both;
}

.footer-cell{
    width: 25%;
}

.footer-title-desk{
    position: relative;
    margin-bottom: 40px;
}

.footer-title-desk:after{
    content: "";
    display: block;
    clear: both;
}

.ftd-text-content{
    width: 320px;
    font-size: 14px;
    color: rgba(0,0,0,0.7);
    float: left;
}

.footer-title-desk .button{
    float: right;
    color: rgba(0,0,0,0.7);
    border-color: rgba(0,0,0,0.7);
    transition: 0.3s;
    border-radius: 15px;
}

.footer-title-desk .button:hover{
    color: #000;
    border-color: #000;
}

.privacy-notice{
    width: 400px;
    color: rgba(0,0,0,0.5);
    line-height: 20px;
    font-size: 11px;
}

.footer-cell a{
    color: #000 !important;
}

.social-items{
    display: inline-block;
    width: 32px;
    height: 32px;
    margin-right: 5px;
}

.social-icon{
    width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    cursor: pointer;
    opacity: 0.7;
    transition: 0.3s;
}

.social-icon:hover{
    opacity: 1;
}

.social-icon.instagram{
    background-image: url(../img/i_icon.png);
}

.social-icon.facebook{
    background-image: url(../img/f_icon.png);
}

@media only screen and (max-width: 768px){
    .footer{
        padding: 0px 25px;
        padding-bottom: 10px;
        color: #000;
    }
    
    .privacy-notice{
        width: 100%;
    }
    
    .footer a{
        color: #fff;
    }
    
    .footer-cell{
        width: 50%;
        margin-bottom: 20px;
        text-align: left;
        float: right;
    }
    
    .em-logo{
        display: block;
        float: left;
    }
    
    .year-panel{
        display: block;
    }
    
    .bottom-mob-panel{
        display: block;
    }
    
    .no-mob{
        display: none;
    }
    
    .social-cell{
        width: 50%;
    }
    
    .facebook-icon{
        background-image: url(../img/facebook_white.png);
    }

    .instagram-icon{
        background-image: url(../img/instagram_white.png);
    }
    
    .ftd-text-content{
        margin-bottom: 20px;
    }
    
    .footer-title-desk .button{
        float: left;
    }
    
    .social-items{
        width: 25px;
        height: 25px;
    }
    
}