*{
	padding:0;
	margin:0;
	box-sizing: border-box;
	font-family: 'Poppins', sans-serif;
	list-style: none;
	text-decoration: none;
 }

 header{
 	position: absolute;
 	right: 0;
 	top: 0;
 	z-index: 1000;
 	width: 100%;
 	display: flex;
 	align-items: center;
 	justify-content:space-between;
 	padding: 33px 9%;
 	background: transparent;
 }

.logo{
	font-size: 30px;
	font-weight:700;
	color: #ffb001;
}

.navlist{
	display: flex;
}

.navlist a{
	color: white;
	margin-left: 60px;
	font-size: 15px;
	font-weight: 600;
	border-bottom: 2px solid transparent;
	transition: all .55s ease;
}

.navlist a:hover{
	border-bottom: 2px solid #ffb001; 
}

#menu-icon{
	color: white;
	font-size: 35px;
	z-index: 10001;
	cursor: pointer;
	display:none;

}

.hero{
	height: 100%;
	width: 100%;
	min-height: 100vh;
	background: linear-gradient(245.59deg,#4d7595 0%,#3d6170 28.53%,#173C57 75.52%);
	position: relative;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	align-items: center;
	gap: 2rem;
}

section {
	padding: 0 19%;
}

.hero-text h5{
	font-size: 14px;
	font-weight: 400;
	color: white;
	margin-bottom: 40px;

}

.hero-text h1{
	font-family: 'Permanent Marker', cursive;
	font-size: 90px;
	line-height: 1;
	color: white;
	margin: 0 0 45px;
}

.hero-text h4{
	font-size: 18px;
	font-weight: 600;
	color: white;
	margin-bottom: 10px;
	margin-top: 64px;
}

.hero-text p{
	color: white;
	font-size: 15px;
	line-height: 1.9;
	margin-bottom: 40px;
}

.hero-img img {
	width: 700px;
	height: auto;
}

.hero-text a{
	display: inline-block;
	color: white;
	background: #FFA500;
	border: 1px solid transparent;
	padding: 12px 30px;
	line-height: 1.4;
	font-size: 14px;
	font-weight: 500;
	border-radius: 30px;
	text-transform: uppercase;
	transition: all .55s ease;
}

.hero-text a:hover{
	background: transparent;
	border: 1px solid white;
	transform: translateX(8px);
}

.hero-text a.ctaa{
	background: transparent;
	border: 1px solid white;
	margin-left: 20px;

}

.hero-text a.ctaa i{
	 vertical-align: middle;
	 margin-right: 5px;
}

.icons{
	position: absolute;
	top: 50%;
	padding: 0 9%;
	transform: translateY(-50%);
}

.icons i{
	display: block;
	margin: 26px 0;
	font-size: 24px;
	color: white;
	transition: all .50s ease;
}

.icons i:hover{
	color: #4d7595;
	transform: translateY(-5px);
}

.scroll-down{
	position: fixed;
	bottom: 6%;
	right: 9%;
	z-index: 2;
	cursor: pointer;
}

.scroll-down i {
	display: block;
	padding: 12px;
	font-size: 25px;
	color: white;
	background: #FFB74D;
	border-radius:30px;
	transition: all .50s ease;
}

.scroll-down i:hover{
	transform: translateY(-5px);
}

@media (max-width: 1535px){
	header{
		padding: 15px 3%;
		transition: .2s;
	}
	.icons{
		padding: 0 3%;
		transition: .2s;
	}
	.scroll-down{
		right: 2.5%;
		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;
		text-align: center;
	}
	.hero-img{
		text-align: center;
	}
	.hero-img img{
		width: 560px;
		height: auto;
	}
	.hero{
		height: 100%;
		gap: 1rem;
		grid-template-columns: 1fr;
	}
	.icons{
		display: none;
	}
	.scroll-down{
		display: none;
	}
}

@media(max-width:990px){
	#menu-icon{
	display:block
	}
	.navlist{
		display: none;
		position: absolute;
		top: 130%;
		right: 0;
		height: 280px;
		width: 250px;/*make 300 if it doesnt look right*/
		background: #4d7595;
		align-items: center;
		flex-direction: column;
		padding: 24px 0 0 0;
		transition: all .55s ease;
		border-radius: 2rem 0 0 2rem;
	}
	.navlist a{
		margin-left: 0;
		display: block;
		margin: 7px 0;

	}
	.navlist.open{
		display: flex;
	}
}

@media(max-width:680px){
	.hero-img img{
		width: 100%;
		height: auto;
	}
}

/* Styles for landscape mode */
@media screen and (orientation: landscape) {
	.navlist{  		
  		top: 85%;
	}
}

@media(max-width:447px){
	.hero-text a.ctaa{
		margin-left: 0;
		margin-top: 10px;
	}
}

/*services*/

.box{
	text-align: center;
}
.services {
	padding: 0;
	justify-content: space-around;
	display: flex;
	column-gap: 10px;
	position: relative;
	flex-wrap: wrap;
	z-index: 1;
	height: 100%;
	width: 100%;
	min-height: 100vh;
	background: linear-gradient(245.59deg,#4d7595 0%,#3d6170 28.53%,#173C57 75.52%);
}

.servicebox{
	border: 4px solid #FFA500;
	margin-top: 32px;
	margin-bottom: 50px;
	margin-left: 20px;
	margin-right: 20px;
	padding: 12px;
	height: 590px;
	width: 450px;
	background-color: rgba(255, 255, 255, 0.09);
	color: white;
	border-radius: 1rem;
}

.box > p {
	text-align: center;
}

.box h2 {
	padding:10px;
	text-align: center;
	color: #FFA500;
}

.servicebox > .box > p{
	margin-top: 30px;
}

/*IDEA AND VIDEO*/

.vidcont{
	display: flex;
 	justify-content: center;
	align-items: center;
	padding: 0;
	position: relative;
	z-index: 1;
	height: 100%;
	width: 100%;
	min-height: 100vh;
	background: linear-gradient(245.59deg,#4d7595 0%,#3d6170 28.53%,#173C57 75.52%);
	overflow: hidden;
}

.video{
	border: 5px solid #FFA500;
	display: flex;
	justify-content: center;
	align-items: center;
	padding:20px ;
	margin-top: 100px;
	margin-bottom: 48px;
	border-radius: 2rem;
}

/* about us or notre equipe*/

.aboutuscont{
	overflow: hidden;
	padding-top: 100px;
	position: relative;
	z-index: 1;
	height: 100%;
	width: 100%;
	min-height: 100vh;
	background: linear-gradient(245.59deg,#4d7595 0%,#3d6170 28.53%,#173C57 75.52%);
}

.heading{
	width:90% ;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	text-align:center;
	margin: 20px auto 64px auto;
}

.heading h1{
	font-size: 50px;
	color: white;
	margin-bottom: 25px;
	position: relative;
}

.heading h1::after{
	content:"";
	position: absolute;
	width: 100%;
	height: 4px;
	display: block;
	margin: 0 auto;
	background-color:#ffb001;
	border-radius: 0.2rem;

}

.heading p{
	font-size: 18px;
	color: white;
	margin-bottom: 35px;
}

.container{
	width: 90%;
	margin: 0 auto 20px auto;
	padding: 10px 20px;
}

.about{
	padding: 0 5%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}

.aboutimg{
	flex: 1;
	margin-right: 40px;
	overflow: hidden;
}

.aboutimg img{
	max-width: 80%;
	height: auto;
	display: block;
	transition: 0.5s ease;
	margin:auto;
}

/*image zoom in effect
.aboutimg:hover img{
	transform: scale(1.2);
}*/

.aboutcontent{
	flex: 1;
	text-align: center;
}

.aboutcontent h2{
	font-size: 23px;
	margin-bottom: 15px;
	color: white;
}

.aboutcontent p{
	font-size: 18px;
	line-height: 1.5;
	color: white;
}

.aboutcontent .read-more{
	display: inline-block;
	padding: 10px 20px;
	background-color:#FFB74D ;
	color: #fff;
	font-size: 19px;
	text-decoration: none;
	border-radius: 25px;
	margin-top: 15px;
	transition: 0.3s ease;
}

.aboutcontent .read-more:hover{
	background-color: #FF8C00;
}

@media screen and (max-width:768px){
	.heading {
		padding: 0px 20px;
	}
	.heading h1{
		font-size: 36px;
	}
	.heading p{
		font-size: 17px;
		margin-bottom: 0px;
	}
	.container{
		padding:0px;
	}
	.about{
		padding: 20px;
		flex-direction: column;
	}
	.aboutimg{
		margin-right: 0px;
		margin-bottom: 20px;
	}
	.aboutcontent p{
		padding: 0px;
		font-size: 16px;
	}
	.aboutcontent .read-more{
		font-size: 16px;
	}
}


/*Nos packs*/

.packs{
	border: 2px solid #FFA500;
	margin-top: 30px;
	margin-bottom: 50px;
	margin-left: 20px;
	margin-right: 20px;
	padding: 15px;
	height: 810px;
	width: 370px;
	border-radius: 2rem;
	background-color: rgba(255, 255, 255, 0.09);
	color: white;
	overflow: hidden;
}

.box > img {
	height: 96px;
	margin: 30px auto 30px auto;
}

/*in case you wanna remove heading

@media (max-width: 829.5px){				/*the width is 829 or less for it to apply
.services .packs:nth-child(n+3) {
  margin-top: 30px;
}
}


@media (max-width:1249.5px){				/*the width is 1249 or less for it to apply
.services .packs:nth-child(n+4) {
  margin-top: 30px;
}
}

@media (max-width:1669.5px){				/*the width is 1669 or less for it to apply
.services .packs:nth-child(n+5) {
  margin-top: 30px;
}
}

*/