@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('library/css/animated-css.css');
:root {
	--main: #f28a22;
	--secondary: #1e2736;
	--text: #424242;
	--white: #FFF;
	--skyblue: #00ccff;
}
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Poppins', sans-serif;
}
body {
	min-height: 100vh;
}
a {
	color: var(--main);
	text-decoration: none;
}
.container {
	max-width: 1250px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	padding: 20px;
}
.container.full-width {
	max-width: 100%;
}
.align-items-stretch {
	align-items: stretch;
}
.text-align-center {
	text-align: center;
}
.center-aligned {
	margin-left: auto;
	margin-right: auto;
}
.page {
	padding: 80px 20px;
}

/*----HEADER START----*/
.main-header {
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 999;
	background: var(--secondary);
	box-shadow: 0 0 20px 0 rgba(0,0,0,.6);
}
.main-menu {
	display: flex;
	width: 100%;
	gap: 20px;
	list-style: none;
	margin: 0;
	padding: 0;
	align-items: center;
	justify-content: center;
}
.main-menu li a {
	color: var(--white);
}
.main-menu li a:hover,
.main-menu li a.active {
	color: var(--main);
}
/*----HEADER END----*/

/*----HOME START----*/
.card-wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 100vh;
}
.card-container {
	width: 500px;
	max-width: 100%;
}
.card-container:after {
	content: '';
	width: 400px;
	max-width: 80%;
	height: 0;
	display: block;
	margin: 20px auto;
    box-shadow: 0 0 30px 6px rgba(0,0,0,.8);
    border-radius: 100%;
}
/*CARD HEAD START*/
.card-head {
	text-align: center;
	background: var(--secondary);
	padding: 40px 20px 80px;
	color: var(--white);
	text-align: center;
}
.card-head .logo {
	position: relative;
	font-size: 30px;
	color: #252839;
	-webkit-text-stroke: 0.3vw var(--text);
	text-transform: uppercase;
	display: inline-block;
}
.card-head .logo:before {
	content: attr(data-text);
	position: absolute;
	top: 0;
	left: 0;
	width: 0;
	height: 100%;
	color: var(--skyblue);
	-webkit-text-stroke: 0vw var(--text);
	border-right: 2px solid var(--main);
	overflow: hidden;
	animation: animate 6s linear infinite;
}
/*CARD HEAD END*/
/*CARD INFO START*/
.card-info {
	text-align: center;
	background: var(--white);
	padding: 80px 20px 40px;
}
.card-info .btn {
	margin-top: 20px;
}
/*CARD INFO END*/
/*CARD FOOTER START*/
.card-foot {
	background: var(--secondary);
	text-align: center;
	padding: 30px 20px 20px;
	border-bottom: 20px solid var(--main);
}
.card-foot a {
	transition: all 0.3s ease-in-out;
	display: inline-block;
}
.card-foot a:hover {
	transform: scale(1.1);
}
/*CARD FOOTER END*/
/*----HOME END----*/

/*PROFILE PIC BORDER START*/
.box {
	position: absolute;
    z-index: 2;
    border-radius: 100%;
    overflow: hidden;
    width: 260px;
    height: 260px;
    left: 50%;
    top: -4px;
    margin-left: -130px;
}
.box::before {
	content: '';
    position: absolute;
    inset: 60px 0;
    background: linear-gradient(315deg, var(--skyblue), var(--main));
    transition: 0.5s;
    animation: animated 4s linear infinite;
}
.box:hover::before {
	inset: -20px 0;
}
.box::after {
	content: '';
    position: absolute;
    inset: 10px;
    background: #162052;
    border-radius: 50%;
    z-index: 1;
}
.box img {
	position:absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: 0.5s;
	pointer-events: none;
	border-radius: 100%;
}
.pro-pic .content {
	position: absolute;
    inset: 19px;
    z-index: 3;
    border-radius: 50%;
}
div#audio-player {
    display: flex;
    position: absolute;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .40);
    border-radius: 100%;
	opacity: 0;
	transition: all 1s ease;
	gap: 35px;
}
.pro-pic .content:hover div#audio-player {
	opacity: 1;
}
div#audio-player button {
    background: none;
    border: 0;
	display: flex;
	cursor: pointer;
}
div#audio-player button#prev {
	transform: rotate(180deg)
}
div#audio-player button#play,
div#audio-player button#pause {
	width: 50px;
	height: 50px;
	align-items: center;
	justify-content: center;
}
div#audio-player button#play svg,
div#audio-player button#pause svg {
	width: 50px;
}
div#audio-player svg {
    width: 30px;
    height: auto;
}
div#audio-player svg g,
div#audio-player svg path {
	fill: #FFF;
}
div#audio-player #playlist {
	display: none;
}
/*PROFILE PIC BORDER END*/

/*BEAT START*/
.pro-pic {
	position: relative;
    display: flex;
    justify-content: center;
	margin: -56px 0;
}
.beat {
  position: relative;
  width: 250px;
  height: 250px;
  text-align: center;
  line-height: 250px;
  border-radius: 50%;
  cursor: pointer;
  
  &:before, &:after {
    content: "";
    position: absolute;
    
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    
    background-color: var(--skyblue);
    opacity: 0.4;
    border-radius: inherit;
  }
}
.beat.music-played {
	background: linear-gradient(to bottom, var(--skyblue), darken(desaturate(#E53038, 10), 5));
	box-shadow: 0px 7px 20px hsla(0, 0%, 0%, 0.2);
	animation: beat 1.5s ease 0s infinite;
  
	&:before {
	  z-index: -2;
	  animation: beat-before 1.5s ease 100ms infinite;
	}
	
	&:after {
	  z-index: -1;
	  animation: beat-after 1.5s ease 200ms infinite;
	}
}
/*BEAT END*/

/*----SITE BACKGROUND START-----*/
.site-bg {
	position: fixed;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	z-index: -1;
}
div._bubbleItem_eh6uj_1 {
	width: 50%;
	height: 100vh;
	display: flex;
	border-radius: 30% 80% 75% 40% / 40% 40% 70% 50%;
	animation-timing-function: ease-in-out;
	animation-iteration-count: infinite;
	animation-name: _bubbleMovement_eh6uj_1;
	-webkit-backface-visibility: hidden;
	-webkit-perspective: 1000;
	-webkit-transform: translate3d(0, 0, 0);
	-webkit-transform: translateZ(0);
	backface-visibility: hidden;
	perspective: 1000;
	transform: translateZ(0);
	will-change: transform;
}
div._container_1b3e3_1 {
	height: 100vh;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 0;
	-webkit-backface-visibility: hidden;
	-webkit-perspective: 1000;
	-webkit-transform: translate3d(0, 0, 0);
	-webkit-transform: translateZ(0);
	backface-visibility: hidden;
	perspective: 1000;
	transform: translateZ(0);
	will-change: transform;
}
div._gradientWrapper_1b3e3_20 {
	position: relative;
	height: 100vh;
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	-webkit-perspective: 1000;
	-webkit-transform: translate3d(0, 0, 0);
	-webkit-transform: translateZ(0);
	backface-visibility: hidden;
	perspective: 1000;
	transform: translateZ(0);
	will-change: transform;
}
div._childrenContainer_mp12l_1 {
	height: 100vh;
	width: 100%;
	position: relative;
	z-index: 1;
	-webkit-backface-visibility: hidden;
	-webkit-perspective: 1000;
	-webkit-transform: translate3d(0, 0, 0);
	-webkit-transform: translateZ(0);
	backface-visibility: hidden;
	perspective: 1000;
	transform: translateZ(0);
	will-change: transform;
}
div._auroraHolder_1x1qn_1 {
	width: 100%;
	height: 100vh;
	position: relative;
	-webkit-backface-visibility: hidden;
	-webkit-perspective: 1000;
	-webkit-transform: translate3d(0, 0, 0);
	-webkit-transform: translateZ(0);
	backface-visibility: hidden;
	perspective: 1000;
	transform: translateZ(0);
	will-change: transform;
}
div._container_npr0d_1 {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	width: 100vw;
	height: 100vh;
}
/*----SITE BACKGROUND END----*/
/*----BUTTONS START----*/
.btn {
	color: var(--white);
	background-color: var(--main);
	border: 1px solid var(--main);
	border-radius: 3px;
	padding: 10px 25px;
	cursor: pointer;
	transition: all 0.3s ease-in-out;
	display: inline-block;
	text-decoration: none;
}
.btn:hover {
	transform: scale(1.1);
}
/*----BUTTONS END----*/

/**-WASHOUT START-**/
/* bubbles */
.washout {
	height: 100%;
    width: 100%;
    position: fixed;
    top: 100%;
    left: 0;
    background-color: hsl(210, 80%, 42%);
    z-index: 9999;
    opacity: 1;
	transition: all 1s ease;
	overflow: hidden;
}
.washout::before {
	content: '';
	pointer-events: none;
	opacity: .6;
	background:
	  radial-gradient(circle at 20% 35%,  transparent 0,  transparent 2px, hsla(210, 50%, 85%, 1) 3px, hsla(210, 50%, 85%, 1) 4px, transparent 4px),
	  radial-gradient(circle at 75% 44%, transparent 0,  transparent 2px, hsla(210, 50%, 85%, 1) 3px, hsla(210, 50%, 85%, 1) 4px, transparent 4px),
	  radial-gradient(circle at 46% 52%, transparent 0, transparent 4px, hsla(210, 50%, 85%, 1) 5px, hsla(210, 50%, 85%, 1) 6px, transparent 6px),
	  radial-gradient(circle at 10% 55%, transparent 0, transparent 5px, hsla(210, 50%, 85%, 1) 6px, hsla(210, 50%, 85%, 1) 8px, transparent 8px),
	  radial-gradient(circle at 60% 35%, transparent 0, transparent 5px, hsla(210, 50%, 85%, 1) 6px, hsla(210, 50%, 85%, 1) 8px, transparent 8px),
	  radial-gradient(circle at 80% 25%, transparent 0, transparent 7px, hsla(210, 50%, 85%, 1) 7px, hsla(210, 50%, 85%, 1) 8px, transparent 8px);
  
	width: 100%;
	height: 300%;
	top: 0;
	left: 0;
	position: absolute;
	animation: bubbles 5s linear infinite both;
  }
  
  @keyframes bubbles {
	from {
	  transform: translate();
	}
	to {
	  transform: translate(0, -66.666%);
	}
  }
  /*
  .LightWaves {
	animation: lightwaves 2s infinite;
	position: relative;
  }
  
  @keyframes lightwaves {
	  0%,100% { transform: translate(0,0); }
	  25%     { transform: translate(5px,5px); transform: scale(1.05); }
	  50%     { transform: translate(25px, 5px); }
	  75%     { transform: translate(12px,10px); transform: scale(1.05); }
  }
  
  .DarkWaves {
	animation: darkwaves 3.8s infinite;
  }
  
  @keyframes darkwaves {
	  0%,100% { transform: translate(0,0); }
	  25%     { transform: translate(25px, 5px); transform: scale(1.05); }
	  50%     { transform: translate(12px,10px); }
	  75%     { transform: translate(5px,5px); }
  }
  
  .WhiteWaves {
	animation: whitewaves 4s alternate ease infinite;
  }
  */
.wave1 {
	position: relative;
	width: 100%;
	height: 107px;
	overflow: hidden;
}
.wave1:before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	--s: 50px;
	--p: .6;
	--R: calc(var(--s)* sqrt(var(--p)* var(--p) + 1)) at 50%;
	--m: radial-gradient(var(--R) calc(100% - var(--s)*(1 + var(--p))), #000 99%, #0000 101%) calc(50% - 2* var(--s)) 0 / calc(4* var(--s)), radial-gradient(var(--R) calc(100% + var(--s)* var(--p)), #0000 99%, #000 101%) 50% calc(-1* var(--s)) / calc(4* var(--s)) repeat-x;
	-webkit-mask: var(--m);
	mask: var(--m);
	background: transparent;
	animation: lightwaves 2s infinite;
	z-index: 2;
}
  @supports not (opacity:sqrt(1)) {
	.wave {
	  --R: calc(var(--s) * 1.166) at 50%;
	}
  }
@keyframes lightwaves {
	0%,100% { transform: translate(0,0); }
	25%     { transform: translate(-15px,-15px); transform: scale(1.05); }
	50%     { transform: translate(0px, -10px); }
	75%     { transform: translate(0px,20px); transform: scale(1.05); }
}
/**-WASHOUT END-**/