body {
	font-family: 'Roboto', sans-serif;
	font-size: 16px;
	color: var(--text-color);
}
section {
	padding: 100px 0;
}
:root {
	--accent-color: #008078;
	--text-color: #7C7C7C;
}
.container {
	max-width: 1290px;
	padding: 0 10px;
	margin: 0 auto;
}

/*Header*/
.header {
	background-color: white    ;
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	min-height: 100px;
}
.topheader {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.topheader__logo {
	font-family: 'Train One',serif;
	font-size: 3rem;
	text-decoration: none;
	color: var(--accent-color);
}
.topheader__lang {
	font-family: 'Roboto', sans-serif;
	font-size: 22px;
	font-weight: bold;
}
.topheader__lang-link {
	text-decoration: none;
	color: var(--text-color);
	margin-right: 5px;
}
a.topheader__lang-link:hover {
	color: var(--accent-color);
}

.topheader__adress {
	background-color: var(--accent-color);
	margin-top: 5px;
}
.adress {
	display: block;
	color: white;
	padding: 4px 0 4px 15px;
	font-size: 1rem;
}
@media (max-width: 480px) {
	.header {
		min-height: 90px;
	}
	.topheader__logo {
		font-size: 2.4rem;
	}
	.topheader__adress {
		margin-top: 0;
	}
}
@media (max-width: 320px) {
	.topheader__logo {
		font-size: 2rem;
		min-height: 80px;
	}
}

/*--MAIN--*/

/*--Ofer--*/
.offer {
	background-color: #F8F9FB;
	/* max-height: 100vh; */
	padding-top: 170px;
}
.offer__title {
	font-weight: 900;
	font-size: 2.6rem;
	text-transform: uppercase;
	text-align: center;
	margin-bottom: 70px;
}
.offer__item {
	display: flex;
	justify-content: space-between;
}
.offer__pieces {
	align-self: center;
	padding: 0 20px;
	margin-bottom: 20px;
}
.offer__pieces-title {
	font-size: 1.3rem;
	text-transform: uppercase;
	text-align: center;
}
.offer__pieces span {
	display: block;
	font-size: 24px;
	letter-spacing: 1em;
	text-align: right;
}
.offer__carriage {

}
.offer__pieces-num {
	font-family: 'Train One', serif;
	font-size: 15rem;
	color: var(--accent-color);
	text-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
	line-height: 1;
}
.carriage {
	max-width: 100%;
}
@media (max-width: 1024px) {
	.offer {
		padding-top: 170px;
 }
	.offer__title {
		font-size: 1.95rem;
	}
	.offer__pieces-num {
		font-size: 12rem;
	}
}
@media (max-width: 768px) {
	.offer__title {
		font-size: 1.4rem;
		margin-bottom: 40px;
	}
	.offer {

	}
}
@media (max-width: 690px) {
	.offer__item {
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}
	.offer {
		padding-top: 120px;
 }
}
@media (max-width: 380px) {
	.offer__pieces-title {
		font-size: 0.9rem;
	}
}
@media (max-width: 320px) {
	.offer__pieces-num {
		font-size: 10rem;
	}
}

/*--Features--*/
.features {
}
.features__table {
	max-width: 850px;
	margin: 0 auto;
}
.features__table-title {
	font-size: 1.2rem;
	color: var(--accent-color);
	text-align: center;
	margin: 70px 0;
	line-height: 1.2;
}
.features__table-cont {

}
.features__table-rows {
	display: flex;
	justify-content: space-between;
	width: 100%;
	padding: 3px 10px;
}
div .features__table-rows:nth-child(even) {
	background-color: rgba(0, 128, 120, 0.05);
}

/*--Footer--*/

.footer {
	background-color: var(--accent-color);
	height: 50px;
}
.footer__content {
	display: flex;
	justify-content: space-between;
	align-items: center;

}
.footer__content-item {
	color: white;
	margin-top: 10px;
}