﻿@charset "UTF-8";

#secGallery .js_mdl_2_photos_open img {
	transition: all 0.5s ease;
	height: 360px;
    object-fit: cover;
}

#secGallery .js_mdl_2_photos_open img:hover {
	transform:scale(1.1);
}

.js_mdl_2_photos_open:hover{
	cursor: pointer;
}

.mdl_2_photos {
	display: none;
	height: 100vh;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 2;
}

.mdl_2_photos_bg {
	background: rgba(0,0,0,0.9);
	height: 100vh;
	position: absolute;
	width: 100%;
}

.mdl_2_photos_cnt {
	left: 50%;
	padding: 0;
	position: absolute;
	top: 50%;
	transform: translate(-50%,-50%);
	width: 50%;
	text-align: center;
}

.mdl_2_photos_cnt > img {
	max-height: 85vh;
	/* width: auto; */
	object-fit: contain;
}

#secTop_2 {
	height: 64px;
	padding: 10px 0 5px;
	background-color: rgb(135, 30, 255);
}

@media screen and (max-width:767px) {
	
	#secGallery .js_mdl_2_photos_open img {
		height: 180px;
	}

	.mdl_2_photos_cnt {
		width: 85%;
		min-width: 0;
	}

	.mdl_2_photos_cnt > img {
		max-height: 90vh;
	}

	#secTop_2 {
		height: 38px;
        padding: 8px 0 4px;
	}

}

@keyframes fadeIn {
	0% {
		opacity: 0
	}

	100% {
		opacity: 1
	}
}
