.footer-wrapper {
    background-color: #FFF;
    position: relative;
}

.footer-inner-wrapper {
    max-width: 1400px;
    width: 100%;
    align-items: center;
    margin: auto;
    display: flex;
    flex-direction: column;
    padding: 50px 50px 120px;
    justify-content: space-around;
    /* background-image: url(../media/footer-background.svg); */
    background-size: cover;
    background-repeat: no-repeat;
    background-position-x: 0px;
    background-position-y: 0px;
    background: linear-gradient(180deg, rgba(174,9,33,0.03) 0%, rgba(174,9,33,0) 100%);
    border-top-right-radius: 80px;
    border-top-left-radius: 80px;
}

.footer-top-wrapper{
    display: flex;
    flex-direction: row;
    width: 100%;
    align-items: center;
}

.footer-logo-wrapper {
    max-width: 400px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-self: flex-start;
    text-align: center
}

.footer-logo-image {
    max-width: 250px;
    width: 100%;
}

.footer-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    cursor: pointer;
    padding-bottom: 15px
}

.footer-logo-text {
    font-size: 18px;
    color: #555555;
    text-align: left;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    width: 100%;
}

.footer-info-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    position: relative;
    overflow: hidden;
    width: 85%
}

.footer-box {
    display: flex;
    flex-direction: column;
    max-width: 200px;
    width: 100%;
}

.footer-title {
    font-size: 22px;
    color: #1E2345;
    font-weight: 900;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    padding-bottom: 30px
}


.footer-text {
    font-size: 18px;
    color: #555555;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    padding-bottom: 10px
}

.footer-text:hover {
    color: #AE0921;
}


.footer-copyright-wrapper {
    width: 100%;
    margin: auto;
    display: flex;
    padding: 15px 0 0;
    align-items: center;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    color: #555555;
}

.privacy-wrapper {
    display: flex;
}

.footer-copyright {
    font-size: 16px;
    font-weight: 200;
    color: #555555;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    margin: 0 5px;
    position: relative;
    z-index: 10;
}

.privacy-wrapper>a {
    color: #AE0921;
}

@media screen and (max-width: 1150px) {
    .footer-top-wrapper {
        flex-direction: column;
    }
    .footer-logo-wrapper {
        margin-bottom: 30px;
        max-width: unset;
    }
    .footer-info-wrapper {
        width: 100%;
        justify-content: space-between;
    }
}


@media screen and (max-width: 790px) {
    .footer-box {
        max-width: unset;
        width: 100%;
    }
    .footer-info-wrapper {
        flex-wrap: wrap;
    }
    .footer-inner-wrapper {
        background-size: contain;
    }
}

@media screen and (max-width: 560px) {
    .footer-copyright-wrapper {
        flex-direction: column;
        /* align-items: flex-start; */
    }
    .footer-copyright-wrapper .privacy-wrapper {
        display: flex;
        flex-direction: column;
    }
}

@media screen and (max-width: 500px) {
    .footer-inner-wrapper {
        padding: 50px 10px 0;
    }
    .footer-wrapper {
        padding-top: 0;
    }
}

@media screen and (max-width: 450px) {
    .footer-box {
        width: 100%;
        align-items: center;
    }
}

@media screen and (max-width: 400px) {
    .footer-logo-text,
    .footer-text,
    .footer-copyright {
        font-size: 15px;
    }
}