/*

    Title: Header
    Author: QBIT
    Date: 23/04/2024

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

*/

/* Header styles */
header {
	width: 100%;
	position: fixed;
	left: 0;
	top: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%);
	z-index: 999;
}

header .main {
	position: relative;
}

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

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

	/* Header styles */
	header {
		padding-top: 10px;
	}

	.logo {
		margin-top: 0;
	}
}