/*

   Title: Holding Page
   Author: QBIT
   Date: 26/05/2024

   File path: ../../../../uploads/

*/

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

/* Global styles */
body,html {
	line-height: 150%;
}

body {
	color: #fff;
	font-size: 1.0em; 
	font-family: 'Quicksand', sans-serif;
}

h1,h2,h3,h4,h5,h6 {
	line-height: 1.0;
	letter-spacing: -0.05em;
	font-size: 3.0em;
	font-family: 'Poppins', sans-serif; 
	color: #fff;
	margin-bottom: 20px;
}

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

a:hover {
	color: #99cc33;
}

p {
	margin-bottom: 20px;
}

ul {
	list-style: none;
}

/* Header styles */
header {
	background: linear-gradient(to top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%);
	margin-bottom: 50px;
	padding-top: 10px;
}

.logo {
	width: 90px;
	height: 40px;
	background: url('../../../../uploads/svg/logo.svg') left top / 90px no-repeat;
	text-indent: -9999px;
	display: block;
}

/* Background image styles */
.gradient { 
  width: 100%; 
  height: 100%; 
  position: fixed; 
  left: 0; 
  top: 0; 
  background: linear-gradient(to right, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
  z-index: -1; 
}

#bg { 
	position: fixed; 
	left: 0; 
	top: 0; 
	background-size: cover; 
	animation: zoomInBackground 10s forwards; 
	z-index: -2; 
}

@keyframes zoomInBackground { 
  0% { transform: scale(1.2); } 
  100% { transform: scale(1); } 
}

/* Contact styles */
.contact {
	font-family: 'Poppins', sans-serif;
	letter-spacing: -0.1em;
	font-size: 1.4em;
	line-height: 1.4em;
}

/* Media queries */
@media (max-width: 64em) 
{

	/* Global styles */
	h1,h2,h3,h4,h5,h6 {
		letter-spacing: -0.1em;
	}

}