* {
	margin: 0;
	padding: 0;
}

@font-face {
	font-family: 'Steppe-Book';
	src: url('../fonts/Steppe-Book.ttf');
}

@font-face {
	font-family: 'Steppe-ExtraBold';
	src: url('../fonts/Steppe-ExtraBold.ttf');
}

body {
	background-color: #5243f4;
	font-family: 'Steppe-Book', sans-serif;
	color: white;
}

.main {
	position: relative;
	overflow: hidden;
}

.currency {
	position: fixed;
	right: 50px;
	bottom: 50px;
	border: 1px solid white;
	padding: 5px 10px;
	height: 25px;
	min-width: 25px;
	border-radius: 50px;
	cursor: pointer;
	line-height: 28px;
	z-index: 1;
	user-select: none;
	text-align: center;
	transform: scale(1);
	animation: pulse 2s infinite;
}

@keyframes pulse {
	0% {
		transform: scale(0.9);
		box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
	}

	70% {
		transform: scale(1);
		box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
	}

	100% {
		transform: scale(0.9);
		box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
	}
}

.container {
	max-width: 1200px;
	margin: 0 auto;
}

.button {
	background-color: white;
	border-radius: 60px;
	width: 178px;
	height: 58px;
	box-sizing: border-box;
	padding: 18px;
	text-align: center;
	font-size: 18px;
	color: #5243f4;
	border: none;
	outline: none;
	cursor: pointer;
}

.button-violet {
	background-color: #5243f4;
	color: white;
}

.button:hover {
	background-color: #eeeeee;
}

.button.button-violet:hover {
	background-color: #3b2cd8;
}

.common-title {
	font-family: 'Steppe-ExtraBold', sans-serif;
	font-size: 60px;
	line-height: 100%;
	text-align: center;
}

.header {
	padding: 40px 0;
}

.header .container {
	display: flex;
	align-items: center;
}

.logo img {
	vertical-align: bottom;
}

.menu {
	margin-left: 250px;
}

.menu-list {
	list-style: none;
	display: flex;
	gap: 50px;
}

.menu-item a {
	font-size: 16px;
	line-height: 130%;
	text-decoration: none;
	cursor: pointer;
	color: white;
}

.menu-item a:hover {
	border-bottom: 2px solid white;
}

.main-content {
	padding-top: 161px;
	padding-bottom: 200px;
}

.main-info {
	max-width: 811px;
}

.main-title {
	font-family: 'Steppe-ExtraBold', sans-serif;
	font-size: 90px;
	line-height: 100%;
	margin-bottom: 20px;
}

.main-text {
	max-width: 697px;
	font-size: 18px;
	line-height: 130%;
	margin-bottom: 40px;
}

.main-image {
	position: absolute;
	top: 0;
	right: 0;
	z-index: -1;
}

.products {
	padding: 100px 0;
	position: relative;
}

.products-items {
	margin-top: 110px;
	list-style: none;
	display: grid;
	grid-template-columns: repeat(3, 384px);
	gap: 90px 24px;
}

.products-item {
	background-color: white;
	color: #5d3427;
}

.products-item-image {
	height: 202px;
	text-align: center;
}

.products-item-image img {
	height: 272px;
	top: -70px;
	position: relative;
	max-width: 100%;
}

.products-item-details {
	padding: 24px;
}

.products-item-title {
	font-family: 'Steppe-ExtraBold', sans-serif;
	font-size: 18px;
	margin-bottom: 20px;
}

.products-item-text {
	height: 110px;
	font-size: 14px;
	line-height: 120%;
	margin-bottom: 20px;
}

.products-item-extra {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.products-item-info {
	display: flex;
	flex-direction: column;
}

.products-item-price {
	font-family: 'Steppe-ExtraBold', sans-serif;
	font-size: 24px;
	color: #5243f4;
	margin-bottom: 10px;
}

.products-item-weight {
	font-size: 12px;
}

.love {
	padding: 64px 0 150px;
}

.love-items {
	margin-top: 40px;
	list-style: none;
	display: flex;
	gap: 20px;
}

.love-item {
	width: 590px;
	height: 453px;
}

.love-item-white {
	background-color: white;
	color: #5d3427;
	padding: 110px 80px;
	box-sizing: border-box;
}

.love-item-title {
	font-family: 'Steppe-ExtraBold', sans-serif;
	font-size: 24px;
	line-height: 110%;
	margin-bottom: 20px;
}

.love-item-text {
	font-size: 18px;
	line-height: 130%;
}

.love-item-image {
	background-color: #d9d9d9;
}

.order {
	padding-bottom: 102px;
	position: relative;
}

.order .container {
	position: relative;
}

.order-bg-image {
	position: absolute;
	top: 0;
	right: calc(100% - 810px);
	z-index: -1;
}

.order-block {
	margin-top: 103px;
	background-color: rgb(255 255 255 / 30%);
	backdrop-filter: blur(50px);
	display: flex;
}

.order-block-form {
	margin-left: 200px;
	max-width: 387px;
	padding: 40px 0 44px;
	box-sizing: border-box;
}

.order-block-form-text {
	font-family: 'Steppe-ExtraBold', sans-serif;
	font-size: 18px;
	line-height: 130%;
}

.order-form {
	display: flex;
	flex-direction: column;
	margin-top: 20px;
}

.order-form input {
	border: 1px solid white;
	border-radius: 60px;
	margin-bottom: 16px;
	padding: 24px 22px;
	font-size: 18px;
	width: 385px;
	height: 68px;
	background-color: transparent;
	box-sizing: border-box;
	outline: none;
	color: white;
}

::placeholder {
	color: rgba(255, 255, 255, 0.4);
}

.order-form .button.button-violet {
	width: 387px;
	height: 71px;
}

.order-block-image {
	height: 501px;
	margin-left: 109px;
}

.order-image {
	height: 559px;
	top: -58px;
	position: relative;
}

.footer {
	padding: 126px 0 50px;
	text-align: center;
}

.rights {
	margin-top: 14px;
	font-size: 18px;
	line-height: 130%;
}

.main-content-line {
	position: absolute;
	z-index: -1;
	top: 0;
	left: calc(100% - 960px);
}

.products-line {
	position: absolute;
	z-index: -1;
	top: -40px;
	left: 0;
}

.order-line {
	position: absolute;
	z-index: -1;
	top: -920px;
	left: 0;
}
