.section_container{
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-direction: row;

	padding: 20vh 5%;
	/*flex-wrap: wrap;*/
}

.section_element{
	display: flex;
	flex-direction: column;
	max-width: 900px;
}

.section_element p{
	width: 60%;
}

#merchants_horizontal{
	width: 80vw;
	max-width: 600px;
	margin: 10px 0;
}

#about_section_element img{
	max-width: 500px;
	min-width: 285px;
	width: 25vw;

	/* TRANSITIONS */
	-moz-transition: all .2s ease-in;
    -o-transition: all .2s ease-in;
    -webkit-transition: all .2s ease-in;
    transition: all .2s ease-in;
	/* TRANSITIONS */
}

#about_section_element img:hover{
	transform: scale(1.05);
}

#features_section{
	background: rgb(173,224,255);
	background: linear-gradient(90deg, rgba(173,224,255,1) 0%, rgba(196,209,255,0.6936975473783263) 28%, rgba(173,224,255,1) 77%);
 	display: flex;
	flex: 2;
}

.feature_segment{
	display: flex;
	flex-direction: column;
	align-items: center;

	/* TRANSITIONS */
	-moz-transition: all .2s ease-in;
    -o-transition: all .2s ease-in;
    -webkit-transition: all .2s ease-in;
    transition: all .2s ease-in;
	/* TRANSITIONS */
}

.feature_segment:hover{
	transform: scale(1.05);
}

.feature_segment:hover > h3{
	color: #13629d;
}

.feature_segment h3{
	margin: 20px 0;

	/* TRANSITIONS */
	-moz-transition: all .2s ease-in;
    -o-transition: all .2s ease-in;
    -webkit-transition: all .2s ease-in;
    transition: all .2s ease-in;
	/* TRANSITIONS */
}

#features_text{
	display: flex;
	flex-direction: column;
}

#features_text p{
	max-width: 500px;
	width: 100%;
}

#features_text h2{
	display: inline-block;
	margin-bottom: 10px;
}

#features_images_element{
	display: flex;
	flex-direction: row;
	justify-content: space-evenly;
	flex: 1;
}

#features_images_element img{
	display: block;
	width: 13vw;
	height: auto;
}

#features_text_element{
	display: flex;
	align-items: end;
	flex-direction: row;
}

#download_section_container{
	justify-content: space-evenly;
	flex-wrap: none;
	flex-direction: row;
}

#download_section_container h2{
	display: inline-block;

	/* TRANSITIONS */
	-moz-transition: all .2s ease-in;
    -o-transition: all .2s ease-in;
    -webkit-transition: all .2s ease-in;
    transition: all .2s ease-in;
	/* TRANSITIONS */
}

#download_section_container h2:hover{
	color: #13629d;
	transform: scale(1.05);
}

#download_section_container section_element{
	display: flex;
	flex-direction: column;
	flex-wrap: none;
	flex: 1;
}

#badge_image{
	width: 20vw;

	/* TRANSITIONS */
	-moz-transition: all .2s ease-in;
    -o-transition: all .2s ease-in;
    -webkit-transition: all .2s ease-in;
    transition: all .2s ease-in;
	/* TRANSITIONS */
}

#badge_image:hover{
	color: #13629d;
	transform: scale(1.05);
}

#play_store_phone_image{
	width: 15vw;

	/* TRANSITIONS */
	-moz-transition: all .2s ease-in;
    -o-transition: all .2s ease-in;
    -webkit-transition: all .2s ease-in;
    transition: all .2s ease-in;
	/* TRANSITIONS */
}

#play_store_phone_image:hover{
	color: #13629d;
	transform: scale(1.05);
}

#contact_section_container{
	background: rgb(173,224,255);
	background: linear-gradient(90deg, rgba(173,224,255,1) 0%, rgba(196,209,255,0.6936975473783263) 28%, rgba(173,224,255,1) 77%);
	align-items: center;
	justify-content: center;
}

#contact_section_container .section_element{
	flex-direction: column;
	background-color: white;
	border-radius: 10px;
	padding: 25px;
}

#contact_section_container .section_element form{
	display: flex;
	flex-direction: column;
}

#submit_btn{
	display: inline-block;
	max-width: 100px;
	border: none;
	background-color: #FFFFFF;
	padding: 10px;
	border: 2px solid #DDDDDD;
	border-radius: 5px;
	cursor: pointer;

	/* TRANSITIONS */
	-moz-transition: all .2s ease-in;
    -o-transition: all .2s ease-in;
    -webkit-transition: all .2s ease-in;
    transition: all .2s ease-in;
	/* TRANSITIONS */
}

#submit_btn:hover, #submit_btn:focus{
	border-color: #13629d;
	color: #13629d;
}

footer{
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	text-align: center;
	padding-top: 50px;
	height: 150px;
}

#footer_links{
	display: flex;
	flex-direction: row;
	justify-content: space-evenly;
}

#footer_links a{
	border-bottom: 2px solid #DDDDDD;
	padding: 20px 10px;

	/* TRANSITIONS */
	-moz-transition: all .2s ease-in;
    -o-transition: all .2s ease-in;
    -webkit-transition: all .2s ease-in;
    transition: all .2s ease-in;
	/* TRANSITIONS */
}

#footer_links a:hover{
	border-color: #13629d;
	color: #13629d;
}

.hp{
	opacity: 0;
	position: absolute;
	left: 0;
	top: 0;
	height: 0;
	width: 0;
	z-index; -1;
}

@media all and (max-width: 1060px) {
	.section_container{
		flex-wrap: wrap;
		flex-direction: column;
		align-items: center;
		padding-top: 50px;
		justify-content: space-between;
		padding: 5vh 5%;
	}

	.section_element{
		margin: 50px 0;
	}

	.section_element p{
		width: 100%;
	}

	#features_section{
		flex-direction: column-reverse;
		background: rgb(173,224,255);
		background: radial-gradient(circle, rgba(173,224,255,1) 0%, rgba(174,224,255,1) 3%, rgba(196,209,255,1) 100%);
	}

	#features_images_element{
		width: 100%;
	}

	#contact_section_container{
		background: rgb(173,224,255);
		background: radial-gradient(circle, rgba(173,224,255,1) 0%, rgba(174,224,255,1) 3%, rgba(196,209,255,1) 100%);
	}
}

@media all and (max-width: 650px) {
	#features_images_element{
		flex-direction: column;
	}

	.feature_segment{
		margin: 25px 0;
	}

	#features_images_element img{
		width: 50%;
	}

	#download_section_container{
		flex-direction: column;
	}

	#download_section_container .section_element{
		align-items: center;
	}

	#download_section_container .section_element a{
		display: flex;
		justify-content: center;
	}

	#badge_image{
		width: 70%;
	}

	#play_store_phone_image{
		width: 70%;
	}

	#contact_section_container{
		padding: 0;
	}

	#contact_section_container .section_element{
		width: 75%;
	}

	#contact_section_container .section_element textarea{
		min-width: 0;
		width: 100%;
	}
}
