/* SECTION BTN */
#section-btn {
	position: relative;
	/*height: 60vh;*/
	min-height: 60vh;
	padding: 2rem 0;
	z-index: 1;
}

#section-btn .flex-container {
	flex-direction: column;
}

#section-btn h2 {
	font-size: 5rem;
	letter-spacing: 0.1rem;
	font-weight: 500;
}

#section-btn .flex-container > div {
	display: flex;
}

#section-btn a {
	margin: 0 0.4rem;
}

#section-btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url('../images/backgrounds/pexels-mikael-blomkvist-6476254.jpg');
	background-size: cover;
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-position: center center;
	opacity: 0.51;
	z-index: -1;
}

#section-btn.subscribe::before {
	display: none !important;
}

#section-btn.talk {
	justify-content: center;
	text-align: center;
}

#section-btn.talk a {
	display: flex;
	justify-content: center;
	align-items: center;
}

#section-btn.talk a i {
	margin-right: 1rem;
}

input {
	border: 0.1rem solid rgb(220, 219, 235);
	border-radius: 1rem;
	font-size: 1.3rem;
	padding: 1rem;
	color: #000;
	transition: all 0.15s ease-in;
}

input[type='email'] {
	min-width: 30rem;
	margin-bottom: 2rem;
}

input:focus {
	border-color: var(--secondary-color);
	box-shadow: 0px 0px 8px 2px var(--secondary-color);
	outline: none;
}

input::placeholder {
	color: #999;
	opacity: 0.4;
}

#section-btn.primary-bg {
	height: 60vh;
}

