.theme-row-fullwidth {
	width: 100% !important;
}

.photo-block {
	overflow: hidden;
}

.photo-block .image-container {
	position: relative;
	overflow: hidden;
}

.photo-block .image-container.image-container-1 {
	width: 400px;
	height: 600px;
}

.photo-block .image-container.image-container-2 {
	width: 350px;
	height: 450px;
	position: absolute;
	right: 10%;
	bottom: -90px;
}

.photo-block .image-container span {
	width: 100%;
	height: 100%;
	display: block;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	transition: .2s;
	-webkit-transition: .2s;
	-moz-transition: .2s;
	-ms-transition: .2s;
	-o-transition: .2s;
}

.photo-block:hover::after {
	top: 5%;
	bottom: 15%;
}

.photo-block .image-container:hover span {
	transform: scale(1.1);
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-ms-transform: scale(1.1);
	-o-transform: scale(1.1);
}

.photo-block::after {
	content: '';
	width: 100%;
	height: 80%;
	background: #9FFFA4;
	display: block;
	position: absolute;
	top: 10%;
	z-index: -1;
	transition: .2s;
	-webkit-transition: .2s;
	-moz-transition: .2s;
	-ms-transition: .2s;
	-o-transition: .2s;
}

@media (max-width: 980px) {
	.photo-block .image-container.image-container-1 {
		width: 350px;
		height: 450px;
	}

	.photo-block .image-container.image-container-2 {
		width: 250px;
		height: 350px;
		right: 20%;
		bottom: -50px !important;
	}
}

@media (max-width: 500px) {
	.photo-block .image-container.image-container-1 {
		width: 250px;
		height: 350px;
	}

	.photo-block .image-container.image-container-2 {
		width: 200px;
		height: 250px;
		right: 5%;
	}
}