/*
Theme Name: Starweave
Author: Fivement
Author URI: https://www.fivement.com/
Description: An wordpress theme for Starweave Entertainment.
Version: 1.0.0
Text Domain: starweave
*/

@font-face {
	font-family: 'Pretendard';
	font-weight: 700;
	font-display: swap;
	src: local('Pretendard Bold'), url('fonts/Pretendard-Bold.subset.woff2') format('woff2'), url('fonts/Pretendard-Bold.subset.woff') format('woff');
}
@font-face {
	font-family: 'Pretendard';
	font-weight: 400;
	font-display: swap;
	src: local('Pretendard Regular'), url('fonts/Pretendard-Regular.subset.woff2') format('woff2'), url('fonts/Pretendard-Regular.subset.woff') format('woff');
}

/*--- Reset ---*/

* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-webkit-tap-highlight-color: rgba(0,0,0,0);
}
*:before,
*:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
:root {
	--line-thickness: 1px;
	--container-max-width: 1800px;
}
html,body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,input,textarea,p,blockquote,th,td,figure,img { 
	margin: 0; 
	padding: 0; 
}
html { 
	width: 100%; 
	height: 100%; 
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
}
body {
	background-color: #000;
	color: #000;
	font-family: 'Pretendard', sans-serif;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.428;
	width: 100%;
	min-width: 100% !important;
	height: 100%;
}

@media (max-width: 600px) {
	:root {
		--line-thickness: 1px;
	}
	body {
		font-size: 13px;
	}
}

a {
	color: inherit;
	text-decoration: none;
}
p {
	font-size: 16px;
	line-height: 1.8;
}
p + p {
	margin-top: 20px;
}
li {
	list-style: none;
}

h1, h2, h3, h4 {
	word-break: keep-all;
}
h1 {
	font-size: 60px;
	line-height: 1.25;
}
h2 {
	font-size: 35px;
	line-height: 1.25;
}
h3 {
	font-size: 26px;
	line-height: 1.25;
}
h4 {
	font-size: 20px;
}

@media (max-width: 1100px) {
	h1 {
		font-size: 50px
	} 
	h2 {
		font-size: 26px
	} 
	h3 {
		font-size: 20px;
	}
	p + p {
		margin-top: 15px;
	}
}

@media (max-width: 900px) {
	h1 {
		font-size: 40px
	}
	h2 {
		font-size: 24px
	} 
	h3 {
		font-size: 18px;
	}
	p {
		font-size: 14px;
	}
}

@media (max-width: 600px) {
	h1 {
		font-size: 30px;
	}
	h3 {
		font-size: 16px;
	}
	p {
		text-align: justify;
	}
}

.site-header {
	position: fixed;
	
	z-index: 999;
	
}
.site-header .header-wrapper {
	width: 100%;
	max-width: var(--container-max-width);
	position: relative;
}
.site-header .site-logo {
	position: absolute;
	top: 35px;
	left: 45px;
	width: 130px;
	transition: opacity 0.6s ease-out, transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.site-header .site-logo .path {
	fill: #000;
}

.scroll-down .site-header .site-logo {
	opacity: 0;
	transform: translateY(-10px);
	transition: opacity 0.2s ease-out, transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

@media (max-width: 1100px) {
	.site-header .site-logo {
		top: 22px;
		left: 30px;
		width: 120px;
	}
}


@media (max-width: 600px) {
	.site-header .site-logo {
		top: 15px;
		left: 20px;
		width: 100px;
	}
}

.site-nav {
	position: fixed;
	width: 100%;
	z-index: 999;
}
.site-nav .nav-wrapper {
	width: 100%;
	max-width: var(--container-max-width);
	position: relative;
}
.site-nav .nav-content {
	background-color: #000;
	color: #f0f0f0;
	position: absolute;
	top: 0;
	right: 0;
	overflow: hidden;
	white-space: nowrap;
	width: 100px;
	height: 100vh;
}
.site-nav .nav-logo {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	transform: translateX(500%);
	transition: transform 0.1s linear 0.6s;
	z-index: 98;
}
.site-nav .nav-logo .home-link {
	display: block;
	width: 46px;
	height: 46px;
	opacity: 0;
	padding: 10px;
	position: absolute;
	transform: scale(0.8);
	transition: opacity 0.2s ease-out, transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
	top: 32px;
	z-index: 98;
}
.scroll-down .site-nav .nav-logo {
	transform: none;
	transition: none;
}
.scroll-down .site-nav .nav-logo .home-link {
	opacity: 1;
	transform: scale(1);
	transition: opacity 0.6s ease-out, transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.site-nav .nav-logo .path {
	fill: var(--page-primary-color, #f7f7f7);
}

.site-nav .site-menu {
	transform: translateY(0);
	transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.scroll-down .site-nav .site-menu {
	transform: translateY(55px);
}

.site-nav .menu {
	display: flex;
	transform: translateY(-50px) rotate(90deg);
	transform-origin: 0 80px;
	position: relative;
	z-index: 99;
}
.site-nav .menu .menu-item {
	font-weight: 700;
	opacity: 0.6;
	transition: opacity 0.3s ease-out;
}
.site-nav .menu .menu-item:hover {
	opacity: 0.8;
}
.site-nav .menu .current-menu-item,
.site-nav .menu .current-page-ancestor {
	color: var(--page-primary-color);
	opacity: 1;
}
.site-nav .menu .menu-item a {
	display: block;
	font-size: 14px;
	padding: 20px;
}

.container {
	width: 100%;
	max-width: var(--container-max-width);
	margin: 0 auto;
	position: relative;
}
.container::before {
	background-color: #000;
	content: '';
	width: var(--line-thickness);
	height: 100%;
	position: absolute;
	top: 0;
	left: -1px;
}

.site-main {
	width: calc(100% - 100px);
}

@media (max-width: 1100px) {
	.site-nav .nav-logo .home-link {
		width: 44px;
		height: 44px;
	}
	.site-nav .menu .menu-item a { 
		font-size: 13px;
	}
}

@media (max-width: 900px) {
	.site-nav .nav-content {
		width: 70px;
	}
	.site-nav .nav-logo .home-link {
		top: 22px;
	}
	.scroll-down .site-nav .site-menu {
		transform: translateY(45px);
	}
	.site-nav .menu {
		transform: translateY(-30px) rotate(90deg);
		transform-origin: 0 50px;
	}
	.site-nav .menu .menu-item a {
		padding: 5px 15px;
	}
	.site-main {
		width: calc(100% - 70px);
	}
}

@media (max-width: 600px) {
	.site-nav .nav-content {
		width: 50px;
	}
	.site-nav .nav-logo .home-link {
		top: 12px;
		width: 40px;
		height: 40px;
	}
	.scroll-down .site-nav .site-menu {
		transform: translateY(40px);
	}
	.site-nav .menu {
		transform: translateY(-20px) rotate(90deg);
		transform-origin: 0 33px;
	}
	.site-nav .menu .menu-item a {
		font-size: 11px;
		padding: 0 10px;
	}
	.site-main {
		width: calc(100% - 50px);
	}
}

.site-footer {
	background-color: var(--page-primary-color, #f7f7f7);
	border-top: var(--line-thickness) solid #000;
	padding: 25px 45px;
	position: relative;
	transform: translate3d(0, calc(var(--line-thickness) * -1), 0);
	width: calc(100% - 100px);
	z-index: 9;
}
.site-footer .outer-margin {
	display: flex;
	justify-content: space-between;
}
.site-footer .copyright {
	font-size: 10px;
}

@media (min-width: 901px) {
	.home .site-footer {
		border: none;
		padding: 0;
		position: relative;
	}
	.home .site-footer .copyright {
		position: absolute;
		bottom: 25px;
		left: 50px;
		z-index: 2;
	}
}

@media (max-width: 900px) {
	.site-footer {
		padding: 20px 35px;	
		width: 100%;
	}
}

@media (max-width: 600px) {
	.site-footer {
		padding: 20px;
	}
	.site-footer .copyright {
		font-size: 9px;
	}
}

/*--- Home ---*/

.home-wrapper {
	display: flex;
	height: auto;
}
.home .hero-section {
	width: calc(100% - 500px);
	height: calc(var(--vh, 1vh) * 100);
	position: sticky;
	top: 0;
}
.home .hero-section .cover-video {
	background-size: cover;
	background-position: center;
	width: 100%;
	height: 100%;
	position: relative;
	overflow: hidden;
}
.home .hero-section .cover-video .video {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate3d(-50%,-50%,0);
	height: 100%;
	width: 177.77777778vh;
	min-width: 100%;
	min-height: 56.25vw;
}

@media (max-width: 1100px) {
	.home-wrapper {
		flex-direction: column;
	}
	.home .hero-section {
		width: 100%;
		position: relative;
	}
}

/*--- News ---*/

.news-section {
	background-color: #f7f7f7;
}
.news-section .tiles-wrapper > div {
	display: flex;
	flex-wrap: wrap;
}
.news-section .news-tile {
	background-color: #f7f7f7;
	color: #fff;
	width: 100%;
	padding-top: 100%;
	position: relative;
}
.news-section .news-tile.no-cover-image {
	color: #000;
}
.news-section .news-tile .tile-cover,
.news-section .news-tile .tile-content {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.news-section .news-tile .tile-cover {
	background-size: cover;
	background-position: center;
}
.news-section .news-tile .tile-link {
	display: block;
	width: 100%;
	height: 100%;
	padding: 50px;
}
.news-section .news-tile .tile-link.hide-title .headline,
.news-section .news-tile .tile-link.hide-title .date {
	opacity: 0;
}

.news-section .date {
	display: inline-block;
	opacity: 0.4;
	margin-top: 10px;
}
.home .news-section {
	width: 500px;
}
.home .news-section .date {
	display: none;
}

.no-results {
	padding: 50px;
}
.no-results p {
	font-weight: 700;
	opacity: 0.2;
}

.load-more-button {
	display: none;
}

@media (max-width: 1100px) {
	.home .news-section {
		width: 100%;
	}
	.news-section .news-tile .tile-link {
		padding: 40px;
	}
}

@media (max-width: 600px) {
	.news-section .news-tile {
		width: 100%;
	}
	.news-section .news-tile.has-cover {
		padding-top: 60%;
	}
	.news-section .news-tile .tile-link {
		padding: 22px;
	}
}

@media (min-width: 601px) and (max-width: 900px), (min-width: 1201px) {
	.archive .news-section .news-tile {
		width: 50%;
		padding-top: 50%;
	}
}

@media (max-width: 600px), (min-width: 901px) and (max-width: 1200px) {
	.archive .news-section .news-tile.no-cover-image {
		padding-top: 0;
	}
	.archive .news-section .news-tile.no-cover-image .tile-content {
		position: relative;
		height: auto;
	}
}

@media (min-width: 601px) and (max-width: 1100px) {
	.home .news-section .news-tile {
		width: 50%;
		padding-top: 50%;
	}
}

@media (max-width: 600px), (min-width: 1101px) {
	.home .news-section .news-tile.no-cover-image {
		padding-top: 0;
	}
	.home .news-section .news-tile.no-cover-image .tile-content {
		position: relative;
		height: auto;
	}
}

@media (max-width: 600px) {
	.news-section .news-tile {
		width: 100%;
	}
	.news-section .news-tile.has-cover {
		padding-top: 60%;
	}
}

@media (max-width: 450px) {
	.news-section .news-tile.has-cover {
		padding-top: 100%;
	}
}

/*--- Tiles ---*/

.tiles {
	background-color: var(--page-primary-color);
	display: grid;
	gap: 0;
}
.tiles-max-3 {
	grid-template-columns: repeat(3, 1fr);
}
.tiles-max-4 {
	grid-template-columns: repeat(4, 1fr);
}
.tiles::after {
	background-color: #000;
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: var(--line-thickness);
}
.tiles .tile-item {
	position: relative;
}

@media (min-width: 1801px) {
	.tiles-max-3 .tile-item:nth-child(3n) .side-line,
	.tiles-max-4 .tile-item:nth-child(4n) .side-line {
		display: none;
	}
}

@media (max-width: 1800px) {
	.tiles-max-3 {
		grid-template-columns: repeat(2, 1fr);
	}
	.tiles-max-4 {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (min-width: 1401px) and (max-width: 1800px) {
	.tiles-max-3 .tile-item:nth-child(2n) .side-line,
	.tiles-max-4 .tile-item:nth-child(3n) .side-line {
		display: none;
	}
}

@media (max-width: 1200px) {
	.tiles-max-4 {
		grid-template-columns: repeat(2, 1fr);
	}
	.tiles-max-4 .tile-item:nth-child(2n) .side-line {
		display: none;
	}
}

@media (max-width: 600px) {
	.tiles-max-3 {
		grid-template-columns: repeat(1, 1fr);
	}
	.tiles-max-3 .tile-item .side-line {
		display: none;
	}
}


.animate {
	position: relative;
}
.animate-line {
	background-color: #000;
	position: absolute;
	transition: transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
	z-index: 9;
}
.top-line,
.bottom-line {
	left: 0;
}
.top-line,
.bottom-line {
	width: 100%;
	height: var(--line-thickness);
	transform: scale(0,1);
	transform-origin: left center;
}
.side-line {
	width: var(--line-thickness);
	height: 100%;
	transform: scale(1,0);
	transform-origin: left top;
	top: 0;
	right: calc((var(--line-thickness) / 2) * -1);
}
.top-line {
	top: 0;
}
.bottom-line {
	bottom: 0;
}
.animated .top-line,
.animated .bottom-line,
.animated .side-line {
	transform: scale(1,1);
}

.animated .index-1 {
	transition-delay: 0.12s;
}
.animated .index-2 {
	transition-delay: 0.24s;
}
.animated .index-3 {
	transition-delay: 0.36s;
}
.animated .index-4 {
	transition-delay: 0.48s;
}
.animated .index-5 {
	transition-delay: 0.6s;
}
.animated .index-6 {
	transition-delay: 0.72s;
}
.animated .index-7 {
	transition-delay: 0.84s;
}
.animated .index-8 {
	transition-delay: 0.96s;
}
.animated .index-9 {
	transition-delay: 1.08s;
}
.animated .index-10 {
	transition-delay: 1.2s;
}
.animated .index-11 {
	transition-delay: 1.32s;
}
.animated .index-12 {
	transition-delay: 1.44s;
}
.animated .index-13 {
	transition-delay: 1.56s;
}
.animated .index-14 {
	transition-delay: 1.68s;
}
.animated .index-15 {
	transition-delay: 1.8s;
}

.animate-block {
	opacity: 0;
	transform: translate(0, 30px);
	transition: opacity 1.2s cubic-bezier(0.25, 1, 0.5, 1), transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}
.animated .animate-block {
	opacity: 1;
	transform: translate(0, 0);
}

@media (max-width: 600px) {
	.section .column .side-line {
		width: 100%;
		height: var(--line-thickness);
		transform: scale(0,1);
		transform-origin: left center;
		top: auto;
		right: auto;
		left: 0;
		bottom: 0;
	}
	.section.animated .column .side-line {
		transform: scale(1,1);
	}
}

.home .hero .side-line {
	right: 0;
}

@media (max-width: 1100px) {
	.home .hero .side-line {
		width: 100%;
		height: var(--line-thickness);
		transform: scale(0,1);
		transform-origin: left center;
		top: auto;
		right: auto;
		left: 0;
		bottom: 0;
	}
	.home .hero.animated .side-line {
		transform: scale(1,1);
	}
}

/*--- Artist (Group) ---*/

.section {
	position: relative;
}
.section.has-columns {
	display: flex;
}
.section .column {
	width: 50%;
	position: relative;
}
.section .column > div {
	position: relative;
}
.section .section-header {
	position: relative;
}
.section .outer-margin {
	padding: 23px 45px;
}
.section .section-header .outer-margin {
	padding-top: 60px;
}

.page-nav .back-button {
	font-weight: 700;
	position: relative;
	padding-left: 20px;
}
.page-nav .back-button::before {
	content: '';
	border-top: 2px solid #000;
	border-left: 2px solid #000;
	display: block;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%) rotate(-45deg);
	width: 10px;
	height: 10px;
}

@media (max-width: 1100px) {
	.section .outer-margin {
		padding: 20px 35px;
	}
	.section .section-header .outer-margin {
		padding-top: 50px;
	}
}

@media (max-width: 900px) {
	.section .outer-margin {
		padding: 20px 30px;
	}
	.section .section-header .outer-margin {
		padding-top: 35px;
	}
}

@media (max-width: 600px) {
	.section {
		flex-direction: column;
	}
	.section .outer-margin {
		padding: 15px 20px;
	}
	.section .column {
		width: 100%;
	}
	.section .column + .column {
		width: 100%;
	}
}

.artist-group .container {
	background-color: var(--page-primary-color);
}
.artist-group .hero {
	height: calc(var(--vh, 1vh) * 100);
}
.artist-group .hero .hero-image {
	background-size: cover;
	background-position: center;
	width: 100%;
	height: 100%;
	transition: opacity 2s lincubic-bezier(0.33, 1, 0.68, 1), transform 2.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.artist-group .manifesto {
	display: flex;
}
.artist-group .manifesto .artist-logo {
	background-color: var(--page-primary-color);
	display: flex;
	align-items: center;
	padding: 15px 0;
}
.artist-group .manifesto .artist-logo .logo-image {
	display: block;
	width: 100%;
	height: auto;
}
.artist-group .manifesto .artist-info {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.artist-group .manifesto .copy {
	background-color: var(--page-secondary-color);
	height: calc(100% - 72px);
	font-weight: 700;
	padding: 15px 0;
}
.artist-group .manifesto .copy .outer-margin {
	height: 100%;
}
.artist-group .manifesto .media-links {
	background-color: var(--page-tertiary-color);
	height: 72px;
}

@media (max-width: 1100px) {
	.artist-group .manifesto .copy {
		height: calc(100% - 66px);
	}
	.artist-group .manifesto .media-links {
		height: 66px;
	}
}

@media (max-width: 900px) {
	.artist-group .manifesto .copy {
		height: calc(100% - 54px);
	}
	.artist-group .manifesto .media-links {
		height: 54px;
	}
}

@media (max-width: 900px) {
	.artist-group .hero {
		height: 0;
		padding-top: 130%;
	}
	.artist-group .hero .hero-image {
		position: absolute;
		top: 0;
		left: 0;
	}
}

.member-portrait {
	overflow: hidden;
	position: relative;
}
.member-portrait img {
	display: block;
	width: 100%;
	height: auto;
}
.member-portrait .profile-image {
	background-color: #dfdfdf;
	/* background-image: url('images/profile-placeholder.png'); */
	background-size: cover;
	background-position: top center;
	background-repeat: no-repeat;
	width: 100%;
	padding-top: 120%;
}
.artist-group .members .member-profile {
	background-color: var(--page-primary-color);
}
.member-profile .outer-margin {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

@media (max-width: 600px) {
	.member-profile .outer-margin {
		flex-direction: column;
		align-items: flex-start;
	}
	.member-profile .member-name {
		margin-bottom: 5px;
	}
}

.artist-group .videos {
	background-color: var(--page-secondary-color);
	border-top: none !important;
}

.artist-group .videos .swiper {
	width: 100%;
	overflow: hidden;
	position: relative;
}
.artist-group .videos .video-wrapper {
	position: relative;
	width: 100%;
	height: 0;
	padding-top: 56.25%;
	overflow: hidden;
}
.artist-group .videos .video-wrapper iframe {
	border: none;
	outline: none;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	min-width: auto;
	min-height: auto;
	z-index: 1;
}
.artist-group .videos .video-wrapper .play-button {
	border: var(--line-thickness) solid #000;
	border-radius: 50%;
	cursor: pointer;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	transition: opacity 0.3s ease-out, transform 0.1s linear 0.3s;
	width: 100px;
	height: 100px;
	z-index: 3;
}
.artist-group .videos .video-wrapper .play-button::after {
	content: 'PLAY';
	display: block;
	font-size: 17px;
	font-weight: 700;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.artist-group .videos .video-wrapper .video-cover {
	background-size: cover;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	transition: opacity 0.3s ease-out, transform 0.1s linear 0.3s;
	z-index: 2;
}

.artist-group .videos .video-wrapper.is-playing .play-button,
.artist-group .videos .video-wrapper.is-playing .video-cover {
	opacity: 0;
	transform: translateX(100%);
}

.artist-group .videos .swiper-button {
	width: 40px;
	height: 40px;
	outline: none;
	position: absolute;
	top: 50%;
	transform: translate(0, -50%);
	z-index: 9;
}
.artist-group .videos .swiper-button::after {
	content: '';
	display: block;
	border-top: 3px solid #000;
	border-right: 3px solid #000;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 16px;
	height: 16px;
}
.artist-group .videos .swiper-button-disabled {
	opacity: 0.1;
	z-index: 8;
}
.artist-group .videos .swiper-prev {
	left: 0;
}
.artist-group .videos .swiper-prev::after {
	transform: translate(-50%, -50%) rotate(-135deg);
	margin-left: 4px;
}
.artist-group .videos .swiper-next {
	right: 0;
}
.artist-group .videos .swiper-next::after {
	transform: translate(-50%, -50%) rotate(45deg);
	margin-left: -4px;
}

.artist-group .videos-thumb {
	padding: 10px 40px;
}
.artist-group .videos-thumb .video-thumbnail {
	padding: 10px;
}
.artist-group .videos-thumb .video-thumbnail img {
	border: var(--line-thickness) solid #000;
}
.artist-group .videos-thumb .swiper-slide {
	opacity: 0.5;
}
.artist-group .videos-thumb .swiper-slide-thumb-active {
	opacity: 1;
}

@media (max-width: 600px) {
	.artist-group .videos .swiper-button::after {
		border-top-width: 2px;
		border-right-width: 2px;
		width: 12px;
		height: 12px;
	}
	.artist-group .videos-thumb {
		padding: 4px 40px;
	}
	.artist-group .videos-thumb .video-thumbnail {
		padding: 4px;
	}
}

.artist-group .discography {
	background-color: var(--page-tertiary-color);
}
.artist-group .discography .album-cover {
	overflow: hidden;
	position: relative;
}
.artist-group .discography .album-cover .cover-image {
	display: block;
	width: 100%;
	height: auto;
}
.artist-group .discography .album-info .album-name {
	margin-bottom: 7px;
}

/*--- Album ---*/

.album-main {
	background-color: var(--page-primary-color);
	display: flex;
}

.album .cover-section {
	width: 50%;
	padding-top: 130px;
	position: relative;
}
.album .cover {
	position: sticky;
	top: 0;
}
.album .cover .top-line {
	top: -2px;
}
.album .cover img {
	display: block;
	width: 100%;
	height: auto;
}
.album .info-section {
	background-color: var(--page-secondary-color);
	width: 50%;
}
.album .album-info {
	display: flex;
	align-items: center;
	height: 128px;
}
.album .album-info .outer-margin {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
}
.album .album-info .album-meta {
	font-weight: 700;
	text-align: right;
}
.album .tracklist .track-item.title-track {
	background-color: var(--page-tertiary-color);
}
.album .tracklist .track-item .track-info {
	display: flex;
	justify-content: space-between;
	margin-bottom: 10px;
}
.album .tracklist .track-item .track-info h4 {
	display: inline-block;
}
.album .tracklist .track-item .track-info .track-number {
	margin-right: 20px;
}
.album .tracklist .track-item .participants {
	font-size: 12px;
	opacity: 0.4;
}
.album .description {
	padding: 20px 0;
}
.album .media-links {
	height: 66px;
}
.album .media-links a {
	width: 36px;
	height: 36px;
}

@media (max-width: 1100px) {
	.album.media-links {
		height: 60px;
	}
}

@media (max-width: 900px) {
	.album-main {
		flex-direction: column;
	}
	.album .cover-section {
		width: 100%;
		padding-top: 90px;
	}
	.album .cover-section .side-line {
		display: none;
	}
	.album .info-section {
		border-left: none;
		width: 100%;
	}
	.album .album-info {
		height: 100px;
	}
	.album .description {
		padding: 10px 0;
	}
	.album .media-links {
		height: 54px;
	}
	.album .media-links a {
		width: 28px;
		height: 28px;
	}
}

@media (max-width: 600px) {
	.album .cover-section {
		padding-top: 75px;
	}
	.album .album-info {
		height: auto;
		padding: 10px 0;
	}
	.album .album-info .outer-margin {
		flex-direction: column;
		align-items: flex-start;
	}
	.album .album-info .album-meta {
		text-align: left;
		margin-top: 10px;
	}
}

/*--- Media Links ---*/

.media-links {
	overflow: hidden;
}
.media-links .outer-margin {
	display: flex;
	align-items: center;
	height: 100%;
	padding-top: 0;
	padding-bottom: 0;
	margin: 0 -10px;
}
.media-links a {
	background-color: transparent;
	background-image: url('images/media-icons-sprite.png');
	background-size: 2000% 100%;
	background-position: -500% 0;
	border-radius: 6px;
	color: #000;
	display: block;
	font-size: 0;
	text-indent: -9999px;
	padding: 0;
	margin-right: 12px;
	width: 40px;
	height: 40px;
	transition: background-color 0.2s ease-out;
}
.media-links a:hover {
	background-color: rgba(0,0,0,0.05);
}
.media-links a::after {
	display: none;
}
.media-links a[href*="instagram"] {
	background-position-x: 0;
}
.media-links a[href*="twitter"] {
	background-position-x: -100%;
}
.media-links a[href*="facebook"] {
	background-position-x: -200%;
}
.media-links a[href*="tiktok"],
.media-links a[href*="douyin"] {
	background-position-x: -300%;
}
.media-links a[href*="cafe"],
.media-links a[href*="www.kimdongjun.co.kr"] {
	background-position-x: -400%;
}
.media-links a[href*="youtube"] {
	background-position-x: -500%;
}
.media-links a[href*="vlive"] {
	background-position-x: -600%;
}
.media-links a[href*="post.naver"] {
	background-position-x: -700%;
}
.media-links a[href*="weibo"] {
	background-position-x: -800%;
}
.media-links a[href*="giphy"] {
	background-position-x: -900%;
}
.media-links a[href*="snapchat"] {
	background-position-x: -1000%;
}
.media-links a[href*="melon"] {
	background-position-x: -1100%;
}
.media-links a[href*="vibe.naver"] {
	background-position-x: -1200%;
}
.media-links a[href*="bugs"] {
	background-position-x: -1300%;
}
.media-links a[href*="genie"] {
	background-position-x: -1400%;
}
.media-links a[href*="music-flo"] {
	background-position-x: -1500%;
}
.media-links a[href*="music.apple"] {
	background-position-x: -1600%;
}
.media-links a[href*="spotify"] {
	background-position-x: -1700%;
}
.media-links a[href*="soribada"] {
	background-position-x: -1800%;
}
.media-links a[href*="music.youtube"] {
	background-position-x: -1900%;
}

@media (max-width: 900px) {
	.media-links a {
		width: 30px;
		height: 30px;
	}
}

/*--- Artists ---*/

.artist .container,
.artists .container {
	background-color: #f7f7f7;
}
.artists .group-header {
	position: relative;
}
.artists .artist-group .group-header h1 {
	margin-top: 30px;
}
.artists .artist-group.actors .group-header h1 {
	margin-top: 130px;
}

@media (max-width: 900px) {
	.artists .artist-group .group-header h1 {
		margin-top: 20px;
	}
	.artists .artist-group.actors .group-header h1 {
		margin-top: 90px;
	}
}

@media (max-width: 600px) {
	.artists .artist-group.actors .group-header h1 {
		margin-top: 70px;
	}
}

.artist-main {
	display: flex;
}
.artist-main .cover-section {
	width: 50%;
	min-height: 100vh;
	position: relative;
}
.artist-main .cover-section .cover-image {
	position: sticky;
	top: 0;
	width: 100%;
	height: 100vh;
}
.artist-main .cover-section .cover-image .image {
	background-size: cover;
	background-position: top center;
	width: 100%;
	height: 100%;
	transition: opacity 2s lincubic-bezier(0.33, 1, 0.68, 1), transform 2.5s cubic-bezier(0.25, 1, 0.5, 1);
}
.artist-main .content-section {
	width: 50%;
	min-height: 100vh;
}
.artist-main .section .outer-margin {
	padding-top: 30px;
	padding-bottom: 30px;
}
.artist-main .profile-block {
	position: relative;
}
.artist-main .profile-block p {
	font-weight: 600;
}
.artist-main .profile-block ul {
	margin-top: 10px;
}
.artist-main .profile-block ul li {
	padding: 2px 0;
	line-height: 1.8;
}
.artist-main .profile-block ul li .year {
	display: block;
	font-size: 11px;
	line-height: 1.3;
	opacity: 0.4;
}
.artist-main .profile-block ul li + li .year {
	margin-top: 3px;
}
.artist-main .profile-block:last-child .bottom-line {
	display: none;
}

@media (max-width: 900px) {
	.artist-main {
		display: flex;
		flex-wrap: wrap;
	}
	.artist-main .cover-section {
		width: 100%;
	}
	.artist-main .content-section {
		width: 100%;
	}
	.artist-main .section .outer-margin {
		padding-top: 20px;
		padding-bottom: 20px;
	}
}

/*--- News ---*/

.page-main {
	background-color: #f7f7f7;
	display: flex;
	min-height: 100vh;
}
.page-main .title-section {
	width: 500px;
}
.page-main .title-section .outer-margin {
	height: 100%;
	padding: 100px 45px 0;
	position: relative;
}
.page-main .title-section .back-to-list {
	display: inline-block;
	font-size: 16px;
	font-weight: 700;
	margin-bottom: 20px;
	position: relative;
	padding-left: 15px;
}
.page-main .title-section .back-to-list::before {
	content: '';
	border-top: 2px solid #000;
	border-left: 2px solid #000;
	display: block;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%) rotate(-45deg);
	margin-top: -1px;
	width: 10px;
	height: 10px;
}
.page-main .title-section .post-info {
	padding-top: 50px;
	position: sticky;
	top: 0;
}
.page-main .title-section .post-meta {
	display: inline-block;
	opacity: 0.4;
	margin-top: 20px;
}
.page-main .title-section + [class*="section"] {
	width: calc(100% - 500px);
}
.page-main .content-section {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding-top: 150px;
}
.page-main .content-section.has-top-image {
	padding-top: 0;
}
.page-main .content-section p {
	max-width: 690px;
	margin-left: auto;
	margin-right: auto;
	padding: 0 45px;
}
.page-main .content-section .image-block {
	position: relative;
}
.page-main .content-section .image-block .wp-block-image {
	margin: 0;
}
.page-main .content-section *:not(.image-block) + .image-block {
	margin-top: 45px;
}
.page-main .content-section .image-block + *:not(.image-block) {
	margin-top: 45px;
}
.page-main .content-section .news-link {
	display: inline-block;
	font-size: 14px;
	font-weight: 700;
	padding-right: 15px;
	position: relative;
}
.page-main .content-section .news-link::before,
.page-main .content-section .news-link::after {
	content: '';
	display: block;
	position: absolute;
	right: 0;
}
.page-main .content-section .news-link::before {
	border-top: 2px solid #000;
	width: 10px;
	height: 1px;
	transform: rotate(-45deg);
	top: 13px;
}
.page-main .content-section .news-link::after {
	border-top: 2px solid #000;
	border-right: 2px solid #000;
	width: 8px;
	height: 8px;
	top: 9px;
}

.page-main .content-section .page-nav {
	display: flex;
	flex-wrap: wrap;
	margin-top: 60px;
}
.page-main .content-section .page-nav .post-block {
	display: block;
	width: 50%;
	font-weight: 700;
	position: relative;
	padding: 30px 45px;
}

@media (max-width: 1100px) {
	.page-main .title-section,
	.page-main .title-section + [class*="section"] {
		width: 50%;
	}
	.page-main .title-section .outer-margin {
		padding: 80px 30px 60px;
	}
	.page-main .title-section .post-meta {
		margin-top: 15px;
	}
	.page-main .content-section {
		padding-top: 120px;
	}
	.page-main .content-section p {
		padding: 0 30px;
		max-width: 560px;
	}
	.page-main .content-section *:not(.image-block) + .image-block {
		margin-top: 30px;
	}
	.page-main .content-section .image-block + *:not(.image-block) {
		margin-top: 30px;
	}
	.page-main .content-section .page-nav .post-block {
		padding: 25px 30px;
	}
	
	.single-post .page-main .title-section .post-info {
		max-width: 500px;
		margin: 0 auto;
	}
}

@media (max-width: 900px) {
	.page-main {
		flex-direction: column;
	}
	.page-main .title-section,
	.page-main .title-section + [class*="section"] {
		width: 100%;
	}
	.page-main .title-section .outer-margin {
		padding: 60px 30px 30px;
	}
	.page-main .title-section .side-line {
		width: 100%;
		height: var(--line-thickness);
		transform: scale(0,1);
		transform-origin: left center;
		top: auto;
		right: auto;
		left: 0;
		bottom: 0;
	}
	.page-main .title-section.animated .side-line {
		transform: scale(1,1);
	}
	.page-main .content-section {
		padding-top: 60px;
	}
}

@media (max-width: 600px), (min-width: 901px) and (max-width: 1200px) {
	.page-main .content-section .page-nav {
		flex-direction: column;
	}
	.page-main .content-section .page-nav .post-block {
		width: 100%;
	}
	.page-main .content-section .page-nav .post-block .side-line {
		width: 100%;
		height: var(--line-thickness);
		transform: scale(0,1);
		transform-origin: left center;
		top: auto;
		right: auto;
		left: 0;
		bottom: 0;
	}
	.page-main .content-section .page-nav.animated .post-block .side-line {
		transform: scale(1,1);
	}
}

@media (max-width: 600px) {
	.page-main .title-section .outer-margin {
		padding: 35px 20px 20px;
	}
	.page-main .title-section .post-meta {
		margin-top: 10px;
	}
	.page-main .content-section {
		padding-top: 30px;
		padding-bottom: 0;
	}
	.page-main .content-section p {
		padding: 0 20px;
	}
	.page-main .content-section .page-nav {
		margin-top: 30px;
	}
	.page-main .content-section .page-nav .post-block {
		padding: 20px;
	}
}

/*--- Audition ---*/

.audition .apply-audition .outer-margin {
	padding: 55px 45px 45px;
	position: relative;
}
.audition .apply-audition .outer-margin h1 {
	font-size: 45px;
	line-height: 1.15;
}
.audition .apply-audition .outer-margin p {
	margin-top: 20px;
}

.audition .gform_wrapper.gravity-theme .gfield {
	padding: 10px 45px;
}
.audition .gform_wrapper.gravity-theme .gsection {
	border-top: 1px solid #000;
	border-bottom: none;
	padding: 45px 45px 0;
	margin: 15px 0 0;
}
.audition .gform_wrapper.gravity-theme .gsection:first-child {
	border-top: none;
	margin-top: 0;
}
.audition .gform_wrapper.gravity-theme .gsection h3 {
	font-size: 16px;
}
.audition .gform_wrapper.gravity-theme .gfield_label {
	opacity: 0.5;
	font-size: 14px;
	font-weight: 400;
}
.audition .gform_wrapper.gravity-theme .gfield_required {
	display: none;
}
.audition .gform_wrapper.gravity-theme .gfield input.large, 
.audition .gform_wrapper.gravity-theme .gfield input.datepicker,
.audition .gform_wrapper.gravity-theme .gfield textarea.large,
.audition .gform_wrapper.gravity-theme .gfield select.large {
	background-color: transparent;
	border: 1px solid #cdcdcd;
	border-radius: 0;
	outline: none;
	padding: 12px;
	width: 100%;
	max-height: 110px;
}
.audition .gform_wrapper.gravity-theme .gfield input.large:focus, 
.audition .gform_wrapper.gravity-theme .gfield input.datepicker:focus,
.audition .gform_wrapper.gravity-theme .gfield textarea.large:focus,
.audition .gform_wrapper.gravity-theme .gfield select.large:focus {
	border-color: #000;
}

.audition .gfield_checkbox,
.audition .gfield_radio {
	display: flex;
	justify-content: space-between;
}
.audition .gfield_checkbox .gchoice,
.audition .gfield_radio .gchoice {
	width: calc(50% - 5px);
}
.audition .gfield_checkbox .gchoice + .gchoice,
.audition .gfield_radio .gchoice + .gchoice {
	margin-left: 5px;
}
.audition .gfield_checkbox .gchoice input[type="checkbox"],
.audition .gfield_radio .gchoice input[type="radio"] {
	display: none;
}
.audition .gfield_checkbox .gchoice label,
.audition .gfield_radio .gchoice label {
	border: 1px solid #cdcdcd;
	cursor: pointer;
	display: block;
	margin: 0;
	padding: 10px 12px 10px 30px;
	position: relative;
	width: 100%;
	max-width: 100% !important;
}
.audition .gfield_checkbox .gchoice label::before,
.audition .gfield_radio .gchoice label::before {
	content: '';
	display: block;
	position: absolute;
}
.audition .gfield_checkbox .gchoice label::before,
.audition .gfield_radio .gchoice label::before {
	width: 10px;
	height: 6px;
	border-left: 1px solid #cdcdcd;
	border-bottom: 1px solid #cdcdcd;
	top: calc(50% - 1px);
	left: 12px;
	transform: translateY(-50%) rotate(-45deg);
}
.audition .gfield_checkbox .gchoice input[type="checkbox"]:checked + label,
.audition .gfield_radio .gchoice input[type="radio"]:checked + label {
	border-color: #000;
	background-color: #000;
	color: #fff;
}
.audition .gfield_checkbox .gchoice input[type="checkbox"]:checked + label::before,
.audition .gfield_radio .gchoice input[type="radio"]:checked + label::before {
	border-color: #fff;
}

.audition .gform_wrapper.gravity-theme .gform_fileupload_rules {
	display: none;
}
.audition .gform_wrapper .gfield_description {
	font-size: 13px !important;
	line-height: 1.65 !important;
	margin: 10px 0;
	white-space: pre-wrap;
}

.privacy-policy {
	display: none;
}
.audition .apply-audition .animated .privacy-policy {
	border: 1px solid #cdcdcd;
	display: block;
	overflow: auto;
	padding: 20px;
	margin-bottom: 15px;
	height: 150px;
}
.audition .apply-audition .privacy-policy p {
	font-size: 13px;
}
.audition .apply-audition .privacy-policy p + p {
	margin-top: 5px;
}

.audition .gform_wrapper.gravity-theme .gform_footer {
	padding: 12px 45px 45px;
	margin: 0;
}
.audition .gform_wrapper.gravity-theme .gform_footer .gform_button {
	-webkit-appearance: none;
	background-color: #000;
	border: none;
	border-radius: 0;
	color: #fff;
	font-size: 14px;
	padding: 15px;
	text-align: center;
	width: 100%;
}

.audition .gform_confirmation_message {
	padding: 45px;
}
.audition .gform_confirmation_message br + br {
	display: none;
}

@media (max-width: 1200px) {
	.audition .apply-audition .outer-margin h1 br {
		display: none;
	}
}

@media (min-width: 901px) {
	.audition .title-section .side-line {
		transition-duration: 5s;
	}
	.audition.scroll-down .title-section .side-line {
		transition: none;
	}
}

@media (max-width: 900px) {
	.audition .apply-audition .outer-margin {
		padding: 30px;
	}
	.audition .apply-audition .outer-margin h1 {
		font-size: 35px;
	}
	.audition .gform_wrapper.gravity-theme .gfield {
		padding: 10px 30px;
	}
	.audition .gform_wrapper.gravity-theme .gsection {
		padding: 30px 30px 0;
		margin: 20px 0 0;
	}
	.audition .gform_wrapper.gravity-theme .gform_footer {
		padding: 10px 30px 30px;
	}
	.audition .gform_confirmation_message {
		padding: 30px;
	}
}

@media (max-width: 600px) {
	.audition .apply-audition .outer-margin {
		padding: 30px 20px;
	}
	.audition .apply-audition .outer-margin h1 {
		font-size: 30px;
	}
	.audition .apply-audition .outer-margin p {
		margin-top: 12px;
	}
	.audition .gform_wrapper.gravity-theme .gfield {
		padding: 5px 20px;
	}
	.audition .gform_wrapper.gravity-theme .gsection {
		padding: 30px 20px 0;
		margin: 20px 0 0;
	}
	.audition .gform_wrapper.gravity-theme .gfield input.large, 
	.audition .gform_wrapper.gravity-theme .gfield input.datepicker,
	.audition .gform_wrapper.gravity-theme .gfield textarea.large,
	.audition .gform_wrapper.gravity-theme .gfield select.large {
		padding: 7px 12px;
	}
	.audition .gfield_checkbox,
	.audition .gfield_radio {
		flex-direction: column;
	}
	.audition .gfield_checkbox .gchoice,
	.audition .gfield_radio .gchoice {
		width: 100%;
	}
	.audition .gfield_checkbox .gchoice + .gchoice, 
	.audition .gfield_radio .gchoice + .gchoice {
		margin-left: 0;
		margin-top: 7px;
	}
	.audition .gform_wrapper.gravity-theme .gform_footer {
		padding: 10px 20px 20px;
	}
	.audition .gform_confirmation_message {
		padding: 30px 20px;
	}
}

.audition .gform_wrapper .gform_validation_errors {
	border-width: 1px;
	border-radius: 0;
	box-shadow: none;
	margin: 30px 45px 0;
	width: calc(100% - 90px);
}
.audition .gform_wrapper .gfield_validation_message,
.audition .gform_wrapper .validation_message {
	border: none;
	background: transparent;
	padding: 0 !important;
	font-size: 13px !important;
}

.audition .gform-theme-datepicker:not(.gform-legacy-datepicker) {
	border-color: #cdcdcd;
	border-radius: 0;
	margin: 0;
	padding: 15px;
	box-shadow: none;
	transform: translateY(-3px);
}
.audition .ui-datepicker:not(.gform-legacy-datepicker) .ui-datepicker-title {
	display: flex;
	align-items: center;
	flex-direction: row-reverse;
	height: 28px;
}
.audition .gform-theme-datepicker:not(.gform-legacy-datepicker) .ui-datepicker-header select {
	background-size: 16px;
	color: #000;
	padding-right: 16px;
}
.audition .gform-theme-datepicker:not(.gform-legacy-datepicker) .ui-datepicker-header select.ui-datepicker-month {
	margin-right: 0;
}
.gform-theme-datepicker:not(.gform-legacy-datepicker) .ui-datepicker-header .ui-datepicker-next, 
.gform-theme-datepicker:not(.gform-legacy-datepicker) .ui-datepicker-header .ui-datepicker-prev {
	
}
.audition .gform-theme-datepicker:not(.gform-legacy-datepicker) .ui-datepicker-calendar td {
	width: 40px;
	height: 40px;
}
.audition .gform-theme-datepicker:not(.gform-legacy-datepicker) .ui-datepicker-calendar th span,
.audition .gform-theme-datepicker:not(.gform-legacy-datepicker) .ui-datepicker-calendar .ui-state-default {
	color: #000;
	width: 30px;
	height: 30px;
}
.audition .gform-theme-datepicker:not(.gform-legacy-datepicker) .ui-datepicker-calendar .ui-state-disabled .ui-state-default {
	background: transparent;
	border: none;
	box-shadow: none;
	color: #cdcdcd;
	width: 30px;
	height: 30px;
}

.audition .gform_fileupload_multifile .button {
	-webkit-appearance: none;
	background-color: #000;
	border: none;
	border-radius: 0;
	color: #fff;
	padding: 8px 12px;
}

.audition .gform_wrapper.gravity-theme #field_1_33 {
	padding-top: 0;
	transform: translateY(-10px);
}
.audition .gform_wrapper.gravity-theme .gfield select.large {
	-webkit-appearance: none;
	color: #000;
}

/*--- Notice ---*/

.notice-tile .tile-header {
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 45px;
	position: relative;
}
.notice-tile .tile-header .date {
	opacity: 0.4;
}
.notice-tile .tile-content {
	height: 0;
	overflow: hidden;
}
.notice-tile.is-active .tile-content {
	height: var(--article-height);
}
.notice-tile .tile-content article {
	border-bottom: 1px solid #000;
	padding: 45px;
}
.notice-tile .tile-content article em {
	color: #e51c23;
	font-style: normal;
}
.notice-tile .tile-content article p,
.notice-tile .tile-content article ul li {
	font-size: 14px;
	line-height: 1.8;
}
.notice-tile .tile-content article p.has-medium-font-size {
	font-size: 15px !important;
	font-weight: 700;
	margin-top: 30px;
}
.notice-tile .tile-content article ul {
	margin: 20px 0;
}
.notice-tile .tile-content article ul li {
	padding-left: 12px;
	position: relative;
}
.notice-tile .tile-content article ul li::before {
	content: '-';
	position: absolute;
	top: 0;
	left: 0;
}

@media (max-width: 900px) {
	.notice-tile .tile-header,
	.notice-tile .tile-content article {
		padding: 30px;
	}
}

@media (max-width: 600px) {
	.notice-tile .tile-header,
	.notice-tile .tile-content article {
		padding: 20px;
	}
	.notice-tile .tile-header {
		flex-direction: column;
		align-items: flex-start;
	}
	.notice-tile .tile-header .date {
		font-size: 13px;
		margin-top: 5px;
	}
}

/*--- About ---*/

.about-main {
	background-color: #f7f7f7;
}

.about .about-background {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}
.about .about-background .video-container {
  position: relative;
  width: 100%;
  height: 100%; 
  overflow: hidden;
  z-index: 1;
}
.about .about-background .video-container .video {
  min-width: 100%; 
  min-height: 100%;
  width: auto;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}

.about .section {
	position: relative;
	z-index: 9;
}
.about .headline {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100vh;
	padding: 0 20px;
}
.about .headline.is-fixed {
	position: fixed;
	top: 0;
	left: 0;
}
.about .headline h1 {
	color: #f7f7f7;
	font-size: 70px;
	line-height: 1.1;
	text-transform: uppercase;
	width: 100%;
	max-width: 700px;
}
.about .headline span {
	display: inline-block;
}
.about .headline strong {
	display: inline-block;
	white-space: pre-wrap;
}
.about .manifesto .copy-block {
	display: flex;
	justify-content: center;
	opacity: 0;
	padding: 0 40px;
	position: fixed;
	top: 50vh;
	left: 0;
	transform: translateY(60px);
	width: calc(100% - 100px);
	transition: opacity 0.9s cubic-bezier(0.25, 1, 0.5, 1), transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}
.about .manifesto .copy-block.no-transition {
	transition: none !important;
}
.about .manifesto .copy-block.is-revealed {
	opacity: 1;
	transform: translateY(0);
}
.about .manifesto .copy {
	width: 100%;
	max-width: 700px;
}
.about .manifesto .copy p {
	color: #f7f7f7;
	font-size: 18px;
	font-weight: 700;
}
.about .manifesto .lon-music-logo {
	display: block;
	width: 20%;
	max-width: 80px;
	height: auto;
	margin-bottom: 20px;
}
.about .manifesto .company-info p + p {
	margin-top: 0;
}
.about .manifesto .company-info p .label {
	display: inline-block;
	margin-right: 15px;
}

@media (max-width: 1100px) {
	.about .headline h1 {
		font-size: 60px;
	}
	.about .manifesto .copy p {
		font-size: 16px;
	}
}

@media (max-width: 900px) {
	.about .headline h1 {
		font-size: 50px;
	}
	.about .manifesto .copy-block {
		width: calc(100% - 70px);
	}
	.about .manifesto .copy p {
		font-size: 15px;
	}
}

@media (max-width: 600px) {
	.about .headline h1 {
		font-size: 45px;
	}
	.about .manifesto .copy-block {
		width: calc(100% - 50px);
	}
	.about .manifesto .copy p {
		font-size: 14px;
	}
	.about .manifesto .company-info p .label {
		display: block;
		opacity: 0.6;
	}
}

.about .map {
	border-top: 1px solid #000;
	height: 50vh;
	display: flex;
	position: relative;
}
.about .map iframe {
	border: none;
	outline: none;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}