﻿.hero_section.variant2 {
	padding: 140px 0;
	position: relative;
	display: flex;
	align-items: center;
}
.hero_section.variant2 .hero_bg {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: #000;
}
.hero_section.variant2 .hero_bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.hero_section.variant2 .container {
	position: relative;
}
.hero_section.variant2 .hero_text_content {
	width: 100%;
	margin: 0 auto 0 0;
	text-align: center;
}
.hero_section.variant2 .hero_subtitle {
	font-size: 18px;
	margin-top: 22px;
	margin-bottom: 0px;
	color: var(--white_color);
}
.hero_section.variant2 .hero_button {
margin-inline-end: 20px;
}
.hero_section.variant2 .hero_second_button {
	background: var(--active_color_second);
}
.hero_section.variant2 .btn_area {
	margin-top: 45px;
}
.hero_section.variant2 .hero_bg.Disable {
	background: transparent;
}
.hero_section.variant2 .hero_bg.Disable img {
	opacity: 1;
}
/* Responsiveness // Responsiveness // Responsiveness */
@media ( min-width: 1440px ) and ( max-width: 1920px ) {
	.hero_section.variant2 {
		min-height: 500px;
	}
}
@media ( min-width: 1920px ) {
	.hero_section.variant2 {
		min-height: 650px;
	}
}
@media (max-width: 991px) {
	.hero_section.variant2 {
		height: auto;
		padding: 80px 0;
	}
}
@media (max-width: 480px) {
	.hero_section.variant2 .btn_area {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
	}
	.hero_section.variant2 .hero_second_button {
		margin-inline-start: 0;
		margin-top: 20px;
	}
	.hero_section.variant2 .btn_area {
		align-items: center;
	}
}