/* =========================================================
   Certification Section
   - ¸ð¹ÙÀÏ °¡·Î½ºÅ©·Ñ ¹æÁö
   - PC hover È®´ë À¯Áö
   - Swiper ¿µ¿ª ¾ÈÁ¤È­
========================================================= */

*,
*::before,
*::after {
	box-sizing: border-box;
}

/* ÆäÀÌÁö ÀüÃ¼ °¡·Î½ºÅ©·Ñ ¹æÁö º¸Á¶ */
html,
body {
	max-width: 100%;
	overflow-x: hidden;
}

/* ¼½¼Ç ÀÚÃ¼°¡ ¸ð¹ÙÀÏ¿¡¼­ È­¸é ¹ÛÀ¸·Î ¹Ð¸®Áö ¾Êµµ·Ï Ã³¸® */
#certification {
	max-width: 100%;
	overflow: hidden !important;
}

/* ¹è°æ ¿µ¿ª */
.certificationSwiperContainer {
	background-image: url('/images/certification-img.jpg');
	background-size: cover;
	background-position: center;
	background-repeat: repeat-x;
	position: relative;

	width: 100%;
	max-width: 100%;
	overflow: hidden !important;
}

/* Swiper º»Ã¼ */
.certificationSwiper {
	width: 100%;
	max-width: 100%;

	/*
		±âÁ¸ padding: 60px 30px 140px 30px;
		¸ð¹ÙÀÏ¿¡¼­ width 100% + ÁÂ¿ì padding ¶§¹®¿¡ °¡·Î½ºÅ©·ÑÀÌ »ý±æ ¼ö ÀÖ¾î
		ÁÂ¿ì paddingÀº Á¦°ÅÇÏ°í ³»ºÎ slide paddingÀ¸·Î Ã³¸®
	*/
	padding: 50px 0 120px 0;
	overflow: hidden !important;
}

/* Swiper wrapper */
.certificationSwiper .swiper-wrapper {
	align-items: center;
}

/* °¢ ½½¶óÀÌµå */
.certificationSwiper .swiper-slide {
	display: flex;
	justify-content: center;
	align-items: center;
	height: auto;
	position: relative;
	z-index: 1;

	/*
		½½¶óÀÌµå ³»ºÎ ¿©¹éÀ¸·Î ±×¸²ÀÚ ¿©À¯ È®º¸
		´Ü, ¸ð¹ÙÀÏ¿¡¼­´Â È®´ë È¿°ú¸¦ ²ô±â ¶§¹®¿¡ °úÇÑ ¿©¹é ºÒÇÊ¿ä
	*/
	padding: 30px 12px 50px 12px;
	overflow: visible;
}

/* ÀÌ¹ÌÁö */
.certificationSwiper .swiper-slide img {
	display: block;
	width: 100%;
	max-width: 100%;
	height: auto;
	background-color: #fff;
	cursor: pointer;
	transition:
		transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
		box-shadow 0.4s ease;
}

/* PC¿¡¼­¸¸ hover È®´ë Àû¿ë */
@media (hover: hover) and (pointer: fine) and (min-width: 1024px) {
	#certification {
		overflow: visible !important;
	}

	.certificationSwiperContainer,
	.certificationSwiper,
	.certificationSwiper .swiper-wrapper,
	.certificationSwiper .swiper-slide {
		overflow: visible !important;
	}

	.certificationSwiper .swiper-slide:hover {
		z-index: 30;
	}

	.certificationSwiper .swiper-slide:hover img {
		transform: scale(1.15) translateY(-10px);
		box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
		transform-origin: center top;
	}
}

/* ¸ð¹ÙÀÏ ÃÖÀûÈ­ */
@media (max-width: 767px) {
	#certification {
		margin-left: 20px;
		margin-right: 20px;
		max-width: calc(100% - 40px);
		overflow: hidden !important;
		border-radius: 40px;
	}

	.certificationSwiperContainer {
		overflow: hidden !important;
	}

	.certificationSwiper {
		padding: 30px 0 70px 0;
		overflow: hidden !important;
	}

	.certificationSwiper .swiper-wrapper {
		overflow: visible;
	}

	.certificationSwiper .swiper-slide {
		padding: 10px 16px 30px 16px;
		overflow: hidden;
	}

	.certificationSwiper .swiper-slide img {
		width: 100%;
		max-width: 280px;
		margin: 0 auto;
	}

	/* ¸ð¹ÙÀÏ¿¡¼­´Â hover È®´ë Á¦°Å */
	.certificationSwiper .swiper-slide:hover img {
		transform: none;
		box-shadow: none;
	}
}