/* General Style*/
@import url('https://fonts.googleapis.com/css2?family=Prompt:wght@300;400;500;700&family=Tajawal:wght@300;400;500&display=swap');
/*
  header: #453C67
*/
*{
  padding:0;
  margin:0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body,html{
	font-family: 'Prompt', sans-serif;

}

a{
	text-decoration: none;
	color:#fff;

}
ul{
	list-style-type:none;
}

.sec-header{
	padding:30px;
	text-align:center;
}

.btn{
	display: inline-block;
	padding:10px 15px;
	border:2px solid #88a3a2;
	color:#fff;
	cursor: pointer;
	font-size: 16px;
	border-radius: 7px;
	position: relative;
	overflow: hidden;
	z-index: 0;
	margin-top: 16px;
  }

  .btn::before{
	content: '';
	position: absolute;
	top:0;
	right: 0;
	width:0%;
	height:100%;
	background:#88a3a2;
	transition: .3s linear;
	z-index: -1;
  }

  .btn:hover::before{
	width:100%;
	left: 0;
  }

  .btn:hover{
	color:#fff;
  }

 .under-line{
	position: relative;
 }

 .under-line::before{
	display:inline-block;
	width:0;
	height: 2px;
	bottom:-4px;
	background:#fff;
	position: absolute;
	content:'';
	transition: .3s linear;
 }
 .under-line:hover::before{
	width:100%;
 }
 .active{
	color:#333;
 }
 .active:hover{
	color:#fff;
 }
img{
	width:100%;
	height: 100%;
}
/* Start Wrapper Grid */
.wrapper-grid{
	max-width:1200px;
	margin:0 auto;
	display:grid;
	grid-template-columns:repeat(auto-fit, minmax(8%,1fr));
	grid-template-rows:repeat(auto-fit, minmax(auto,1fr));
}
/* Start Header */
header{
	grid-column:1/-1;
	display:grid;
	grid-template-columns:15% repeat(4,1fr);
	background: linear-gradient(45deg,#4D6766 ,#88a3a2) ;
	padding:20px 10%;
	line-height: 20px;
	border-bottom: 2px solid #fff;
}
header h1{
	color:#fff;

}

header ul{
	display:grid;
	grid-template-columns:repeat(auto-fit,minmax(10%,1fr));
    align-items: end;
	grid-column:4/-1;
}
header ul li{
	font-weight: bold;
}
header #bars{
	display:none;
}
header #list #close{
	display:none;
}
@media (min-width:320px) and (max-width:576px){
	header{
		display: flex;
		justify-content:space-between;
		align-items:center;
		position:relative;
	}
	header #bars{
		display:block;
		color:#fff;
		position: relative;
		cursor: pointer;
	}
	header #list #close{
		display:block;
		position: absolute;
		color:#fff;
		top: 20px;
        right: 12px;
		cursor: pointer;
	}
	header #list{
		display:block;
		top:100px;
		position: absolute;
		background-color:rgb(120, 148, 147);
    width:350px;
		left:-350px;
		height:60vh;
		text-align:center;
		z-index:100;
	}

	header #list li{
		padding:40px 20px;
	}
}
/* Start Hero */
.hero{
	grid-column: 1/-1;
    min-height:60vh;
	display:grid;
	grid-template-columns:repeat(auto-fit, minmax(300px,1fr));
	background-color:#4D6766;
}

.header-hero{
	max-width: 500px;
	align-self: center;
	padding:80px;
	color:#fff;
	margin-left: 37px;
}

.header-hero h4{
	margin:20px 0;
}
.header-hero p{
	letter-spacing: 2px;
	
}

.hero .btn{
	display: inline-block;
	margin-top:30px;
	
}

.hero .tour{
	border-radius: 7px;
	border:2px solid #fff;
	padding:8px 15px;
}

/* Start product */
.product{
	grid-column:2/12;
	margin:20px 0;
	display:grid;
	grid-template-columns:repeat(auto-fit, minmax(200px,1fr));
	text-align:center;
	gap:10px;
}
.product .box{
	width:200px;
	height:300px;
	margin:0 auto;
	background-color:#dbdddd;
	border-radius:7px;
	position:relative;
	overflow: hidden;
	box-shadow:5px 10px 15px #777;
}


.product .box:hover .content{
	top:0;
	transition: .2s ease-in-out;
}
.product .content{
	width:100%;
	height:100%;
	position: absolute;
    top:-100%;
	left:0;
	background-color:#4D6766;
	grid-column:3/4;
	grid-row:1/3;
	padding-top:90px;
	border-radius:7px;
	cursor: pointer;
	color:#fff;
}
.product .content h4{
	margin-bottom:20px;
}
.product .product-content{
	grid-column:1/-1;
	grid-row:2/3;
	width:100%;
	height:100%;
	padding:50px 0;
	background-color:#b1c4c4;
	box-shadow:5px 10px 15px #777;
}
@media (min-width:320px) and (max-width:576px){
	.product .product-content{
		grid-column:1/2;
		grid-row:1/2;
	}
}


/* Start sec-gallary */
.sec-gallary{
	grid-column:2/12;
	/* background-color:chartreuse; */
	display:grid;
	grid-template-columns: repeat(2,1fr);
}

.sec-gallary .sec-header{
	grid-column:1/-1;
	text-align: center;
}
.sec-gallary .boxes{
	grid-column: 1/-1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(8%,1fr));
	grid-template-rows:200px 300px;

}
@media (min-width:320px) and (max-width:576px){
	.sec-gallary .boxes{
		grid-template-rows:200px 300px 200px 300px 200px;
	}
}
.sec-gallary .boxes .box{
	width:100%;
	height:100%;
}

.sec-gallary .boxes .box img{
	width:100%;
	height:100%;
	object-fit: cover;
}

.sec-gallary .boxes .box:nth-child(1){
  grid-column:span 3;
  grid-row:span 1;
}


@media (min-width:320px) and (max-width:576px){
	.sec-gallary .boxes .box:nth-child(1){
		grid-column:1/-1;
	}
}
.sec-gallary .boxes .box:nth-child(2){
	grid-column:span 3;
	grid-row:span 1;

}


@media (min-width:320px) and (max-width:576px){
	.sec-gallary .boxes .box:nth-child(2){
		grid-column:1/-1;
	}
}
.sec-gallary .boxes .box:nth-child(3){
  grid-column:span 2;
  grid-row:2/3;
}



@media (min-width:320px) and (max-width:576px){
	.sec-gallary .boxes .box:nth-child(3){
		grid-column:1/-1;
	}
}
.sec-gallary .boxes .box:nth-child(4){
  grid-column:span 2;
  grid-row:2/3;
}


@media (min-width:320px) and (max-width:576px){
	.sec-gallary .boxes .box:nth-child(4){
		grid-column:1/-1;
		grid-row:5/6;
	}
}
.sec-gallary .boxes .box:nth-child(5){
  grid-column:span 2;
  grid-row:2/3;
}

@media (min-width:320px) and (max-width:576px){
	.sec-gallary .boxes .box:nth-child(5){
		grid-column:1/-1;
		grid-row:4/5;
	}
}


/* Start Team */
.team{
	grid-column:2/12;
	/* background-color:crimson; */
	text-align: center;
   display:grid;
   grid-template-columns:repeat(2,1fr);

}
.team .sec-header{
	grid-column:1/-1;
}
.team .boxes{
	grid-column:1/-1;
	display:grid;
	grid-template-columns:repeat(3,1fr);
	margin-top:80px;
	gap:10px;
}
.team .boxes .box{
	width:350px;
	height:100%;
	position: relative;
	margin:auto;

}
@media (min-width:320px) and (max-width:576px){
	.team .boxes .box{
		grid-column:1/-1;
		margin-top:80px;
	}
}
.team .boxes .box img{
	width:100px !important;
	height:100px !important;
	position: absolute;
	top:-20px;
	left:50%;
	border-radius:50%;
	transform:translate(-50%,-50%);
	z-index:1;
	border:1px solid #b1c4c4;
}

.team .boxes .box .content{
	background-color:#789493;
	padding:40px;
	color:#fff;
	border-radius:7px;
	box-shadow:5px 10px 15px #777;
}
.team .boxes .box .content p{
	letter-spacing: 2px;
	margin-top:15px;
	line-height: 1.4;
}
.team .boxes .box .content .soial ul{
	display:grid;
	grid-template-columns:repeat(auto-fit,minmax(8%,1fr));
	margin-top:15px;
}

/* Start brand */
.brand{
	grid-column:2/12;
	/* background-color:darkgreen; */
	display:grid;
	grid-template-columns:repeat(2,1fr);
}
.brand .sec-header{
	grid-column:1/-1;
}
.brand .boxes{
	grid-column:1/-1;
	display:grid;
	grid-template-columns:repeat(auto-fit, minmax(8%,1fr));
	justify-items: center;
	align-items: center;
}
@media (min-width:320px) and (max-width:576px){
	.brand .boxes{
		grid-template-columns: 1fr 1fr;
		gap:10px;
	}
}
.brand .boxes .box{
	width:100px;
	height:100px;
	text-align:center;
	line-height: 100px;
	background-color:#789493;
	color:#fff;
	border-radius:7px;
	box-shadow:5px 10px 15px #333;
	position: relative;
}

@media (min-width:320px) and (max-width:576px){
	.brand .boxes .box:nth-child(5){
		grid-column:1/3;
		grid-row:3/4;
	}
}
.brand .boxes .odd{
	background-color:#4D6766;
	color:#fff;
}
/* Start contact */
.contact{
	grid-column:2/12;
	/* background-color:darkorchid; */
	display:grid;
	grid-template-columns:1fr 1fr;
}
.contact .sec-header{
	grid-column:1/-1;
}
.contact .boxes{
	grid-column:1/-1;
	display:grid;
	grid-template-columns:repeat(auto-fit,minmax(350px,1fr));
}

@media (min-width:320px) and (max-width:576px){
	 iframe{
		width:403px !important;
	}
}
.contact .boxes .box form{
	background-color:#88a3a2;
	padding:80px;
	height:100%;
}

.contact .boxes .box form input{
	width:100%;
	padding:10px;
	margin-bottom:10px;
}
.contact .boxes .box form .btn-send{
	outline: none;
	border:none;
	display:inline-block;
	padding:15px 30px;
	border:2px solid #88a3a2;
	border-radius: 7px;
	margin-top:10px;
	cursor: pointer;
}
/* Start footer */
footer{
	grid-column:1/-1;
	background-color:#4D6766;
	color:#fff;
	padding:10px;
	text-align:center;
}

/* Start scrollTop */
#scrollTop{
  position:fixed;
  right:30px;
  bottom:30px;
  padding:15px;
  border-radius:5px;
  background-color:#4D6766;
  color:#fff;
  cursor:pointer;
  display:none;
  z-index:3000000;
}
