@font-face {
	font-family: 'Involve';
	src: url('../fonts/Involve-Regular.woff2') format('woff2');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Involve';
	src: url('../fonts/Involve-Oblique.woff2') format('woff2');
	font-weight: 400;
	font-style: oblique;
	font-display: swap;
}

@font-face {
	font-family: 'Involve';
	src: url('../fonts/Involve-Medium.woff2') format('woff2');
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Involve';
	src: url('../fonts/Involve-MediumOblique.woff2') format('woff2');
	font-weight: 500;
	font-style: oblique;
	font-display: swap;
}

@font-face {
	font-family: 'Involve';
	src: url('../fonts/Involve-SemiBold.woff2') format('woff2');
	font-weight: 600;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Involve';
	src: url('../fonts/Involve-SemiBoldOblique.woff2') format('woff2');
	font-weight: 600;
	font-style: oblique;
	font-display: swap;
}

@font-face {
	font-family: 'Involve';
	src: url('../fonts/Involve-Bold.woff2') format('woff2');
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Involve';
	src: url('../fonts/Involve-BoldOblique.woff2') format('woff2');
	font-weight: 700;
	font-style: oblique;
	font-display: swap;
}

@font-face {
	font-family: 'UNCAGE';
	src: url('../fonts/UNCAGE-Regular.woff2') format('woff2');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'UNCAGE';
	src: url('../fonts/UNCAGE-Medium.woff2') format('woff2');
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'UNCAGE';
	src: url('../fonts/UNCAGE-SemiBold.woff2') format('woff2');
	font-weight: 600;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'UNCAGE';
	src: url('../fonts/UNCAGE-Bold.woff2') format('woff2');
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}

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

.first__block {
	background: url(../image/bg-main.png);
	max-width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

.container {
	max-width: 1320px;
	widows: 100%;
	margin: 0 auto;
}

.header {
	position: fixed;
	top: 30px;
	left: 0;
	right: 0;
	z-index: 999;
	transition: all .3s ease;
}

.container__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	transition: all .3s ease;
}

.header__ul {
	display: flex;
	justify-content: space-between;
	gap: 50px;
	align-items: center;
}

.header__ul li {
	list-style-type: none;
}

.header__ul li a {
	font-family: 'Involve', sans-serif;
	font-weight: 400;
	font-size: 16px;
	color: #fff;
	opacity: 0.8;
	text-decoration: none;
}

.header__button {
	border-radius: 50px;
	padding: 12px 30px;
	width: 137px;
	background: #ffd602;
	font-weight: 500;
	font-size: 16px;
	color: #020816;
	border: none;
	cursor: pointer;
}

.header__ul li .header__phone{
	font-family: 'Involve', sans-serif;
	font-weight: 500;
	font-size: 16px;
	color: #fff;
	text-decoration: none;
}

.header.scrolled {
	top: 0;
	padding: 15px 0;
	background: rgba(255,255,255,.5);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
}

.header.scrolled .header__ul li a,
.header.scrolled .header__phone {
	color: #020816;
	opacity: 1;
}

.first__block {
	padding-top: 150px;
}

.first__block__span {
	font-family: 'Involve', sans-serif;
	font-weight: 400;
	font-size: 16px;
	color: #fff;
	padding: 12px 30px;
	opacity: 0.7;
	border: 1px solid #fff;
	border-radius: 50px;
}

.first__block__title__and__text {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
	margin-top: 40px;
	margin-bottom: 25px;
}

.first__block__title__and__text__h1 {
	font-family: 'UNCAGE', sans-serif;
	font-weight: 500;
	font-size: 67px;
	color: #fff;
}

.first__block__title__and__text__h1 span {
	color: #ffd602;
}

.first__block__title__and__text__p {
	font-family: 'Involve', sans-serif;
	font-weight: 400;
	font-size: 20px;
	color: #fff;
	padding-bottom: 16px;
}

.first__block__cart__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

.first__block__cart__grid__cart {
	background: rgba(0, 0, 0, 0.2);
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 20px;
	padding: 25px;
}

.first__block__cart__grid__cart__number {
	font-family: 'UNCAGE', sans-serif;
	font-weight: 500;
	font-size: 36px;
	color: #ffd602;
	padding-bottom: 3px;
}

.first__block__cart__grid__cart_text {
	font-family: 'Involve', sans-serif;
	font-weight: 400;
	font-size: 16px;
	color: #fff;
}

.first__block__form {
	background: rgba(0, 0, 0, 0.2);
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
	border: 1px solid rgba(255, 255, 255, 0.12);
	margin-top: 30px;
	border-radius: 20px 20px 0 0;
	padding: 36px 30px;
}

.first__block__form__h2 {
	font-family: 'UNCAGE', sans-serif;
	font-weight: 500;
	font-size: 32px;
	color: #fff;
	padding-bottom: 15px;
}

.first__block__form__p {
	font-family: 'Involve', sans-serif;
	font-weight: 400;
	font-size: 16px;
	color: #fff;
	padding-bottom: 20px;
}

.first__block__form__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.field{
	border:1px solid #fff;
	opacity: 0.7;
	border-radius:36px;
	padding: 9px 30px 15px;
}

.field input{
	width:100%;
	background:none;
	border:none;
	outline:none;
	font-weight: 400;
	font-size: 16px;
	color: #fff;
	font-family: 'Involve', sans-serif;
}

.field input::placeholder {
	font-weight: 400;
	font-size: 16px;
	color: #fff;
	opacity: 0.9;
	font-family: 'Involve', sans-serif;
}


.field select::placeholder {
	font-weight: 400;
	font-size: 16px;
	color: #fff;
	opacity: 0.9;
	font-family: 'Involve', sans-serif;
}

.field legend {
	padding: 0 6px;
	color: #fff;
	font-family: 'Involve', sans-serif;
	font-weight: 400;
	font-size: 16px;
}

.field select {
	width: 100%;
	border: none;
	outline: none;
	background: transparent;
	font-family: 'Involve', sans-serif;
	font-size: 16px;
	font-weight: 400;
	color: #fff;
	cursor: pointer;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;

	padding-right: 45px;
}

.field--select {
	position: relative;
}

.field--select::after {
	content: "";
	position: absolute;
	top: 40%;
	right: 30px;
	width: 8px;
	height: 8px;
	transform: translateY(-70%) rotate(45deg);
	border-right: 2px solid #fff;
	border-bottom: 2px solid #fff;
	pointer-events: none;
	transition: .3s ease;
}

.first__block__form__button {
	display: flex;
	gap: 20px;
}

.first__block__form__button button {
	font-family: 'Involve', sans-serif;
	border-radius: 50px;
	padding: 12px 131px;
	font-weight: 500;
	font-size: 16px;
	color: #020816;
	background: #ffd602;
	border: none;
	cursor: pointer;
}


.first__block__form__button p {
	font-family: 'Involve', sans-serif;
	font-weight: 400;
	font-size: 14px;
	color: #fff;
	opacity: 0.7;
	padding-top: 8px;
}

.ticker {
	overflow: hidden;
	width: 100%;
	background: #FFD602;
	padding: 14px 0;
}

.ticker__track {

	display: flex;

	width: max-content;

	animation: ticker 18s linear infinite;
}

.ticker__content {

	display: flex;
	align-items: center;
	gap: 24px;

	padding-right: 24px;
}

.ticker__content span {

	flex-shrink: 0;
	white-space: nowrap;

	font-family: 'UNCAGE', sans-serif;
	font-size: 20px;
	font-weight: 500;
	color: #020816;
}

@keyframes ticker {

	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(-50%);
	}

}

.promises__block {
	background: #fff;
	padding: 70px 0px 70px;
	
    
}

.promises__block__span {
	font-weight: 400;
	font-size: 16px;
	color: #020816;
	font-family: 'Involve', sans-serif;
	border: 1px solid #020816;
	border-radius: 50px;
	padding: 12px 30px;
}

.promises__block__h2 {
	font-weight: 500;
	font-size: 74px;
	color: #020816;
	padding-top: 30px;
	padding-bottom: 30px;
	font-family: 'UNCAGE', sans-serif;
}

.promises__block__p {
	font-family: 'Involve', sans-serif;
	font-weight: 400;
	font-size: 20px;
	color: #020816;
	padding-bottom: 30px;

}

.promises__block__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin-bottom: 20px;
}

.promises__block__two__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}

.promises__block__grid__bg {
	background: #f8f8f9;
	border-radius: 20px;
	padding: 20px;
}

.promises__block__grid__bg__svg {
	background: #FFD602;
	border-radius: 100px;
	padding: 18px;
	width: 60px;
	height: 60px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.promises__block__grid__bg__h3 {
	font-family: 'Involve', sans-serif;
	font-weight: 500;
	font-size: 24px;
	color: #020816;
	padding-top: 15px;
}

.promises__block__grid__bg__p {
	padding-top: 10px;
	padding-bottom: 15px;
	font-family: 'Involve', sans-serif;
	font-weight: 400;
	font-size: 16px;
	color: #020816;
}

.promises__block__grid__bg__text {
	font-family: 'Involve', sans-serif;
	font-weight: 500;
	font-size: 16px;
	color: #041133;
}

.included__block {
	border-radius: 60px 60px 0 0;
	background: #041133;
	padding-top: 60px;

}

.included__block__span {
	font-weight: 400;
	font-size: 16px;
	color: #fff;
	font-family: 'Involve', sans-serif;
	border: 1px solid #fff;
	border-radius: 50px;
	padding: 12px 30px;
	opacity: 0.7;
}

.included__block__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
	padding: 30px 0px 62px;
}

.included__block__grid__h2 {
	font-weight: 500;
	font-size: 67px;
	color: #fff;
	font-family: 'UNCAGE', sans-serif;
}

.included__block__grid__p {
	font-weight: 400;
	font-size: 20px;
	color: #fff;
	padding-bottom: 20px;
	font-family: 'Involve', sans-serif;
}

.included__block__grid__text {
	font-weight: 400;
	font-size: 20px;
	color: #fff;
	font-family: 'Involve', sans-serif;
	padding-bottom: 20px;
	opacity: 0.7;
}

.included__block__grid__button {
	background: #ffd602;
	border: none;
	border-radius: 50px;
	padding: 12px 30px;
	font-weight: 500;
	font-size: 16px;
	color: #020816;
	font-family: 'Involve', sans-serif;
	width: 100%;
	cursor: pointer;
}

.included__block__cart {
	border-radius: 20px 20px 0 0;
	background: #f8f8f9;
	padding: 30px;
	position: relative;
	overflow: hidden;
}

.included__block__cart__h3 {
	font-weight: 500;
	font-size: 32px;
	color: #020816;
	font-family: 'UNCAGE', sans-serif;
	padding-bottom: 15px;
}

.included__block__cart__p {
	font-weight: 400;
	font-size: 16px;
	color: #020816;
	padding-bottom: 15px;
	font-family: 'Involve', sans-serif;
}

.included__block__cart__grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 20px;
}

.included__block__cart__grid__bg {
	background: #f8f8f9;
	border: 1px solid #020816;
	border-radius: 12px;
	padding: 20px;
	position: relative;
	z-index: 2;
}

.included__block__cart__grid__bg__number {
	font-weight: 500;
	font-size: 36px;
	color: #ffd602;
	font-family: 'UNCAGE', sans-serif;
	padding-bottom: 3px;
}

.included__block__cart__grid__bg__text {
	font-weight: 400;
	font-size: 16px;
	color: #020816;
	font-family: 'Involve', sans-serif;
}

.included__block__img {
	position: absolute;
	right: 0;
	top: 0;
}

.services__block {
	background: #fff;
	padding: 70px 0px 70px;


}

.services__block__span {
	font-family: 'Involve', sans-serif;
	font-weight: 400;
	font-size: 16px;
	color: #020816;
	border: 1px solid #020816;
	border-radius: 50px;
	padding: 12px 30px;
	opacity: 0.7;
}

.services__block__h2 {
	font-weight: 500;
	font-size: 74px;
	color: #020816;
	font-family: 'UNCAGE', sans-serif;
	margin-top: 30px;
	padding-bottom: 30px;
}

.services__block__cart__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

.services__block__cart__grid__bg {
	border-radius: 20px;
	background: #f8f8f9;
	padding: 30px 20px;
	display: grid;
}

.services__block__cart__grid__bg__h3 {
	font-weight: 500;
	font-size: 24px;
	color: #020816;
	padding-bottom: 10px;
	font-family: 'Involve', sans-serif;
}

.services__block__cart__grid__bg__p {
	font-weight: 400;
	font-size: 16px;
	color: #020816;
	padding-bottom: 20px;
	font-family: 'Involve', sans-serif;
}

.services__block__cart__grid__bg__button {
	border: 1px solid #020816;
	border-radius: 50px;
	padding: 0px 30px;
	font-weight: 400;
	font-size: 16px;
	color: #020816;
	font-family: 'Involve', sans-serif;
	width: 100%;
	background: transparent;
	cursor: pointer;
	text-decoration: none;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 45px;
}

.services__block__button {
	border-radius: 50px;
	padding: 12px 30px;
	width: 100%;
	background: #ffd602;
	font-weight: 500;
	font-size: 16px;
	color: #020816;
	text-decoration: none;
	display: flex;
	justify-content: center;
	margin-top: 30px;
	font-family: 'Involve', sans-serif;
	cursor: pointer;
}

.who__we__block {
	padding: 70px 0px 70px;
	background: #fff;
}

.who__we__block__h2 {
	font-weight: 500;
	font-size: 74px;
	color: #020816;
	font-family: 'UNCAGE', sans-serif;
	padding-bottom: 30px;
}

.who__we__block__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.who__we__block__grid__bg {
	border-radius: 20px;
	background: #f8f8f9;
	padding: 20px;
}

.who__we__block__grid__bg__img {
	border-radius: 20px;
	max-width: 387px;
	max-height: 250px;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-repeat: no-repeat;
}

.who__we__block__grid__bg__h3 {
	font-weight: 500;
	font-size: 24px;
	color: #020816;
	padding-top: 20px;
	padding-bottom: 10px;
	font-family: 'Involve', sans-serif;
}

.who__we__block__grid__bg__p {
	font-weight: 400;
	font-size: 16px;
	color: #020816;
	font-family: 'Involve', sans-serif;
}

.locations__block {
	border-radius: 60px 60px 0 0;
	padding: 60px 0px 60px;
	background: #041133;

}

.locations__block__img {
	position: absolute;
	right: 0;
	top: 0;
}

.locations__block__span {
	font-weight: 400;
	font-size: 16px;
	color: #fff;
	font-family: 'Involve', sans-serif;
	border: 1px solid #fff;
	border-radius: 50px;
	padding: 12px 30px;
	opacity: 0.7;
}

.locations__block__h2 {
	font-weight: 500;
	font-size: 74px;
	color: #fff;
	font-family: 'UNCAGE', sans-serif;
	margin-top: 30px;
	padding-bottom: 30px;
	position: relative;
	z-index: 2;
}

.locations__block__p {
	font-weight: 400;
	font-size: 20px;
	color: #fff;
	font-family: 'Involve', sans-serif;
	padding-bottom: 30px;
}

.locations__block__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

.locations__block__grid__bg {
	background: #f8f8f9;
	border-radius: 20px;
	padding: 30px 20px;
	position: relative;
	z-index: 2;
	opacity:1;
	transform:translateY(0) scale(1);
	transition:
	opacity .35s ease,
	transform .35s ease;
}

.locations__block__grid__bg.hide {
	opacity:0;
	transform:translateY(20px) scale(.95);
	pointer-events:none;
}

.locations__block__grid__bg__flex {
	display: flex;
	align-items: center;
	gap: 10px;
}

.locations__block__grid__bg__flex__from {
	font-weight: 500;
	font-size: 24px;
	color: #020816;
	font-family: 'Involve', sans-serif;
}

.locations__block__grid__bg__flex__to {
	font-weight: 500;
	font-size: 24px;
	color: #020816;
	font-family: 'Involve', sans-serif;
}

.locations__block__grid__bg__price {
	font-weight: 500;
	font-size: 24px;
	color: #041133;
	font-family: 'Involve', sans-serif;
	padding-top: 10px;
	padding-bottom: 10px;
}

.locations__block__grid__bg__delivery {
	font-weight: 400;
	font-size: 16px;
	color: #020816;
	font-family: 'Involve', sans-serif;
}

.locations__block__filters {
	padding: 30px 0px 30px;
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
}

.locations__block__filters button {
	border: 1px solid #fff;
	border-radius: 50px;
	padding: 12px 30px;
	background: transparent;
	font-weight: 400;
	font-size: 16px;
	color: #fff;
	font-family: 'Involve', sans-serif;
	cursor: pointer;
}

.locations__block__filters button:hover {
	background: #ffd602;
	color: #020816;
	border: 1px solid #ffd602;
	transition: 0.4s;
}

.locations__block__offer__block {
	border-radius: 20px;
	background: #f8f8f9;
	padding: 48px 40px;
	display: flex;
	position: relative;
	overflow: hidden;
	justify-content: space-between;
	align-items: center;
}

.locations__block__offer__block h3 {
	font-weight: 500;
	font-size: 32px;
	color: #020816;
	font-family: 'UNCAGE', sans-serif;
	max-width: 850px;
}

.locations__block__offer__block button {
	border-radius: 50px;
	padding: 12px 30px;
	background: #ffd602;
	font-weight: 500;
	font-size: 16px;
	color: #020816;
	font-family: 'Involve', sans-serif;
	border: none;
	cursor: pointer;
	position: relative;
	z-index: 2;
}

.locations__block__offer__block img {
	position: absolute;
	right: 0;
	top: 0;
}

.neighborhood__block {
	padding: 70px 0px 70px;
	background: #fff;

}

.neighborhood__block__span {
	font-weight: 400;
	font-size: 16px;
	color: #020816;
	border: 1px solid #020816;
	border-radius: 50px;
	padding: 12px 30px;
	opacity: 0.7;
	font-family: 'Involve', sans-serif;
}

.neighborhood__block__head__grid {
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 20px;
	padding: 30px 0px 30px;
	align-items: center;
}

.neighborhood__block__head__grid__h2 {
	font-weight: 500;
	font-size: 74px;
	color: #020816;
	font-family: 'UNCAGE', sans-serif;
}

.neighborhood__block__head__grid__p {
	font-weight: 400;
	font-size: 16px;
	color: #020816;
	padding-bottom: 20px;
	font-family: 'Involve', sans-serif;
}

.neighborhood__block__head__grid__button {
	font-family: 'Involve', sans-serif;
	font-weight: 500;
	font-size: 16px;
	color: #020816;
	border-radius: 50px;
	padding: 12px 30px;
	background: #ffd602;
	width: 100%;
	text-decoration: none;
	display: flex;
    justify-content: center;
}

.neighborhood__block__grid__carts {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

.neighborhood__block__grid__carts__block {
	padding: 30px 20px;
	background: #f8f8f9;
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-radius: 20px;
	text-decoration: none;
}

.neighborhood__block__grid__carts__block:hover.neighborhood__block__grid__carts__block {
	background: #ffd602;

}

.neighborhood__block__grid__carts__block p {
	font-weight: 500;
	font-size: 24px;
	color: #020816;
	font-family: 'Involve', sans-serif;
	max-width: 180px;
}

.steps__block {
	padding: 70px 0px 70px;
	background: #fff;

}

.steps__block__span {
	font-weight: 400;
	font-size: 16px;
	color: #020816;
	border: 1px solid #020816;
	border-radius: 50px;
	padding: 12px 30px;
	opacity: 0.7;
	font-family: 'Involve', sans-serif;
}

.steps__block__h2 {
	font-weight: 500;
	font-size: 74px;
	color: #020816;
	font-family: 'UNCAGE', sans-serif;
	max-width: 835px;
	padding: 30px 0px 30px;
}

.steps__block__grid__cart {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

.steps__block__grid__cart__bg {
	padding: 20px;
	background: #f8f8f9;
	border-radius: 20px;
}

.steps__block__grid__cart__bg__icon {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.steps__block__grid__cart__bg__icon__bg {
	background: #ffd602;
	border-radius: 100px;
	width: 60px;
	height: 60px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.steps__block__grid__cart__bg__icon__number {
	font-weight: 500;
	font-size: 24px;
	color: #ffd602;
	font-family: 'Involve', sans-serif;
}

.steps__block__grid__cart__bg__h3 {
	font-weight: 500;
	font-size: 24px;
	color: #020816;
	padding-top: 15px;
	padding-bottom: 10px;
	font-family: 'Involve', sans-serif;
}

.steps__block__grid__cart__bg__p {
	font-weight: 400;
	font-size: 16px;
	color: #020816;
	font-family: 'Involve', sans-serif;
}

.trust__block {
	margin: 70px 0px 0px;
	padding: 70px 0px 70px;
	position: relative;
	overflow: hidden;
	background: #041133;
	border-radius: 60px 60px 0 0;

}

.trust__block__span {
	font-weight: 400;
	font-size: 16px;
	color: #fff;
	border: 1px solid #fff;
	border-radius: 50px;
	padding: 12px 30px;
	opacity: 0.7;
	font-family: 'Involve', sans-serif;
}

.trust__block__h2 {
	font-weight: 500;
	font-size: 74px;
	color: #fff;
	font-family: 'UNCAGE', sans-serif;
	padding: 30px 0px 30px;
	position: relative;
	z-index: 2;
}

.trust__block__p {
	font-family: 'Involve', sans-serif;
	font-weight: 400;
	font-size: 20px;
	color: #fff;
	padding-bottom: 30px;
}

.trust__block__grid__cart {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

.trust__block__grid__cart__bg {
	border-radius: 20px;
	padding: 20px;
	background: #f8f8f9;
	position: relative;
	z-index: 2;
}

.trust__block__grid__cart__bg img {
	width: 60px;
	height: 60px;
}

.trust__block__grid__cart__bg p {
	font-weight: 500;
	font-size: 24px;
	color: #020816;
	padding-top: 15px;
	font-family: 'Involve', sans-serif;
}

.faq__blog {
	padding: 70px 0px 70px;
	background: #fff;

}

.faq__blog__span {
	font-weight: 400;
	font-size: 16px;
	color: #020816;
	border: 1px solid #020816;
	border-radius: 50px;
	padding: 12px 30px;
	opacity: 0.7;
	font-family: 'Involve', sans-serif;
}

.faq__blog__h2 {
	font-weight: 500;
	font-size: 74px;
	color: #020816;
	padding-top: 30px;
	padding-bottom: 30px;
	font-family: 'UNCAGE', sans-serif;
}

.faq{
    display:flex;
    flex-direction:column;
    gap:16px;
}

.faq-item{
    background:#F8F8F9;
    border-radius:20px;
    overflow:hidden;
}

.faq-question{
    width:100%;
    background:none;
    border:none;
    padding:24px 28px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    cursor:pointer;
    text-align:left;
}

.faq-question span:first-child{
	font-weight: 500;
	font-size: 24px;
	color: #020816;
    font-family: 'Involve', sans-serif;
}

.faq-icon{
    display:flex;
    transition:.35s ease;
    flex-shrink:0;
}

.faq-item.active .faq-icon{
    transform:rotate(180deg);
}

.faq-answer{
    max-height:0;
    overflow:hidden;
    transition:max-height .45s ease;
}

.faq-answer-inner{
    padding: 0 70px 16px 28px;
    font-weight: 400;
	font-size: 19px;
	color: #020816;
	line-height: 150%;
    opacity:0;
    transition:opacity .3s ease;
    font-family: 'Involve', sans-serif;
}

.faq-item.active .faq-answer{
    max-height:500px;
}

.faq-item.active .faq-answer-inner{
    opacity:1;
}

.cta__block {
	padding: 100px 0px 100px;
	background: #ffd602;
	border-radius: 60px 60px 0 0;

}

.cta__block__head__grid {
	display: grid;
	grid-template-columns: 2.2fr 1fr;
	gap: 20px;
	align-items: center;
	padding-bottom: 30px;
}

.cta__block__head__grid__h2 {
	font-weight: 500;
	font-size: 74px;
	color: #041133;
	font-family: 'UNCAGE', sans-serif;
}

.cta__block__head__grid__p {
	font-weight: 400;
	font-size: 24px;
	color: #020816;
	padding-bottom: 20px;
	font-family: 'Involve', sans-serif;
}

.cta__block__head__grid__button {
	font-weight: 500;
	font-size: 16px;
	color: #fff;
	font-family: 'Involve', sans-serif;
	border-radius: 50px;
	padding: 12px 30px;
	background: #041133;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	cursor: pointer;
	border: none;
}

.cta__block__grid__cart {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.cta__block__grid__cart__bg {
	border-radius: 20px;
	background: #f8f8f9;
	padding: 20px;
}

.cta__block__grid__cart__bg__icon {
	background: #ffd602;
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 100px;
}

.cta__block__grid__cart__bg__p {
	font-weight: 500;
	font-size: 24px;
	color: #020816;
	font-family: 'Involve', sans-serif;
	padding-top: 15px;
}

.footer__block {
	padding: 150px 0px 60px;
	background: url(../../assets/image/footer-bg.png);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	width: 100%;
}

.footer__block__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	align-items: center;
}

.footer__block__grid__name {
	font-weight: 500;
	font-size: 28px;
	color: #fff;
	font-family: 'UNCAGE', sans-serif;
	padding-bottom: 15px;
}

.footer__block__grid__ul {
	display: grid;
	gap: 15px;
}

.footer__block__grid__ul li {
	list-style-type: none;
}

.footer__block__grid__ul li a {
	font-weight: 500;
	font-size: 20px;
	color: #fff;
	font-family: 'Involve', sans-serif;
	text-decoration: none;
}

.footer__block__grid__ul li a:hover{
	color: #ffd602;
}

.footer__block__four__bg {
	background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(4px);
    display: grid;
    gap: 20px;
    padding: 20px;
    border-radius: 20px;
}

.footer__block__four__bg img {
	margin: 0 auto;
}

.footer__block__four__bg__licensed__text {
	font-weight: 400;
	font-size: 16px;
	text-align: center;
	color: #fff;
	opacity: 0.7;
	font-family: 'Involve', sans-serif;
}

.footer__block__four__bg__a {
	font-weight: 400;
	font-size: 16px;
	text-align: center;
	color: #fff;
	font-family: 'Involve', sans-serif;
	text-decoration: none;
}

.footer__block__four__bg__button {
	border-radius: 50px;
	padding: 12px 30px;
	background: #ffd602;
	width: 100%;
	display: flex;
	justify-content: center;
	font-weight: 500;
	font-size: 16px;
	color: #020816;
	font-family: 'Involve', sans-serif;
}

.footer__block__four__bg__addres {
	font-weight: 400;
	font-size: 16px;
	text-align: center;
	color: #fff;
	font-family: 'Involve', sans-serif;
}

.footer__block__end {
	display: flex;
	 justify-content: space-between;
	 align-items: center;
	 padding-top: 150px;
}

.footer__block__end__flex {
	display: flex;
	gap: 10px;
	align-items: center;
}

.footer__block__end__flex p {
	font-weight: 400;
	font-size: 16px;
	color: #fff;
	opacity: 0.7;
	font-family: 'Involve', sans-serif;
}

.footer__block__end__flex a {
	font-weight: 400;
	font-size: 16px;
	color: #fff;
	opacity: 0.7;
	font-family: 'Involve', sans-serif;
	text-decoration: none;
}

.footer__block__end__flex span {
	font-weight: 400;
	font-size: 16px;
	color: #fff;
	opacity: 0.7;
	font-family: 'Involve', sans-serif;
}

.burger__mobile {
	display: none;
}

@media (max-width: 1200px) {
	header {
		padding: 7px 20px;

	}

	.header {
		top: 0px;
	}
	
	.header.scrolled {
		padding: 7px 20px;
	}

	.header__ul li a {
		font-size: 15px;
	}

	.header__ul {
		gap: 30px;
	}

	.first__block {
		padding-left: 20px;
		padding-right: 20px;
	}

	.first__block__title__and__text__h1 {
	    font-size: 57px;
	}

	.first__block__title__and__text__p {
	    font-family: 'Involve', sans-serif;
	    font-weight: 400;
	    font-size: 17px;
	    color: #fff;
	    padding-bottom: 16px;
	}

	.first__block__form__button button {
	    font-family: 'Involve', sans-serif;
	    border-radius: 50px;
	    padding: unset;
	    font-weight: 500;
	    font-size: 16px;
	    color: #020816;
	    background: #ffd602;
	    border: none;
	    cursor: pointer;
	    width: 100%;
	}

	.first__block__span {
	    font-family: 'Involve', sans-serif;
	    font-weight: 400;
	    font-size: 15px;
	    color: #fff;
	    padding: 12px 30px;
	    opacity: 0.7;
	    border: 1px solid #fff;
	    border-radius: 50px;
	}

	.promises__block {
	    background: #fff;
	    padding: 70px 20px 70px;
	}

	.promises__block__span {
	    font-weight: 400;
	    font-size: 15px;
	    color: #020816;
	    font-family: 'Involve', sans-serif;
	    border: 1px solid #020816;
	    border-radius: 50px;
	    padding: 12px 30px;
	}

	.promises__block__h2 {
	    font-weight: 500;
	    font-size: 54px;
	    color: #020816;
	    padding-top: 30px;
	    padding-bottom: 30px;
	    font-family: 'UNCAGE', sans-serif;
	}

	.promises__block__p {
	    font-family: 'Involve', sans-serif;
	    font-weight: 400;
	    font-size: 18px;
	    color: #020816;
	    padding-bottom: 30px;
	}

	.promises__block__grid__bg__h3 {
	    font-family: 'Involve', sans-serif;
	    font-weight: 500;
	    font-size: 22px;
	    color: #020816;
	    padding-top: 15px;
	}

	.included__block {
	    border-radius: 60px 60px 0 0;
	    background: #041133;
	    padding-top: 60px;
	    padding-left: 20px;
	    padding-right: 20px;
	}

	.included__block__span {
	    font-weight: 400;
	    font-size: 15px;
	    color: #fff;
	    font-family: 'Involve', sans-serif;
	    border: 1px solid #fff;
	    border-radius: 50px;
	    padding: 12px 30px;
	    opacity: 0.7;
	}

	.included__block__grid__h2 {
	    font-weight: 500;
	    font-size: 55px;
	    color: #fff;
	    font-family: 'UNCAGE', sans-serif;
	}

	.included__block__grid__p {
	    font-weight: 400;
	    font-size: 18px;
	    color: #fff;
	    padding-bottom: 20px;
	    font-family: 'Involve', sans-serif;
	}

	.included__block__grid__text {
	    font-weight: 400;
	    font-size: 18px;
	    color: #fff;
	    font-family: 'Involve', sans-serif;
	    padding-bottom: 20px;
	    opacity: 0.7;
	}

	.included__block__cart__h3 {
	    font-weight: 500;
	    font-size: 28px;
	    color: #020816;
	    font-family: 'UNCAGE', sans-serif;
	    padding-bottom: 15px;
	}

	.services__block {
	    background: #fff;
	    padding: 70px 20px 70px;
	}

	.services__block__span {
	    font-family: 'Involve', sans-serif;
	    font-weight: 400;
	    font-size: 15px;
	    color: #020816;
	    border: 1px solid #020816;
	    border-radius: 50px;
	    padding: 12px 30px;
	    opacity: 0.7;
	}

	.services__block__h2 {
	    font-weight: 500;
	    font-size: 54px;
	    color: #020816;
	    font-family: 'UNCAGE', sans-serif;
	    margin-top: 30px;
	    padding-bottom: 30px;
	}

	.services__block__cart__grid__bg__h3 {
	    font-weight: 500;
	    font-size: 22px;
	    color: #020816;
	    padding-bottom: 10px;
	    font-family: 'Involve', sans-serif;
	}

	.services__block__cart__grid__bg__p {
	    font-weight: 400;
	    font-size: 15px;
	    color: #020816;
	    padding-bottom: 20px;
	    font-family: 'Involve', sans-serif;
	}

	.services__block__cart__grid__bg__button {
		height: 40px;
	}

	.who__we__block {
	    padding: 40px 20px 50px;
	    background: #fff;
	}

	.who__we__block__h2 {
	    font-weight: 500;
	    font-size: 54px;
	    color: #020816;
	    font-family: 'UNCAGE', sans-serif;
	    padding-bottom: 30px;
	}

	.who__we__block__grid__bg__h3 {
	    font-weight: 500;
	    font-size: 22px;
	    color: #020816;
	    padding-top: 20px;
	    padding-bottom: 10px;
	    font-family: 'Involve', sans-serif;
	}

	.who__we__block__grid__bg__p {
	    font-weight: 400;
	    font-size: 15px;
	    color: #020816;
	    font-family: 'Involve', sans-serif;
	}

	.who__we__block__grid__bg {
	    border-radius: 20px;
	    background: #f8f8f9;
	    padding: 20px;
	    height: max-content;
	}

	.locations__block {
	    border-radius: 60px 60px 0 0;
	    padding: 60px 20px 60px;
	    background: #041133;
	    position: relative;
	    overflow: hidden;
	}

	.locations__block__span {
	    font-weight: 400;
	    font-size: 15px;
	    color: #fff;
	    font-family: 'Involve', sans-serif;
	    border: 1px solid #fff;
	    border-radius: 50px;
	    padding: 12px 30px;
	    opacity: 0.7;
	}

	.locations__block__h2 {
		font-size: 54px;
	}

	.locations__block__p {
	    font-weight: 400;
	    font-size: 18px;
	    color: #fff;
	    font-family: 'Involve', sans-serif;
	    padding-bottom: 30px;
	}

	.locations__block__grid__bg__flex__from {
	    font-weight: 500;
	    font-size: 18px;
	    color: #020816;
	    font-family: 'Involve', sans-serif;
	}

	.locations__block__grid__bg__flex__to {
	    font-weight: 500;
	    font-size: 18px;
	    color: #020816;
	    font-family: 'Involve', sans-serif;
	}

	.locations__block__grid__bg__price {
	    font-weight: 500;
	    font-size: 20px;
	    color: #041133;
	    font-family: 'Involve', sans-serif;
	    padding-top: 10px;
	    padding-bottom: 10px;
	}

	.locations__block__grid__bg__delivery {
	    font-weight: 400;
	    font-size: 15px;
	    color: #020816;
	    font-family: 'Involve', sans-serif;
	}

	.locations__block__offer__block h3 {
	    font-weight: 500;
	    font-size: 28px;
	    color: #020816;
	    font-family: 'UNCAGE', sans-serif;
	    max-width: 750px;
	}

	.neighborhood__block {
	    padding: 50px 20px 40px;
	    background: #fff;
	}

	.neighborhood__block__span {
	    font-weight: 400;
	    font-size: 15px;
	    color: #020816;
	    border: 1px solid #020816;
	    border-radius: 50px;
	    padding: 12px 30px;
	    opacity: 0.7;
	    font-family: 'Involve', sans-serif;
	}

	.neighborhood__block__head__grid__h2 {
	    font-weight: 500;
	    font-size: 54px;
	    color: #020816;
	    font-family: 'UNCAGE', sans-serif;
	}

	.neighborhood__block__grid__carts__block p {
	    font-weight: 500;
	    font-size: 20px;
	    color: #020816;
	    font-family: 'Involve', sans-serif;
	    max-width: 180px;
	}

	.neighborhood__block__grid__carts__block img {
		width: 12px;
	}

	.steps__block {
	    padding: 50px 20px 40px;
	    background: #fff;

	}

	.steps__block__span {
	    font-weight: 400;
	    font-size: 15px;
	    color: #020816;
	    border: 1px solid #020816;
	    border-radius: 50px;
	    padding: 12px 30px;
	    opacity: 0.7;
	    font-family: 'Involve', sans-serif;
	}

	.steps__block__h2 {
	    font-weight: 500;
	    font-size: 54px;
	    color: #020816;
	    font-family: 'UNCAGE', sans-serif;
	    max-width: 835px;
	    padding: 30px 0px 30px;
	}

	.steps__block__grid__cart__bg__h3 {
	    font-weight: 500;
	    font-size: 21px;
	    color: #020816;
	    padding-top: 15px;
	    padding-bottom: 10px;
	    font-family: 'Involve', sans-serif;
	}

	.steps__block__grid__cart__bg__p {
	    font-weight: 400;
	    font-size: 15px;
	    color: #020816;
	    font-family: 'Involve', sans-serif;
	}

	.trust__block {
	    margin: 50px 0px 0px;
	    padding: 50px 20px 40px;
	    position: relative;
	    overflow: hidden;
	    background: #041133;
	    border-radius: 60px 60px 0 0;
	}

	.trust__block__span {
	    font-weight: 400;
	    font-size: 15px;
	    color: #fff;
	    border: 1px solid #fff;
	    border-radius: 50px;
	    padding: 12px 30px;
	    opacity: 0.7;
	    font-family: 'Involve', sans-serif;
	}

	.trust__block__h2 {
	    font-weight: 500;
	    font-size: 54px;
	    color: #fff;
	    font-family: 'UNCAGE', sans-serif;
	    padding: 30px 0px 30px;
	    position: relative;
	    z-index: 2;
	}

	.trust__block__p {
	    font-family: 'Involve', sans-serif;
	    font-weight: 400;
	    font-size: 18px;
	    color: #fff;
	    padding-bottom: 30px;
	}

	.trust__block__grid__cart__bg img {
	    width: 40px;
	    height: 40px;
	}

	.trust__block__grid__cart__bg p {
	    font-weight: 500;
	    font-size: 20px;
	    color: #020816;
	    padding-top: 15px;
	    font-family: 'Involve', sans-serif;
	}

	.faq__blog {
	    padding: 50px 20px 70px;
	    background: #fff;
	}

	.faq__blog__span {
	    font-weight: 400;
	    font-size: 15px;
	    color: #020816;
	    border: 1px solid #020816;
	    border-radius: 50px;
	    padding: 12px 30px;
	    opacity: 0.7;
	    font-family: 'Involve', sans-serif;
	}

	.faq__blog__h2 {
	    font-weight: 500;
	    font-size: 54px;
	    color: #020816;
	    padding-top: 30px;
	    padding-bottom: 30px;
	    font-family: 'UNCAGE', sans-serif;
	}

	.faq-question span:first-child {
	    font-weight: 500;
	    font-size: 20px;
	    color: #020816;
	    font-family: 'Involve', sans-serif;
	}

	.faq-answer-inner {
	    padding: 0 70px 16px 28px;
	    font-weight: 400;
	    font-size: 17px;
	    color: #020816;
	    line-height: 150%;
	    opacity: 0;
	    transition: opacity .3s ease;
	    font-family: 'Involve', sans-serif;
	}

	.faq-icon img {
		width: 35px;
		height: 35px;
	}

	.cta__block {
	    padding: 50px 20px 50px;
	    background: #ffd602;
	    border-radius: 60px 60px 0 0;
	}

	.cta__block__head__grid__h2 {
	    font-weight: 500;
	    font-size: 54px;
	    color: #041133;
	    font-family: 'UNCAGE', sans-serif;
	}

	.cta__block__head__grid__p {
	    font-weight: 400;
	    font-size: 22px;
	    color: #020816;
	    padding-bottom: 20px;
	    font-family: 'Involve', sans-serif;
	}

	.cta__block__grid__cart__bg__p {
	    font-weight: 500;
	    font-size: 21px;
	    color: #020816;
	    font-family: 'Involve', sans-serif;
	    padding-top: 15px;
	}

	.footer__block {
	    padding: 50px 20px 30px;
	    background: url(../../assets/image/footer-bg.png);
	    background-repeat: no-repeat;
	    background-size: cover;
	    background-position: center;
	    width: 100%;
	}

	.footer__block__grid__name {
	    font-weight: 500;
	    font-size: 22px;
	    color: #fff;
	    font-family: 'UNCAGE', sans-serif;
	    padding-bottom: 15px;
	}

	.footer__block__grid__ul li a {
	    font-weight: 500;
	    font-size: 18px;
	    color: #fff;
	    font-family: 'Involve', sans-serif;
	    text-decoration: none;
	}

	.footer__block__end {
	    display: flex;
	    justify-content: space-between;
	    align-items: center;
	    padding-top: 70px;
	}
}



@media (max-width: 992px) {
	.burger__mobile {
		display: grid;
		cursor: pointer;
	}

	.mobile__menu {
	    position: absolute;
	    z-index: 999;
	    background: #fff;
	    left: 0;
	    right: 0;
	    top: 75px;
	    padding: 30px;

	    opacity: 0;
	    visibility: hidden;
	    transform: translateY(-15px);

	    transition: opacity .3s ease,
	                transform .3s ease,
	                visibility .3s ease;
	}

	.mobile__menu.active {
	    opacity: 1;
	    visibility: visible;
	    transform: translateY(0);
	}

	.but__and__menu {
		display: flex;
		gap: 10px;
		align-items: center;
	}

	.header__button {
	    border-radius: 50px;
	    padding: 8px 30px;
	    width: 137px;
	    background: #ffd602;
	    font-weight: 500;
	    font-size: 16px;
	    color: #020816;
	    border: none;
	    cursor: pointer;
	}

	.header__logo {
		width: 90px;
	}

	.header.scrolled {
        padding: 7px 20px;
    }

    .header {
	    position: fixed;
	    top: 0px;
	    left: 0;
	    right: 0;
	    z-index: 999;
	    transition: all .3s ease;
	}

	.first__block {
	    padding-top: 130px;
	}

	.header__ul {
	    display: grid;
	    justify-content: space-between;
	    gap: 20px;
	    align-items: center;
	}

	.header__ul li a {
        font-size: 17px;
    }

    .header__ul li .header__phone {
	    font-family: 'Involve', sans-serif;
	    font-weight: 500;
	    font-size: 16px;
	    color: #000;
	    text-decoration: none;
	}

    .header__ul li a {
	    font-family: 'Involve', sans-serif;
	    font-weight: 400;
	    font-size: 16px;
	    color: #000;
	    opacity: 0.8;
	    text-decoration: none;
	}

	.header.scrolled .header__ul li a, .header.scrolled .header__phone {
	    color: #020816;
	    opacity: 1;
	}

	.first__block__span {
        font-family: 'Involve', sans-serif;
        font-weight: 400;
        font-size: 14px;
        color: #fff;
        padding: 12px 30px;
        opacity: 0.7;
        border: 1px solid #fff;
        border-radius: 50px;
    }

    .first__block__title__and__text__h1 {
        font-size: 47px;
    }

    .first__block__title__and__text__p {
        font-family: 'Involve', sans-serif;
        font-weight: 400;
        font-size: 16px;
        color: #fff;
        padding-bottom: 16px;
    }

    .first__block__cart__grid__cart_text {
	    font-family: 'Involve', sans-serif;
	    font-weight: 400;
	    font-size: 15px;
	    color: #fff;
	}

	.first__block__form__h2 {
	    font-family: 'UNCAGE', sans-serif;
	    font-weight: 500;
	    font-size: 26px;
	    color: #fff;
	    padding-bottom: 15px;
	}

	.ticker__content span {
	    flex-shrink: 0;
	    white-space: nowrap;
	    font-family: 'UNCAGE', sans-serif;
	    font-size: 16px;
	    font-weight: 500;
	    color: #020816;
	}

	.promises__block__span {
        font-weight: 400;
        font-size: 14px;
        color: #020816;
        font-family: 'Involve', sans-serif;
        border: 1px solid #020816;
        border-radius: 50px;
        padding: 12px 30px;
    }

    .promises__block__h2 {
        font-weight: 500;
        font-size: 44px;
        color: #020816;
        padding-top: 30px;
        padding-bottom: 30px;
        font-family: 'UNCAGE', sans-serif;
    }

    .promises__block__p {
        font-family: 'Involve', sans-serif;
        font-weight: 400;
        font-size: 16px;
        color: #020816;
        padding-bottom: 30px;
    }

    .promises__block__grid__bg__h3 {
        font-family: 'Involve', sans-serif;
        font-weight: 500;
        font-size: 20px;
        color: #020816;
        padding-top: 15px;
    }

    .promises__block__grid__bg__p {
	    padding-top: 10px;
	    padding-bottom: 15px;
	    font-family: 'Involve', sans-serif;
	    font-weight: 400;
	    font-size: 15px;
	    color: #020816;
	}

	.included__block__span {
        font-weight: 400;
        font-size: 14px;
        color: #fff;
        font-family: 'Involve', sans-serif;
        border: 1px solid #fff;
        border-radius: 50px;
        padding: 12px 30px;
        opacity: 0.7;
    }

    .included__block__grid__h2 {
        font-weight: 500;
        font-size: 44px;
        color: #fff;
        font-family: 'UNCAGE', sans-serif;
    }

    .included__block__grid__p {
        font-weight: 400;
        font-size: 16px;
        color: #fff;
        padding-bottom: 20px;
        font-family: 'Involve', sans-serif;
    }

    .included__block__grid__text {
        font-weight: 400;
        font-size: 16px;
        color: #fff;
        font-family: 'Involve', sans-serif;
        padding-bottom: 20px;
        opacity: 0.7;
    }

    .included__block__cart__h3 {
        font-weight: 500;
        font-size: 24px;
        color: #020816;
        font-family: 'UNCAGE', sans-serif;
        padding-bottom: 15px;
    }

    .included__block__cart__p {
	    font-weight: 400;
	    font-size: 15px;
	    color: #020816;
	    padding-bottom: 15px;
	    font-family: 'Involve', sans-serif;
	}

	.included__block__cart__grid__bg__text {
	    font-weight: 400;
	    font-size: 15px;
	    color: #020816;
	    font-family: 'Involve', sans-serif;
	}

	.services__block__span {
        font-family: 'Involve', sans-serif;
        font-weight: 400;
        font-size: 14px;
        color: #020816;
        border: 1px solid #020816;
        border-radius: 50px;
        padding: 12px 30px;
        opacity: 0.7;
    }

    .services__block__h2 {
        font-weight: 500;
        font-size: 44px;
        color: #020816;
        font-family: 'UNCAGE', sans-serif;
        margin-top: 30px;
        padding-bottom: 30px;
    }

    .services__block__cart__grid__bg__h3 {
        font-weight: 500;
        font-size: 19px;
        color: #020816;
        padding-bottom: 10px;
        font-family: 'Involve', sans-serif;
    }

    .services__block__cart__grid__bg__p {
        font-weight: 400;
        font-size: 14px;
        color: #020816;
        padding-bottom: 20px;
        font-family: 'Involve', sans-serif;
    }

    .services__block__cart__grid__bg__button {
	    border: 1px solid #020816;
	    border-radius: 50px;
	    padding: 0px 30px;
	    font-weight: 400;
	    font-size: 14px;
	    color: #020816;
	    font-family: 'Involve', sans-serif;
	    width: 100%;
	    background: transparent;
	    cursor: pointer;
	    text-decoration: none;
	    display: flex;
	    align-items: center;
	    justify-content: center;
	    height: 45px;
	}

	.who__we__block__h2 {
        font-weight: 500;
        font-size: 44px;
        color: #020816;
        font-family: 'UNCAGE', sans-serif;
        padding-bottom: 30px;
    }

    .who__we__block__grid__bg__h3 {
        font-weight: 500;
        font-size: 18px;
        color: #020816;
        padding-top: 20px;
        padding-bottom: 10px;
        font-family: 'Involve', sans-serif;
    }

    .who__we__block__grid__bg__p {
        font-weight: 400;
        font-size: 14px;
        color: #020816;
        font-family: 'Involve', sans-serif;
    }

    .services__block {
        background: #fff;
        padding: 70px 20px 40px;
    }

    .locations__block__span {
        font-weight: 400;
        font-size: 14px;
        color: #fff;
        font-family: 'Involve', sans-serif;
        border: 1px solid #fff;
        border-radius: 50px;
        padding: 12px 30px;
        opacity: 0.7;
    }

    .locations__block__h2 {
        font-size: 44px;
    }

    .locations__block__p {
        font-weight: 400;
        font-size: 16px;
        color: #fff;
        font-family: 'Involve', sans-serif;
        padding-bottom: 30px;
    }

    .locations__block__grid__bg__flex__from {
        font-weight: 500;
        font-size: 16px;
        color: #020816;
        font-family: 'Involve', sans-serif;
    }

    .locations__block__grid__bg__flex__to {
        font-weight: 500;
        font-size: 16px;
        color: #020816;
        font-family: 'Involve', sans-serif;
    }

    .locations__block__grid__bg__flex {
	    display: flex;
	    align-items: center;
	    gap: 10px;
	    flex-wrap: wrap;
	}

	.locations__block__grid__bg__flex img {
		width: 15px;
	}

	.locations__block__grid__bg__price {
        font-weight: 500;
        font-size: 18px;
        color: #041133;
        font-family: 'Involve', sans-serif;
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .locations__block__filters button {
	    border: 1px solid #fff;
	    border-radius: 50px;
	    padding: 10px 30px;
	    background: transparent;
	    font-weight: 400;
	    font-size: 14px;
	    color: #fff;
	    font-family: 'Involve', sans-serif;
	    cursor: pointer;
	}

	.locations__block__offer__block h3 {
        font-weight: 500;
        font-size: 22px;
        color: #020816;
        font-family: 'UNCAGE', sans-serif;
        max-width: 550px;
    }

    .neighborhood__block__span {
        font-weight: 400;
        font-size: 14px;
        color: #020816;
        border: 1px solid #020816;
        border-radius: 50px;
        padding: 12px 30px;
        opacity: 0.7;
        font-family: 'Involve', sans-serif;
    }

    .neighborhood__block__head__grid__h2 {
        font-weight: 500;
        font-size: 44px;
        color: #020816;
        font-family: 'UNCAGE', sans-serif;
    }

    .neighborhood__block__head__grid__p {
	    font-weight: 400;
	    font-size: 15px;
	    color: #020816;
	    padding-bottom: 20px;
	    font-family: 'Involve', sans-serif;
	}

	.neighborhood__block__grid__carts__block p {
        font-weight: 500;
        font-size: 18px;
        color: #020816;
        font-family: 'Involve', sans-serif;
        max-width: 180px;
    }

    .neighborhood__block__grid__carts__block img {
        width: 9px;
    }

    .steps__block__span {
        font-weight: 400;
        font-size: 14px;
        color: #020816;
        border: 1px solid #020816;
        border-radius: 50px;
        padding: 12px 30px;
        opacity: 0.7;
        font-family: 'Involve', sans-serif;
    }

    .steps__block__h2 {
        font-weight: 500;
        font-size: 44px;
        color: #020816;
        font-family: 'UNCAGE', sans-serif;
        max-width: 835px;
        padding: 30px 0px 30px;
    }

    .steps__block__grid__cart__bg__h3 {
        font-weight: 500;
        font-size: 18px;
        color: #020816;
        padding-top: 15px;
        padding-bottom: 10px;
        font-family: 'Involve', sans-serif;
    }

    .steps__block__grid__cart {
	    display: grid;
	    grid-template-columns: repeat(2, 1fr);
	    gap: 20px;
	}

	.trust__block__span {
        font-weight: 400;
        font-size: 14px;
        color: #fff;
        border: 1px solid #fff;
        border-radius: 50px;
        padding: 12px 30px;
        opacity: 0.7;
        font-family: 'Involve', sans-serif;
    }

    .trust__block__h2 {
        font-weight: 500;
        font-size: 44px;
        color: #fff;
        font-family: 'UNCAGE', sans-serif;
        padding: 30px 0px 30px;
        position: relative;
        z-index: 2;
    }

    .trust__block__p {
        font-family: 'Involve', sans-serif;
        font-weight: 400;
        font-size: 16px;
        color: #fff;
        padding-bottom: 30px;
    }

    .trust__block__grid__cart {
	    display: grid;
	    grid-template-columns: repeat(2, 1fr);
	    gap: 20px;
	}

	.trust__block__grid__cart__bg p {
        font-weight: 500;
        font-size: 18px;
        color: #020816;
        padding-top: 15px;
        font-family: 'Involve', sans-serif;
    }

    .faq__blog__span {
        font-weight: 400;
        font-size: 14px;
        color: #020816;
        border: 1px solid #020816;
        border-radius: 50px;
        padding: 12px 30px;
        opacity: 0.7;
        font-family: 'Involve', sans-serif;
    }

    .faq-question span:first-child {
        font-weight: 500;
        font-size: 19px;
        color: #020816;
        font-family: 'Involve', sans-serif;
    }

    .faq-answer-inner {
        padding: 0 70px 16px 28px;
        font-weight: 400;
        font-size: 16px;
        color: #020816;
        line-height: 150%;
        opacity: 0;
        transition: opacity .3s ease;
        font-family: 'Involve', sans-serif;
    }

    .cta__block__head__grid__h2 {
        font-weight: 500;
        font-size: 44px;
        color: #041133;
        font-family: 'UNCAGE', sans-serif;
    }

    .cta__block__head__grid__p {
        font-weight: 400;
        font-size: 19px;
        color: #020816;
        padding-bottom: 20px;
        font-family: 'Involve', sans-serif;
    }

    .cta__block__grid__cart__bg__p {
        font-weight: 500;
        font-size: 19px;
        color: #020816;
        font-family: 'Involve', sans-serif;
        padding-top: 15px;
    }

    .footer__block__grid__name {
        font-weight: 500;
        font-size: 20px;
        color: #fff;
        font-family: 'UNCAGE', sans-serif;
        padding-bottom: 15px;
    }

    .footer__block__grid__ul li a {
        font-weight: 500;
        font-size: 18px;
        color: #fff;
        font-family: 'Involve', sans-serif;
        text-decoration: none;
    }

    .footer__block__grid {
	    display: grid;
	    grid-template-columns: repeat(2, 1fr);
	    gap: 50px;
	    align-items: start;
	}

	.footer__block__end {
        display: grid;
        justify-content: center;
        gap: 10px;
        align-items: center;
        padding-top: 70px;
    }

    .footer__block__end__flex {
	    display: flex;
	    gap: 10px;
	    align-items: center;
	    text-align: center;
	    margin: 0 auto;
	}

	.header.scrolled .burger__mobile path {
	    stroke: #000;
	}
}

@media (max-width: 768px) {
	.first__block__title__and__text {
	    display: grid;
	    grid-template-columns: repeat(1, 1fr);
	    gap: 20px;
	    margin-top: 40px;
	    margin-bottom: 25px;
	}

	.first__block__title__and__text__h1 {
        font-size: 35px;
    }

    .first__block__cart__grid {
	    display: grid;
	    grid-template-columns: repeat(2, 1fr);
	    gap: 20px;
	}

    .first__block__form__grid {
	    display: grid;
	    grid-template-columns: repeat(2, 1fr);
	    gap: 20px;
	}

	.promises__block__h2 {
        font-weight: 500;
        font-size: 35px;
        color: #020816;
        padding-top: 30px;
        padding-bottom: 30px;
        font-family: 'UNCAGE', sans-serif;
    }

    .promises__block__grid {
	    display: grid;
	    grid-template-columns: repeat(1, 1fr);
	    gap: 20px;
	    margin-bottom: 20px;
	}

	.promises__block__two__grid {
	    display: grid;
	    grid-template-columns: repeat(1, 1fr);
	    gap: 20px;
	}

	.included__block__grid {
	    display: grid;
	    grid-template-columns: repeat(1, 1fr);
	    gap: 20px;
	    padding: 30px 0px 62px;
	}

	.included__block__grid__h2 {
        font-weight: 500;
        font-size: 35px;
        color: #fff;
        font-family: 'UNCAGE', sans-serif;
    }

    .included__block__cart__h3 {
        font-weight: 500;
        font-size: 20px;
        color: #020816;
        font-family: 'UNCAGE', sans-serif;
        padding-bottom: 15px;
    }

    .included__block__cart__grid {
	    display: grid;
	    grid-template-columns: repeat(2, 1fr);
	    gap: 20px;
	}

	.services__block__h2 {
        font-weight: 500;
        font-size: 35px;
        color: #020816;
        font-family: 'UNCAGE', sans-serif;
        margin-top: 30px;
        padding-bottom: 30px;
    }

    .services__block__cart__grid {
	    display: grid;
	    grid-template-columns: repeat(2, 1fr);
	    gap: 20px;
	}

	.who__we__block__h2 {
        font-weight: 500;
        font-size: 35px;
        color: #020816;
        font-family: 'UNCAGE', sans-serif;
        padding-bottom: 30px;
    }

    .who__we__block__grid {
	    display: grid;
	    grid-template-columns: repeat(1, 1fr);
	    gap: 20px;
	}

	.who__we__block__grid__bg__img {
	    border-radius: 20px;
	    max-width: 100%;
	    max-height: 250px;
	    width: 100%;
	    height: 100%;
	    background-size: cover;
	    background-repeat: no-repeat;
	}

	.locations__block__h2 {
        font-size: 35px;
    }

    .locations__block__grid {
	    display: grid;
	    grid-template-columns: repeat(2, 1fr);
	    gap: 20px;
	}

	.locations__block__offer__block {
	    border-radius: 20px;
	    background: #f8f8f9;
	    padding: 48px 40px;
	    display: grid;
	    position: relative;
	    overflow: hidden;
	    justify-content: space-between;
	    align-items: center;
	    gap: 20px;
	}

	.locations__block__offer__block h3 {
        font-weight: 500;
        font-size: 22px;
        color: #020816;
        font-family: 'UNCAGE', sans-serif;
        max-width: 100%;
        text-align: center;
    }

    .neighborhood__block__head__grid {
	    display: grid;
	    grid-template-columns: 1fr;
	    gap: 20px;
	    padding: 30px 0px 30px;
	    align-items: center;
	}

	.neighborhood__block__head__grid__h2 {
        font-weight: 500;
        font-size: 35px;
        color: #020816;
        font-family: 'UNCAGE', sans-serif;
    }

    .neighborhood__block__grid__carts {
	    display: grid;
	    grid-template-columns: repeat(3, 1fr);
	    gap: 20px;
	}

	.neighborhood__block__grid__carts__block p {
        font-weight: 500;
        font-size: 16px;
        color: #020816;
        font-family: 'Involve', sans-serif;
        max-width: 120px;
    }

    .steps__block__h2 {
        font-weight: 500;
        font-size: 35px;
        color: #020816;
        font-family: 'UNCAGE', sans-serif;
        max-width: 835px;
        padding: 30px 0px 30px;
    }

    .trust__block__h2 {
        font-weight: 500;
        font-size: 35px;
        color: #fff;
        font-family: 'UNCAGE', sans-serif;
        padding: 30px 0px 30px;
        position: relative;
        z-index: 2;
    }

    .faq__blog__h2 {
        font-weight: 500;
        font-size: 35px;
        color: #020816;
        padding-top: 30px;
        padding-bottom: 30px;
        font-family: 'UNCAGE', sans-serif;
    }

    .cta__block__head__grid__h2 {
        font-weight: 500;
        font-size: 35px;
        color: #041133;
        font-family: 'UNCAGE', sans-serif;
    }

    .cta__block__head__grid {
	    display: grid;
	    grid-template-columns: 1fr;
	    gap: 20px;
	    align-items: center;
	    padding-bottom: 30px;
	}

	.cta__block__head__grid__p {
        font-weight: 400;
        font-size: 17px;
        color: #020816;
        padding-bottom: 20px;
        font-family: 'Involve', sans-serif;
    }

    .cta__block__grid__cart__bg__p {
        font-weight: 500;
        font-size: 17px;
        color: #020816;
        font-family: 'Involve', sans-serif;
        padding-top: 15px;
    }
}

@media (max-width: 580px) {
	.first__block__cart__grid {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
    }

    .first__block__form__grid {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
    }

    .first__block__form__button button {
        font-family: 'Involve', sans-serif;
        border-radius: 50px;
        padding: 12px;
        font-weight: 500;
        font-size: 16px;
        color: #020816;
        background: #ffd602;
        border: none;
        cursor: pointer;
        width: 100%;
    }

    .first__block__form__button p {
	    font-family: 'Involve', sans-serif;
	    font-weight: 400;
	    font-size: 14px;
	    color: #fff;
	    opacity: 0.7;
	    padding-top: 8px;
	    text-align: center;
	}

	.promises__block__h2 {
        font-weight: 500;
        font-size: 28px;
        color: #020816;
        padding-top: 30px;
        padding-bottom: 20px;
        font-family: 'UNCAGE', sans-serif;
    }

    .included__block__grid__h2 {
        font-weight: 500;
        font-size: 28px;
        color: #fff;
        font-family: 'UNCAGE', sans-serif;
    }

    .included__block__cart__grid {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
    }

    .services__block__h2 {
        font-weight: 500;
        font-size: 28px;
        color: #020816;
        font-family: 'UNCAGE', sans-serif;
        margin-top: 30px;
        padding-bottom: 30px;
    }

    .services__block__cart__grid {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
    }

    .who__we__block__h2 {
        font-weight: 500;
        font-size: 28px;
        color: #020816;
        font-family: 'UNCAGE', sans-serif;
        padding-bottom: 30px;
    }

    .locations__block__h2 {
        font-size: 28px;
        padding-bottom: 20px;
    }

    .locations__block__grid {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
    }

    .locations__block__filters {
	    padding: 30px 0px 30px;
	    display: flex;
	    gap: 13px;
	    flex-wrap: wrap;
	}

	.neighborhood__block__head__grid__h2 {
        font-weight: 500;
        font-size: 28px;
        color: #020816;
        font-family: 'UNCAGE', sans-serif;
    }

    .neighborhood__block__grid__carts {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
    }

    .steps__block__h2 {
        font-weight: 500;
        font-size: 28px;
        color: #020816;
        font-family: 'UNCAGE', sans-serif;
        max-width: 835px;
        padding: 30px 0px 30px;
    }

    .steps__block__grid__cart {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
    }

    .trust__block__h2 {
        font-weight: 500;
        font-size: 28px;
        color: #fff;
        font-family: 'UNCAGE', sans-serif;
        padding: 30px 0px 20px;
        position: relative;
        z-index: 2;
    }

    .trust__block__grid__cart {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
    }

    .faq__blog__h2 {
        font-weight: 500;
        font-size: 28px;
        color: #020816;
        padding-top: 30px;
        padding-bottom: 20px;
        font-family: 'UNCAGE', sans-serif;
    }

    .faq-question span:first-child {
        font-weight: 500;
        font-size: 18px;
        color: #020816;
        font-family: 'Involve', sans-serif;
    }

    .cta__block__head__grid__h2 {
        font-weight: 500;
        font-size: 28px;
        color: #041133;
        font-family: 'UNCAGE', sans-serif;
    }

    .cta__block__grid__cart {
	    display: grid;
	    grid-template-columns: repeat(1, 1fr);
	    gap: 20px;
	}

	.footer__block__grid {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 50px;
        align-items: start;
    }

    .footer__block__end__flex {
        display: grid;
        gap: 15px;
        align-items: center;
        text-align: center;
        margin: 0 auto;
    }

    .footer__block__end__flex span {
    	display: none;
    }

    .footer__block__end {
        display: grid;
        justify-content: center;
        gap: 15px;
        align-items: center;
        padding-top: 70px;
    }

    .first__block__span {
        font-family: 'Involve', sans-serif;
        font-weight: 400;
        font-size: 11px;
        color: #fff;
        padding: 12px 30px;
        opacity: 0.7;
        border: 1px solid #fff;
        border-radius: 50px;
    }
}















