@keyframes sparkShine {
    0% {
        transform: scale(1);
        filter: brightness(1);
        opacity: 0.9;
    }

    10% {
        transform: scale(1.1);
        filter: brightness(1.6);
        opacity: 1;
    }

    20% {
        transform: scale(1.1);
        filter: brightness(1.2);
        opacity: 0.95;
    }

    30% {
        transform: scale(1.2);
        filter: brightness(1.8);
        opacity: 1;
    }

    40% {
        transform: scale(1);
        filter: brightness(1);
        opacity: 0.9;
    }

    50% {
        transform: scale(1);
        filter: brightness(1);
        opacity: 0.9;
    }
}

@keyframes starFlicker {
    0% {
        transform: scale(1);
        filter: brightness(1);
    }

    5% {
        transform: scale(0.9);
        filter: brightness(0.8);
    }

    10% {
        transform: scale(1.1);
        filter: brightness(1.4);
    }

    30% {
        transform: scale(0.95);
        filter: brightness(0.95);
    }

    60% {
        opacity: 0.9;
        transform: scale(1);
        filter: brightness(1.05);
    }

    100% {
        opacity: 1;
        transform: scale(1);
        filter: brightness(1);
    }
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(50%);
    }
    /* move by half because content is duplicated */
}

/* Achy tilda spring-stretch: horizontal stretch with springy overshoot */
@keyframes tildaSpring {
    0% {
        transform: scaleX(1) scaleY(1);
    }

    20% {
        transform: scaleX(1.25) scaleY(0.85);
    }

    40% {
        transform: scaleX(0.9) scaleY(1.08);
    }

    60% {
        transform: scaleX(1.08) scaleY(0.95);
    }

    80% {
        transform: scaleX(0.98) scaleY(1.02);
    }

    100% {
        transform: scaleX(1) scaleY(1);
    }
}

/* Gentle glow pulse to draw attention to elements with .glowing */
@keyframes glowPulse {
    0% {
        box-shadow: 0 4px 20px rgba(218,72,162,0.6);
        transform: translateY(0);
    }

    50% {
        box-shadow: 0 10px 40px rgba(218,72,162,0.95);
        transform: translateY(-2px);
    }

    100% {
        box-shadow: 0 4px 20px rgba(218,72,162,0.6);
        transform: translateY(0);
    }
}

:root {
    --ahiYellow: #F3BA57;
    --ahiBlue: #0659AD;
    --ahiPink: #DA48A2;
}

body {
    color: var(--ahiBlue);
}

.acyWebFonts {
    font-family: 'Polin', sans-serif;

    & strong {
        font-weight: bold;
    }
}

footer {
    background-color: var(--ahiBlue);

    & ul {
        list-style: none;
        padding: 0;

        & li {
            padding-bottom: .5rem;
        }
    }

    & .footerContactsNav li {
        padding: 0 0 .5rem 0;
    }

    & .footer-copyright {
        font-size: 0.75rem;
    }
}

.page-hero {
    background-image: none !important;
    background-color: var(--ahiBlue);

    &:before {
        content: '';
        position: absolute;
        inset: 0;
        background-image: url('/img/bgLinLighter.svg') !important;
        background-size: contain !important;
        background-repeat: no-repeat;
        background-position: center;
    }

    & h1 {
        font-family: 'Futurism', sans-serif;
        font-weight: bold;
        color: #fff;

        & em {
            font-style: normal;
            color: var(--ahiPink);
        }
    }
}

.breadcrumb li {
    color: var(--ahiBlue);

    &.active {
        color: var(--ahiPink);
    }
}

h2 {
    text-align: center;
    color: var(--ahiBlue);
    font-weight: bold;
    font-family: 'Futurism', sans-serif;

    & em {
        font-style: normal;
        color: var(--ahiPink);
    }
}

.btn {
    font-family: 'Futurism';
    background-color: var(--ahiBlue);
    color: #fff;
    padding: 1px 1rem 4px 1rem;
    border: 0;
    border-radius: 2rem;

    &:hover {
        background-color: #004489;
    }

    &.arrowed:after {
        content: '';
        background-image: url('/img/achyArrow.svg');
        background-repeat: no-repeat;
        background-size: contain;
        display: inline-block;
        height: 14px;
        width: 21px;
        margin-inline-start: .5rem;
        vertical-align: -1px;
    }

    &.btn-outline {
        background-color: transparent;
        border: 2px solid;

        &:hover {
            background-color: transparent;
            color: #004489;
        }
    }
}

.btn-secondary {
    background-color: var(--ahiPink);
    color: #fff;
    font-size: 1.2rem;

    &:hover {
        background-color: #C7378E;
        color: #fff;
    }

    &.btn-xl {
        font-size: 1.2rem;
        padding: .5rem 1.5rem;
        min-width: 190px;
    }

    &.glowing {
        box-shadow: 0px 4px 30px 0px rgba(218, 72, 162, 1);
        animation: glowPulse 1.5s ease-in-out infinite;
    }
}

.btn-info {
    background-color: var(--ahiYellow);
    color: var(--ahiBlue);
    font-size: 1.2rem;
    text-wrap: nowrap;

    &:hover,
    &:active:not(:disabled):not(.disabled) {
        background-color: #e0a642;
        color: var(--ahiBlue);
    }
}

#header .header-logo img {
    max-width: 110px;
    height: auto;
}

& .swiper-button-next {
    &:after {
        content: '';
        display: block;
        min-width: 3rem;
        height: 3rem;
        background-image: url(/img/achyArrowBlue.svg);
        background-repeat: no-repeat;
        background-position: center;
        background-color: #fff;
        border: 2px solid var(--ahiBlue);
        border-radius: 50%;
    }
}

& .swiper-button-prev {
    &:after {
        content: '';
        display: block;
        min-width: 3rem;
        height: 3rem;
        background-image: url(/img/achyArrowBlue.svg);
        background-repeat: no-repeat;
        background-position: center;
        background-color: #fff;
        border: 2px solid var(--ahiBlue);
        border-radius: 50%;
        transform: scaleX(-1);
    }
}

header .navbar {

    & .nav-item {
        position: relative;

        &:nth-child(n+6) { /* temp */
            display: none;
            background: red;
        }

        & .nav-link {
            color: var(--ahiBlue);
            padding: .25rem 1rem;

            &:hover {
                color: var(--ahiPink);
            }

            &.dropdown-toggle::after {
                height: 7px;
                width: 7px;
                vertical-align: .2em;
                border-top: 0;
                border-left: 2px solid;
                border-bottom: 2px solid;
                border-right: 0;
                -webkit-transform: rotate(-45deg);
                -ms-transform: rotate(-45deg);
                transform: rotate(-45deg);
                -webkit-transition: all .15s ease-in-out;
                -o-transition: all .15s ease-in-out;
                transition: all .15s ease-in-out;
            }
        }

        &:hover .dropdown-toggle::after {
            -webkit-transform: rotate(135deg);
            -ms-transform: rotate(135deg);
            transform: rotate(135deg);
        }

        & .dropdown-menu {
            margin-top: 0;
            top: 100% !important;
            background-color: #fff;
            border: none;
            border-radius: 1rem;
            padding: 0;
            box-shadow: 0 0 15px rgba(0,0,0,.1);

            & .dropdown-submenu {

                & .dropdown-item {
                    color: var(--ahiBlue);
                    padding: .5rem 1rem;

                    &:hover,
                    &.active {
                        background-color: transparent;
                        color: var(--ahiPink);
                    }
                }

                &:first-child .dropdown-item {
                    padding-top: 1.25rem;
                }

                &:last-child .dropdown-item {
                    padding-bottom: 1.25rem;
                }
            }
        }
    }

    & .navTools {
        display: flex;
        align-items: center;
        gap: .25rem;

        & .enLinkNav {
            color: var(--ahiBlue);
            padding: .5rem;
        }

        & #secNav {
            & .nav-item {
                padding: 0 .5rem;

                & .nav-link {
                    font-family: 'Futurism';
                    background-color: var(--ahiBlue);
                    color: #fff;
                    padding: 0 1rem 3px 1rem;
                    border-radius: 2rem;
                    text-wrap: nowrap;
                }

                    & .nav-link:not(.dropdown-toggle) {
                        background-color: var(--ahiPink);

                        &:after {
                            content: '';
                            background-image: url('/img/achyArrow.svg');
                            background-repeat: no-repeat;
                            background-size: contain;
                            background-position: center;
                            vertical-align: -3px;
                            display: inline-block;
                            height: 21px;
                            width: 21px;
                            transition: all .3s ease-in-out;
                        }

                        &:hover::after {
                            transform: rotate(30deg);
                            display: inline-block;
                        }
                    }
            }
        }
    }
}

.sticky {
    height: 100%;

    & img {
        position: sticky;
        top: 1rem;
        border-radius: 2.5rem;
    }
}

.pdfInPage {
    height: 90vh;
}

.emptyOverlay {
    position: absolute;
    inset: 0;
}

.grid-section > div:has(.whoAreWe) {
    padding: 1rem 0;
    background-image: url('/img/bgLine.svg');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center 5rem;

    & h2 {
        color: var(--ahiPink);
    }
}

.whoAreWe {
    position: relative;

    & .lineImages {
        & img {
            filter: blur(10px);
        }
    }

    & .btn-secondary {
        margin: 1rem 0;
    }
}

.counters {

    & .counter {
        display: flex;
        flex-direction: column;
        animation-duration: 1800ms !important;

        & strong {
            font-family: 'Futurism', sans-serif;
            font-size: 2.5rem;
        }
    }
}

.powerBubbles {
    background-image: url('/img/achyWings.svg');
    background-size: cover;
    background-position-x: center;
    background-position-y: bottom;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 5rem;

    & .girlsImage {
        position: relative;

        &:before {
            content: '';
            position: absolute;
            inset: 1.25rem;
            border-radius: 50%;
            aspect-ratio: 1/1;
            background-image: linear-gradient(190deg, var(--ahiPink), var(--ahiBlue));
            z-index: -1;
            transform: translate(10px, -50px);
        }

        & .bubbles {
            position: absolute;
            inset: 0;

            & .bubble {
                position: absolute;
                width: 9.4rem;
                height: 6.4rem;
                color: white;
                font-family: 'Futurism', sans-serif;
                font-size: 1.6rem;
                font-weight: 100;
                display: flex;
                align-items: center;
                justify-content: center;
                padding-bottom: 1.5rem;
                z-index: 1;

                &:before {
                    content: '';
                    position: absolute;
                    inset: 0;
                    background-image: url(/img/spcbbl.svg);
                    background-size: contain;
                    background-repeat: no-repeat;
                    background-position: center;
                    z-index: -1;
                }

                &:nth-child(2n+1) {
                    top: 40%;
                    left: -8%;

                    &:before {
                        transform: scaleX(-1);
                    }
                }

                &:nth-child(2n) {
                    bottom: 10%;
                    right: -12%;
                }
            }
        }

        & .spark {
            position: absolute;
            right: -5%;
            top: 5%;
            transform-origin: center;
            animation: sparkShine 3s ease-in-out infinite;

            &.spark2 {
                right: auto;
                left: -10%;
                top: 70%;
                animation-delay: 1.5s;
            }
        }

        & .star {
            position: absolute;
            right: 30%;
            top: -1.25rem;
            transform-origin: center;
            will-change: opacity, transform, filter;
            animation: starFlicker 2s linear infinite;

            &.star2 {
                right: 37.5%;
                top: -1.6rem;
                animation-delay: 1.25s;
            }

            &.star3 {
                right: 35%;
                top: 1.25rem;
                animation-delay: 2.5s;
            }
        }
    }
}

.achyGarins {
    color: #fff;
    font-weight: bold;
    border-radius: 3.125rem;
    padding: 2rem 7.5rem;
    position: relative;
    background-color: var(--ahiBlue);

    &:before {
        content: '';
        position: absolute;
        inset: 0;
        background-image: url('/img/map.svg');
        background-size: 1162px;
        background-position: -10rem center;
        background-repeat: no-repeat;
        opacity: 0.15;
        filter: grayscale(1) brightness(0);
    }

    & h2 {
        color: #fff;
        text-align: right;
    }

    & h3 {
        color: var(--ahiYellow);
    }

    & p {
        text-align: right;
    }


    & .regionGrains {
        display: none;

        & .btn-outline {
            color: var(--ahiYellow);
            font-family: 'Polin';
            padding: .25rem .5rem;

            &:hover {
                color: #fff;
            }
        }
    }

    & .regionGarinsBtns {
        display: flex;
        flex-wrap: wrap;
        gap: .5rem;
    }

    & .mapCol {
        text-align: center;
        position: relative;
        max-height: 862px;

        & .achyMap {
            margin: 2.5rem 0 -8rem 0;
        }

        & .regionBtn {
            position: absolute;


            & .btn-outline {
                font-size: 1.2rem;
                text-wrap: nowrap;

                &:hover {
                    color: var(--ahiBlue);
                    border-color: var(--ahiYellow);
                    background-color: var(--ahiYellow);
                }
            }

            & input[type="radio"] {
                display: none;

                &:checked + label {
                    color: var(--ahiBlue);
                    border-color: var(--ahiYellow);
                    background-color: var(--ahiYellow);
                }
            }


            &:after {
                content: "O";
                position: absolute;
                font-size: 2.3rem;
                font-weight: 400;
                -webkit-text-stroke: 2px #fff;
            }

            & .crvArrow {
                position: absolute;
            }

            &:nth-child(1) {
                top: 7%;
                right: calc(50% + 3.5rem);

                & .crvArrow {
                    left: 100%;
                    transform: scaleX(-1) rotate(-30deg) translateY(-1rem);
                }

                &:after {
                    left: 150%;
                    top: 100%;
                }
            }

            &:nth-child(2) {
                top: 80%;
                left: calc(50% + 4rem);

                & .crvArrow {
                    right: 90%;
                    transform: rotate(20deg) translateY(-4rem);
                }

                &:after {
                    right: 135%;
                    bottom: 100%;
                }
            }

            &:nth-child(3) {
                top: 45%;
                right: calc(50% + 6rem);

                & .crvArrow {
                    left: 60%;
                    transform: scaleX(-1) rotate(-40deg) translateY(-3rem);
                }

                &:after {
                    left: 120%;
                    top: 40%;
                }
            }

            &:nth-child(4) {
                top: 45%;
                left: calc(50% + 5.5rem);

                & .crvArrow {
                    right: 80%;
                    transform: rotate(0deg) translateY(-3rem);
                }

                &:after {
                    right: 127%;
                    top: -70%;
                }
            }
        }
    }
}

.simpleGridItems {
    padding: 2rem 0;

    & .imgPlaceHolder {
        padding-top: 100%;
        border-radius: 2.5rem;
    }

    & .textPart {
        background-color: #fff;
        box-shadow: 0 4px 25px 0 rgba(218, 72, 162, 0.1);
        padding: 1rem;
        border-radius: 2.5rem;
        margin: -2rem 1rem 1rem 1rem;
        font-size: 1rem;
        color: var(--ahiBlue);
        text-align: center;
        position: relative;
        z-index: 1;

        & h3 {
            color: var(--ahiPink);
            font-weight: bold;
            font-size: 1.2rem;
            margin: 0 0 .25rem 0;
        }

        & p {
            text-align: center;
            margin-bottom: 0;
            line-height: 1.5;
        }
    }
}

.achyProjects {

    & .col-xl-3:nth-child(1) .imgPlaceHolder {
        transform: rotate(-4.1deg);
    }

    & .col-xl-3:nth-child(2) .imgPlaceHolder {
        transform: rotate(5deg);
    }

    & .col-xl-3:nth-child(3) .imgPlaceHolder {
        transform: rotate(-4.9deg);
    }

    & .col-xl-3:nth-child(4) .imgPlaceHolder {
        transform: rotate(3.7deg);
    }

    & .simpleGridItems .imgPlaceHolder {
        transition: all .3s ease-in-out;
    }

    & .simpleGridItems:hover .imgPlaceHolder {
        transform: rotate(0deg);
    }
}

.achyEvents {
    position: relative;
    overflow: hidden;
    background-image: linear-gradient(0deg, rgba(218, 72, 162, 0.2), rgba(218, 72, 162, 0));
    padding: 1rem 0;

    &:after {
        content: '';
        position: absolute;
        top: calc(100% - 60px);
        height: 120px;
        right: 50%;
        transform: translateX(50%);
        width: calc(100% + 80px);
        background: #fff;
        border-radius: 100%;
    }

    & p {
        color: var(--ahiBlue);

        & em {
            font-style: normal;
            color: var(--ahiPink);
        }
    }
}

& .chosenEvents {
    padding: 2rem 0 2rem 0;
    background-image: url(/img/bgLine.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center 14rem;

    & .imgPlaceHolder {
        padding-top: 100%;
        border-radius: 2.5rem;
    }

    & .event-text {
        background-color: #fff;
        box-shadow: 0 4px 25px 0 rgba(218, 72, 162, 0.1);
        padding: 1rem;
        border-radius: 2.5rem;
        margin: -2rem 1rem 1rem 1rem;
        font-size: 1rem;
        color: var(--ahiBlue);
        text-align: center;
        position: relative;
        z-index: 1;

        & h3 {
            font-weight: bold;
            font-size: 1.2rem;
            margin: 0 0 .25rem 0;
        }

        & p {
            text-align: center;
            margin-bottom: 0;
            line-height: 1.5;
        }
    }

    & .btn-secondary {
        margin: 1rem 0;
    }
}

.home {

    & .chosenEvents {
        padding: 2rem 0 30rem 0;
    }
}

.chosenEvents {
    & .col-xl:nth-child(1) .imgPlaceHolder {
        transform: rotate(-4.1deg);
    }

    & .col-xl:nth-child(2) .imgPlaceHolder {
        transform: rotate(5deg);
    }

    & .col-xl:nth-child(3) .imgPlaceHolder {
        transform: rotate(-4.9deg);
    }

    & .col-xl:nth-child(4) .imgPlaceHolder {
        transform: rotate(3.7deg);
    }

    & .eventBlock .imgPlaceHolder {
        transition: all .3s ease-in-out;
    }

    & .eventBlock:hover .imgPlaceHolder {
        transform: rotate(0deg);
    }
}

.achyStories {
    position: relative;
    margin-top: -30rem;
    padding-bottom: 12rem;

    & .stories-swiper {
        & .swiper-slide {
            &:not(.swiper-slide-active) {
                opacity: 0 !important;
            }

            & .stories-item {
                min-height: 82vh;
                padding-top: 4rem;
                padding-right: 15%;
                display: flex;
                justify-content: center;


                .stories-img-wrap {
                    position: relative;
                    background-color: var(--ahiBlue);
                    width: 610px;
                    height: 680px;
                    border-radius: 3.5rem;
                    transform: rotate(6.4deg);

                    & .achyTilda {
                        width: 133px;
                        height: 43px;
                        position: absolute;
                        top: 2.5rem;
                        left: -4.5rem;
                        transform-origin: center;
                        animation: tildaSpring 4s cubic-bezier(.4, .8, .4, 1) infinite;
                    }

                    & .spark {
                        position: absolute;
                        bottom: 0;
                        right: .5rem;
                        transform-origin: center;
                        animation: sparkShine 3s ease-in-out infinite;
                    }

                    & .stories-img {
                        width: 100%;
                        height: 100%;
                        position: relative;
                        overflow: hidden;

                        & img {
                            position: absolute;
                            bottom: -2rem;
                            transform: rotate(-6.4deg);
                            max-width: 670px;
                        }
                    }

                    & .stories-title {
                        position: absolute;
                        color: var(--ahiBlue);
                        left: 110%;
                        bottom: 5rem;
                        width: 180px;
                        text-align: left;
                        transform: rotate(-6.4deg);

                        & svg {
                            position: absolute;
                            left: 0;
                            bottom: 100%;
                        }
                    }

                    & .stories-name {
                        position: absolute;
                        color: var(--ahiBlue);
                        right: 110%;
                        bottom: 5rem;
                        width: 180px;
                        transform: rotate(-6.4deg);

                        & svg {
                            position: absolute;
                            right: 0;
                            bottom: 100%;
                            transform: scaleX(-1);
                        }
                    }
                }


                & .stories-quote {
                    position: absolute;
                    top: 0;
                    left: 53.5%;
                    width: 100%;
                    max-width: 589px;
                    min-height: 458px;
                    padding: 3rem;
                    background-image: url(/img/achyQuote.svg);
                    background-position: center;
                    background-size: contain;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    font-family: 'Futurism', sans-serif;

                    & p {
                        text-align: center;
                        font-size: 1.2rem;
                        line-height: 1.5rem;
                        color: #fff;
                    }
                }
            }
        }

        & .swiper-button-next {
            position: absolute;
            right: 10%;
            top: 80%;
        }

        & .swiper-button-prev {
            position: absolute;
            right: calc(10% + 80px);
            top: 80%;
        }
    }

    & .runningText {
        font-family: 'Futurism', sans-serif;
        font-size: 12.5rem;
        font-weight: bold;
        color: rgba(6, 89, 173, 0.04);
        text-wrap: nowrap;
        position: absolute;
        height: 10rem;
        top: 90%;
        pointer-events: none;
        overflow: hidden;
        z-index: 0;
        display: flex;
        align-items: center;
    }

    .runningText__inner {
        display: inline-flex;
        white-space: nowrap;
        will-change: transform;
        animation: marquee var(--marquee-duration, 30s) linear infinite;
    }

        .runningText__inner span {
            display: inline-block;
            padding-right: 4rem; /* gap between repeats */
            pointer-events: auto; /* if you need interactions */
        }

    .runningText:hover .runningText__inner {
        animation-play-state: paused;
    }
}

.achyContact {

    & p {
        & em {
            font-style: normal;
            color: var(--ahiPink);
        }
    }
}

.floatingLabelsForm {
    & input.form-control {
        border: 2px solid var(--ahiBlue);
        border-radius: 3rem;
        color: var(--ahiBlue);
        font-family: 'Futurism', sans-serif;
        font-size: 1.2rem;
        padding: 0.5rem 1.25rem;
        height: calc(2rem + .75rem + 2px);
    }

    & textarea.form-control {
        border: 2px solid var(--ahiBlue);
        border-radius: 1.5rem;
        color: var(--ahiBlue);
        font-family: 'Futurism', sans-serif;
        font-size: 1.2rem;
        padding: 0.5rem 1.25rem;
    }

    & .form-group {
        & label:not(.error) {
            font-family: 'Futurism', sans-serif;
            font-size: 1.2rem;
            padding-right: 1.25rem;
            transform: translateY(2.5rem);
        }

        & input:focus ~ label.floatingLabel,
        & textarea:focus ~ label.floatingLabel,
        & select:focus ~ label.floatingLabel,
        & input.valid ~ label.floatingLabel,
        & textarea.valid ~ label.floatingLabel,
        & select.valid ~ label.floatingLabel,
        & input.input-validation-error ~ label.floatingLabel,
        & textarea.input-validation-error ~ label.floatingLabel,
        & select.input-validation-error ~ label.floatingLabel,
        & input.error ~ label.floatingLabel,
        & textarea.error ~ label.floatingLabel,
        & select.error ~ label.floatingLabel {
            color: var(--ahiPink);
        }

        & span.field-validation-error, & label.error {
            font-size: .75rem;
        }
    }
}

.staff-swiper {
    padding-top: 1.5rem;

    & .staff-item {
        & .staff-img {
            border-radius: 2.5rem;
        }

        & .staff-name {
            padding-top: 0.5rem;
            font-weight: bold;
            color: var(--ahiPink);
            font-size: 1.25rem;
            text-align: center;
        }

        & .staff-title {
            font-size: 1rem;
            text-align: center;
        }
    }
}

.hide2026 {
    display: none; /* temp */
}

.donContent {
    background: linear-gradient(0.56deg, rgba(218, 72, 162, 0.2) 0.04%, rgba(255, 255, 255, 0.2) 82.37%);
    padding: 2.5rem 2.5rem 10rem 2.5rem;
    position: relative;

    & .preOptionsNote {
        position: absolute;
        bottom: 2rem;
        text-align: center;
        width: 100%;
    }
}

.donIntro {
    max-width: 1060px;
    padding-bottom: 3rem;
    margin: 0 auto;

    & h2 {
        padding-top: 2rem;
    }

    & p {
        text-align: center;
        font-size: 1.2rem;

        & em {
            font-style: normal;
            color: var(--ahiPink);
        }
    }
}

.donProjects {
    display: flex;
    flex-direction: column;
    gap: 5rem;

    & .donProject {
        background-color: #fff;
        border-radius: 2.5rem;
        display: flex;
        align-items: center;
        box-shadow: 0px 4px 50px 0px rgba(218, 72, 162, 0.1);

        & .img-wrap {
            padding: 0 4rem 0 7rem;

            & img {
                border-radius: 2.5rem;
                transform: rotate(4.5deg);
                max-height: 330px;
                margin: -2rem 0;
            }
        }

        &:nth-child(even) {
            & .img-wrap {
                & img {
                    transform: rotate(-4.5deg)
                }
            }
        }

        & .text-wrap {
            padding: 2rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
            max-width: 650px;

            & h3 {
                color: var(--ahiBlue);
                font-weight: bold;
                font-size: 2.4rem;
                font-family: 'Futurism', sans-serif;
            }

            & p {
                color: var(--ahiBlue);
                font-size: 1.2rem;
                line-height: 1.5;
                font-weight: bold;
            }
        }

        & .action-wrap {
            display: flex;
            justify-content: end;
            flex-grow: 1;
            padding: 2.75rem;
        }
    }
}

.donOptions {
    padding: 2.5rem;

    & .row {
        padding: 4rem 0 0 0;
    }

    & .donOpt {
        background-color: var(--ahiBlue);
        color: #fff;
        border-radius: 3.5rem;
        padding: 4rem 2rem 2rem 2rem;
        text-align: center;
        position: relative;

        & h3 {
            font-size: 1.6rem;
            font-weight: bold;
        }

        &:hover {
            & .btn {
                box-shadow: 0px 4px 30px 0px rgba(218, 72, 162, 1);
            }

            & i {
                transform: translate(50%, -50%) rotate(30deg);
            }
        }

        & i {
            background-image: linear-gradient(42.5deg, var(--ahiPink) 12.98%, var(--ahiBlue) 88.2%);
            transition: all .1s ease-in-out;
            display: inline-block;
            width: 6.5rem;
            height: 6.5rem;
            border-radius: 50%;
            position: absolute;
            top: 0;
            right: 30%;
            transform: translate(50%, -50%);
            display: flex;
            justify-content: center;
            align-items: center;

            &[class^='simpleIcon-']:before {
                content: '' !important;
                background-repeat: no-repeat;
                background-size: 78px;
                background-position: center;
                width: 4rem;
                height: 4rem;
                display: block;
            }

            &.simpleIcon-credit-card:before {
                background-image: url('/img/achyCc.svg');
            }

            &.simpleIcon-note:before {
                background-image: url('/img/achyCheck.svg');
                background-size: 72px;
            }

            &.simpleIcon-wallet:before {
                background-image: url('/img/achyBills.svg');
                background-size: 80px;
            }

            &.simpleIcon-phone:before {
                background-image: url('/img/achyPhone.svg');
                background-size: 70px;
                width: 4rem;
                height: 4rem;
            }
        }
    }
}

.garinsRow {
    padding-bottom: 1.5rem;

    & .garinBlock {
        box-shadow: 0px 4px 25px 0px rgba(218, 72, 162, 0.1);
        border-radius: 1.5rem;
        transition: all .2s ease-in-out;

        & .garinBlockTitle {
            padding: 0 1.25rem 0 1.25rem;
            background-color: var(--ahiBlue);
            color: #fff;

            & h3 {
                font-family: 'Futurism', sans-serif;
                font-weight: bold;
                font-size: 2.5rem;
            }

            & i {
                font-size: 2rem;
                display: flex;
                height: 100%;
                justify-content: center;
                align-items: center;
            }

            & .regionName {
                padding: .5rem;
                position: absolute;
                left: 0;
                bottom: .5rem;
                border-radius: 1rem 1rem 1rem 0;
                display: flex;
                justify-content: center;
                align-items: center;
                font-size: .9rem;
            }
        }


        & .imgPlaceHolder {
            border-radius: 2.5rem;
            padding-top: 100%;
            transform: rotate(6deg);
            margin: -.25rem -1rem -1rem 0;
            transition: all .2s ease-in-out;
        }

        &:hover {
            transform: none;

            & .imgPlaceHolder {
                margin: -.25rem -.25rem -1rem 0;
            }
        }

        & div:has(>.spoiler) {
            padding: 1rem;
            text-align: center;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;

            & .spoiler {
                padding-bottom: 1rem;
            }
        }
    }
}

.kbSideNav {

    & .nav-tabs {
        border-bottom: 1px solid var(--ahiBlue);

        & .nav-item .nav-link {
            color: var(--ahiBlue);
            background-color: #fff;
            border-color: var(--ahiBlue) var(--ahiBlue) #fff;
            border-top-right-radius: .5rem;
            border-top-left-radius: .5rem;
        }

        & .nav-tabs .nav-item.show .nav-link,
        & .nav-tabs .nav-link.active {
            color: var(--ahiBlue);
            background-color: #fff;
            border-color: var(--ahiBlue) var(--ahiBlue) #fff;
        }
    }

    & .searchBar {
        & .input-group {
            padding-bottom: .5rem;

            & .form-control {
                border: 2px solid var(--ahiBlue);
                border-radius: 3rem;
                color: var(--ahiBlue);
                font-family: 'Futurism', sans-serif;
                font-size: 1.2rem;
                padding: 0.5rem 1.25rem;

                &::placeholder {
                    color: var(--ahiBlue);
                    opacity: 1;
                }
            }
        }

        & .lessonTypeRadio {
            margin-right: 0px;
            margin-left: 0px;

            & .col {
                padding-left: 2px;
                padding-right: 2px;
            }

            & .custom-radio {
                padding-right: 0px;

                & .custom-control-label {
                    z-index: 0;
                    font-size: 0.75rem;
                    line-height: 1rem;
                    cursor: pointer;
                    padding: 3px;
                    display: flex;
                    flex-direction: column;

                    & i {
                        font-size: 1.5rem;
                    }

                    &:before {
                        width: 100%;
                        height: 100%;
                        background-color: transparent;
                        border: 1px solid var(--ahiBlue);
                        border-radius: 0;
                        z-index: -1;
                        right: 0;
                        top: 0;
                    }
                }

                & .custom-control-input:checked ~ .custom-control-label {
                    color: white;
                }

                & .custom-control-input ~ .custom-control-label::after {
                    width: 100%;
                    height: 100%;
                    z-index: -1;
                    right: 0;
                    top: 0;
                }

                & .custom-control-input:checked ~ .custom-control-label::after {
                    background-color: var(--ahiBlue);
                    background-image: none;
                    color: white;
                }
            }
        }
    }

    & .sideNav {
        & > .nav > li > a {
            background-color: var(--ahiBlue);
            border-radius: 1.5rem;
            box-shadow: 0px 4px 25px 0px rgba(218, 72, 162, 0.1);
        }

        & .subCats > li {
            padding-inline-start: 1rem;

            & > a {
                color: var(--ahiBlue);
                border-radius: 1.5rem;
                background-color: #fff;
                box-shadow: 0px 4px 25px 0px rgba(218, 72, 162, 0.1);
            }
        }

        & .subSubCats > li {
            padding-inline-start: 2rem;

            & > a {
                color: var(--ahiBlue);
                border-radius: 1.5rem;
                box-shadow: 0px 4px 25px 0px rgba(218, 72, 162, 0.1);
                background-color: #fff;
            }
        }
    }
}

.ImgMaarachim img {
    border-radius: 2.5rem;
}

.lessonBlock {
    box-shadow: 0px 4px 25px 0px rgba(218, 72, 162, 0.1);
    border-radius: 1.5rem;
    border: 1px solid rgba(218, 72, 162, 0.1);
    transition: all .2s ease-in-out;
    text-align: center;
    padding: .5rem .5rem 2.5rem .5rem;
    position: relative;

    &:hover {
        border: 1px solid rgba(218, 72, 162, 0.3);
    }

    & h3 {
        font-family: 'Futurism', sans-serif;
        font-weight: bold;
        font-size: 1.5rem;
    }

    & a {
        position: initial;

        & i {
            position: absolute;
            bottom: 0;
            right: 0;
            font-size: 1.8rem;
            padding: .5rem .9rem;
        }
    }

    & .lessonInfo .btn-secondary {
        padding: .25rem 1rem;
        border-radius: 0 1.5rem 0 1.5rem;
        position: absolute;
        left: 0;
        bottom: 0;
        transition: all .4s ease-in-out;

        &.arrowed:after {
            margin-inline-start: 0;
        }
    }
}
.pagination {
    & li:first-child .page-link {
        border-radius: 0 1.5rem 1.5rem 0;
    }

    & li:last-child .page-link {
        border-radius: 1.5rem 0 0 1.5rem;
    }

    & .page-link {
        color: var(--ahiBlue);
    }

    & .page-item {
        & .page-link {
            line-height: 1.25;
            color: var(--ahiBlue);
        }

        &.active .page-link {
            z-index: 3;
            color: #fff;
            background-color: var(--ahiBlue);
            border-color: var(--ahiBlue);
        }
    }
}

.alert-info {
    color: var(--ahiPink);
    background-color: #fff;
    border-color: rgba(218, 72, 162, 0.3);
    box-shadow: 0px 4px 25px 0px rgba(218, 72, 162, 0.1);
}
