.intro-tout {
	background: #e4e4e4;
	padding: 0;
}
.intro-tout .container {
	position: relative;
}
.intro-tout .intro-tout-content {
	padding: 60px 0;
}

.intro-tout-caption {
	color: #a7a7aa;
	display: flex;
	align-items: center;
	transition: all 0.3s ease;
}
.intro-tout-caption .icn-bg-circle {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background-color: #a7a7aa;
	margin-left: 20px;
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.2s ease;
}
.intro-tout-caption .icn-bg-circle svg {
	fill: #fff;
}
.intro-tout-caption:hover {
	color: #bcbcbe;
}
.intro-tout-caption:hover .icn-bg-circle {
	transform: scale(1.2);
	background-color: rgba(167, 167, 170, 0.75);
}
.intro-tout-caption .caption-content span {
	display: block;
}

.intro-tout-feature {
	display: flex;
	align-items: center;
	padding: 40px 0;
}
.intro-tout-feature img {
	max-width: 100%;
}
.intro-tout-feature .intro-tout-image {
	display: block;
	transition: opacity 0.4s ease;
	width: 100%;
}
.intro-tout-feature .intro-tout-image:hover {
	opacity: 0.75;
}

@media (min-width: 768px) {
	.intro-tout .container {
		display: flex;
	}
	.intro-tout .intro-tout-column {
		width: calc(100% - 360px);
		flex: 0 0 auto;
	}
	.intro-tout .intro-tout-column + .intro-tout-column {
		margin-left: auto;
		width: 320px;
	}
	.intro-tout .search-bar-form {
		padding: 0;
	}
	.intro-tout .search-bar-form input {
		height: 50px;
		padding: 4px 16px;
		font-size: 1rem;
	}
}
@media (min-width: 880px) {
	.intro-tout .intro-tout-column {
		width: calc(100% - 440px);
	}
	.intro-tout .intro-tout-column + .intro-tout-column {
		margin-left: auto;
		width: 400px;
	}
}
@media (min-width: 1024px) {
	.intro-tout .intro-tout-column {
		width: calc(100% - 540px);
	}
	.intro-tout .intro-tout-column + .intro-tout-column {
		margin-left: auto;
		width: 500px;
	}
}
@media (max-width: 767px) {
	.intro-tout .intro-tout-feature {
		max-width: 360px;
		width: 100%;
		margin: 0 auto;
	}
	.intro-tout .intro-tout-content {
		padding-bottom: 30px;
	}
	.intro-tout .intro-tout-content h1, .intro-tout .intro-tout-content .content {
		text-align: center;
	}
	.intro-tout .intro-tout-content .content {
		margin-bottom: 20px;
	}
	.intro-tout .intro-tout-content .intro-tout-caption {
		width: 100%;
		justify-content: center;
	}
}
.intro-tout .search-bar-form {
	display: flex;
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translate(-50%, 50%);
	width: 100%;
	padding: 0 15px;
}
.intro-tout .search-bar-form .search-input-wrap {
	position: relative;
	flex: 1 0 auto;
}
.intro-tout .search-bar-form input {
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
	border: none;
	height: 42px;
}
.intro-tout .search-bar-form .btn {
	appearance: none;
	display: flex;
	align-items: center;
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
	padding: 5px 20px;
	background-color: #224D61;
}
.intro-tout .search-bar-form .btn .svg-group {
	margin: 0;
}
.intro-tout .search-bar-form .btn svg {
	display: block;
	fill: #fff;
}
.intro-tout .search-bar-form .search-input-clear {
	position: absolute;
	top: 50%;
	right: 10px;
	transform: translateY(-50%);
	border-radius: 50%;
	width: 20px;
	height: 20px;
	background: #c4c5c5;
	border: none;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.2s ease;
	display: none;
	cursor: pointer;
}
.intro-tout .search-bar-form .search-input-clear .svg-group {
	display: flex;
}
.intro-tout .search-bar-form .search-input-clear svg {
	fill: #fff;
}
.intro-tout .search-bar-form .search-input-clear.show {
	display: flex;
}
.intro-tout .search-bar-form .search-input-clear:hover {
	background: #e4e4e4;
}