@charset "UTF-8";

/* ##### ##### Hero Image */
.heroImage {
	width: 100%;
}


/* ##### ##### App features */
.appFeatures {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-around;
	align-items: center;
	
	margin: 0 15px;
}
.appFeatures.reverse {
	flex-direction: row-reverse;
}
.appFeatures > img {
	margin: 0 15px;
}

.appFeatures > .describtion {
	margin: 30px 0;
	width: 280px;
}



/* ##### ##### App features carousel */
.appFeaturesCarousel {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-around;
	align-items: baseline;
}


@media only screen and (max-width: 959px) {
	.appFeaturesCarousel > div {
		width: 100%;
		
		display: flex;
		flex-direction: row-reverse;
		flex-wrap: wrap;
		justify-content: space-around;
		align-items: center;
		
		margin-bottom: 20px;
	}
	.appFeaturesCarousel > div:last-child {
		margin-bottom: 0;
	}
	.appFeaturesCarousel > div:nth-child(2n) {
		flex-direction: row;
	}
}

.iphoneBackground {
	min-width: 297px;
	min-height: 606px;
	
	background-image: url(../images/iPhoneBackground.png);
	background-size: contain;
	background-repeat: no-repeat;
	
	/*background-color: #444;
	border: 1px solid #999;*/
	border-radius: 49px;
	
	z-index: 0;
}
.iphoneBackground > * {
	position: relative;
	left: 20px;
	top: 74px;
	
	width: 258px;
	
	z-index: 1;
}

.appFeaturesCarousel .describtion {
	margin: 30px 20px;
	width: 260px;
}


/* ##### ##### SADF */
.app > .information {
	text-decoration: none;
}

.app: hover > .information > * {
	color: #999;
}

.app {
	margin: 5px;
	
	display: flex;
	flex-direction: row;
	flex-wrap: wrap-reverse;
	justify-content: space-around;
	align-items: center;
}

.app > .downloadInformation {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	
	margin: 20px 0px 0px 10px;
	min-width: 280px;
}

.app > .downloadInformation .logo {
	width: 120px;
	height: 120px;
	border-radius: 25px;
}

.app > .downloadInformation div {
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}


.app > .downloadInformation h2 {
	font-size: 1.6rem;
	margin: 0.75em 0;
}

.app > .downloadInformation .descr {
	display: inline-block;
	color: #FFF;
	
	border-radius: 4px;
	padding: 7px 14px;
	margin-bottom: 20px;
}