/**************************
		GENERAL
**************************/
* {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	margin: 0;
}

html {
	height: 100%;
}

body {
	font-size: 14px;
	font-family: Roboto, Helvetica, Arial, sans-serif;
	color: #000;
	background: #EBEFF5;
	height: 100%;
	overflow-y: scroll;
}

#wrapper {
  min-height: 100%;
  margin-bottom: -50px;
}

#wrapper:after {
  content: "";
  display: block;
  height: 50px;
}

.hidden {
	display: none !important;
}

.clearfix {
	clear: both;
}

.container {
	width: 95%;
	margin: auto;
}

a,
.transition {
	-webkit-transform-style: preserve-3d;
	-webkit-transition: all 0.5s ease-out;
	transition: all 0.5s ease-out;
}

a {
	color: #E3163E;
	text-decoration: none;	
}

a:hover {
	color: #000;
	text-decoration: underline;
}


/**************************
		HEADER
**************************/
header {
	height: 50px;
	position: relative;
}

header .top {
	position: fixed;
	height: 50px;
	width: 100%;
	z-index: 999;
}

header .contact {
	background: #000;
	color: #fff;
	height: 50px;
	line-height: 50px;
	font-size: 16px;
	text-align: center;
}

/**************************
		MAIN
**************************/
.block {
	padding: 0 20px;
	display: flex;
	flex-wrap: wrap;
	gap: 5%;
	padding-top: 30px;
}

/*.block .left {
	flex: 1;
}

.block .center {
	flex: 1;	
}

.block .right {
	flex: 1;
}*/

.block .column {
	flex: 1;
}

.block .line {
	line-height: 36px;
	font-size: 24px;
	display: flex;
	flex-wrap: wrap;
	padding: 0 10px;
}

.block .line:nth-child(even) {
	background: #F7F6F6;
}

.block .line:nth-child(odd) {
	background: #EBEFF5;
}

.block h1 {
	color: #E3163E;
	margin: 15px 0 3px 0;
	font-size: 26px;
}

.block .price {
	margin-left: auto;
	color: #E3163E;
	font-weight: bold;
}

.block .content {
	margin: 30px 0 0 0;
	font-weight: bold;
	font-size: 32px;
	text-align: center;
}

.block .content .text {
	margin: 0 0 40px 0;
}

.block img {
	width: 100%;
}

/**************************
		FOOTER
**************************/
footer {
	height: 50px;	
}

footer .bottom {
	background: #E3163E;
	height: 50px;
	line-height: 50px;
	color: #fff;
	text-align: center;
	font-size: 30px;
}

footer .copyright {
	display: inline-block;
}

footer .spacer {
	display: inline-block;
	width: 25px;
	text-align: center;
}

footer .developer {
	display: inline-block;
}

footer .bottom a {
	color: #fff;
	text-decoration: none;
}

footer .bottom a:hover {
	color: #000;
	text-decoration: underline;
}


/**************************
		RESPONSIVE
**************************/
@media screen and (max-width: 1023px) {
	.block {
		display: block;
		margin: 0 0 20px 0;
	}

	.block .content {	
		display: none;
	}

	header .contact {
		font-size: 12px;
	}	
}