@charset "utf-8";

.intro-wrap {
	width: 100%;
	height: 100%;
	overflow: hidden;
	position: relative;
}

.title-area {
	position: absolute;
	top: 50%;
	left: 138px;
	transform: translateY(-50%);
}

.title-area p {
	color: #fff;
	margin-top: 38px;
	font-size: 24px;
	font-weight: 500;
}

.intro-bg {
	width: 100%;
	height: 100%;
}

.slick-list {
	width: 100%;
	height: 100%;
}

.slick-track {
	width: 100%;
	height: 100%;
}

.bg-slide {
	width: 100%;
	height: 100%;
	position: relative;
}

.bg-slide-img {
	position: relative;
	z-index: 0;
	width: 100%;
	height: 100%;
}

.bg-slide-img::after {
	content: "";
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.1);
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	right: 0;
	z-index: 1;
}

.bg-slide-img img {
	width: 100%;
	height: 100%;
    transition: all 3s cubic-bezier(0.7, 0, 0.3, 1);
    transform: scale(1.2);
	object-fit: cover;
}

.bg-slide-img.slick-active img {
	transform: scale(1);
}

.logo-small {
	position: absolute;
	bottom: 55px;
	left: 138px;
}

.section-wrap {
	display: flex;
	gap: 0 1px;
	position: absolute;
	right: 0;
	top: 0;
	height: 100%;
}

.section-wrap section {
	width: 480px;
	height: 100%;
	background: rgba(0, 0, 0, 0.4);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	color: #fff;
	transition: all .3s ease-in-out;
}

.section-wrap section h3 {
	font-size: 56px;
	font-weight: 500;
	margin: 24px 0 31px 0;
}

.section-wrap section p {
	font-size: 20px;
	line-height: 30px;
	text-align: center;
	color: #D6D6D6;
}

.section-wrap section a {
	display: block;
	background: #C8A445;
	text-align: center;
	padding: 8px 0;
	width: 168px;
	text-transform: uppercase;
	transition: all .3s ease-in-out;
	margin-top: 107px;
}

.section-wrap section:hover {
	background: rgba(200, 164, 69, 0.8);
}

.section-wrap section:hover a {
	background: #fff;
	color: #C8A445;
}

.section-wrap section:hover p {
	color: #fff;
}