body {
	font-family: 'Montserrat', sans-serif;
	margin: 0;
	background-color: #f4f4f4;
	overflow-x: hidden;
	width: 100vw;
}

html {
	scroll-behavior: smooth;
	overflow-x: hidden;
	width: 100vw;
}

.container {
	max-width: 1630px;
	padding-left: 145px;
	padding-right: 145px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

@media (min-width: 1630px) {
	.container {
		padding-left: 145px;
		padding-right: 145px;
	}
}

@media (max-width: 768px) {
	.container {
		padding-left: 20px;
		padding-right: 20px;
		flex-direction: column;
		text-align: center;
	}
}

.logo img {
	height: 80px;
	width: 80px;
}
header {
	padding-top: 30px;
}

@media (min-width: 768px) {
	header {
		padding-top: 66px;
	}
}

nav ul {
	margin: 0;
	padding: 0;
	list-style: none;
	text-align: center;
}

nav li {
	display: block;
	margin-right: 0;
	margin-bottom: 10px;
}

nav li:last-child {
	margin-bottom: 0;
}

@media (min-width: 768px) {
	nav ul {
		text-align: left;
	}
	nav li {
		display: inline-block;
		margin-right: 40px;
		margin-bottom: 0;
	}
}

nav a {
	text-decoration: none;
	color: #151515;
	font-size: 16px;
	font-weight: 500;
	display: block;
	padding: 10px;
}

@media (min-width: 768px) {
	nav a {
		display: inline;
		padding: 0;
	}
}

.order-button {
	background-color: #e94235;
	color: white;
	padding: 18px 32px;
	border: none;
	border-radius: 14px;
	cursor: pointer;
	font-size: 16px;
	font-weight: 500;
	display: inline-flex;
	justify-content: center;
}

.order-button:hover {
	background-color: #c43127;
}

.svg-order-button {
	margin-right: 10px;
	height: 17px;
	width: 17px;
	display: flex;
}
.hero {
	padding-top: 50px;
}

@media (min-width: 768px) {
	.hero {
		padding-top: 101px;
	}
}

.hero-container {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
}

@media (min-width: 992px) {
	.hero-container {
		flex-direction: row;
		align-items: flex-start;
		justify-content: space-between;
		text-align: left;
	}
}

.hero-text {
	flex: 1;
	max-width: 100%;
	margin-right: 0;
	margin-bottom: 30px;
}

@media (min-width: 992px) {
	.hero-text {
		max-width: 50%;
		margin-right: 50px;
		margin-bottom: 0;
	}
}

.hero-text h1 {
	font-size: 32px;
	font-weight: 700;
	margin-bottom: 15px;
}

@media (min-width: 992px) {
	.hero-text h1 {
		font-size: 48px;
		margin-bottom: 20px;
	}
}

.hero-text p {
	font-size: 18px;
	font-weight: 400;
	color: #151515;
}
@media (min-width: 992px) {
	.hero-text p {
		font-size: 24px;
	}
}

.hero-image {
	flex: 1;
	max-width: 80%;
}

@media (min-width: 992px) {
	.hero-image {
		max-width: 40%;
	}
}

.hero-image img {
	max-width: 100%;
	display: block;
}

.delivery-options {
	display: flex;
	gap: 20px;
	justify-content: center;
	align-items: center;
	padding-top: 50px;
}

.delivery-item {
	background-color: white;
	padding: 20px;
	border-radius: 25px;
	border: 1px solid #0000002e;
	text-align: center;
	width: 178px;
	height: 178px;
}

.delivery-item.special-delivery {
	background-color: white;
	width: 210px;
	height: 210px;
	border: 1px solid #e94235;
}

.delivery-item.special-delivery h3 {
	font-size: 20px;
	margin-bottom: 5px;
	background-color: #e94235;
	color: white;
	margin-top: 0px;
	padding: 7px 13px 7px 13px;
	border-radius: 11px;
	border: none;
	font-weight: 500;
	display: inline-block;
}

@media (max-width: 1530px) {
	.order-form-container,
	.second-form-container {
		padding-left: 20px;
		padding-right: 20px;
		padding-top: 30px;
		padding-bottom: 30px;
		border-radius: 0;
		margin-top: 20px;
	}

	.order-form,
	.delivery-calculation-form {
		flex-direction: column;
		margin: 20px 0;
		gap: 20px;
	}

	.form-group,
	.second-form-group {
		width: 100%;
		padding-top: 0;
	}

	.second-form-group label {
		padding-bottom: 5px;
	}

	.second-form-group input[type='email'],
	.second-form-group input[type='tel'],
	.second-form-group input[type='text'],
	.second-form-group textarea {
		width: 100%;
		height: auto;
		min-height: 100px;
	}

	.calculate-button {
		padding-left: 20px;
		padding-right: 20px;
		width: auto;
	}

	.order-button-form {
		width: auto;
		padding-left: 20px;
		padding-right: 20px;
		justify-content: center;
	}

	.quantity-input input[type='number'] {
		width: 50px;
		display: flex;
	}
}

@media (max-width: 1530px) {
	.delivery-options {
		display: inline-flex;
	}
}

@media (max-width: 900px) {
	.hero-container {
		flex-direction: column;
		text-align: center;
	}

	.hero-text {
		margin-bottom: 20px;
		padding-top: 105px;
	}

	.hero-image {
		text-align: center;
	}

	.delivery-options {
		flex-direction: column;
		align-items: center;
		padding-top: 30px;
		gap: 15px;
	}

	.delivery-item,
	.delivery-item.special-delivery {
		width: 100%;
		height: auto;
		max-width: 300px;
	}

	.delivery-item.special-delivery h3 {
		font-size: 18px;
	}

	.hero-text h1 {
		font-size: 2em;
	}

	.hero-text p {
		font-size: 1em;
	}
}

.red-text-hero {
	color: #e94235;
}

.red-text {
	color: #e94235;
	font-size: 27px;
	font-weight: 600;
}

.delivery-item p,
.delivery-item.special-delivery p {
	margin-bottom: 10px;

	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: normal;
	color: #000;
}

.delivery-item p img {
	height: 20px;
	width: 20px;
	margin-right: 5px;
}

.bold-text {
	font-weight: bold;
}

.price-from {
	margin-right: 5px;
}

.order-form-container {
	background-color: white;
	padding: 50px 75px 50px 130px;
	margin-top: 30px;
	border-radius: 22px;
}

.order-form {
	display: flex;
	gap: 15px;
	max-width: 1200px;
	margin: 50px 75px 50px 75px;
}

.form-group {
	display: flex;
	flex-direction: column;
	width: auto;
}

.form-group label {
	font-weight: bold;
	margin-bottom: 5px;
	display: flex;
	align-items: center;
	gap: 5px;
	padding-bottom: 15px;
}

.form-group label img {
	height: 16px;
}

.form-group input[type='email'],
.form-group input[type='tel'],
.form-group input[type='text'],
.form-group input[type='number'] {
	padding: 10px;
	border: 1px solid #ccc;
	border-radius: 12px;
	font-size: 16px;
	width: 100%;
	height: 55px;
	box-sizing: border-box;
}

.form-group input::placeholder {
	color: #aaa;
}

.quantity-input {
	display: flex;
	align-items: center;
	overflow: hidden;
}

@media (max-width: 768px) {
	.quantity-input {
		display: flex;
		align-items: center;
		overflow: hidden;
		flex-direction: column-reverse;
	}
}

.quantity-input input[type='number'] {
	border: none;
	text-align: center;
	width: 60px;
	-webkit-appearance: none;
	-moz-appearance: textfield;
	color: white;
	background-color: #e94235;
	padding: 10px 0;
}

.quantity-input input[type='number']::-webkit-inner-spin-button,
.quantity-input input[type='number']::-webkit-outer-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

.quantity-input input[type='number']::-ms-clear {
	display: none;
}

.quantity-button {
	background-color: white;
	color: #333;
	border: none;
	padding: 10px 15px;
	cursor: pointer;
	font-size: 18px;
	transition: background-color 0.3s;

	border-radius: 0;
}

.form-group.weight-group label,
.form-group.volume-group label {
	text-align: center;
	justify-content: center;
	display: flex;
	flex-direction: column;
	align-items: center;
}

@media (max-width: 768px) {
	.form-group.weight-group label,
	.form-group.volume-group label {
		text-align: center;
		justify-content: center;
		display: flex;
		flex-direction: column;
		align-items: center;
	}
}

.button-group {
	display: flex;
	justify-content: flex-end;
}

.order-button-form {
	color: white;
	border: none;
	border-radius: 15px;
	font-size: 16px;
	font-weight: 500;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	transition: background-color 0.3s;

	background-color: #e94235;
	width: 159px;
	height: 55px;
}

.form-section .order-button-form:hover {
	background-color: #c7372b;
}

.order-button-form img {
	filter: brightness(0) invert(1);
	padding-bottom: 2px;
}
@media (max-width: 768px) {
	.second-form-group {
		margin: 20px 20px 20px 20px;
		width: auto;
	}
}
@media (max-width: 768px) {
	.order-form-container,
	.second-form-container {
		padding-left: 20px;
		padding-right: 20px;
		padding-top: 30px;
		padding-bottom: 30px;
		border-radius: 0;
		margin-top: 20px;
	}

	.order-form,
	.delivery-calculation-form {
		flex-direction: column;
		margin: 20px 0;
		gap: 20px;
	}

	.form-group,
	.second-form-group {
		width: 100%;
		padding-top: 0;
	}

	.second-form-group label {
		padding-bottom: 5px;
	}

	.second-form-group input[type='email'],
	.second-form-group input[type='tel'],
	.second-form-group input[type='text'],
	.second-form-group textarea {
		width: 100%;
		height: auto;
		min-height: 100px;
		max-width: 333px;
	}

	.calculate-button {
		padding-left: 20px;
		padding-right: 20px;
		width: auto;
	}

	.order-button-form {
		width: auto;
		padding-left: 20px;
		padding-right: 20px;
		justify-content: center;
	}

	.quantity-input input[type='number'] {
		width: 50px;
		display: flex;
	}
}

.why-section {
	padding-top: 50px;
	padding-bottom: 100px;
}

.why-container {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	flex-direction: row;
}

.why-text {
	flex: 1;
	max-width: 50%;
	padding-top: 0;
	margin-right: 20px;
}

.why-image {
	max-width: 50%;
	text-align: right;
}

.why-image img {
	max-width: 100%;
	height: auto;
	display: block;
	border-radius: 22px;
}

@media (max-width: 991px) {
	.why-container {
		flex-direction: column;
		text-align: center;
	}

	.why-text {
		max-width: 100%;
		margin-bottom: 20px;
	}

	.why-image {
		max-width: 80%;
		margin: 0 auto;
		text-align: center;
	}
}

.why-text h1 {
	font-size: 32px;
	font-weight: 700;
	margin-bottom: 15px;
}

@media (min-width: 992px) {
	.why-text h1 {
		font-size: 48px;
		margin-bottom: 20px;
	}
}

.why-text p {
	font-size: 18px;
	font-weight: 400;
	color: #151515;
}

.why-options {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 30px;
	margin-top: 40px;
}

.why-item {
	display: flex;
	flex-direction: column;
	padding-top: 40px;
}

.why-item-icon {
	margin-bottom: 15px;
}

.why-item-icon img {
	height: 60px;
	width: auto;
	display: block;
}

@media (max-width: 768px) {
	.why-item-icon img {
		height: 60px;
		width: auto;
		display: inline-block;
	}
}

.why-item-text h3 {
	font-size: 20px;
	font-weight: bold;
	margin-bottom: 15px;
	margin-top: 30px;
}

.why-item-text p {
	font-size: 16px;
	color: black;
	margin-top: 0;
	margin-bottom: 0;
	line-height: 1.4;
}

@media (max-width: 767px) {
	.why-options {
		grid-template-columns: 1fr;
	}
	.why-item {
		flex-direction: column;
		text-align: center;
	}
}

.second-form-section {
	display: flex;
	align-items: center;
}

.second-form-container {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	max-width: 1630px;
	padding-left: 145px;
	padding-right: 145px;
	margin: 0 auto;
	background-color: white;
}

@media (max-width: 991px) {
	.second-form-container {
		flex-direction: column;
		align-items: stretch;
		padding-left: 1px;
		padding-right: 20px;
	}
}

.form-side {
	flex: 1;
	max-width: 50%;
	margin-right: 30px;
}

.image-side {
	flex: 1;
	max-width: 50%;
	text-align: right;
}

@media (max-width: 768px) {
	.image-side img {
		max-width: 97% !important;
	}
}

.image-side img {
	max-width: 100%;
	height: auto;
	display: block;
	border-radius: 22px;
}

.form-text h2 {
	font-size: 48px;
	font-weight: 700;
	line-height: 57px;
	margin-bottom: 15px;
}

.form-text p {
	font-size: 18px;
	font-weight: 400;
	color: #151515;
	margin-bottom: 30px;
}

@media (max-width: 768px) {
	.form-text {
		padding-right: 0px;
	}
	.form-text h2 {
		font-size: 32px;
		line-height: 40px;
	}
}

@media (max-width: 350px) {
	.form-text {
		padding-right: 55px;
	}
	.form-text h2 {
		font-size: 32px;
		line-height: 40px;
	}
}

.red-text {
	color: #e94235;
}

.delivery-calculation-form {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.second-form-group {
	display: flex;
	flex-direction: column;
	padding-top: 50px;
}

.second-form-group label {
	font-weight: bold;
	margin-bottom: 5px;
	display: flex;
	align-items: center;
	gap: 5px;
	padding-bottom: 10px;
}

.second-form-group label img {
	height: 16px;
}

.second-form-group input[type='email'],
.second-form-group input[type='tel'],
.second-form-group input[type='text'],
.second-form-group textarea {
	padding: 15px;
	border: 1px solid #ccc;
	border-radius: 12px;
	font-size: 16px;
	height: 200px;
	width: 430px;
	box-sizing: border-box;
	height: 55px;
	font-family: 'SF Pro Display', sans-serif;
}

.second-form-group textarea {
	height: auto;
	min-height: 150px;
	resize: vertical;
}

.second-form-group input::placeholder,
.second-form-group textarea::placeholder {
	color: #aaa;
}

.calculate-button {
	background-color: #e94235;
	color: white;
	margin-top: 30px;
	border: none;
	border-radius: 14px;
	cursor: pointer;
	font-size: 16px;
	font-weight: 500;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	transition: background-color 0.3s;
	width: 431px;
	height: 60px;
}

.calculate-button:hover {
	background-color: #c43127;
}

@media (max-width: 768px) {
	.calculate-button {
		max-width: 421px;
	}
}

@media (max-width: 991px) {
	.form-side {
		max-width: 100%;
		margin-bottom: 30px;
	}

	.image-side {
		max-width: 100%;
		text-align: center;
	}
}

@media (max-width: 390px) {
	.form-side {
		max-width: 80%;
		margin-bottom: 30px;
	}

	.image-side {
		max-width: 100%;
		text-align: center;
	}
}

.red-text-second-form {
	color: #e94235;
	font-size: 48px;
	font-weight: 700;
	line-height: 57px;
}

.official-section {
	padding-top: 50px;
	padding-bottom: 50px;
	background-color: #f4f4f4;
}

.official-container {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	max-width: 1630px;
	padding-left: 145px;
	padding-right: 145px;
	margin: 0 auto;
}

@media (max-width: 991px) {
	.official-container {
		flex-direction: column;
		align-items: stretch;
		text-align: center;
		padding-left: 0px;
		padding-right: 0px;
	}
}

.official-text {
	flex: 1;
	max-width: 50%;
	margin-left: -30px;
}

.official-image {
	max-width: 50%;
	text-align: right;
	position: relative;
}

.official-image img {
	max-width: 100%;
	height: auto;
	display: block;
	border-radius: 22px;
}

.official-text h1 {
	font-size: 32px;
	font-weight: 700;
	margin-bottom: 15px;
	line-height: 1.2;
}

@media (min-width: 992px) {
	.official-text h1 {
		font-size: 48px;
		margin-bottom: 20px;
	}
}

.official-text p {
	font-size: 18px;
	font-weight: 400;
	color: #151515;
	line-height: 1.5;
}

.license-text-block {
	background-color: white;
	padding: 20px;
	border-radius: 14px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
	position: absolute;
	bottom: -30px;

	text-align: left;
	margin: -173px 134px 0px -177px;
}

.license-text-block h3 {
	font-size: 20px;
	font-weight: bold;
	margin-top: 0;
	margin-bottom: 10px;
	text-align: left;
}

.license-text-block p {
	font-size: 16px;
	color: #555;
	margin-top: 0;
	margin-bottom: 0;
	line-height: 1.4;
	text-align: left;
}

@media (max-width: 991px) {
	.official-text {
		max-width: 100%;
		margin-left: 0;
		margin-bottom: 30px;
		text-align: center;
	}

	.official-image {
		max-width: 100%;
		text-align: center;
	}

	.license-text-block {
		position: static;
		margin: 20px auto 0;
		max-width: 90%;
		text-align: center;
	}
}

.promo-section {
	padding-top: 80px;
	padding-bottom: 80px;
	background-color: #f4f4f4;
}

.promo-container {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	position: relative;
	max-width: 1680px;
	padding-left: 0;
	padding-right: 0;
	margin: 0 auto;
	background-color: white;
	border-radius: 20px;
	padding: 80px 145px;
	box-sizing: border-box;
	margin-bottom: 50px;
}

.promo-text h1 {
	font-size: 55px;
	font-weight: 700;
	line-height: 1.1;
}

.promo-text {
	position: relative;
	z-index: 1;
	max-width: 48%;
	margin-right: 30px;
	margin-top: 0;
	margin-left: 0;
}

.promo-text p {
	font-family: SF Pro Display, sans-serif;
	font-size: 18.27px;
	font-weight: 500;
	line-height: 27.41px;
}

.red-text-hero {
	color: #f44336;
}
.promo-images {
	position: relative;
	width: 700px;
	height: 700px;
	overflow: hidden;
	border-radius: 0 20px 20px 0;
	text-align: right;
}

.promo-images img {
	position: absolute;
	height: auto;
	object-fit: cover;
	border-radius: 15px;
}

.promo-images img:nth-child(1) {
	top: 60%;
	left: 30%;
	z-index: 4;
}

.promo-images img:nth-child(3) {
	top: 13%;
	right: -2%;
	z-index: 3;
}

.promo-images img:nth-child(2) {
	bottom: 22%;
	left: 0%;
	z-index: 3;
}

@media (max-width: 768px) {
	.promo-images {
		height: 440px;
	}

	.promo-images img:nth-child(1) {
		top: 70%;
		left: 16%;
		z-index: 4;
	}

	.promo-images img:nth-child(3) {
		top: -93%;
		right: -63%;
		z-index: 3;
		max-width: 40%;
	}

	.promo-images img:nth-child(2) {
		bottom: 30%;
		left: -7%;
		z-index: 3;
	}
}

@media (max-width: 991px) {
	.daily-section {
	}
}

@media (max-width: 991px) {
	.promo-container {
		flex-direction: column;
		padding: 40px 20px;
		border-radius: 0;
	}

	.promo-text {
		max-width: 100%;
		margin-right: 0;
		margin-bottom: 30px;
		text-align: center;
	}

	.promo-text h1 {
		font-size: 40px;
		text-align: center;
	}

	.promo-images {
		width: 100%;
		overflow: visible;
		border-radius: 0;
		text-align: center;
	}

	.promo-images img {
		position: relative;
		max-width: 70%;
		margin-bottom: 20px;
		display: block;
		margin-right: auto;
	}
}

.daily-text h1 {
	font-size: 48px;
	font-weight: 700;
	line-height: 57px;
	max-width: 60%;
}

.daily-container {
	max-width: 1680px;
	margin: 0 auto;
}

.daily-message {
	display: flex;
	gap: 30px;
}

.daily-item-first {
	background-color: white;
	color: black;
	border-radius: 15px;
	width: 640px;
	height: 142px;

	display: flex;
	justify-content: center;
	align-items: center;
}

.daily-item-second {
	background-color: white;
	color: black;
	border-radius: 15px;
	width: 640px;
	height: 142px;

	display: flex;
	justify-content: center;
	align-items: center;
}

.daily-item-first,
.daily-item-second {
	padding-left: 27px;
	box-sizing: border-box;
}

.daily-item-first p,
.daily-item-second p {
	margin: 0;
}

@media (max-width: 991px) {
	.daily-text h1 {
		font-size: 32px;
		text-align: center;
		max-width: 100%;
	}

	.daily-message {
		flex-direction: column;
		gap: 20px;
	}

	.daily-item-first,
	.daily-item-second {
		width: 100%;
		height: auto;
		padding: 20px;
		text-align: center;
	}
}

.features-section {
	max-width: 1630px;
	padding-left: 96px;
	padding-right: 145px;
	padding-top: 30px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.grid-container {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-gap: 15px;
	max-width: 1180px;
	max-height: 580px;
}

.grid-item {
	background-color: #fff;
	border-radius: 8px;
	padding: 25px;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.grid-item h3 {
	font-size: 1.5em;
	margin-bottom: 10px;
	color: #333;
	text-align: center;
}

.grid-item p {
	font-size: 1em;
	color: #555;
	line-height: 1.6;
	text-align: center;
}

.grid-item.image-item {
	padding: 0;
	overflow: hidden;
}

.grid-item.image-item img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 8px;
}

@media (max-width: 768px) {
	.grid-container {
		grid-template-columns: 1fr;
		padding-bottom: 1749px;
	}
}

@media (max-width: 768px) {
	.features-section {
		margin-left: -80px;
		padding-right: 20px;
	}
}

@media (max-width: 768px) {
	.daily-fast-section {
		padding-left: 50px;
		padding-top: 150px;
		background-color: #f4f4f4;
	}
}

.daily-fast-section {
	padding-top: 150px;
	padding-bottom: 80px;
	background-color: #f4f4f4;
}

.daily-fast-container {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	position: relative;
	max-width: 1680px;
	padding-left: 0;
	padding-right: 0;
	margin: 0 auto;
	background-color: white;
	border-radius: 20px;
	padding: 40px 145px;
	box-sizing: border-box;
	margin-bottom: 50px;
}
.daily-fast-text h1 {
	font-size: 48px;
	font-weight: 700;
	line-height: 57px;
}

.daily-fast-text {
	position: relative;
	z-index: 1;
	max-width: 60%;
	margin-right: 30px;
	margin-top: 0;
	margin-left: 0;
}

.daily-fast-cards {
	display: flex;
	justify-content: center;
	gap: 20px;
	flex-wrap: wrap;
}

.daily-fast-card {
	background: #151515;
	border-radius: 15px;
	padding: 30px;
	text-align: left;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
	max-width: calc(50% - 10px);
	width: auto;
	height: 220px;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: left;
}

.daily-fast-card h3 {
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 10px;
	color: white;
}

.daily-fast-card p {
	font-size: 14px;
	color: white;
	font-weight: 400;
}

@media (max-width: 991px) {
	.daily-fast-container {
		padding-left: 20px;
		padding-right: 20px;
		margin-top: 115px;
		margin-right: 25px;
		margin-left: -32px;
		padding-bottom: 40px;
		border-radius: 0;
		text-align: center;
	}

	.daily-fast-text {
		max-width: 100%;
		margin-right: 0;
		margin-bottom: 20px;
		text-align: center;
	}

	.daily-fast-text h1 {
		font-size: 32px;
	}

	.daily-fast-cards {
		flex-direction: column;
	}

	.daily-fast-card {
		max-width: 100%;
		height: auto;
		text-align: center;
		align-items: center;
	}
}

.type-message {
	display: flex;
	justify-content: left;
	gap: 30px;
	flex-wrap: wrap;
}

.type-item-first {
	background-color: white;
	color: #323232;
	border-radius: 12px;
	border: 1px #a1a1a1 solid;
	width: 570px;
	height: 240px;
}

.type-item-second {
	background-color: white;
	color: #323232;
	border-radius: 12px;
	border: 1px #a1a1a1 solid;
	width: 570px;
	height: 240px;
}

.type-item-first,
.type-item-second {
	padding-left: 27px;
	box-sizing: border-box;
}

.type-item-first p,
.type-item-second p {
	margin: 0;
}

.type-item-third {
	background-color: white;
	color: #323232;
	border-radius: 12px;
	border: 1px #a1a1a1 solid;
	width: 770px;
	height: 240px;
}

.type-item-four {
	background-color: white;
	color: #323232;
	border-radius: 12px;
	border: 1px #a1a1a1 solid;
	width: 670px;
	height: 240px;
}

.type-item-third,
.type-item-four {
	padding-left: 27px;
	box-sizing: border-box;
}

.type-item-third p,
.type-item-four p {
	margin: 0;
}

.type-text h1 {
	font-size: 48px;
	font-weight: 700;
	line-height: 57px;
	max-width: 60%;
}

@media (max-width: 991px) {
	.type-text h1 {
		font-size: 48px;
		font-weight: 700;
		line-height: 57px;
		max-width: 60%;
		margin-bottom: 53px;
		padding-bottom: 42px;
		padding-right: 74px;
		text-align: right;
		margin: 0 auto;
	}
}

.type-section {
	padding-top: 80px;
	padding-bottom: 80px;
	background-color: #f4f4f4;
}

.type-container {
	max-width: 1680px;
	margin: 0 auto;
	padding: 0 20px;
}

.type-message {
	display: flex;
	justify-content: flex-start;
	gap: 20px;
	flex-wrap: wrap;
}

.type-item {
	background-color: white;
	color: #323232;
	border-radius: 12px;
	border: 1px #a1a1a1 solid;
	width: calc(50% - 10px);
	max-width: 570px;
	height: 240px;
	display: flex;
	flex-direction: column;
	padding: 35px;
	box-sizing: border-box;
	position: relative;
}

.type-item-content {
	margin-bottom: 10px;
}

.type-item h3 {
	font-size: 20px;
	font-weight: 600;
	margin-top: 0;
	margin-bottom: 10px;
}

.type-item p {
	font-size: 14px;
	line-height: 1.4;
	margin: 0;
}

.type-item-image {
	text-align: center;
	margin-bottom: 30px;
	margin-left: auto;
}

.type-item-image img {
	max-width: 100%;
	height: auto;
	max-height: 120px;
	display: block;
	margin: 0 auto;
	margin-top: -40px;
}

@media (max-width: 768px) {
	.type-item-image img {
		display: none;
		padding-left: 63px;
		padding-bottom: 80px;
		margin-bottom: 2px;
	}
}

.type-item-price {
	background-color: #f05237;
	color: white;
	border-radius: 8px;
	padding: 10px 20px;
	font-weight: bold;
	position: absolute;
	bottom: 36px;
	left: 35px;
	font-size: 16px;
}

.type-item-third {
	max-width: 770px;
}

.type-item-four {
	max-width: 670px;
}

@media (max-width: 768px) {
	footer {
		width: 472px;
	}
}

@media (max-width: 768px) {
	.type-message {
		margin-left: 12px;
	}
	.type-item {
		width: 100%;
		max-width: none;
		height: auto;
		flex-direction: row;
		align-items: center;
		text-align: left;
		padding: 20px;
	}
	.type-item-content {
		margin-bottom: 0;
		margin-right: 20px;
	}
	.type-item-image {
		margin-bottom: 0;
		margin-left: 0;
		text-align: left;
	}
	.type-item-price {
		position: static;
		margin-left: -16px;
	}
}

.stage-work-section {
	padding-top: 150px;
	padding-bottom: 80px;
	background-color: #f4f4f4;
}

@media (max-width: 768px) {
	.stage-work-section {
		padding-top: 0px;
		padding-bottom: 0px;
	}
}

.stage-work-container {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	position: relative;
	max-width: 1680px;
	padding-left: 0;
	padding-right: 0;
	margin: 0 auto;
	background-color: white;
	border-radius: 20px;
	padding: 40px 145px;
	box-sizing: border-box;
	margin-bottom: 50px;
}

.stage-work-text h1 {
	font-size: 48px;
	font-weight: 700;
	line-height: 57px;
}

.stage-work-text p {
	margin-top: -20px;
	margin-bottom: 104px;
}

.stage-work-text {
	position: relative;
	z-index: 1;
	margin-right: 30px;
	margin-top: 0;
	margin-left: 0;
}

@media (max-width: 991px) {
	.stage-work-container {
		padding-left: 55px;
		padding-right: 64px;
		padding-top: 37px;
		padding-bottom: 6px;
		border-radius: 0;
		text-align: center;
	}

	.stage-work-text {
		text-align: center;
		margin-right: 0;
		margin-bottom: 20px;
	}

	.stage-work-text h1 {
		font-size: 32px;
	}

	.stage-work-text p {
		margin-bottom: 30px;
	}

	.stage-work-text img {
		max-width: 100%;
		height: auto;
	}
}

@media (max-width: 768px) {
	.stage-work-text img {
		display: none; /* Скрыть все изображения */
	}

	.stage-work-text img:last-child {
		display: block !important; /* Показать только Group_51.png */
	}
}

.partners-container {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	position: relative;
	max-width: 1680px;
	padding-left: 0;
	padding-right: 0;
	margin: 0 auto;
	border-radius: 20px;
	box-sizing: border-box;
	margin-bottom: 50px;
}

.partners-text h1 {
	font-size: 48px;
	font-weight: 700;
	line-height: 57px;
}

.partners-text p {
	margin-top: -20px;
	margin-bottom: 104px;
}

.partners-text {
	position: relative;
	z-index: 1;
	margin-right: 30px;
	margin-top: 0;
	margin-left: 0;
}

.partners-text img {
	width: 1680px;
}

.partners-cards {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	gap: 20px;
	margin-bottom: 20px;
}

.partners-card {
	background-color: white;
	color: #323232;
	border-radius: 20px;
	padding: 0px 30px;
	font-size: 18px;
	font-weight: 500;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
	margin-bottom: 0;
	width: 486px;
	height: 60px;
	display: flex;
	align-items: center;
}

@media (max-width: 991px) {
	.partners-container {
		padding-left: 18px;
		padding-right: 20px;
		padding-top: 80px;
		padding-bottom: 40px;
		border-radius: 0;
		text-align: center;
	}

	.partners-text {
		text-align: center;
		margin-right: 0;
		margin-bottom: 20px;
	}

	.partners-text h1 {
		font-size: 32px;
	}

	.partners-text p {
		margin-bottom: 30px;
	}

	.partners-text img {
		max-width: 100%;
		height: auto;
	}

	.partners-cards {
		justify-content: center;
	}

	.partners-card {
		width: 100%;
		max-width: none;
	}
}

.requests-text {
	position: relative;
	z-index: 1;
	margin-right: 30px;
	margin-top: 0;
	margin-left: 0;
}

.requests-text h1 {
	font-size: 48px;
	font-weight: 700;
	line-height: 57px;
}

.requests-container {
	flex-direction: column;
	position: relative;
	max-width: 1680px;
	padding-left: 0;
	padding-right: 0;
	margin: 0 auto;
	border-radius: 20px;
	box-sizing: border-box;
	margin-bottom: 50px;
}

@media (max-width: 991px) {
	.requests-container {
		padding-left: 0px;
		padding-right: 40px;
		padding-top: 80px;
		padding-bottom: 40px;
		border-radius: 0;
		text-align: center;
	}

	.requests-text {
		text-align: center;
		margin-right: 0;
		margin-bottom: 20px;
	}

	.requests-text h1 {
		font-size: 32px;
		padding-left: 40px;
	}

	.requests-container img {
		max-width: 100%;
		height: auto;
		padding-left: 40px;
	}
}

footer {
	background: #151515;
	color: #fff;
	font-family: 'SF Pro Display', Arial, sans-serif;
}

@media (max-width: 768px) {
	footer {
		margin-left: -33px;
	}
}

.footer-container {
	max-width: 1680px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	padding-top: 70px;
	padding-right: 380px;
	padding-bottom: 64px;
	padding-left: 360px;
	height: 574px;
}

.footer-contact-col {
	padding-top: 20px;
}

.footer-map-col {
	display: flex;
	justify-content: center;
	align-items: center;
}

.footer-col-title {
	font-weight: 500;
	font-size: 52px;
	font-family: 'Montserrat', sans-serif;
	margin-bottom: 40px;
}

.contact-item {
	display: flex;
	align-items: flex-start;
	margin-bottom: 20px;
}

.footer-contact-label {
	font-family: 'Montserrat', sans-serif;
	font-size: 28px;
	margin-right: 10px;
	white-space: nowrap;
	display: block;
}

.footer-contact-info {
	font-family: 'Montserrat', sans-serif;
	font-size: 20px;
	margin-bottom: 30px;
	word-break: break-word;
	margin-top: -23px;
}

.contact-item div {
	margin-right: 20px;
}

.contact-item-row {
	display: flex;
	justify-content: flex-start;
	gap: 20px;
}

.map-placeholder {
	color: #fff;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 24px;
	padding-top: 80px;
	font-weight: bold;
}

.footer-contact-col img {
	padding-left: 30px;
	margin-top: -20px;
}

.footer-contact-col a {
	text-decoration: none;
}

@media (max-width: 768px) {
	.footer-container {
		grid-template-columns: 1fr;
		padding-left: 20px;
		padding-right: 20px;
		padding-top: 40px;
		padding-bottom: 40px;
		height: auto;
		text-align: center;
		padding-right: 20px;
		padding-left: 20px;
	}

	.footer-col-title {
		font-size: 32px;
		margin-bottom: 20px;
		text-align: center;
	}

	.contact-item {
		flex-direction: column;
		align-items: center;
	}

	.footer-contact-label {
		font-size: 20px;
		margin-right: 0;
		margin-bottom: 5px;
		text-align: center;
	}

	.footer-contact-info {
		font-size: 16px;
		margin-top: 0;
		margin-bottom: 15px;
		text-align: center;
	}

	.contact-item-row {
		flex-direction: column;
		gap: 10px;
		align-items: center;
	}

	.footer-contact-col img {
		padding-left: 0;
		margin-top: 10px;
		display: inline-block;
		margin-right: 10px;
	}

	.map-placeholder {
		height: 300px;
		display: none;
	}

	.footer-map-col {
		margin-top: 20px;
	}
}

@media (max-width: 768px) {
	.main-footer {
		width: 472px;
	}
}

.main-footer {
	background-color: #151515;
	color: #fff;
	padding-top: 60px;
	padding-bottom: 60px;
}

.footer-container {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	padding-left: 20px;
	padding-right: 20px;
}

.footer-logo {
	width: 15%;
	min-width: 100px;
	margin-bottom: 20px;
	text-align: center;
}

.footer-logo img {
	max-width: 100%;
	height: auto;
	margin-bottom: 14px;
}

.copyright {
	font-size: 14px;
	color: #a0a0a0;
	font-family: 'Montserrat', sans-serif;
	text-align: center;
	margin-top: 20px;
}

.footer-nav {
	display: flex;
	gap: 40px;
	width: 30%;
}

.footer-nav-column {
	width: 50%;
}

.footer-nav-title {
	font-family: 'Montserrat', sans-serif;
	font-optical-sizing: auto;
	font-weight: 500;
	font-style: normal;
	font-size: 16px;
	margin-bottom: 15px;
	text-transform: uppercase;
	color: #fff;
	text-align: left;
}

.footer-nav-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-nav-list li {
	margin-bottom: 10px;
}

.footer-nav-list a {
	font-family: 'Montserrat', sans-serif;
	color: #a0a0a0;
	text-decoration: none;
	font-size: 14px;
	transition: color 0.3s ease;
}

.footer-nav-list a:hover {
	color: #fff;
}

.footer-contacts {
	width: 30%;
	text-align: left;
}

.footer-contacts p {
	font-family: 'Montserrat', sans-serif;
	font-optical-sizing: auto;
	font-weight: 500;
	font-style: normal;
	font-size: 14px;
	line-height: 1.6;
	color: white;
	margin-bottom: -28px;
	margin-top: 38px;
}

.footer-contacts a {
	font-family: 'Montserrat', sans-serif;
	color: white;
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer-contacts a:hover {
	color: #fff;
}

.footer-socials {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
}

.social-icon {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 35px;
	height: 35px;
	border-radius: 50%;
	color: #081a31;
	font-size: 18px;
	margin-bottom: 10px;
	text-decoration: none;
	transition: background-color 0.3s ease, color 0.3s ease;
}

.social-icon:hover {
	background-color: #007bff;
	color: #fff;
}

@media (max-width: 768px) {
	.footer-container {
		flex-direction: column;
		text-align: center;
	}

	.footer-logo {
		width: auto;
		text-align: center;
		margin-bottom: 20px;
	}

	.footer-nav {
		flex-direction: column;
		width: 100%;
		gap: 20px;
		margin-bottom: 20px;
		text-align: center;
	}

	.footer-nav-column {
		width: 100%;
		margin-bottom: 20px;
	}

	.footer-nav-title {
		text-align: center;
	}

	.footer-contacts {
		width: 100%;
		text-align: center;
		margin-bottom: 20px;
	}

	.footer-socials {
		align-items: center;
		margin-top: 20px;
	}
}

@media (max-width: 375px) {
	.footer-col-title {
		font-size: 28px;
	}

	.footer-contact-label {
		font-size: 18px;
	}

	.footer-contact-info {
		font-size: 14px;
	}

	.map-placeholder {
		font-size: 20px;
	}
}

.highlight {
	animation: glowing-border 1.5s ease-in-out;
	border: 2px solid #e94235;
	border-radius: 10px;
}

nav ul {
	list-style: none;
	padding: 0;
}

nav ul li {
	position: relative;
}

nav ul li a {
	text-decoration: none;
	color: black;
	font-size: 16px;
	position: relative;
	padding-bottom: 5px; /* Отступ перед линией */
}

nav ul li a::after {
	content: '';
	position: absolute;
	left: 50%;
	bottom: 0;
	width: 0;
	height: 2px;
	background-color: #e94235;
	transition: width 0.3s ease-in-out, left 0.3s ease-in-out;
}

nav ul li a:hover::after {
	width: 100%;
	left: 0;
}
#notification-container {
	position: fixed;
	top: 20px;
	right: 20px;
	width: 300px;
	z-index: 1000;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.notification {
	background: #4caf50;
	color: white;
	padding: 15px;
	border-radius: 8px;
	box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
	font-size: 16px;
	animation: fadeIn 0.5s ease-out, fadeOut 0.5s ease-in 4s forwards;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(-10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeOut {
	to {
		opacity: 0;
		transform: translateY(-10px);
	}
}
