footer a{
    color: black;
    text-decoration: none;
}

footer li{
    font-size: 20px;
    margin: 20px 0;
}

footer{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    height: fit-content;

}

footer ul{
    margin: 0 20px;
}

.footer-left{
    border-right: solid black 2px;
    display: flex;
    align-items: center;
    width: fit-content;
    padding: 0 50px 0 0;
}

.footer-left-right{
    display: block;
    width: fit-content;
}

.footer-left-right li{
    display: block;
    font-size: 20px;
}

.footer-rsc{
    display: flex;
    justify-content: center;
}

.rsc24{
    width: 24px;
}

.footer-rsc a{
    display: flex;
    justify-content: center;
    width: fit-content;
}

.footer-rsc img{
    margin: 0 5px;
}

.footer-right{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    width: 100%;
    align-items: center;
}

.footer-newsletter{
    display: flex;
    flex-direction: column;
    width: fit-content;
    justify-content: center;
    height: 100%;

}

.submit{
    background-image: url(images/newsletter-send.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: 50%;
    background-color: #5BBE83;
    width: 50px;
    border-radius: 0 10px 10px 0;

}

.footer-newsletter-input{
    display: flex;
    flex-wrap: nowrap;
    margin-top: 10px;
}

.footer-newsletter input{
    display: flex;
    margin: 0;
    padding: 10px;
    border: solid #5BBE83 2px;
}

.nowrap{
    white-space: nowrap;
}

#footer-mail{
    width: 100%;
    border-radius: 10px 0 0 10px;
}










@media screen and (max-width: 1300px) {

footer{
    padding: 50px 0px;
}


.footer-left img{
    display: none;
}

.footer-left-right img{
    display: block;
}

}










@media screen and (max-width: 900px) {


footer{
    flex-direction: column;
    align-items: center;
    /* border-top: #5BBE83 solid 5px; */
    /* margin-top: 50px; */
}


.footer-left{
    flex-direction: column;
    align-items: center;
    border: 0;
    padding: 0;
    margin-bottom: 50px;
}

.footer-left img{
display: block;
}

.footer-left-right li{
    text-align: center;
}

.footer-right{
    flex-wrap: wrap;
    order: -1;
}

.footer-right ul{
    margin-bottom: 50px;
}

.footer-newsletter{
    margin-bottom: 50px;
    order: -1;
    display: block;
    width: 80%;
}

}