.footer {
    width: 100%;
    display: flex;
    flex-direction: column;
    animation: slideUp 0.8s ease-out forwards;
    box-sizing: border-box;
    padding: 50px 20px;
    gap: 10px;
}

.brand-name {
    display: flex;
    flex-direction: column;
    border-bottom: 0.1px solid rgba(145, 145, 145, 0.5);
    padding: 0 0 20px 0;
    gap: 10px;
}

.brand-name h4 {
    font-size: 16px;
    font-weight: bold;
    line-height: 1.5;
    color: black;
    margin: 0;
}

.brand-name p {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.5;
    color: #919191;
    margin: 0;
}

.popular-service {
    display: flex;
    flex-direction: column;
    border-bottom: 0.1px solid rgba(145, 145, 145, 0.5);
    padding: 20px 0;
    gap: 10px;
}

.popular-service h4 {
    font-size: 16px;
    font-weight: bold;
    line-height: 1.5;
    color: black;
    margin: 0;
}

.popular-service a {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.5;
    text-decoration: none;
    color: #919191;
    margin: 0;
}

.footer-menu {
    display: flex;
    flex-direction: column;
    border-bottom: 0.1px solid rgba(145, 145, 145, 0.5);
    padding: 20px 0;
    gap: 10px;
}

.footer-menu h4 {
    font-size: 16px;
    font-weight: bold;
    line-height: 1.5;
    color: black;
    margin: 0;
}

.footer-menu a {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.5;
    text-decoration: none;
    color: #919191;
    margin: 0;
}

.social-icon {
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.social-icon a img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    cursor: pointer;
}

.footer > p {
    width: 100%;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.5;
    color: black;
    margin: 0;
}

@media (min-width: 768px) {
.footer {
    padding: 30px 30px 0 30px;
}
}

@media (min-width: 1024px) {
.footer {
    height: 100%;
    min-height: 80px;
    justify-content: center;
    padding: 40px 40px 10px 40px;
}
.footer-list {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-content: center;
    align-items: stretch;
    gap: 60px;
}

.brand-name, .popular-service, .footer-menu {
    border-bottom: none;
    align-items: start;
    padding: 0 0 20px 0;
    gap: 40px;
}

.popular-service a:hover {
    color: black;
}

.footer-menu a:hover {
    color: black;
}

.footer > p {
    border-top: 0.1px solid rgba(145, 145, 145, 0.5);
    text-align: center;
    padding: 20px 0 10px 0;
}
}

@media (min-width: 1440px) {
.footer {
    padding: 40px 50px 10px 50px;
}

.footer-list {
    gap: 140px;
}

.brand-name, .popular-service, .footer-menu {
    border-bottom: none;
    align-items: start;
    padding: 0 0 20px 0;
    gap: 20px;
}
}

@media (min-width: 2560px) {
.footer {
    padding: 40px 80px 10px 80px;
}

.footer-list {
    gap: 240px;
}

.brand-name h4 {
    font-size: 24px;
}

.brand-name p {
    font-size: 22px;
}

.popular-service h4 {
    font-size: 24px;
}

.popular-service a {
    font-size: 22px;
}

.footer-menu h4 {
    font-size: 24px;
}

.footer-menu a {
    font-size: 22px;
}

.social-icon {
    gap: 40px;
}

.footer > p {
    font-size: 18px;
    padding: 20px 0;
}
}

@media (min-width: 3440px) {
.footer {
    padding: 40px 100px 10px 100px;
}

.brand-name h4 {
    font-size: 32px;
}

.brand-name p {
    font-size: 28px;
}

.popular-service h4 {
    font-size: 32px;
}

.popular-service a {
    font-size: 28px;
}

.footer-menu h4 {
    font-size: 32px;
}

.footer-menu a {
    font-size: 28px;
}

.social-icon a img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.footer > p {
    font-size: 20px;
}
}

@media (min-width: 3840px) {
.footer {
    padding: 40px 120px 10px 120px;
}

.brand-name h4 {
    font-size: 42px;
}

.brand-name p {
    font-size: 32px;
}

.popular-service h4 {
    font-size: 42px;
}

.popular-service a {
    font-size: 32px;
}

.footer-menu h4 {
    font-size: 42px;
}

.footer-menu a {
    font-size: 32px;
}

.social-icon a img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.footer > p {
    font-size: 24px;
}
}