@charset "UTF-8";
.box_top {
	margin-top: 300px;
}

.box_link {
	padding: 150px 0 50px;
}

.box_link a .box_links {
	width: 100%;
	height: 100px;
	margin-top: 0px;
	padding-top: 14px;
}

.box_link a:hover .box_links {
	transform: scale(1.1);
}

.box_link a:active .box_links, .box_link a.active .box_links {
	color: var(--color_gold);
	-webkit-box-shadow: 0 0px 40px 0 rgba(0, 26, 58, 0.412);
	box-shadow: 0 0px 40px 0 rgba(0, 26, 58, 0.412);
	background-image: linear-gradient(45deg, #383838 0%, #4e5052 60%, #4c4d4e 100%);
	transition: all .3s ease-in-out;
	transform: scale(1);
}

.box_gallery a {
	text-decoration: none;
	color: var(--color_light);
}

.box_gallery a .box_gallery_item {
	position: relative;
	width: 100%;
	height: 230px;
	overflow: hidden;
	margin-top: 30px;
	margin-bottom: 14px;
	transition: all 3s ease-in-out;
	border-radius: 10px;
}

.box_gallery a .box_gallery_item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 2s ease-in-out;
	overflow: hidden;
	z-index: 0;
}

.box_gallery a:hover .box_gallery_item {
	-webkit-box-shadow: 0 20px 40px 0 rgba(0, 26, 58, 0.412);
	box-shadow: 0 20px 40px 0 rgba(0, 26, 58, 0.412);
	transition: all 4s ease-in-out;
	z-index: 1;
}

.box_gallery a:hover .box_gallery_item img {
	transform: scale(1.2);
	filter: contrast(1.2);
	transition: all 2s ease-in-out;
}

.box_gallery .box_gallery_title {
	display: inline-block;
	padding: 0 10px 10px;
}

.box_gallery a .over {
	opacity: 0;
	transition: all 0.3s ease-in-out;
}

.box_gallery a:hover .over {
	position: absolute;
	top: 0px;
	right: 0px;
	width: 100%;
	height: 100%;
	padding: 10px 20px;
	background-color: var(--color_gold);
	background-image: url(../../assets/img/logo.png);
	background-size: 100px;
	background-repeat: no-repeat;
	background-position: center;
	color: var(--color_dark2);
	font-size: 14px;
	font-weight: normal;
	opacity: 0.9;
	transition: all 0.3s ease-in-out;
}