.freebie {
	padding: 13px 34px;
	border-radius: 52.5px;
	background-color: var(--beige);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 33px;
	margin-bottom: 55px;
}

.freebie_content {
	display: flex;
	align-items: center;
	gap: 16px;
}

.freebie_image img {
	width: 80px;
	height: 80px;
	border-radius: 12px;
	display: block;
}

.freebie_title {
	font-size: 20px;
	line-height: 24px;
	font-weight: 700;
	color: var(--pink);
}

.freebie_subtitle {
	margin-top: 6px;
}

.freebie_form {
	background-color: white;
	padding: 7px;
	flex: 1;
	border-radius: 50px;
	position: relative;
}

.freebie_email {
	width: 100%;
	border: 1px dashed #000;
	border-radius: 50px;
	background-color: white;
	padding: 3px 15px;
	font-size: 14px;
	line-height: 28px;
}

.freebie_submit {
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	font-size: 12px;
	line-height: 28px;
	padding: 4px 14px;
	display: flex;
	align-items: center;
	gap: 4px;
}

.freebie_submit:hover {
	transform: translateY(-50%) scale(1.03);
}

.freebie_submit:active {
	transform: translateY(-50%) scale(1.01);
}

.freebie_submit:before {
	content: '';
	display: block;
	width: 13px;
	height: 13px;
	background: url(../../img/paper-plane.svg);
}

.freebie_text {
	flex: 0 0 438px;
	max-width: 100%;
}

.freebie_form .error_message {
	position: absolute;
	bottom: -3px;
	transform: translateY(100%);
	font-size: 12px;
	left: 10px;
}

@media (max-width: 991px) {
	.freebie_content {
		max-width: 50%;
	}	
}

@media (max-width: 767px) {
	.freebie {
		background-color: transparent;
		border-radius: 0;
		flex-direction: column;
		padding: 0;
		width: 340px;
		max-width: 100%;
		margin-left: auto;
		margin-right: auto;
		gap: 20px;
	}

	.freebie_content {
		flex-direction: column;
		max-width: 100%;
		text-align: center;
	}

	.freebie_text {
		flex: 1;
	}

	.freebie_subtitle {
		font-size: 14px;
		line-height: 17px;
	}

	.freebie_form {
		width: 100%;
	}
}
