:root {
    --color-1: #0040AC;
    --color-2: rgba(152, 224, 255, 30%);
    --color-3: #F1F6FF;
    --color-4: #EC008C;
    --card-back: url(/resources/knowledge_about_water/new/imgs/game/cardBack.png);
}

*::before,
*::after,
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "AtypText", sans-serif;
    font-weight: 300;
    color: #fff;
}

html {
    touch-action: pan-y;
}

body {
    scroll-behavior: smooth;
    background-color: var(--color-3);
}

a {
    text-decoration: none;
}

.container {
    top: 0;
    left: 0;
    overflow: hidden;
    position: relative;
    background-color: var(--color-1);
}

body > .logo {
    position: fixed;
    width: 100%;
    top: 0;
    pointer-events: none;
    left: 0;
    z-index: 40;
    background-color: #003a9f59;
}

body > .logo .logo-wrapper {
    width: 100%;
    padding: 20px 140px;
    max-width: 1440px;
    margin: 0 auto;
}

body > .logo img {
    width: 130px;
}

section.section {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden !important;
}

section.section-hidden {
    display: none !important;
}

.section-wrapper {
    width: 100%;
    height: 100%;
    margin: 0 auto;
    max-width: 1440px;
    position: relative;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.section-wrapper--padding {
    padding: 0 140px;
}

.section-preview {
    display: flex;
    align-items: center;
    justify-content: center;
    background: url(/resources/knowledge_about_water/new/imgs/main_bg.jpg) no-repeat center / cover;
    background-color: var(--color-3);
}

body.theme-2 .section-preview {
    background: url(/resources/knowledge_about_water/new/imgs/preview/bg2.png) no-repeat center / cover;
    background-color: var(--color-3);
}

body.theme-3 .section-preview {
    background: url(/resources/knowledge_about_water/new/imgs/preview/bg3.png) no-repeat center / cover;
    background-color: var(--color-3);
}

body.theme-4 .section-preview {
    background: url(/resources/knowledge_about_water/new/imgs/preview/bg4.png) no-repeat center / cover;
    background-color: var(--color-3);
}

.section-preview .img-absolute {
    right: -80px;
    position: absolute;
    bottom: 80px;
    max-width: 400px;
}

.section-preview .section-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
    z-index: 2;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.section-preview .button {
    margin-top: 20px;
}

h1 {
    font-size: 64px;
    color: #fff;
    font-weight: 700;
}

body.theme-2 h1 {
    font-size: 50px;
    max-width: 900px;
}

.section-preview .slogan {
    font-size: 30px;
    text-align: center;
    color: #fff;
    max-width: 600px;
    font-weight: 300;
}

body.theme-2 .section-preview .slogan {
    max-width: 1100px;
}

body.theme-3 .section-preview .slogan {
    max-width: 700px;
}

.button {
    color: #fff;
    background-color: var(--color-4);
    transition: 350ms background-color ease;
    padding: 25px;
    width: fit-content;
    width: 100%;
    max-width: 300px;
    font-size: 20px;
    font-weight: 700;
    user-select: none;
    letter-spacing: 0.5px;
    border-radius: 50px;
    text-transform: uppercase;
    cursor: pointer;
    align-items: center;
    display: flex;
    justify-content: center;
    text-align: center;
}


@media (hover: hover) {
    .button:hover {
        background-color: #cf007c;
    }
}

@media (hover: none) {
    .button:active {
        background-color: #cf007c;
    }
}

.game-alerts {
    position: absolute;
    bottom: 100%;
    width: 100%;
    text-align: center;
    font-size: 24px;
    font-style: italic;
}

.game-alerts span {
    display: block;
    animation: game_alerts 2s linear;
    opacity: 0;
}

.game-alerts span:nth-child(even) {
    margin-left: 30px;
}

.game-alerts span:nth-child(odd) {
    margin-right: 30px;
}

@keyframes game_alerts {
    0% {
        opacity: 0;
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-100px);
        opacity: 1;
    }

    100% {
        transform: translateY(-200px);
        opacity: 0;
    }


}

.section-game {
    display: flex;
    align-items: center;
    user-select: none;
    justify-content: center;
    background-color: #F1F6FF;
    background: url(/resources/knowledge_about_water/new/imgs/bg5.jpg) no-repeat center / cover;
}

.section-game .game-overlay {
    width: 100%;
    height: 100%;
    z-index: 222;
    top: 0;
    left: 0;
    position: absolute;
    background-color: #16191c78;
    visibility: hidden;
    pointer-events: none;
}

.game-overlay.active {
    visibility: visible;
    pointer-events: auto;
}

.game-popup {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 224;
    transform: translate(-50%, -53%);
    border-radius: 20px;
    width: 100%;
    max-width: 420px;
    display: flex;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    align-items: center;
    transition: 550ms all ease;
    padding: 80px 20px;
    background: url(/resources/knowledge_about_water/new/imgs/bg.jpg) no-repeat center / cover;
}

.game-popup .button {
    border: 0;
}

.game-popup.active {
    transform: translate(-50%, -50%);
    pointer-events: auto;
    opacity: 1;
}

.section-game .pause-btn {
    top: 100px;
    z-index: 123;
    border-radius: 50%;
    right: 125px;
    max-width: 200px;
    cursor: pointer;
    user-select: none;
    position: absolute;
}

.section-game .pause-btn.stop {
    pointer-events: none !important;
}

img {
    pointer-events: none;
    width: 100%;
}

.bg-img {
    width: auto;
    position: absolute;
}

.bg-bubble-1 {
    left: -25px;
    top: -10px;
}

.bg-bubble-2 {
    bottom: -20px;
    right: -50px;
}

.section-game .bg-item {
    right: -3%;
    bottom: 20vh;
}

.section-game .bg-bubble {
    display: none;
}

.section-game .back-btn {
    gap: 15px;
    top: 110px;
    left: 260px;
    z-index: 123;
    padding: 22px;
    font-size: 16px;
    position: absolute;
}

.section-game .back-btn.back-btn-hidden {
    pointer-events: none;
}

.section-game .back-btn img {
    width: 26px;
}

.section-advice {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(/resources/knowledge_about_water/new/imgs/bg6.jpg);
}

.section-advice .section-wrapper {
    gap: 40px;
    display: flex;    
    text-align: center;
    flex-direction: column;
}

.section-advice h2 {
    line-height: 140%;
    font-weight: 600;
    font-size: 48px;
}

.section-advice p {
    line-height: 150%;
    font-weight: 300;
    font-size: 30px;
}

.section-advice p span {
    line-height: inherit;
    font-weight: 600;
    font-size: inherit;
    color: inherit;
}

.section-advice .container-img {
    border-radius: 100px;
    border: 1px solid #fff;
    padding: 10px 12px;
    background-color: #ffffff2e;
    display: flex;
    gap: 25px;
    align-items: center;
    justify-content: center;
}

.mesh {
    gap: 10px;
    z-index: 12;
    display: grid;
    position: relative;
    width: fit-content;
    height: fit-content;
    perspective: 1000px;
    justify-content: center;
}

.mesh .side {
    top: 50%;
    gap: 20px;
    left: -140px;
    display: flex;
    position: absolute;
    align-items: center;
    flex-direction: column;
    transform: translateY(-50%);
}

.mesh .side-item {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    background-color: #ffffff45;
    border-radius: 100px;
    padding: 30px 0;
    border: 1px solid #fff;
    box-shadow: 0 0 16px #0000005e;
    width: 76px;
}

.mesh .side-item-2 {
    width: 76px;
    padding: 15px 0px;
    border-radius: 10px;
}

.mesh .side-item .side-count {
    color: #fff;
    font-size: 24px;
    font-weight: 600;
}

.mesh .timer-block img {
    width: 54px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mesh .card__info {
    position: absolute;
    top: 4%;
    right: 25px;
    background: #ffffff4c;
    width: 30%;
    max-height: 50%;
    max-width: 360px;
    min-height: 400px;
    box-shadow: 0 0 3px #544747;
    border-radius: 10px;
    z-index: 99;
    padding: 20px;
    color: #16191c;
    opacity: 0.975;
    transform: translateY(-10%);
    opacity: 0;
    user-select: none;
    display: none;
    pointer-events: none;
}

.mesh .card__info:before {
    content: '';
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 45%;
    background-image: var(--card-back);
    background-color: var(--color-2);
    background-position: center;
    background-size: cover;
    background-repeat: repeat;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.mesh .card__info--img {
    margin: 50px auto;
    width: 135px;
    border-radius: 50%;
    height: 135px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    box-shadow: 0 0 3px black;
    z-index: 2;
    position: relative;
    transform: translateY(12%);
}

.mesh .card__info--text {
    position: absolute;
    z-index: 3;
    font-size: 28px;
    bottom: 25%;
    left: 50%;
    transform: translateX(-50%);
}

.reset-block {
    top: 50%; 
    left: 50%;
    opacity: 0;
    position: absolute; 
    pointer-events: none;
    transform: translate(-50%, -50%);
    background: rgb(15,128,233);
    padding: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    gap: 40px;
    z-index: 222;
    width: 100%;
    min-width: 650px;
    background: url(/resources/knowledge_about_water/new/imgs/bg.jpg) no-repeat center / cover;
}

.reset-block-title {
    font-size: 38px;
    font-weight: 600;
    line-height: 100%;
    letter-spacing: -0.1px;
}

.button-reset {
    z-index: 22;
    cursor: pointer;
    border: none !important;
}

.mesh .card {
    z-index: 9;
    color: white;
    cursor: pointer;
    user-select: none;
    position: relative;
    border-radius: 20px;
    background-size: cover;
    border: 1px solid #fff;
    box-shadow: 0 2px 3px #00000094;
    background-position: center;
    background-repeat: no-repeat;
    transform-style: preserve-3d;
    background-color: #ffffff78;
    transition: 150ms border ease;
}

@media (hover: hover) {
    .mesh .card:hover {
        border: 1px solid rgb(0 0 0 / 44%);
    }
}

@media (hover: none) {
    .mesh .card:active {
        border: 1px solid rgb(0 0 0 / 44%);
    }
}

.win {
    pointer-events: none;
}

.section-rules {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 33;
    transition: 150ms opacity ease;
}

.section-rules {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: var(--color-1);
    background-image: url(/resources/knowledge_about_water/new/imgs/bg.jpg);
}

.section-rules > .section-wrapper {
    padding: 80px 140px;
}

.section-rules .b {
    position: absolute;
    z-index: -1;
}

.section-rules .b-1 {
    max-width: 210px;
    left: -100px;
    bottom: 50px;
}

.section-rules .b-2 {
    max-width: 70px;
    left: 50%;
    top: 110px;
}

.section-rules .b-3 {
    max-width: 240px;
    left: 55%;
    top: 30px;
}

.section-rules .b-4 {
    max-width: 130px;
    right: 50px;
    bottom: 10px;
}

.rules.rules-end {
    opacity: 0;
    pointer-events: none !important;
}

.section-rules .logo {
    max-width: 150px;
    position: absolute;
    left: 140px;
    top: 60px;
}

.rules-title-wrapper {
    font-size: 50px;
    max-width: 550px;
    font-weight: 600;
    line-height: 115%;
}

.rules-title {
    width: 100%;
    display: flex;
    margin-bottom: 50px;
}

.rules-container {
    gap: 20px;
    display: flex;
    margin-bottom: 30px;
    justify-content: center;
    overflow: visible !important;
}

.rules-container-item {
    padding: 20px 20px 40px;
    flex-direction: column !important;
    border: 1px solid #B4DBFF;
    border-radius: 30px;
    height: auto;
    overflow: visible !important;
    background: rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: visible !important;
}

.rules-container-item img {
    max-width: 70%;
    margin: 0 auto;
    display: block;
}

.rules-container-item p {
    margin-top: 5px;
    text-align: center;
    font-size: 18px;
    line-height: 130%;
    font-weight: 300;
}

.rules-container-item h3 {
    margin-top: 25px;
    text-align: center;
    font-size: 24px;
    line-height: 130%;
    font-weight: 600;
}

.rules-container-item:nth-child(2) {
    padding: 55px 20px 40px;
}

.rules-container-item:nth-child(3) img {
    max-width: 65%;
}

.rules-container-item:nth-child(3) .img-1 {
    position: relative;
    z-index: 2;
}

.rules-container-item .img-absolute {
    position: absolute;
    top: -210px;
    right: -90px;
    object-fit: contain;
}

.rules-button {
    max-width: 360px;
}

.mesh .card__face { 
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
    background-position: center;
    background-repeat: no-repeat;
}

.mesh .card__back {
    background-size: cover;
    transform: rotateY(0.5turn);
    background: url(/resources/knowledge_about_water/new/imgs/game/cardBack.png) no-repeat center / cover;
}

.card__front {
    background-size: 60%;
}

.timer {
    color: #fff;
    font-size: 20px;
    margin-top: 10px;
    font-weight: 600;
    width: 100%;
    max-width: 70px;
    text-align: center;
}

[mesh3x4] {
    grid-template-columns: repeat(4, 150px);
    grid-template-rows: repeat(3, 150px);
}   

.section-start .arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    gap: 14px;
    align-items: center;
    background-color: rgb(204 204 204 / 50%);
    display: flex;   
    user-select: none;
    flex-direction: column;
    text-align: right;
    padding: 18px;
    min-width: 110px;
    border-radius: 20px 0 0 20px;
    transition: 350ms background-color ease;
}

@media (hover: hover) {
    .section-start .arrow:hover {
        background-color: rgba(217, 217, 217, 0.5);
    }
}

@media (hover: none) {
    .section-start .arrow:active {
        background-color: rgba(217, 217, 217, 0.5);
    }
}

.section-start .arrow span {
    text-align: center;
    font-weight: 600;
    line-height: 100%;
    font-size: 11px;
    color: var(--color-4);
}

.section-start .arrow-next {
    right: 0;
    text-align: left;
}

.section-start .arrow img {
    max-width: 20px;
}

.section-start .arrow-next img {
    transform: scale(-1, 1);
}

.section-start .morion-col-wrapper {
    transform: translateY(-30px);
}

.section-start .button {
    margin: 0 auto 20px;
}

.section-start .morion {
    gap: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.morion-col:nth-child(1),
.morion-col:nth-child(3) {
    gap: 45px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.morion-col:nth-child(1) img,
.morion-col:nth-child(3) img {
    width: 45px;
}

.morion-col-item > div {
    gap: 10px;
    display: flex;
    flex-direction: column;
}

.morion-col-item > div h3 {
    font-size: 20px;
    font-weight: 600;
}

.morion-col-item > div p {
    font-size: 18px;
    font-weight: 300;
}

.morion-col-item {
    gap: 20px;
    display: flex;
    max-width: 370px;
    align-items: flex-start;
}

.morion-col p, .morion-col h2, .morion-col h3 {
    color: #2B1B35;
}

.morion-col:nth-child(1) .morion-col-item {
    flex-direction: row-reverse;
    text-align: right;
}

.morion-col:nth-child(2) {
    display: flex;
    text-align: center;
    align-items: center;
    flex-direction: column;
}

.morion-col:nth-child(2) .morion-arrow {
    max-width: 20px;
    transform: rotate(-90deg);
    transition: 350ms transform cubic-bezier(0.075, 0.82, 0.165, 1);
}

.morion-col:nth-child(2) span {
    font-size: 14px;
    font-weight: 600;
    line-height: 120%;
    color: var(--color-4);
}

.morion-col:nth-child(2) .img-morion {
    display: block;
    margin: 0 auto;
    max-width: 370px;
    margin-bottom: 30px;
}

.morion-col:nth-child(2) p {
    margin-bottom: 15px;
    font-weight: 300;
    color: #2B1B35;
    font-size: 20px;
}

.morion-col:nth-child(2) h2 {
    font-size: 30px;
    color: #2B1B35;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 140%;
    margin-bottom: 10px;
}

.morion-col:nth-child(2) .promo {
    gap: 10px;
    display: flex;
    cursor: pointer;
    user-select: none;
    align-items: center;
    flex-direction: column;
}

.morion-col:nth-child(2) .promo:hover .morion-arrow {
    transform: rotate(-90deg) translateX(-10px);
}

.morion-col:nth-child(3) .morion-col-item {
    flex-direction: row;
    text-align: left;
}

.swiper, .swiper-wrapper {
    user-select: none;
    width: 100%;
    height: auto;
}

.section-quiz {
    z-index: 3;
    display: flex;
    align-items: center;
    transform: translateY(110%);
    justify-content: center;
    flex-direction: column;
    background-size: 100%;
    background-position: bottom;
    background-repeat: no-repeat;
    background: url(/resources/knowledge_about_water/new/imgs/bg3.jpg) no-repeat center / cover !important;
}

.section-quiz .swiper {
    max-width: 1160px;
    display: flex;
    gap: 40px;
    flex-direction: column;
    position: relative;
}

.section-quiz > .close-wrapper {
    width: 100%;
    display: flex;
    max-width: 1160px;
    justify-content: flex-end;
}

.section-quiz > .close-wrapper .close {
    width: 34px;
    cursor: pointer;
}

.section-quiz-finish {
    opacity: 0;
    z-index: 4;
    width: 100%;
    height: 100%;
    display: flex;
    position: absolute;
    padding-left: 60px;
    align-items: center;
    will-change: transform;
    transform: translateX(110%);
    transition: 1.25s transform ease, 350ms opacity ease;
    background: url(/resources/knowledge_about_water/new/imgs/bg2.jpg) no-repeat center / cover !important;
}

.arrow-back-wrapper {
    width: 100%;
    display: flex;
    margin-bottom: 20px;
}

.section-right .arrow-back {
    background: var(--color-4);
    padding: 12px 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    user-select: none;
    border-radius: 20px;
    transform: scale(-1, 1);
}

.section-right .arrow-back img {
    filter: invert(1);
    -webkit-filter: invert(1);
}

.section-right {
    z-index: 2;
    transform: translateX(110%);
    background: url(/resources/knowledge_about_water/new/imgs/swiper/bg-table.jpg) no-repeat center / cover !important;
}

.section-right .section-wrapper {
    padding: 0 140px;
}

.section-right .logo {
    top: 60px;
    width: 150px;
    left: 60px; 
    z-index: 2;
    position: absolute;
}

.section-right .section-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.section-right .section-container-item:nth-child(2) {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.section-right h2 {
    font-size: 64px;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 110%;
    text-transform: uppercase;
}

.section-right p {
    margin-bottom: 40px;
    font-size: 26px;
    font-weight: 300;
    max-width: 500px;
}

.section-right p {
    margin-bottom: 40px;
    font-size: 26px;
    font-weight: 300;
    max-width: 500px;
}

.section-right .section-container-item .img-container img {
    max-width: 320px;
}

.section-right .section-container-item .img-container {
    display: flex;
    flex-direction: column;
}

.section-right .promo {
    font-size: 30px;
    font-weight: 600;
    line-height: 120%;
    flex-direction: column;
    display: flex;
    text-align: center;
    gap: 10px;
    align-items: center;
    margin-top: 20px;
    user-select: none;
    cursor: pointer;
}

.section-right .promo:hover img {
    transform: translateY(10px);
}

.section-right .promo {
    font-size: 30px;
    font-weight: 600;
    line-height: 120%;
    flex-direction: column;
    display: flex;
    text-align: center;
    gap: 10px;
    align-items: center;
    margin-top: 20px;
    user-select: none;
    cursor: pointer;
}

.section-right .promo img {
    width: 20px;
    transition: 350ms transform cubic-bezier(0.075, 0.82, 0.165, 1);
}

section.section.section-final {
    z-index: 5;
    background: url(/resources/knowledge_about_water/new/imgs/bg4.jpg) no-repeat center / cover !important;
}

.section-final .logo {
    top: 60px;
    width: 150px;
    left: 140px;
    z-index: 2;
    position: absolute;
}

.section-final > .bubble {
    position: absolute;
}

.section-final > .bubble-1 {
    left: -50px;
    bottom: -50px;
    max-width: 250px;
}

.section-final > .bubble-2 {
    left: 40%;
    bottom: -70px;
    max-width: 350px;
    z-index: -1;
}

.section-final > .bubble-3 {
    left: 50%;
    top: 10px;
    max-width: 220px;
    z-index: 2;
}

.section-final .section-container {
    display: flex;
    width: 100%;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
}

.section-final .section-container h2 {
    font-size: 50px;
    font-weight: 700;
    line-height: 120%;
    max-width: 660px;
    margin-bottom: 15px;
}

.section-final .section-container .section-container-item-1 .promo {
    font-size: 28px;
    background-color: rgb(180 219 255 / 25%);
    line-height: 100%;
    font-weight: 300;
    text-transform: uppercase;
    max-width: 360px;
    user-select: none;
    padding: 28px;
    color: #ebf6ff;
    border-radius: 20px;
    text-align: center;
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding-right: 85px !important;
    box-shadow: 2px -1px 4px rgba(0, 0, 0, 0.25), inset 0 4px 4px rgba(0, 0, 0, 0.2);
}

.section-final .section-container .section-container-item-1 .promo::before {
    content: '';
    position: absolute;
    width: 46px;
    height: 46px;
    display: block;
    right: 45px;
    top: 53%;
    filter: invert(1);
    transform: translateY(-50%);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(/resources/knowledge_about_water/new/imgs/copy.svg);
}

.section-final .section-container .container-cta {
    display: flex;
    gap: 40px;
    position: relative;
    align-items: center;
    margin-top: 30px;
}

.section-final .section-container .container-cta p {
    font-size: 24px;
}

.section-final .section-container .container-cta p.old-price {
    line-height: 100%;
    margin-bottom: 10px;
    font-weight: 300;
    opacity: 0.6;
    text-decoration: line-through;
}

.section-final .section-container .container-cta p.price {
    font-weight: 600;
    line-height: 100%;
    margin-bottom: 10px;
    font-size: 64px;
    color: var(--color-4);
}

.section-final .section-container .container-cta h3 {
    font-size: 24px;
    font-weight: 600;
    line-height: 100%;
    margin-bottom: 10px;
}

.section-final .section-container .container-cta h3 span {
    font-size: 24px;
    font-weight: 300;
    margin-left: 10px;
    line-height: inherit;
}

.section-final .section-container .container-cta .button {
    margin-top: 30px;
}

.section-final .section-container .container-cta .delivery {
    font-size: 12px;
    max-width: 250px;
    margin-top: 20px;
    font-weight: 300;
}

.section-final .section-container .section-container-item-2 {
    border: 1px solid #B4DBFF;
    padding: 35px;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    border-radius: 30px;
}

.section-final .section-container .section-container-item-2 .img-container img {
    max-height: 320px;
    object-fit: contain;
}

.section-final .section-container .section-container-item-2 h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.section-final .section-container .section-container-item-2 p {
    font-size: 18px;
    font-weight: 300;
    line-height: 140%;
    margin-bottom: 15px;
}

.section-final .section-container .section-container-item-2 p span {
    font-size: inherit;
    line-height: inherit;
}

.section-final .section-container .section-container-item-2 p span.span--weight {
    font-weight: 600;
}

.section-final .section-container .section-container-item-2 p span.span--color {
    font-weight: 600;
    color: var(--color-4);
}

.section-final .section-container .section-container-item-2 p a {
    font-style: oblique; 
    margin-bottom: 15px;
    margin-top: 10px;
    display: block;
}

.section-final .section-container .social-container {
    gap: 10px;
    display: flex;
    user-select: none;
    justify-content: center;
}

.section-final .section-container .social-container a {
    transition: 550ms transform ease;
}

@media (hover: hover) {
    .section-final .section-container .social-container a:hover {
        transform: scale(0.9);
    }
}

.section-final .section-container .social-container img {
    display: flex;
    gap: 10px;
}

.quiz-finish-wrapper {
    margin: 0 auto;
    max-width: 1440px;
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
}

.section-quiz-finish .logo {
    top: 60px;
    width: 150px;
    left: 60px;
    z-index: 2;
    position: absolute;
}

.section-quiz-finish .big-bubble {
    position: absolute;
    max-width: 800px;
    right: -230px;
    top: 50%;
    transform: translateY(-50%);
}

.quiz-finish-item {
    display: flex;
    color: #fff;
    flex-direction: column;
    justify-content: center;
}

.quiz-finish-item-1 {
    align-items: center;
}

.quiz-finish-item-1 img {
    max-width: 450px;
}

.quiz-finish-item-1 p {
    color: #fff;
    font-size: 36px;
    font-weight: 600;
    line-height: 110%;
    max-width: 400px;
    margin-top: -40px;
}

.quiz-finish-item-2 h2 {
    font-size: 50px;
    font-weight: 600;
    line-height: 130%;
}

.quiz-finish-item-2 span {
    font-size: 120px;
    line-height: 110%;
    color: var(--color-4);
    margin-top: 20px;
    font-weight: 600;
}

.quiz-finish-item-2 p {
    font-size: 30px;
    line-height: 130%;
}

.quiz-finish-item-2 .promo {
    gap: 25px;
    display: flex;
    cursor: pointer;
    margin-top: 30px;
    user-select: none;
}

.quiz-finish-item-2 .promo:hover img {
    transform: translateY(20px);
}

.quiz-finish-item-2 .promo img {
    width: 40px;
    object-fit: contain;
    transition: 350ms transform cubic-bezier(0.075, 0.82, 0.165, 1);
}

.quiz-finish-item-2 .promo p {
    font-size: 20px;
    font-weight: 600;
    line-height: 140%;
}

.quiz-finish-item-1 span {
    color: #FDDD2D;
    text-decoration: line-through;
    font-size: inherit;
    font-weight: 600;
    line-height: inherit;
}

.section-quiz .swiper-wrapper {
    height: auto;
}

.section-quiz .swiper-slide {
    background: transparent;
}

.quiz-title {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.quiz-title-item-1 {
    line-height: 140%;
    font-size: 50px;
    font-weight: 600;
}

.quiz-title-item-2 {
    line-height: 150%;
    font-size: 28px;
    font-weight: 300;
}

.swiper-slide {
    display: flex;
    color: #fff;
    align-items: center;
    justify-content: center;
    /* background: url(/resources/knowledge_about_water/new/imgs/bg.png) no-repeat center / cover; */
}

.swiper-slide img {
    width: 100%;
    display: block;
    min-width: 200px;
}

.section-start {
    background: url(/resources/knowledge_about_water/new/imgs/swiper/bg.png) no-repeat center / cover !important;
    background-color: var(--color-3) !important;
    z-index: 1;
    opacity: 1 !important;
    transform: none !important;
    pointer-events: auto !important;
}

.question {
    gap: 40px;
    display: flex;
    max-width: 1160px;
    align-items: stretch;
    justify-content: center;
}

.question .answer {
    width: 100%;
}

.question-item {
    width: 50%;
    height: auto;
    display: flex;
    flex-direction: column;
}

.question-item-1 {
    padding: 60px;
    position: relative;
    border-radius: 10px;
    border: 1px solid #fff;
    background-color: rgba(203, 203, 203, 0.25);
}

.question-item-2 {
    overflow: hidden;
    border-radius: 20px;
    gap: 0 !important;
    align-items: center;
    justify-content: flex-start;
    background-color: #F1F6FF;
}

.question-item-1 .button-container {
    display: flex;
    margin-top: 30px;
    flex: 1 1;
    align-items: flex-end;
    justify-content: space-between;
}

.question-item-1 .button-container.button-container--one {
    justify-content: flex-end;
}

.question-item-1 .button-container > div {
    color: #fff;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    text-transform: uppercase;
    user-select: none;
    padding: 20px 25px;
    border-radius: 50px;
    background-color: rgba(203, 203, 203, 0.6);
}

.question-item-1 .button-container > div.button-next {
    border-radius: 50px;
    background-color: var(--color-4);
    opacity: 0.5;
    pointer-events: none;
}

.question-item-1 .button-container > div.button-next.button-next-active {
    opacity: 1 !important;
    pointer-events: auto !important;
}

.question-item-1 .button-container > div.button-next img {
    transform: scale(-1, 1);
    min-width: auto !important;
}

.question-item-1 .button-container > div.button-prev img {
    min-width: auto !important;
}

.question-item-2 .question-description {
    font-size: 16px;   
    color: #051D2E;
    line-height: 150%;
    padding: 40px 48px 60px;
}

.question-num {
    position: absolute;
    right: 60px;
    top: 66px;
    font-size: 20px;
    font-weight: 600;
}

.question-title {
    font-size: 28px;
    max-width: 380px;
    text-align: left;
    font-weight: 600;
    margin-bottom: 30px;
}

.question-item-answers {
    gap: 25px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.question-item-answers .answer label {
    width: 100%;
    display: block;
    cursor: pointer;
    border-radius: 8px;
    position: relative;
    font-size: 20px;
    padding: 0 0 0 40px;
}

.question-item-answers .answer label::before {
    content: '';
    border: 1px solid #fff;
    width: 24px;
    height: 24px;
    display: block;
    position: absolute;
    top: 0px;
    left: 0px;
    border-radius: 50%;
}

.question-item-answers .answer label::after {
    content: '';
    width: 14px;
    height: 14px;
    display: block;
    background-color: var(--color-4);
    position: absolute;
    top: 5px;
    left: 5px;
    visibility: hidden;
    border-radius: 50%;
}

.question-item-answers .answer input:checked + label::after {
    visibility: visible;
}

.question-item-answers .answer input {
    position: absolute;
    visibility: hidden;
}

.question .range-wrapper {
    height: 100px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    position: relative;
}

.question .pointer-range {
    background-color: #fff;
    position: absolute;
    left: 0;
    top: 4px;
    width: max-content;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 6px 16px;
    color: var(--color-4);
    border-radius: 6px;
    font-size: 16px;
}
  
.question input[type=range] {
    -webkit-appearance: none;
    -moz-appearance: none;
            appearance: none;
    background: transparent;
    cursor: pointer;
    width: 100%;
    background-color: var(--color-4);
    position: relative;
    height: 2px;
}
  
.question input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    background-color: var(--color-4);
    height: 16px;
    width: 16px;
    border-radius: 50%;
}
  
.question input[type=range]::before {
    content: "1";
    position: absolute;
    top: 20px;
    left: 0px;
    display: block;
    font-size: 16px;
    color: #fff;
}
  
.question input[type=range]::after {
    content: "6";
    position: absolute;
    top: 20px;
    right: 0px;
    display: block;
    font-size: 16px;
    color: #fff;
}

.question.question-range--text input[type=range]::before {
    content: "не использую";
}

.question.question-range--text input[type=range]::after {
    content: "< 4 раз";
}

.question input[type=range] {
    visibility: visible !important;
}

.section-main {
    position: relative;
    overflow: hidden;
}

.section-main > div {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    color: #fff;
    overflow: hidden;
    position: absolute;
    align-items: center;
    pointer-events: none;
    justify-content: center;
    opacity: 0;
    transition: 850ms transform ease, 850ms opacity ease;
    background: url(/resources/knowledge_about_water/new/imgs/bg.png) no-repeat center / cover;
}

.section-main > div.section-active {
    opacity: 1;
    transform: none;
    pointer-events: auto;
    transition: 1.25s transform ease, 350ms opacity ease;
}


.bubble-anim {
    animation: animBubble 6s linear infinite alternate;
}

.bubble-anim-reverse {
    animation: animBubble 7s linear infinite alternate-reverse;
}


.section-win {
    padding: 64px 0;
    color: #fff;
    height: 100vh;
    box-sizing: border-box;
    background-image: url(/resources/knowledge_about_water/new/imgs/bg7.jpg);
    background-size: cover;
    background-position: center center;
}


.win-wrap {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    margin-top: 30px;
    gap: 30px;
    justify-content: center;
    /* flex-wrap: wrap; */
}

.winSlider {
    position: relative;
    width: calc(100% - 345px);
    max-width: 764px;
    height: 100%;
    display: flex;
    align-items: center;
}

.winSlider-item {
    position: absolute;
    /* bottom: 0;
    top: 0;
    right: 0;
    left: 0; */
    margin: auto;
    width: 100%;
    padding: 40px;
    box-sizing: border-box;
    background: rgba(255, 255, 255, 0.016);
    backdrop-filter: blur(32px);
    border: 1px solid #B4DBFF;
    border-radius: 32px;
    box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.016);
    transition: .4s all ease;

    opacity: 0;
    transform: translateY(-100px);
}

.winSlider-item.active {
    transition: .7s all ease .5s;
    opacity: 1;
    transform: translateY(0);
}

.winSlider-item--title {
    text-transform: uppercase;
    font-size: 40px;
    font-weight: 600;
}

.winSlider-item--text {
    font-size: 20px;
    font-weight: 300;
}

.winSlider-item--text p {
    margin-top: 20px;
}

.winSlider .close-wrapper {
    display: none;
}

.winBot {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    max-width: 345px;
    width: 100%;
}

.winBot-hero--btn {
    display: none;
}

.winBot-title {
    font-size: 64px;
    font-weight: 600;
    text-transform: uppercase;
}

.winBot-hero--img {
    max-width: 100%;
    position: relative;
}

.winBot-hero--img .chatBubble {
    position: relative;
    max-width: 90%;
    margin: auto;
    display: block;
    transition: 350ms opacity ease;
}

.winBot-hero--img .robot {
    margin-top: -80px;
    position: relative;
    max-width: 100%;
    transition: 350ms opacity ease;
}

.winBot-hero--img .type-2 {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-40%, -35%) scale(1.2);
    opacity: 0;
    transition: 350ms opacity ease, 550ms transform ease;
}

.winBot-hero--img.morion-active .type-1 {
    opacity: 0;
}

.winBot-hero--img.morion-active .type-2 {
    opacity: 1;
    transform: translate(-40%, -50%) scale(1.2);
}

.winBot-hero--teaser {
    position: relative;
    max-width: 185px;
    display: block;
    padding: 4px 12px;
    border-radius: 10px;
    margin: 20px auto 0;
    font-size: 14px;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.16);
    cursor: pointer;
}

.winBot-hero--teaser::before {
    content: '';
    position: absolute;
    top: 130%;
    left: 0;
    right: 0;
    margin: auto;
    height: 25px;
    width: 20px;
    background-image: url(/resources/knowledge_about_water/new/imgs/swiper/arrow3.svg);
    background-size: contain;
}

.winSlider-wrap {
    position: absolute;
    width: 100%;
    top: 0;
    display: flex;
    align-items: center;
    height: 100%;
}

.winBackground {
    max-width: 100%;
    position: absolute;
    top: 0;
    z-index: 0;
    width: 100%;
    height: 100vh;
    background: #00000063;
}


.winBackground-bubbles {
    position: absolute;
    width: 100%;
    height: 100vh;
    transition: .5s all ease;
    opacity: 0;
    transform: scale(0) rotate(-30deg);

}

.winBackground-bubbles.active {
    opacity: 1;
    transform: scale(1);
    transition: 1.5s all ease-out .3s;
}

.winBackground-bubbles--item {
    position: absolute;
    /* width: 100%;
    height: 100vh; */
}

.winBackground-bubbles--item:nth-child(1) {
    top: 100px;
    left: 35px;
    width: 250px;
    max-width: 30%;
}

.winBackground-bubbles--item:nth-child(2) {
    bottom: 200px;
    right: -115px;
    width: 266px;
    max-width: 30%;
    filter: blur(22px);
}

.winBackground-bubbles--item:nth-child(3) {
    top: -70px;
    right: -95px;
    width: 274px;
    max-width: 30%;
    filter: blur(8px);
}

.winBackground-bubbles--item:nth-child(4) {
    top: -30px;
    left: 25%;
    width: 166px;
    max-width: 15%;
    filter: blur(22px);
}

.winBackground-bubbles--item:nth-child(5) {
    bottom: 200px;
    left: 120px;
    width: 115px;
    max-width: 10%;
    filter: blur(8px);
}

.winBackground-bubbles--item:nth-child(6) {
    bottom: -120px;
    right: 55px;
    width: 200px;
    max-width: 30%;
    filter: blur(44px);
}

.winNav {
    position: absolute;
    bottom: 0;
    margin-top: 30px;
    width: 100%;
    display: flex;
    justify-content: flex-start;
    gap: 20px;
    z-index: 2;
}

.winNav--item {
    user-select: none;
    padding: 20px 30px 16px;
    letter-spacing: 3%;
    font-size: 16px;
    line-height: 1;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 50px;
    box-shadow: 0 4px 16px 0 rgba(6, 20, 60, 0.032);
    background-color: #fff;
    color: #000;
    transition: .4s all ease;
    cursor: pointer;
}

.winNav--item:hover {
    opacity: 0.8;
}

.winNav--item.active {
    background: #EC008C;
    color: #fff;
    pointer-events: none;
    opacity: 1;
}



@keyframes animBubble {
    0% {
        transform: translate(5px, 5px);
    }
    25%, 28% {
        transform: translate(1px, 5px);
    }
    50%, 55% {
        transform: translate(-5px, 1px);
    }
    100% {
        transform: translate(3px, 2px);
    }
}


@media (max-width: 1420px) {
    h1 {
        font-size: 54px;
    }
    body.theme-2 h1 {
        font-size: 44px;
        max-width: 800px;
    }
    .section-wrapper {
        padding: 0 20px;
        max-width: 999px;
    }
    .section-wrapper--padding {
        padding: 0;
    }
    .section-rules > .section-wrapper {
        padding: 80px 20px;
    }
    .rules-button {
        max-width: 300px;
    }
    .rules-title-wrapper {
        font-size: 40px;
        max-width: 400px;
    }
    .section-rules .b-1 {
        max-width: 180px;
        left: -80px;
        bottom: 10px;
    }
    .section-rules .b-2 {
        max-width: 50px;
        left: 50%;
        top: 115px;
    }
    .section-rules .b-3 {
        max-width: 200px;
        left: 55%;
        top: 45px;
    }
    .button {
        padding: 20px;
        font-size: 18px;
        font-weight: 600;
    }
    .section-rules .logo {
        left: 20px;
    }
    .rules-container-item:nth-child(3) img {
        max-width: 60%;
    }
    .rules-container-item p {
        font-size: 16px;
    }
    .rules-container-item .img-absolute {
        top: -160px;
        right: -75px;
    }
    .section-preview .slogan {
        font-size: 26px;
    }
    .section-preview .img-absolute {
        right: -6%;
        max-width: 330px;
    }
    .section-start {
        background: url(/resources/knowledge_about_water/new/imgs/swiper/bg.png) no-repeat left / cover !important;
        background-color: var(--color-3) !important;
    }
    .morion-col-item > div p {
        font-size: 16px;
    }
    .morion-col-item > div {
        gap: 5px;
    }
    .morion-col-item > div h3 {
        font-size: 18px;
    }
    .morion-col-item {
        gap: 12px;
        max-width: 270px;
    }
    .morion-col:nth-child(1) img, .morion-col:nth-child(3) img {
        width: 40px;
    }
    .morion-col:nth-child(2) .img-morion {
        max-width: 220px;
    }
    .section-start .morion {
        gap: 20px;
    }
    .morion-col:nth-child(2) p {
        font-size: 18px;
        margin-bottom: 10px;
    }
    .morion-col:nth-child(2) h2 {
        font-size: 24px;
        margin-bottom: 8px;
    }
    .section-right h2 {
        font-size: 44px;
    }
    .section-right p {
        margin-bottom: 30px;
        font-size: 18px;
        max-width: 350px;
    }
    .section-final .section-container .container-cta p.price {
        font-size: 48px;
    }
    .section-advice h2 {
        font-size: 38px;
    }
    .section-advice .container-img {
        gap: 15px;
        flex-wrap: wrap;
    }
    .section-advice .section-wrapper {
        gap: 35px;
    }
    .container-img img {
        max-width: 100px;
    }
    .section-advice p {
        font-size: 20px;
    }
    .section-right .section-container-item .img-container img {
        max-width: 250px;
    }
    .section-right .promo  {
        font-size: 20px;
        margin-top: 10px;
    }
    .section-right .section-wrapper {
        padding: 0 20px;
    }
    body > .logo .logo-wrapper {
        padding: 20px;
        max-width: 999px;
    }
    .section-final .section-container .container-cta .button {
        font-size: 15px;
    }
    .question-item-1 {
        padding: 40px;
    }
    .question-title {
        font-size: 22px;
        max-width: 390px;
        margin-bottom: 20px;
    }
    .quiz-title-item-2 {
        font-size: 24px;
    }
    .question-item-2 .question-description {
        font-size: 14px;
        padding: 30px 48px 40px;
    }
    .section-game .bg-item {
        right: -13%;
    }
    .section-quiz {
        padding: 0 20px;
        gap: 30px;
    }
    .quiz-title-item-1 {
        font-size: 46px;
    }
    .question-num {
        top: 40px;
        right: 40px;
    }
    .question .pointer-range {
        font-size: 14px;
        padding: 4px 12px;
    }
    .question-item-answers {
        gap: 20px;
    }
    .bg-bubble-1, .bg-bubble-2 {
        max-width: 300px;
        max-height: 600px;
    }
    .question-item-answers .answer label {
        font-size: 18px;
        padding: 0 0 0 30px;
    }
    .question-item-answers .answer label::after {
        top: 6px;
        width: 10px;
        height: 10px;
    }
    .question-item-answers .answer label::before {
        top: 1px;
        width: 20px;
        height: 20px;
    }
    .section-start .arrow {
        padding: 26px 10px;
    }
    .section-game .back-btn {
        left: 40px;
    }
    .section-quiz-finish .big-bubble {
        top: 70%;
        right: -140px;
        max-width: 400px;
        z-index: -1;
    }
    .quiz-finish-item-2 h2 {
        font-size: 40px;
    }
    .section-quiz-finish .logo {
        left: 20px;
    }
    .section-final .logo {
        left: 20px;
    }
    .quiz-finish-item-2 span {
        font-size: 100px;
    }
    .quiz-finish-item-2 p {
        font-size: 24px;
        line-height: 130%;
    }
    .quiz-finish-item-2 .promo {
        gap: 20px;
    }
    .quiz-finish-item-2 .promo p {
        font-size: 16px;
    }
    .quiz-finish-item-2 .promo img {
        width: 30px;
    }
    .quiz-finish-item-1 p {
        font-size: 30px;
        max-width: 310px;
        margin-top: -20px;
    }
    .reset-block {
        padding: 60px 80px;
        min-width: 500px;
        max-width: 400px;
    }
    .reset-block-title {
        font-size: 30px;
    }
    .quiz-finish-item-1 img {
        max-width: 350px;
    }
    .quiz-finish-wrapper {
        gap: 30px;
    }
    .section-final > .bubble-1 {
        left: -30px;
        bottom: -30px;
        max-width: 200px;
    }
    .section-final > .bubble-2 {
        max-width: 300px;
    }
    .section-final > .bubble-3 {
        left: 46%;
        max-width: 220px;
    }
    .section-final .section-container .section-container-item-2 .img-container img {
        max-height: 220px;
    }
    .section-final .section-container .section-container-item-2 h3 {
        font-size: 16px;
    }
    .section-final .section-container .section-container-item-2 p {
        font-size: 15px;
    }
    .section-final .section-container .social-container img {
        width: 60px;
    }
    .section-final .section-container h2 {
        font-size: 40px;
    }
    .section-final .section-container .section-container-item-1 .promo {
        font-size: 24px;
        max-width: 300px;
        padding: 26px 24px 24px;
    }
    .section-final .section-container .section-container-item-1 .promo::before {
        width: 38px;
        height: 38px;
    }
    .section-final > .section-wrapper {
        padding: 0 20px;
    }

    .winSlider {
        width: 75%;
    }

    .winNav {
        width: 120%;
        margin-right: -40%;
        margin-bottom: -60px;
    }

    .winSlider-item--text {
        font-size: 18px;
    }

    .winBot {
        width: 25%;
    }


    .section-win .section-wrapper {
        padding: 0 20px;
        max-width: 100%;
    }

    .winBot-title {
        font-size: 48px;
    }
    
}

@media (max-width: 999px) {
    .section-preview .img-absolute {
        bottom: 150px;
        width: 230px;
        right: 1%;
    }
    .winBot-hero--img .type-2 {
        transform: translate(-50%, -50%);
    }
    .winBot-hero--img.morion-active .type-2 {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
    .section-game .bg-item {
        right: 5%;
        bottom: 30px;
        width: 150px;
    }
    h1 {
        font-size: 50px;
    }
    body.theme-2 h1 {
        font-size: 44px;
        max-width: 600px;
    }
    .section-preview .slogan {
        font-size: 24px;
        max-width: 400px;
    }
    .section-rules .b-1 {
        max-width: 130px;
        left: -50px;
        bottom: 10px;
    }
    .section-rules .b-2 {
        max-width: 40px;
        left: 64%;
        top: 75px;
    }
    .section-rules .b-3 {
        max-width: 140px;
        left: 73%;
        top: 25px;
    }
    .section-rules .b-4 {
        max-width: 80px;
        right: 5px;
    }
    .section-game .back-btn {
        left: -30px;
        transform: scale(0.65) !important;
    }
    section.section.section-final {
        background: url(/resources/knowledge_about_water/new/imgs/bg4.jpg) no-repeat right / cover !important;
    }
    .rules-container {
        width: 100%;    
        align-items: center;
        flex-direction: column;
    }
    .section-final .logo {
        width: 100px;
    }
    .section-rules .logo {
        width: 100px;
    }
    .rules-container-item {
        min-height: 400px;
        width: 100%;
    }
    .section-advice p {
        font-size: 16px;
        padding: 0 5%;
    }
    .section-advice h2 {
        font-size: 32px;
        padding: 0 20px;
    }
    .section-advice .container-img {
        max-width: 320px;
        border-radius: 20px;
    }
    .section-advice .container-img img {
        max-width: 80px;
    }
    .section-advice .section-wrapper {
        gap: 25px;
    }
    .section-advice p br {
        display: none;
    }
    .section-final .section-container .container-cta .button {
        padding: 20px 10px;
    }
    .rules-title-wrapper {
        font-size: 30px;
        max-width: 300px;
    }
    .rules-title {
        text-align: center;
        margin-bottom: 60px;
        justify-content: center;
    }
    .rules-container-item:nth-child(3) img {
        max-width: 50%;
    }
    .rules-container-item .img-absolute {
        top: -60px;
        right: -55px;
        max-height: 230px;
    }
    .section-quiz > .close-wrapper {
        max-width: 320px;
    }
    .morion-col:nth-child(2) {
        top: auto;
        left: 50%;
        bottom: 15vh;
        width: 100%;
        position: absolute;
        transform: translateX(-50%);
    }
    .section-start .morion-col-wrapper {
        transform: none;
    }
    .section-start .button {
        font-size: 13px;
        padding: 20px;
        min-width: 220px;
    }
    .section-game .pause-btn {
        right: 50px;
    }
    .morion-col:nth-child(2) .img-morion {
        max-width: 120px;
        margin-bottom: 20px;
    }
    .morion-col:nth-child(2) p {
        font-size: 17px;
        margin-bottom: 0;
    }
    .morion-col:nth-child(2) h2 {
        font-size: 20px;
        margin-bottom: 6px;
    }
    .morion-col-item > div p {
        display: none;
    }
    .section-start .section-wrapper {
        padding: 0 20px;
        justify-content: flex-start;
    }
    .morion-col:nth-child(1), .morion-col:nth-child(3) {
        gap: 15px;
        align-items: center;
    }
    .section-final .section-container .container-cta {
        gap: 20px;
    }
    .section-final .section-container .container-cta img {
        max-width: 150px;
    }
    .morion-col-item {
        align-items: center;
        flex-direction: column !important;
    }
    .bg-bubble-1, .bg-bubble-2 {
        max-width: 250px;
        max-height: 500px;
    }
    .bg-bubble-2 {
        bottom: 0;
        right: 0;
    }
    .section-start .morion {
        margin-top: 14vh;
    }
    .morion-col-item > div h3 {
        font-size: 16px;
        text-align: center;
    }
    .section-start {
        background: url(/resources/knowledge_about_water/new/imgs/swiper/bg.png) no-repeat -200px / cover !important;
        background-color: var(--color-3) !important;
    }
    .section-right .section-container-item {
        width: 100%;
    }
    .section-right .section-container-item .img-container {
        gap: 6px;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        flex-direction: row;
        justify-content: center;
    }
    .section-right .section-wrapper {
        padding: 0 20px;
    }
    .section-right .section-container-item .img-container img {
        max-width: 200px;
    }
    .section-right .promo {
        font-size: 16px;
    }
    .section-right h2 {
        font-size: 36px;
        margin-bottom: 10px;
    }
    .section-right p {
        margin-bottom: 20px;
        font-size: 18px;
    }
    .section-right .button {
        padding: 20px;
        font-size: 18px;
    }
    .section-right .logo {
        width: 100px;
        left: 20px;
        top: 40px;
    }
    .section-right .section-container {
        gap: 30px;
        max-width: 410px;
        flex-direction: column;
        justify-content: center;
    }
    .section-right .arrow-back-wrapper {
        max-width: 410px;
    }
    .quiz-title {
        display: none;
    }
    .question {
        gap: 20px;
        width: 320px;
        align-items: center;
        flex-direction: column-reverse;
    }
    .question-item-2 {
        width: 100%;
        flex-direction: row;
        border-radius: 10px;
    }
    .question-item-2 .question-preview {
        display: none;
    }
    .question-item-2 .question-description {
        padding: 20px;
    }
    .question-item-1 {
        padding: 20px;
    }
    .question-title {
        font-size: 18px;
        max-width: 245px;
        margin-bottom: 20px;
    }
    .question-num {
        top: 20px;
        right: 20px;
        font-size: 14px;
    }
    .question-item-1 .button-container > div {
        padding: 16px;
        font-size: 12px;
    }
    .question-item {
        width: 100%;
    }
    .question-item-answers {
        gap: 10px;
    }
    .question-item-answers .answer label {
        font-size: 16px;
    }
    .question input[type=range]::after {
        top: 18px;
        font-size: 14px;
    }
    .question input[type=range]::before {
        top: 18px;
        font-size: 14px;
    }
    .section-quiz-finish .big-bubble {
        top: 92%;
        right: -80px;
        max-width: 220px;
    }
    .section-quiz-finish {
        padding: 0;
    }
    .quiz-finish-item-1 img {
        max-width: 150px;
        max-height: 150px;
        object-fit: contain;
        margin-left: -30px;
    }
    .quiz-finish-item-1 {
        max-width: 320px;
        width: 100%;
        flex-direction: row;
    }
    .quiz-finish-wrapper {
        gap: 10px;
        flex-direction: column;
        justify-content: center;
    }
    .quiz-finish-item-1 p {
        font-size: 18px;
        margin-top: 0px;
        max-width: 280px;
        margin-left: -10px;
    }
    .quiz-finish-item-2 .promo {
        margin-top: 15px;
    }
    .quiz-finish-item-2 span {
        margin-top: 10px;
    }
    .section-quiz-finish .logo {
        left: 0;
        width: 100px;
    }
    .quiz-finish-item-2 {
        max-width: 320px;
        width: 100%;
    }
    .quiz-finish-item-2 h2 {
        font-size: 30px;
    }
    .quiz-finish-item-2 span {
        font-size: 70px;
    }
    .quiz-finish-item-2 p {
        font-size: 20px;
        line-height: 130%;
    }
    .reset-block {
        min-width: 350px;
        gap: 30px;
        padding: 40px 30px;
    }
    .reset-block-title {
        font-size: 24px;
    }
    .quiz-finish-item-2 .promo p {
        font-size: 14px;
    }
    .section-final .section-container h2 {
        font-size: 28px;
    }
    .section-final .section-container .section-container-item-1 .promo {
        font-size: 20px;
        max-width: 250px;
        padding: 24px 20px 22px;
        padding-right: 80px !important;
    }
    .section-final .section-container .section-container-item-1 .promo::before {
        width: 34px;
        height: 34px;
        right: 38px;
    }
    .section-final > .bubble-1 {
        left: -30px;
        bottom: -30px;
        max-width: 200px;
    }
    .section-final > .bubble-2 {
        max-width: 300px;
    }
    .section-final > .bubble-3 {
        left: 46%;
        max-width: 220px;
    }
    .section-final > .bubble-1 {
        left: -10px;
        bottom: -10px;
        max-width: 150px;
    }
    .section-final > .bubble-2 {
        left: 33%;
        bottom: -40px;
        max-width: 220px;
    }
    .section-final > .bubble-3 {
        left: 46%;
        max-width: 170px;
    }
    .section-final .section-container .section-container-item-2 {
        padding: 16px;
    }
    body > .logo img {
        width: 100px;
    }
    .section-game .bg-bubble {
        display: block;
    }
    [mesh3x4] {
        grid-template-columns: repeat(3, 120px);
        grid-template-rows: repeat(4, 100px);
    }  

    .win-wrap {
        margin-top: 0;
    }

    .winSlider {
        width: 100%;
        height: 100vh;
        align-items: center;
        box-sizing: border-box;
    }

    .winNav {
        /* bottom: auto;
        top: 100%; */
        position: relative;
        top: 230px;
        /* bottom: 60px; */
        width: 100%;
        margin-right: 0;
        margin-bottom: 0;
    }

    .winBot-title {
        position: absolute;
        top: 120px;
    }

    .winSlider-item--text {
        font-size: 18px;
    }

    .winBot-hero--teaser {
        position: absolute;
        bottom: 90px;
        left: 0;
        right: 0;
        margin: auto;
    }

    .winBot {
        position: absolute;
        width: 100%;
        height: 100%;
        max-width: 100%;
        pointer-events: none;
    }

    .winBot-hero--img {
        position: absolute;
        width: 200px;
        top: 90px;
        right: 0;
        z-index: 9;
    }

    .winBot-hero--img .robot {
        margin-top: -50px;
    }

    .winNav {
        justify-content: center;
    }

    .winNav--item {
        padding: 20px 25px 16px;
        letter-spacing: 3%;
        font-size: 14px; 
    }
}


@media screen and (max-width: 1920px) and (max-height: 819px) {
    .section-game .back-btn { 
        top: 80px;
        transform: scale(0.8) translateX(-30px);
    }
}

@media screen and (max-width: 499px) and (max-height: 589px) {
    .morion-col:nth-child(2) h2 {
        font-size: 18px;
        margin-bottom: 5px;
    }
    .morion-col:nth-child(2) span {
        font-size: 12px;
    }
}

@media (max-height: 729px) {
    .morion-col:nth-child(2) .img-morion {
        display: none;
    }
}

@media (max-height: 689px) {
    .rules-container-item p {
        font-size: 12px;
    }
    .rules-container-item h3 {
        margin-top: 15px;
        font-size: 20px;
    }
    .rules-container-item img {
        max-width: 45%;
    }
    .rules-title-wrapper {
        font-size: 38px;
        max-width: 420px;
    }
    .rules-button {
        max-width: 330px;
        font-size: 16px;
        padding: 20px;
    }
    .rules-container {
        margin-bottom: 15px;
    }
    .rules-title {
        margin-bottom: 20px;
    }
    .section-game .pause-btn {
        top: 50px;
        right: 30px;
        max-width: 70px !important;
    }
    .section-game .back-btn {
        top: 50px !important;
    }

}

@media (max-width: 699px) {
    .section-right .section-container {
        max-width: 320px;
    }
    .section-final .section-container .container-cta {
        gap: 0;
    }
    .section-final .section-container .container-cta h3 span {
        font-size: 20px;
    }
    .section-final .section-container .container-cta .button {
        margin-top: 15px;
        max-width: 250px;
        font-size: 14px;
    }
    .section-final .section-container .container-cta .delivery {
        font-size: 10px;
        margin-top: 10px;
        max-width: 300px;
    }
    .rules-container {
        max-width: 360px;
    }
    .section-right .arrow-back-wrapper {
        max-width: 320px;
    }
    .card__front {
        background-size: 55%;
    }
    .section-game .bg-item {
        right: auto;
        left: 3%;
        bottom: 40px;
        width: 80px;
    }
    .section-right .promo {
        font-size: 12px;
    }
    .section-game .bubble-paralax {
        width: 50%;
    }
    .bg-bubble-1 {
        bottom: -35px;
    }
    h1 {
        font-size: 36px;
    }
    .section-preview .slogan {
        font-size: 26px;
        max-width: 400px;
    }
    .section-preview .button {
        font-size: 16px;
    }
    .section-preview .section-container {
        gap: 40px;
    }
    .section-preview .img-absolute {
        bottom: 0;
        right: auto;
        left: 50px;
        transform: scale(-1, 1);
        width: 190px;
    }
    .section-right h2 {
        font-size: 28px;
        margin-bottom: 10px;
    }
    .section-right p {
        margin-bottom: 20px;
        font-size: 14px;
    }
    .section-right .button {
        padding: 18px 16px 16px;
        font-size: 16px;
    }
    .section-right .section-container-item .img-container img {
        max-width: 160px;
    }
    .section-right .section-container-item .img-container {
        gap: 0;
    }
    .section-final > .bubble-1 {
        left: -20px;
        bottom: -20px;
        max-width: 110px;
    }
    .section-final > .bubble-2 {
        left: 60%;
        bottom: 50%;
        max-width: 170px;
    }
    .section-final > .bubble-3 {
        left: 68%;
        max-width: 100px;
    }
    .section-final .logo {
        top: 40px;
    }
    .section-final .section-container {
        align-items: flex-start;
        flex-direction: column;
    }
    .section-final .section-container .section-container-item {
        width: 100%;
    }
    .section-final .section-container .section-container-item-2 {
        flex-direction: row;
        max-width: 450px;
    }
    .section-final .section-container .section-container-item-2 .img-container img {
        max-height: 180px;
    }
    .section-final .section-container .section-container-item-2 h3 {
        display: none;
        font-size: 14px;
    }
    .section-final .section-container .section-container-item-2 p {
        font-size: 12px;
        margin-bottom: 15px;
    }
    .section-final .section-container .social-container {
        gap: 6px;
    }
    .section-final .section-container .social-container img {
        width: 40px;
    }
    .section-final .section-container .section-container-item-1 .promo {
        font-size: 18px;
        max-width: 220px;
    }
    .section-final .section-container .section-container-item-1 .promo::before {
        right: 31px;
    }
    .section-final .section-container h2 {
        font-size: 24px;
        margin-bottom: 6px;
    }
    .mesh .side .side-item:nth-child(1) {
        display: none;        
    }
    .mesh .side-item {
        flex-direction: row;
        gap: 16px;
    }
    .mesh .side-item-2 {
        width: 175px;
    }
    .mesh .timer-block img {
        width: 50px;
    }
    .timer {
        margin-top: 0;
    }
    .mesh .side {
        top: 115%;
        gap: 0;
        right: 0;
        left: auto;
    }
    .section-game .pause-btn {
        right: 20px;
    }

    .section-final .section-container .container-cta p {
        font-size: 24px;
    }
    .section-final .section-container .container-cta p.price {
        font-size: 38px;
    }
    .section-final .section-container .container-cta h3 {
        font-size: 20px;
        display: none;
    }
    .section-final .section-container .container-cta img {
        position: absolute;
        width: 125px;
        top: -40px;
        right: 30%;
    }
    .winNav--item {
        padding: 20px 15px 16px;
        letter-spacing: 3%;
        font-size: 14px; 
    }

    .winSlider-item--title {
        font-size: 30px;
    }

    .winSlider-item--text {
        font-size: 16px;
    }

    .winBot-title {
        display: none;
    }

    .winBot-hero--img {
        position: absolute;
        width: 180px;
        top: 90px;
        right: -20px;
        z-index: 9;
    }
}

@media screen and (max-width: 499px), screen and (max-height: 599px) and (max-width: 599px) {
    [mesh3x4] {
        grid-template-columns: repeat(3, 90px);
        grid-template-rows: repeat(4, 80px);
    }   
    body > .logo img {
        width: 80px;
    }
    body > .logo .logo-wrapper {
        padding: 12px 20px;
    }
    .section-final > .bubble-2 {
        left: 75%;
        bottom: 47%;
        max-width: 100px;
    }
    .mesh .side-item-2 {
        gap: 10px;
        width: 155px;
        padding: 12px 0px;
    }
    .timer {
        font-size: 20px;
    }
    .mesh .timer-block img {
        width: 45px;
    }
    .card__front {
        background-size: 55%;
    }
    .section-right .logo {
        width: 100px;
        top: 40px;
    }
    .section-preview .img-absolute {
        left: 20px;
        width: 150px;
        bottom: -10px;
    }
    .section-preview .section-container {
        gap: 20px;
    }
    .section-start .arrow {
        top: 60%;
        padding: 20px 6px;
        background-color: rgba(217, 217, 217, 0.5);
    }
    .section-start .arrow span {
        font-size: 9px;
    }
    .section-start .arrow img {
        max-width: 16px;
    }
    .section-start .arrow-prev {
        left: 10px;
    }
    .section-start .arrow-next {
        top: 47%;
        min-width: 90px;
    }
    .morion-col:nth-child(1), .morion-col:nth-child(3) {
        gap: 10px;
    }
    .morion-col-item {
        gap: 6px;
    }
    .morion-col:nth-child(1) img, .morion-col:nth-child(3) img {
        width: 30px;
    }
    .section-final .section-container .section-container-item-2 p {
        margin-bottom: 5px;
    }
    .section-preview {
        /* background: url(/resources/knowledge_about_water/new/imgs/preview/bg.png) no-repeat -700px center / cover; */
        background: url(/resources/knowledge_about_water/new/imgs/main_bg.jpg) no-repeat -700px center / cover;
        background-color: var(--color-3);
    }
    body.theme-2 .section-preview {
        background: url(/resources/knowledge_about_water/new/imgs/preview/bg2.png) no-repeat -250px center / cover;
        background-color: var(--color-3);
    }
    body.theme-3 .section-preview {
        background: url(/resources/knowledge_about_water/new/imgs/preview/bg3.png) no-repeat -950px center / cover;
        background-color: var(--color-3);
    }
    body.theme-4 .section-preview {
        background: url(/resources/knowledge_about_water/new/imgs/preview/bg4.png) no-repeat -250px center / cover;
        background-color: var(--color-3);
    }
    body.theme-2 .section-preview .img-absolute {
        left: auto;
        right: 0;
        bottom: auto;
        top: 10px;
        transform: none;
    }
    body.theme-3 .section-preview .img-absolute {
        left: auto;
        right: 0;
        bottom: 10px;
        transform: none;
    }
    body.theme-4 .section-preview .img-absolute {
        left: auto;
        right: 0;
        bottom: 0;
        transform: none;
    }
    .section-preview .slogan {
        font-size: 20px;
        max-width: 300px;
    }
    .rules-container-item img {
        max-width: 50%;
        max-height: 160px;
        object-fit: contain;
    }
    .rules-container-item {
        min-height: 330px;
    }
    .rules-container-item p {
        font-size: 15px;
    }
    .rules-container-item h3 {
        margin-top: 15px;
        font-size: 20px;
    }
    .rules-container {
        margin-bottom: 20px;
    }
    .section-final .section-container .social-container img {
        width: 30px;
    }
    .section-rules .logo {
        display: none;
    }
    .section-final .section-container .container-cta p.price {
        font-size: 34px;
    }
    .win-wrap {
        padding-top: 60px;
        flex-direction: column;
        gap: 10px;
    }

    .winSlider {
        position: fixed;
        left: 0;
        right: 0;
        top: 0;
        opacity: 0;

        width: 100vw;
        height: 100vh;
        align-items: center;
        box-sizing: border-box;
        flex-direction: column;
        justify-content: center;
        z-index: 999;
        pointer-events: none;
        transition: .5s all ease;
    }

    .winSlider.active {
        opacity: 1;
        pointer-events: all;
        backdrop-filter: blur(30px);
        background: #00000054;
    }

    .winSlider-item {
        height: auto;
        padding: 20px;
    }

    .winSlider-item:nth-child(4) {
        position: relative !important;
    }

    .winSlider-item--title {
        font-size: 26px;
    }
    .section-final .section-container .container-cta img {
        position: absolute;
        width: 75px;
        top: -20px;
        right: 40%;
        left: 150px;
    }
    .section-win {
        padding: 0;
    }

    .section-win .section-wrapper {
        align-items: flex-start;
        justify-content: flex-start;
        height: 100vh;
    }

    .win-mobile {
        font-weight: 600;
        margin: 0;
        text-align: center;
        font-size: 40px;
    }

    .winSlider-item--text {
        font-size: 14px;
    }

    .winSlider-item--text p {
        margin-top: 15px;
    }

    .winSlider-wrap {
        position: relative;
        width: 90%;
        height: auto;
    }
    .section-final .section-container h2 {
        font-size: 20px;
    }
    .winSlider .close-wrapper {
        z-index: 9;
        position: relative;
        display: flex;
        margin-left: auto;
        margin-right: 5%;
        cursor: pointer;
    }
    .winSlider-close {
        cursor: pointer;
    }


    .winNav {
        position: relative;
        justify-content: flex-start;
        top: 0;
        bottom: 0;
        align-items: center;
        overflow: scroll;
        padding-bottom: 10px;
        padding-left: 10px;
        margin-left: -0px;
        /* margin-right: -40px; */
        width: 100vw;
        gap: 10px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .winNav--item {
        padding: 12px 15px 10px;
        letter-spacing: 3%;
        font-size: 12px;
        max-width: 10000px;
        min-width: fit-content;
    }



    .winBot {
        height: 100vh;
        top: 0;
        pointer-events: all;
    }

    .winBot-title {
        display: block;
        position: relative;
        top: 0;
    }
    
    .winBot-hero--img {
        top: auto;
        bottom: 0;
        position: relative;
        right: 0;
        width: 200px;
    }

    .winBot-hero--btn {
        display: block;
        max-width: 200px;
        background-color: #003b9f;
        border-radius: 50px;
        text-align: center;
        padding: 12px;
        cursor: pointer;
        user-select: none;
    }


    .winBackground-bubbles--item {
        display: none;
    }

    .winBot-hero--teaser {
        position: relative;
        top: 0;
        bottom: 0;
        margin: 20px auto 0;
    }

}


@media (max-width: 429px) {
    h1 {
        font-size: 34px;
    }
    .section-preview .section-container {
        gap: 20px;
    }
    .button {
        padding: 18px 50px 20px;
        max-width: 270px;
        font-size: 18px;
    }
    .section-rules .b-3 {
        max-width: 120px;
        left: 78%;
        top: 35px;
    }
    .section-rules .logo {
        max-width: 100px;
    }
    .section-start .morion {
        margin-top: 11vh;
    }
    .morion-col-item > div h3 {
        font-size: 14px;
    }
    .game-popup {
        max-width: 90%;
    }
}

@media (max-width: 359px) {
    .rules-title-wrapper {
        font-size: 26px;
    }
    .mesh .side-item-2 {
        background-color: #49494945;
    }
    .section-advice .container-img img {
        max-width: 65px;
    }
    .section-advice .container-img {
        max-width: 270px;
    }
    .section-advice h2 {
        font-size: 26px;
        padding: 0;
    }
    .section-final .section-container .section-container-item-2 .img-container img {
        display: none;
    }
    .section-final .section-container .section-container-item-2 {
        justify-content: center;
    }
    .section-final .section-container .container-cta .button {
        font-size: 11px;
    }
}





