* {
	margin: 0;
	padding: 0;
	font-family: 'Poppins', sans-serif;
	box-sizing: border-box;
	outline: none;
}

:root{
	--themeRed: #ffffff;
	--gray: #efefef;
}
body
{
background: linear-gradient(90deg,#ffb300 10%,#ffffff 30%,#ffffff 60%, #048832 100%);
}
.fullC
{
width: 100%;
}
.container{
	padding-top: 0%;
	text-align: center;
	 width: 100%;
	 margin: auto;
}        
header{
	width: 100%;
	height: 75px;
	background-color: rgba(60, 60, 60, 0.6);
	position:relative;
	z-index: 2;
}

header .container{
	display: flex;
	justify-content: space-between;
}
header .container .logo{
	
	padding: 15px 0;
	height: 75px;
	
}
header .container .logo img{
	padding: 110%;
	height: 10vh;
	
}
header nav ul{
	list-style-type: none;

}
header nav ul li{
display: inline-block;
}

header nav ul li a{
	display: inline-block;
	line-height: 75px;
	padding:0 15px ;
	text-decoration: none;
	text-transform: capitalize;
	font-size: 16px;
	color: rgb(0, 0, 0);
	transition: 0.3s;

}
header nav ul li a:hover{
background-color:var(--themeRed) ;
}
.wrapper {
    width: 100%;
    padding: 6% 5% 3% 5%;
    text-align: center;
}
.section-header{
	text-transform: uppercase;
	padding-bottom: 30px;
	font-size: 35px;
	color: #262626;
	letter-spacing: 3px;
}
.content{
	padding: 10%;
}
.content h2{
	font-size: 30px;
	text-transform: uppercase;
	margin-bottom: 15px;
}
.content p{
	line-height: 1.5;
}
.main-content{
	width: 100%;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px,1fr));
	grid-row-gap: 25px;
	grid-column-gap: 25px; ;
}
.main-content .box{
	position: relative;
	cursor: pointer;
	margin-bottom: 15px;
	box-shadow: 15px 15px 40px rgb(0, 0, 0,0.15);
	height: 250px;
	overflow: hidden;
}
.main-content .box::before{
	content: '';
	position:absolute;
	top: 0;
	left: 0;
	width: 5px;
	height: 100%;
	transition: all 0.5s ease-in-out;
}
.main-content .box:hover::before{
	top:0;
	right: calc(100% - 5px);
	z-index: 8;
}
.main-content .box img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.main-content .box .img-text{
	position: absolute;
	display: flex;
	justify-content: center;
	align-items: center;
	background: rgb(241, 255, 255);
	width: 100%;
	height: 100%;
	top:0;
	right: 100%;
	transition: all 0.5s ease-in-out;
}
.main-content .box:before .img-text{
	top:0;
	right: 0;
}













































