/* Subscribe */
.subscribe-section {
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
}

.subscribe-section:before {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0);
}

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

.subscribe__inner {
	width: 100%;
}

.subscribe__content {
	max-width: 640px;
}

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

.subscribe__form {
	max-width: 512px;
}

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

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

@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 */