@charset "UTF-8";
*{
	margin: 0;
	padding: 0;
	font-family:"Myriad Pro", "sans-serif";
}
.container{
	width: 100%;
	min-height: 100vh;

	box-sizing: border-box;
	overflow: hidden;
}
.navigation{
	width: 100%;
	display: flex;
	align-items: center;
}
.logo{
	width: 75px;
	cursor: pointer;
	margin: 30px 0;
	padding-left: 10px;
}
.menu-logo{
	width: 45px;
	margin-left: 10px;
	cursor: pointer;
	display: none;
}
nav{
	flex: 1;
	text-align: right
}
nav ul li{
	list-style: none;
	display: inline-block;
	margin-right: 30px;
}
nav ul li a{
	text-decoration: none;
	color: white;
	font-size: 18.3px;
	letter-spacing: 1px;
}
nav ul li a:hover{
	color:coral;
}
.content{
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 100px 0;
}
.header {

	margin: 0px;
		padding-left: 5%;
	padding-right: 5%;
	padding-bottom: 0.1%;
}
video{
	position: fixed;
	top: 100%;
	bottom: 10%;
	left: 100%;
	z-index: -10;
	filter: blur(1px);
	transform: translateX(-50%) translateY(-50%);
}
.column-1{
	flex-basis: 100%;
		padding-left: 5%;
	padding-right: 5%;
	position: relative;
	margin-left: 0px;
}
.column-1 h2{
	font-size: 50px;
	color:#84F6D4;
}
.column-1 p{
	font-size: 17px;
	letter-spacing: 0.8px;
	color:white;
}
.column-1 h3{
	font-size: 30px;
	color:white;
	font-weight: 100;
	margin: 20px 0 10px;
}
.column-1 h4{
	margin: 31px 0;
	font-size: 20px;
	color:white;
}

button{
    width: 140px;
    border: 0;
    padding: 12px 10px;
    font-size: 16.5px;
    outline: none;
    color: aliceblue;
    background: linear-gradient(to right, #80D0C7, #85FFBD);
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
	letter-spacing: 0.6px;
	transition: width 0.5s;
}
button img{
	width: 18px;
	display: none;
}
button:hover img{
	display:block;
}
button:hover{
	width: 160px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	
}
.column-1::after{
	content: '';
	height: 57%;
	background:#FFFFFF;
	position: absolute;
	

}
.column-2{
	position: relative;
	flex-basis: 60%;
	width: 500px;
	height: 100%;
	display: flex;
	align-items: center;
}
.experience{
	padding: 0;
	margin-top: 8%;
	margin-bottom: 10%;
}
.icons{
	margin-bottom: 7%;
	margin-top: 2%;
}

.title-heading{
	text-align: center;
	text-transform: uppercase;
	margin-bottom: 10rem;
	color: black;
	margin-left: 7%;
	margin-right:7%;
}
.title-heading h3{
	font-size: 1.4rem;
	color: #8EC5FC;
}
.title-heading h1{
	font-family: Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
	font-size: 2rem;
	color:#84F6D4;
	margin: 1rem 0 1rem;

}
.title-heading p{
	text-transform: lowercase;
	margin-top: 0px;
	font-size: 20px;
	color: #8EC5FC;
}
.grid{
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
	grid-gap: 2.6rem;
	margin-left: 7%;
	margin-top: 1%;
	margin-right:7%;
}
.grid-item{
	height: 15rem;
	padding: 1rem;
	padding-top: 0px;
	color: black;
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	cursor: pointer;
	z-index: 1;
}
.grid-item h1{
	margin-bottom: 10%;
	margin-top: 0px;
}
.grid-item::before{
	content: "";
	border-radius: 8px;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background:linear-gradient(#8EC5FC, #80D0C7);
	z-index: -1;
	
}


@media only screen and (max-width:700px){
	nav ul{
		width: 100%;
		background: linear-gradient(#2AF598, #85FFBD);
		position: absolute;
		top: 75px;
		right: 0;
		z-index: 2;
		filter:opacity(92%);
	}
	nav ul li{
		display: block;
		margin-top: 10px;
		margin-bottom: 10px;
	}
	nav ul li a{
		color:white;
	}
	.menu-logo{
		display: block;
	}
	#menulist{
		overflow: hidden;
		transition: 0.5s;
		
	}
	.content{
		flex-direction:  column-reverse;
		margin: 50px 0;
	}
	.column-2{
		flex-basis: 100%;
		margin-bottom: 50px;
	}
	.column-2 .product{
		width: 77%;
	}
	.box{
		transform: translateX(75px);
	}
	.column-1{
		flex-basis: 100%;
	}
	.column-1 h2{
		font-size: 35px;
	}
	.column-1 h3{
		font-size: 15px;
	}
}






