<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.footer{
    width: 100%;
    height: 200px;
}
.footer-base1{
    display: flex;
    justify-content: center;
    flex-direction: row;
    height: 100px;
}
.footer-base2{
    height: 100px;
}
.footer-content1{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background: linear-gradient(308deg, rgba(250,91,15,1) 0%, rgba(175,67,8,1) 0%, rgba(250,133,15,1) 100%);
}
.footer-content2{
    width: 35%;

    background-color: #e35512;
    height: 100%;
}

.footer-content3{
    width: 100%;
    background-color: #252323;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;

}
.footer-content4{
    width: 100%;
    background-color: #252323;
    height: 30px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding-bottom: 10px;

}
.img-end {
    width: 500px;
    border-bottom: solid 3px white;
}

@media screen and (max-width: 800px) {
    .footer-content1{
        display: flex;
        flex-wrap: wrap;
    }

    .footer-content3{
        display: flex;
        flex-wrap: wrap;

    }

    .img-end {
        width: 100%;
        border-bottom: 0;
        margin-bottom: 30px;
    }
}

</pre></body></html>