.footer-wrapper {
    width: 100%;
    box-sizing: border-box;
    padding: 30px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    font-size: 20px !important;
}

.footer-left,
.footer-right {
    height: fit-content;
    min-height: 300px;
}

.footer-right {
    width: 60%;
    display: flex;
    justify-content: space-between;
}

.footer-left {
    width: 40%;
    display: flex;
    flex-direction: column;
    justify-content: start;
}

.footer-logo {
    height: 80px;
    width: 350px;
}

.footer-watermark {
    margin-top: 50px;
}

.left-right {
    display: flex;
    width: 100%;
}

.footer-bottom-line {
    height: 50px;
    align-items: center;
    display: flex;
    justify-content: space-between;
}

.footer-bottom-line p {
    margin: 0;
}

.footer-link-container {
    color: #C16B5A;
    width: 600px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 50px;
}

.footer-link-button i {
    font-size: 15px;
}


.footer-link-button {
    gap: 10px;
    transition: opacity 200ms ease-in-out;
}

.footer-link-button:hover {
    cursor: pointer;
    opacity: 0.8;
}

.footer-box {
    width: 33%;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.icon-with-text {
    color: #C16B5A;
    height: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
}

@media (max-width:1250px) {
    .left-right {
        flex-direction: column;
    }

    .footer-left,
    .footer-right {
        width: 100%;
        justify-content: center;
        align-items: center;
    }

    .footer-link-container {
        width: 60%;
    }

    .footer-box {
        width: 400px;
        margin-bottom: 30px;
        text-align: center;
        align-items: center;
    }

}

@media (max-width:820px) {
    .footer-bottom-line {
        flex-direction: column-reverse;
        gap: 20px;
    }

    .footer-logo {
        width: 200px;
    }

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

    .footer-box {
        width: 400px;
        margin-bottom: 30px;
        text-align: center;
        align-items: center;
    }

    .footer-link-container {
        width: 100%;
    }


}

@media (max-width:420px) {
    .footer-link-container a {
        font-size: 12px;
    }
}