@font-face {
	font-family: 'Cumulus';
	src:url('fonts/Cumulus.otf') format('opentype');
}

@font-face {
	font-family: 'Cumulus';
	src:url('fonts/Stratocumulus.otf') format('opentype');
	font-weight:bold;
}

* {
	margin: 0;
	padding: 0;
	font-family: 'Cumulus';
	font-size: 16px;
}

a {
	color: black;
	font-size: unset;
	text-decoration: none;
	opacity: 0.5;
}

a:hover {
	opacity: 1;
}

main {
	width: 800px;
	display: flex;
	flex-wrap: wrap;
}

section {
	width: 50%;
	padding-bottom: 30px;
}

section:nth-of-type(1) {
	width: 100%;
	padding-bottom: 0px;
}

section p {
	margin:0px 10px 0px 10px;
}

section:nth-of-type(2) p {
	margin:0px 10px 20px 10px;
}

section:first-of-type p {
	margin:10px;
}


section h1 {
	margin: 10px 10px -20px;
	font-size: 59px;
	text-align: center;
}

section:nth-of-type(3) h1 {
	font-size: 24px;
	margin: 0px 0px 20px;
}

section h2 {
	font-weight: normal;
	margin: 15px 150px 40px;
	font-size: 20px;
	text-align: center;
}

section:nth-of-type(3) h1 {
	line-height: 24px;
}


p#prod {
	text-align: center;
}

/*bg img*/

div.imgs-bg img {
	display: none;
	width: 200px;
	position: fixed;
	z-index: -1;
	top: 50vh;
	left: 50vw;
	transform: translate(-50%, -50%);
}

/*billboard*/
.billboard {
	top: 0;
	column-count: 6;
	column-width: calc(100vw / 6);
	position: fixed;
	height: 100vh;
	overflow: hidden;
	z-index: -2;
}

.billboard p span {
	font-size: 10pt;
	padding: 10px 0px;
	font-family: Times New Roman;
	opacity: 0.15;
}

.billboard p span {
	display: block;
}

.billboard p span:nth-of-type(2) {
	padding-left: 30px;
}

.billboard p span:nth-of-type(3) {
	padding-left: 60px;
}

/*radio*/

audio {
	display: none;
}

section article {
	margin:10px 0px;
	width: 100%;
	margin-bottom: 40px;
	text-align: center;
}

section p.btn, section p.play {
	cursor: pointer;
}

section p.btn {
	text-align: center;
}

section p.play {
	text-transform: uppercase;
	margin-bottom: 0;
}

audio + p {
	margin-top: 0;
}


section p.more {
	overflow: hidden;
	transition-duration: 0.5s;
	transition-property: max-height;
	max-height: 0;
	text-align: left;
}

.mb-plus {
	display: none;
}

iframe {
	position: fixed;
	top: 20px;
	right: 10px;
	width: calc(100vw - 820px);
}

@media screen and (max-width: 1024px) {
	* {
		font-size: 45px;
	}


	main {
		width: 100%;
	}


	iframe {
		position: absolute;
		top: 610px;
		right: initial;
		left: 40px;
		width: calc(100vw - 80px);
		height: 40%;
		z-index: 0;

	}

	section:first-of-type {
		padding-bottom: 50vh;
	}

	section {
		width: 100%;
	}

	section h1 {
		margin: 40px 0px -10px;
		font-size: 100px;
		line-height: 90px;
	}

	section h2 {
		margin: 15px 10px 70px;
		font-size: 50px;
	}

	.mb-plus {
		display: block;
		text-align: center;
		width: 100%;
		margin: 5px 0 40px;
	}

	section p {
		margin: 0px 30px 0px 30px;
	}


	section:nth-of-type(2) {
		max-height: 130px;
		overflow: hidden;
		transition-duration: 1s;
		transition-property: max-height;
	}

	section:nth-of-type(2) p {
		margin: 0px 30px 20px 30px;
	}

	section:nth-of-type(2) p:first-of-type {
		display: -webkit-box;
		-webkit-line-clamp: 3;
		-webkit-box-orient: vertical;
	}

	section:nth-of-type(2) p:first-of-type.unshortened {
		display: block;
		-webkit-line-clamp: none;
		-webkit-box-orient: vertical;
	}

	section:nth-of-type(3) h1 {
		font-size: 70px;
		line-height: 60px;
		margin-top: 140px;
	}

	section article {
		margin: 100px 0;
	}

	.billboard {
		column-count: 3;
		column-width: calc(100vw / 3);
	}

	.billboard p span {
		font-size: 30px;
	}

}