@charset "utf-8";
/* CSS Document */

/* Media - Videos */

* {
    margin: 0;
    padding: 0;
}

body {
	font-family: Arial, Verdana, sans-serif;
	background-color:#000000;
	width: 100%;
}

/* Section */

section {
	width: 100%;
	max-width: 960px;
	min-height: 850px;
	margin: 50px auto;
}

.zoom-effect-container {
    float: left;
    position: relative;
    width: 480px;
	height: 320px;
 	overflow: hidden;
}

.item {
  	position: absolute;
  	top: 0;
  	left: 0;
}

.zoomcard {
	overflow: hidden;
	display: block;
	border-radius: 5px;
}

.item img {
  	-webkit-transition: 0.6s ease;
  	transition: 0.6s ease;
}

.zoom-effect-container:hover .item img {
  	-webkit-transform: scale(1.1);
  	transform: scale(1.1);
}

@media screen and (max-width: 960px) {
.zoom-effect-container {
	width: 100%;
}

.item {
	position: relative;
	display: flex;
	justify-content: center;
  }
}

@media screen and (max-width: 450px) {
section {
	width: 90%;
}

.item img {
	width: 100%;
  }
}

@media screen and (max-width: 375px) {
.zoom-effect-container {
	height: 250px;
  }
}	