html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}main{display:block}h1{font-size:2em;margin:.67em 0}hr{box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace,monospace;font-size:1em}a{background-color:transparent}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}button,[type="button"],[type="reset"],[type="submit"]{-webkit-appearance:button}button::-moz-focus-inner,[type="button"]::-moz-focus-inner,[type="reset"]::-moz-focus-inner,[type="submit"]::-moz-focus-inner{border-style:none;padding:0}button:-moz-focusring,[type="button"]:-moz-focusring,[type="reset"]:-moz-focusring,[type="submit"]:-moz-focusring{outline:1px dotted ButtonText}fieldset{padding:.35em .75em .625em}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{vertical-align:baseline}textarea{overflow:auto}[type="checkbox"],[type="radio"]{box-sizing:border-box;padding:0}[type="number"]::-webkit-inner-spin-button,[type="number"]::-webkit-outer-spin-button{height:auto}[type="search"]{-webkit-appearance:textfield;outline-offset:-2px}[type="search"]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details{display:block}summary{display:list-item}template{display:none}[hidden]{display:none}
* {
	box-sizing: border-box;
}
@font-face {
	font-family: "Freeride";
	src: url('../fonts/Freeride.woff2') format('woff2'),
		 url('../fonts/Freeride.woff') format('woff');
	font-weight: 400;
	font-style: normal;
}
html {
	font-size: 16px;
}
body {
	width: 100%;
	background-color: #fff;
	color: #111;
	font-family: 'Noto Sans', Arial,  sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 24px;
}
body.preventScroll {
	overflow: hidden;
}
.container {
	width: 100%;
	max-width: 1352px;
	margin: 0 auto;
	padding: 0 20px;
}
p {
	margin: 0;
}
h1, h2, h3, h4, h5 {
	margin: 0;
	padding: 0;
}
.page-title, .section-title {
	font-family: "Freeride";
	font-size: 80px;
	line-height: 80px;
	font-weight: 400;
}
.header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 84px;
	display: flex;
	align-items: center;
	z-index: 1;
	background: #333;
}
.header .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.header__logo-default, .header__logo-white {
	width: 359px;
	max-width: 100%;
}
.header__logo-default {
	display: block;
}
.header__logo-white {
	display: none;
}
.header__logo-mobile {
	display: none;
	width: 131px;
	max-width: 100%;
}

.header-wrap.active {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	min-height: 100vh;
	overflow-y: auto;
	/* background: #333; */
	z-index: 11;
}
.header-menu {
	width: 100%;
	padding: 184px 0 56px;
	display: none;
	background: #333;
}
.header-wrap.active .header-menu {
	display: block;
}
.menu-button {
	width: 64px;
	height: 64px;
	flex-shrink: 0;
	cursor: pointer;
	background: url("../img/menu-icon.svg") center / 40px no-repeat;
	transition: opacity .3s ease-out;
}
.menu-button:hover {
	opacity: 0.72;
}
.header-wrap.active .menu-button {
	background-image: url("../img/close-menu-icon.svg");
}
.intro {
	position: relative;
	display: block;
	width: 100%;
	padding-bottom: 57.5%;
	min-height: 540px;
	margin-top: 84px;
	background: url('../img/intro-img.jpg') bottom center / cover no-repeat;
}
.intro__content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	max-width: 680px;
	text-align: center;
	padding: 84px 20px;
}
.intro__title {
	font-family: "Freeride";
	font-size: 120px;
	font-style: normal;
	font-weight: 400;
	line-height: 120px;
	letter-spacing: 2.4px;
	text-transform: uppercase;
	margin-bottom: 20px;
}
.intro__text {
	font-size: 18px;
	line-height: 24px; 
}
.intro__mob-text {
	display: none;
}
.about-block {
	display: flex;
	flex-direction: row-reverse;
	align-items: flex-start;
	justify-content: space-between;
	padding: 100px 0 120px;
}
.about-block__content {
	margin-top: 36px;
	width: 48%;
	width: calc(50% - 16px);
}
.about-block__img {
	display: block;
	width: 48%;
	width: calc(50% - 16px);
}
.about-block__title {
	margin-bottom: 32px;
}
.about-block__subtitle {
	font-size: 18px;
	font-weight: 400;
	line-height: 24px;
}

.about-block__subtitle_sb {
	font-weight: 600;
}
.about-block__content p {
	margin-bottom: 24px;
}
.about-block__content p:last-child {
	margin-bottom: 0;
}
.about-block__content a, .material-block__content a {
	color: inherit;
}
.material-block {
	margin-bottom: 64px;
}
.material-block__images {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-gap: 32px;
}
.material-block__img {
	width: 100%;
	height: auto;
}
.material-block__content {
	width: 100%;
	max-width: 460px;
	text-align: center;
	margin: 32px auto 0;
}
.material-block__title {
	font-family: "Freeride";
	font-size: 64px;
	font-weight: 400;
	line-height: 64px;
	margin-bottom: 32px;
}
.material-block__content p, .tales-block__text p {
	margin-bottom: 24px;
}
.material-block__content p:last-child, .tales-block__text p:last-child {
	margin-bottom: 0;
}
.index-full-img {
	display: block;
	width: 100%;
	margin-bottom: 120px;
}
.tales-block {
	margin-bottom: 120px;
}
.tales-block__title {
	text-align: center;
	margin-bottom: 32px;
}
.tales-block__text {
	width: 100%;
	max-width: 640px;
	text-align: center;
	margin: 0 auto 64px;
}
.tales-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-gap: 32px;
	align-items: flex-start;
}
.tale-card {
	display: block;
	text-decoration: none;
}
.tale-card__img {
	position: relative;
	display: flex;
	border-radius: 8px;
	overflow: hidden;
	margin-bottom: 16px;
	width: 100%;
}

.tale-card__img img {
	width: 100%;
	height: auto;
}

.tale-card__shader {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 8px;
	opacity: 0;
	background: rgba(17, 17, 17, 0.40) url('../img/tale-icon.svg') center / 56px no-repeat;
	transition: opacity .3s ease-out;
}
.tale-card:hover .tale-card__shader {
	opacity: 1;
}
.tale-card__title {
	font-size: 18px;
	font-weight: 600;
	line-height: 24px; 
	color: #111;
	margin-bottom: 4px;
}
.tale-card__subtitle {
	font-size: 16px;
	line-height: 24px; 
	color: #555;
}
.tales-grid-white .tale-card__title {
	color: #fff;
}
.tales-grid-white .tale-card__subtitle {
	color: #868686;
}
.footer {
	padding-bottom: 80px;
}
.footer-block {
	border-top: 1px solid #111;
	font-size: 16px;
	font-weight: 500;
	line-height: 20px; 
	color: #333;
	padding-top: 23px;
}
.tale-img {
	display: block;
	width: 100%;
	padding-bottom: 57.5%;
	background: bottom center / cover no-repeat;
}
.tale-page {
	padding: 48px 0 120px;
}
.tale-page__title {
	text-align: center;
	margin-bottom: 16px;
}
.tale-page__subtitle {
	font-size: 24px;
	font-weight: 600;
	line-height: 32px;
	letter-spacing: 0.48px;
	text-transform: uppercase;
	text-align: center;
	margin-bottom: 40px;
}
.audio-block {
	width: 100%;
	max-width: 640px;
	min-height: 218px;
	background: url('../img/audio-bg.svg') center / contain no-repeat;
	padding: 16px 40px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-align: center;
	margin: 0 auto 32px;
}
.audio-block:last-child {
	margin-bottom: 0;
}
.audio-block__title {
	font-size: 18px;
	font-weight: 600;
	line-height: 24px;
	margin-bottom: 12px;
}
.audio-block__file {
	margin-bottom: 8px;
}
.audio-block__subtitle {
	font-size: 14px;
	line-height: 20px;
	color: #555;
	text-align: center;
}
.audioplayer {
	display: flex;
	align-items: center;
	position: relative;
}
.audioplayer-playpause {
	margin-right: 24px;
}
.audioplayer-playpause a {
	width: 56px;
	height: 56px;
	font-size: 0;
	border-radius: 100%;
	border: 1px solid rgba(17, 17, 17, 0.2);
	display: block;
	content: "";
	color: transparent;
	background: center / 20px no-repeat;
	transition: all 0s;
}
.audioplayer-stopped .audioplayer-playpause a {
	background-image: url("../img/icon-audio-play.svg");
}
.audioplayer-playing .audioplayer-playpause a {
	background-image: url("../img/icon-audio-pause.svg");
}
.audioplayer-volume {
	display: none;
}
.audioplayer-bar {
	width: 100%;
	height: 4px;
	background-color: rgba(17, 17, 17, 0.08);
	border-radius: 2px;
	margin-top: 20px;
	position: relative;
}
.audioplayer-bar div {
	height: 4px;
}
.audioplayer-time {
	position: absolute;
	top: 10px;
	font-size: 14px;
	line-height: 20px;
	color: #555;
}
.audioplayer-time-current {
	left: 80px;
}
.audioplayer-time-duration {
	right: 0;
}
.audioplayer-bar-loaded {
	background-color: rgba(17, 17, 17, 0.08);
	position: absolute;
	z-index: 0;
	border-radius: 2px;
}
.audioplayer-bar-played {
	background-color: #111;
	position: absolute;
	z-index: 0;
	border-radius: 2px;
}
.audioplayer-bar-played::after {
	content: "";
	display: none;
	width: 16px;
	height: 16px;
	border-radius: 100%;
	background-color: #111;
	cursor: pointer;
	position: absolute;
	right: -8px;
	top: -6px;
}
.audioplayer-playing .audioplayer-time-current {
	color: #111;
}
.audioplayer-playing .audioplayer-bar-played::after {
	display: block;
}

.header-wrap.active .intro {
	margin-top: 0 !important;
}

.header-menu__about {
	width: fit-content;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 44px;
	border: 1px solid rgba(255, 255, 255, 0.20);
	padding: 16px 32px;
	font-size: 32px;
	font-style: normal;
	font-weight: 500;
	line-height: 36px;
	color: #FFF;
	margin: 0 0 40px;
	text-decoration: none;
}

.header-menu__about svg {
	margin-left: 8px;
}

.header-menu__about:hover {
	background: #fff;
	border-color: #fff;
	color: #111;
}

.header-menu__about:hover path {
	stroke: #111111;
}

.view-about {
	width: fit-content;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 44px;
	border: 1px solid #111;
	padding: 16px 32px 16px 20px;
	font-size: 32px;
	font-style: normal;
	font-weight: 500;
	line-height: 36px;
	color: #111;
	margin: 164px 0 48px;
	text-decoration: none;
}

.view-about svg {
	margin-right: 8px;
}

.view-about:hover {
	background: #111;
	color: #FFF;
}

.view-about:hover path {
	stroke: white;
}

.view-container {
	display: flex;
	align-items: flex-start;
	margin-bottom: 120px;
}

.view-img {
	border-radius: 24px;
	overflow: hidden;
	margin-right: 80px;
	flex: none;
}

.view-img img {
	width: 592px;
	height: 592px;
}

.view-title {
	display: block;
	font-family: "Freeride";
	font-size: 80px;
	font-style: normal;
	font-weight: 400;
	line-height: 80px;
	color: #111;
	margin-bottom: 32px;
}

.view-subtitle {
	display: block;
	font-size: 24px;
	font-style: normal;
	font-weight: 600;
	line-height: 32px;
	letter-spacing: 0.48px;
	text-transform: uppercase;
	margin-bottom: 64px;
}

.view-container__right {
	width: 100%;
}



@media only screen and (max-width: 1200px) {   
	.view-img {
		margin-right: 40px;
	}
}
@media only screen and (max-width: 1024px) {   
	.about-block {
		align-items: flex-start;
	} 
}

@media only screen and (max-width: 1000px) {   
	.view-container {
		flex-direction: column;
		align-items: center;
	}
	
	.view-img {
		max-width: 100%;
		margin-right: 0;
		margin-bottom: 56px;
	}
	
	.view-title, .view-subtitle {
		text-align: center;
		
	}
	
	.view__container {
		max-width: 576px;
	}
	
	.view-title {
		font-size: 48px;
		font-style: normal;
		font-weight: 400;
		line-height: 48px;
		margin-bottom: 16px;
	}
	
	.view-subtitle {
		font-size: 16px;
		font-style: normal;
		font-weight: 600;
		line-height: 20px;
		margin-bottom: 32px;
	}
	
	.audio-block {
		margin-bottom: 24px;
	}
	
	.view-about {
		padding: 12px 24px 12px 16px;
		margin: 112px 0 32px;
		font-size: 21px;
		font-style: normal;
		font-weight: 500;
		line-height: 24px; 
	}
	
	.view-container {
		margin-bottom: 80px;
	}
}
@media only screen and (max-width: 768px) {
	.header {
		height: 64px;
	}
	.header__logo-default {
		display: none;
	}
	.header__logo-mobile {
		display: block;
	}
	.menu-button {
		width: 44px;
		height: 44px;
		background-size: 24px;
	}
	.header-wrap.active .header__logo-mobile {
		display: none;
	}
	.header-wrap.active .header__logo-mobile {
		display: block;
	}
	.header-menu {
		padding: 112px 0 64px;
	}
	.footer {
		padding-bottom: 64px;
	}
	.footer-block {
		padding-top: 19px;
	}
	.page-title, .section-title {
		font-size: 48px;
		line-height: 48px;
	}
	.intro, .tale-img {
		padding-bottom: 60.5%;
	}
	.intro {
		min-height: unset;
		margin-top: 64px;
	}
	.intro__content {
		padding-top: 64px;
		padding-bottom: 64px;
		max-width: 574px;
	}
	.intro__title {
		font-size: 72px;
		line-height: 72px;
		letter-spacing: normal;
		margin-bottom: 8px;
	}
	.intro__text {
		display: block;
		font-size: 14px;
		line-height: 20px;
		max-width: 418px;
		margin: 0 auto;
	}
	.about-block {
		display: block;
		/* margin: 48px 0 64px; */
		padding: 48px 0 64px;
	}
	.about-block__img {
		float: right;
		width: calc(50% - 10px);
		margin-bottom: 32px;
	}
	.about-block__content {
		width: 100%;
		margin-top: 0;
	}
	.about-block__title {
		margin-bottom: 24px;
	}
	.about-block__subtitle, .about-block p {
		font-size: 14px;
		line-height: 20px;
		margin-bottom: 16px;
	}
	.material-block__images {
		grid-gap: 20px;
	}
	.material-block__content {
		margin-top: 16px;
	}
	.material-block__title {
		font-size: 40px;
		line-height: 40px;
		margin-bottom: 24px;
	}
	.material-block__content p {
		font-size: 14px;
		line-height: 20px;
		margin-bottom: 16px;
	}
	.index-full-img {
		margin-bottom: 64px;
	}
	.material-block {
		margin-bottom: 32px;
	}
	.tales-block__title {
		margin-bottom: 24px;
	}
	.tales-block__text {
		max-width: 534px;
		margin-bottom: 48px;
	}
	.tales-grid {
		grid-template-columns: repeat(2, 1fr);
		grid-gap: 40px 20px;
	}
	.tale-card__shader {
		display: none;
	}
	.tales-block {
		margin-bottom: 80px;
	}
	.tale-page {
		padding: 32px 0 80px;
	}
	.tale-page__subtitle {
		font-size: 16px;
		line-height: 20px;
		margin-bottom: 32px;
	}
	.audio-block {
		max-width: 535px;
		min-height: 182px;
		padding: 12px 32px;
		margin-bottom: 24px;
	}
	.audio-block__title {
		margin-bottom: 8px;
	}
	.audio-block__file {
		margin-bottom: 4px;
	}
	.audioplayer-playpause {
		margin-right: 12px;
	}
	.audioplayer-playpause a {
		width: 40px;
		height: 40px;
		background-size: 14px;
	}
	.audioplayer-time {
		top: 6px;
		font-size: 10px;
		line-height: 12px;
	}
	.audioplayer-time-current {
		left: 52px;
	}
	.audioplayer-bar {
		margin-top: 12px;
	}
	
	.header-menu__about {
		padding: 12px 24px;
		font-size: 21px;
		line-height: 24px;
		margin-bottom: 32px;
	}
	
	.header-menu__about svg {
		margin-left: 4px;
		width: 20px;
		height: 20px;
	}
	
	.view-img {
		margin-bottom: 48px;
	}
	
	.view-img img {
		width: 100%;
		max-width: 536px;
		height: auto;
	}
}
@media (max-width:680px){
	.intro__text {
		display: none;
	}
	.intro__mob-text {
		display: block;
		font-size: 14px;
		line-height: 20px;
		text-align: center;
		margin-top: 20px;
	}
	.intro__title {
		margin-bottom: 0;
	}
}
@media only screen and (max-width: 480px) {
	.page-title {
		font-size: 40px;
		line-height: 40px;
	}
	
	.section-title {
		font-size: 48px;
		line-height: 48px;
		text-align: center;
	}
	
	.intro, .tale-img {
		padding-bottom: 78%;
	}
	.intro__title {
		font-size: 52px;
		line-height: 52px;
	}
	.about-block {
		display: flex;
		flex-direction: column-reverse;
	}
	.about-block__content {
		width: 100%;
		margin-bottom: 16px;
	}
	.about-block__img {
		width: 100%;
		margin: 0;
	}
	
	.tales-grid {
		grid-template-columns: 1fr;
		grid-gap: 32px 16px;
	}
	.tale-page {
		padding: 24px 0 64px;
	}
	.tale-page__subtitle {
		margin-bottom: 24px;
	}
	.audio-block {
		max-width: 328px;
		min-height: 126px;
		padding: 8px 20px;
		margin-bottom: 16px;
	}
	.audio-block__title {
		font-size: 14px;
		line-height: 20px;
		margin-bottom: 0;
	}
	.audio-block__file {
		margin-bottom: 0;
	}
	.audio-block__subtitle {
		font-size: 10px;
		line-height: 12px;
	}
	.tales-block__text {
		margin-bottom: 32px;
	}
	
	.view-title {
		font-size: 40px;
		font-style: normal;
		font-weight: 400;
		line-height: 40px;
	}
	
	.view-container {
		margin-bottom: 64px;
	}
	
	.about-block {
		padding-bottom: 59px;
	}
	
	.material-block__images {
		grid-template-columns: repeat(2, 1fr);
		grid-gap: 16px;
	}
	
	.view-about svg {
		margin-right: 4px;
	}
}