.lang {
	position: relative;
}

.dropdown-menu {
	position: absolute;
	top: 30px;
	right: 0;
}

.top-img {
	width: 100%;
	height: auto;
}

.carousel-wrap {
	height: 800px;
}

.li-item {
	border-radius: 10px;
}

.rounded-b {
	border-bottom: 1px solid #EAEAEA;
	border-left: 1px solid #EAEAEA;
	border-right: 1px solid #EAEAEA;
}

.box {
	box-shadow: inset 0px 1px 30px 0px rgba(115, 121, 255, 1);
	border-radius: 40px;
	border: 1px solid rgba(178, 188, 255, 1);
	background-color: #EEF0FC;
}

.ques-img {
	width: 180px;
	height: 180px;
}

.title-text {
	font-size: 32px;
	color: #000;
}

.content-text {
	font-size: 26px;
	color: #65676C;
}

.box-item {
	min-height: 120px;
	display: flex;
	justify-content: center;
	flex-direction: column;
}

.carousel-container {
	scroll-snap-type: x mandatory;
	-ms-overflow-style: none;
	/* IE and Edge */
	scrollbar-width: none;
	/* Firefox */
}

.carousel-container::-webkit-scrollbar {
	display: none;
	/* Chrome, Safari, Opera */
}

.carousel-item {
	scroll-snap-align: start;
}

.slide-in {
	animation: slideIn 0.5s ease-out;
}

@keyframes slideIn {
	from {
		opacity: 0.5;
		transform: translateX(20px);
	}

	to {
		opacity: 1;
		transform: translateX(0);
	}
}

.slide-out {
	animation: slideOut 0.5s ease-out;
}

@keyframes slideOut {
	from {
		opacity: 1;
		transform: translateX(0);
	}

	to {
		opacity: 0.5;
		transform: translateX(-20px);
	}
}

.rectangle-hover:hover {
	transform: translateY(-5px);
	box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.left-wrap {
	display: flex;
	flex-direction: column;
}

.cam-img {
	width: 30px;
	height: 30px;
}

.right-wrap {
	display: flex;
	flex-direction: column;
}


.slide-transition {
	transition: transform 0.5s ease-in-out;
}

.indicator {
	width: 40px;
	height: 4px;
}

.indicator-active {
	background-color: #4f46e5;
}

.indicator-inactive {
	background-color: #e5e7eb;
}

.inquiry-item {
	width: 100%;
	background-color: #f3f4f6;
	padding: 10px 15px;
	border-radius: 20px;
	cursor: pointer;
}

.inquiry-item:hover {
	background-color: #e5e7eb;
}

.inquiry-item-title {
	font-size: 16px;
	color: #222222;
	flex: 1 1 0%;
}

.inquiry-div {
	margin-left: auto;
	margin-right: auto;
	background-color: white;
	border-radius: 20px;
	box-shadow: 0 20px 25px -5px rgba(168, 85, 247, 0.2), 0 8px 10px -6px rgba(168, 85, 247, 0.2);
	padding: 1rem;
	width: 80%;
}

.inquiry-desc {
	margin-top: 0.5rem;
	font-weight: 500;
	color: #999999;
}

.inquiry-item .icon{
    transition: all 0.3s ease-in-out;
}
.inquiry-item.on .icon{
    transform: rotate(180deg);
    transition: all 0.3s ease-in-out;
}