@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&amp;family=Cormorant+Garamond:wght@400;700&amp;family=Open+Sans:wght@400;600;700&amp;display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:focus {
    outline: 0;
}

img {
    border: none;
    display: block;
}

ol,
ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

a {
    text-decoration: none;
    cursor: pointer !important;
}

body,
html {
    width: 100%;
    height: 100%;
    min-height: 100%;
}

body {
    font-family: "Cinzel", sans-serif;
    color: #fff;
    overflow-x: hidden;
    background-color: #000;
}

html[lang=ru] body {
    font-family: 'Cormorant Garamond', serif;
}

html[lang=ru] .logo-holder {
    text-transform: uppercase;
}

html[lang=ru] .inner-block .title {
  text-transform: uppercase;
}

.bg-intro {
    background: url(../images/first-screen-bg1.jpg) #000 no-repeat top center;
    background-size: cover;
}

video {
    display: none;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    position: fixed;
    left: 0;
    top: 0;
    z-index: -3;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.first-screen {
    position: relative;
    max-width: 680px;
    width: 100%;
    margin: 0 auto;
    padding: 10% 15px;
    text-align: center;
}

.mob-pic {
    display: none;
    margin: 0 -15px;
    width: calc(100% + 30px);
}

.info-bacteria {
    position: fixed;
    top: 10px;
    left: 0;
}

.info-bacteria img {
    max-width: 200px;
    -webkit-animation: zoom 2s linear infinite;
    animation: zoom 2s linear infinite;
}

.info-bacteria p {
    position: absolute;
    top: 46%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 108px;
    font-size: 13px;
    line-height: 1.3;
    width: 100%;
}

@keyframes zoom {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    50% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

.first-screen.other {
    padding: 25px 0;
}

.logo-holder {
    margin-top: 50px;
}

.first-screen.other .logo-holder {
    margin-top: 0;
}

.logo-holder h1 {
    font-size: 79px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 5px;
}
.logo-holder h2 {
    font-size: 36px;
    color: #b20000;
    text-transform: uppercase;
    letter-spacing: 25px;
    font-weight: 700;
    text-shadow: 1px 1px 2px #000;
}
.first-screen.other .logo-holder h1 {
    font-size: 36px;
    text-shadow: 0px 0px 1px #000;
    font-weight: 400;
}

.first-screen.other .logo-holder h2 {
    font-size: 24px;
    letter-spacing: 5px;
    text-shadow: 1px 1px 1px #000000;
    font-weight: 400;
}
.text-block {
    margin-top: 85px;
}
.text-block h1 {
    font-weight: 400;
    text-transform: uppercase;
    text-shadow: 1px 1px 1px #000000;
}

.text-block .btn_wrp {
    margin-top: 15px;
}

.wrapper {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    width: 100%;
    height: 100%;
    min-height: 100%;
}

.muted {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: #ffffff87;
    padding: 10px;
    border-radius: 10px;
    cursor: pointer;
}

.muted img {
    max-width: 30px;
}

.muted .sound-off {
    display: none;
}

.steps-wrap {
    display: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-pack: center;
    justify-content: center;
    height: 100%;
}

.steps-wrap.active {
    display: -webkit-box;
    display: flex;
}

.step-item {
    max-width: 680px;
    width: 100%;
    height: auto;
    margin: 0px auto;
    -webkit-transition: transform 1.2s ease;
    -webkit-transition: -webkit-transform 1.2s ease;
    transition: -webkit-transform 1.2s ease;
    transition: transform 1.2s ease;
    transition: transform 1.2s ease, -webkit-transform 1.2s ease;
    text-align: center;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
}

.step-item[data-effect="turn"] {
    -webkit-transform: rotate3d(0, 1, 0, -90deg);
    transform: rotate3d(0, 1, 0, 90deg);
}

.step-item[step="1"] {
    -webkit-transform: none;
    transform: none;
}
.safari .step-item[data-effect="turn"] {
    -webkit-transform: none !important;
    transform: none !important;
}

.block {
    position: relative;
    width: 100%;
    border: 3px solid #b20000;
    box-shadow: 0 0 20px 10px #ff0000ab;
}
.inner-block {
    padding: 40px 50px 50px;
    background-color: rgba(0, 0, 0, 0.66);
}

.btn_wrp {
    display: block;
    margin-top: 40px;
}

.btn {
    width: 40%;
    margin: 1%;
    display: inline-block;
    color: #fff;
    font-size: 36px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 18px 15px;
    cursor: pointer;
    letter-spacing: -1px;
    position: relative;
    z-index: 0;
    overflow: visible;
    background-color: #0000;
}
.btn-md {
    width: 60%;
}
.btn-lg {
    width: 85%;
}

.btn::before {
    content: "";
    width: 100%;
    background-color: #b20000;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    z-index: -1;
    -webkit-transform: skewX(-35deg);
    transform: skewX(-35deg);
}

.btn-final::before {
    background-color: #51ab36;
}

.step-item[step="4"],
.step-item[step="5"] {
    max-width: 1090px;
}
.step-item[step="10"] {
    max-width: 890px;
}
.step-item[step="8"] .btn {
    width: 43%;
    font-size: 30px;
}

.wrap-person {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
}

.person {
    max-width: 230px;
    width: 100%;
    /* margin: 0 8px; */
}

.person-image {
    position: relative;
    box-sizing: border-box;
}

.person:hover .person-image img {
    box-shadow: 0 0 0 3px #f00;
}

.person-image img {
    max-width: 100%;
    margin: 0 auto;
}

.person .btn {
    font-size: 18px;
    width: 90%;
    font-weight: 700;
}

h1 {
    color: #fff;
    font-size: 48px;
    line-height: 1.25;
    font-weight: 700;
    display: block;
    margin-bottom: 10px;
}

h1 span {
    color: #b20000;
}

h2 {
    font-size: 36px;
    text-transform: uppercase;
    color: #fff;
}
h2 span {
    color: #b20000;
}

h3 {
    color: #fff;
    font-size: 30px;
    font-weight: 400;
    display: block;
    margin-bottom: 10px;
}
h3 span {
    color: #b20000;
}

.item {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    padding-bottom: 28px;
    max-width: 740px;
    margin: 0 auto;
}

.checkmark {
    opacity: 0;
    display: block;
    width: 32px;
    height: 22px;
    border: 7px solid #b20000;
    border-width: 7px 7px 0 0;
    -webkit-transform: rotateZ(135deg);
    transform: rotateZ(135deg);
    margin-top: -15px;
}

.checkmark.green {
    border-color: #51ab36;
}

.checkmark.visible {
    opacity: 1;
}

[step="10"] h4 {
    width: 100%;
    padding-left: 15px;
    text-align: left;
    font-size: 32px;
    font-weight: 400;
}

[step="10"] .btn_wrp {
    margin-top: 10px;
    display: none;
}

.trnsIn {
    -webkit-transform: none !important;
    display: block !important;
}

.trns {
    -webkit-transform: none !important;
    display: none !important;
}

/* .wrapper {
    grid-template-rows: 1fr;
} */

.footer {
    font-family: "Open Sans", sans-serif;
    text-align: center;
    font-size: 18px;
    line-height: 1.2;
    padding: 10px;
    margin-top: auto;
}

.footer a {
    color: #fff;
    text-decoration: underline;
}

@media (max-width: 992px) {
    .logo-holder h1 {
        font-size: 40px;
    }
    .logo-holder h2 {
        font-size: 24px;
        color: #b20000;
        text-transform: uppercase;
        letter-spacing: 5px;
    }
    h1 {
        font-size: 36px;
    }
    h2 {
        font-size: 28px;
    }
    h3 {
        font-size: 24px;
    }
    .btn {
        font-size: 24px;
    }
    .step-item[step="8"] .btn {
        width: 40%;
        font-size: 24px;
    }
    [step="10"] h4 {
        font-size: 26px;
    }
    .person-image img {
        max-width: 140px;
    }
    .footer {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .first-screen {
        padding: 15px 0;
        height: 100%;
        display: -webkit-box;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        flex-direction: column;
        -webkit-box-pack: center;
        justify-content: center;
    }
    .first-screen.other {
        padding: 15px 0;
        height: auto;
        display: -webkit-box;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        flex-direction: column;
        -webkit-box-pack: center;
        justify-content: center;
    }
    .steps-wrap_other {
        height: auto;
    }
    .step-item {
        padding: 20px 0;
        transition: none;
    }
    .block {
        box-shadow: none;
    }
    .inner-block {
        padding: 25px 30px 30px;
    }
    .text-block {
        margin-top: 20px;
    }
    .first-screen.other .logo-holder h1 {
        font-size: 30px;
    }
    .first-screen.other .logo-holder h2 {
        font-size: 18px;
        letter-spacing: 5px;
    }
    h1 {
        font-size: 30px;
    }
    h2 {
        font-size: 24px;
    }
    h3 {
        font-size: 20px;
    }
    .wrap-person {
        flex-wrap: wrap;
    }
    .person {
        width: calc(100% / 2 - 20px);
        max-width: 100%;
        margin-bottom: 35px;
    }
    .btn_wrp {
        margin-top: 20px;
    }
    .info-bacteria img {
        max-width: 140px;
    }
    .info-bacteria p {
        max-width: 96px;
        font-size: 11px;
    }
    .step-item[step="8"] .btn {
        width: 40%;
        font-size: 17px;
    }
    .item {
        padding-bottom: 20px;
    }
    .checkmark {
        width: 20px;
        height: 11px;
        border: 3px solid #b20000;
        border-width: 3px 3px 0 0;
        margin-top: -5px;
    }
    [step="10"] h4 {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .wrapper {
        height: auto;
    }
    .bg-intro {
        background-image: none;
    }
    .first-screen {
        padding: 0;
        height: auto;
    }
    .mob-pic {
        display: block;
    }
    .info-bacteria {
        position: absolute;
        top: calc(75% - 220px);
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }
    .muted {
        top: 10px;
        right: 10px;
        padding: 5px;
    }
    .muted img {
        max-width: 20px;
    }
    .logo-holder {
        margin-top: 0;
    }
    [lang="de"] .logo-holder h2 {
        font-size: 16px;
    }
    [lang="it"] .logo-holder h2 {
        font-size: 20px;
    }
    [lang="it"] .step-item[step="10"] .btn:before,
    [lang="es"] .step-item[step="10"] .btn:before,
    [lang="fr"] .step-item[step="10"] .btn:before {
        display: none;
    }
    [lang="it"] .step-item[step="10"] .btn,
    [lang="es"] .step-item[step="10"] .btn,
    [lang="fr"] .step-item[step="10"] .btn {
        background-color: #b20000;
        font-size: 20px;
        width: 80%;
    }
    .text-block {
        margin-top: 10px;
    }
    .text-block .btn_wrp {
        margin-top: 0;
    }
    .text-block h1 {
        margin-bottom: 0;
    }
    [lang="fr"] .text-block h1 {
        font-size: 24px;
    }
    .inner-block {
        padding: 15px;
    }
    .person {
        width: calc(100% / 2 - 10px);
        max-width: 100%;
        margin-bottom: 20px;
    }
    .person .btn_wrp {
        margin-top: 10px;
    }
    .person-image img {
        max-width: 90%;
    }
    .person .btn {
        background-color: #b20000;
        font-size: 14px;
        width: 90%;
        margin: 0;
        padding: 15px 5px;
    }
    .person .btn:before {
        display: none;
    }
    .footer {
        font-size: 12px;
    }
}

@media (max-height: 720px) and (max-width: 767px) and (orientation: landscape) {
    .wrapper {
        padding: 15px 0;
        height: auto;
    }
}

.preloader {
    margin: 20px auto 35px;
}

.loader {
    color: #ffffff;
    font-size: 40px;
    text-indent: -9999em;
    overflow: hidden;
    width: 1em;
    height: 1em;
    border-radius: 50%;
    margin: 70px auto 30px;
    position: relative;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-animation: load6 1.7s infinite ease, round 1.7s infinite ease;
    animation: load6 1.7s infinite ease, round 1.7s infinite ease;
}

@-webkit-keyframes load6 {
    0% {
        box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em,
            0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
    }

    5%,
    95% {
        box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em,
            0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
    }

    10%,
    59% {
        box-shadow: 0 -0.83em 0 -0.4em, -0.087em -0.825em 0 -0.42em,
            -0.173em -0.812em 0 -0.44em, -0.256em -0.789em 0 -0.46em,
            -0.297em -0.775em 0 -0.477em;
    }

    20% {
        box-shadow: 0 -0.83em 0 -0.4em, -0.338em -0.758em 0 -0.42em,
            -0.555em -0.617em 0 -0.44em, -0.671em -0.488em 0 -0.46em,
            -0.749em -0.34em 0 -0.477em;
    }

    38% {
        box-shadow: 0 -0.83em 0 -0.4em, -0.377em -0.74em 0 -0.42em,
            -0.645em -0.522em 0 -0.44em, -0.775em -0.297em 0 -0.46em,
            -0.82em -0.09em 0 -0.477em;
    }

    100% {
        box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em,
            0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
    }
}

@keyframes load6 {
    0% {
        box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em,
            0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
    }

    5%,
    95% {
        box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em,
            0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
    }

    10%,
    59% {
        box-shadow: 0 -0.83em 0 -0.4em, -0.087em -0.825em 0 -0.42em,
            -0.173em -0.812em 0 -0.44em, -0.256em -0.789em 0 -0.46em,
            -0.297em -0.775em 0 -0.477em;
    }

    20% {
        box-shadow: 0 -0.83em 0 -0.4em, -0.338em -0.758em 0 -0.42em,
            -0.555em -0.617em 0 -0.44em, -0.671em -0.488em 0 -0.46em,
            -0.749em -0.34em 0 -0.477em;
    }

    38% {
        box-shadow: 0 -0.83em 0 -0.4em, -0.377em -0.74em 0 -0.42em,
            -0.645em -0.522em 0 -0.44em, -0.775em -0.297em 0 -0.46em,
            -0.82em -0.09em 0 -0.477em;
    }

    100% {
        box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em,
            0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
    }
}

@-webkit-keyframes round {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes round {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.trnsIn {
    -webkit-transform: none !important;
    display: block !important;
}

.trns {
    -webkit-transform: none !important;
    display: none !important;
}

/* TEXT PAGE */
.text-page {
    background-color: #fff;
    color: #000;
    padding: 50px 0;
}
.text-page .wrapper {
    display: block;
    min-height: auto;
    max-width: 1200px;
    padding: 0 15px;
    margin: 0 auto;
}

.text-page h2 {
    font-size: 30px;
    margin-bottom: 20px;
    text-align: center;
}

.text-page p {
    margin-bottom: 15px;
}

.text-page ul {
    list-style: disc;
    padding-left: 30px;
    margin-bottom: 10px;
}

.text-page ul li {
    padding-bottom: 10px;
}

.text-page .footer {
    padding: 25px 0;
    font-size: 14px;
}

@media (max-width: 768px) {
    .text-page {
        font-size: 14px;
    }

    .text-page h2 {
        font-size: 20px;
    }
}
