@import url('https://fonts.googleapis.com/css2?family=National+Park:wght@200..800&family=Staatliches&display=swap');

body {
	font-family: 'Aceh', sans-serif;
	font-optical-sizing: auto;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #f9f9f9;
    color: #fafafa;
	font-size: 16px;
}

ul, li {
	list-style: none;
	margin: 0;
	padding: 0;
}

h1 {
	font-size: 24px;
	font-weight: 800;
}

h2 {
	font-size: 48px;
}

h3 {
	font-size: 38px;
    color: #000;
    font-weight: 800;
}

h4 {
	font-size: 32px;
}

a { text-decoration: none; }
h1, h2, h3, h4, h5 { margin: 0; padding: 0; }
p { margin: 0; padding: 0; }

.mobile-menu {
	display: none;
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 100001;
	background-color: #fff;
	padding: 30px;
	overflow-y: auto;
}

.mobile-menu.show {
	display: block;
}

.mobile-menu ul li {
	display: block;
}

#nav-icon2 {
	display: none;
	position: fixed;
	right: 30px;
	top: 25px;
	width: 25px;
	height: 25px;
	transition: .5s ease-in-out;
	cursor: pointer;
	z-index: 100005;
}

#nav-icon2 span {
	display: block;
	position: absolute;
	height: 4px;
	width: 50%;
	background-color: #fff;
	opacity: 1;
	transition: .25s ease-in-out;
}

#nav-icon2.open span {
	background-color: #001233;
}

#nav-icon2 span:nth-child(even) {
	left: 50%;
	border-radius: 0 3px 3px 0;
}

#nav-icon2 span:nth-child(odd) {
	left: 0px;
	border-radius: 3px 0 0 3px;
}

#nav-icon2 span:nth-child(1), #nav-icon2 span:nth-child(2) {
	top: 0px;
}

#nav-icon2 span:nth-child(3), #nav-icon2 span:nth-child(4) {
	top: 8px;
}

#nav-icon2 span:nth-child(5), #nav-icon2 span:nth-child(6) {
	top: 16px;
}

#nav-icon2.open span:nth-child(1),#nav-icon2.open span:nth-child(6) {
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
}

#nav-icon2.open span:nth-child(2),#nav-icon2.open span:nth-child(5) {
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

#nav-icon2.open span:nth-child(1) {
	left: 6px;
	top: 8px;
}

#nav-icon2.open span:nth-child(2) {
	left: calc(50% - 6px);
	top: 8px;
}

#nav-icon2.open span:nth-child(3) {
	left: -50%;
	opacity: 0;
}

#nav-icon2.open span:nth-child(4) {
	left: 100%;
	opacity: 0;
}

#nav-icon2.open span:nth-child(5) {
	left: 6px;
	top: 8px;
}

#nav-icon2.open span:nth-child(6) {
	left: calc(50% - 6px);
	top: 8px;
}

/* HEADER */

header {
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	z-index: 10001;
}

header .wrapper {
	display: flex;
	align-items: center;
	padding-top: 15px;
	padding-bottom: 15px;
}

header .logo {
	width: 70px;
}

header .wrapper .logo img {
	width: 100%;
}

header .wrapper nav {
	margin-left: auto;
}

header .wrapper nav ul {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
}

header .wrapper nav ul li {
	position: relative;
}

header .wrapper nav ul li a {
	display: block;
	padding: 5px 10px;
	border-radius: 7px;
	text-decoration: none;
	font-weight: 600;
    color: #fff;
	transition: .2s;
}

header .wrapper nav ul li a:not(.btn):hover {
	background-color: #edfff1;
	color: #2db34a;
}

header .wrapper nav ul li a.btn {
    padding: 8px 20px;
}

/* HERO */

.hero {
	background: radial-gradient(circle at 30% 20%, #1e1e2f, #141414 70%);
	background: linear-gradient(135deg, #0f0f1a 0%, #1b1b2e 40%, #101010 100%);
	min-height: 650px;
	height: 90vh;
}

.hero .wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 650px;
	height: 90vh;
}

.app {
	max-width: 650px;
	width: 100%;
	margin: 0 auto;
	text-align: center;
}

.app h1 {
	margin-bottom: 30px;
	font-size: 65px;
	font-weight: 600;
	color: #fff;
}

.app p {
	font-size: 18px;
	color: #fafafa;
	max-width: 65%;
	margin: 0 auto;
}

.app p.desc {
	font-size: 16px;
	color: #5b5b82;
}

.app .step {
	display: none;
}

.app .input {
	position: relative;
	max-width: 65%;
	margin: 0 auto;
}

.app .input input {
	display: block;
	width: 100%;
	background-color: rgba(255, 255, 255, .1);
	box-shadow: 0 0 6px rgba(255,255,255,0.08), 0 0 6px rgba(255,255,255,0.06);
	border: 1px solid rgba(255, 255, 255, .10);
	height: 55px;
	padding: 10px 20px;
	border-radius: 35px;
	color: #fff;
}

.app .input button {
	position: absolute;
	right: 4px;
	top: 4px;
	bottom: 4px;
	border: 0;
	border-radius: 35px;
	background-image: url(https://suno.com/auras-v2/aura_horizontal.jpg);
    background-size: cover;
    background-position: 50% 50%;
    transition: background 1s ease-in-out;
	color: #fff;
	font-weight: 600;
	padding: 0 20px;
}

.app .step-loading {
	display: none;
}

.app .app-options {
	display: flex;
	flex-direction: column;
	gap: 15px;
	max-width: 70%;
	margin: 0 auto;
}

.app .app-options .item a {
	display: flex;
	gap: 10px;
	align-items: center;
	justify-content: center;
	border: 1px dashed rgba(255, 255, 255, .2);
	padding: 10px 20px;
	border-radius: 35px;
	background-color: rgba(255, 255, 255, .05);
	box-shadow: 0 0 6px rgba(255,255,255,0.08), 0 0 6px rgba(255,255,255,0.1);
	font-weight: 600;
}

.app .app-options .item a i {
	position: relative;
	top: 1px;
	font-style: normal;
	font-size: 30px;
	padding-right: 10px;
}

.lds-roller,
.lds-roller div,
.lds-roller div:after {
	box-sizing: border-box;
}

.lds-roller {
	display: inline-block;
	position: relative;
	width: 80px;
	height: 80px;
}

.lds-roller div {
	animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
	transform-origin: 40px 40px;
}

.lds-roller div:after {
	content: " ";
	display: block;
	position: absolute;
	width: 7.2px;
	height: 7.2px;
	border-radius: 50%;
	background: #fff;
	margin: -3.6px 0 0 -3.6px;
}

.lds-roller div:nth-child(1) {
	animation-delay: -0.036s;
}

.lds-roller div:nth-child(1):after {
	top: 62.62742px;
	left: 62.62742px;
}

.lds-roller div:nth-child(2) {
	animation-delay: -0.072s;
}

.lds-roller div:nth-child(2):after {
	top: 67.71281px;
	left: 56px;
}

.lds-roller div:nth-child(3) {
	animation-delay: -0.108s;
}

.lds-roller div:nth-child(3):after {
	top: 70.90963px;
	left: 48.28221px;
}

.lds-roller div:nth-child(4) {
	animation-delay: -0.144s;
}

.lds-roller div:nth-child(4):after {
	top: 72px;
	left: 40px;
}

.lds-roller div:nth-child(5) {
	animation-delay: -0.18s;
}

.lds-roller div:nth-child(5):after {
	top: 70.90963px;
	left: 31.71779px;
}

.lds-roller div:nth-child(6) {
	animation-delay: -0.216s;
}

.lds-roller div:nth-child(6):after {
	top: 67.71281px;
	left: 24px;
}

.lds-roller div:nth-child(7) {
	animation-delay: -0.252s;
}

.lds-roller div:nth-child(7):after {
	top: 62.62742px;
	left: 17.37258px;
}

.lds-roller div:nth-child(8) {
	animation-delay: -0.288s;
}

.lds-roller div:nth-child(8):after {
	top: 56px;
	left: 12.28719px;
}

@keyframes lds-roller {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

.bg-1 {
	background-color: #1b1b2e;
}

.musics {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
	gap: 30px;
}

.musics .item {
}

.musics .item h4 {
	font-size: 18px;
	font-weight: 600;
}

.audio-preview {
	position: relative;
	height: 300px;
	border: 1px solid rgba(255,255,255,.1);
	margin-bottom: 15px;
	padding: 15px;
	background-color: #0a0a1e;
	border-radius: 18px;
}

.audio-preview .play {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	z-index: 2;
	display: flex;
	align-items: center;
	flex-direction: column;
}

.audio-preview .play a {
	display: block;
	padding: 5px 10px;
	background-color: rgba(255, 255, 255, .1);
	border-radius: 10px;
	color: #fff;
	font-weight: 600;
	font-size: 14px;
	text-transform: uppercase;
}

.audio-preview .play audio {
	display: block;
	width: 200px;
	margin-top: 10px;
}

.form-space {
	position: relative;
	margin-bottom: 20px;
}

.form-space:last-child {
	margin-bottom: 0px;
}

.form-space label {
	font-weight: 500;
	color: #333446;
	margin-bottom: 15px;
	font-size: 16px;
	text-align: center;
}

.form-space input {
	display: block;
	width: 100%;
	border: 0;
	padding: 15px 20px;
	background-color: #fff;
	border: 1px solid #ddd;
	border-radius: 10px;
	box-shadow: 0 5px 15px 0 rgb(0 0 0 / 10%);
}

/* FOOTER */

footer {
    background-color: #0f0f1a;
	color: #fff;
	padding-top: 30px;
}

footer h5 {
	font-weight: 600;
	font-size: 18px;
}

footer .footer-bottom {
	padding-top: 30px;
	padding-bottom: 30px;
	color: #fafafa;
}

footer .footer-bottom .wrapper {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
}

footer .footer-bottom .wrapper ul {
	display: flex;
	align-items: center;
	gap: 20px;
	flex-wrap: wrap;
}

footer .footer-bottom .wrapper ul li a {
	color: #fff;
	font-weight: 500;
	text-decoration: none;
}

footer .footer-bottom .wrapper ul li a:hover {
	color: #2db34a;
}

footer .socials {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 50px;
}

footer .socials a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	border: 2px solid #000;
	border-radius: 5px;
	color: #000;
	text-decoration: none;
	opacity: .5;
	transition: .3s;
}

footer .socials a:hover {
	opacity: 1;
}

footer .socials a i {
	position: relative;
	top: 2px;
	font-size: 25px;
	line-height: 25px;
}

footer ul li a {
	color: #fff;
}

.p50 { padding: 50px !important; }
.pt50 { padding-top: 50px !important; }
.pt100 { padding-top: 100px !important; }
.pt150 { padding-top: 150px !important; }
.pb50 { padding-bottom: 50px !important; }
.pb100 { padding-bottom: 100px !important; }
.pb150 { padding-bottom: 150px !important; }
.mb30 { margin-bottom: 30px !important; }
.mb50 { margin-bottom: 50px !important; }
.mb20 { margin-bottom: 20px !important; }
.mt20 { margin-top: 20px !important; }
.mt30 { margin-top: 30px !important; }
.mt50 { margin-top: 50px !important; }
.g-6 { --bs-gutter-x: 4rem; }

@media (min-width: 0px) and (max-width: 991px) {
	
	#nav-icon2 {
		display: block;
	}
	
	header .wrapper nav {
		display: none;
	}
	
	header .wrapper .logo {
		width: 50px;
	}
	
	.app h1 {
		font-size: 40px;
	}
	
	.app p {
		max-width: 100%;
	}
	
	.app .input {
		max-width: 100%;
	}
	
	.musics {
		grid-template-columns: 1fr 1fr;
		gap: 15px;
	}
	
	.audio-preview {
		height: 220px;
	}
	
	footer .footer-bottom .wrapper {
		flex-direction: column;
	}
	
	.m-mt20 { margin-top: 20px !important; }
	.m-mt30 { margin-top: 30px !important; }
	.pm-20 { padding: 20px !important; }

}

@media (min-width: 1200px) {
	.container.fluid {
		max-width: 1340px;
	}
}