@charset "utf-8";
/* CSS Document */
*{
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	font-family: 'Itim', cursive;
	font-family: 'Poppins', sans-serif;
	list-style: none;
	text-decoration: none;
}
#header{
	position: fixed;
	right: 0;
	top: 0;
	z-index: 1000;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 33px 9%;
}

.logo{
	font-size: 30px;
	font-weight: 700;
	color: white;
	
}

.nav{
	display: flex;
}

.nav a{
	color: lightgray;
	margin-left: 60px;
	font-size: 15px;
	font-weight: 600;
	transition: all .55s ease;
	border-image: url()
}
.nav a:hover{
	font-size: 17px;
	margin-left: 65px;
	color: aliceblue;
}

#menu-icon{
	font-size: 30px;
	color: white;
	z-index: 10001;
	cursor: pointer;
	display: none;
}

.hero{
	height: 100%;
	width: 100%;
	min-height: 100vh;
	background: linear-gradient(245.59deg, #6c38a4 0%, #440c93 28.53%, #160249 75.52%);
	position: relative;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	align-items: center;
	gap: 2rem;
}

section{
	padding: 0 19%;
}

.hero-text{
	font-size: 14px;
	font-weight: 400;
	color: aliceblue;
	margin-bottom: 40px;
}

.hero-text h1{
	font-family: 'Itim', cursive;
	font-size: 120px;
	line-height: 1;
	color: aliceblue;
	margin: 0 0 0 0px;
}

.hero-text h4{
	font-size: 18px;
	font-weight: 600;
	color: aliceblue;
	margin-bottom: 10px; 
}

.hero-text p{
	font-size: 16px;
	line-height: 1.9;
	color: aliceblue;
	font-weight: 300;
	margin-bottom: 40px; 
}

.hero-img img{
	width: 400px;
	height: auto;
	margin-left: 150px
}
.hero-text a{
	display: inline-block;
	color: aliceblue;
	background: #6c38a4;
	border: 1px solid transparant;
	padding: 12px 30px;
	line-height: 1.4;
	font-size: 15px;
	border-radius: 25px;
	font-weight: 500;
	text-transform: uppercase;
	transition: all .55s ease;
}
.hero-text a:hover{
	background: rgba(0,0,0,0.00);
	border: 1px solid aliceblue;
	transform: translateY(5px)
}
.hero-text a.seemore{
	background: rgba(0,0,0,0.00);
	border: 1px solid aliceblue;
	margin-left: 10px;
}
.hero-text a.seemore i{
	vertical-align: middle; 
	margin-left: 5px;
}

@media (max-width:1535px){
	header{
		padding: 15px 3%;
		transition: .2s;
	}
}
@media (max-width: 1460px){ 

	section{
		padding: 0 12%;
		transition: . 2s;
	}
}

@media (max-width: 1340px){
	.hero-img img{
		width: 100%;
		height: auto;
	}
	.hero-text h1{
		font-size: 75px;
		margin: 0 0 30px;
	}
	.hero-text h5{
		margin-bottom: 25px;
	}
}
@media (max-width: 1195px){ 

	section{
		padding: 0 3%;
		transition: .2s;
	}
	.hero-text{
		padding-top: 115px;
	}
	.hero-img{
		text-align: center;
	}
	.hero-img img{
		width: 300px;
		height:auto ;
	}
	.hero{
		height: 100%;
		gap: 1rem;
		grid-template-columns: 1fr;
	}
}
@media (max-width: 990px){
	#menu-icon{
		display: block;
	}
	.nav{
		position: absolute;
		top: 100%;
		right: -100%;
		width: 300px;
		height: 40vh;
		background: #6c38a4;
		display: flex;
		align-items: center;
		flex-direction: column;
		padding: 50px 20px;
		transition: all .55 ease;
	}
	.nav a{
		display: block;
		margin-left: 0; 
		margin: 10px 0;	
	}
	.nav.open{
		right: 0;
	}
}
@media (max-width: 650px){
	.hero-img img{
		width: 100%;
		height: auto;
	}
}

	.preloader-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #160249;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 1; 
}

.preloader-container.fade-out {
	transition: 1s ease;
    opacity: 0;
}

.preloader-text {
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
    font-size: 5em; 
    color: aliceblue;
}
