*{
	margin: 0;
	box-sizing: border-box;
	text-transform: capitalize;
	font-family: verda, Geneva, Tohama, sans-serif;
	font-weight: normal;
}

body
{
	background-color: #fff;
}
.heading
{
	color: #212121;
	font-size: 40px;
	text-align: center;
	padding: 10px;
	position: relative;
	top: 60px;
}
.conteneur
{
	display: grid;
	grid-template-columns: 2fr 1fr;
	grid-gap: 15px;
	align-items: flex-start;
	padding: 5px 5%;
	position: relative;
	top: 70px;
}
.conteneur .main-image
{
	background-color: #fff;
	border-radius: 5px;
	padding: 10px;
}
.conteneur .main-image img
{
	width: 100%;
	border-radius: 5px;
	height: 450px;
}
.conteneur .main-image .title
{
	color: #333;
	font-size: 23px;
	padding-top: 15px;
	padding-bottom: 15px;
}

.conteneur .image-list
{
	background-color: #fff;
	border-radius: 5px;
	height: 520px;
	overflow-y: scroll;
}
.conteneur .image-list .form
{
	width: 28%;
	height: 60px;
	background-color: #fff;
	position: absolute;
	margin: 0px;
	z-index: 8;

}
.conteneur .image-list select
{
	width: 80%;
	height: 45px;
	border-radius: 5px;
	border: 1px solid rgba(0,0,0,.1);
	font-size: 18px;
}
.conteneur .image-list input
{
	width: 45px;
	height: 45px;
	background-color: #04b6b7;
	border-radius: 5px;
	border:1px solid #333;
	font-size: 18px;
	color: #fff;
	border: 1px solid rgba(0,0,0,.1);
}
.conteneur .image-list:-webkit-scrollbar
{
	width: 7px;
}

.conteneur .image-list:-webkit-scrollbar-track
{
	background-color: #ccc;
	border-radius: 50px;
}

.conteneur .image-list:-webkit-scrollbar-thumb
{
	width: 100px;
	border-radius: 50px;
}

.conteneur .image-list .image1 img
{
	width: 100px;
	border-radius: 5px;
}

.conteneur .image-list .image1
{
	display: flex;
	align-items: center;
	grid-gap: 15px;
	background-color: #f7f7f7;
	border-radius: 5px;
	margin: 10px;
	position: relative;
	top: 75px;
	padding: 10px;
	border: 1px solid rgba(0,0,0,.1);
	cursor: pointer;
}

.conteneur .image-list .image1:hover
{
	background: #eee;
}

.conteneur .image-list .image1.active
{
	background: #04b6b7;
	color:#fff;
}
.conteneur .image-list .image1 .title
{
	color: #04b6b7;
	font-size: 17px;
}
.footer
{
	margin-top: 130px;
}
/*-------------------------------------*/

@media (max-width: 991px)
{
	.heading
	{
		color: #cc3d2e;
		font-size: 26px;
		text-align: center;
		padding: 10px;
		position: relative;
		top: 50px;
	}
	.conteneur
	{
		grid-template-columns: 1.5fr 1fr;
		padding: 5px;
		position: relative;
		top: 60px;
	}
	.conteneur .image-list .form
	{
		width: 98%;
		height: 60px;
		background-color: #fff;
		position: absolute;
		margin: 0px;
		z-index: 8;
	}
	.conteneur .image-list select
	{
		width: 80%;
		height: 45px;
		border-radius: 5px;
		border: 1px solid rgba(0,0,0,.1);
		font-size: 18px;
	}
	.conteneur .image-list input
	{
		width: 45px;
		height: 45px;
		background-color: #04b6b7;
		border-radius: 5px;
		border:1px solid #333;
		font-size: 18px;
		color: #fff;
		border: 1px solid rgba(0,0,0,.1);
	}
	.conteneur .main-image img
	{
		width: 100%;
		border-radius: 5px;
		height: 300px;
	}
	.conteneur .image-list
	{
		background-color: #fff;
		border-radius: 5px;
		height: 400px;
		overflow-y: scroll;
	}
	.footer
	{
		margin-top: 100px;
	}
}

@media (max-width: 768px)
{
	.heading
	{
		color: #444;
		font-size: 22px;
		text-align: center;
		padding: 10px;
	}
	.conteneur
	{
		grid-template-columns: 1fr;
		padding: 5px;
	}
	.conteneur .main-image img
	{
		width: 100%;
		border-radius: 5px;
		height: 300px;
	}
	.conteneur .image-list .form
	{
		width: 98%;
		height: 60px;
		background-color: #fff;
		position: absolute;
		margin: 0px;
		z-index: 8;
	}
	.conteneur .image-list select
	{
		width: 80%;
		height: 45px;
		border-radius: 5px;
		border: 1px solid rgba(0,0,0,.1);
		font-size: 18px;
	}
	.conteneur .image-list input
	{
		width: 45px;
		height: 45px;
		background-color: #04b6b7;
		border-radius: 5px;
		border:1px solid #333;
		font-size: 18px;
		color: #fff;
		border: 1px solid rgba(0,0,0,.1);
	}
	.conteneur .image-list
	{
		background-color: #fff;
		border-radius: 5px;
		height: 450px;
		overflow-y: scroll;
	}
	.footer
	{
		
		margin-top: 150px;
		
	}
}

