#fundraiserSuccessTipsHero {
    background-image: url("/assets/img/fundraiser/fundraiser-success-tips-hero.png");
    height: 636px;
    background-position: left;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    background-color: #48321E;
    align-items: center;
}

#fundraiserSuccessTipsHero::after {
    left: 0;
    content: "";
    background: var(--lime-green);
    position: absolute;
    width: 100%;
    height: 150px;
    clip-path: polygon(0 0, 100% 36%, 100% 100%, 0% 100%);
    bottom: 0;
}

#fundraiserSuccessTipsHeroInner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 12px 50px 12px;
}

#fundraiserSuccessTipsHeroTitleWrapper {
    display: flex;
    align-items: center;
    gap: 20px;
}

#fundraiserSuccessTipsHeroTitle {
    font-size: 74px;
    font-weight: 600;
    color: #FFFFFF;
    line-height: 1;
    margin: 0;
    max-width: 300px;
}

#fundraiserSuccessTipsHeroIcon {
    max-width: 200px;
}

#fundraiserSuccessTipsSteps {
    background: var(--lime-green);
    position: relative;
    z-index: 2;
}

#fundraiserSuccessTipsStepsInner {
    position: relative;
    top: -120px;
}

#fundraiserSuccessTipsStepsWrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.fundraiserSuccessTipStep {
    display: flex;
    align-items: center;
    border-bottom: 2px solid #FFFFFF;
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.fundraiserSuccessTipStep:first-child {
    padding-top: 0;
}

.fundraiserSuccessTipStep:last-of-type {
    border-bottom: none;
}

.fundraiserSuccessTipStep:nth-child(even) {
    flex-direction: row-reverse;
    text-align: right;
}

.fundraiserSuccessTipStepIcon {
    width: 100px;
    height: 100px;
}

.fundraiserSuccessTipStepText {
    font-size: 33px;
    font-weight: 600;
    color: #FFFFFF;
}

#fundraiserSuccessTipStepsActionsWrapper {
    max-width: 1200px;
    margin: 0 auto;
}

#fundraiserSuccessTipStepsActions {
    display: flex;
    align-items: center;
    gap: 50px;
    max-width: 60%;
    position: relative;
    padding: 0 20px;
}

#fundraiserSuccessTipStepsActions::after {
    content: "";
    width: calc(60% - 44px);
    left: calc(100% + 44px);
    height: 2px;
    background: #FFFFFF;
    position: absolute;
}

.fundraiserSuccessTipStepsAction {
    background: #FFFFFF;
    color: var(--primary-green);
    border-radius: 100vh;
}


.fundraiserSuccessTipStepsAction:hover {
    background: #FFFFFF;
    color: var(--primary-green);
}

@media (max-width: 800px) {
    #fundraiserSuccessTipsHero {
        background-image: url("/assets/img/fundraiser/fundraiser-success-tips-hero-m.jpg");
        height: 598px;
        background-position: center bottom 60px;
    }

    #fundraiserSuccessTipsHeroInner {
        align-items: flex-start;
        padding: 20px 16px 0 16px;
    }

    #fundraiserSuccessTipsHeroTitleWrapper {
        gap: 0;
    }

    #fundraiserSuccessTipsHeroTitle {
        font-size: 50px;
        max-width: 200px;
    }

    #fundraiserSuccessTipsHeroIcon {
        max-width: 100px;
    }

    .fundraiserSuccessTipStep {
        flex-direction: column;
        align-items: flex-start;
    }

    .fundraiserSuccessTipStep:nth-child(even) {
        flex-direction: column;
        align-items: flex-end;
    }

    #fundraiserSuccessTipStepsActions {
        flex-direction: column;
        justify-content: center;
        gap: 20px;
        max-width: 100%;
    }

    #fundraiserSuccessTipStepsActions::after {
        content: none;
    }
}

@media (max-width: 480px) {
    #fundraiserSuccessTipsHero {
        height: 350px;
        background-position: top;
        background-size: contain;
    }

    #fundraiserSuccessTipsHero::after {
        height: 120px;
    }

    #fundraiserSuccessTipsStepsInner {
        top: -100px
    }
}