/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
.hamburger {
    padding: 0 0;
    display: inline-block;
    cursor: pointer;
    transition-property: opacity, filter;
    transition-duration: 0.15s;
    transition-timing-function: linear;
    font: inherit;
    color: inherit;
    text-transform: none;
    background-color: transparent;
    border: 0;
    margin: 0;
    overflow: visible;
}
.hamburger:hover {
    opacity: 1;
}
.hamburger.is-active:hover {
    opacity: 1;
}
.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
    background-color: #fff;
}

.hamburger-box {
    width: 23px;
    height: 14.5px;
    display: inline-block;
    position: relative;
}

.hamburger-inner {
    display: block;
    top: 50%;
    margin-top: -0.75px;
}
.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
    width: 23px;
    height: 1.5px;
    background-color: #fff;
    border-radius: 0px;
    position: absolute;
    transition-property: transform;
    transition-duration: 0.15s;
    transition-timing-function: ease;
}
.hamburger-inner::before, .hamburger-inner::after {
    content: "";
    display: block;
}
.hamburger-inner::before {
    top: -6.5px;
}
.hamburger-inner::after {
    bottom: -6.5px;
}

/*
 * 3DX
 */
.hamburger--3dx .hamburger-box {
    perspective: 46px;
}
.hamburger--3dx .hamburger-inner {
    transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dx .hamburger-inner::before, .hamburger--3dx .hamburger-inner::after {
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dx.is-active .hamburger-inner {
    background-color: transparent !important;
    transform: rotateY(180deg);
}
.hamburger--3dx.is-active .hamburger-inner::before {
    transform: translate3d(0, 6.5px, 0) rotate(45deg);
}
.hamburger--3dx.is-active .hamburger-inner::after {
    transform: translate3d(0, -6.5px, 0) rotate(-45deg);
}

/*
 * 3DX Reverse
 */
.hamburger--3dx-r .hamburger-box {
    perspective: 46px;
}
.hamburger--3dx-r .hamburger-inner {
    transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dx-r .hamburger-inner::before, .hamburger--3dx-r .hamburger-inner::after {
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dx-r.is-active .hamburger-inner {
    background-color: transparent !important;
    transform: rotateY(-180deg);
}
.hamburger--3dx-r.is-active .hamburger-inner::before {
    transform: translate3d(0, 6.5px, 0) rotate(45deg);
}
.hamburger--3dx-r.is-active .hamburger-inner::after {
    transform: translate3d(0, -6.5px, 0) rotate(-45deg);
}

/*
 * 3DY
 */
.hamburger--3dy .hamburger-box {
    perspective: 46px;
}
.hamburger--3dy .hamburger-inner {
    transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dy .hamburger-inner::before, .hamburger--3dy .hamburger-inner::after {
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dy.is-active .hamburger-inner {
    background-color: transparent !important;
    transform: rotateX(-180deg);
}
.hamburger--3dy.is-active .hamburger-inner::before {
    transform: translate3d(0, 6.5px, 0) rotate(45deg);
}
.hamburger--3dy.is-active .hamburger-inner::after {
    transform: translate3d(0, -6.5px, 0) rotate(-45deg);
}

/*
 * 3DY Reverse
 */
.hamburger--3dy-r .hamburger-box {
    perspective: 46px;
}
.hamburger--3dy-r .hamburger-inner {
    transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dy-r .hamburger-inner::before, .hamburger--3dy-r .hamburger-inner::after {
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dy-r.is-active .hamburger-inner {
    background-color: transparent !important;
    transform: rotateX(180deg);
}
.hamburger--3dy-r.is-active .hamburger-inner::before {
    transform: translate3d(0, 6.5px, 0) rotate(45deg);
}
.hamburger--3dy-r.is-active .hamburger-inner::after {
    transform: translate3d(0, -6.5px, 0) rotate(-45deg);
}

/*
 * 3DXY
 */
.hamburger--3dxy .hamburger-box {
    perspective: 46px;
}
.hamburger--3dxy .hamburger-inner {
    transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dxy .hamburger-inner::before, .hamburger--3dxy .hamburger-inner::after {
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dxy.is-active .hamburger-inner {
    background-color: transparent !important;
    transform: rotateX(180deg) rotateY(180deg);
}
.hamburger--3dxy.is-active .hamburger-inner::before {
    transform: translate3d(0, 6.5px, 0) rotate(45deg);
}
.hamburger--3dxy.is-active .hamburger-inner::after {
    transform: translate3d(0, -6.5px, 0) rotate(-45deg);
}

/*
 * 3DXY Reverse
 */
.hamburger--3dxy-r .hamburger-box {
    perspective: 46px;
}
.hamburger--3dxy-r .hamburger-inner {
    transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dxy-r .hamburger-inner::before, .hamburger--3dxy-r .hamburger-inner::after {
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dxy-r.is-active .hamburger-inner {
    background-color: transparent !important;
    transform: rotateX(180deg) rotateY(180deg) rotateZ(-180deg);
}
.hamburger--3dxy-r.is-active .hamburger-inner::before {
    transform: translate3d(0, 6.5px, 0) rotate(45deg);
}
.hamburger--3dxy-r.is-active .hamburger-inner::after {
    transform: translate3d(0, -6.5px, 0) rotate(-45deg);
}

/*
 * Arrow
 */
.hamburger--arrow.is-active .hamburger-inner::before {
    transform: translate3d(-4.6px, 0, 0) rotate(-45deg) scale(0.7, 1);
}
.hamburger--arrow.is-active .hamburger-inner::after {
    transform: translate3d(-4.6px, 0, 0) rotate(45deg) scale(0.7, 1);
}

/*
 * Arrow Right
 */
.hamburger--arrow-r.is-active .hamburger-inner::before {
    transform: translate3d(4.6px, 0, 0) rotate(45deg) scale(0.7, 1);
}
.hamburger--arrow-r.is-active .hamburger-inner::after {
    transform: translate3d(4.6px, 0, 0) rotate(-45deg) scale(0.7, 1);
}

/*
 * Arrow Alt
 */
.hamburger--arrowalt .hamburger-inner::before {
    transition: top 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.hamburger--arrowalt .hamburger-inner::after {
    transition: bottom 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.hamburger--arrowalt.is-active .hamburger-inner::before {
    top: 0;
    transform: translate3d(-4.6px, -5.75px, 0) rotate(-45deg) scale(0.7, 1);
    transition: top 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}
.hamburger--arrowalt.is-active .hamburger-inner::after {
    bottom: 0;
    transform: translate3d(-4.6px, 5.75px, 0) rotate(45deg) scale(0.7, 1);
    transition: bottom 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}

/*
 * Arrow Alt Right
 */
.hamburger--arrowalt-r .hamburger-inner::before {
    transition: top 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.hamburger--arrowalt-r .hamburger-inner::after {
    transition: bottom 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.hamburger--arrowalt-r.is-active .hamburger-inner::before {
    top: 0;
    transform: translate3d(4.6px, -5.75px, 0) rotate(45deg) scale(0.7, 1);
    transition: top 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}
.hamburger--arrowalt-r.is-active .hamburger-inner::after {
    bottom: 0;
    transform: translate3d(4.6px, 5.75px, 0) rotate(-45deg) scale(0.7, 1);
    transition: bottom 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}

/*
 * Arrow Turn
 */
.hamburger--arrowturn.is-active .hamburger-inner {
    transform: rotate(-180deg);
}
.hamburger--arrowturn.is-active .hamburger-inner::before {
    transform: translate3d(8px, 0, 0) rotate(45deg) scale(0.7, 1);
}
.hamburger--arrowturn.is-active .hamburger-inner::after {
    transform: translate3d(8px, 0, 0) rotate(-45deg) scale(0.7, 1);
}

/*
 * Arrow Turn Right
 */
.hamburger--arrowturn-r.is-active .hamburger-inner {
    transform: rotate(-180deg);
}
.hamburger--arrowturn-r.is-active .hamburger-inner::before {
    transform: translate3d(-8px, 0, 0) rotate(-45deg) scale(0.7, 1);
}
.hamburger--arrowturn-r.is-active .hamburger-inner::after {
    transform: translate3d(-8px, 0, 0) rotate(45deg) scale(0.7, 1);
}

/*
 * Boring
 */
.hamburger--boring .hamburger-inner, .hamburger--boring .hamburger-inner::before, .hamburger--boring .hamburger-inner::after {
    transition-property: none;
}
.hamburger--boring.is-active .hamburger-inner {
    transform: rotate(45deg);
}
.hamburger--boring.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
}
.hamburger--boring.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg);
}

/*
 * Collapse
 */
.hamburger--collapse .hamburger-inner {
    top: auto;
    bottom: 0;
    transition-duration: 0.13s;
    transition-delay: 0.13s;
    transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--collapse .hamburger-inner::after {
    top: -13px;
    transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear;
}
.hamburger--collapse .hamburger-inner::before {
    transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--collapse.is-active .hamburger-inner {
    transform: translate3d(0, -6.5px, 0) rotate(-45deg);
    transition-delay: 0.22s;
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--collapse.is-active .hamburger-inner::after {
    top: 0;
    opacity: 0;
    transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear;
}
.hamburger--collapse.is-active .hamburger-inner::before {
    top: 0;
    transform: rotate(-90deg);
    transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Collapse Reverse
 */
.hamburger--collapse-r .hamburger-inner {
    top: auto;
    bottom: 0;
    transition-duration: 0.13s;
    transition-delay: 0.13s;
    transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--collapse-r .hamburger-inner::after {
    top: -13px;
    transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear;
}
.hamburger--collapse-r .hamburger-inner::before {
    transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--collapse-r.is-active .hamburger-inner {
    transform: translate3d(0, -6.5px, 0) rotate(45deg);
    transition-delay: 0.22s;
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--collapse-r.is-active .hamburger-inner::after {
    top: 0;
    opacity: 0;
    transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear;
}
.hamburger--collapse-r.is-active .hamburger-inner::before {
    top: 0;
    transform: rotate(90deg);
    transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Elastic
 */
.hamburger--elastic .hamburger-inner {
    top: 0.75px;
    transition-duration: 0.275s;
    transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.hamburger--elastic .hamburger-inner::before {
    top: 6.5px;
    transition: opacity 0.125s 0.275s ease;
}
.hamburger--elastic .hamburger-inner::after {
    top: 13px;
    transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.hamburger--elastic.is-active .hamburger-inner {
    transform: translate3d(0, 6.5px, 0) rotate(135deg);
    transition-delay: 0.075s;
}
.hamburger--elastic.is-active .hamburger-inner::before {
    transition-delay: 0s;
    opacity: 0;
}
.hamburger--elastic.is-active .hamburger-inner::after {
    transform: translate3d(0, -13px, 0) rotate(-270deg);
    transition-delay: 0.075s;
}

/*
 * Elastic Reverse
 */
.hamburger--elastic-r .hamburger-inner {
    top: 0.75px;
    transition-duration: 0.275s;
    transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.hamburger--elastic-r .hamburger-inner::before {
    top: 6.5px;
    transition: opacity 0.125s 0.275s ease;
}
.hamburger--elastic-r .hamburger-inner::after {
    top: 13px;
    transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.hamburger--elastic-r.is-active .hamburger-inner {
    transform: translate3d(0, 6.5px, 0) rotate(-135deg);
    transition-delay: 0.075s;
}
.hamburger--elastic-r.is-active .hamburger-inner::before {
    transition-delay: 0s;
    opacity: 0;
}
.hamburger--elastic-r.is-active .hamburger-inner::after {
    transform: translate3d(0, -13px, 0) rotate(270deg);
    transition-delay: 0.075s;
}

/*
 * Emphatic
 */
.hamburger--emphatic {
    overflow: hidden;
}
.hamburger--emphatic .hamburger-inner {
    transition: background-color 0.125s 0.175s ease-in;
}
.hamburger--emphatic .hamburger-inner::before {
    left: 0;
    transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, left 0.125s 0.175s ease-in;
}
.hamburger--emphatic .hamburger-inner::after {
    top: 6.5px;
    right: 0;
    transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, right 0.125s 0.175s ease-in;
}
.hamburger--emphatic.is-active .hamburger-inner {
    transition-delay: 0s;
    transition-timing-function: ease-out;
    background-color: transparent !important;
}
.hamburger--emphatic.is-active .hamburger-inner::before {
    left: -46px;
    top: -46px;
    transform: translate3d(46px, 46px, 0) rotate(45deg);
    transition: left 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.hamburger--emphatic.is-active .hamburger-inner::after {
    right: -46px;
    top: -46px;
    transform: translate3d(-46px, 46px, 0) rotate(-45deg);
    transition: right 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}

/*
 * Emphatic Reverse
 */
.hamburger--emphatic-r {
    overflow: hidden;
}
.hamburger--emphatic-r .hamburger-inner {
    transition: background-color 0.125s 0.175s ease-in;
}
.hamburger--emphatic-r .hamburger-inner::before {
    left: 0;
    transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, left 0.125s 0.175s ease-in;
}
.hamburger--emphatic-r .hamburger-inner::after {
    top: 6.5px;
    right: 0;
    transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, right 0.125s 0.175s ease-in;
}
.hamburger--emphatic-r.is-active .hamburger-inner {
    transition-delay: 0s;
    transition-timing-function: ease-out;
    background-color: transparent !important;
}
.hamburger--emphatic-r.is-active .hamburger-inner::before {
    left: -46px;
    top: 46px;
    transform: translate3d(46px, -46px, 0) rotate(-45deg);
    transition: left 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.hamburger--emphatic-r.is-active .hamburger-inner::after {
    right: -46px;
    top: 46px;
    transform: translate3d(-46px, -46px, 0) rotate(45deg);
    transition: right 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}

/*
 * Minus
 */
.hamburger--minus .hamburger-inner::before, .hamburger--minus .hamburger-inner::after {
    transition: bottom 0.08s 0s ease-out, top 0.08s 0s ease-out, opacity 0s linear;
}
.hamburger--minus.is-active .hamburger-inner::before, .hamburger--minus.is-active .hamburger-inner::after {
    opacity: 0;
    transition: bottom 0.08s ease-out, top 0.08s ease-out, opacity 0s 0.08s linear;
}
.hamburger--minus.is-active .hamburger-inner::before {
    top: 0;
}
.hamburger--minus.is-active .hamburger-inner::after {
    bottom: 0;
}

/*
 * Slider
 */
.hamburger--slider .hamburger-inner {
    top: 0.75px;
}
.hamburger--slider .hamburger-inner::before {
    top: 6.5px;
    transition-property: transform, opacity;
    transition-timing-function: ease;
    transition-duration: 0.15s;
}
.hamburger--slider .hamburger-inner::after {
    top: 13px;
}
.hamburger--slider.is-active .hamburger-inner {
    transform: translate3d(0, 6.5px, 0) rotate(45deg);
}
.hamburger--slider.is-active .hamburger-inner::before {
    transform: rotate(-45deg) translate3d(-3.2857142857px, -5px, 0);
    opacity: 0;
}
.hamburger--slider.is-active .hamburger-inner::after {
    transform: translate3d(0, -13px, 0) rotate(-90deg);
}

/*
 * Slider Reverse
 */
.hamburger--slider-r .hamburger-inner {
    top: 0.75px;
}
.hamburger--slider-r .hamburger-inner::before {
    top: 6.5px;
    transition-property: transform, opacity;
    transition-timing-function: ease;
    transition-duration: 0.15s;
}
.hamburger--slider-r .hamburger-inner::after {
    top: 13px;
}
.hamburger--slider-r.is-active .hamburger-inner {
    transform: translate3d(0, 6.5px, 0) rotate(-45deg);
}
.hamburger--slider-r.is-active .hamburger-inner::before {
    transform: rotate(45deg) translate3d(3.2857142857px, -5px, 0);
    opacity: 0;
}
.hamburger--slider-r.is-active .hamburger-inner::after {
    transform: translate3d(0, -13px, 0) rotate(90deg);
}

/*
 * Spin
 */
.hamburger--spin .hamburger-inner {
    transition-duration: 0.22s;
    transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spin .hamburger-inner::before {
    transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
}
.hamburger--spin .hamburger-inner::after {
    transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spin.is-active .hamburger-inner {
    transform: rotate(225deg);
    transition-delay: 0.12s;
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--spin.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
    transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
}
.hamburger--spin.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg);
    transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Spin Reverse
 */
.hamburger--spin-r .hamburger-inner {
    transition-duration: 0.22s;
    transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spin-r .hamburger-inner::before {
    transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
}
.hamburger--spin-r .hamburger-inner::after {
    transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spin-r.is-active .hamburger-inner {
    transform: rotate(-225deg);
    transition-delay: 0.12s;
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--spin-r.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
    transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
}
.hamburger--spin-r.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(90deg);
    transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Spring
 */
.hamburger--spring .hamburger-inner {
    top: 0.75px;
    transition: background-color 0s 0.13s linear;
}
.hamburger--spring .hamburger-inner::before {
    top: 6.5px;
    transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spring .hamburger-inner::after {
    top: 13px;
    transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spring.is-active .hamburger-inner {
    transition-delay: 0.22s;
    background-color: transparent !important;
}
.hamburger--spring.is-active .hamburger-inner::before {
    top: 0;
    transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 6.5px, 0) rotate(45deg);
}
.hamburger--spring.is-active .hamburger-inner::after {
    top: 0;
    transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 6.5px, 0) rotate(-45deg);
}

/*
 * Spring Reverse
 */
.hamburger--spring-r .hamburger-inner {
    top: auto;
    bottom: 0;
    transition-duration: 0.13s;
    transition-delay: 0s;
    transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spring-r .hamburger-inner::after {
    top: -13px;
    transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0s linear;
}
.hamburger--spring-r .hamburger-inner::before {
    transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spring-r.is-active .hamburger-inner {
    transform: translate3d(0, -6.5px, 0) rotate(-45deg);
    transition-delay: 0.22s;
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--spring-r.is-active .hamburger-inner::after {
    top: 0;
    opacity: 0;
    transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0s 0.22s linear;
}
.hamburger--spring-r.is-active .hamburger-inner::before {
    top: 0;
    transform: rotate(90deg);
    transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Stand
 */
.hamburger--stand .hamburger-inner {
    transition: transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.075s linear;
}
.hamburger--stand .hamburger-inner::before {
    transition: top 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--stand .hamburger-inner::after {
    transition: bottom 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--stand.is-active .hamburger-inner {
    transform: rotate(90deg);
    background-color: transparent !important;
    transition: transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.15s linear;
}
.hamburger--stand.is-active .hamburger-inner::before {
    top: 0;
    transform: rotate(-45deg);
    transition: top 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--stand.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(45deg);
    transition: bottom 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Stand Reverse
 */
.hamburger--stand-r .hamburger-inner {
    transition: transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.075s linear;
}
.hamburger--stand-r .hamburger-inner::before {
    transition: top 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--stand-r .hamburger-inner::after {
    transition: bottom 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--stand-r.is-active .hamburger-inner {
    transform: rotate(-90deg);
    background-color: transparent !important;
    transition: transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.15s linear;
}
.hamburger--stand-r.is-active .hamburger-inner::before {
    top: 0;
    transform: rotate(-45deg);
    transition: top 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--stand-r.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(45deg);
    transition: bottom 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Squeeze
 */
.hamburger--squeeze .hamburger-inner {
    transition-duration: 0.075s;
    transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--squeeze .hamburger-inner::before {
    transition: top 0.075s 0.12s ease, opacity 0.075s ease;
}
.hamburger--squeeze .hamburger-inner::after {
    transition: bottom 0.075s 0.12s ease, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--squeeze.is-active .hamburger-inner {
    transform: rotate(45deg);
    transition-delay: 0.12s;
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--squeeze.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
    transition: top 0.075s ease, opacity 0.075s 0.12s ease;
}
.hamburger--squeeze.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg);
    transition: bottom 0.075s ease, transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Vortex
 */
.hamburger--vortex .hamburger-inner {
    transition-duration: 0.2s;
    transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.hamburger--vortex .hamburger-inner::before, .hamburger--vortex .hamburger-inner::after {
    transition-duration: 0s;
    transition-delay: 0.1s;
    transition-timing-function: linear;
}
.hamburger--vortex .hamburger-inner::before {
    transition-property: top, opacity;
}
.hamburger--vortex .hamburger-inner::after {
    transition-property: bottom, transform;
}
.hamburger--vortex.is-active .hamburger-inner {
    transform: rotate(765deg);
    transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.hamburger--vortex.is-active .hamburger-inner::before, .hamburger--vortex.is-active .hamburger-inner::after {
    transition-delay: 0s;
}
.hamburger--vortex.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
}
.hamburger--vortex.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(90deg);
}

/*
 * Vortex Reverse
 */
.hamburger--vortex-r .hamburger-inner {
    transition-duration: 0.2s;
    transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.hamburger--vortex-r .hamburger-inner::before, .hamburger--vortex-r .hamburger-inner::after {
    transition-duration: 0s;
    transition-delay: 0.1s;
    transition-timing-function: linear;
}
.hamburger--vortex-r .hamburger-inner::before {
    transition-property: top, opacity;
}
.hamburger--vortex-r .hamburger-inner::after {
    transition-property: bottom, transform;
}
.hamburger--vortex-r.is-active .hamburger-inner {
    transform: rotate(-765deg);
    transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.hamburger--vortex-r.is-active .hamburger-inner::before, .hamburger--vortex-r.is-active .hamburger-inner::after {
    transition-delay: 0s;
}
.hamburger--vortex-r.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
}
.hamburger--vortex-r.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg);
}

/**
 * Swiper 8.4.7
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2023 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: January 30, 2023
 */
@font-face {
    font-family: swiper-icons;
    src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA");
    font-weight: 400;
    font-style: normal;
}
:root {
    --swiper-theme-color:#007aff;
}

.swiper {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    z-index: 1;
}

.swiper-vertical > .swiper-wrapper {
    flex-direction: column;
}

.swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    transition-property: transform;
    box-sizing: content-box;
}

.swiper-android .swiper-slide, .swiper-wrapper {
    transform: translate3d(0px, 0, 0);
}

.swiper-pointer-events {
    touch-action: pan-y;
}

.swiper-pointer-events.swiper-vertical {
    touch-action: pan-x;
}

.swiper-slide {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
    transition-property: transform;
}

.swiper-slide-invisible-blank {
    visibility: hidden;
}

.swiper-autoheight, .swiper-autoheight .swiper-slide {
    height: auto;
}

.swiper-autoheight .swiper-wrapper {
    align-items: flex-start;
    transition-property: transform, height;
}

.swiper-backface-hidden .swiper-slide {
    transform: translateZ(0);
    backface-visibility: hidden;
}

.swiper-3d, .swiper-3d.swiper-css-mode .swiper-wrapper {
    perspective: 1200px;
}

.swiper-3d .swiper-cube-shadow, .swiper-3d .swiper-slide, .swiper-3d .swiper-slide-shadow, .swiper-3d .swiper-slide-shadow-bottom, .swiper-3d .swiper-slide-shadow-left, .swiper-3d .swiper-slide-shadow-right, .swiper-3d .swiper-slide-shadow-top, .swiper-3d .swiper-wrapper {
    transform-style: preserve-3d;
}

.swiper-3d .swiper-slide-shadow, .swiper-3d .swiper-slide-shadow-bottom, .swiper-3d .swiper-slide-shadow-left, .swiper-3d .swiper-slide-shadow-right, .swiper-3d .swiper-slide-shadow-top {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
}

.swiper-3d .swiper-slide-shadow {
    background: rgba(0, 0, 0, 0.15);
}

.swiper-3d .swiper-slide-shadow-left {
    background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-right {
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-top {
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-bottom {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-css-mode > .swiper-wrapper {
    overflow: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
    display: none;
}

.swiper-css-mode > .swiper-wrapper > .swiper-slide {
    scroll-snap-align: start start;
}

.swiper-horizontal.swiper-css-mode > .swiper-wrapper {
    scroll-snap-type: x mandatory;
}

.swiper-vertical.swiper-css-mode > .swiper-wrapper {
    scroll-snap-type: y mandatory;
}

.swiper-centered > .swiper-wrapper::before {
    content: "";
    flex-shrink: 0;
    order: 9999;
}

.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
    margin-inline-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
    height: 100%;
    min-height: 1px;
    width: var(--swiper-centered-offset-after);
}

.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
    margin-block-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-vertical > .swiper-wrapper::before {
    width: 100%;
    min-width: 1px;
    height: var(--swiper-centered-offset-after);
}

.swiper-centered > .swiper-wrapper > .swiper-slide {
    scroll-snap-align: center center;
    scroll-snap-stop: always;
}

.swiper-virtual .swiper-slide {
    -webkit-backface-visibility: hidden;
    transform: translateZ(0);
}

.swiper-virtual.swiper-css-mode .swiper-wrapper::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
}

.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after {
    height: 1px;
    width: var(--swiper-virtual-size);
}

.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after {
    width: 1px;
    height: var(--swiper-virtual-size);
}

:root {
    --swiper-navigation-size:44px;
}

.swiper-button-next, .swiper-button-prev {
    position: absolute;
    top: 50%;
    width: calc(var(--swiper-navigation-size) / 44 * 27);
    height: var(--swiper-navigation-size);
    margin-top: calc(0px - var(--swiper-navigation-size) / 2);
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
    opacity: 0.35;
    cursor: auto;
    pointer-events: none;
}

.swiper-button-next.swiper-button-hidden, .swiper-button-prev.swiper-button-hidden {
    opacity: 0;
    cursor: auto;
    pointer-events: none;
}

.swiper-navigation-disabled .swiper-button-next, .swiper-navigation-disabled .swiper-button-prev {
    display: none !important;
}

.swiper-button-next:after, .swiper-button-prev:after {
    font-family: swiper-icons;
    font-size: var(--swiper-navigation-size);
    text-transform: none !important;
    letter-spacing: 0;
    font-variant: initial;
    line-height: 1;
}

.swiper-button-prev, .swiper-rtl .swiper-button-next {
    left: 10px;
    right: auto;
}

.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after {
    content: "prev";
}

.swiper-button-next, .swiper-rtl .swiper-button-prev {
    right: 10px;
    left: auto;
}

.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after {
    content: "next";
}

.swiper-button-lock {
    display: none;
}

.swiper-pagination {
    position: absolute;
    text-align: center;
    transition: 0.3s opacity;
    transform: translate3d(0, 0, 0);
    z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
    opacity: 0;
}

.swiper-pagination-disabled > .swiper-pagination, .swiper-pagination.swiper-pagination-disabled {
    display: none !important;
}

.swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
    bottom: 10px;
    left: 0;
    width: 100%;
}

.swiper-pagination-bullets-dynamic {
    overflow: hidden;
    font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    transform: scale(0.33);
    position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
    transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
    transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
    transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
    transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
    transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
    transform: scale(0.33);
}

.swiper-pagination-bullet {
    width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
    height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
    display: inline-block;
    border-radius: 50%;
    background: var(--swiper-pagination-bullet-inactive-color, #000);
    opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}

button.swiper-pagination-bullet {
    border: none;
    margin: 0;
    padding: 0;
    box-shadow: none;
    -webkit-appearance: none;
    -moz-appearance: none;
         appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
    cursor: pointer;
}

.swiper-pagination-bullet:only-child {
    display: none !important;
}

.swiper-pagination-bullet-active {
    opacity: var(--swiper-pagination-bullet-opacity, 1);
    background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-pagination-vertical.swiper-pagination-bullets, .swiper-vertical > .swiper-pagination-bullets {
    right: 10px;
    top: 50%;
    transform: translate3d(0px, -50%, 0);
}

.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet, .swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
    margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
    display: block;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic, .swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet, .swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    display: inline-block;
    transition: 0.2s transform, 0.2s top;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic, .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    transition: 0.2s transform, 0.2s left;
}

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    transition: 0.2s transform, 0.2s right;
}

.swiper-pagination-progressbar {
    background: rgba(0, 0, 0, 0.25);
    position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    background: var(--swiper-pagination-color, var(--swiper-theme-color));
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transform-origin: left top;
}

.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    transform-origin: right top;
}

.swiper-horizontal > .swiper-pagination-progressbar, .swiper-pagination-progressbar.swiper-pagination-horizontal, .swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite, .swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
    width: 100%;
    height: 4px;
    left: 0;
    top: 0;
}

.swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-vertical, .swiper-vertical > .swiper-pagination-progressbar {
    width: 4px;
    height: 100%;
    left: 0;
    top: 0;
}

.swiper-pagination-lock {
    display: none;
}

.swiper-scrollbar {
    border-radius: 10px;
    position: relative;
    -ms-touch-action: none;
    background: rgba(0, 0, 0, 0.1);
}

.swiper-scrollbar-disabled > .swiper-scrollbar, .swiper-scrollbar.swiper-scrollbar-disabled {
    display: none !important;
}

.swiper-horizontal > .swiper-scrollbar, .swiper-scrollbar.swiper-scrollbar-horizontal {
    position: absolute;
    left: 1%;
    bottom: 3px;
    z-index: 50;
    height: 5px;
    width: 98%;
}

.swiper-scrollbar.swiper-scrollbar-vertical, .swiper-vertical > .swiper-scrollbar {
    position: absolute;
    right: 3px;
    top: 1%;
    z-index: 50;
    width: 5px;
    height: 98%;
}

.swiper-scrollbar-drag {
    height: 100%;
    width: 100%;
    position: relative;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    left: 0;
    top: 0;
}

.swiper-scrollbar-cursor-drag {
    cursor: move;
}

.swiper-scrollbar-lock {
    display: none;
}

.swiper-zoom-container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.swiper-zoom-container > canvas, .swiper-zoom-container > img, .swiper-zoom-container > svg {
    max-width: 100%;
    max-height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
}

.swiper-slide-zoomed {
    cursor: move;
}

.swiper-lazy-preloader {
    width: 42px;
    height: 42px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -21px;
    margin-top: -21px;
    z-index: 10;
    transform-origin: 50%;
    box-sizing: border-box;
    border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
    border-radius: 50%;
    border-top-color: transparent;
}

.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader, .swiper:not(.swiper-watch-progress) .swiper-lazy-preloader {
    animation: swiper-preloader-spin 1s infinite linear;
}

.swiper-lazy-preloader-white {
    --swiper-preloader-color:#fff;
}

.swiper-lazy-preloader-black {
    --swiper-preloader-color:#000;
}

@keyframes swiper-preloader-spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
.swiper .swiper-notification {
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
    opacity: 0;
    z-index: -1000;
}

.swiper-free-mode > .swiper-wrapper {
    transition-timing-function: ease-out;
    margin: 0 auto;
}

.swiper-grid > .swiper-wrapper {
    flex-wrap: wrap;
}

.swiper-grid-column > .swiper-wrapper {
    flex-wrap: wrap;
    flex-direction: column;
}

.swiper-fade.swiper-free-mode .swiper-slide {
    transition-timing-function: ease-out;
}

.swiper-fade .swiper-slide {
    pointer-events: none;
    transition-property: opacity;
}

.swiper-fade .swiper-slide .swiper-slide {
    pointer-events: none;
}

.swiper-fade .swiper-slide-active, .swiper-fade .swiper-slide-active .swiper-slide-active {
    pointer-events: auto;
}

.swiper-cube {
    overflow: visible;
}

.swiper-cube .swiper-slide {
    pointer-events: none;
    backface-visibility: hidden;
    z-index: 1;
    visibility: hidden;
    transform-origin: 0 0;
    width: 100%;
    height: 100%;
}

.swiper-cube .swiper-slide .swiper-slide {
    pointer-events: none;
}

.swiper-cube.swiper-rtl .swiper-slide {
    transform-origin: 100% 0;
}

.swiper-cube .swiper-slide-active, .swiper-cube .swiper-slide-active .swiper-slide-active {
    pointer-events: auto;
}

.swiper-cube .swiper-slide-active, .swiper-cube .swiper-slide-next, .swiper-cube .swiper-slide-next + .swiper-slide, .swiper-cube .swiper-slide-prev {
    pointer-events: auto;
    visibility: visible;
}

.swiper-cube .swiper-slide-shadow-bottom, .swiper-cube .swiper-slide-shadow-left, .swiper-cube .swiper-slide-shadow-right, .swiper-cube .swiper-slide-shadow-top {
    z-index: 0;
    backface-visibility: hidden;
}

.swiper-cube .swiper-cube-shadow {
    position: absolute;
    left: 0;
    bottom: 0px;
    width: 100%;
    height: 100%;
    opacity: 0.6;
    z-index: 0;
}

.swiper-cube .swiper-cube-shadow:before {
    content: "";
    background: #000;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    filter: blur(50px);
}

.swiper-flip {
    overflow: visible;
}

.swiper-flip .swiper-slide {
    pointer-events: none;
    backface-visibility: hidden;
    z-index: 1;
}

.swiper-flip .swiper-slide .swiper-slide {
    pointer-events: none;
}

.swiper-flip .swiper-slide-active, .swiper-flip .swiper-slide-active .swiper-slide-active {
    pointer-events: auto;
}

.swiper-flip .swiper-slide-shadow-bottom, .swiper-flip .swiper-slide-shadow-left, .swiper-flip .swiper-slide-shadow-right, .swiper-flip .swiper-slide-shadow-top {
    z-index: 0;
    backface-visibility: hidden;
}

.swiper-creative .swiper-slide {
    backface-visibility: hidden;
    overflow: hidden;
    transition-property: transform, opacity, height;
}

.swiper-cards {
    overflow: visible;
}

.swiper-cards .swiper-slide {
    transform-origin: center bottom;
    backface-visibility: hidden;
    overflow: hidden;
}

body,
html {
    scroll-behavior: smooth;
    background: none;
}

a:focus,
input:focus,
button:focus,
select:focus,
textarea:focus {
    outline: none;
}

svg {
    transition: 0.34s;
}

a, a:before, a:after, input, select, textarea, button {
    transition: color 0.4s cubic-bezier(0.215, 0.61, 0.355, 1), background 0.4s cubic-bezier(0.215, 0.61, 0.355, 1), border 0.4s cubic-bezier(0.215, 0.61, 0.355, 1), opacity 0.4s cubic-bezier(0.215, 0.61, 0.355, 1), transform 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
}

html, body {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

ul, ol {
    list-style-position: outside;
}

ul {
    list-style: none;
}

ol {
    list-style: decimal;
}

a {
    text-decoration: none;
}

* {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-touch-callout: none;
}

a img {
    border: none;
}

img, video {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
}

video {
    outline: none;
}

header, footer, section, article, aside, main, nav, svg {
    display: block;
}

svg {
    transition: 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
}
svg path {
    transition: 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
}

table {
    border-collapse: collapse;
}

input, textarea, select, button {
    -webkit-appearance: none;
    -moz-appearance: none;
    border-radius: 0;
}

input[type=text], input[type=email], textarea, select {
    width: 100%;
}

input[type=submit] {
    cursor: pointer;
}

select, button {
    cursor: pointer;
}

textarea {
    display: block;
    overflow: auto;
    resize: vertical;
}

button {
    background: none;
    border: none;
    cursor: pointer;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 50px white inset !important;
}

input[type=checkbox]:focus {
    outline: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Josefin Sans", sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Roboto", sans-serif;
    color: #110F30;
    -webkit-font-smoothing: subpixel-antialiased;
    outline: none !important;
}

body {
    overflow-x: hidden;
    width: 100%;
}

.wrapper {
    width: 100%;
    max-width: 1440px;
    padding-left: 20px;
    padding-right: 20px;
    margin-left: auto;
    margin-right: auto;
}

.btn {
    position: relative;
    width: -moz-fit-content;
    width: fit-content;
    font-size: 16px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 30px;
    padding: 12px 24px;
    background-color: #EF5E76;
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1.3px;
}
.btn.transparent {
    background-color: transparent;
    border: 2px solid #EF5E76;
    color: #EF5E76;
}
.btn.transparent:hover {
    background-color: #EF5E76;
    color: #fff;
}
.btn.dark {
    background-color: #110F30;
}
.btn.dark:hover {
    background-color: #EF5E76;
}
.btn:hover {
    background-color: #110F30;
}

.sm {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sm a {
    position: relative;
}
.sm a:not(:last-child) {
    margin-right: 16px;
}
.sm a svg {
    width: 25px;
    height: 25px;
    max-width: 25px;
    max-height: 25px;
    min-width: 25px;
    min-height: 25px;
}
.sm a svg * {
    fill: #EF5E76;
}
.sm a:hover {
    transform: scale(1.3, 1.3);
}
.sm a:hover svg * {
    fill: #fff;
}

.overtitle {
    font-size: 16px;
    text-transform: uppercase;
    padding-left: 10px;
    border-left: 2px solid #EF5E76;
}
.overtitle.center {
    padding-right: 10px;
    text-align: center;
    border-right: 2px solid #EF5E76;
}

.p13 {
    padding-top: 130px;
    padding-bottom: 130px;
}
@media (max-width: 1024px) {
    .p13 {
        padding-top: 80px;
        padding-bottom: 80px;
    }
}
@media (max-width: 767px) {
    .p13 {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}

.p8 {
    padding-top: 80px;
    padding-bottom: 80px;
}
@media (max-width: 767px) {
    .p8 {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}

.give-goal-progress {
    margin-bottom: 0 !important;
}
.give-goal-progress .progress-bar {
    padding-bottom: 0 !important;
}

.donationbar,
.give-progress-bar {
    position: relative;
    margin: 30px 0 !important;
    width: 100% !important;
    height: 10px !important;
    background-color: #F5F2F9 !important;
    border-radius: 30px !important;
}
@media (max-width: 767px) {
    .donationbar,
    .give-progress-bar {
        margin: 15px 0 !important;
        height: 5px !important;
        border-radius: 20px !important;
    }
}
.donationbar span,
.give-progress-bar span {
    background: #EF5E76 !important;
    border-radius: 30px !important;
    background-blend-mode: unset !important;
}
.donationbar-till,
.give-progress-bar-till {
    position: relative;
    display: flex;
    width: 0%;
    height: 10px;
    background-color: #EF5E76;
    border-radius: 30px;
}
@media (max-width: 767px) {
    .donationbar-till,
    .give-progress-bar-till {
        height: 5px;
        border-radius: 20px;
    }
}

.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    right: -25px;
    z-index: 9;
    background-color: #110F30;
    height: 50px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    padding: 10px;
}
@media (max-width: 1459px) {
    .prev,
    .next {
        right: -5px;
        top: 95px;
        bottom: auto;
    }
}
@media (max-width: 767px) {
    .prev,
    .next {
        width: 35px;
        height: 35px;
        top: 73px;
    }
}
.prev.swiper-button-disabled,
.next.swiper-button-disabled {
    pointer-events: none;
    opacity: 0;
}
.prev svg,
.next svg {
    width: 40px;
    height: auto;
}
.prev svg *,
.next svg * {
    stroke: #EF5E76;
}
.prev:hover,
.next:hover {
    transform: scale(1.2, 1.2) translateX(10px);
}
@media (max-width: 767px) {
    .prev:hover,
    .next:hover {
        transform: none;
    }
}

.prev {
    transform: rotate(180deg);
    right: auto;
    left: -25px;
}
@media (max-width: 1459px) {
    .prev {
        left: -5px;
    }
}
.prev:hover {
    transform: scale(1.2, 1.2) rotate(180deg) translateX(10px);
}
@media (max-width: 767px) {
    .prev:hover {
        transform: rotate(180deg);
    }
}

.f72 {
    font-size: 72px;
    line-height: 1.25;
    font-weight: 600;
    line-height: 1.11;
}
@media (max-width: 1439px) {
    .f72 {
        font-size: 54px;
    }
}
@media (max-width: 1024px) {
    .f72 {
        font-size: 48px;
    }
}
@media (max-width: 767px) {
    .f72 {
        font-size: 32px;
        line-height: 1.3;
    }
}

.f70 {
    font-size: 70px;
    line-height: 1.25;
}
@media (max-width: 1439px) {
    .f70 {
        font-size: 60px;
    }
}
@media (max-width: 1024px) {
    .f70 {
        font-size: 52px;
    }
}
@media (max-width: 767px) {
    .f70 {
        font-size: 30px;
        line-height: 1.3;
    }
}

.f60 {
    font-size: 60px;
    line-height: 1.25;
}
@media (max-width: 1439px) {
    .f60 {
        font-size: 50px;
    }
}
@media (max-width: 1024px) {
    .f60 {
        font-size: 36px;
    }
}
@media (max-width: 767px) {
    .f60 {
        font-size: 28px;
        line-height: 1.3;
    }
}

.f48 {
    font-size: 48px;
    line-height: 1.25;
}
@media (max-width: 1439px) {
    .f48 {
        font-size: 44px;
    }
}
@media (max-width: 1024px) {
    .f48 {
        font-size: 34px;
    }
}
@media (max-width: 767px) {
    .f48 {
        font-size: 24px;
    }
}

.f40 {
    font-size: 40px;
    line-height: 1.25;
}
@media (max-width: 1439px) {
    .f40 {
        font-size: 32px;
    }
}
@media (max-width: 1024px) {
    .f40 {
        font-size: 28px;
    }
}
@media (max-width: 767px) {
    .f40 {
        font-size: 26px;
    }
}

.f36 {
    font-size: 36px;
    line-height: 1.25;
}
@media (max-width: 1439px) {
    .f36 {
        font-size: 32px;
    }
}
@media (max-width: 1024px) {
    .f36 {
        font-size: 28px;
    }
}
@media (max-width: 767px) {
    .f36 {
        font-size: 26px;
    }
}

.f32 {
    font-size: 32px;
    line-height: 1.25;
}
@media (max-width: 1439px) {
    .f32 {
        font-size: 28px;
    }
}
@media (max-width: 1024px) {
    .f32 {
        font-size: 26px;
    }
}
@media (max-width: 767px) {
    .f32 {
        font-size: 24px;
    }
}

.f30 {
    font-size: 30px;
    line-height: 1.25;
}
@media (max-width: 1439px) {
    .f30 {
        font-size: 28px;
    }
}
@media (max-width: 1024px) {
    .f30 {
        font-size: 26px;
    }
}
@media (max-width: 767px) {
    .f30 {
        font-size: 24px;
    }
}

.f28 {
    font-size: 28px;
    line-height: 1.25;
}
@media (max-width: 1439px) {
    .f28 {
        font-size: 26px;
    }
}
@media (max-width: 1024px) {
    .f28 {
        font-size: 23px;
    }
}
@media (max-width: 767px) {
    .f28 {
        font-size: 21px;
    }
}

.f26 {
    font-size: 26px;
    line-height: 1.25;
}
@media (max-width: 1439px) {
    .f26 {
        font-size: 24px;
    }
}
@media (max-width: 1024px) {
    .f26 {
        font-size: 22px;
    }
}
@media (max-width: 767px) {
    .f26 {
        font-size: 20px;
    }
}

.f24 {
    font-size: 24px;
    line-height: 1.25;
}
@media (max-width: 1439px) {
    .f24 {
        font-size: 21px;
    }
}
@media (max-width: 1024px) {
    .f24 {
        font-size: 20px;
    }
}
@media (max-width: 767px) {
    .f24 {
        font-size: 18px;
    }
}
@media (max-width: 399px) {
    .f24 {
        font-size: 16px;
    }
}

.f23 {
    font-size: 23px;
    line-height: 1.25;
}
@media (max-width: 1439px) {
    .f23 {
        font-size: 21px;
    }
}
@media (max-width: 1024px) {
    .f23 {
        font-size: 20px;
    }
}
@media (max-width: 767px) {
    .f23 {
        font-size: 18px;
    }
}
@media (max-width: 399px) {
    .f23 {
        font-size: 16px;
    }
}

.f22 {
    font-size: 22px;
    line-height: 1.25;
}
@media (max-width: 1439px) {
    .f22 {
        font-size: 18px;
    }
}
@media (max-width: 1024px) {
    .f22 {
        font-size: 17px;
    }
}
@media (max-width: 767px) {
    .f22 {
        font-size: 16px;
    }
}

.f21 {
    font-size: 21px;
    line-height: 1.25;
}
@media (max-width: 1439px) {
    .f21 {
        font-size: 19px;
    }
}
@media (max-width: 1024px) {
    .f21 {
        font-size: 18px;
    }
}
@media (max-width: 767px) {
    .f21 {
        font-size: 16px;
    }
}

.f20 {
    font-size: 20px;
    line-height: 1.25;
}
@media (max-width: 1439px) {
    .f20 {
        font-size: 18px;
    }
}
@media (max-width: 1024px) {
    .f20 {
        font-size: 17px;
    }
}
@media (max-width: 767px) {
    .f20 {
        font-size: 16px;
    }
}

.f18 {
    font-size: 18px;
    line-height: 1.25;
}
@media (max-width: 1024px) {
    .f18 {
        font-size: 16px;
    }
}
@media (max-width: 767px) {
    .f18 {
        font-size: 14px;
    }
}

.f17 {
    font-size: 17px;
    line-height: 1.25;
}
@media (max-width: 1024px) {
    .f17 {
        font-size: 16px;
    }
}
@media (max-width: 767px) {
    .f17 {
        font-size: 14px;
    }
}

.f16 {
    font-size: 16px;
    line-height: 1.25;
}
@media (max-width: 1024px) {
    .f16 {
        font-size: 15px;
    }
}
@media (max-width: 767px) {
    .f16 {
        font-size: 14px;
    }
}

.f15 {
    font-size: 15px;
    line-height: 1.25;
}
@media (max-width: 767px) {
    .f15 {
        font-size: 14px;
    }
}

.f14 {
    font-size: 14px;
    line-height: 1.3;
}

.content h1 {
    margin-bottom: 24px;
}
.content h2 {
    font-size: 40px;
    font-weight: 500;
    line-height: 1.53;
    letter-spacing: 1.2px;
    color: #110F30;
    margin-bottom: 35px;
}
@media (max-width: 1024px) {
    .content h2 {
        margin-bottom: 25px;
        font-size: 32px;
    }
}
@media (max-width: 767px) {
    .content h2 {
        margin-bottom: 20px;
        font-size: 26px;
    }
}
.content h2:not(:first-child) {
    margin-top: 40px;
}
@media (max-width: 1024px) {
    .content h2:not(:first-child) {
        margin-top: 30px;
    }
}
@media (max-width: 767px) {
    .content h2:not(:first-child) {
        margin-top: 25px;
    }
}
.content h3 {
    font-size: 32px;
    font-weight: 500;
    line-height: 1.53;
    letter-spacing: 1.2px;
    color: #110F30;
    margin-bottom: 30px;
}
@media (max-width: 1024px) {
    .content h3 {
        margin-bottom: 20px;
        font-size: 26px;
    }
}
@media (max-width: 767px) {
    .content h3 {
        margin-bottom: 15px;
        font-size: 22px;
    }
}
.content h3:not(:first-child) {
    margin-top: 40px;
}
@media (max-width: 1024px) {
    .content h3:not(:first-child) {
        margin-top: 25px;
    }
}
@media (max-width: 767px) {
    .content h3:not(:first-child) {
        margin-top: 20px;
    }
}
.content p {
    font-size: 18px;
    line-height: 1.33;
    text-align: left;
    color: #110F30;
}
@media (max-width: 1024px) {
    .content p {
        font-size: 16px;
    }
}
@media (max-width: 767px) {
    .content p {
        font-size: 14px;
    }
}
.content p:empty {
    display: none;
}
.content p:not(:last-child) {
    margin-bottom: 30px;
}
@media (max-width: 1024px) {
    .content p:not(:last-child) {
        margin-bottom: 25px;
    }
}
@media (max-width: 767px) {
    .content p:not(:last-child) {
        margin-bottom: 20px;
    }
}
.content blockquote,
.content em {
    font-size: 16px;
    line-height: 1.33;
    text-align: left;
    color: #110F30;
}
@media (max-width: 1024px) {
    .content blockquote,
    .content em {
        font-size: 15px;
    }
}
@media (max-width: 767px) {
    .content blockquote,
    .content em {
        font-size: 14px;
    }
}
.content blockquote:not(:last-child),
.content em:not(:last-child) {
    margin-bottom: 30px;
}
@media (max-width: 1024px) {
    .content blockquote:not(:last-child),
    .content em:not(:last-child) {
        margin-bottom: 25px;
    }
}
@media (max-width: 767px) {
    .content blockquote:not(:last-child),
    .content em:not(:last-child) {
        margin-bottom: 20px;
    }
}
.content hr {
    margin: 20px 0;
}
.content a {
    color: #110F30;
    text-decoration: underline;
    white-space: pre-wrap; /* CSS3 */
    white-space: -moz-pre-wrap; /* Mozilla, since 1999 */
    white-space: -pre-wrap; /* Opera 4-6 */
    white-space: -o-pre-wrap; /* Opera 7 */
    word-wrap: break-word; /* Internet Explorer 5.5+ */
}
.content a:hover {
    color: #EF5E76;
}
.content ol {
    list-style-position: inside;
    counter-reset: item;
}
.content ol li {
    display: block;
}
.content ol li:before {
    content: counter(item) ". ";
    counter-increment: item;
    color: #110F30;
}
.content ul,
.content ol {
    position: relative;
    margin-top: 10px;
    margin-bottom: 40px;
    word-wrap: break-word;
}
.content ul li {
    padding-left: 15px;
}
.content ul li:before {
    content: "";
    width: 6px;
    min-width: 6px;
    max-width: 6px;
    height: 6px;
    min-height: 6px;
    max-height: 6px;
    border-radius: 50%;
    background-color: #110F30;
    position: absolute;
    left: 0;
    top: 7px;
}
.content ul li ul li:before {
    background-color: transparent !important;
    border: 1px solid #110F30 !important;
}
.content ul li ul li ul li:before {
    background-color: transparent !important;
    border: 1px solid #110F30 !important;
    border-radius: 0 !important;
}
.content li {
    position: relative;
    z-index: 1;
    font-size: 16px;
    line-height: 1.33;
    text-align: left;
    color: #110F30;
}
@media (max-width: 1024px) {
    .content li {
        font-size: 15px;
    }
}
@media (max-width: 767px) {
    .content li {
        font-size: 14px;
    }
}
.content li:not(:last-child) {
    margin-bottom: 25px;
}
.content table {
    width: 100%;
    border: 1px solid #d9d9d9;
    border-collapse: collapse;
}
.content table * {
    border: 1px solid #d9d9d9;
}
.content table th {
    text-align: left;
}
.content table tr,
.content table td,
.content table th {
    padding: 10px;
}
.content img {
    margin: 40px 0;
    border-radius: 30px;
}
@media (max-width: 767px) {
    .content img {
        margin: 20px 0;
    }
}
.content strong,
.content b {
    font-weight: bold;
}
.content * img {
    width: 100%;
}
.content .is-layout-flex {
    position: relative;
    align-items: stretch;
    margin: 40px 0;
}
@media (max-width: 1024px) {
    .content .is-layout-flex {
        position: relative;
        flex-direction: column;
    }
}
@media (max-width: 767px) {
    .content .is-layout-flex {
        margin: 20px 0;
    }
}
.content .is-layout-flex figure,
.content .is-layout-flex img {
    width: 100% !important;
    height: 100% !important;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
    margin: 0;
}
@media (max-width: 1024px) {
    .content .is-layout-flex figure,
    .content .is-layout-flex img {
        width: 100% !important;
        height: auto !important;
    }
}
.content .wp-block-gallery.has-nested-images {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 20px;
}
@media (max-width: 1149px) {
    .content .wp-block-gallery.has-nested-images {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 1024px) {
    .content .wp-block-gallery.has-nested-images {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 767px) {
    .content .wp-block-gallery.has-nested-images {
        grid-gap: 10px;
    }
}
@media (max-width: 329px) {
    .content .wp-block-gallery.has-nested-images {
        grid-template-columns: 1fr;
    }
}
.content .wp-block-gallery.has-nested-images figure {
    position: relative;
    display: flex;
    width: 100%;
    height: 100%;
    cursor: pointer;
    overflow: hidden;
    border-radius: 12px;
}
.content .wp-block-gallery.has-nested-images figure img {
    border-radius: 12px;
    transition: 0.34s cubic-bezier(0.215, 0.61, 0.355, 1);
    width: 100%;
    height: 100%;
    margin: 0 !important;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
}
.content .wp-block-gallery.has-nested-images figure:hover img {
    transform: scale(1.1, 1.1);
}
.content .is-vertically-aligned-center {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.content .wp-block-media-text {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 50px;
    margin: 40px 0;
}
@media (max-width: 1024px) {
    .content .wp-block-media-text {
        grid-template-columns: 1fr;
        grid-gap: 20px;
    }
}
@media (max-width: 767px) {
    .content .wp-block-media-text {
        margin: 20px 0;
    }
}
.content .wp-block-media-text figure,
.content .wp-block-media-text img {
    margin: 0;
}
.content .wp-block-media-text__content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.header {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 99999999;
}
.header.needshelp {
    position: relative;
    background-color: #110F30;
}
.header.needshelp .wrapper:before {
    content: none;
    display: none;
}
.header .wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    padding-bottom: 20px;
}
.header .wrapper:before {
    content: "";
    width: calc(100% - 40px);
    height: 1px;
    background-color: #fff;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    opacity: 0.8;
}
.header-logo {
    position: relative;
    width: 250px;
    height: auto;
}
@media (max-width: 1024px) {
    .header-logo {
        z-index: 16;
    }
}
@media (max-width: 767px) {
    .header-logo {
        width: 200px;
    }
}
.header-logo svg {
    width: 100%;
    height: auto;
}
@media (max-width: 329px) {
    .header-logo svg g.logotxt {
        display: none;
    }
}
.header-logo svg g.logotxt * {
    fill: #fff;
}
.header-nav {
    position: relative;
}
@media (max-width: 1024px) {
    .header-nav {
        visibility: hidden;
        pointer-events: none;
        width: 100%;
        overflow: scroll;
        -webkit-overflow-scrolling: touch;
        position: fixed;
        top: 0;
        left: 0;
        will-change: transform;
        transition: 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
        display: block;
        flex-direction: column;
        transform: translateY(-100%);
        padding: 120px 20px 150px 20px;
        background-color: #110F30;
        z-index: 14;
        min-height: 100vh;
        min-height: -webkit-fill-available;
        height: 100vh;
    }
    .header-nav.-open {
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }
}
.header-nav ul {
    display: flex;
    align-items: center;
    justify-content: center;
}
@media (max-width: 1024px) {
    .header-nav ul {
        flex-direction: column;
    }
}
.header-nav ul li:not(:last-child) {
    margin-right: 40px;
}
@media (max-width: 1024px) {
    .header-nav ul li:not(:last-child) {
        margin-right: 0;
        margin-bottom: 30px;
    }
}
@media (max-width: 1024px) {
    .header-nav ul li.current-menu-item a {
        color: #EF5E76;
    }
}
.header-nav ul li.current-menu-item a:before {
    width: 100%;
}
.header-nav ul li a {
    position: relative;
    color: #fff;
    font-weight: bold;
    font-size: 16px;
    text-align: center;
    text-transform: uppercase;
}
@media (max-width: 1024px) {
    .header-nav ul li a {
        font-size: 20px;
    }
}
@media (max-width: 767px) {
    .header-nav ul li a {
        font-size: 18px;
    }
}
.header-nav ul li a:before {
    content: "";
    width: 0;
    height: 2px;
    background-color: #EF5E76;
    position: absolute;
    left: 0;
    right: 0;
    bottom: -3px;
    margin: auto;
    transition: 0.45s cubic-bezier(0.215, 0.61, 0.355, 1);
}
@media (max-width: 1024px) {
    .header-nav ul li a:before {
        display: none;
        content: none;
    }
}
@media (max-width: 1024px) {
    .header-nav ul li a:hover {
        color: #EF5E76;
    }
}
.header-nav ul li a:hover:before {
    width: 100%;
}
.header-cta {
    position: relative;
    color: #fff !important;
    border-color: #fff !important;
    display: flex;
    align-items: center;
    justify-content: center;
}
@media (max-width: 1024px) {
    .header-cta {
        margin: 30px auto 0 auto;
    }
}
.header-cta svg {
    stroke-width: 2px;
    width: 20px;
    margin-right: 15px;
    height: auto;
}
.header-cta svg * {
    stroke: #EF5E76;
}
.header-cta.active {
    background-color: #fff;
    color: #110F30 !important;
}
.header-cta.active svg * {
    stroke: #EF5E76;
    fill: #EF5E76;
}
.header-cta.active:hover {
    color: #fff !important;
}
.header-cta.active:hover svg * {
    stroke: #fff;
    fill: #fff;
}
.header-cta:hover {
    border-color: #110F30 !important;
    background-color: #110F30 !important;
}
@media (max-width: 1024px) {
    .header-cta:hover {
        background-color: #fff !important;
        color: #110F30 !important;
    }
}
.header-hamburger {
    position: relative;
    display: none;
}
@media (max-width: 1024px) {
    .header-hamburger {
        display: flex;
        z-index: 16;
        border: 1px solid #fff;
        padding: 12.5px 8.5px;
        border-radius: 50%;
    }
}
@media (max-width: 1024px) {
    .header-hamburger.is-active .hamburger-inner {
        background-color: #fff;
    }
    .header-hamburger.is-active .hamburger-inner:before, .header-hamburger.is-active .hamburger-inner:after {
        background-color: #fff !important;
    }
}

.footer {
    position: relative;
    background-color: #110F30;
    padding-top: 60px;
    padding-bottom: 90px;
}
@media (max-width: 1024px) {
    .footer {
        padding-bottom: 60px;
    }
}
.footer-top {
    position: relative;
    margin-bottom: 50px;
    padding-bottom: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #fff;
}
@media (max-width: 1024px) {
    .footer-top {
        padding-bottom: 30px;
        margin-bottom: 30px;
    }
}
@media (max-width: 767px) {
    .footer-top {
        flex-direction: column;
        padding-bottom: 0;
        border-bottom: 0;
    }
}
.footer-top-logo {
    position: relative;
    display: flex;
    width: 300px;
    height: auto;
}
@media (max-width: 767px) {
    .footer-top-logo {
        width: 200px;
        margin-bottom: 30px;
    }
}
.footer-top-logo svg {
    width: 100%;
    height: auto;
}
.footer-top-logo svg g.logotxt * {
    fill: #fff;
}
.footer-bottom {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
@media (max-width: 1024px) {
    .footer-bottom {
        flex-direction: column-reverse;
    }
}
.footer-bottom span {
    color: #fff;
    width: 100%;
    max-width: 600px;
    text-align: left;
}
@media (max-width: 1249px) {
    .footer-bottom span {
        max-width: 260px;
    }
}
@media (max-width: 1024px) {
    .footer-bottom span {
        max-width: inherit;
        text-align: center;
        margin-top: 30px;
    }
}
.footer-bottom-nav {
    position: relative;
}
.footer-bottom-nav ul {
    display: flex;
    align-items: center;
    justify-content: center;
}
@media (max-width: 767px) {
    .footer-bottom-nav ul {
        flex-direction: column;
    }
}
.footer-bottom-nav ul li:not(:last-child) {
    margin-right: 20px;
}
@media (max-width: 767px) {
    .footer-bottom-nav ul li:not(:last-child) {
        margin-right: 0;
        margin-bottom: 20px;
    }
}
.footer-bottom-nav ul li.current-menu-item a {
    color: #EF5E76;
}
.footer-bottom-nav ul li.special a {
    position: relative;
    display: flex;
    background-color: #EF5E76;
    border-radius: 30px;
    padding: 12px;
    text-transform: uppercase;
}
.footer-bottom-nav ul li.special a:before {
    display: none;
}
.footer-bottom-nav ul li.special a:hover {
    background-color: #34334F;
}
.footer-bottom-nav ul li a {
    position: relative;
    color: #fff;
    font-size: 16px;
    text-align: center;
}
.footer-bottom-nav ul li a:before {
    content: "";
    width: 0;
    height: 2px;
    background-color: #EF5E76;
    position: absolute;
    left: 0;
    right: 0;
    bottom: -3px;
    margin: auto;
    transition: 0.45s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.footer-bottom-nav ul li a:hover {
    color: #EF5E76;
}
.footer-bottom-nav ul li a:hover:before {
    width: 100%;
}

.caz {
    position: relative;
    border-radius: 30px;
    background-color: #fff;
    box-shadow: 0px 0px 45px -20px rgb(107, 107, 107);
    z-index: 1;
    transition: 0.45s cubic-bezier(0.215, 0.61, 0.355, 1);
    height: 100%;
}
@media (max-width: 1024px) {
    .caz {
        max-width: 700px;
    }
}
.caz-img {
    position: relative;
    border-radius: 30px;
    width: 100%;
    height: 240px;
    z-index: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
@media (max-width: 767px) {
    .caz-img {
        height: 180px;
    }
}
.caz-img:before {
    content: "";
    width: 100%;
    height: 100%;
    background: rgb(239, 94, 118);
    background: linear-gradient(180deg, rgba(239, 94, 118, 0.3) 0%, rgb(17, 15, 48) 100%);
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    pointer-events: none;
    opacity: 0.7;
    border-radius: 30px;
}
.caz-img img {
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
    width: 100%;
    height: 100%;
    border-radius: 30px;
    z-index: -1;
    transition: 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.caz-img:hover img {
    transform: scale(1.05, 1.05);
}
.caz.is-done .donationbar {
    margin: 20px 0;
}
@media (max-width: 767px) {
    .caz.is-done .donationbar {
        margin: 12px 0;
    }
}
@media (max-width: 767px) {
    .caz.is-done .caz-con-title {
        margin-bottom: 0;
    }
}
.caz.is-done .caz-con-info {
    margin-bottom: 20px;
}
.caz.is-done span.f16 {
    display: none;
}
.caz.is-done .btn {
    border: 2px solid #110F30;
    background-color: #110F30;
}
.caz.is-done .btn:hover {
    background-color: transparent;
    color: #EF5E76;
}
.caz-con {
    position: relative;
    padding: 30px;
    display: flex;
    flex-direction: column;
    height: calc(100% - 240px);
}
@media (max-width: 767px) {
    .caz-con {
        padding: 20px;
        height: calc(100% - 180px);
    }
}
.caz-con-title {
    color: #EF5E76;
    line-height: 1.2;
    margin-bottom: 10px;
    font-family: "Josefin Sans", sans-serif;
    font-weight: bold;
}
.caz-con-title:hover {
    color: #110F30;
}
.caz-con span.f16 {
    display: flex;
    flex-direction: column;
}
.caz-con span.f16 p {
    color: #34334F;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.caz-con span.f16 a {
    color: #EF5E76;
    border-bottom: 1px solid #EF5E76;
    width: -moz-fit-content;
    width: fit-content;
    margin-top: 3px;
}
.caz-con span.f16 a:hover {
    color: #110F30;
    border-color: #110F30;
}
.caz-con-info {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 35px;
}
@media (max-width: 767px) {
    .caz-con-info {
        margin-bottom: 25px;
    }
}
.caz-con-info .raised {
    display: none;
}
.caz-con-info-stats {
    position: relative;
    width: 40%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
@media (max-width: 339px) {
    .caz-con-info-stats {
        width: 100%;
    }
}
.caz-con-info-stats p {
    font-family: "Josefin Sans", sans-serif;
    font-weight: 100;
}
@media (max-width: 767px) {
    .caz-con-info-stats p {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
}
.caz-con-info-stats p span {
    font-weight: 500;
}
.caz-con-info-stats p span b {
    font-weight: 500;
}
.caz-con-info-stats p:not(:last-child) {
    margin-bottom: 10px;
}
.caz-con-info-procentage {
    font-weight: bold;
}
@media (max-width: 339px) {
    .caz-con-info-procentage {
        display: none;
    }
}
.caz-con .btn {
    width: 100%;
    padding: 20px 24px;
    margin-top: auto;
}
@media (max-width: 767px) {
    .caz-con .btn {
        padding: 12px 20px;
        margin-top: 0;
    }
}
.caz:hover {
    box-shadow: 0px 0px 45px -20px #ef5e76;
}

.newsletter {
    position: relative;
    z-index: 3;
}
.newsletter:before {
    content: "";
    width: 100%;
    height: 50%;
    position: absolute;
    left: 0;
    bottom: 0;
    background-color: #110F30;
    z-index: -1;
}
.newsletter .wrapper {
    max-width: 1150px;
    background: #110F30;
    padding: 80px 60px;
    border-radius: 30px;
    box-shadow: 0px 0px 60px -20px #ef5e76;
}
@media (max-width: 1150px) {
    .newsletter .wrapper {
        max-width: inherit;
        width: calc(100% - 40px);
    }
}
@media (max-width: 1024px) {
    .newsletter .wrapper {
        padding: 55px 35px;
    }
}
@media (max-width: 767px) {
    .newsletter .wrapper {
        padding: 35px 30px;
    }
}
.newsletter .overtitle {
    color: #fff;
}
.newsletter h2 {
    width: 100%;
    max-width: 850px;
    margin: 20px 0 35px 0;
    line-height: 1.1;
    color: #fff;
}
@media (max-width: 1024px) {
    .newsletter h2 {
        font-size: 24px;
        max-width: 500px;
    }
}
@media (max-width: 767px) {
    .newsletter h2 {
        font-size: 22px;
    }
}
.newsletter-form {
    position: relative;
    width: 100%;
}
.newsletter-form-main {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 20px;
}
@media (max-width: 767px) {
    .newsletter-form-main {
        grid-template-columns: 1fr;
    }
}
.newsletter-form-main .row {
    position: relative;
    width: 100%;
}
.newsletter-form-main .row label {
    display: none;
}
.newsletter-form-main .row input {
    width: 100%;
    height: auto;
    padding: 12px 15px;
    color: #EF5E76;
    background-color: #fff;
    border-radius: 30px;
    border: none;
    box-shadow: none;
    text-align: center;
}
.newsletter-form-main .row ::-moz-placeholder {
    color: #110F30;
}
.newsletter-form-main .row ::placeholder {
    color: #110F30;
}
.newsletter-form-main .row button {
    width: 100%;
}
.newsletter-form-main .row button:hover {
    background-color: #34334F;
}
.newsletter .checkbox-container {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-top: 35px;
}
@media (max-width: 767px) {
    .newsletter .checkbox-container {
        margin-top: 20px;
    }
}
.newsletter .checkbox-container span {
    color: #fff;
    cursor: pointer;
    margin-top: -3px;
}

.hero {
    position: relative;
    z-index: 1;
    border-bottom-right-radius: 30px;
    border-bottom-left-radius: 30px;
}
.hero.no-img {
    background-color: #110F30;
}
.hero img {
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
    z-index: -2;
    border-bottom-right-radius: 30px;
    border-bottom-left-radius: 30px;
}
.hero:before {
    content: "";
    width: 100%;
    height: 100%;
    background: #34334F;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    opacity: 0.5;
    border-bottom-right-radius: 30px;
    border-bottom-left-radius: 30px;
}
.hero-con {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 200px;
    padding-bottom: 100px;
}
@media (max-width: 767px) {
    .hero-con {
        padding-top: 150px;
        padding-bottom: 80px;
    }
}
.hero-con.is-desc {
    align-items: flex-start;
}
.hero-con .overtitle {
    color: #fff;
    margin-bottom: 10px;
}
.hero-con h1 {
    text-align: center;
    width: 100%;
    max-width: 890px;
    margin: 0 auto 0 auto;
    color: #fff;
}
.hero-con h1 span {
    color: #EF5E76;
    font-family: "Josefin Sans", sans-serif;
}
.hero-con-txts {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 70px;
}
@media (max-width: 1024px) {
    .hero-con-txts {
        grid-gap: 35px;
    }
}
@media (max-width: 767px) {
    .hero-con-txts {
        grid-gap: 10px;
        grid-template-columns: 1fr;
    }
}
.hero-con-txts h1 {
    text-align: left;
}
.hero-con-txts p {
    line-height: 1.6;
    color: #fff;
}
.hero-con .btn.is-caselink {
    margin-top: 28px;
}

.yourcall {
    position: relative;
    background-color: #fff;
}
.yourcall h2 {
    text-align: left;
    width: 100%;
    max-width: 750px;
    margin: 10px 0 0 0;
}
.yourcall-items {
    position: relative;
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 60px;
}
@media (max-width: 1024px) {
    .yourcall-items {
        margin-top: 40px;
        grid-gap: 30px;
    }
}
@media (max-width: 767px) {
    .yourcall-items {
        margin-top: 30px;
        grid-template-columns: 1fr;
    }
}
.yourcall-items-i {
    position: relative;
    width: 100%;
    height: auto;
    background: rgba(255, 210, 202, 0.15);
    padding: 60px;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
}
@media (max-width: 1024px) {
    .yourcall-items-i {
        padding: 35px;
    }
}
@media (max-width: 767px) {
    .yourcall-items-i {
        padding: 30px 20px;
    }
}
.yourcall-items-i img {
    width: 200px;
    height: auto;
}
@media (max-width: 1024px) {
    .yourcall-items-i img {
        width: 100px;
    }
}
.yourcall-items-i h3 {
    margin-top: 35px;
    margin-bottom: 15px;
}
@media (max-width: 1024px) {
    .yourcall-items-i h3 {
        margin-top: 20px;
        margin-bottom: 10px;
    }
}
.yourcall-items-i p {
    margin-bottom: 35px;
}
@media (max-width: 1024px) {
    .yourcall-items-i p {
        margin-bottom: 20px;
    }
}
.yourcall-items-i .btn {
    margin-top: auto;
}

form input {
    width: 100%;
    background: #F5F2F9;
    border: none;
    border-radius: 30px;
    padding: 18px 24px;
    font-size: 14px;
    color: #110F30;
}
form input[type=checkbox] {
    position: relative;
    width: 16px;
    height: 16px;
    min-width: 16px;
    min-height: 16px;
    max-width: 16px;
    max-height: 16px;
    background-color: transparent;
    border: 1.5px solid #fff;
    padding: 0;
    border-radius: 2px;
    margin-right: 8px;
    box-shadow: none;
    cursor: pointer;
}
form input[type=checkbox]:before {
    content: "";
    width: 8px;
    height: 8px;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    border-radius: 2px;
    background-color: transparent;
    transition: 0.34s cubic-bezier(0.215, 0.61, 0.355, 1);
}
form input[type=checkbox]:checked {
    border-color: #EF5E76;
}
form input[type=checkbox]:checked:before {
    background-color: #EF5E76;
}
form textarea {
    width: 100%;
    min-height: 160px;
    height: 160px;
    background: #F5F2F9;
    border: none;
    border-radius: 30px;
    padding: 16px 24px;
    font-size: 14px;
    color: #110F30;
}
form ::-moz-placeholder {
    color: rgba(52, 51, 79, 0.6);
}
form ::placeholder {
    color: rgba(52, 51, 79, 0.6);
}
form .wpcf7-not-valid-tip {
    font-size: 12px;
    color: #EF5E76;
    text-align: center;
    transform: translateY(3px);
}

.sponsorspart {
    position: relative;
    background-color: #fff;
    overflow: hidden;
}
.sponsorspart h2 {
    position: relative;
    text-transform: uppercase;
    width: -moz-fit-content;
    width: fit-content;
    z-index: 1;
}
.sponsorspart h2:before {
    content: "";
    width: 100%;
    height: 40%;
    background-color: #FFD2CA;
    position: absolute;
    left: 0;
    bottom: 10px;
    z-index: -1;
}
@media (max-width: 767px) {
    .sponsorspart h2:before {
        height: 15px;
        bottom: 0;
    }
}
.sponsorspart-slider {
    position: relative;
    margin-top: 60px;
}
@media (max-width: 767px) {
    .sponsorspart-slider {
        margin-top: 30px;
    }
}
.sponsorspart-slider .swiper-slide {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
}
.sponsorspart-slider .swiper-slide img {
    width: 100%;
    height: auto;
}

.thankyoucard {
    position: relative;
    background: #F5F2F9;
    display: flex;
    align-items: stretch;
    padding-bottom: 50px;
}
@media (max-width: 767px) {
    .thankyoucard {
        flex-direction: column-reverse;
    }
}
.thankyoucard-main {
    position: relative;
    width: 50%;
}
@media (max-width: 767px) {
    .thankyoucard-main {
        width: 100%;
    }
}
.thankyoucard-main-wrap {
    max-width: 720px;
    padding-right: 80px;
    padding-left: 20px;
    margin-left: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}
@media (max-width: 767px) {
    .thankyoucard-main-wrap {
        padding: 35px 20px 0 20px;
        max-width: inherit;
        margin: 0;
    }
}
.thankyoucard-main-wrap h2 {
    margin-top: 10px;
    margin-bottom: 30px;
    max-width: 780px;
}
@media (max-width: 767px) {
    .thankyoucard-main-wrap h2 {
        font-size: 28px;
        margin-bottom: 20px;
    }
}
.thankyoucard-main-wrap p {
    text-align: left;
    width: 100%;
    max-width: 900px;
}
.thankyoucard-main-wrap-footer {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 30px;
}
.thankyoucard-main-wrap-footer img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
    padding: 2px;
    background-color: #fff;
}
.thankyoucard-main-wrap-footer img:last-child {
    margin-left: -10px;
}
.thankyoucard-image {
    position: relative;
    width: 50%;
    height: auto;
}
@media (max-width: 767px) {
    .thankyoucard-image {
        width: 100%;
    }
}
.thankyoucard-image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
}
@media (max-width: 767px) {
    .thankyoucard-image img {
        border-radius: 0;
        height: auto;
    }
}

.fp {
    position: relative;
}
.fp-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    z-index: 1;
    padding-top: 150px;
    display: flex;
    flex-direction: column;
}
@media (max-width: 767px) {
    .fp-hero {
        height: auto;
        padding-top: 200px;
    }
}
.fp-hero:before {
    content: "";
    width: 100%;
    height: 100%;
    background: rgb(239, 94, 118);
    background: linear-gradient(180deg, rgba(239, 94, 118, 0.3) 0%, rgb(17, 15, 48) 100%);
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}
.fp-hero-video {
    position: absolute;
    left: 0;
    top: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
}
.fp-hero .wrapper {
    margin-top: auto;
}
.fp-hero-con {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding-bottom: 120px;
}
@media (max-width: 767px) {
    .fp-hero-con {
        padding-bottom: 60px;
    }
}
.fp-hero-con .overtitle {
    color: #fff;
}
.fp-hero-con h1 {
    position: relative;
    margin: 10px 0 20px 0;
    color: #fff;
    width: 100%;
    max-width: 950px;
    text-align: left;
}
.fp-hero-con h1 span {
    position: relative;
    z-index: 1;
    color: #fff;
}
@media (max-width: 1024px) {
    .fp-hero-con h1 span {
        color: #EF5E76;
    }
}
.fp-hero-con h1 span:before {
    content: "";
    width: 100%;
    height: 40%;
    z-index: -1;
    background-color: #EF5E76;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}
@media (max-width: 1024px) {
    .fp-hero-con h1 span:before {
        display: none;
        content: none;
    }
}
.fp-hero-con p {
    color: #fff;
    width: 100%;
    max-width: 800px;
    line-height: 1.4;
}
.fp-hero-con-ctas {
    position: relative;
    margin-top: 60px;
    display: flex;
    align-items: center;
}
@media (max-width: 767px) {
    .fp-hero-con-ctas {
        margin-top: 30px;
        width: 100%;
        flex-direction: column;
    }
}
@media (max-width: 767px) {
    .fp-hero-con-ctas a {
        width: 100%;
    }
}
.fp-hero-con-ctas a:not(:last-child) {
    margin-right: 40px;
}
@media (max-width: 767px) {
    .fp-hero-con-ctas a:not(:last-child) {
        margin-right: 0;
        margin-bottom: 20px;
    }
}
.fp-hero-con-ctas a.transparent {
    color: #fff !important;
    border-color: #fff !important;
}
.fp-hero-con-ctas a.transparent:hover {
    border-color: #110F30 !important;
    background-color: #110F30 !important;
}
.fp-about {
    position: relative;
    display: flex;
    align-items: stretch;
    justify-content: center;
    background-color: #110F30;
    padding-top: 10px;
}
@media (max-width: 767px) {
    .fp-about {
        flex-direction: column;
    }
}
.fp-about-img {
    position: relative;
    width: 50%;
    height: auto;
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
}
@media (max-width: 767px) {
    .fp-about-img {
        width: 95%;
    }
}
.fp-about-img img {
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
}
.fp-about-con {
    position: relative;
    width: 50%;
    height: 100%;
}
@media (max-width: 767px) {
    .fp-about-con {
        height: auto;
        width: 100%;
    }
}
.fp-about-con-wrap {
    max-width: 720px;
    padding: 80px 20px 80px 80px;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}
@media (max-width: 767px) {
    .fp-about-con-wrap {
        padding: 40px 20px;
        width: 100%;
        max-width: inherit;
        margin: 0;
    }
}
.fp-about-con-wrap .overtitle {
    color: #fff;
}
.fp-about-con-wrap h2 {
    color: #fff;
    margin: 10px 0 20px 0;
}
.fp-about-con-wrap p {
    color: #fff;
}
.fp-about-con-wrap .btn {
    margin-top: 60px;
}
@media (max-width: 767px) {
    .fp-about-con-wrap .btn {
        margin-top: 30px;
    }
}
@media (max-width: 499px) {
    .fp-about-con-wrap .btn {
        width: 100%;
    }
}
.fp-about-con-wrap .btn:hover {
    background-color: #34334F;
}
.fp-cazuri {
    position: relative;
    background-color: #FAF9FC;
}
.fp-cazuri .wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.fp-cazuri .overtitle {
    text-align: center;
}
.fp-cazuri h2 {
    text-align: center;
    width: 100%;
    max-width: 670px;
    margin: 10px auto 0 auto;
}
.fp-cazuri-items {
    position: relative;
    margin-top: 80px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 40px;
}
@media (max-width: 1149px) {
    .fp-cazuri-items {
        grid-gap: 15px;
    }
}
@media (max-width: 1024px) {
    .fp-cazuri-items {
        grid-template-columns: 1fr;
        margin-top: 60px;
    }
}
@media (max-width: 767px) {
    .fp-cazuri-items {
        margin-top: 30px;
        grid-gap: 30px;
    }
}
.fp-cazuri .btn.is-bottom {
    margin-top: 80px;
}
@media (max-width: 767px) {
    .fp-cazuri .btn.is-bottom {
        margin-top: 50px;
        width: 100%;
    }
}
.fp-donate {
    position: relative;
    width: 100%;
    background-color: #FFD2CA;
}
.fp-donate .wrapper {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
}
@media (max-width: 767px) {
    .fp-donate .wrapper {
        flex-direction: column;
    }
}
.fp-donate-con {
    position: relative;
    width: 48%;
    height: 100%;
    border-radius: 30px;
    background-color: #fff;
    padding: 60px;
}
@media (max-width: 767px) {
    .fp-donate-con {
        width: 100%;
        padding: 40px 20px;
        margin-bottom: 15px;
    }
}
.fp-donate-con h2 {
    line-height: 1.1;
    margin-top: 10px;
}
.fp-donate-form {
    position: relative;
    width: 48%;
    height: auto;
    border-radius: 30px;
    font-size: 0;
}
@media (max-width: 767px) {
    .fp-donate-form {
        width: 100%;
    }
}
.fp-donate-form .root-data-givewp-embed {
    width: 100%;
    border-radius: 30px;
    height: auto;
}
.fp-donate-form iframe {
    border-radius: 30px;
    width: 100% !important;
    height: auto;
}
.fp-updates {
    position: relative;
    background-color: #F5F2F9;
}
.fp-updates .wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.fp-updates .overtitle {
    text-align: center;
}
.fp-updates h2 {
    text-align: center;
    width: 100%;
    max-width: 670px;
    margin: 10px auto 0 auto;
}
.fp-updates-arrows {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}
.fp-updates-arrows .prev,
.fp-updates-arrows .next {
    position: relative;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}
.fp-updates-arrows .prev.swiper-button-disabled,
.fp-updates-arrows .next.swiper-button-disabled {
    opacity: 0.2;
}
.fp-updates-items {
    position: relative;
    margin-top: 80px;
    width: 100%;
}
@media (max-width: 1024px) {
    .fp-updates-items {
        margin-top: 50px;
    }
}
@media (max-width: 767px) {
    .fp-updates-items {
        margin-top: 30px;
    }
}
.fp-updates-items-i {
    position: relative;
    width: 100%;
    height: auto;
    z-index: 1;
    padding: 300px 30px 50px 30px;
    border-radius: 30px;
    z-index: 1;
    cursor: pointer;
    transition: 0.45s cubic-bezier(0.215, 0.61, 0.355, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
@media (max-width: 1149px) {
    .fp-updates-items-i {
        padding-top: 150px;
    }
}
@media (max-width: 767px) {
    .fp-updates-items-i {
        padding: 80px 20px 20px 20px;
    }
}
.fp-updates-items-i:before {
    content: "";
    width: 100%;
    height: 100%;
    border-radius: 30px;
    background: rgb(239, 94, 118);
    background: linear-gradient(180deg, rgba(239, 94, 118, 0.3) 0%, rgb(17, 15, 48) 100%);
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}
.fp-updates-items-i img {
    position: absolute;
    border-radius: 30px;
    left: 0;
    top: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
    -o-object-position: center;
       object-position: center;
    -o-object-fit: cover;
       object-fit: cover;
    transition: 0.34s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.fp-updates-items-i h3 {
    color: #fff;
    margin-bottom: 20px;
    margin-top: auto;
}
.fp-updates-items-i p {
    color: #fff;
}
.fp-updates-items-i:hover img {
    transform: scale(1.05, 1.05);
}
.fp-stats {
    position: relative;
    background-color: #110F30;
    padding-top: 60px;
    padding-bottom: 60px;
}
@media (max-width: 767px) {
    .fp-stats {
        padding-top: 35px;
        padding-bottom: 35px;
    }
}
.fp-stats .wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}
@media (max-width: 1024px) {
    .fp-stats .wrapper {
        flex-direction: column;
    }
}
.fp-stats-i {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.fp-stats-i span {
    text-align: center;
    text-transform: uppercase;
    color: #F2768A;
    margin-bottom: 5px;
}
.fp-stats-i h3 {
    text-align: center;
    color: #fff;
}
.fp-stats-i:not(:last-child) {
    margin-right: 120px;
}
@media (max-width: 1249px) {
    .fp-stats-i:not(:last-child) {
        margin-right: 60px;
    }
}
@media (max-width: 1024px) {
    .fp-stats-i:not(:last-child) {
        margin-right: 0;
        margin-bottom: 30px;
    }
}

.cazuri {
    position: relative;
}
.cazuri-active {
    position: relative;
    background-color: #fff;
    overflow: hidden;
}
.cazuri-active .wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.cazuri-active h2 {
    color: #EF5E76;
    margin-top: 20px;
    text-transform: uppercase;
}
.cazuri-active-items {
    position: relative;
    width: 100%;
    margin-top: 80px;
}
@media (max-width: 1024px) {
    .cazuri-active-items {
        margin-top: 60px;
    }
}
@media (max-width: 767px) {
    .cazuri-active-items {
        margin-top: 30px;
    }
}
.cazuri-active-items .swiper-slide {
    height: auto;
}
.cazuri-rezolvate {
    position: relative;
    background-color: #F5F2F9;
}
.cazuri-rezolvate h2 {
    margin-top: 10px;
}
.cazuri-rezolvate-items {
    position: relative;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 65px 40px;
    margin-top: 65px;
}
@media (max-width: 1024px) {
    .cazuri-rezolvate-items {
        margin-top: 60px;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 40px;
    }
}
@media (max-width: 767px) {
    .cazuri-rezolvate-items {
        margin-top: 30px;
        grid-template-columns: 1fr;
        grid-gap: 30px;
    }
}
.cazuri-rezolvate .load-more {
    margin: 80px auto 0 auto;
}
.cazuri .newsletter {
    background-color: #F5F2F9;
}

.about {
    position: relative;
}
.about .hero {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}
.about .hero:before {
    background: rgb(239, 94, 118);
    background: linear-gradient(180deg, rgba(239, 94, 118, 0.3) 0%, rgb(17, 15, 48) 100%);
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    opacity: 1;
}
.about .hero img {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}
.about-story {
    position: relative;
    display: flex;
    align-items: stretch;
    justify-content: center;
    background-color: #110F30;
    padding-top: 10px;
}
@media (max-width: 1024px) {
    .about-story {
        flex-direction: column;
    }
}
.about-story-img {
    position: relative;
    width: 50%;
    height: auto;
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
}
@media (max-width: 1024px) {
    .about-story-img {
        width: 100%;
    }
}
.about-story-img img {
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
}
@media (max-width: 1024px) {
    .about-story-img img {
        border-radius: 0;
    }
}
.about-story-con {
    position: relative;
    width: 50%;
    height: 100%;
}
@media (max-width: 1024px) {
    .about-story-con {
        height: auto;
        width: 100%;
    }
}
.about-story-con-wrap {
    max-width: 720px;
    padding: 80px 80px 80px 20px;
    margin-left: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}
@media (max-width: 1024px) {
    .about-story-con-wrap {
        max-width: inherit;
        padding: 40px 20px;
    }
}
.about-story-con-wrap .overtitle {
    color: #fff;
}
.about-story-con-wrap h2 {
    color: #fff;
    margin: 10px 0 20px 0;
}
.about-story-con-wrap p {
    color: #fff;
}
.about-story-con-wrap .btn {
    margin-top: 60px;
}
.about-story-con-wrap .btn:hover {
    background-color: #34334F;
}
.about-us {
    position: relative;
    background-color: rgba(255, 210, 202, 0.2);
}
.about-us .wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.about-us .overtitle {
    text-align: center;
}
.about-us h2 {
    text-align: center;
    width: 100%;
    max-width: 900px;
    margin: 10px auto 0 auto;
    text-transform: uppercase;
}
.about-us-team {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 40px;
    margin-top: 80px;
}
@media (max-width: 1249px) {
    .about-us-team {
        grid-template-columns: 1fr;
        grid-gap: 130px;
    }
}
@media (max-width: 767px) {
    .about-us-team {
        grid-gap: 40px;
        margin-top: 30px;
    }
}
.about-us-team-i {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 30px;
    background-color: #fff;
}
@media (max-width: 767px) {
    .about-us-team-i {
        flex-direction: column;
        width: 100%;
        background-color: transparent;
    }
}
.about-us-team-i-img {
    position: relative;
    width: 45%;
    height: calc(100% + 40px);
}
@media (max-width: 1249px) {
    .about-us-team-i-img {
        width: 35%;
    }
}
@media (max-width: 767px) {
    .about-us-team-i-img {
        width: 100%;
        z-index: 1;
    }
}
.about-us-team-i-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
    border-radius: 30px;
}
@media (max-width: 767px) {
    .about-us-team-i-img img {
        height: auto;
        min-height: 240px;
    }
}
.about-us-team-i-img h3 {
    color: #EF5E76;
    margin-top: 15px;
    text-align: center;
}
@media (max-width: 767px) {
    .about-us-team-i-img h3 {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 20px;
        background-color: #fff;
        padding: 10px;
        z-index: 2;
        border-radius: 15px;
        width: -moz-fit-content;
        width: fit-content;
        margin: auto;
    }
}
.about-us-team-i-con {
    position: relative;
    width: 50%;
    padding: 30px 60px 30px 0;
}
@media (max-width: 1249px) {
    .about-us-team-i-con {
        width: 60%;
    }
}
@media (max-width: 767px) {
    .about-us-team-i-con {
        width: calc(100% - 30px);
        background-color: #fff;
        padding: 40px 30px 30px 30px;
        border-radius: 30px;
        margin-top: -20px;
        z-index: 0;
    }
}
.about-us-team-i-con p {
    line-height: 1.6;
}
.about .sponsorspart {
    border-top: 1px solid #FFD2CA;
}

.contact {
    position: relative;
}
.contact-main {
    position: relative;
    padding-bottom: 0;
}
.contact-main h2 {
    color: #EF5E76;
    width: 100%;
    max-width: 780px;
}
.contact-main-about {
    position: relative;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    padding-bottom: 130px;
    border-bottom: 1px solid #F5F2F9;
    margin-top: 60px;
}
@media (max-width: 1024px) {
    .contact-main-about {
        padding-bottom: 80px;
        margin-top: 45px;
    }
}
@media (max-width: 767px) {
    .contact-main-about {
        flex-direction: column;
        margin-top: 30px;
        padding-bottom: 50px;
    }
}
.contact-main-about-form {
    position: relative;
    width: 60%;
    height: 100%;
}
@media (max-width: 767px) {
    .contact-main-about-form {
        width: 100%;
        margin-bottom: 50px;
    }
}
.contact-main-about-form form {
    position: relative;
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
}
@media (max-width: 767px) {
    .contact-main-about-form form {
        grid-template-columns: 1fr;
    }
}
.contact-main-about-form form p {
    width: 100%;
}
.contact-main-about-form form p span.wpcf7-form-control-wrap {
    width: 100%;
}
.contact-main-about-form form p span.wpcf7-list-item-label {
    color: #34334F;
    cursor: pointer;
}
.contact-main-about-form form p span.wpcf7-list-item-label a {
    color: #EF5E76;
    text-decoration: underline;
}
.contact-main-about-form form p input[type=checkbox] {
    border-color: #34334F;
}
.contact-main-about-form form p input[type=checkbox]:before {
    background-color: transparent;
}
.contact-main-about-form form p input[type=checkbox]:checked {
    border-color: #EF5E76;
}
.contact-main-about-form form p input[type=checkbox]:checked:before {
    background-color: #EF5E76;
}
.contact-main-about-form form p .wpcf7-spinner {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    margin: auto;
    pointer-events: none;
}
.contact-main-about-form form p.full-width {
    grid-column-start: 1;
    grid-column-end: 3;
}
@media (max-width: 767px) {
    .contact-main-about-form form p.full-width {
        grid-column-start: auto;
        grid-column-end: auto;
    }
}
.contact-main-about-form form p.form-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
@media (max-width: 767px) {
    .contact-main-about-form form p.form-footer {
        flex-direction: column;
    }
}
.contact-main-about-form form p.form-footer .wpcf7-form-control-wrap {
    width: 100%;
    max-width: 45%;
}
@media (max-width: 767px) {
    .contact-main-about-form form p.form-footer .wpcf7-form-control-wrap {
        max-width: 100%;
    }
}
.contact-main-about-form form p.form-footer .btn {
    width: 45%;
    padding: 20px 24px;
}
@media (max-width: 767px) {
    .contact-main-about-form form p.form-footer .btn {
        width: 100%;
        margin-top: 30px;
        padding: 12px 20px;
    }
}
.contact-main-about-form form p.form-footer br {
    display: none;
}
.contact-main-about-info {
    position: relative;
    width: 30%;
    height: auto;
    display: flex;
    flex-direction: column;
}
@media (max-width: 767px) {
    .contact-main-about-info {
        width: 100%;
    }
}
.contact-main-about-info ul {
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
}
.contact-main-about-info ul li {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
}
.contact-main-about-info ul li a {
    position: relative;
    display: flex;
    margin-top: 10px;
    color: #EF5E76;
    width: -moz-fit-content;
    width: fit-content;
}
.contact-main-about-info ul li a:before {
    content: "";
    width: 0;
    height: 1px;
    background-color: #EF5E76;
    position: absolute;
    left: 0;
    bottom: -2px;
    transition: 0.45s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.contact-main-about-info ul li a:hover:before {
    width: 100%;
}
.contact-main-about-info ul li:not(:last-child) {
    margin-bottom: 30px;
}
.contact-main-about-info .sm {
    margin-top: auto;
    margin-bottom: 10px;
    justify-content: flex-start;
}
.contact-main-about-info .sm a:hover svg * {
    fill: #110F30;
}

.donate {
    position: relative;
}
.donate-main {
    position: relative;
}
.donate-main h2 {
    width: 100%;
    max-width: 1050px;
    margin-top: 10px;
}
.donate-main-ways {
    position: relative;
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 30px;
}
@media (max-width: 1024px) {
    .donate-main-ways {
        margin-top: 45px;
    }
}
@media (max-width: 767px) {
    .donate-main-ways {
        grid-template-columns: 1fr;
        margin-top: 30px;
        grid-gap: 20px;
    }
}
.donate-main-ways-offline {
    position: relative;
    width: 100%;
    border-radius: 30px;
    background-color: #F5F2F9;
    padding: 35px 45px;
    height: 100%;
}
@media (max-width: 767px) {
    .donate-main-ways-offline {
        padding: 30px 20px;
    }
}
.donate-main-ways-offline h3,
.donate-main-ways-offline h2 {
    font-size: 18px;
    font-weight: bold;
    font-family: "Josefin Sans", sans-serif;
    margin-bottom: 20px;
}
.donate-main-ways-offline h3 span,
.donate-main-ways-offline h3 p,
.donate-main-ways-offline h2 span,
.donate-main-ways-offline h2 p {
    font-family: "Josefin Sans", sans-serif;
}
.donate-main-ways-offline p {
    font-size: 13px;
}
.donate-main-ways-offline p strong {
    font-size: 12px;
}
.donate-main-ways-offline p a {
    color: #EF5E76;
    text-decoration: underline;
}
.donate-main-ways-offline p:not(:last-child) {
    margin-bottom: 10px;
}
.donate .yourcall {
    background-color: #F5F2F9;
}
.donate .yourcall .yourcall-items-i {
    background-color: #fff;
}
.donate .newsletter {
    background-color: #F5F2F9;
}

.cazpage {
    position: relative;
    overflow-x: hidden;
}
.cazpage .hero {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}
.cazpage .hero:before {
    background: rgb(239, 94, 118);
    background: linear-gradient(180deg, rgba(239, 94, 118, 0.3) 0%, rgb(17, 15, 48) 100%);
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    opacity: 1;
}
.cazpage .hero img {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}
@media (max-width: 767px) {
    .cazpage .hero-con {
        padding-bottom: 10px;
    }
}
.cazpage-info {
    position: relative;
    background-color: #110F30;
    padding-top: 0;
    padding-bottom: 90px;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
}
@media (max-width: 767px) {
    .cazpage-info {
        padding-bottom: 55px;
    }
}
.cazpage-info .wrapper {
    max-width: 850px;
}
.cazpage-info p,
.cazpage-info span,
.cazpage-info b {
    color: #fff;
}
.cazpage-info .give-goal-progress .give-progress-bar {
    height: 10px;
}
.cazpage-info .give-goal-progress .raised {
    display: none;
}
@media (max-width: 767px) {
    .cazpage-info .f24 {
        text-align: center;
        font-size: 16px;
        margin-bottom: 30px;
    }
}
.cazpage-info h4 {
    color: #EF5E76;
}
.cazpage-content {
    position: relative;
    padding-top: 60px;
    max-width: 1024px;
}
.cazpage-content-gallery {
    position: relative;
    width: 100%;
    margin-top: -110px;
}
.cazpage-content-gallery-i {
    position: relative;
    height: auto;
    transition: 0.34s cubic-bezier(0.215, 0.61, 0.355, 1);
    opacity: 0.4;
}
.cazpage-content-gallery-i.swiper-slide-active {
    opacity: 1;
}
.cazpage-content-gallery-i img {
    width: 100%;
    height: 100%;
    max-height: 750px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
    margin: 0 !important;
    border-radius: 30px;
}
@media (max-width: 1459px) {
    .cazpage-content-gallery .next,
    .cazpage-content-gallery .prev {
        right: 5px !important;
        top: 0 !important;
        bottom: 0 !important;
    }
}
@media (max-width: 1459px) {
    .cazpage-content-gallery .prev {
        left: 5px !important;
        right: 0 !important;
        top: 0 !important;
        bottom: 0 !important;
        margin: auto 0;
    }
}
.cazpage-content .content {
    width: 100%;
    max-width: 780px;
    margin: 0 auto;
}
@media (max-width: 767px) {
    .cazpage-content .content {
        max-width: inherit;
        padding-top: 30px;
    }
}
.cazpage-ud {
    position: relative;
    background-color: #110F30;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
}
.cazpage-ud .overtitle {
    color: #fff;
}
.cazpage-ud h2 {
    color: #fff;
    margin-top: 10px;
}
.cazpage-ud-ctas {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 30px;
}
@media (max-width: 499px) {
    .cazpage-ud-ctas {
        flex-direction: column;
        align-items: center;
    }
}
@media (max-width: 499px) {
    .cazpage-ud-ctas a {
        width: 100%;
    }
}
.cazpage-ud-ctas a:not(:last-of-type) {
    margin-right: 30px;
}
@media (max-width: 499px) {
    .cazpage-ud-ctas a:not(:last-of-type) {
        margin-bottom: 20px;
        margin-right: 0;
    }
}
.cazpage-ud-ctas a:hover {
    background-color: #34334F;
}
.cazpage-ud-ctas a.transparent {
    color: #fff;
}
.cazpage-ud-main {
    position: relative;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 40px;
    margin-top: 60px;
}
@media (max-width: 767px) {
    .cazpage-ud-main {
        grid-template-columns: 1fr;
        grid-gap: 30px;
        margin-top: 30px;
    }
}
.cazpage-ud-main.noupdates {
    grid-template-columns: 1fr;
}
.cazpage-ud-main-updates {
    position: relative;
    display: flex;
    flex-direction: column;
    margin-top: 10px;
}
.cazpage-ud-main-updates-i {
    position: relative;
    background-color: #F5F2F9;
    border-radius: 30px;
    padding: 40px;
    z-index: 1;
}
@media (max-width: 767px) {
    .cazpage-ud-main-updates-i {
        padding: 25px;
    }
}
.cazpage-ud-main-updates-i span {
    background-color: #EF5E76;
    color: #fff;
    padding: 7px;
    display: flex;
    border-radius: 30px;
    width: -moz-fit-content;
    width: fit-content;
    position: absolute;
    left: 0;
    top: -10px;
}
.cazpage-ud-main-updates-i:not(:last-child) {
    margin-bottom: 60px;
}
@media (max-width: 767px) {
    .cazpage-ud-main-updates-i:not(:last-child) {
        margin-bottom: 30px;
    }
}
.cazpage-ud-main-updates-i:not(:last-child):before {
    content: "";
    width: 1px;
    height: 60px;
    position: absolute;
    left: 0;
    right: 0;
    bottom: -60px;
    margin: auto;
    background-color: #EF5E76;
    z-index: -1;
}
@media (max-width: 767px) {
    .cazpage-ud-main-updates-i:not(:last-child):before {
        height: 30px;
        bottom: -30px;
    }
}
.cazpage-ud-main-form {
    position: relative;
    width: 100%;
}
.cazpage-ud-opuri {
    position: relative;
    margin: 80px auto 0 auto;
    border: none;
    color: #fff;
    background: none;
    border-radius: 0;
    padding: 0 0 5px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: -moz-fit-content;
    width: fit-content;
}
.cazpage-ud-opuri:before {
    content: "";
    width: 100%;
    height: 1px;
    background-color: #fff;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    transition: 0.34s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.cazpage-ud-opuri svg {
    margin-left: 10px;
}
.cazpage-ud-opuri svg * {
    stroke: #fff;
}
.cazpage-ud-opuri:hover {
    color: #EF5E76;
}
.cazpage-ud-opuri:hover svg {
    transform: translateX(5px);
}
.cazpage-ud-opuri:hover svg * {
    stroke: #EF5E76;
}
.cazpage-ud-opuri:hover:before {
    height: 2px;
    background-color: #EF5E76;
}
.cazpage-ud-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: rgba(17, 15, 48, 0.9);
    align-items: center;
    justify-content: center;
    display: none;
}
.cazpage-ud-lightbox.opened {
    display: flex;
}
.cazpage-ud-lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
}
@media (max-width: 767px) {
    .cazpage-ud-lightbox-close {
        z-index: 3;
        top: 10px;
    }
}
.cazpage-ud-lightbox-close svg {
    width: 45px;
    height: 45px;
    max-width: 45px;
    max-height: 45px;
    min-width: 45px;
    min-height: 45px;
    cursor: pointer;
}
@media (max-width: 767px) {
    .cazpage-ud-lightbox-close svg {
        width: 30px;
        height: 30px;
        max-width: 30px;
        max-height: 30px;
        min-width: 30px;
        min-height: 30px;
    }
}
.cazpage-ud-lightbox-close:hover svg {
    transform: scale(1.1, 1.1);
}
.cazpage-ud-lightbox-card {
    position: relative;
    width: 100%;
    max-width: 550px;
    height: auto;
    max-height: 500px;
    background-color: #fff;
    border-radius: 30px;
    padding: 60px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
    overflow-y: scroll;
    overflow-x: hidden;
}
@media (max-width: 767px) {
    .cazpage-ud-lightbox-card {
        width: 100%;
        max-width: inherit;
        max-height: inherit;
        height: 100%;
        border-radius: 0;
    }
}
@media (max-width: 549px) {
    .cazpage-ud-lightbox-card {
        padding: 40px 20px 100px 20px;
        grid-template-columns: 1fr;
        grid-gap: 10px;
    }
}
.cazpage-ud-lightbox-card a {
    position: relative;
    width: -moz-fit-content;
    width: fit-content;
    display: flex;
    align-items: center;
    color: #EF5E76;
}
.cazpage-ud-lightbox-card a:not(:last-child) {
    margin-bottom: 20px;
}
.cazpage-ud-lightbox-card a:hover {
    color: #110F30;
}
.cazpage-ud-lightbox-card a:hover svg {
    transform: scale(1.1, 1.1);
}
.cazpage .yourcall {
    background-color: #F5F2F9;
}
.cazpage .yourcall .yourcall-items-i {
    background-color: #fff;
}

body.single-cazuri .newsletter {
    background-color: #F5F2F9;
}

.sp {
    position: relative;
}
.sp-content {
    position: relative;
    max-width: 890px;
    padding-top: 80px;
}
@media (max-width: 767px) {
    .sp-content {
        padding-top: 30px;
    }
}

body.error404 .header {
    position: absolute !important;
    background-color: transparent !important;
}
body.error404 .footer {
    display: none;
}

.errorpage {
    position: relative;
    background-color: #110F30;
    z-index: 1;
}
.errorpage-img {
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
}
.errorpage-main {
    height: 100vh;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.errorpage-main h2 {
    font-size: 220px;
    color: #EF5E76;
    line-height: 1;
    text-align: center;
}
@media (max-width: 767px) {
    .errorpage-main h2 {
        font-size: 120px;
    }
}
.errorpage-main h1 {
    color: #fff;
    text-align: center;
}
.errorpage-main p {
    text-align: center;
    width: 100%;
    max-width: 550px;
    margin: 20px auto 0 auto;
    color: #fff;
}
.errorpage-main .btn {
    margin-top: 60px;
}
@media (max-width: 767px) {
    .errorpage-main .btn {
        margin-top: 30px;
    }
}

.listpage {
    position: relative;
    background-color: #110F30;
}
@media (max-width: 767px) {
    .listpage .hero-con {
        padding-bottom: 100px;
    }
}
.listpage-card {
    position: relative;
    background-color: #fff;
    max-width: 988px;
    border-radius: 30px;
    margin-top: -50px;
    z-index: 3;
    padding: 10px;
}
@media (max-width: 1024px) {
    .listpage-card {
        max-width: inherit;
        width: calc(100% - 40px);
    }
}
.listpage-card-header {
    position: relative;
    background-color: rgba(239, 94, 118, 0.2);
    border-radius: 30px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 0;
}
@media (max-width: 767px) {
    .listpage-card-header {
        display: none;
    }
}
.listpage-card-header p {
    padding: 15px 30px;
}
.listpage-card-header p:not(:last-child) {
    border-right: 1px solid #EF5E76;
}
.listpage-card-items {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
}
.listpage-card-items-i {
    position: relative;
    border-radius: 30px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 0;
}
@media (max-width: 767px) {
    .listpage-card-items-i {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding: 12px 20px;
    }
}
.listpage-card-items-i:nth-child(even) {
    background-color: rgba(245, 242, 249, 0.8);
}
.listpage-card-items-i-col {
    padding: 15px 30px;
}
@media (max-width: 767px) {
    .listpage-card-items-i-col {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding: 0;
        width: 100%;
    }
}
.listpage-card-items-i-col:not(:last-child) {
    border-right: 1px solid #EF5E76;
}
@media (max-width: 767px) {
    .listpage-card-items-i-col:not(:last-child) {
        border-right: 0;
        margin-bottom: 10px;
    }
}
.listpage-card-items-i-col span {
    display: none;
}
@media (max-width: 767px) {
    .listpage-card-items-i-col span {
        color: #EF5E76;
        display: flex;
    }
}

.givewpt {
    position: relative;
    background-color: #110F30;
}
@media (max-width: 767px) {
    .givewpt .hero-con {
        padding-bottom: 100px;
    }
}
.givewpt-card {
    position: relative;
    background-color: #fff;
    border-radius: 30px;
    margin-top: -50px;
    z-index: 3;
    padding: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
@media (max-width: 1024px) {
    .givewpt-card {
        max-width: inherit;
        width: calc(100% - 40px);
    }
}
@media (max-width: 767px) {
    .givewpt-card {
        padding: 30px 20px;
    }
}
.givewpt-card div:first-child {
    width: 100%;
}
.givewpt-card iframe {
    width: 100% !important;
    max-width: 100% !important;
}
.givewpt-card .give-form {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.givewpt-card .give-form form {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}
.givewpt-card .give-form p {
    text-align: center;
    margin-bottom: 15px;
}
.givewpt-card .give-form label {
    margin-bottom: 10px;
}
.givewpt-card .give-form input {
    width: 100% !important;
    max-width: 350px !important;
}
.givewpt-card .give-form input[type=submit] {
    background-color: #EF5E76;
    color: #fff;
    width: 100%;
    max-width: 350px;
}

.implica {
    position: relative;
}
.implica .yourcall {
    padding-top: 80px;
    padding-bottom: 80px;
}
@media (max-width: 767px) {
    .implica .yourcall {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}
.implica-main {
    position: relative;
    padding-top: 0;
    padding-bottom: 0;
}
.implica-main .wrapper {
    position: relative;
    padding-top: 80px;
}
@media (max-width: 767px) {
    .implica-main .wrapper {
        padding-top: 50px;
    }
}
.implica-main .wrapper:before {
    content: "";
    width: calc(100% - 40px);
    height: 1px;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    top: 0;
    background-color: #F5F2F9;
}
.implica-main h2,
.implica-main .f20 {
    color: #EF5E76;
    width: 100%;
    max-width: 780px;
}
.implica-main p {
    color: #34334F !important;
}
.implica-main-about {
    position: relative;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    padding-bottom: 130px;
    margin-top: 60px;
}
@media (max-width: 1024px) {
    .implica-main-about {
        padding-bottom: 80px;
        margin-top: 45px;
    }
}
@media (max-width: 767px) {
    .implica-main-about {
        flex-direction: column;
        margin-top: 30px;
        padding-bottom: 50px;
    }
}
.implica-main-about-form {
    position: relative;
    width: 60%;
    height: 100%;
}
@media (max-width: 767px) {
    .implica-main-about-form {
        width: 100%;
        margin-bottom: 0;
    }
}
.implica-main-about-form form {
    position: relative;
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
}
@media (max-width: 767px) {
    .implica-main-about-form form {
        grid-template-columns: 1fr;
    }
}
.implica-main-about-form form p {
    width: 100%;
}
.implica-main-about-form form p span.wpcf7-form-control-wrap {
    width: 100%;
}
.implica-main-about-form form p span.wpcf7-list-item-label {
    color: #34334F;
    cursor: pointer;
}
.implica-main-about-form form p span.wpcf7-list-item-label a {
    color: #EF5E76;
    text-decoration: underline;
}
.implica-main-about-form form p input[type=checkbox] {
    border-color: #34334F;
}
.implica-main-about-form form p input[type=checkbox]:before {
    background-color: transparent;
}
.implica-main-about-form form p input[type=checkbox]:checked {
    border-color: #EF5E76;
}
.implica-main-about-form form p input[type=checkbox]:checked:before {
    background-color: #EF5E76;
}
.implica-main-about-form form p .wpcf7-spinner {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    margin: auto;
    pointer-events: none;
}
.implica-main-about-form form p.full-width {
    grid-column-start: 1;
    grid-column-end: 3;
}
@media (max-width: 767px) {
    .implica-main-about-form form p.full-width {
        grid-column-start: auto;
        grid-column-end: auto;
    }
}
.implica-main-about-form form p.form-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
@media (max-width: 767px) {
    .implica-main-about-form form p.form-footer {
        flex-direction: column;
    }
}
.implica-main-about-form form p.form-footer .wpcf7-form-control-wrap {
    width: 100%;
    max-width: 45%;
}
@media (max-width: 767px) {
    .implica-main-about-form form p.form-footer .wpcf7-form-control-wrap {
        max-width: 100%;
    }
}
.implica-main-about-form form p.form-footer .btn {
    width: 45%;
    padding: 20px 24px;
}
@media (max-width: 767px) {
    .implica-main-about-form form p.form-footer .btn {
        width: 100%;
        margin-top: 30px;
        padding: 12px 20px;
    }
}
.implica-main-about-form form p.form-footer br {
    display: none;
}
.implica-main-about-img {
    position: relative;
    width: 30%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
    height: auto;
    display: flex;
    flex-direction: column;
    border-radius: 30px;
}
@media (max-width: 767px) {
    .implica-main-about-img {
        display: none;
    }
}
