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;
}
body {
    line-height: 1;
}
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;
    overflow-x: hidden;
    overflow-y: auto;
}
body {
    background-color: #000;
    color: #fff;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    overflow-x: hidden;
    overflow-y: auto;
}
body::-webkit-scrollbar {
    width: 1rem;
    background-color: rgba(255, 255, 255, 0);
}
body::-webkit-scrollbar-track {
    border: solid 0.375rem transparent;
}
body::-webkit-scrollbar-thumb {
    box-shadow: inset 0 0 10px 10px var(--yellow-light);
    border-radius: 1rem;
    border: solid 0.375rem transparent;
}
body * {
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}
.loading {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 1;
    transition: all 0.2s ease-in-out;
    z-index: 10000;
}
.loading.hidden {
    pointer-events: none;
    opacity: 0;
}
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: linear-gradient(90deg, rgba(17,17,17,1) 50%, rgba(0,0,0,1) 90%);
    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;
    /*box-shadow: 0px 0px 12px 0px rgba(50, 50, 50, 0.5);*/
}
header.hidden {
    top: -4rem;
    opacity: 0;
}
.logoButton {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    padding: 2rem;
}
.zpLogoHeader {
    height: 2rem;
    width: auto;
}
.logoButton svg path,
.logoButton svg polygon {
    fill: #fff;
    transition: fill 0.2s ease-in-out;
}
.logoButton:hover svg path,
.logoButton:hover svg polygon {
    fill: var(--yellow-light);
}
.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;
    margin-top: 0.5rem;
    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: 0.5rem 0 0 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.25rem 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;
}
.chapterAnchor {
    position: absolute;
    top: calc(-4rem + 1px);
    left: 0;
    width: 0;
    height: 0;
}
.firstSlide {
    width: 100%;
    min-height: 100vh;
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    padding: 10vh;
    overflow: hidden;
}
.firstSlide video {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: 1;
    object-fit: cover;
}
.videoCover {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: 2;
    background-color: #000000;
    opacity: 0.8;
}
.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;
}
.heroScreenLogo {
    margin-bottom: 2rem;
    height: 6rem;
    width: auto;
}
.heroScreenLogo path,
.heroScreenLogo polygon {
    fill: #fff;
}
.zpHeroScreenIllustration {
    position: absolute;
    right: 10vh;
    top: 15vh;
    z-index: 5;
    width: 70vh;
    height: 70vh;
    pointer-events: none;
}
.zpHeroIllustration svg {
    height: 100%;
    width: auto;
    position: absolute;
    top: 0;
    left: 0;
}
.zpHeroIllustration {
    opacity: 1;
    transition: opacity 0.3s ease-in;
    transition-delay: 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
}
.zpHeroIllustration.hidden {
    opacity: 0;
    transition-delay: 0s;
}
.zpHeroIllustration svg path {
    stroke: #FFE20A;
    fill: none;
    stroke-width: 2;
}
.backfireAnim {
    position: absolute;
    right: 10vh;
    top: 40vh;
    z-index: 5;
    width: 50vw;
    height: 50vh;
    pointer-events: none;
}
.bfAnimRight {
    right: 10vh;
    top: 16vh;
    width: 20vw;
    height: 20vh;
}
.bfAnimLeft {
    right: 50vh;
    top: 20vh;
    width: 25vw;
    height: 25vh;
}
.backfireAnim svg {
    height: 100%;
    width: auto;
    animation: bfFlight 10s linear infinite;
}
.backfireAnim.bfAnimRight svg {
    animation-delay: 2s;
}
.backfireAnim.bfAnimLeft svg {
    animation-delay: 3.5s;
}
@keyframes bfFlight {
    0% {
        transform: translate(0%, 0%) rotate(0deg);
    }
    10% {
        transform: translate(0%, 1%) rotate(0.1deg);
    }
    20% {
        transform: translate(-1%, -2%) rotate(-0.1deg);
    }
    25% {
        transform: rotate(1deg);
    }
    30% {
        transform: translate(1%, 3%) rotate(2deg);
    }
    40% {
        transform: translate(2%, 20%) rotate(5deg);
    }
    50% {
        transform: translate(3%, 20%) rotate(0deg);
    }
    65% {
        transform: translate(-1%, 20%) rotate(-2deg);
    }
    75% {
        transform: translate(-2%, -5%) rotate(-5deg);
    }
    80% {
        transform: translate(-1%, 0%) rotate(-2deg);
    }
    85% {
        transform: translate(-1%, 0%) rotate(-1deg);
    }
    90% {
        transform: translate(1%, 2%) rotate(0deg);
    }
    100% {
        transform: translate(0%, 0%) rotate(0deg);
    }
}
.backfireAnim * {
    transform-box: fill-box;
}
.bfSvgBombHatch {
    animation: bfHatch 10s linear infinite;
    transform-origin: 100% 50%;
}
.backfireAnim.bfAnimRight .bfSvgBombHatch {
    animation-delay: 2s;
}
.backfireAnim.bfAnimLeft .bfSvgBombHatch {
    animation-delay: 3.5s;
}
@keyframes bfHatch {
    0% {
        transform: rotate(0deg);
    }
    45% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(-40deg);
    }
    55% {
        transform: rotate(-40deg);
    }
    60% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(0deg);
    }
}
.bfSvgStrokeWhite {
    stroke: white;
    stroke-width: 19.99;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-miterlimit: 22.9256
}
.bfSvgFillTrans {
    fill: none
}
.bfSvgFillBlack {
    fill: #000000
}
.bfSvgBomb {
    transform-origin: 50% 50%;
    transform: translate(-20%, 20%);
    animation: bombDrop 10s linear infinite;
    transform-box: fill-box;
}
.bfSvgBomb path {
    stroke: var(--yellow-light);
}
.backfireAnim.bfAnimRight svg .bfSvgBomb {
    animation-delay: 2s;
}
.backfireAnim.bfAnimLeft svg .bfSvgBomb {
    animation-delay: 3.5s;
}
.bfSvgBomb.bomb2 {
    animation-delay: 0.15s;
}
.backfireAnim.bfAnimRight svg .bfSvgBomb.bomb2 {
    animation-delay: 2.15s;
}
.backfireAnim.bfAnimLeft svg .bfSvgBomb.bomb2 {
    animation-delay: 3.65s;
}
@keyframes bombDrop {
    0% {
        transform: translate(0%, 0%) rotate(0deg);
        opacity: 0;
    }
    50% {
        transform: translate(0%, 0%) rotate(0deg);
        opacity: 1;
    }
    52% {
        transform: translate(-100%, 400%) rotate(-10deg);
    }
    54% {
        transform: translate(-200%, 800%) rotate(-20deg);
        opacity: 1;
    }
    56% {
        transform: translate(-300%, 1200%) rotate(-30deg);
    }
    58% {
        transform: translate(-400%, 1600%) rotate(-40deg);
    }
    60% {
        transform: translate(-500%, 2000%) rotate(-50deg);
        opacity: 0;
    }
    100% {
        transform: translate(-500%, 2000%) rotate(-50deg);
        opacity: 0;
    }
}
.bfSvgProps {
    animation: propsSpin 0.3s linear infinite;
    transform-origin: center center;
}
@keyframes propsSpin {
    0% {
        transform: rotateX(0deg)
    }
    50% {
        transform: rotateX(180deg)
    }
    100% {
        transform: rotateX(360deg)
    }
}
.windAnim {
    position: absolute;
    top: 0;
    right: 0;
    height: 100vh;
    width: 50vw;
    opacity: 0.1;
    pointer-events: none;
}
.windAnim div {
    width: 200px;
    height: 1px;
    background-color: #fff;
    position: absolute;
    right: -200px;
    animation: windAnimFlow 10s linear infinite;
}
.windAnim div:nth-of-type(1) {
    top: 10%;
    animation-delay: 2s
}
.windAnim div:nth-of-type(2) {
    top: 20%;
    animation-delay: 0s
}
.windAnim div:nth-of-type(3) {
    top: 30%;
    animation-delay: 4s
}
.windAnim div:nth-of-type(4) {
    top: 40%;
    animation-delay: 1s
}
.windAnim div:nth-of-type(5) {
    top: 50%;
    animation-delay: 7s
}
.windAnim div:nth-of-type(6) {
    top: 60%;
    animation-delay: 1.5s
}
.windAnim div:nth-of-type(7) {
    top: 70%;
    animation-delay: 8.5s
}
.windAnim div:nth-of-type(8) {
    top: 80%;
    animation-delay: 3s
}
@keyframes windAnimFlow {
    0% {
        transform: translate(0, 0);
        opacity: 0
    }
    50% {
        opacity: 1
    }
    100% {
        transform: translate(calc(-50vw - 200px), 0);
        opacity: 0
    }
}
.firstSlideContent {
    margin-left: 10vh;
    position: relative;
    z-index: 4;
}
.firstSlideContent h1 {
    font-size: 8vh;
    font-weight: 800;
    margin-bottom: 3vh;
}
.firstSlideContent h3 {
    font-size: 2.5vh;
    font-weight: 300;
    max-width: 80vh;
    margin-bottom: 2.5vh;
    line-height: 1.25;
    min-width: 30vw;
}
.firstSlideContent .shortFeatures {
    margin-top: 5rem;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
}
.firstSlideContent .shortFeature {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}
.firstSlideContent .shortFeatures .shortFeature .illustration {
    width: 10vh;
    height: 10vh;
    margin-bottom: 2vh;
}
.firstSlideContent .shortFeatures .shortFeature .text {
    font-size: 1.5vh;
    text-align: center;
    margin-bottom: 1.5vh;
}
.firstSlideContent .shortFeatures .shortFeature .figure {
    font-size: 3vh;
    text-align: center;
    color: var(--yellow-light);
}
.shortFeature svg {
    height: 100%;
    width: auto;
}
.shortFeature svg path,
.shortFeature svg circle,
.shortFeature svg line,
.shortFeature svg polyline {
    stroke: var(--yellow-light);
    stroke-width: 32;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-miterlimit: 22;
    fill: none;
}
.shortFeature svg path.white,
.shortFeature svg circle.white,
.shortFeature svg line.white,
.shortFeature svg polyline.white {
    stroke: white;
}
.shortFeature .dotted {
    stroke-dasharray: 240 120
}
svg.shortFeatureRoute .dotted {
    animation: dottedMove 100s alternate linear infinite;
}
@keyframes dottedMove {
    from {
        stroke-dashoffset: 36400;
    }
    to {
        stroke-dashoffset: 0;
    }
}
.shortFeature .filled {
    fill: var(--yellow-light);
    stroke: none;
}
.shortFeature .filled.black {
    fill: black;
}
svg.shortFeatureBombs path {
    stroke-width: 110;
}
svg.shortFeatureTiming path,
svg.shortFeatureTiming line {
    stroke-width: 160;
}
.shortFeatureBombs .leftBomb,
.shortFeatureBombs .rightBomb {
    transform-box: fill-box;
}
.shortFeatureBombs .leftBomb {
    animation: leftBomb 5s ease-in-out infinite;
}
.shortFeatureBombs .rightBomb {
    animation: rightBomb 5s ease-in-out infinite;
}
@keyframes leftBomb {
    0% {
        transform: translate(130%, 0);
    }
    40% {
        transform: translate(-20%, 0);
    }
    80% {
        transform: translate(-20%, 0);
    }
    100% {
        transform: translate(130%, 0);
    }
}
@keyframes rightBomb {
    0% {
        transform: translate(-130%, 0);
    }
    40% {
        transform: translate(20%, 0);
    }
    80% {
        transform: translate(20%, 0);
    }
    100% {
        transform: translate(-130%, 0);
    }
}
.shortFeatureAiming .outer,
.shortFeatureAiming .middle,
.shortFeatureAiming .inner {
    animation: circleBlink 2s ease-in-out infinite;
}
.shortFeatureAiming .middle {
    animation-delay: 0.2s;
}
.shortFeatureAiming .inner {
    animation-delay: 0.4s;
}
@keyframes circleBlink {
    0% {
        stroke: var(--yellow-light);
    }
    5% {
        stroke: white;
    }
    20% {
        stroke: white;
    }
    25% {
        stroke: var(--yellow-light);
    }
    100% {
        stroke: var(--yellow-light);
    }
}
.shortFeatureAiming .aimDot {
    animation: dotBlink 2s ease-in-out infinite;
    animation-delay: 0.6s;
}
@keyframes dotBlink {
    0% {
        fill: var(--yellow-light);
    }
    5% {
        fill: white;
    }
    30% {
        fill: white;
    }
    35% {
        fill: var(--yellow-light);
    }
    100% {
        fill: var(--yellow-light);
    }
}
.shortFeatureTiming .timingLine1,
.shortFeatureTiming .timingLine2,
.shortFeatureTiming .timingLine3,
.shortFeatureTiming .timingLine4,
.shortFeatureTiming .timingLine5,
.shortFeatureTiming .timingLine6,
.shortFeatureTiming .timingLine7,
.shortFeatureTiming .timingLine8 {
    animation: lineBlink 2s ease-in-out infinite;
}
.shortFeatureTiming .timingLine5 {
    animation-delay: 0.2s;
}
.shortFeatureTiming .timingLine7 {
    animation-delay: 0.4s;
}
.shortFeatureTiming .timingLine4 {
    animation-delay: 0.6s;
}
.shortFeatureTiming .timingLine2 {
    animation-delay: 0.8s;
}
.shortFeatureTiming .timingLine6 {
    animation-delay: 1s;
}
.shortFeatureTiming .timingLine3 {
    animation-delay: 1.2s;
}
.shortFeatureTiming .timingLine8 {
    animation-delay: 1.4s;
}
@keyframes lineBlink {
    0% {
        stroke: var(--yellow-light);
    }
    5% {
        stroke: white;
    }
    30% {
        stroke: white;
    }
    35% {
        stroke: var(--yellow-light);
    }
    100% {
        stroke: var(--yellow-light);
    }
}
.backfireDetails {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: stretch;
    position: relative;
    height: 100vh;
}
.backfireDetails .chapterAnchor {
    top: -1.25rem;
}
.bfDetailsDrawing {
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.bfDetailsDrawing svg {
    width: auto;
    height: 70vh;
    transform-origin: 50% 50%;
    position: relative;
    z-index: 2;
}
.bfDetailsDrawing .backLight {
    position: absolute;
    top: calc(50% - 4vh);
    lefT: calc(50% - 4vh);
    width: 16vh;
    height: 8vh;
    background-color: #FFE20A;
    z-index: 1;
    border-radius: 50%;
    filter: blur(16vh);
}
.bfDetailsDrawing svg path {
    stroke: #fff;
    stroke-width: 18.94;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-miterlimit: 22.9256;
    fill: none;
}
.backfireDetails .content {
    width: 50%;
    height: 100%;
    padding: 10vh 10vh 10vh 2vh;
}
.backfireDetails .feature {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 4vh;
}
.feature .illustration {
    width: 12rem;
    height: 12rem;
}
.feature .featureText {
    width: 70%;
    padding-left: 3vh;
    font-size: 2.5vh;
    line-height: 1.25;
}
.feature .illustration.terrain {
    position: relative;
}
.feature .illustration .map {
    height: 100%;
    width: 100%;
    overflow: hidden;
    position: relative;
    z-index: 1;
}
.feature .illustration .map svg {
    height: 100%;
    width: auto;
    animation: terrainFlow 12s linear infinite;
}
@keyframes terrainFlow {
    0% {
        transform: translate(0, 0)
    }
    100% {
        transform: translate(calc(-100% + 12rem), 0)
    }
}
.feature .illustration .map svg path {
    stroke: white;
    stroke-width: 57.63;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-miterlimit: 10;
    fill: none;
    fill-rule: nonzero;
}
.feature .illustration .rer {
    height: 100%;
    width: 100%;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}
.feature .illustration .rer svg {
    height: 100%;
    width: auto;
    animation: terrainFlow 12s linear infinite;
}
.feature .illustration .rer svg path {
    stroke: var(--yellow-light);
    stroke-width: 77.31;
    stroke-miterlimit: 22.9256;
    fill: none;
}
.feature .illustration .rer svg path.source {
    stroke: none;
    fill: var(--yellow-light);
}
@keyframes rerCircleBlink {
    0% {
        opacity: 0;
    }
    5% {
        opacity: 1;
    }
    20% {
        opacity: 1;
    }
    25% {
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}
.feature .illustration svg path.circle {
    stroke: var(--yellow-light);
    opacity: 0;
    animation: rerCircleBlink 2s linear infinite;
}
.feature .illustration svg path.circle.c2 {
    animation-delay: 0.1s
}
.feature .illustration svg path.circle.c3 {
    animation-delay: 0.2s
}
.feature .illustration svg path.circle.c4 {
    animation-delay: 0.3s
}
.feature .illustration svg path.circle.c5 {
    animation-delay: 0.4s
}
.feature .illustration svg path.circle.c6 {
    animation-delay: 0.5s
}
.feature .illustration svg path.circle.c7 {
    animation-delay: 0.6s
}
.feature .illustration svg path.circle.c8 {
    animation-delay: 0.7s
}
.feature .illustration svg path.circle.c9 {
    animation-delay: 0.8s
}
.feature .illustration svg path.circle.c10 {
    animation-delay: 0.9s
}
.feature .illustration svg path.circle.c11 {
    animation-delay: 1s
}
.feature .illustration.terrain .plane svg {
    position: absolute;
    height: 40%;
    width: auto;
    top: 50%;
    left: 20%;
    z-index: 3;
    transform: translate(0, -50%);
    animation: planeFlow 12s linear infinite;
}
@keyframes planeFlow {
    0% {
        transform: translate(0, -50%) rotateX(0)
    }
    10% {
        transform: translate(0, -40%) rotateX(30deg)
    }
    30% {
        transform: translate(0, -60%) rotateX(-30deg)
    }
    50% {
        transform: translate(0, -30%) rotateX(40deg)
    }
    70% {
        transform: translate(0, -70%) rotateX(-40deg)
    }
    90% {
        transform: translate(0, -40%) rotateX(20deg)
    }
}
.feature .illustration.terrain .plane svg path {
    stroke: var(--yellow-light);
    stroke-width: 120;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-miterlimit: 22.9256;
    fill: black;
}
.feature .illustration .shadow {
    position: absolute;
    z-index: 4;
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    top: -1px;
    left: -1px;
    box-shadow: inset 0px 0px 12px 11px rgba(0, 0, 0, 1);
}
.feature .illustration.rebProof {
    position: relative;
}
.feature .illustration.rebProof .terrain {
    position: relative;
    height: 100%;
    width: 100%;
    overflow: hidden;
}
.feature .illustration .terrain svg {
    height: 100%;
    width: auto;
    animation: terrainFlow 12s linear infinite;
}
.feature .illustration.rebProof svg path,
.feature .illustration.rebProof svg polyline {
    stroke: #fff;
    stroke-width: 90.64;
    stroke-miterlimit: 22.9256;
    fill: none;
}
.feature .illustration.rebProof svg path.circle,
.feature .illustration.rebProof svg path.yellow {
    stroke: var(--yellow-light);
}
.feature .illustration.rebProof .plane svg {
    position: absolute;
    height: 1.5rem;
    width: auto;
    top: 20%;
    left: 20%;
    z-index: 3;
    transform: translate(0, -50%);
    animation: planeFlowSide 12s linear infinite;
}
.feature .illustration.rebProof .plane svg path {
    stroke: var(--yellow-light);
    stroke-width: 150;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-miterlimit: 22.9256;
    fill: black;
}
@keyframes planeFlowSide {
    0% {
        transform: translate(0, -50%)
    }
    10% {
        transform: translate(0, -20%)
    }
    30% {
        transform: translate(0, -60%)
    }
    50% {
        transform: translate(0, -30%)
    }
    70% {
        transform: translate(0, -70%)
    }
    90% {
        transform: translate(0, -20%)
    }
}
.feature .illustration.terrainBallistics {
    position: relative;
}
.feature .illustration.terrainBallistics .terrain {
    position: relative;
    height: 100%;
    width: 100%;
    overflow: hidden;
}
.feature .illustration.terrainBallistics img {
    position: relative;
    animation: terrainBallistics 12s linear infinite;
    width: 100%;
    height: auto;
}
@keyframes terrainBallistics {
    0% {
        transform: translate(0, calc(-100% + 12rem))
    }
    100% {
        transform: translate(0, 0)
    }
}
.feature .illustration.terrainBallistics .plane {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}
.feature .illustration.terrainBallistics .plane svg {
    width: 100%;
    height: 100%;
}
.feature .illustration.terrainBallistics .plane svg .str0 {
    stroke: #FFE20A;
    stroke-width: 210.94;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-miterlimit: 22.9256
}
.feature .illustration.terrainBallistics .plane svg .str1 {
    stroke: #FFE20A;
    stroke-width: 180;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-miterlimit: 22.9256
}
.feature .illustration.terrainBallistics .plane svg .str3 {
    stroke: #FFE20A;
    stroke-width: 180;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-miterlimit: 22.9256
}
.feature .illustration.terrainBallistics .plane svg .str2 {
    stroke: #FEFEFE;
    stroke-width: 210.94;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-miterlimit: 22.9256;
    stroke-dasharray: 210.940056 632.820167
}
.feature .illustration.terrainBallistics .plane svg .fil0 {
    fill: none
}
.feature .illustration.terrainBallistics .plane svg .fil2 {
    fill: none;
    fill-rule: nonzero
}
.feature .illustration.terrainBallistics .plane svg .blackBg {
    fill: #000
}
.feature .illustration.terrainBallistics .plane svg .fil1 {
    fill: #000;
    fill-rule: nonzero
}
.feature .illustration.terrainBallistics .plane svg .prop {
    animation: propsTopSpin 0.15s linear infinite;
    transform-origin: center center;
    transform-box: fill-box;
}
@keyframes propsTopSpin {
    0% {
        opacity: 1
    }
    50% {
        opacity: 0
    }
    100% {
        opacity: 1
    }
}
.feature .illustration.terrainBallistics .plane svg .bomb1,
.feature .illustration.terrainBallistics .plane svg .bomb2 {
    transform-box: fill-box;
    transform-origin: center center;
    animation: bombTopDrop 12s ease-out infinite;
}
.feature .illustration.terrainBallistics .plane svg .bomb2 {
    animation: bombTopDrop 12s ease-in-out infinite;
    animation-delay: 0.1s;
}
@keyframes bombTopDrop {
    0% {
        transform: translate(0, 0)
    }
    85% {
        transform: translate(0, 0) scale(1);
        opacity: 1
    }
    95% {
        transform: translate(1600%, 450%) scale(0);
        opacity: 0
    }
    100% {
        transform: translate(1600%, 450%);
        opacity: 0
    }
}
.bubble {
    opacity: 0;
    animation: bubbleAppear 12s linear infinite;
}
@keyframes bubbleAppear {
    0% {
        opacity: 0
    }
    45% {
        opacity: 0
    }
    50% {
        opacity: 1
    }
    70% {
        opacity: 1
    }
    75% {
        opacity: 0
    }
    100% {
        opacity: 0
    }
}
.application {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-start;
    position: relative;
    height: calc(100vh - 4rem);
}
.application .video {
    width: 50%;
    height: calc(100vh - 4rem);
    overflow: hidden;
    position: relative;
}
.application .video video {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    height: 100%;
}
.application .content {
    height: 100%;
    width: 50%;
    padding: 5vh 10vh;
    display: flex;
    flex-direction: column;
}
.application .content h1 {
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 700;
    line-height: 1.25;
}
.application .content .appBlock {
    margin-bottom: 3vh;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
}
.application .content .illustration {
    width: 10vh;
    height: 10vh;
    margin-right: 4vh;
    flex-shrink: 0;
}
.application .content .appBlock .appTextBlock {
    font-size: 2vh;
    line-height: 1.25;
}
.appBlock svg {
    height: 100%;
    width: auto;
}
.appBlock svg path,
.appBlock svg circle {
    stroke: white;
    fill: none;
    stroke-width: 20;
    stroke-miterlimit: 22.9256
}
svg.appReb path,
svg.appTent path {
    stroke-width: 110;
}
.appBlock svg path.fillYellow,
.appBlock svg circle.fillYellow {
    fill: var(--yellow-light);
    stroke: none;
}
.appBlock svg path.yellow,
.appBlock svg circle.yellow {
    stroke: var(--yellow-light);
}
.backfiretth {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    position: relative;
}
.backfiretth .picture {
    position: absolute;
    top: 4vh;
    right: 20vh;
    width: 30%;
}
.backfiretth .picture svg {
    width: 100%;
    height: auto;
}
.backfiretth .picture svg path {
    stroke: white;
    stroke-width: 19.06;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-miterlimit: 22.9256;
    fill: none;
}
.backfiretth .content {
    width: 100%;
    height: 100%;
    padding: 5vh 10vh 0 10vh;
}
.backfiretth .content h1 {
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 700;
    line-height: 1.25;
}
.backfiretth .content h2 {
    font-size: 1.25rem;
    margin-bottom: 4rem;
    font-weight: 300;
    line-height: 1.25;
    color: #aaa;
}
.backfiretth .content h2 strong {
    font-weight: 500;
    color: #fff;
}
.backfiretth .content h3 {
    font-size: 1.5rem;
    font-weight: 500;
    padding-bottom: 2vh;
    border-bottom: 1px solid var(--yellow-light);
    margin-bottom: 1.5rem;
    width: fit-content;
}
.tthCols {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    margin-top: 5vh;
}
.tthCol {
    width: 25%;
    padding-right: 5vh;
}
.tthCol:nth-of-type(1) {
    width: 30%;
}
.tthCol:nth-of-type(3) {
    width: 20%;
}
.tthCol div {
    margin-bottom: 1.5rem;
}
.tthCol h4 {
    margin-bottom: 0.5rem;
    font-weight: 400;
}
.tthCol p {
    color: #999;
    line-height: 1.25;
}
.skladBpAK {
    color: #fff;
    padding: 10vh;
    position: relative;
}
.skladBpAK h1 {
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 700;
    line-height: 1.25;
}
.skladBpAK h2 {
    font-size: 1.25rem;
    margin-bottom: 4rem;
    font-weight: 300;
    line-height: 1.25;
    color: #aaa;
}
.bpakIllustrations {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
}
.bpakPhoto img {
    height: calc(35vh + 2rem);
    width: auto;
    margin-top: 1rem;
}
.sklad {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
}
.sklad .itemPic {
    height: 15vh;
    width: 15vh;
    margin: 1rem 0;
}
.sklad .threePlanes .itemPic {
    height: calc(35vh + 2rem);
    background-color: transparent;
    width: 55vh;
    position: relative;
}
.sklad .threePlanes .itemPic svg path {
    stroke: white;
    stroke-width: 16;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-miterlimit: 22.9256;
    fill: none
}
.threePlanes .itemPic svg {
    position: absolute;
    transform-origin: 50% 50%;
    transform: rotate(-90deg);
    width: 15vh;
    height: auto;
}
.threePlanes .itemPic svg:nth-of-type(1) {
    bottom: -2vh;
    left: 5vh;
}
.threePlanes .itemPic svg:nth-of-type(2) {
    bottom: -2vh;
    left: 35vh;
}
.threePlanes .itemPic svg:nth-of-type(3) {
    bottom: 12vh;
    left: 20vh;
}
.sklad .item.controlCenter .itemPic svg,
.sklad .item.launcher .itemPic svg,
.sklad .item.van .itemPic svg,
.sklad .item.zip .itemPic svg {
    width: 100%;
    height: auto;
    margin-left: -0.5rem;
}
.sklad .itemPic svg path {
    stroke: white;
    stroke-width: 16;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-miterlimit: 22.9256;
    fill: none
}
.sklad .item.controlCenter .itemPic svg path {
    stroke-width: 13;
}
.sklad .itemPic svg path.yellow {
    stroke: var(--yellow-light);
}
.sklad .zip .itemPic svg path {
    stroke-width: 72;
}
.sklad .item {
    height: auto;
    padding-right: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    position: relative;
}
.sklad .threePlanes {
}
.sklad .item p {
    height: 5vh;
    text-align: center;
}
.calcContainer {
    margin-top: 4rem;
}
.calcContainer h2 {
    margin-bottom: 0;
}
.calculator {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
}
.customSelect {
    position: relative;
    width: 20rem;
    max-width: 100%;
    font-size: 1rem;
    color: #fff;
    margin: 2rem 2rem 0 0;
    border: 1px #fff solid;
}
.selectButton {
    width: 100%;
    font-size: 1rem;
    background-color: #000;
    color: #fff;
    padding: 0.5rem 1rem;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
}
.selectedValue {
    text-align: left;
    white-space: nowrap;
    overflow: hidden;
    position: relative;
    width: 17rem;
}
.selectedValue:after {
    position: absolute;
    content: '';
    z-index: 1;
    top: 0;
    right: 0;
    width: 2rem;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 70%);
}
.arrow {
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid #fff;
    transition: transform ease-in-out 0.3s;
}
.selectDropdown {
    position: absolute;
    list-style: none;
    width: calc(100% + 2px);
    margin-left: -1px;
    background-color: #000;
    border: 1px solid #fff;
    max-height: 200px;
    overflow-y: auto;
    transition: 0.25s ease;
    transform-origin: 0 0;
    transform: scaleY(0);
    opacity: 0;
    visibility: hidden;
    z-index: 3;
    font-size: 1rem;
    padding: 0.25rem 0;
}
.selectDropdown li {
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
}
.selectDropdown li label {
    width: 100%;
    padding: 0.5rem 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
}
.selectDropdown li:hover,
.selectDropdown input:checked ~ label {
    color: var(--yellow-light);
}
.selectDropdown input:focus ~ label {
    color: var(--yellow-light);
}
.selectDropdown input[type="radio"] {
    position: absolute;
    left: 0;
    opacity: 0;
}
.customSelect.active .arrow {
    transform: rotate(180deg);
}
.customSelect.active .selectDropdown {
    opacity: 1;
    visibility: visible;
    transform: scaleY(1);
}
.calcResult {
    padding-top: 2.75rem;
    line-height: 1.25;
}
.calcResult span {
    color: var(--yellow-light);
    font-weight: 600;
    white-space: nowrap;
}
.gallery {
    color: #fff;
    padding: 10vh 10vh 0 10vh;
    position: relative;
}
.gallery h1 {
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 700;
    line-height: 1.25;
}
.gallery h2 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 300;
    line-height: 1.25;
    color: #aaa;
}
.galleryContainer {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}
.galleryContainer a {
    margin: 0 1rem 1rem 0;
}
.galleryContainer a img {
    display: block;
    height: 6rem;
    width: 9rem;
}
.backfireSchool {
    color: #fff;
    padding: 10vh;
    position: relative;
}
.backfireSchool h1 {
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 700;
    line-height: 1.25;
}
.backfireSchool h2 {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    font-weight: 300;
    line-height: 1.25;
    color: #aaa;
}
.backfireSchool .schoolLine {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
}
.schoolChapter:nth-of-type(1) {
    width: 100%;
}
.schoolChapter:nth-of-type(2) {
    padding-right: 10vh;
}
.schoolChapterNumber {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 2rem;
}
.schoolChapterNumber div {
    width: 4rem;
    height: 4rem;
    border: 1px var(--yellow-light) solid;
    border-radius: 50%;
    font-size: 2.5rem;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 2rem;
}
.schoolChapterNumber h3 {
    font-size: 1.5rem;
}
.schoolChapterDays {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
}
.schoolChapterDay {
    padding: 0 4rem 2rem 0;
}
.schoolChapter h4,
.schoolChapter h5 {
    margin-bottom: 1rem;
    line-height: 1.25;
}
.schoolChapter h4 {
    border-bottom: 1px var(--yellow-light) solid;
    width: fit-content;
    padding-bottom: 1rem;
    font-weight: 300;
}
.schoolChapter h4 strong {
    font-weight: 600;
}
.schoolChapter .h5 {
    font-size: 0.875rem;
}
.schoolChapter ul {
    list-style-type: disc;
    color: #999999;
    font-size: 0.875rem;
    font-weight: 400;
    margin-bottom: 1rem;
    line-height: 1.25;
}
.schoolChapter ul li {
    margin: 0 0 1rem 2rem;
}
.footer {
    color: #fff;
    line-height: 1.25;
    padding: 0 10vh;
}
.footerContainer {
    padding: 4rem 0 2rem 0;
    border-top: 1px var(--yellow-light) solid;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
}
.footer .leftBlock {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
}
.zpInfo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}
.footer .zpLogo {
}
.footer .zpLogo svg {
    width: 16rem;
    height: auto;
}
.footer .zpLogo svg path,
.footer .zpLogo svg polygon {
    fill: #fff;
}
.footer .zpLogoSquad svg {
    height: 4rem;
    width: auto;
}
.hotline {
    color: #999999;
}
.hotlineCall {
    font-weight: 600;
    font-size: 1.25rem;
}
.chatBot {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    height: 100%;
    margin-left: 4rem;
    padding-top: 2.25rem;
}
.chatBot svg {
    height: 5rem;
    width: auto;
    margin-bottom: 1rem;
}
.chatBot svg path {
    stroke: #fff;
    stroke-width: 4;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-miterlimit: 22.9256
}
.chatBot svg path.yellow {
    stroke: var(--yellow-light);
}
.chatBot a {
    font-size: 0.875rem;
}
.microMenu {
    margin-left: 5rem;
    padding-top: 3rem;
    justify-self: flex-start;
}
.microMenu p {
    margin-bottom: 1rem;
}
.socialBlock {
    margin-left: 4rem;
}
.socialBlock h4 {
    font-size: 1rem;
    font-weight: 400;
    color: #999
}
.socialBlock h5 {
    font-size: 1.25rem;
    font-weight: 600;
}
.definition {
    color: #bbb;
}
.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%;
}
.footerSubContainer {
    padding: 1rem 0;
    border-top: 1px #333 solid;
    font-size: 0.75rem;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    color: #999;
}
.nowrap {
    white-space: nowrap;
}
.tosContainer {
    padding: 10vh;
}
.tosContainer h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    margin-top: 3rem;
    font-weight: 600;
    line-height: 1.25;
}
.tosContainer h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 500;
    line-height: 1.25;
}
.tosContainer p,
.tosContainer li {
    font-size: 1rem;
    line-height: 1.25;
    margin-bottom: 1rem;
    font-weight: 300;
    color: #999;
}
.tosContainer li {
    margin-left: 2rem;
    margin-bottom: 0.5rem;
}
.tosContainer strong {
    color: #fff;
    font-weight: 500;
}

.hpBackfireSection,
.hpQQSection {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    padding: 10vh;
    position: relative;
}
.hpBackfireSection .bfPicture {
    width: 33vw;
    aspect-ratio: 1 / 1;
    margin-right: 4rem;
}
.hpBackfireSection .bfPicture path {
    stroke: #FFE20A;
    fill: none;
    stroke-width: 2;
}
.hpbfTextPart,
.hpQQTextPart {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}
.hpbfTextPart svg {
    margin-bottom: 2rem;
    height: 3rem;
    width: auto;
}
.hpQQTextPart svg {
    margin-bottom: 2rem;
    height: 5rem;
    width: auto;
}

.hpbfTextPart svg path {
    fill: #FFE20A;
}
.backfireTextTease,
.qqTextTease {
    margin-bottom: 2rem;
    width: 50vw;
}
.backfireTextTease p,
.qqTextTease p {
    margin-bottom: 1rem;
    font-size: 1.25rem;
    line-height: 1.25;
}
.hpButton {
    text-decoration: none;
    display: flex;
    padding: 0.75rem 1.25rem;
    border: 1px solid #fff;
    text-transform: uppercase;
    background-color: rgba(255,255,255,0);
    font-weight: 700;
    margin-right: 2rem;
}
.hpButton:hover {
    border-color: black;
    color: black;
    background-color: rgba(255,255,255,1);
}
.hpQQButtons {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}
.divider {
    height: 1px;
    width: calc(100% - 20vh);
    margin-left: 10vh;
    background-color: #FFE20A;
}
.qqPicture {
    width: 33vw;
    aspect-ratio: 1 / 1;
    margin-left: 4rem;
}

.hpProductsSection {
    position: relative;
}
.hpProductsSection h1 {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.25;
    margin-left: 10vh;
    margin-top: 6rem;
}


.carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 5vh 10vh;
}
.carousel:before {
    height: 100%;
    width: 10vh;
    background: linear-gradient(90deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    content: '';
}
.carousel:after {
    height: 100%;
    width: 10vh;
    background: linear-gradient(90deg, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%);
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    content: '';
}
.carouselContainer {
    display: flex;
    transition: transform 0.5s ease-in-out;
    position: relative;
}


.carouselItem {
    flex: 0 0 25%;
    aspect-ratio: 1 / 1;
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}



.carouselControl {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0);
    color: white;
    border: none;
    height: 4rem;
    width: 4rem;
    cursor: pointer;
    z-index: 10;
}
.carouselControl span {
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: block;
    width: 2rem;
    height: 2rem;
    transform-origin: 50% 50%;
    transform: rotate(45deg);

}

.carouselControl.left {
    left: 0;
}
.carouselControl.left span {
    border-bottom: 1px solid #fff;
    border-left: 1px solid #fff;
}
.carouselControl.left:hover span {
    border-bottom: 2px solid #fff;
    border-left: 2px solid #fff;
}

.carouselControl.right {
    right: 0;
}
.carouselControl.right span {
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
}
.carouselControl.right:hover span {
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
}
.carouselItem .hpButton {
    margin: 0 auto;
}
.productPicture {
    height: 50%;
    aspect-ratio: 1 / 1;
    margin-bottom: 1rem;
}
.productPicture svg {
    width: 100%;
    height: 100%;
    shape-rendering:geometricPrecision;
    text-rendering:geometricPrecision;
    image-rendering:optimizeQuality;
    fill-rule:evenodd;
    clip-rule:evenodd;
}
.productPicture svg path {
    /*stroke-width:2.22;*/
    stroke-linecap:round;
    stroke-linejoin:round;
    stroke-miterlimit:22.9256;
    fill: none;
}
.productPicture svg path.white {
    stroke: #ffffff;
}
.productPicture svg path.whiteFill {
    stroke:none;
    fill: #fff;
}
.productPicture svg path.yellow {
    stroke: #FFE20A;
}
.carouselItem h4 {
    font-weight: 500;
    margin-bottom: 1rem;
}
.carouselItem p {
    font-weight: 300;
    font-size: 0.75rem;
    margin-bottom: 1rem;
    max-width: 60%;
}
.mediaAboutUs {
    color: #fff;
    padding: 10vh;
    position: relative;
}
.mediaAboutUs h1 {
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 700;
    line-height: 1.25;
}
.mediaGallery {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: flex-start;
    max-height: 13rem;
    overflow: hidden;
    position: relative;
}
.galShowMore {
    position: absolute;
    bottom: 0;
    left: 1rem;
    font-size: 0.75rem;
    cursor: pointer;
    color: #FFE20A;
    transition: all 0.2s ease-in;
    padding: 0 0 2rem 10vh;
}
.galShowMore:hover {
    color: #aaa;
}
.mediaGallery.open {
    max-height: unset;
}
.mediaGallery.open .galShowMore {
    display: none;
}
.mediaLink {
    width: calc((100% / 6) - 2rem);
    margin: 1rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}
.mediaLink img {
    width: 100%;
    height: auto;
    margin-bottom: 1rem;
}
.mediaLink p {
    font-size: 0.75rem;
}
.mobileMenu {
    display: none;
}
.chapterAnchor#products {
    top: calc(-8rem + 1px);
}
@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 {
        padding-right: 0;
    }
    .headerRight {
        display: none;
    }
    .mobileMenu {
        height: 100%;
        width: 4rem;
        position: relative;
        display: flex;
    }
    .mobileMenu .burger {
        position: absolute;
        right: 0;
        top: 0;
        width: 4rem;
        height: 4rem;
    }
    .burger span {
        height: 1px;
        width: 2rem;
        background-color: #fff;
        transform: rotate(0deg);
        transition: all 0.2s ease-out;
        position: absolute;
        margin-left: 1rem;
        opacity: 1;
        transform-origin: 50% 50%;
    }
    .burger span:nth-of-type(1) { top: 35%; }
    .burger span:nth-of-type(2) { top: 50%; }
    .burger span:nth-of-type(3) { top: 65%; }

    .mobileMenu.open .burger span:nth-of-type(1) {
        top: 50%;
        transform: rotate(45deg);
    }
    .mobileMenu.open .burger span:nth-of-type(2) { opacity: 0; }
    .mobileMenu.open .burger span:nth-of-type(3) {
        top: 50%;
        transform: rotate(-45deg);
    }

    .mobileMenu .mobileDropdown {
        position: absolute;
        top: 4rem;
        right: -2rem;
        padding: 1.5rem 4rem 1.5rem 2rem;
        opacity: 0;
        pointer-events: none;
        background-color: #111;
        display: flex;
        flex-direction: column;
        height: auto;
        color: #fff;
    }
    .mobileMenu.open .mobileDropdown {
        opacity: 1;
        pointer-events: auto;
    }

    .mobileMenu a {
        margin: 0.5rem 0;
        white-space: nowrap;
    }
    .mobileMenu .mobileDropdown .subMenu {
        display: none;
    }
    .mobileMenu .mobileDropdown .droppable .arrow {
        display: none;
    }

    html, body {
        font-size: 16px;
    }
    .miniMenu,
    .sharingBlock {
        display: none;
    }
    .firstSlide {
        align-items: flex-start;
        margin-top: 4rem;
        padding: 4rem;
    }
    .backfireAnim {
        right: auto;
        left: 10vh;
        width: calc(100% - 20vh);
        height: 40vh;
        top: 5vh;
    }
    .backfireAnim svg {
        margin-left: -20%;
    }
    .bfAnimLeft,
    .bfAnimRight {
        display: none;
    }
    /*.bfSvgProps {*/
    /*    animation: none;*/
    /*}*/
    .windAnim {
        height: 30vh;
        width: 100%;
        opacity: 0.3;
    }
    .firstSlideContent {
        margin-top: 4rem;
        margin-left: 0;
        width: 100%;
    }
    .backfireFirstSlideContent {
        margin-top: 10rem;
    }
    .firstSlideContent h3 {
        font-size: 1.75rem;
    }
    .shortFeatures {
        width: 100%;
    }
    .bfDetailsDrawing {
        display: none;
    }
    .backfireDetails {
        height: auto;
        margin-bottom: 5rem;
    }
    .backfireDetails .content {
        width: 100%;
        padding: 0 5vh;
        height: auto;
    }
    .feature .illustration {
        width: 30vw;
        height: 30vw;
        flex-shrink: 0;
    }
    @keyframes terrainFlow {
        0% {
            transform: translate(0, 0)
        }
        100% {
            transform: translate(calc(-100% + 30vw), 0)
        }
    }
    @keyframes terrainBallistics {
        0% {
            transform: translate(0, calc(-100% + 30vw))
        }
        100% {
            transform: translate(0, 0)
        }
    }
    @keyframes planeFlow {
        0% {
            transform: translate(0, -50%)
        }
        10% {
            transform: translate(0, -40%)
        }
        30% {
            transform: translate(0, -60%)
        }
        50% {
            transform: translate(0, -30%)
        }
        70% {
            transform: translate(0, -70%)
        }
        90% {
            transform: translate(0, -40%)
        }
    }
    .feature .featureText {
        font-size: 1.75rem;
    }
    .application {
        flex-direction: column-reverse;
        height: auto;
    }
    .application .video {
        margin-top: 5vh;
        width: 100%;
        height: 100vw;
        max-height: 100vh;
    }
    .application .content {
        width: 100%;
        padding: 0 5vh;
    }
    .application .content h1 {
    }
    .skladBpAK {
        padding: 5vh;
    }
    .bpakIllustrations {
        flex-direction: column;
    }
    .sklad {
        flex-wrap: wrap;
        margin-bottom: 5vh;
    }
    .sklad .item.threePlanes {
        height: 30vh;
        width: 100%;
        padding-right: 0;
    }
    .sklad .item.threePlanes .itemPic {
        height: 30vh;
        width: 100%;
        padding-right: 0;
    }
    .threePlanes .itemPic svg:nth-of-type(2) {
        left: auto;
        right: 5vh;
    }
    .threePlanes .itemPic svg:nth-of-type(3) {
        bottom: 8vh;
        left: 50%;
        transform: translate(-50%, 0) rotate(-90deg);
    }
    .otherItems {
        display: flex;
        flex-direction: row;
        width: 50%;
    }
    .sklad .item {
        padding-right: 0;
        margin: 0 1rem;
        align-items: center;
    }
    .sklad .itemPic {
        width: 18vw;
        height: 18vw;
    }
    .sklad .item p {
        text-align: center;
    }
    .bpakPhoto {
        width: 100%;
    }
    .bpakPhoto img {
        width: 100%;
        height: auto;
    }
    .backfiretth .picture {
        display: none;
    }
    .backfiretth .content {
        padding: 5vh;
    }
    .tthCols {
        flex-wrap: wrap;
    }
    .tthCol {
        padding-right: 2vh;
        width: 50%;
        flex-shrink: 0;
        padding-bottom: 2vh;
    }
    .tthCol:nth-of-type(1),
    .tthCol:nth-of-type(3) {
        width: 50%;
    }
    .gallery {
        padding: 5vh;
    }
    .galleryContainer a img {
        height: calc(22vw - 3rem);
        width: auto;
    }
    .backfireSchool {
        padding: 5vh;
    }
    .schoolChapter:nth-of-type(1) .schoolChapterDays {
        flex-wrap: wrap;
    }
    .schoolChapter:nth-of-type(1) .schoolChapterDay {
        width: 50%;
    }
    .schoolChapter:nth-of-type(2) {
        padding-bottom: 2rem;
    }
    .footer {
        padding: 0 5vh;
    }
    .vanishOnMobile {
        display: none;
    }
    .tosContainer {
        padding: 5vh;
    }
    .hpBackfireSection {
        padding: 4rem;
    }
    .divider {
        margin-left: 4rem;
        width: calc(100% - 8rem);
    }
    .hpQQSection {
        padding: 4rem;
    }
    .hpQQButtons {
        flex-wrap: wrap;
    }
    .hpQQButtons a {
        margin-bottom: 1rem;
    }
    .carouselItem {
        flex: 0 0 50%;
    }
    .mediaAboutUs {
        padding: 4rem;
    }
    .mediaGallery {
        max-height: 13rem;
    }
    .mediaLink {
        width: calc(25% - 2rem);
    }
    .galShowMore {
        padding: 0 0 2rem 4rem;
    }

}
@media (max-width: 1000px) {
    .firstSlide {
        min-height: auto;
        padding: 4rem;
    }
    .videoCover {
        opacity: 0.6;
    }
    .firstSlide .content {
        min-height: auto;
    }
    .backfireDetails .content {
        padding: 4rem;
    }
    .backfiretth .content {
        padding: 4rem;
    }
    .firstSlideContent h3 {
        font-size: 1.5rem;
    }
    .qqTextTease {
        width: auto;
    }
    .qqPicture {
        display: none;
    }
    .skladBpAK {
        padding: 4rem;
    }
    .calculator {
        flex-wrap: wrap;
    }
    .customSelect {
        width: calc(50% - 2rem);
    }
    .footer {
        padding: 0 4rem;
    }
    .footerContainer {
        flex-direction: column;
    }
    .socialBlock {
        margin-left: 0;
        margin-bottom: 0;
        margin-top: 5vh;
    }
    .tosContainer {
        padding: 4rem;
    }
    .hpProductsSection h1 {
        margin-left: 4rem;
    }
    .carousel {
        padding: 4rem;
    }
}
@media (max-width: 760px) {
    .logoButton {
        padding: 1rem 0;
    }
    .firstSlide {
        padding: 2rem;
    }
    .firstSlideContent {
        margin-top: 0;
    }
    .backfireFirstSlideContent {
        margin-top: 10rem;
    }
    .firstSlideContent svg {
        max-width: 80%;
    }
    .firstSlideContent h1 {
        font-size: 3rem;
    }
    .firstSlideContent h3 {
        font-size: 1.125rem;
        text-shadow: 0 0 0.25rem #000;
    }
    .backfireAnim {
        height: 30vh;
        left: 4rem;
    }
    .firstSlideContent .shortFeatures {
        flex-wrap: wrap;
    }
    .firstSlideContent .shortFeature {
        width: 50%;
        margin-bottom: 2rem;
    }
    .hpBackfireSection {
        padding: 2rem;
        flex-direction: column;
        align-items: flex-start;
    }
    .hpBackfireSection .bfPicture {
        width: 100%;
        margin-bottom: 2rem;
    }
    .hpbfTextPart {
        width: 100%;
    }
    .backfireTextTease {
        width: 100%;
    }
    .divider {
        margin-left: 2rem;
        width: calc(100% - 4rem);
    }
    .backfireDetails .content {
        padding: 2rem;
    }
    .backfireDetails .feature {
        flex-direction: column;
    }
    .feature .illustration {
        width: calc(100vw - 4rem);
        height: calc(100vw - 4rem);
    }
    @keyframes terrainFlow {
        0% {
            transform: translate(0, 0)
        }
        100% {
            transform: translate(calc(-100% + (100vw - 4rem)), 0)
        }
    }
    @keyframes terrainBallistics {
        0% {
            transform: translate(0, calc(-100% + (100vw - 4rem)))
        }
        100% {
            transform: translate(0, 0)
        }
    }
    .feature .featureText {
        padding: 2rem 0 4rem 0;
        width: 100%;
        font-size: 1.25rem;
    }
    .application .content {
        padding: 0 2rem;
    }
    .application .content .appBlock {
        flex-direction: column;
        margin-bottom: 4rem;
    }
    .application .content .illustration {
        margin-right: 0;
        margin-bottom: 1rem;
        width: 30vw;
        height: 30vw;
    }
    .skladBpAK {
        padding: 2rem;
    }
    .sklad .threePlanes .itemPic {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
    }
    .sklad .item.threePlanes {
        height: 20vh;
    }
    .sklad .item.threePlanes .itemPic {
        height: 15vh;
    }
    .threePlanes .itemPic svg:nth-of-type(1) {
        position: relative;
        bottom: auto;
        left: auto;
    }
    .threePlanes .itemPic svg:nth-of-type(2),
    .threePlanes .itemPic svg:nth-of-type(3) {
        display: none;
    }
    .otherItems {
        width: 100%;
    }
    .sklad .item {
        width: 50%;
    }
    .backfiretth .content {
        padding: 2rem;
    }
    .tthCol,
    .tthCol:nth-of-type(1),
    .tthCol:nth-of-type(3) {
        width: 100%;
    }
    .gallery {
        padding: 2rem;
    }
    .galleryContainer a {
        width: calc(50% - 1rem);
    }
    .galleryContainer a img {
        width: 100%;
        height: auto;
    }
    .backfireSchool {
        padding: 2rem;
    }
    .schoolChapterNumber div {
        flex-shrink: 0;
        margin-right: 1rem;
    }
    .schoolChapterNumber h3 {
        font-size: 1.25rem;
    }
    .schoolChapter:nth-of-type(1) .schoolChapterDay {
        width: 100%;
        padding: 0 0 2rem 0;
    }
    .schoolChapter:nth-of-type(2) {
        padding-right: 0;
    }
    .footerContainer {
        padding: 2rem 0;
    }
    .footer .microMenu {
        display: none;
    }
    .footerSubContainer {
        flex-direction: column-reverse;
    }
    .footerSubContainer a {
        margin-bottom: 1rem;
    }
    svg.shortFeatureRoute .dotted {
        animation: unset;
    }
    .footer {
        padding: 0 2rem;
    }
    .hpProductsSection h1 {
        margin-left: 2rem;
    }
    .carousel {
        padding: 2rem;
    }
    .carouselItem {
        flex: 0 0 100%;
    }
    .carouselItem .hpButton {
        font-size: 0.875rem;
    }
    .hpQQSection {
        padding: 2rem;
    }
    .backfireTextTease p, .qqTextTease p {
        font-size: 1.125rem;
    }
    .mediaAboutUs {
        padding: 2rem;
    }
    .mediaGallery {
        max-height: 11rem;
    }
    .galShowMore {
        margin-top: 2rem;
        padding: 0 0 2rem 1rem;
    }
    .mediaLink {
        width: calc(50% - 1rem);
    }
    .mediaLink:nth-of-type(1n) {
        margin-right: 1rem;
        margin-left: 0;
    }
    .mediaLink:nth-of-type(2n) {
        margin-right: 0;
        margin-left: 1rem;
    }
}
@media (max-width: 420px) {
    .firstSlideContent h1 {
        font-size: 2.5rem;
    }
    .feature .featureText,
    .skladBpAK h2 {
        font-size: 1rem;
    }
    .customSelect {
        width: 100%;
    }
    .footer .leftBlock {
        flex-wrap: wrap;
    }
    .chatBot {
        margin-left: 0;
        width: 100%;
    }
    .backfireAnim {
        height: 30vh;
        left: 2rem;
    }
}
@media (max-width: 380px) {
    .application .content h1,
    .skladBpAK h1,
    .backfiretth .content h1,
    .gallery h1,
    .backfireSchool h1 {
        font-size: 1.5rem;
    }
    .backfiretth .content h2,
    .gallery h2,
    .backfireSchool h2 {
        font-size: 1rem;
    }
    .backfiretth .content h3 {
        font-size: 1.25rem;
    }
}