@charset "UTF-8";

#footer {
    margin: 0;
    padding: 15px 0 15px 0;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    background-color: #52AE32;
    font-family: korolev-condensed, sans-serif;
    font-weight: 300;
    font-style: normal;
    color: white;
    width: 100%;
}

#footer-desk {
    margin: 0;
    padding: 0;
    font-size: 24px;
}

@media screen and (max-width: 1000px) {
    #footer-desk {
        font-size: 22px;
    }
}

@media screen and (max-width: 780px) {
    #footer-desk {
        font-size: 20px;
    }
}

#footer-mobile {
    margin: 0;
    padding: 0;
    font-size: 20px;
    display: none;
    flex-direction: column;
    line-height: 1.6;
}

@media screen and (max-width: 720px) {
    #footer-desk {
        display: none;
    }
    #footer-mobile {
        display: flex;
    }
}