.sendbymail {
	padding: 115px 0;
	background: #f1f2ed;
}

.sendbymail-wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	padding: 50px 60px;
	border: 5px solid #b0d2cc;
	position: relative;
	z-index: 2;
}

.sendbymail-wrapper:before {
	content: '';
	position: absolute;
	width: 380px;
	height: 380px;
	background: url(../images/bg-element-1.png) no-repeat center;
	background-size: contain;
	z-index: -1;
	bottom: -33px;
	right: 0;
}

.sendbymail-title {
	text-transform: uppercase;
	font-family: Yeseva One;
	font-size: 2rem;
	letter-spacing: 1px;
	position: relative;
}

.sendbymail-desc {
	padding-top: 15px;
	overflow: hidden;
	max-width: 700px;
}

.sendbymail-content {
	width: 100%;
}

.sendbymail input {
	max-width: 25rem;
}

@media screen and (max-width:980px) {
	.sendbymail-wrapper {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		padding: 40px 30px;
	}

	.sendbymail-wrapper:before {
		width: 300px;
		height: 300px;
		left: 50%;
		-webkit-transform: translateX(-50%);
		transform: translateX(-50%);
		right: auto;
		bottom: -5px;
	}

	.sendbymail-image {
		text-align: center;
	}
	.sendbymail-title {
		font-size: 1.5rem;
		letter-spacing: 2px;
	}
}


