/*

    Theme: Neo
    Author: QBIT
    Date: 28/12/2024

*/

/* Import fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500&family=Quicksand&display=swap');

/* Root styles */
:root {
	/* Background vars */
    --purple: #7c3aed; /* purple-600 */
    --violet: #a855f7; /* violet-500 */
    --pink:   #ec4899; /* pink-500 */
}

/* Global styles */
* { 
    box-sizing: border-box; 
    margin: 0; 
    padding: 0; 
}

html {
  font-size: 100%;
}

body {
	min-height: 100dvh;
	font-size: 1rem;
	font-family: 'Quicksand', sans-serif;
	color: #fff;
	line-height: 1.6;
	background: linear-gradient(135deg, var(--purple) 0%, var(--violet) 45%, var(--pink) 100%);
    background-attachment: fixed;
}

h1,h2,h3,h4,h5,h6 {
	font-size: 1.6rem;
	font-family: 'Poppins', sans-serif; 
	color: #fff;
  	line-height: 1.5;
  	margin-bottom: 1.25rem;
}

a {
	color: #fff;
	text-decoration: none;
	transition: color 0.5s ease, transform 0.5s ease-in-out;
}

p {
	margin-bottom: 1.25rem;
}

ul {
	list-style: none;
	margin-bottom: 1.25rem;
}

img {
	width: 100%;
	vertical-align: bottom;
}

/* Header styles */
header {
	width: 100%;
}

.logo {
  	width: 7.5rem;
  	height: 5.625rem;
	display: block;
  	background: url('/uploads/svg/logo.svg') no-repeat center / contain;
	text-indent: -625rem;
}

/* Footer styles */
footer {
	width: 100%;
	background-color: #000;
	padding-top: 1.875rem;
}

/* Back to top styles */
.top { 
	width: 2.8125rem;
	height: 2.8125rem;
	position: fixed;
	border-radius: 6.25rem;
	bottom: 0;
	left: 50%;
	transform: translate(-50%, -50%);
	display: none;
	background: rgba(255, 255, 255, 0.5) url('../../../../uploads/svg/top.svg') center center / 1.25rem no-repeat;
	cursor: pointer;
}

/* Cookie Bar styles */
#cookie {
	width: 100%;
	position: fixed;
	left: 0;
	top: 0;
	display: none;
	color: #fff;
	background: rgba(20,20,20,0.8); 
	text-align: center;
	padding: 20px;
	z-index: 1000;
}

#cookie p {
	margin: 0;
}

#cookie a {
	color: #fff;
}

#cookie .btn {
	color: #fff;
	cursor: pointer;
}

.steps {
	font-family: 'Poppins', sans-serif;
	font-size: 1.4rem;
	font-style: normal;
	font-weight: 700;
}

.price {
	font-size: 3.0rem;
	font-style: normal; 
	font-family: 'Poppins', sans-serif; 
	font-weight: 700;
	letter-spacing: -0.4rem;
	margin-right: 0.3rem;
}

.note {
	font-size: 1.0rem;
	font-style: normal; 
	font-family: 'Quicksand', sans-serif !important;
}

.list {
	margin-bottom: 1.25rem;
}

.list li {
	padding: 0.3125rem 0;
}

/* Download styles */
.download {
	background: #ec4899;
	border-radius: 0.2rem;
	display: inline-block;
	transition: background-color 0.5s ease, transform 0.5s ease-in-out;
}

.download:hover {
	background-color: #333;
	color: #fff;
}

/* Navigation styles */
nav .logo {
	display: none;
}

@media (max-width: 48rem) {

	/* Header styles */
	.logo {
		width: 6.25rem;
		height: 4.6875rem;
	}

	/* Cookie bar styles */
	#cookie .btn {
		display: block;
		margin-top: 10px;
	}

	/* Navigation styles */
	nav .logo {
		display: block;
		margin-bottom: 20px;
	}

}