#footer {
    padding: 5px;
    background-color: black;
    color: white;
}

#footer .foot-upper {
    display: flex;
    justify-content: space-between;
    align-items: start;
    flex-wrap: wrap;
    margin: 40px 0 40px 0;

}

#footer .main {
    margin-top: 40px;
}

#footer .category {
    margin-top: 40px;
}

#footer .foot-upper .main-title {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 30px;
}

#footer .foot-upper .main-title h1 {
    font-size: 30px;
    font-weight: 900;
}

#footer .foot-upper .main-title .icon {
    color: black;
    font-size: 25px;
    background-color: white;
    padding: 12px 16px;
    margin-right: 10px;
}

#footer .foot-upper .main p {
    font-size: 18px;
    font-weight: 400;
    line-height: 29.25px;
}

#footer h4 {
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 10px;
}

.foot-list li a {
    color: white;
    font-size: 18px;
    font-weight: 600;
    margin: 8px 0;
    transition: all 0.2s;
}

.foot-list li a:hover {
    color: rgb(255, 181, 9);
}

#footer .new {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin-top: 40px;
}

#footer .new p {
    color: white;
    font-size: 18px;
    font-weight: 400;
    line-height: 29.25px;
}

#footer .new form {
    width: 100%;
}

#footer .new form input {
    width: 100%;
    background-color: black;
    border: 1px solid white;
    padding: 10px 12px;
    font-size: 18px;
    font-weight: 500;
    color: white;
    margin: 20px 0;
}

#footer .new form button {
    width: 100%;
    font-size: 20px;
    font-weight: 700;
    color: black;
    background: rgb(255, 223, 32);
    border: 4px solid rgb(255, 223, 32);
    border-right: 4px solid rgba(107, 93, 10, 0.249);
    border-bottom: 4px solid rgba(107, 93, 10, 0.249);
    padding: 10px 30px;
    transition: all 0.2s;
}

#footer .new form button:hover {
    background-color: rgb(253, 199, 0);
    transform: translate(4px, 4px);
}

#footer .rights {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    border-top: 4px solid white;
    padding: 20px 0;
    margin-bottom: 60px;
}

#footer .rights p {
    font-size: 18px;
    font-weight: 600;
}

#footer .rights .foot-list {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

#footer .rights .foot-list li a {
    margin-left: 10px;
    font-size: 16px;
}



@media screen and (min-width: 200px) {
    #footer .rights p {
        font-size: 13px;
    }

    #footer .rights .foot-list li a {
        font-size: 10px;
    }

    #footer .rights {
        justify-content: center;
    }

    #footer .rights .foot-list {
        justify-content: center;
    }
}

@media screen and (min-width: 640px) {
    #footer .rights .foot-list li a {
        font-size: 12px;
    }
    #footer .rights {
        justify-content: center;
    }

    #footer .rights .foot-list {
        justify-content: center;
    }
}

@media screen and (min-width: 768px) {
    #footer .rights {
        justify-content: center;
    }

    #footer .rights .foot-list {
        justify-content: center;
    }
}

@media screen and (min-width: 1024px) {
    #footer .rights p {
        font-size: 18px;
    }

    #footer .rights .foot-list li a {
        font-size: 16px;
    }

    #footer .rights {
        justify-content: space-between;
    }

    #footer .rights .foot-list {
        justify-content: flex-end;
    }
}