﻿.maindesign .insert_container {
	margin: 50px 0;
}
.maindesign .movie_container {
	width: 100%;
	transition: 0.25s;
}
.maindesign .movie_container:hover {
	opacity: 0.75;
	cursor: pointer;
}
.maindesign .movie_container > video {
	width: 100%;
	height: auto;
}
.maindesign .img-items {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	margin-top: 75px;
}
.maindesign .img-item {
	margin-bottom: 30px;
	width: 48%;
}
.maindesign .img-item img {
	width: 100%;
	height: auto;
}


@media screen and (max-width:767px) {
	.maindesign .insert_container {
		margin: 30px 0;
	}
	.maindesign .img-items {
		margin-top: 50px;
	}
	.maindesign .img-item {
		width: 100%;
		margin-bottom: 15px;
	}
}