@import url('fonts.css');

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	scroll-behavior: smooth;
}

a {
	cursor: none;
}

html,
body {
	width: 100vw;
}

body {
	font-family: 'Random Grotesque', sans-serif;
	background: #050505;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-x: hidden;
	cursor: url('../assets/img/cursor.svg') 20 15, auto;
}

.heroHeart_text:hover,
.nav-item a:hover,
.scalePhone_text-right:hover,
.phone-description_text:hover,
.appleWatch_text_description:hover,
.assistant-text:hover,
.message:hover,
.footer a:hover {
	cursor: url('../assets/img/cursor_opacity.svg') 20 15, auto;
}

::-webkit-scrollbar {
	display: none;
}

html {
	scrollbar-width: none;
	/* Firefox */
}

body {
	-ms-overflow-style: none;
	/* IE and Edge */
}

// :root {
// 	--vw: 1vw;
// }

// @media (min-width: 1920px) {
// 	:root {
// 		--vw: calc(1920px / 100);
// 	}
// }

// .overflow {
// 	width: 100vw;
// 	max-width: 1920px;
// 	margin: 0 auto;
// }

main,
.heroHeart_text {
	// animation: fadeIn 1s ease-in-out;
}

.no-scroll {
	overflow: hidden;
}

.fixed-button {
	z-index: 99;
	white-space: nowrap;
	font-size: 27px;
	line-height: 22px;
	font-weight: 500;
	position: fixed;
	display: flex;
	align-items: center;
	justify-content: center;
	top: 20px;
	bottom: auto;
	right: 1vw;
	padding: 10px 20px 12px 20px;
	background-color: rgba(0, 0, 0, 0.3);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	color: #fafafa;
	border: 1px solid rgba(250, 250, 250, 0.1);
	border-radius: 20px;
	text-align: center;
	text-decoration: none;
	transition: all 0.3s ease;
	opacity: 0;
	visibility: hidden;
	width: 250px;
	height: 55px;
}

.fixed-button.visible {
	opacity: 1;
	visibility: visible;
}

.fixed-button:hover {
	border-color: transparent;
	background-color: #ff0d48;
	color: #ffffff;
}

.hidden {
	opacity: 0;
}

.display_none {
	display: none;
}

#loading-text {
	font-size: 10vw;
	font-weight: 500;
	font-size: 5.6vw;
	line-height: 91%;
	text-align: justify;
	color: #fafafa;
	width: 45vw;
	height: 18vw;
}

video::-webkit-media-controls-start-playback-button {
	display: none;
}

video::-webkit-media-controls-overlay-play-button {
	display: none;
}

@media (max-width: 800px) {
	body {
		padding-bottom: 100px;
	}

	.heroHeart_text {
		animation: none;
	}

	.fixed-button {
		font-size: 24px;
		font-weight: 500;
		position: fixed;
		top: auto;
		bottom: 60px;
		left: 50%;
		transform: translateX(-50%);
		padding: 10px 20px 12px 20px;
		color: #fafafa;
		border-radius: 20px;
		text-align: center;
		text-decoration: none;
		transition: all 0.3s ease;
	}
}