﻿.banner_3 .banner_inner {
	background-color: var(--main_color_second);
	display: flex;
	justify-content: space-between;
}
.banner_3 .left_box {
	padding: 50px 165px;
	width: 100%;
	display: flex;
	justify-content: space-between;
	flex-direction: column;
	align-self: center;
}
.banner_3 .banner_title {
	margin: 0;
	color: var(--title_color);
}
.banner_3 .banner_text {
	margin: 15px 0 0;
}
.banner_3 .banner_btn_flex {
	margin-top: 30px;
	display: flex;
	flex-wrap: wrap;
	column-gap: 15px;
}
.banner_3 .banner_btn {
	white-space: nowrap;
}
.banner_3 .right_box {
	align-self: stretch;
	width: 42%;
	flex-shrink: 0;
}
.banner_3 .right_box img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}
/* Responsiveness // Responsiveness // Responsiveness */
@media (max-width: 1199px) {
	.banner_3 .left_box {
		padding: 50px;
	}
}
@media (max-width: 991px) {
	.banner_3 .banner_inner {
		flex-direction: column-reverse;
	}
	.banner_3 .left_box {
		padding: 40px;
	}
	.banner_3 .right_box {
		width: 100%;
		height: 350px;
	}
}
@media (max-width: 767px) {
	.banner_3 .right_box {
		height: 290px;
	}
	.banner_3 .banner_title,
	.banner_3 .banner_text {
		text-align: center;
	}
	.banner_3 .banner_btn_flex {
		justify-content: center;
	}
}
@media (max-width: 480px) {
	.banner_3 .banner_btn:not(:last-child) {
		margin-bottom: 20px;
	}
}