/* Subscribe */
.subscribe-section {
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
	background-color: var(--main-color);
	color: var(--white-color);
}

.subscribe-section:before {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background: var(--main-color);
	opacity: .6;
}

.subscribe {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	height: 500px;
	padding: 20px 0;
	position: relative;
}

.subscribe__inner {
	width: 100%;
}

.subscribe__content {
	max-width: 670px;
	margin: 0 auto;
}

.subscribe h2 {
	margin-bottom: 43px;
	line-height: 1.5;
	letter-spacing: 0.1em;
}

.subscribe__form > .row {
	flex-wrap: nowrap;
}

.subscribe__form .form-control:not(.error):not(:focus-visible) {
	border-color: var(--white-color);
}

@media (min-width: 1200px) {
	.subscribe__form .form-control {
		padding: 19px 19px;
		height: auto;
		font-size: 13px;
		line-height: 20px;
	}

	.subscribe__btn {
		border-width: 2px;
		padding: 18px 28px;
		line-height: 20px;
	}
}

@media (max-width: 1199.98px) {
	.subscribe {
		height: 400px;
	}

	.subscribe__content {
		max-width: 512px;
	}

	.subscribe h2 {
		margin-bottom: 30px;
	}
}

@media (max-width: 575.98px) {
	.subscribe__form > .row {
		flex-wrap: wrap;
		--bs-gutter-y: 20px;
	}

	.subscribe__form .btn {
		width: 100%;
	}
}
/* ! Subscribe */