﻿/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
html, body {
	height: 100vh;
	min-height: 100vh;
	width: 100%;
	font-family: Akashi;
	color: #444444;
	background: rgb(2,50,137);
	background: -moz-linear-gradient(180deg, rgba(2,50,137,1) 0%, rgba(20,95,225,1) 100%);
	background: -webkit-linear-gradient(180deg, rgba(2,50,137,1) 0%, rgba(20,95,225,1) 100%);
	background: linear-gradient(180deg, rgba(2,50,137,1) 0%, rgba(20,95,225,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#023289",endColorstr="#145fe1",GradientType=1);
}



li {
	list-style: none;
}

a {
	color: #2d4464;
	text-decoration: none;
}

	a:hover {
		color: #44678d;
		text-decoration: none;
	}

h1, h2, h3, h4, h5, h6 {
	font-family: "Poppins", sans-serif;
}

.mobile_order_now {
	display: none;
}

.p-upper {
	text-transform: uppercase;
}

.p-bold {
	font-weight: bold;
}

.p-bold-size {
	font-size: 1.2rem;
	font-weight: bold;
}


/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 9999;
	overflow: hidden;
	background: #fff;
}

	#preloader:before {
		content: "";
		position: fixed;
		top: calc(50% - 30px);
		left: calc(50% - 30px);
		border: 6px solid #44678d;
		border-top-color: #e7e4fe;
		border-radius: 50%;
		width: 60px;
		height: 60px;
		-webkit-animation: animate-preloader 1s linear infinite;
		animation: animate-preloader 1s linear infinite;
	}

@-webkit-keyframes animate-preloader {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

@keyframes animate-preloader {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
	[data-aos-delay] {
		transition-delay: 0 !important;
	}
}

@media screen and (max-width: 991px) {
	.mobile_order_now {
		display: block;
	}
}


