@import url(https://fonts.googleapis.com/css?family=Montserrat:regular,500,700);

/* ===== RESET ===== */
* {
	padding: 0;
	margin: 0;
	border: 0;
	box-sizing: border-box;
}

*:before,
*:after {
	box-sizing: border-box;
}

:focus,
:active {
	outline: none;
}

a {
	color: inherit;
	text-decoration: none;
}

ul li {
	list-style: none;
}

img {
	max-width: 100%;
	vertical-align: top;
}

button,
input,
textarea {
	font-family: "Montserrat", sans-serif;
	font-size: inherit;
}

button {
	cursor: pointer;
	background: none;
}

/* ===== BASE ===== */

body {
	color: #181818;
	font-family: "Montserrat", sans-serif;
	font-size: 15px;
	line-height: 1.4;
}

/* ===== LAYOUT ===== */
.wrapper {
	min-height: 100%;
	display: flex;
	flex-direction: column;
	overflow: hidden;
}
.wrapper-bg {
	background: url("../img/bgx2.png") center/cover no-repeat;
	background-attachment: fixed;
}

/* ===== HEADER ===== */
.header__container {
	margin: 0 auto;
	padding: 0 35px;
	display: flex;
	width: 100%;
	justify-content: flex-end;
	box-sizing: content-box;
}

.header__logo {
	margin: 15px 0;
	display: inline-block;
	padding: 10px 0;
	border-radius: 25px;
	max-width: 550px;
}

/* ===== PAGE ===== */
.page__container {
	margin: 0 auto;
	padding: 0 15px;
	box-sizing: content-box;
}

.page__body {
	display: flex;
	gap: 70px;
	justify-content: space-between;
}

@media (max-width: 1230px) {
	.page__body {
		flex-direction: column-reverse;
	}
}
.page__left {
	flex: 1;
}

.page__right {
	flex: 0 0 650px;
}

@media (max-width: 1230px) {
	.page__right {
		flex: 1 0 auto;
		width: 100%;
	}
}

/* ===== LEFT SIDE ===== */
.left-items {
	max-width: 480px;
	display: flex;
	flex-direction: column;
	gap: 100px;
	padding-top: 20px;
}

@media (max-width: 1230px) {
	.left-items {
		max-width: 100%;
		gap: 0;
		margin-bottom: 25px;
	}
}

.item-message {
	font-size: 20px;
	border-radius: 25px;
	padding: 25px;
	background-color: #ffc90c;
	color: red;
	font-weight: 700;
	text-transform: uppercase;
}

.item-message:not(:last-child) {
	margin-bottom: 50px;
}

.item-contacts {
	font-size: 20px;
	font-weight: 700;
	border-radius: 25px;
	padding: 25px;
	background-color: rgb(239, 227, 174);
}

.item-contacts-email {
	font-size: 40px;
	color: rgb(31, 123, 151);
}

.item-contacts-tel {
	font-size: 40px;
	color: rgb(221, 79, 68);
}

@media (max-width: 500px) {
	.item-contacts-tel,
	.item-contacts-email {
		font-size: 28px;
	}
}

/* ===== PRODUCTS ===== */
.card-products {
	display: flex;
	flex-direction: column;
	gap: 15px;
	padding-bottom: 25px;
}

.item-product {
	width: 100%;
	border: 1px solid #eee;
	border-radius: 25px;
	padding: 25px;
	display: flex;
	gap: 30px;
	background-color: #fff;
}

@media (max-width: 500px) {
	.item-product {
		flex-direction: column;
	}
}

.item-product__image {
	flex: 0 0 200px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 20px;
}

@media (max-width: 520px) {
	.item-product__image {
		flex: 0 0 150px;
	}
}

.item-product__body {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 5px;
	font-size: 20px;
}

.item-product__info {
	color: red;
	font-weight: 700;
}

.item-product__title {
	font-weight: 700;
}

.item-product__desc {
	font-size: 14px;
}

.desc-product {
	display: flex;
	flex-direction: column;
}

.item-product__price {
	font-weight: 700;
	font-size: 1.8em;
}

@media (max-width: 500px) {
	.item-product__price {
		font-size: 1.2em;
	}
}

.item-product__price span {
	color: red;
}
