.main-footer {
    background: #dbdbe3;
    border-top: 2px solid #b4b4bb;
    padding: 4rem;
}

.footer-top {
    display: flex;
    justify-content: space-between;
}

.footer-top-left {
    width: 33%;
}

.footer-top-left h1 {
    font-size: 22px;
    margin: 0 0 10px 0;
}

.footer-top-left p {
    font-size: 18px;
}

.footer-top-right {
    font-size: 24px;
    border: 2px solid #F13270;
    background: #fbcfdd;
    width: 30%;
    border-radius: 18px;
    padding: 1rem;
}

.main-footer-line-break {
    border: none;
    border-top: 2px solid #b4b4bb;
    margin: 3rem 0;
}

.footer-bottom-left {
    display: flex;
    align-items: center;
}

.footer-bottom-left-left img {
    height: 90px;
    margin: 0 10px 0 0;
}

.footer-bottom-left-left a {
    font-size: 22px;
    font-weight: 800;
    font-style: italic;
    color: #202020;
    text-decoration: none;
}

.footer-bottom-left-left p {
    font-size: 18px;
    margin: 5px 0 0 0;
}

.footer-bottom-left-left p a {
    font-weight: 400;
    font-size: 18px;
    font-style: normal;
}

@media screen and (max-width: 1200px) {
    .footer-top-left,
    .footer-top-right {
        width: 45%;
    }
}

@media screen and (max-width: 800px) {
    .footer-top-left,
    .footer-top-right {
        width: 100%;
    }
    
    .footer-top {
        flex-direction: column;
        align-items: center;
    }

    .footer-top-right {
        margin: 3rem 0 0 0;
    }
}

@media screen and (max-width: 500px) {
    .main-footer {
        padding: 2rem;
    }
}