@font-face {
    font-family: 'Zametka_Parletter';
    src: url('../fonts/Zametka_Parletter/Zametka_Parletter.eot');
    src: url('../fonts/Zametka_Parletter/Zametka_Parletter.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Zametka_Parletter/Zametka_Parletter.woff2') format('woff2'),
        url('../fonts/Zametka_Parletter/Zametka_Parletter.woff') format('woff'),
        url('../fonts/Zametka_Parletter/Zametka_Parletter.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

* {
	margin: 0;
	padding: 0;
}

html, body {
	height: auto;
    width: 100%;
	min-height: calc(100 * var(--vh));
}

body {
	font-family: 'Zametka_Parletter';
    font-weight: normal;
    font-style: normal;
    color: #fff;
    background: #000;
}

h1 {
	font-size: 70px;
	line-height: 90px;
	font-weight: normal;
	margin-bottom: 20px;
}

p {
	font-size: 30px;
	line-height: 40px;
	text-transform: uppercase;
	margin-bottom: 30px;
	font-weight: normal;
	letter-spacing: 1.3px;
}

.btn {
    font-weight: normal;
    background: #ffe052;
    color: #000;
    font-size: 26px;
    border: 0;
    border-radius: 10px;
    box-sizing: border-box;
    padding: 20px 50px;
    font-family: 'Zametka_Parletter';
    cursor: pointer;
    letter-spacing: 2.4px;
    z-index: 2;
    position: relative;
}

.container {
    min-height: calc(100 * var(--vh));
    width: 100%;
    overflow: hidden;
    position: relative;
}

.such-body {
	padding: 60px 0 0 0;
	box-sizing: border-box;
}

.such-bg {

	width: 100%;
	height: 100%;
}

.container-main {
    background: url(../img/bg.jpg) center center no-repeat;
    background-size: cover;
}

.container-such {

}

.such-bg {
	width: 100%;
	height: 100%;
	overflow: hidden;
	position: absolute;
	top: 0;
	left: 0;
}

.such-bg-paralax-1 {
	background: url(../img/s-bg-2.png) top center no-repeat;
	width: 110%;
	height: 110%;
	position: absolute;
	margin-left: -10%;
	left: 0;
	top: 0;
}

.such-bg-paralax-2 {
	background: url(../img/s-bg-1.png) bottom center no-repeat;
	width: 110%;
	height: 110%;
	position: absolute;
	margin-left: -5%;
	bottom: -120px;
}

.nastoyachii-malchik {
    width: 180px;
    height: 354px;
    position: relative;
}

.nastoyachii-malchik img {
    position: relative;
    width: 100%;
    height: auto;
}

.nastoyachii-malchik:before {
	content: ' ';
	position: absolute;
	background: url(../img/shadow_suchok.png);
	width: 239px;
	height: 72px;
	left:  50%;
	margin-left: -126px;
	bottom: -23px;
}

.wrapper {
    /* max-width: 1680px; */
    /* margin: 0 auto; */
    position: relative;
    width: 100%;
    box-sizing: border-box;
    padding: 30px;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
    height: var(--app-height);
}

.inner {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: calc(100 * var(--vh));
    align-items: center;
    display: flex;
    justify-content: center;
    flex-direction: column;
    z-index: 3;
}

.suchok .inner {
    z-index: 2;
}

.header {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.logo {
    width: 272px;
    margin-right: 40px;
}

.logo-such {
	width: auto;
}

.tagline {
	color: white;
	font-size: 20px;
	line-height: 30px;
	letter-spacing: 0.3;
	display: inline-block;
	vertical-align: middle;
}

.tagline-menu {
	font-size: 22px;
}

.tagline-menu li {
	display: inline-block;
	vertical-align: middle;
	margin-right: 30px;
}

.tagline-menu a {
	color: #fff;
}

.vova {
    background: url(../img/man_2.png);
    width: 286px;
    height: 442px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center bottom;
    position: relative;
}

.stuff {
    width: 100%;
    display: flex;
    flex-direction: row;
    max-width: 800px;
    align-items: center;
    justify-content: center;
    height: 200px;
    gap: 1rem;
    z-index: 2;
}

.stuff > div {
    flex: 1;
    height: 100%;
    background-size: contain;
    margin: 0 30px;
    display: flex;
    align-items: start;
    justify-content: center;
}

.stuff > div:nth-child(2) {
    align-items: end;
}

.stuff > div > a {
    height: 70%;
    width: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    position: relative;
}

.tooltip {
    position: absolute;
    background: #ffffff;
    color: #000000;
    text-align: center;
    font-size: 14px;
    opacity: 0;
    display: block;
    transition: all 0.1s cubic-bezier(0.4, 0, 1, 1) 0s;
    width: 300px;
    height: 210px;
    left: 50%;
    margin-left: -150px;
    bottom: calc(100% + 15px);
    z-index: 9999;
    border-radius: 20px;
}

.tooltip:after {
	content: ' ';
	position: absolute;
	width: 0;
	height: 0;
	border-width: 10px 20px 10px 20px;
	border-color: transparent;
	border-top-color: #fff;
	border-style: solid;
	bottom: -19px;
	left: 50%;
	margin-left: -20px;

}

.tooltip-hover {
	display: block;
	cursor: pointer;
}

.tooltip-hover:hover .tooltip{
	display: block;
	opacity: 1;
}

.brevno {
	background: url(../img/birk.png) top center no-repeat ;
	background-size: cover;
    cursor: pointer;
	transition: all 0.1s cubic-bezier(0.4, 0, 1, 1) 0s; 
}

.tooltip-brevno,
.tooltip-gun {
	padding: 30px 0 15px 0;
}

.tooltip-coin {
	padding: 0 0 15px 0;
	margin: -30px 0 0 0;
}

.tooltip-channel {
	padding: 0 0 15px 0;
	margin: -30px 0 0 0;
}

.coin {
	background: url(../img/coin.png) top center no-repeat;
	background-size: cover;
    cursor: pointer;
    transition: all 0.1s cubic-bezier(0.4, 0, 1, 1) 0s; 
}

.gun {
    background: url(../img/gun.png) top center no-repeat;
    background-size: cover;
    cursor: pointer;
    transition: all 0.1s cubic-bezier(0.4, 0, 1, 1) 0s; 
}

.channel {
	background: url(../img/you.png) top center no-repeat;
	background-size: cover;
    cursor: pointer;
    transition: all 0.1s cubic-bezier(0.4, 0, 1, 1) 0s; 
}

.brevno:hover,
.coin:hover, 
.channel:hover,
.gun:hover {
	transform: scale(1.2);
}


.menu-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: fixed;
    bottom: 15px;
    z-index: 4;
}

.main-menu {
    width: 600px;
    height: 100px;
    max-width: calc(100% - 30px);
    background: #191919;
    border-radius: 20px;
    padding: 10px 15px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.menu-logo {
	display: inline-block;
	vertical-align: middle;
	width: 100px;
}

.menu-logo img {
	wodth: 100%;
}

.social-link {
    display: inline-block;
    vertical-align: middle;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
}

.social-link li {
    display: inline-block;
    flex: 1;
    list-style: none;
    margin: 0 15px;
}

.social-link--mobile li {
    margin: 0;
    flex: inherit;
}

.social-link li a{
	display: block;
	opacity: 0.2;
	cursor: pointer;
}

.social-link li a:hover{
	opacity: 1;
}

.youtube-icon {
	width: 41px;
}

.tg-icon {
	width: 34px;
}

.vk-icon {
	width: 40px;
}

.info-list {
    display: inline-block;
    vertical-align: middle;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: bold;
    margin: 0 15px;
}

.info-list li {
	display: block;
	text-align: center;
	color: #fff;
	margin-bottom: 9px;
}

.info-list li:last-child {
	margin-bottom: 0;
}

.info-list li a{
	
}

.donation-link {
	color: #00b7b6;
}

.donation-link:hover {
	color: #fff;
}

.info-link {
	opacity: 0.2;
	color: #fff;
}

.info-link:hover {
	opacity: 1;
}

.burger-button {
    border: 2px solid #fff;
    border-radius: 10px;
    cursor: pointer;
    display: inline-block;
    vertical-align: middle;
    width: 80px;
    height: 80px;
    /* position: absolute; */
    /* top: 10px; */
    /* right: 10px; */
    background: url(../img/burger.svg) center center no-repeat;
    background-size: 40px 40px;
    box-sizing: border-box;
    opacity: 0.2;
}

.burger-button.active {
    background: url(../img/burger-close.svg) center center no-repeat;
}

.burger-button:hover {
	opacity: 1;
}

.popup {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    display: none;
    z-index: -1;
}

.popup-bg {
    position: absolute;
    width: 100%;
    height: calc(100% + 5px);
    left: 0;
    top: 0;
    background: #000000;
    opacity: 0;
    z-index: -1;
    border-radius: 20px;
    display: none;
}

.popup-container {
    width: 100%;
    background: #191919;
    box-sizing: border-box;
    margin: 0 auto;
    border-radius: 20px;
    position: absolute;
    bottom: -600px;
    box-sizing: border-box;
    padding: 15px;
}

.popup-items {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
    gap: 15px;
}

.popup-container > div:last-child {
    width: 100%;
    padding: 15px;
    box-sizing: border-box;
    display: none;
}

.popup-container .popup-items > div {
    flex: 1;
    height: 150px;
}

.popup-button {
    display: inline-block;
    vertical-align: top;
    border: 2px solid #474747;
    border-radius: 20px;
    box-sizing: border-box;
    overflow: hidden;
    width: 100%;
    height: 100%;
    display: block;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
}

.popup-button img {
	max-width: 100%;
}

.popup-button:hover {
	border: 2px solid #fff;
}

.suchok .wrapper {
    position: relative;
}

.such-wrap {
    display: flex;
    position: absolute;
    bottom: 350px;
    width: 100%;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.page-wrap {
    position: absolute;
    left: 15px;
    top: -2000px;
    width: calc(100% - 30px);
    height: calc(var(--app-height) - 30px);
    background: #191919;
    border-radius: 20px;
    color: #FFF;
    z-index: 3;
    transition: all .5s ease-out;
    padding: 15px;
    display: flex;
    align-items: baseline;
    box-sizing: border-box;
    justify-content: center;
    overflow: hidden;
    display: flex;
}

.page-wrap.active {
    top: 15px;
}

.page-inner {
    padding-top: 15px;
    line-height: 1.5rem;
    width: 100%;
    height: calc(100% - 100px);
    overflow: auto;
    /* padding-bottom: 400px; */
    position: relative;
    /* display: flex; */
    /* flex-direction: column; */
}

.page h2 {
    margin-bottom: 30px;
    font-size: 2.5rem;
    text-transform: uppercase;
}


.page-inner p {
    font-size: 1rem;
    line-height: 1.5rem;
    margin-bottom: 30px;
}

div.page {
    display: none;
}

div.page.active {
    display: initial;
}

a.btn {
    text-decoration: none;
    text-align: center;
}


.game-page .wrap {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    min-height: 100vh;
    flex-direction: column;
    max-width: 800px;
    margin: 0 auto;
    gap: 2rem;
    /* padding-top: 3rem; */
    padding: 3rem 30px 200px 30px;
}

.game-page h1 {
    text-align: center;
    font-size: 60px;
    line-height: 68px;
}

.game-page h1 span {
    color: #008281;
}

.game-page p,
.dblm-features .dblm-feature > div {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    text-align: center;
    text-transform: none;
    font-weight: 200;
    line-height: 30px;
}

.game-page p a {
    color: #E94E1B;
    text-decoration: underline;
    font-weight: 500;
}

.dblm-features {
    display: flex;
    flex-direction: row;
    width: 100%;
}

.dblm-features .dblm-feature {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    gap: 15px;
}

.dblm-features .dblm-feature > div {
    align-items: center;
    justify-content: center;
    text-align: left;
}

.dblm-feature-img {
    width: 105px;
    height: 105px;
    background-size: contain;
    background-repeat: no-repeat;
}

.dblm-feature--players { background-image: url(/img/dubolomi/mans.svg); }
.dblm-feature--cards { background-image: url(/img/dubolomi/cards.svg); }

.dblm-buttons {
    padding-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 60px;
    align-items: center;
    justify-content: center;
}

.dblm-btn {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 500;
    background: #008281;
    color: #FFF;
    text-decoration: none;
    padding: 20px 60px 20px 30px;
    border-radius: 50px;
    position: relative;
}

.dblm-btn--wb .dblm-btn-icon {
    top: -65px;
}

.dblm-btn--ym .dblm-btn-icon {
    top: -10px;
}

.dblm-btn-icon {
    position: absolute;
    z-index: 2;
    right: -45px;
    top: -25px;
}

.dblm-btn-icon img {
    width: 105px;
    height: auto;
}

.dblm-btn--wb { background: linear-gradient(to right, #D004BD, #750897); }

.dblm-btn--oz { background: #0259FF; }
.dblm-btn--ym { background: #FFC600; color: #000000; }


.disabled {
    opacity: .3;
    filter: grayscale(100%);
    pointer-events: none;
}

.dblm-box {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    position: relative;
}

.dblm-box img {
    width: 100%;
}

.dblm-video {
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url(/img/dubolomi/splash.png);
    width: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    flex-direction: column;
    padding: 75px 0;
    position: relative;
}

.dblm-video-inner {
    position: relative;
    width: 100%;
}

.dblm-video-inner img {
    max-width: 100%;
    border-radius: 10px;
    overflow: hidden;
}

.dblm-video-inner p {
    text-align: left;
}

img.dblm-character {
    position: absolute;
    right: 95px;
    bottom: -75px;
}

.dblm-video-btn {
    background-image: url(/img/dubolomi/button.svg?v1);
    width: 80px;
    height: 80px;
    display: block;
    cursor: pointer;
    position: absolute;
    bottom: 30px;
    left: 30px;
    border: none;
    background-color: transparent;
    background-size: contain;
}

.dblm-video-inner p {
    text-align: left;
    position: absolute;
    bottom: -105px;
    width: auto;
    color: #FFF;
    font-size: 1.5rem;
    width: 50%;
    left: 30px;
}

.dblm-pdf {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.dblm-pdf-icon {
    background-image: url(/img/dubolomi/pdf.svg?v2);
    width: 70px;
    height: 88px;
}

.dblm-pdf a {
    color: #00D5D4;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    text-transform: none;
}

.dblm-hints {
    display: flex;
    flex-direction: row;
    position: absolute;
    bottom: 0;
    height: 50%;
    width: 100%;
    /* top: 50%; */
}

.dblm-hint-wrap {
    align-items: center;
    justify-content: center;
    display: flex;
    position: relative;
}

.dblm-hint--coin {
    width: 20%;
    align-items: baseline;
    margin-top: 20px;
}

.dblm-hint--chars {
    width: 10%;
    margin-left: -25px;
    margin-top: 30px;
}

.dblm-hint--attack {
    width: 20%;
    margin-top: 20px;
    margin-left: -20px;
}

.dblm-hint--protect {
    width: 20%;
    margin-top: -25px;
    margin-left: 5px; 
}

.dblm-hint--prestige {
    width: 20%;
    margin-top: 75px;
    margin-left: -35px;
}

.dblm-hint {
    display: none;
}

.dblm-info {
    cursor: pointer;
    width: auto;
    height: auto;
    min-width: 40px;
    min-height: 40px;
    background-image: url(/img/dubolomi/i.svg);
    background-size: contain;
    background-repeat: no-repeat;
    display: block;
    position: relative;
}

.dblm-hint {
    opacity: 0;
    display: none;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    background: rgba(12,12,12, 0.8);
    padding: 15px;
    border-radius: 5px;
    gap: 15px;
    font-size: 18px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 200;
    position: absolute;
    width: 250px;
    transition: all .5s ease-in;
    position: absolute;
    left: 0;
    top: 0;
    margin-top: -100%;
    color: #FFF;
    text-decoration: none;
    z-index: 10;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.dblm-hint > div {
    min-width: 40px;
}

.dblm-hint.active {
    opacity: 1;
    display: flex;
}

a.dblm-info.dblm-info--mobile {
    position: absolute;
    display: none;
    width: 40px;
    height: 40px;
    background-image: url(/img/dubolomi/i.svg);
    right: 30px;
    bottom: 0;
    background-size: contain;
    min-height: inherit;
}

.dblm-characters {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    background: rgba(12, 12, 12, 0.8);
    z-index: 10;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    box-sizing: border-box;
}

.characters-menu .dblm-characters {
    display: flex;
}

.dblm-characters-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    flex-wrap: wrap;
    gap: 15px;
    box-sizing: border-box;
    overflow-y: scroll;
    padding: 60px 0;
}

.dmlm-char {
    min-width: 20%;
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
}

.dmlm-char-card {
    width: 180px;
    height: 250px;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.dmlm-char:hover .dmlm-char-card {
  transform: rotateY(180deg);
}

.dmlm-char-card-front,
.dmlm-char-card-back {
    width: 100%;
    height: 100%;
    background-image: url("/img/dubolomi/card.svg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    transition: transform 0.6s;
    transform-style: preserve-3d;
    position: absolute;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.dmlm-char-card-back {
    transform: rotateY(180deg);
}

.dmlm-char:nth-child(2) .dmlm-char-card-back { background-image: url("/img/dubolomi/char-1.png"); }
.dmlm-char:nth-child(3) .dmlm-char-card-back { background-image: url("/img/dubolomi/char-2.png"); }
.dmlm-char:nth-child(4) .dmlm-char-card-back { background-image: url("/img/dubolomi/char-3.png"); }
.dmlm-char:nth-child(5) .dmlm-char-card-back { background-image: url("/img/dubolomi/char-4.png"); }
.dmlm-char:nth-child(6) .dmlm-char-card-back { background-image: url("/img/dubolomi/char-5.png"); }
.dmlm-char:nth-child(7) .dmlm-char-card-back { background-image: url("/img/dubolomi/char-6.png"); }
.dmlm-char:nth-child(8) .dmlm-char-card-back { background-image: url("/img/dubolomi/char-7.png"); }
.dmlm-char:nth-child(9) .dmlm-char-card-back { background-image: url("/img/dubolomi/char-8.png"); }
.dmlm-char:nth-child(10) .dmlm-char-card-back { background-image: url("/img/dubolomi/char-9.png"); }
.dmlm-char:nth-child(11) .dmlm-char-card-back { background-image: url("/img/dubolomi/char-10.png"); }
.dmlm-char:nth-child(12) .dmlm-char-card-back { background-image: url("/img/dubolomi/char-11.png"); }
.dmlm-char:nth-child(13) .dmlm-char-card-back { background-image: url("/img/dubolomi/char-12.png"); }
.dmlm-char:nth-child(14) .dmlm-char-card-back { background-image: url("/img/dubolomi/char-13.png"); }
.dmlm-char:nth-child(15) .dmlm-char-card-back { background-image: url("/img/dubolomi/char-14.png"); }
.dmlm-char:nth-child(16) .dmlm-char-card-back { background-image: url("/img/dubolomi/char-15.png"); }
.dmlm-char:nth-child(17) .dmlm-char-card-back { background-image: url("/img/dubolomi/char-16.png"); }
.dmlm-char:nth-child(18) .dmlm-char-card-back { background-image: url("/img/dubolomi/char-17.png"); }
.dmlm-char:nth-child(19) .dmlm-char-card-back { background-image: url("/img/dubolomi/char-18.png"); }
.dmlm-char:nth-child(20) .dmlm-char-card-back { background-image: url("/img/dubolomi/char-19.png"); }
.dmlm-char:nth-child(21) .dmlm-char-card-back { background-image: url("/img/dubolomi/char-20.png"); }


.dblm-video-preview {
    max-width: calc(100% - 60px);
    margin: 0 auto;
    position: relative;
}

body.characters-menu {
    overflow: hidden;
}

.dblm-close {
    position: absolute;
    right: 25px;
    top: 25px;
    width: 45px;
    height: 45px;
    cursor: pointer;
    background-image: url(/img/dubolomi/close.svg);
    background-size: contain;
    z-index: 999;
}

.dblm-hints--mobile {
    display: none;
    opacity: 1;
    position: relative;
}

.dblm-hints.dblm-hints--mobile .dblm-hint {
    opacity: 1;
    display: flex;
    position: relative;
    margin: 0;
    width: 100%;
    position: relative;
    justify-content: left;
}

@media screen and (max-width: 767px) {

	.header {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 1.5rem;
    }

	.logo {
        width: 50%;
        margin-right: 0;
    }

	.tagline {
        color: white;
        font-size: .7rem;
        line-height: 15px;
        letter-spacing: 0.3;
        display: inline-block;
        vertical-align: middle;
        text-align: left;
    }

	.vova {
	    width: 143px;
	    height: 221px;
	}

	.stuff {
        width: calc(100% - 30px);
        height: 150px;
        gap: 0;
    }

	.stuff > div {
	    margin: 0;
	}

	.social-link li a {
	    width: 25px;
	}

	.social-link li a {
	    width: 35px;
	}

	.burger-button {
	    width: 45px;
	    height: 45px;
	    background-size: 30px 30px;
	}

	.menu-logo {
	    margin-right: 0;
	}

	.social-link {
	    display: none;
	}

    .social-link--mobile {
        display: flex;
        justify-content: space-around;
        gap: 15px;
    }

	.social-link li {
        display: inline-block;
        vertical-align: center;
        margin-right: 0;
        flex: 1;
        align-items: center;
        display: flex;
        justify-content: space-evenly;
    }

    .popup-container {
        padding: 15px 15px 0 15px;
    }

    .popup-container > div:last-child {
        display: block;
        padding: 15px 0;
    }

    .tooltip-hover:hover .tooltip{
        display: none;
    }

    h1 {
        font-size: 25px;
        line-height: 30px;
    }

    p {
        font-size: 15px;
        line-height: 20px;
    }

    .btn {
        font-size: 15px;
        width: calc(100% - 30px);
        position: absolute;
        bottom: 130px;
        left: 15px;
    }

    .such-bg-paralax-1,
    .such-bg-paralax-2 {
        background-size: cover;
    }

    .such-bg-paralax-2 {
        width: 100%;
        height: 100%;
        margin-left: 0;
        position: relative;
        bottom: 0;
        background-size: contain;
        background-position: center bottom;
        display: flex;
        align-items: self-end;
        justify-content: center;
        background-size: 300%;
    }

    .such-wrap {
        bottom: 85px;
    }



    .suchok .logo img {
        max-width: 100%;
    }

    .suchok .tagline-menu {
        font-size: 15px;
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .suchok .tagline-menu li {
        margin: 0;
    }

    .such-bg:before {
        content: '';
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.3);
        position: absolute;
        z-index: 1;
    }

    .suchok p br {
        display: none;
    }

    .nastoyachii-malchik {
        width: 125px;
        height: auto;
        position: relative;
    }

    .such-wrap {
        bottom: 185px;
    }

    .page h2 {
        font-size: 2rem;
        text-align: center;
    }



    .game-page h1 {
        font-size: 40px;
        line-height: 50px;
    }
    
    .game-page p, .dblm-features .dblm-feature > div {
        font-size: 18px;
        line-height: 25px;
    }

    .dblm-features {
        flex-direction: column;
        width: 100%;
        gap: 30px;
    }

    .dblm-btn {
        font-size: 18px;
    }

    .dblm-btn-icon img {
        width: 85px;
        height: auto;
    }

    .dblm-btn--ym .dblm-btn-icon {
        right: -18px;
    }

    .dblm-btn--wb .dblm-btn-icon {
        top: -45px;
        right: -25px;
    }

    .dblm-box {
        width: calc(100% + 60px);
        overflow: visible;
    }

    .dblm-video {
        width: calc(100% + 60px);
        background-size: cover;
    }

    img.dblm-character {
        right: 30px;
        bottom: -75px;
    }

    .dblm-pdf {
        margin-top: 30px;
    }

    .game-page .wrap {
        padding: 15px 15px 200px 15px;
        gap: 3rem;
    }


    .dblm-hint--coin {
        width: 20%;
        align-items: baseline;
        margin-top: 20px;
    }

    .dblm-hint--chars {
        width: 10%;
        margin-left: -15px;
        margin-top: 30px;
    }

    .dblm-hint--protect {
        width: 20%;
        margin-top: -15px;
        margin-left: 5px;
    }

    .dblm-hint--attack {
        width: 20%;
        margin-top: 20px;
        margin-left: -20px;
    }

    .dblm-hint--prestige {
        width: 20%;
        margin-top: 55px;
        margin-left: -20px;
    }

    .dblm-hints {
        display: none;
        opacity: 0;
        flex-direction: column;
        position: a;
        bottom: inherit;
        height: auto;
        width: 100%;
        /* top: 50%; */
        align-items: center;
        justify-content: center;
        background: rgba(0,0,0,0.3);
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
        gap: 15px;
        top: -260px;
        transition: all .5s ease-in;
    }

    .dblm-hints.active {
        display: flex;
        padding: 60px 0;
        opacity: 1;
    }

    .dblm-hint-wrap.dblm-hint--chars {
        display: none;
    }

    .dblm-hints.active .dblm-hint {
        opacity: 1;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        background: rgba(12,12,12, 0.8);
        padding: 15px;
        border-radius: 5px;
        gap: 15px;
        font-size: 18px;
        font-family: 'Montserrat', sans-serif;
        font-weight: 200;
        position: absolute;
        width: 100%;
        height: 100%;
        transition: all .5s ease-in;
        position: absolute;
        left: inherit;
        top: inherit;
        margin-top: 0;
        color: #FFF;
        text-decoration: none;
        z-index: 10;
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
        box-sizing: border-box;
    }

    .dblm-info {
        cursor: pointer;
        width: 100%;
        min-width: 40px;
        min-height: 120px;
        max-width: 350px;
        background-image: none;
        display: flex;
        position: relative;
        align-items: center;
        justify-content: center;
    }

    .dblm-hint-wrap {
        align-items: center;
        justify-content: center;
        display: flex;
        position: relative;
        width: 100% !important;
        flex: 1;
        margin: 0 !important;
    }

    a.dblm-info.dblm-info--mobile {
        display: block;
    }

    .dblm-video-btn {
        width: 40px;
        height: 40px;
        background-size: contain;
    }

    .dblm-characters-inner {
        padding: 30px;
    }

    .characters-menu .dblm-hints.dblm-hints--mobile {
        display: flex;
        opacity: 1;
        position: relative;
        top: 0;
        background: transparent;
        backdrop-filter: none;
        margin-top: 75px;
    }

    .characters-menu .dblm-characters {
        height: fit-content;
        display: flex;
        flex-direction: column;
        height: -webkit-fill-available;
        overflow: auto;
    }

}

@media screen and (max-height: 570px) {

    .such-body {
        padding: 20px 0 0 0;
        box-sizing: border-box;
    }

    p {
        font-size: 12px;
        line-height: 20px;
    }

    .btn {
        padding: 20px 40px;
    }

    .such-bg-paralax-2 {
        margin-left: -955px;
        bottom: 0px;
    }

}

@media screen and (max-width: 376px) {

    .page-inner p {
        font-size: .8rem;
        line-height: 1.2rem;
        margin-bottom: 30px;
    }

    .such-body {
        padding: 30px 0 0 0;
        box-sizing: border-box;
    }

    .game-page p, .dblm-features .dblm-feature > div {
        font-size: 16px;
        line-height: 22px;
    }

}