.row {
    display: flex;
    gap: 40px
}

.row.center {
    align-items: center;
    margin: 20px 0 40px 0;
}

p.donate-page {
    font-family: "Montserrat Regular";
    padding-top: 20px;
}

.donate-panel .social-link {
    display: flex;
    gap: 10px;
    align-items: center;
}

.donate-panel .social-link object {
    filter: invert(1000%) sepia(97%) saturate(100%) hue-rotate(0deg) brightness(100%) contrast(100%);
}

.donate-panel {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    padding: 20px;
    gap: 20px;
    background: #FFFFE8;
    border-radius: 0 120px 0 0;
    width: 375px;
    min-width: 375px;
}

.donate-panel ul {
    padding: 20px;
}

.donate-panel .donate-heading {
    font-family: "Montserrat Bold";
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 130%;
    text-transform: uppercase;
    color: #000000;
}

.donate-panel .donate-content {
    font-family: "Montserrat Regular";
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 130%;
    letter-spacing: -0.02em;
    color: #000000;
}

.donate-panel .donate-content p {
    font-family: "Montserrat Regular";
    padding-bottom: 20px;
}

.donate-panel .donate-content li {
    font-family: "Montserrat Regular";
}

.donate-btn {
    text-decoration: none !important;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 7px 30px;
    gap: 10px;
    height: 34px;
    width: 100%;
    background: #8473FF;
    color: #fff !important;
    border-radius: 20px;
    font-weight: bold;
}

.donate-panel a {
    font-family: "Montserrat Regular";
    text-decoration: underline;
    color: #000;
    font-size: 15px;
}

@media screen and (max-width: 992px) {
    .row {
        flex-direction: column-reverse;
    }

    .donate-panel {
        border-radius: 20px !important;
    }
}