/*-------------
 	General
-------------*/

*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html{
	font: normal 18px sans-serif;
	color: #555;
}

ul, nav{
	list-style: none;
}

a{
	text-decoration: none;
	color: inherit;
	cursor: pointer;

	opacity: 0.9;
}

a:hover{
	opacity: 1;
}

a.btn{
	color: #fff;
	border-radius: 4px;
	text-transform: uppercase;
	background-color: #2196F3;
	font-weight: 800;
	text-align: center;
	font-size: 16px;
}

hr{
	width: 150px;
	height: 2px;
	background-color: #2196F3;
	border: 0;
	margin-bottom: 40px;
}

section{
	display: flex;
	flex-direction: column;
	align-items: center;

	padding: 75px 50px;
}

@media (max-width: 1000px){

	section{
		padding: 60px 40px;
	}

}

@media (max-width: 600px){

	section{
		padding: 45px 30px;
	}

}

section h3.title{
	color: #414a4f;
	font: bold 32px 'Open Sans', sans-serif;
	margin-bottom: 35px;
	text-align: center;
}

section p{
	max-width: 800px;
	text-align: center;
	margin-bottom: 35px;
	padding: 0 20px;
	line-height: 2;
}

ul.grid{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.text-center {
    text-align: center;
}

/*-------------
 	Header
-------------*/

header{
	position: absolute;
	top: 0;
	left: 0;
	z-index: 10;
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	color: #fff;
	padding: 35px 100px 0;
}

header h2{
	font-family: 'Quicksand', sans-serif;
}

header .lang{
	float: right;
	position: relative;
	left: 15px;
	right: auto;
	top: auto;
}

header .lang .flag{
	vertical-align: middle;
}
header .lang .hide{
	display: none;
}

@media (max-width: 700px){
	header .lang{
		float: right;
		position: absolute;
		left: auto;
		right: 15px;
		top: 20px;
	}
	header .call{
		font-size: 18px;
	}
}

header nav{
	display: flex;
}

header nav li{
	margin: 0 15px;
}

header nav li:first-child{
	margin-left: 0;
}

header nav li:last-child{
	margin-right: 0;
}



@media (max-width: 1000px){
	header{
		padding: 20px 50px;
	}
}


@media (max-width: 700px){
	header{
		flex-direction: column;
		align-items: center;
	}

	header h2{
		margin-bottom: 15px;
	}
}



/*----------------
 	Hero Section
----------------*/

.hero{
	position: relative;
	justify-content: center;
	min-height: 100vh;
	color: #fff;
	text-align: center;
}

.hero .background-image{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-color: #2196F3;
	z-index: -1;
}

.hero .background-image:after{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #414a4f;
	opacity: 0.75;
}

.hero h1{
	font: bold 60px 'Open Sans', sans-serif;
	margin-bottom: 15px;
}

.hero h3{
	font: normal 28px 'Open Sans', sans-serif;
	margin-bottom: 40px;
}

.hero a.btn{
	padding: 20px 46px;
}

@media (max-width: 800px){

	.hero{
		min-height: 600px;
	}

	.hero h1{
		font-size: 32px;
	}

	.hero h3{
		font-size: 20px;
	}

	.hero a.btn{
		padding: 15px 40px;
	}

}



/*--------------------
 	Our Work Section
---------------------*/

.оur-work{
	background-color: #fff;
}

.our-work .grid li{
	display: flex;

	padding: 20px;
	height: 400px;
	border-radius: 3px;

	background-clip: content-box;
	background-size: cover;
	background-position: center;
	background-color: #333;
}

.our-work .grid li.small{
	flex-basis: 40%;
}

.our-work .grid li.large{
	flex-basis: 60%;
}

.our-work .grid li p{
	margin: auto;
	font: bold 28px 'Open Sans', sans-serif;
	color: #fff;

	background-color: rgba(0, 0, 0, 0.5);

	min-width: 100%;

	padding: 15px
}


@media (max-width: 1000px){

	.our-work .grid li.small,
	.our-work .grid li.large{
		flex-basis: 100%;
	}

}



/*----------------------
 	Features Section
----------------------*/

.features{
	background-color: #f7f7f7;
}

.features .grid li{
	padding: 0 30px;
	flex-basis: 33%;
	text-align: center;
}

.features .grid li i{
    font-size: 50px;
    color: #2196F3;
    margin-bottom: 25px;
}

.features .grid li h4{
	color: #555;
    font-size: 20px;
    margin-bottom: 25px;
}

.features .grid li p{
    margin: 0;
}

@media (max-width: 1000px){

	.features .grid li{
		flex-basis: 70%;
		margin-bottom: 65px;
	}

	.features .grid li:last-child{
		margin-bottom: 0;
	}

}


@media (max-width: 600px){

	.features .grid li{
		flex-basis: 100%;
	}

}



/*--------------------
 	Reviews Section
--------------------*/

.reviews{
	background-color: #fff;
}

.reviews .quote{
	text-align: center;
	width: 80%;
    font-size: 22px;
    font-weight: 300;
    line-height: 1.5;
    margin-bottom: 20px;
    padding: 0;
}

.reviews .author{
		font-style: italic;
    font-size: 18px;
    margin-bottom: 50px;
}

.reviews .author:last-child{
    margin-bottom: 0;
}

@media (max-width: 1000px){

	.reviews .quote{
		font-size: 20px;
	}

	.reviews .author{
	    font-size: 16px;
	}

}



/*---------------------
 	Contact Section
---------------------*/

.contact{
	background-color: #f7f7f7;
}

.contact form{
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;

	max-width: 800px;
	width: 80%;
}

.contact form input{
	padding: 15px;
	flex: 1;
	margin-right: 30px;
	font-size: 18px;
	color: #555;
}

.contact form .btn{
	padding: 18px 42px;
}


@media (max-width: 800px){

	.contact form input{
		flex-basis: 100%;
		margin: 0 0 20px 0;
	}

}




/*-------------
 	Footer
-------------*/

footer{
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	color: #fff;
	background-color: #414a4f;
	padding: 40px 0 30px 0;
}

footer ul{
	display: flex;
	margin-bottom: 25px;
	font-size: 32px;
}

footer ul li{
	margin: 0 8px;
}

footer ul li:first-child{
	margin-left: 0;
}

footer ul li:last-child{
	margin-right: 0;
}

footer p{
	text-transform: uppercase;
	font-size: 14px;
	color: rgba(255,255,255,0.6);
	margin-bottom: 10px;
}

footer p a{
	color: #fff;
}

@media (max-width: 700px){

	footer{
		padding: 40px 15px 30px 15px;
	}

}

/* ----------------------------------------------------------------------------
    Modal boxes
---------------------------------------------------------------------------- */
.modal-window {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	display: none;
	cursor: default;
	z-index: 9999;
}
.modal-window:not(.base-clr-bg) {
	background-color: rgba(255, 255, 255, 0.9);
}
.modal-box {
	-webkit-background-size: cover;
	-moz-background-size: cover;
	background-size: cover;
	-webkit-box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.12);
	-moz-box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.12);
	box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.12);
	position: relative;
	margin: 0 auto;
	display: block;
	width: 64%;
	max-width: 100%;
	max-height: 100%;
	overflow-y: auto;
	overflow-x: hidden;
	padding: 40px 30px 25px;
	border: 1px solid #e9e9e9;
	background-repeat: no-repeat;
	background-position: center;
}
.modal-box:not(.base-clr-bg) {
	background-color: #ffffff;
}
.modal-box.light-text .close-btn,
.modal-box.footer .close-btn {
	color: #ffffff;
}
.modal-box.light-text .close-btn:not(:hover),
.modal-box.footer .close-btn:not(:hover) {
	color: #ffffff;
}
.modal-box.light-text .close-btn:hover,
.modal-box.footer .close-btn:hover {
	opacity: 0.8;
}
.modal-box .form-group {
	margin-bottom: 20px;
}
.modal-box .close-btn {
	-webkit-transition: color 0.2s ease, background 0.2s ease;
	-moz-transition: color 0.2s ease, background 0.2s ease;
	-o-transition: color 0.2s ease, background 0.2s ease;
	transition: color 0.2s ease, background 0.2s ease;
	position: absolute;
	top: 15px;
	right: 30px;
	font-size: 14px;
	cursor: pointer;
	opacity: 1;
	z-index: 20;
}
.modal-box .close-btn:not(:hover) {
	color: #000000;
}
.modal-box *:nth-child(2) {
	margin-top: 0;
}
.modal-box.iframe-box.iframe-video {
	border: none;
	padding-bottom: 35.866%;
}
.modal-box.iframe-box.iframe-video iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 10;
}
.modal-box.iframe-box,
.modal-box.iframe-box.large,
.modal-box.iframe-box.small {
	padding: 0;
}
.modal-box.iframe-box .close-btn,
.modal-box.iframe-box.large .close-btn,
.modal-box.iframe-box.small .close-btn {
	top: 0;
	right: 0;
	padding: 12px;
	font-size: 16px;
	width: 40px;
	line-height: 1;
	background-color: rgba(255, 255, 255, 0.6);
}
.modal-box.iframe-box .close-btn:hover,
.modal-box.iframe-box.large .close-btn:hover,
.modal-box.iframe-box.small .close-btn:hover {
	background-color: rgba(255, 255, 255, 0.95);
}
.modal-box.small {
	width: 30%;
	padding: 30px 15px 20px;
	font-size: 100%;
}
.modal-box.small .close-btn {
	font-size: 16px;
	font-weight: 800;
	right: 15px;
	top: 12px;
	color: #ccc
}
.modal-box.small .close-btn:hover {
	color: #FF0000
}
.modal-box.large {
	width: 90%;
	height: 100%;
	padding: 50px 44px 25px;
}
.modal-box.large .close-btn {
	right: 50px;
	top: 20px;
}
.modal-box.top {
	-webkit-transform: translateY(0);
	-moz-transform: translateY(0);
	-o-transform: translateY(0);
	-ms-transform: translateY(0);
	transform: translateY(0);
	top: 0;
	bottom: auto;
}
.modal-box.bottom {
	-webkit-transform: translateY(0);
	-moz-transform: translateY(0);
	-o-transform: translateY(0);
	-ms-transform: translateY(0);
	transform: translateY(0);
	top: auto;
	bottom: 0;
}
.modal-box.left {
	float: left;
}
.modal-box.right {
	float: right;
}
@media (max-width: 991px) {
	.modal-box {
		width: 70%;
	}
	.modal-box.small {
		width: 40%;
	}
	.modal-box.large {
		width: 94%;
	}
	.img-app{margin:0 auto}
}
@media (max-width: 767px) {
	.modal-box {
		width: 90%;
		padding: 40px 20px 25px;
	}
	.modal-box.small {
		width: 60%;
	}
	.modal-box.small .close-btn {
		right: 20px;
	}
	.modal-box.large {
		width: 100%;
		padding: 50px 24px 25px;
	}
	.modal-box.large .close-btn {
		right: 30px;
	}
}
@media (max-width: 540px) {
	.modal-box {
		width: 100%;
	}
	.modal-box.small {
		width: 80%;
	}
}



/* ----------------------------------------------------------------------------
    Forms
---------------------------------------------------------------------------- */
.form {
	zoom: 1;
	display: block;
	padding: 25px 12px 0px 12px;;
}
.form:before,
.form:after {
	content: "";
	display: table;
}
.form:after {
	clear: both;
}
.registration-form {
	margin: 0 auto;
	max-width: 370px;
	background-color: #ffffff;
}
.registration-form-alt {
	position: relative;
	margin: 0 auto;
	padding: 15px 0 0;
	background-color: rgba(0, 0, 0, 0.15);
	border-radius: 3px;
}
.newsletter-form {
	margin-left: auto;
	margin-right: auto;
}
.newsletter-form fieldset {
	text-align: center;
}
.mailchimp-form {
	position: relative;
}
.mailchimp-form .response {
	position: absolute;
	top: 100%;
	left: 15px;
	right: 15px;
	margin-top: 5px;
}
.form-mail-us {
	padding: 0 0 0 40px;
}
.form-mail-us input[type="submit"].btn {
	margin-top: 30px;
}
fieldset {
	border: none;
	position: relative;
	text-align: left;
	padding-bottom: 20px;
}
label {
	margin-bottom: 5px;
	display: inline-block;
	font-size: 15px;
	font-weight: 400;
}
label.error {
	position: absolute;
	bottom: 0;
	margin: 0 0 20px;
	display: block;
	width: 100%;
	font-size: 11px;
	line-height: 1;
	color: #FF0000;
}
textarea,
input[type=text],
input[type=url],
input[type=tel],
input[type=number],
input[type=color],
input[type=email],
input[type=email],
input[type=password] {
	-webkit-transition: color 0.2s ease, background 0.2s ease, border 0.2s ease;
	-moz-transition: color 0.2s ease, background 0.2s ease, border 0.2s ease;
	-o-transition: color 0.2s ease, background 0.2s ease, border 0.2s ease;
	transition: color 0.2s ease, background 0.2s ease, border 0.2s ease;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
	margin: 0 0 15px;
	vertical-align: top;
	display: inline-block;
	width: 100%;
	font-size: 13px;
	color: #8d93a0;
	background-color: #ffffff;
	border: 1px solid #e9e9e9;
	border-radius: 2px;
	outline: none;
}
textarea:hover,
input[type=text]:hover,
input[type=url]:hover,
input[type=tel]:hover,
input[type=number]:hover,
input[type=color]:hover,
input[type=email]:hover,
input[type=email]:hover,
input[type=password]:hover,
textarea:focus,
input[type=text]:focus,
input[type=url]:focus,
input[type=tel]:focus,
input[type=number]:focus,
input[type=color]:focus,
input[type=email]:focus,
input[type=email]:focus,
input[type=password]:focus {
	color: #51545b;
}
textarea:not(textarea),
input[type=text]:not(textarea),
input[type=url]:not(textarea),
input[type=tel]:not(textarea),
input[type=number]:not(textarea),
input[type=color]:not(textarea),
input[type=email]:not(textarea),
input[type=email]:not(textarea),
input[type=password]:not(textarea) {
	height: 39px;
	padding: 0 10px;
	line-height: 35px;
}
textarea {
	padding: 5px 10px;
	resize: none;
	line-height: 20px;
	min-height: 120px;
}
select {
	margin: 0 0 15px;
	display: inline-block;
	width: 100%;
	height: 39px;
	cursor: pointer;
	outline: none;
}
select option {
	padding: 2px 10px;
}
input[type=checkbox] {
	-webkit-transition: border 0.15s ease;
	-moz-transition: border 0.15s ease;
	-o-transition: border 0.15s ease;
	transition: border 0.15s ease;
	-webkit-border-radius: 0;
	-webkit-background-clip: padding-box;
	-moz-border-radius: 0;
	-moz-background-clip: padding;
	border-radius: 0;
	background-clip: padding-box;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	position: relative;
	margin: 0 15px 0 0;
	vertical-align: text-bottom;
	width: 23px;
	height: 23px;
	border: 1px solid #e9e9e9;
	background-color: #ffffff;
	cursor: pointer;
}
input[type=checkbox]:hover,
input[type=checkbox]:focus {
	border-color: #dcdcdc;
}
input[type=checkbox]:before {
	-webkit-transition: opacity 0.15s ease;
	-moz-transition: opacity 0.15s ease;
	-o-transition: opacity 0.15s ease;
	transition: opacity 0.15s ease;
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
	position: absolute;
	left: 2px;
	top: 2px;
	width: 15px;
	height: 10px;
	content: "";
	border-style: solid;
	border-width: 0 0 2px 2px;
	border-color: transparent transparent #51545b #51545b;
	border-radius: 1px;
	opacity: 0;
}
input[type=checkbox]:checked:before {
	opacity: 1;
}
input[type=checkbox] + p,
input[type=checkbox] + label {
	display: inline;
}
input[type=file]:focus,
input[type=radio]:focus,
input[type=checkbox]:focus {
	outline: none;
}
input.btn {
	color: #fff;
	border-radius: 4px;
	text-transform: uppercase;
	background-color: #2196F3;
	font-weight: 800;
	text-align: center;
	padding: 10px 30px;
	cursor: pointer;
	font-size: 13px;
}
input.btn:hover,input.btn:focus {
	opacity: 0.8;
}
.main-head a.btn-clear:hover {
    padding: 12px 48px;
    font-family: Lato-Bold,sans-serif;
    font-size: 20px;
    margin-bottom: 24px;
    box-shadow: inset 0 0 0 1px #fff;
}
.pseudo-select {
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	position: relative;
	display: inline-block;
	width: 100%;
	font-size: 13px;
}
.pseudo-select input {
	opacity: 0;
	position: absolute;
	pointer-events: none;
}
.pseudo-select input:focus + .pseudo-select-field {
	color: #51545b;
}
.pseudo-select .pseudo-select-field,
.nav-current {
	-webkit-transition: color 0.2s ease, background 0.2s ease, border 0.2s ease;
	-moz-transition: color 0.2s ease, background 0.2s ease, border 0.2s ease;
	-o-transition: color 0.2s ease, background 0.2s ease, border 0.2s ease;
	transition: color 0.2s ease, background 0.2s ease, border 0.2s ease;
	position: relative;
	margin: 0 0 15px;
	vertical-align: top;
	display: inline-block;
	width: 100%;
	height: 39px;
	padding: 0 32px 0 10px;
	font-size: 13px;
	color: #8d93a0;
	line-height: 35px;
	white-space: nowrap;
	background-color: #ffffff;
	border: 1px solid #e9e9e9;
	border-radius: 2px;
	z-index: 10;
	cursor: pointer;
	overflow: hidden;
	text-overflow: ellipsis;
}
.pseudo-select .pseudo-select-field:hover,
.nav-current:hover {
	color: #51545b;
}
.pseudo-select .pseudo-select-field:after,
.nav-current:after {
	position: absolute;
	top: 50%;
	right: 12px;
	margin-top: -2px;
	width: 0;
	height: 0;
	content: "";
	border-style: solid;
	border-width: 5px 4px 0 4px;
	border-color: #babfcc transparent transparent transparent;
}
.pseudo-select .pseudo-select-dropdown {
	-webkit-box-shadow: -1px 8px 16px 0 rgba(0, 0, 0, 0.18);
	-moz-box-shadow: -1px 8px 16px 0 rgba(0, 0, 0, 0.18);
	box-shadow: -1px 8px 16px 0 rgba(0, 0, 0, 0.18);
	position: absolute;
	top: 38px;
	left: 0;
	display: none;
	min-width: 100%;
	max-width: 100%;
	max-height: 200px;
	background-color: #ffffff;
	border: 1px solid #e9e9e9;
	z-index: 15;
	overflow-x: hidden;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
}
.pseudo-select .pseudo-select-dropdown-item {
	-webkit-transition: color 0.2s ease, background 0.2s ease;
	-moz-transition: color 0.2s ease, background 0.2s ease;
	-o-transition: color 0.2s ease, background 0.2s ease;
	transition: color 0.2s ease, background 0.2s ease;
	display: inline-block;
	width: 100%;
	padding: 0 11px;
	line-height: 30px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	cursor: pointer;
}
.pseudo-select .pseudo-select-dropdown-item.disabled {
	opacity: 0.3;
	pointer-events: none;
	cursor: default;
}
.pseudo-select .pseudo-select-dropdown-item:hover {
	background-color: rgba(0, 0, 0, 0.05);
}
input[type="submit"] + .loading {
	right: -10px;
	text-indent: -1px;
}
button[type="submit"] .loading {
	margin: -6px 0 0 10px;
	padding: 0;
	text-indent: -2px;
}
.loading {
	position: absolute;
	top: 50%;
	margin: -6px 0 0;
	display: inline-block;
	padding: 0;
	font-size: 18px;
	width: 12px;
	height: 12px;
	line-height: 0.7;
	color: inherit;
	-webkit-animation: spinLoader 1.2s linear infinite;
	-o-animation: spinLoader 1.2s linear infinite;
	animation: spinLoader 1.2s linear infinite;
	-webkit-transition: opacity 0.15s ease;
	-o-transition: opacity 0.15s ease;
	transition: opacity 0.15s ease;
	-webkit-backface-visibility: visible !important;
	backface-visibility: visible !important;
}
@-webkit-keyframes spinLoader {
	from {
		-webkit-transform: rotate(0);
		-ms-transform: rotate(0);
		-o-transform: rotate(0);
		transform: rotate(0);
	}
	to {
		-webkit-transform: rotate(360deg);
		-ms-transform: rotate(360deg);
		-o-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}
@-o-keyframes spinLoader {
	from {
		-webkit-transform: rotate(0);
		-ms-transform: rotate(0);
		-o-transform: rotate(0);
		transform: rotate(0);
	}
	to {
		-webkit-transform: rotate(360deg);
		-ms-transform: rotate(360deg);
		-o-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}
@-moz-keyframes spinLoader {
	from {
		-webkit-transform: rotate(0);
		-ms-transform: rotate(0);
		-o-transform: rotate(0);
		transform: rotate(0);
	}
	to {
		-webkit-transform: rotate(360deg);
		-ms-transform: rotate(360deg);
		-o-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}
@keyframes spinLoader {
	from {
		-webkit-transform: rotate(0);
		-ms-transform: rotate(0);
		-o-transform: rotate(0);
		transform: rotate(0);
	}
	to {
		-webkit-transform: rotate(360deg);
		-ms-transform: rotate(360deg);
		-o-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}
@media (max-width: 991px) {
	.form-mail-us {
		padding: 0 0 0 20px;
	}
}
@media (max-width: 991px) {
	.form-mail-us {
		padding: 0;
	}
}
@media (max-width: 767px) {
	.form-mail-us {
		padding-top: 40px;
	}
	.form-mail-us [class*="col-"] {
		padding: 0;
	}
}

@media (max-width: 480px) {
	.attr-icon .caption p {
		font-size: 18px;
		line-height: 18px;
	}
	.attr-icon .caption h3 {
		font-size: 16px;
	}
}
@media (max-width: 768px) and (min-width: 240px) {
	.russia {
		font-size: 20px;
		font-weight: bold;
	}
}
@media (max-width: 768px) and (min-width: 240px) {
	.btn-top {
		color: black;
	}
}
.highlight {
	color: #FF0000;
	font-weight: 800;
}

.fio {
	padding: 20px 0 5px 0;
	font-size: 20px!important;
}
.phone {
	padding: 5px 0 0 0;
	font-size: 14px!important;
	font-family: Lato-Light,sans-serif!important;
}

/* --- */
.youtube-video{
	width: 100%
}

.flex{
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0 20px 40px 20px;
}
.item1{
	width: 33%;
	text-align: right;
}
.item1 img{
	width: 100%;
	max-width: 300px;
	height: 100%;
	max-height: 250px;
}
.item2{
	width: 66%;
}
.item2 p{
	margin-bottom: 0;
	text-align: left;
}
@media (max-width: 1365px){
	.flex{
		flex-direction: column;
	}
	.item{
		width: 100%;
		max-width: 800px;
	}
	.item1, .item2 p{
		text-align: center;
	}
}
