html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary, time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}

ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}

:root {
    --blue-darker: #11428a;
    --blue-dark: #1859B5;
    --blue-light: #2C7AE3;
    --blue-lighter: #72ADFB;
    --yellow-dark: #F49D18;
    --yellow-light: #FFE20A;
}
html {
    scroll-behavior: smooth;
}
body {
    background-color: #000;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.5;
}
body * {
    box-sizing: border-box;
}
a, a:hover, a:visited, a:active {
    color: inherit;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
}
a:hover {
    color: var(--yellow-light);
}
a:active {
    color: var(--yellow-dark);
}
header {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 4rem;
    z-index: 1000;
    background-color: #232014;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    padding: 0 2rem 0 0.5em;
    opacity: 1;
    transition: all 0.2s ease-in-out;
}
header.hidden {
    top: -4rem;
    opacity: 0;
}
.logoButton {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}
header .logo {
    height: 3.5rem;
    width: auto;
    margin-left: 10vh;
    margin-right: 2rem;
}
header .logo svg {
    height: 3rem;
    margin: 0.25rem 0;
    width: auto;
}

.headerLeft,
.headerRight {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;

}
.miniMenu {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.miniMenu a {
    padding: 1rem 1rem;
    color: #fff;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
}
.miniMenu a:hover {
    color: var(--yellow-light);
}
.sharingIcon {
    margin-top: 0.25rem;
}
.sharingIcon span {
    margin-bottom: 0.25rem;
}
.sharingBlock {
    height: 2rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-left: 1rem;
}
.sharingDropdown {
    max-width: 0;
    transition: all 0.5s ease-in-out;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    align-items: center;
    opacity: 0;
}
.sharingBlock:hover .sharingDropdown {
    max-width: 20rem;
    opacity: 1;
}
.sharingBlock svg {
    height: 1rem;
    width: 1rem;
    margin: 0.5rem 0.5rem 0.5rem 0.25rem;
}
.sharingBlock path {
    fill: currentColor;
    transition: all 0.2s ease-in-out;
}
.sharingIcon {
    display: flex;
    justify-content: center;
    align-items: center;
}
.langSelect {
    margin-left: 1rem;
}
.langSelect a {
    padding: 1rem;
}
.button {
    background-color: #716e40;
    border-radius: 0.5rem;
    height: 2.5rem;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 0 1.5rem;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.2s ease-in-out;
}
.button:hover {
    background-color: #84804b;
    color: #fff;
}
.button:active {
    background-color: #979256;
}
.chapterAnchor {
    position: absolute;
    top: calc(-4rem + 1px);
    left: 0;
    width: 0;
    height: 0;
}

.firstSlide {
    width:100%;
    min-height: 100vh;
    background-color: #000;
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-end;
    padding: 10vh;
    overflow: hidden;
}
.firstSlide video {
    position: absolute;
    right: -20%;
    top: 0;
    height: 100%;
    width: auto;
    z-index: 1;
}
.firstSlide:before {
    content: '';
    position: absolute;
    top: -20%;
    left: 0;
    width: 150%;
    height: 150%;
    pointer-events: none;
    background-image: radial-gradient(
            circle at center,
            black 0.0625rem,
            transparent 0
    );
    background-size: 0.25rem 0.25rem;
    background-repeat: round;
    z-index: 2;
    transform: rotate(30deg);
}
.firstSlide:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("../media/fs_fade.png");
    background-repeat: no-repeat;
    background-size: cover;
    pointer-events: none;
    z-index: 3;
}
.firstSlide .content {
    position: relative;
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    min-height: calc(100vh - 20vh - 4rem);
    width: 60rem;
}
.logos {
    margin-bottom: 2rem;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}
.bfLogo {
    display: block;
    height: 5rem;
    width: 15rem;
    background-image: url("../media/logo_bf_uk .svg");
    background-size: contain;
    background-repeat: no-repeat;
}
.bfLogoEN {
    display: block;
    height: 5rem;
    width: 15rem;
    background-image: url("../media/logo_bf_en.svg");
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 3rem;
}
.zpLogo {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    margin-right: 3rem;
}
.zpLogo img {
    height: 5rem;
}
.firstSlide h1 {
    font-size: 3rem;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 2rem;
}
.firstSlide h3 {
    font-size: 1.5rem;
    margin: 0 0 1rem 0;
}
.firstSlide ul {
    list-style-type: disc;
}
.firstSlide ul li {
    font-size: 1rem;
    line-height: 1.5rem;
    margin-left: 1.75rem;
}
.donateDetails {
    display: flex;
    flex-direction: row;
    margin-top: 2rem;
}
.fsButton {
    background-color: #716e40;
    border-radius: 0.5rem;
    height: 4rem;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 2rem 0 1rem;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.2s ease-in-out;
    font-size: 1.5rem;
    position: relative;
    z-index: 2;
}
.animatedBomb {
    height: 2rem;
    width: 2rem;
    margin-right: 1rem;
    /*background-color: #F49D18;*/
    position: relative;
}
.animatedBomb svg path {
    fill: #fff;
}

.fsButton:hover {
    background-color: #84804b;
    color: #fff;
}
.fsButton:active {
    background-color: #979256;
}
.fsDetails {
    line-height: 2rem;
    margin: 0.875rem 0 0 2rem;
}
.grnADay {
    display: flex;
    flex-direction: row;
    justify-content: stretch;
    align-items: center;
    position: relative;
}
.grnADayContent {
    width: 45%;
    padding: 10vh 5vh 10vh 10vh;
    background-color: #262515;
    align-self: stretch;
}
.simpleDonate {
    width: 25%;
    padding: 10vh 5vh;
    background-color: #1a190f;
    align-self: stretch;
}
.simpleDonateButtonDefs {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 1rem;
}
.simpleDonateButtonDefs svg {
    margin-left: 0.5rem;
    margin-top: 0.25rem;
    height: 1.5rem;
    width: auto;
    color: #716e40;
    pointer-events: none;
}
.coverNeeds {
    width: 30%;
    padding: 10vh 10vh 10vh 5vh;
    align-self: stretch;
}
.needsContainer {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    margin-bottom: 2rem;
    height: 8rem;
}
.needsItemsSlot {
    width: 6rem;
    height: 8rem;
    margin-right: 2rem;
}
.needsItem {
    display: flex;
    opacity: 0;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    flex-shrink: 0;
    overflow: hidden;
    animation: needsItemsShow 12s linear infinite;
    width: 6rem;
    height: 8rem;
    max-height: 0;
}
@keyframes needsItemsShow {
    0% {opacity: 0;max-height: 0;}
    2% {opacity: 0;max-height: none;}
    6% {opacity: 1;max-height: none;}
    45% {opacity: 1;max-height: none;}
    49% {opacity: 0;max-height: none;}
    50% {opacity: 0;max-height: 0;}
    100% {opacity: 0;max-height: 0;}
}
.vans {animation-delay: 0s;}
.chargers {animation-delay: 2s;}
.reb {animation-delay: 8s;}
.generators {animation-delay: 10s;}
.starlinks {animation-delay: 6s;}
.radios {animation-delay: 4s;}

.needsItem svg {
    width: 6rem;
    height: 6rem;
    background-color: black;
}
.grnADay .needsItem p {
    text-align: center;
    font-size: 0.75rem;
}
.grnADayIllustration {
    width: 30%;
}
.grnADay h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}
.grnADay p {
    margin-bottom: 1rem;
    line-height: 1.5;
    font-size: 1.125rem;
}

.zlaZgrayaBenefits {
    padding: 10vh;
    background-color: #0c0c07;
    position: relative;
}
.zlaZgrayaBenefits h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}
.zzBenefitsContainer {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    margin: 2rem 0;
}
.zzBenefit {
    width: 30%;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 2rem;
    font-size: 1.25rem;
    padding-right: 2rem;
}
.zzBenefitIcon {
    height: 8rem;
    width: 8rem;
    margin-right: 1rem;
    flex-shrink: 0;
}
.zzBenefitIcon svg {
    width: 100%;
    height: auto;
}
.zzBenefitIcon svg path {
    fill: #bdb76b;
}
.twoButtons {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
}
.twoButtons div {
    margin-right: 2rem;
}
.twoButtons p {
    color: #716e40;
    padding-left: 1.5rem;
}
.celebs {
    background-color: #393720;
    padding: 10vh;
}
.celebs h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}
.celebsContainer {
}
.celeb {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}
.celebPic img {
    width: 15vw;
    height: 20vw;
    object-fit: cover;
    object-position: center;
    margin-bottom: 1rem;
}
.celeb h4 {
    font-size: 1.25rem;
}
.slider-indicators {
    bottom: -3rem !important;
}
.tishPidor,
.avakovChort,
.potuzhno,
.innovations,
.bambas {
    opacity: 0;
    animation: showBimba 10s linear infinite;
}
.avakovChort {
    animation-delay: 2s;
}
.potuzhno {
    animation-delay: 4s;
}
.innovations {
    animation-delay: 6s;
}
.bambas {
    animation-delay: 8s;
}
@keyframes showBimba {
    0% {opacity: 0}
    2% {opacity: 1}
    18% {opacity: 1}
    20% {opacity: 0}
}
.syla {
    padding: 10vh;
    position: relative;
}
.syla h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}
.strengthNumberContainer {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 2rem;
}
.strengthIllustration {
    height: 10rem;
    width: 10rem;
    /*background-color: #171a23;*/
    margin-right: 2rem;
    flex-shrink: 0;
}
.flockPlane svg {
    height: 100%;
    width: 100%;
    animation: flockDrift 4s linear infinite;
}
@keyframes flockDrift {
    0% { transform: translate(0, 0);}
    10% { transform: translate(2px, 0);}
    20% { transform: translate(-1px, 0);}
    30% { transform: translate(0, 1px);}
    40% { transform: translate(2px, 0);}
    50% { transform: translate(0, -1px);}
    60% { transform: translate(0, 0);}
    70% { transform: translate(3px, 0);}
    80% { transform: translate(0, -1px);}
    90% { transform: translate(-1px, 1px);}
    100% { transform: translate(0, 0);}
}
.flockPlane svg polyline {
    stroke:#bdb76b;
    stroke-width:426.87;
    stroke-linecap:round;
    stroke-linejoin:round;
    stroke-miterlimit:22.9256;
    transform-box: fill-box;
}
.flockPlane .flock01 {
    transform: translate(400%, -2000%);
    animation: flockTransform1 6s linear infinite;
}
.flockPlane .flock02 {
    transform: translate(300%, -3000%);
    animation: flockTransform2 6s linear infinite;
}
.flockPlane .flock03 {
    transform: translate(-200%, 2000%);
    animation: flockTransform3 6s linear infinite;
}
.flockPlane .flock04 {
    transform: translate(-250%, 0%);
    animation: flockTransform4 6s linear infinite;
}
.flockPlane .flock05 {
    transform: translate(-300%, 2800%);
    animation: flockTransform5 6s linear infinite;
}
.flockPlane .flock06 {
    transform: translate(200%, 3000%);
    animation: flockTransform6 6s linear infinite;
}
.flockPlane .flock07 {
    transform: translate(-280%, -2000%);
    animation: flockTransform7 6s linear infinite;
}
.flockPlane .flock08 {
    transform: translate(-100%, -2000%);
    animation: flockTransform8 6s linear infinite;
}
.flockPlane .flock09 {
    transform: translate(-400%, -3000%);
    animation: flockTransform9 6s linear infinite;
}
.flockPlane .flock10 {
    transform: translate(100%, -3000%);
    animation: flockTransform10 6s linear infinite;
}
.flockPlane .flock11 {
    transform: translate(-280%, 2000%);
    animation: flockTransform11 6s linear infinite;
}
.flockPlane .flock12 {
    transform: translate(-200%, 1000%);
    animation: flockTransform12 6s linear infinite;
}
.flockPlane .flock13 {
    transform: translate(-300%, 0%);
    animation: flockTransform13 6s linear infinite;
}
.flockPlane .flock14 {
    transform: translate(-300%, 1000%);
    animation: flockTransform14 6s linear infinite;
}
.flockPlane .flock15 {
    transform: translate(-300%, 2000%);
    animation: flockTransform15 6s linear infinite;
}
.flockPlane .flock16 {
    transform: translate(-300%, -2800%);
    animation: flockTransform16 6s linear infinite;
}
.flockPlane .flock17 {
    transform: translate(0%, -2000%);
    animation: flockTransform17 6s linear infinite;
}
.flockPlane .flock18 {
    transform: translate(400%, -3000%);
     animation: flockTransform18 6s linear infinite;
 }
.flockPlane .flock19 {
    transform: translate(200%, -2000%);
    animation: flockTransform19 6s linear infinite;
}
.flockPlane .flock20 {
    transform: translate(400%, -1000%);
    animation: flockTransform20 6s linear infinite;
}
.flockPlane .flock21 {
    transform: translate(300%, 0%);
    animation: flockTransform21 6s linear infinite;
}
.flockPlane .flock22 {
    transform: translate(450%, -3000%);
    animation: flockTransform22 6s linear infinite;
}
.flockPlane .flock23 {
    transform: translate(300%, 0%);
    animation: flockTransform23 6s linear infinite;
}
.flockPlane .flock24 {
    transform: translate(-250%, -600%);
    animation: flockTransform24 6s linear infinite;
}
.flockPlane .flock25 {
    transform: translate(0%, 0%);
    animation: flockTransform25 6s linear infinite;
}
.flockPlane .flock26 {
    transform: translate(300%, 500%);
    animation: flockTransform26 6s linear infinite;
}
.flockPlane .flock27 {
    transform: translate(500%, 1500%);
    animation: flockTransform27 6s linear infinite;
}
.flockPlane .flock28 {
    transform: translate(200%, 1300%);
    animation: flockTransform28 6s linear infinite;
}
.flockPlane .flock29 {
    transform: translate(-150%, 0%);
    animation: flockTransform29 6s linear infinite;
}
.flockPlane .flock30 {
    transform: translate(0%, 500%);
    animation: flockTransform30 6s linear infinite;
}
.flockPlane .flock31 {
    transform: translate(0%, 0%);
    animation: flockTransform31 6s linear infinite;
}

@keyframes flockTransform1 {
    65% { transform: translate(400%, -2000%);}
    70% { transform: translate(0, 0);}
    95% { transform: translate(0, 0);}
    100% { transform: translate(400%, -2000%);}
}
@keyframes flockTransform2 {
    65% { transform: translate(300%, -3000%);}
    70% { transform: translate(0, 0);}
    95% { transform: translate(0, 0);}
    100% { transform: translate(300%, -3000%);}
}
@keyframes flockTransform3 {
    65% { transform: translate(-200%, 2000%);}
    70% { transform: translate(0, 0);}
    95% { transform: translate(0, 0);}
    100% { transform: translate(-200%, 2000%);}
}
@keyframes flockTransform4 {
    65% { transform: translate(-250%, 0%);}
    70% { transform: translate(0, 0);}
    95% { transform: translate(0, 0);}
    100% { transform: translate(-250%, 0%);}
}
@keyframes flockTransform5 {
    65% { transform: translate(-300%, 2800%);}
    70% { transform: translate(0, 0);}
    95% { transform: translate(0, 0);}
    100% { transform: translate(-300%, 2800%);}
}
@keyframes flockTransform6 {
    65% { transform: translate(200%, 3000%);}
    70% { transform: translate(0, 0);}
    95% { transform: translate(0, 0);}
    100% { transform: translate(200%, 3000%);}
}
@keyframes flockTransform7 {
    65% { transform: translate(-280%, -2000%);}
    70% { transform: translate(0, 0);}
    95% { transform: translate(0, 0);}
    100% { transform: translate(-280%, -2000%);}
}
@keyframes flockTransform8 {
    65% { transform: translate(-100%, -2000%);}
    70% { transform: translate(0, 0);}
    95% { transform: translate(0, 0);}
    100% { transform: translate(-100%, -2000%);}
}
@keyframes flockTransform9 {
    65% { transform: translate(-400%, -3000%);}
    70% { transform: translate(0, 0);}
    95% { transform: translate(0, 0);}
    100% { transform: translate(-400%, -3000%);}
}
@keyframes flockTransform10 {
    65% { transform: translate(100%, -3000%);}
    70% { transform: translate(0, 0);}
    95% { transform: translate(0, 0);}
    100% { transform: translate(100%, -3000%);}
}
@keyframes flockTransform11 {
    65% { transform: translate(-280%, 2000%);}
    70% { transform: translate(0, 0);}
    95% { transform: translate(0, 0);}
    100% { transform: translate(-280%, 2000%);}
}
@keyframes flockTransform12 {
    65% { transform: translate(-200%, 1000%);}
    70% { transform: translate(0, 0);}
    95% { transform: translate(0, 0);}
    100% { transform: translate(-200%, 1000%);}
}
@keyframes flockTransform13 {
    65% { transform: translate(-300%, 0%);}
    70% { transform: translate(0, 0);}
    95% { transform: translate(0, 0);}
    100% { transform: translate(-300%, 0%);}
}
@keyframes flockTransform14 {
    65% { transform: translate(-300%, 1000%);}
    70% { transform: translate(0, 0);}
    95% { transform: translate(0, 0);}
    100% { transform: translate(-300%, 1000%);}
}
@keyframes flockTransform15 {
    65% { transform: translate(-300%, 2000%);}
    70% { transform: translate(0, 0);}
    95% { transform: translate(0, 0);}
    100% { transform: translate(-300%, 2000%);}
}
@keyframes flockTransform16 {
    65% { transform: translate(-300%, -2800%);}
    70% { transform: translate(0, 0);}
    95% { transform: translate(0, 0);}
    100% { transform: translate(-300%, -2800%);}
}
@keyframes flockTransform17 {
    65% { transform: translate(0%, -2000%);}
    70% { transform: translate(0, 0);}
    95% { transform: translate(0, 0);}
    100% { transform: translate(0%, -2000%);}
}
@keyframes flockTransform18 {
    65% { transform: translate(400%, -3000%);}
    70% { transform: translate(0, 0);}
    95% { transform: translate(0, 0);}
    100% { transform: translate(400%, -3000%);}
}
@keyframes flockTransform19 {
    65% { transform: translate(200%, -2000%);}
    70% { transform: translate(0, 0);}
    95% { transform: translate(0, 0);}
    100% { transform: translate(200%, -2000%);}
}
@keyframes flockTransform20 {
    65% { transform: translate(400%, -1000%);}
    70% { transform: translate(0, 0);}
    95% { transform: translate(0, 0);}
    100% { transform: translate(400%, -1000%);}
}
@keyframes flockTransform21 {
    65% { transform: translate(300%, 0%);}
    70% { transform: translate(0, 0);}
    95% { transform: translate(0, 0);}
    100% { transform: translate(300%, 0%);}
}
@keyframes flockTransform22 {
    65% { transform: translate(450%, -3000%);}
    70% { transform: translate(0, 0);}
    95% { transform: translate(0, 0);}
    100% { transform: translate(450%, -3000%);}
}
@keyframes flockTransform23 {
    65% { transform: translate(300%, 0%);}
    70% { transform: translate(0, 0);}
    95% { transform: translate(0, 0);}
    100% { transform: translate(300%, 0%);}
}
@keyframes flockTransform24 {
    65% { transform: translate(-250%, -600%);}
    70% { transform: translate(0, 0);}
    95% { transform: translate(0, 0);}
    100% { transform: translate(-250%, -600%);}
}
@keyframes flockTransform25 {
    65% { transform: translate(0%, 0%);}
    70% { transform: translate(0, 0);}
    95% { transform: translate(0, 0);}
    100% { transform: translate(0%, 0%);}
}
@keyframes flockTransform26 {
    65% { transform: translate(300%, 500%);}
    70% { transform: translate(0, 0);}
    95% { transform: translate(0, 0);}
    100% { transform: translate(300%, 500%);}
}
@keyframes flockTransform27 {
    65% { transform: translate(500%, 1500%);}
    70% { transform: translate(0, 0);}
    95% { transform: translate(0, 0);}
    100% { transform: translate(500%, 1500%);}
}
@keyframes flockTransform28 {
    65% { transform: translate(200%, 1300%);}
    70% { transform: translate(0, 0);}
    95% { transform: translate(0, 0);}
    100% { transform: translate(200%, 1300%);}
}
@keyframes flockTransform29 {
    65% { transform: translate(-150%, 0%);}
    70% { transform: translate(0, 0);}
    95% { transform: translate(0, 0);}
    100% { transform: translate(-150%, 0%);}
}
@keyframes flockTransform30 {
    65% { transform: translate(0%, 500%);}
    70% { transform: translate(0, 0);}
    95% { transform: translate(0, 0);}
    100% { transform: translate(0%, 500%);}
}
@keyframes flockTransform31 {
    65% { transform: translate(0%, 0%);}
    70% { transform: translate(0, 0);}
    95% { transform: translate(0, 0);}
    100% { transform: translate(0%, 0%);}
}
.chicks svg {
    width: 100%;
    height: 100%;
}
.chicks svg path, .chicks svg circle {
    stroke:#bdb76b;
    stroke-width:300;
    stroke-linecap:round;
    stroke-linejoin:round;
    stroke-miterlimit:22.9256;
    fill:none;
    transform-box: fill-box;
}
.leftChick {
    transform-origin: 50% 52%;
    animation: leftChickEating 5s linear infinite;
}
.rightChick {
    transform-origin: 50% 52%;
    animation: rightChickEating 5s linear infinite;
    animation-delay: 1s;
}
@keyframes leftChickEating {
    0% {transform:rotate(0deg)}
    10% {transform:rotate(0deg)}
    13% {transform:rotate(100deg)}
    16% {transform:rotate(0deg)}
    53% {transform:rotate(0deg)}
    56% {transform:rotate(100deg)}
    59% {transform:rotate(0deg)}
    62% {transform:rotate(0deg)}
    65% {transform:rotate(100deg)}
    68% {transform:rotate(0deg)}
    79% {transform:rotate(0deg)}
    82% {transform:rotate(100deg)}
    85% {transform:rotate(0deg)}
    100% {transform:rotate(0deg)}
}
@keyframes rightChickEating {
    0% {transform:rotate(0deg)}
    10% {transform:rotate(0deg)}
    13% {transform:rotate(-100deg)}
    16% {transform:rotate(0deg)}
    19% {transform:rotate(-100deg)}
    23% {transform:rotate(0deg)}
    53% {transform:rotate(0deg)}
    56% {transform:rotate(-100deg)}
    59% {transform:rotate(0deg)}
    79% {transform:rotate(0deg)}
    82% {transform:rotate(-100deg)}
    85% {transform:rotate(0deg)}
    100% {transform:rotate(0deg)}
}
.seed1,
.seed2,
.seed3,
.seed4,
.seed5,
.seed6,
.seed7,
.seed8,
.seed9,
.seed10 {
    opacity: 0;
}

.seed1 {
    animation: leftSeedsFalling 3s linear infinite;
}
.seed7 {
    animation: leftSeedsFalling 3s linear infinite;
    animation-delay: 0.5s;
}
.seed8 {
    animation: leftSeedsFalling 3s linear infinite;
    animation-delay: 1s;
}
.seed9 {
    animation: leftSeedsFalling 3s linear infinite;
    animation-delay: 1.5s;
}
.seed10 {
    animation: leftSeedsFalling 3s linear infinite;
    animation-delay: 2s;
}
.seed2 {
    animation: rightSeedsFalling 3s linear infinite;
    animation-delay: 0.2s;
}
.seed3 {
    animation: rightSeedsFalling 3s linear infinite;
    animation-delay: 0.7s;
}
.seed4 {
    animation: rightSeedsFalling 3s linear infinite;
    animation-delay: 1.2s;
}
.seed5 {
    animation: rightSeedsFalling 3s linear infinite;
    animation-delay: 1.7s;
}
.seed6 {
    animation: rightSeedsFalling 3s linear infinite;
    animation-delay: 2.2s;
}
@keyframes leftSeedsFalling {
    0% { opacity: 0; transform: translate(0,0);}
    5% { opacity: 0;}
    10% { opacity: 1;}
    40% { transform: translate(0,3000%);}
    45% { transform: translate(-100%,2800%);}
    50% { transform: translate(-200%,3000%);}
    90% { transform: translate(-200%,3000%); opacity: 1;}
    95% { transform: translate(-200%,3000%); opacity: 0;}
    100% { transform: translate(0,3000%); opacity: 0;}
}
@keyframes rightSeedsFalling {
    0% { opacity: 0; transform: translate(0,0);}
    5% { opacity: 0;}
    10% { opacity: 1;}
    40% { transform: translate(0,3000%);}
    45% { transform: translate(100%,2800%);}
    50% { transform: translate(200%,3000%);}
    90% { transform: translate(200%,3000%); opacity: 1;}
    95% { transform: translate(200%,3000%); opacity: 0;}
    100% { transform: translate(0,3000%); opacity: 0;}
}
.strengthContainer {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    margin-top: 2rem;
}
.strengthNumbers {
    margin-right: 10vh;
}
.strengthNumber {
    margin-bottom: 2rem;
}
.flockHeadings {
    font-size: 1.75rem;
    font-weight: 700;
    color: #e0debc;
}
.strengthNumber h3 strong {
    color: #bdb76b;
    font-size: 2.5rem;
}
.annihilatedContainer {
    margin-top: 1rem;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
}
.annihilatedItem {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    margin-right: 2rem;
    margin-bottom: 2rem;
    flex-shrink: 0;
    min-width: calc(20% - 2rem);
}
.annihilatedItem svg {
    height: 5rem;
    width: auto;
}
.annihilatedItem p {
    margin-top: 0.5rem;
    text-align: center;
}
.annihilatedItem p.count {
    color: #bdb76b;
    font-size: 1.5rem;
    font-weight: 700;
}
.report {
    background-color: #13120b;
    padding: 4rem 10vh;
}
.report h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}
.donate {
    background-color: #000;
    padding: 4rem 10vh;
    position: relative;
}
.donate h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}
.donateTabs {
    display: flex;
    flex-direction: row;
    margin-bottom: 2rem;
}
.mainDonateOptions {
    width: 40%;
    display: flex;
    flex-direction: row;
}
.mainDonateOptions div {
    margin-right: 2rem;
    width: 50%;
}
.mainDonateOptions div h3 {
    font-size: 1.5rem;
    font-weight: 700;
}
.mainDonateOptions div svg {
    width: 100%;
    height: auto;
    margin: 1rem 0;
}
.mainDonateOptions div p {
    margin-bottom: 1rem;
}
.secondaryDonateOptions {
    width: 60%;
}
.switchRow {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 1rem;
}
.toggle{
    display: block;
    width: 60px;
    height: 34px;
    position: relative;
    border-radius: 34px;
    background-color: #232014;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-right: 1rem;
}

.toggle::before {
    content: "";
    position: absolute;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: #e0debc;
    top: 5px;
    left: 5px;
    transition: transform 0.3s;
}

.toggle.on {
    background-color: #716e40;
}

.toggle.on::before {
    transform: translateX(26px);
}
.uaOptions.off,
.outerOptions.off {
    display: none;
}
.secDonOption {
    margin-bottom: 1rem;
}
.secondaryDonateOptionsList {
    border-top: 1px solid #716e40;
    padding-top: 1rem;
    width: fit-content;
}
.secDonOption h4 {
    font-weight: 700;
    color: #e0debc;
}
.shade {
    color: #979256;
}
.copy {
    background-image: url("/media/copy.svg");
    display: inline-block;
    height: 1rem;
    width: 1rem;
    cursor: pointer;
}
.footer {
    background-color: #0e0e07;
    padding: 2rem 10vh;
    color: #fff;
    font-size: 1rem;
    line-height: 1.25;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
}
.logoSoc {
    margin-right: 4rem;
}
.social {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    margin: 1rem 0 2rem 0;
}
.social a {
    display: block;
    height: 2rem;
    width: 2rem;
    margin-right: 1rem;
}
.social a svg {
    width: 100%;
    height: 100%;
}
.celebsMobile {
    display: none;
}
.callbackMessages {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.callbackMessage {
    background-color: #262515;
    padding: 2rem 4rem;
    position: relative;
    z-index: 3;
}
.callbackMessage h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}
.callbackMessage p {
    font-size: 1rem;
    margin-bottom: 1rem;
}
.callbackMessages video {
    position: fixed;
    top: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
    z-index: 1;
}
.videoCover {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-color: rgba(0,0,0,0.7);
}
.videoSlide {
    height: calc(100vh - 4rem);
    width: 100%;
    display: block;
    position: relative;
    overflow: hidden;
}
.videoSlide video {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
}

@media (max-width: 1680px) {
    html, body {
        font-size: 14px;
    }
    .grnADay h2 {
        font-size: 2rem;
    }
}
@media (max-width: 1600px) {
    html, body {
        font-size: 12px;
    }
}
@media (max-width: 1400px) {
    html, body {
        font-size: 10px;
    }
    .miniMenu a {
        font-size: 1.25rem;
    }
    .sharingBlock span {
        font-size: 1.25rem;
    }
}
@media (max-width: 1199px) {
    header .logo {
        margin-left: 5vh;
    }
    .firstSlide {
        min-height: 50vh;
        height: fit-content;
    }
    .firstSlide .content {
        height: fit-content;
        min-height: auto;
        margin-top: 5vh;
    }
    .grnADay {
        flex-wrap: wrap;
    }
    .grnADayContent {
        width: 100%;
        padding: 5vh;
    }
    .simpleDonate {
        width: 100%;
        padding: 5vh;
    }
    .coverNeeds {
        width: 100%;
        padding: 5vh;
    }
    .zlaZgrayaBenefits {
        padding: 5vh;
    }
    .syla {
        padding: 5vh;
    }
    .celebs {
        padding: 5vh;
    }
    .donateTabs {
        flex-wrap: wrap;
    }
    .mainDonateOptions {
        width: 100%;
        margin-bottom: 2rem;
    }
    .secondaryDonateOptions {
        width: 100%;
    }
    .footer {
        padding: 2rem 5vh;
    }
}


@media (max-width: 1000px) {
    .miniMenu a {
        font-size: 1.25rem;
    }
    .sharingBlock span {
        font-size: 1.25rem;
    }
    .firstSlide {
        min-height: auto;
        padding: 4rem;
    }
    .firstSlide .content {
        min-height: auto;
    }
    .fsButton {
        font-size: 1rem;
        font-weight: 700;
    }
    .zzBenefit {
        width: 50%;
    }
    .strengthContainer {
        flex-direction: column;
    }
    .strengthNumbers {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        margin-right: 0;
        margin-bottom: 2rem;
    }
    .strengthNumberContainer {
        width: calc(50% - 3rem);
    }
    .strengthNumberContainer:nth-of-type(1) {
        margin-right: 6rem;
    }
    .celebs{
        display: none;
    }
    .celebsMobile {
        display: block;
        background-color: #393720;
        padding: 5vh;
    }
    .celebsMobile h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
        font-weight: 700;
    }
    .celebsMobileContainer {
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        flex-wrap: wrap;
    }
    .celebMobile {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        margin: 0 1rem 2rem 1rem;
    }
    .celebPic img {
        width: 10rem;
        height: 12rem;
        object-fit: cover;
        object-position: center;
        margin-bottom: 1rem;
    }
    .celeb h4 {
        font-size: 1.25rem;
    }
    .vanishOnMobile {display: none}
    .videoSlide {
        height: 100vw;
        width: 100%;
    }
}

@media (max-width: 960px) {
    html, body {
        font-size: 14px;
    }
    .miniMenu,
    .sharingBlock {
        display: none;
    }
    .firstSlide:before {
        top: -50%;
        left: -120%;
        height: 300%;
        width: 300%;
    }
    .firstSlide:after {
        background-image: none;
        background-color: rgba(0,0,0,0.7);
    }
    .firstSlide .content {
        width: 100%;
    }
    .footer {
        flex-wrap: wrap;
    }
    .footer .logos, .socialBlock, .contacts1, .contacts2 {
        width: 50%;
    }
    .socialBlock {
        margin-bottom: 4rem;
    }
}

@media (max-width: 740px) {
    .firstSlide video {
        right: -150%;
    }
    .firstSlide:after {
        background-image: none;
        background-color: rgba(0, 0, 0, 0.5);
    }
    .firstSlide h3 {
        font-size: 1.25rem;
    }
    .simpleDonate {
        width: 100%;
    }
    .coverNeeds {
        width: 100%;
    }
    .strengthNumbers {
        width: 100%;
    }
    .strengthNumberContainer {
        width: 100%;
        margin-right: 0;
    }
    .strengthNumberContainer:nth-of-type(1) {
        margin-right: 0;
    }
    .annihilatedItem {
        width: calc(25% - 2rem);
    }
    .zzBenefit {
        font-size: 1rem;
    }
    .callbackMessage .twoButtons {
        flex-direction: column;
    }
    .callbackMessage .twoButtons div {
        margin-bottom: 2rem;
    }
}
@media (max-width: 620px) {
    .zzBenefit {
        width: 100%;
        padding-right: 0;
    }
    .firstSlide:before {
        display: none;
    }
    .logos {
        flex-direction: column;
    }
    .zpLogo {
        margin-bottom: 2rem;
    }
    .footer .bfLogo {
        margin-bottom: 2rem;
    }
    .firstSlide h1 {
        line-height: 1;
        font-size: 1.75rem;
    }
    .grnADay h2,
    .zlaZgrayaBenefits h2 {
        line-height: 1;
    }
    .celebsMobileContainer {
        justify-content: space-between;
    }
    .celebMobile {
        margin: 0 0 2rem 0;
    }
    .celebPic img {
        width: calc(50vw - 5vh - 2rem);
        height: calc((50vw - 5vh - 2rem) * 1.2);
    }
}
@media (max-width: 540px) {
    .annihilatedItem {
        width: calc(33% - 2rem);
    }
    header .logo {
        margin-left: 2rem;
    }
    .firstSlide,
    .grnADayContent,
    .simpleDonate,
    .coverNeeds,
    .zlaZgrayaBenefits,
    .syla,
    .celebsMobile,
    .report,
    .donate,
    .footer {
        padding: 2rem;
    }
    .mainDonateOptions {
        flex-wrap: wrap;
    }
    .mainDonateOptions div {
        width: 100%;
        margin-bottom: 2rem;
    }
}
@media (max-width: 380px) {
    .needsItemsSlot {
        margin-right: 1rem;
    }
}