/*FOOTER*/
.footer
{
    position: relative;
    background: rgb(20,20,20);
    width: 100vw;
    padding-top: 40px;
    border-top: 1px solid rgb(255,255,255,0.2);
}
.footer .footer-logo
{
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    margin-bottom: 60px;
}
.footer .footer-logo img
{
    height: 6em;
    display: block;
    margin: auto;
    margin-bottom: 10px;
}
.footer .footer-logo p
{
    color: white;
    letter-spacing: 0.3em;
    font-size:0.8em;
    font-weight: bold;
    text-align: center;
}
.footer .footer-data
{
    position: relative;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin: 0;
    margin-bottom: 60px;
}
.footer-links
{
    margin-bottom: 20px;
}
.footer-links li
{
    list-style: none;
    display: inline-block;
    margin-right: 30px;
    color: white;
    transition-duration: 0.4s;
}
.footer-links li a, .my-link a, .my-link span
{
    color: white !important;
    text-decoration: none;
}
.footer-links li:hover
{
    transform: translateY(-5px);
    text-decoration: underline;
}
.footer-links .split:hover
{
    transform: translateY(0);
}
.footer-data .networks-mobile
{
    padding: 1em 0;
}
.footer-data .networks-mobile a
{
    font-size: 1.5em;
}
.my-link
{
    letter-spacing: 2px;
    margin-right: 30px;
    text-align: right;
}
.my-link a, .my-link span
{
    font-size: 12px;
}
.my-link a:hover
{
    text-decoration: underline;
}
.footer .copyright
{
    color: rgb(210,210,210);
    font-size: 12px;
    letter-spacing: 2px;
    border-top: 1px solid rgb(80,80,80);
    padding: 20px 0;
    margin-top: 20px;
}

@media screen and (max-width: 991px) {
    .footer .footer-logo img
    {
        height: 5em;
    }
    .footer .footer-logo p
    {
        letter-spacing: 0.2em;
        font-size:1.1em;
    }
    .my-link
    {
        padding-left: 2em;
    }
    .footer-links li
    {
        display: block;
    }
}
@media screen and (max-width: 991px) and (orientation: landscape) {
    .footer-links li
    {
        margin-right: 1em;
    }
    .footer .footer-logo h1
    {
        font-size: 3em;
    }
    .footer .footer-logo p
    {
        font-size: 0.7em;
    }
}