#donateModal .popup-form-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 500px;
    overflow-y: auto;
    padding-right: 50px;
}
#donateModal .popup-form-wrapper p {
    word-wrap: break-word;
    width: 100%;
}
#donateModal button#copy-number {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e2e2e2;
    border-radius: 100px;
    padding: 3px;
    margin: 10px 0px;
    transition: .2s;
}
#donateModal button#copy-number:hover {
    filter: invert(1);
}

.donate {
    margin-bottom: 200px;
}

.donate-hero__wrapper {
    background: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
    padding-top: 160px;
    margin-bottom: 120px;
}

.donate-hero {
    display: flex;
    justify-content: space-between;
    max-width: 90%;
}

.donate-hero__title {
    font-size: 64px;
    line-height: 120%;
    font-weight: 500;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    max-width: 750px;
}

.donate-hero__title strong {
    background: linear-gradient(180deg, #690A10 0%, #CF141F 75%);
    color: #fff0;
    background-clip: text;
    -webkit-background-clip: text;
}

.donate-hero__desc {
    max-width: 400px;
    line-height: 160%;
    color: #00000099;
}

.donate-methods {
    display: flex;
    gap: 15px;
}

.donate-method {
    flex: 1;
    background: white;
    padding: 24px;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 320px;
    transition: all .3s ease-in-out;
}

.donate-method:hover {
    box-shadow: 0px 0px 24px 4px #FFFFFFCC inset;
    background: #CF141F;
    color: white;
    cursor: pointer;
}

.donate-method__logos {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
    align-items: center;
}

.donate-method__logo {
    color: #00000066;
    font-size: 14px;
}

.donate-method:hover .donate-method__logo {
    color: #FFFFFF99;
}

.donate-method__logo-image {
    background: #FDF3F4;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 40px;
}

.donate-method__logo-image img {
    object-fit: contain;
}

.donate-method__currencies {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
}

.donate-method__currency {
    color: #00000066;
    font-size: 14px;
    line-height: 100%;
    position: relative;
    font-weight: 500;
}

.donate-method:hover .donate-method__currency {
    color: #FFFFFF99;
}

.donate-method__currency:not(:first-child) {
    margin-left: 5px;
    padding-left: 5px;
}

.donate-method__currency:not(:first-child)::before {
    content: "";
    display: block;
    width: 1px;
    height: 120%;
    background: #00000066;
    position: absolute;
    left: 0;
    top: -3px;
}

.donate-method:hover .donate-method__currency:not(:first-child)::before {
    background: #FFFFFF99;
}

.donate-method__title {
    font-size: 24px;
    font-weight: 500;
    line-height: 130%;
}

.donate-method__button {
    width: 40px;
    height: 40px;
    background: #EFF1F5;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s ease-in-out;
}

.donate-method:hover .donate-method__button {
    width: 100%;
    background: white;
    position: relative;
    justify-content: space-between;
    padding: 12px 24px;
    padding-right: 15px;
}

.donate-method__button span {
    opacity: 0;
    pointer-events: none;
    width: 0;
    color: transparent;
    line-height: 100%;
    font-size: 14px;
}

.donate-method:hover .donate-method__button span {
    opacity: 1;
    pointer-events: all;
    width: auto;
    color: black;
}

.donate-method__button::after {
    content: url("data:image/svg+xml,%3Csvg width='17' height='17' viewBox='0 0 17 17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.12912 16.0711L14.8022 2.39807M1.98627 1.77892L15.2713 1.92897L15.4213 15.214' stroke='black' stroke-opacity='0.5' stroke-width='2'/%3E%3C/svg%3E%0A");
    width: 20px;
    height: 19px;
}

.donate-method:hover .donate-method__button::after {
    content: url("data:image/svg+xml,%3Csvg width='17' height='17' viewBox='0 0 17 17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.34055 16.0711L15.0136 2.39807M2.1977 1.77892L15.4827 1.92897L15.6327 15.214' stroke='%23CF141F' stroke-width='2'/%3E%3C/svg%3E%0A");
}

/*

Second

*/

.donate-second__wrapper {
    margin-top: 40px;
}

.donate-second {
    height: 900px;
    background-size: cover;
    background-position: center;
    border-radius: 24px;
    position: relative;
    color: white;
    display: flex;
    align-items: flex-end;
}

.donate-second__logo {
    filter: brightness(0) invert(1);
    top: 56px;
    left: 56px;
    position: absolute;
}

.donate-second__content {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 200px;
    padding: 80px 56px;
}

.donate-second__title {
    font-size: 56px;
    line-height: 120%;
    font-weight: 500;
    text-transform: uppercase;
    font-family: 'Oswald', sans-serif;
    max-width: 700px;
}

.donate-second__title strong {
    color: #FF424E;
}

.donate-second__left {
    display: flex;
    flex-direction: column;
    gap: 15px;
    height: auto;
    justify-content: space-between;
}

.donate-second__subtitle {
    max-width: 70%;
}

/*

Gallery

*/

.donate-galerry__wrapper {
    margin-top: 40px;
}

.donate-gallery img {
    width: 100%;
    border-radius: 24px;
    object-fit: cover;
    object-position: center;
    height: 450px;
}


.donate-gallery__nav {
    display: flex;
    align-items: center;
    gap: 10px;
    position: absolute;
    bottom: 24px;
    left: 24px;
    z-index: 1;
}

.donate-gallery__prev,
.donate-gallery__next {
    background: white;
    border-radius: 100%;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.donate-gallery__prev.swiper-button-disabled,
.donate-gallery__next.swiper-button-disabled {
    opacity: 50%;
    pointer-events: none;
}

/*

Write

*/

.donate-write__wrapper {
    margin-top: 200px;
}


.donate-write__title {
    font-size: 40px;
    font-weight: 500;
    line-height: 100%;
    margin-bottom: 40px;
}

.donate-write__items {
    display: flex;
    gap: 10px;
}

.donate-write__item {
    flex: 1;
    display: grid;
    justify-content: flex-start;
    align-items: start;
    align-content: stretch;
}

.donate-write__item-image {
    object-fit: cover;
    width: 100%;
    border-radius: 12px;
    margin-bottom: 24px;
}

.donate-write__item-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100px;
}

.donate-write__item-title {
    font-size: 20px;
    font-weight: 500;
    line-height: 120%;
    margin-bottom: 24px;
}

.donate-write__item-desc {
    font-size: 14px;
    line-height: 100%;
    color: #00000080;
}

/*

Social

*/

.donate-social__wrapper {
    margin-top: 200px;
}

.donate-social {
    background: #CF141F;
    border-radius: 24px;
    color: white;
    position: relative;
    box-shadow: 0px 0px 64px 2px #FFFFFFB2 inset;
}

.donate-social__content {
    padding: 64px 0;
    padding-left: 550px;
    padding-right: 155px;
}

.donate-social__title {
    font-size: 40px;
    font-weight: 500;
    line-height: 120%;
    max-width: 70%;
}

.donate-social__img {
    position: absolute;
    width: 250px;
    height: 594px;
    left: 130px;
    top: -90px;
}

.donate-social__items {
    display: flex;
    align-items: center;
    margin-top: 100px;
    gap: 8px;
    flex-wrap: wrap;
}

.donate-social__item {
    padding: 16px;
    border-radius: 12px;
    border: 1px solid #FFFFFF4D;
    display: flex;
    flex-direction: column;
    gap: 24px;
    min-width: 120px;
    transition: all .3s ease-in-out;
}

.donate-social__item:hover {
    border-color: white;
    background: white;
    color: black;
}

.donate-social__item:hover .donate-social__item-icon {
    filter: brightness(0) saturate(100%) invert(30%) sepia(41%) saturate(374%) hue-rotate(180deg) brightness(94%) contrast(88%);
}

.donate-social__item-title {
    font-size: 14px;
    line-height: 100%;
}

/*

Partners

*/


.donate-partners__wrapper {
    margin: 200px 0;
}


.donate-partners__title {
    font-size: 40px;
    font-weight: 500;
    line-height: 100%;
    margin-bottom: 40px;
    text-align: center;
}

.donate-partners__items {
    display: flex;
    gap: 15px;
}

.donate-partners__item {
    flex: 1;
    border: 1px solid #C6CEDC;
    height: 180px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.donate-partners__item img {
    width: 70%;
    height: 100px;
    object-fit: contain;
}

@media (max-width: 768px) {
    .donate {
        margin-bottom: 120px;
    }
    .donate-hero__wrapper {
        margin-bottom: 50px;
        padding-top: 120px;
    }
    .donate-gallery img {
        height: 179px;
    }
    .donate-gallery__nav {
        position: static;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 20px;
        margin-left: 40px;
    }
    .donate-write__items {
        display: none;
    }
    .donate-write__swiper {
        display: block!important;
    }
    .donate-gallery__prev svg .donate-gallery__next svg {
        scale: 0.8;
    }
    .donate-hero {
        display: flex;
        flex-direction: column;
        align-items: center;
        max-width: 100%;
        text-align: center;
        gap: 20px;
    }
    .donate-hero__title {
        font-size: 32px;
    }
    .donate-hero__desc {
        font-size: 14px;
    }
    .donate-methods {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 4px;
    }
    .donate-method {
        height: auto;
        padding: 16px;
    }
    .donate-method__button {
        margin-top: 20px;
    }
    .donate-method:first-child {
        grid-column: span 2;
    }
    .donate-second {
        display: flex;
        flex-direction: column;
        overflow: visible;
        height: 359px;
        position: relative;
        overflow: hidden;
    }
    .donate-second::after {
        content: '';
        background: linear-gradient(0deg, black, transparent);
        width: 100%;
        height: 100%;
        position: absolute;
        z-index: 0;
    }
    .donate-second__logo {
        display: none;
    }
    .donate-second__title:not(.mobile) {
        display: none;
    }
    .donate-second__title.mobile {
        display: flex!important;
        font-size: 32px;
        text-align: center;
        margin-bottom: 120px;
        margin-top: 120px;
    }
    .donate-second__content {
        height: 100%;
        padding: 30px;
        z-index: 1;
    }
    .donate-second__left img {
        width: 57px;
    }
    .donate-second__subtitle {
        max-width: 100%;
    }
    .donate-galerry__wrapper {
        margin-top: 24px;
    }
    .donate-second__left {
        font-size: 14px;
        display: flex;
        justify-content: flex-end;
    }
    .donate-write__wrapper {
        margin-top: 120px;
    }
    .donate-write__title {
        font-size: 24px;
    }
    .donate-write__item-image {
        margin-bottom: 15px;
    }
    .donate-write__item-title {
        font-size: 14px;
        line-height: normal;
    }
    .donate-write__item-desc {
        font-size: 12px;
    }
    .donate-social__content {
        padding: 0px;
    }
    .donate-social__img {
        width: 135px;
        height: 289px;
        position: absolute;
        left: 50%;
        top: 30%;
        transform: translate(-50%,-50%);
    }
    .donate-social__content {
        height: 250px;
    }
    .donate-social::after {
        content: '';
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        background: linear-gradient(0deg, #CF141F 30%, transparent 80%);
        border-radius: 24px;
    }
    .donate-social__wrapper {
        margin-top: 138px;
    }
    .donate-social__title {
        font-size: 24px;
        width: 100%;
        text-align: center;
        bottom: -50px;
        z-index: 1;
        height: 100px;
        position: absolute;
        left: 50%;
        top: 35%;
        transform: translate(-50%,50%);
    }
    .donate-social__items:not(.mobile) {
        display: none;
    }
    .donate-social__items.mobile {
        display: flex!important;
        padding: 0px 10px;
        margin: 0px;
        margin-top: 20px;
        place-items: center;
        gap: 8px;
        justify-items: center;
        flex-wrap: wrap;
        justify-content: center;
    }
    .donate-partners__wrapper {
        margin: 120px 0px;
    }
    .donate-social__item {
        background: white;
        color: #475570;
        min-width: 0px;
        width: 110px;
        height: 90px;
    }
    .donate-social__item-icon {
        filter: brightness(0) saturate(100%) invert(30%) sepia(41%) saturate(374%) hue-rotate(180deg) brightness(94%) contrast(88%);
    }
    .donate-partners__items {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
    }
    .donate-partners__title {
        font-size: 24px;
    }
    .donate-partners__item {
        width: auto;
        height: auto;
        border-radius: 16px;
    }
    .donate-partners__item:nth-child(n+5) {
        display: none;
    }   
    .donate-partners__item img {
        height: 100%;
        width: 80px;
        padding: 10px;
        object-fit: contain;
    }
    .donate-write__items {
        overflow: hidden;
    }
    .donate-write__item {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        height: auto;
        max-height: 400px;
    }
}