* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: "Montserrat", sans-serif;
}

body {
	background: #FCFBF9;
}

.topbar {
	height: 40px;
	background: #212a49; /* тёмный синий */
	border-bottom: 1px solid rgba(255,255,255,.06);
	position: sticky;
	z-index: 999;
	top: 0;
}

.topbar__inner {
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.topbar__lang {
	position: relative;
}

.topbar__lang-btn {
	height: 40px;
	display: flex;
	align-items: center;
	gap: 6px;

	background: transparent;
	border: none;
	color: #fff;

	font-size: 14px;
	font-weight: 500;

	cursor: pointer;
	padding: 0;
}

.topbar__lang-btn svg {
	transition: transform .2s ease;
}

.topbar__lang-dropdown {
	position: absolute;
	top: calc(100% + 6px);
	left: 0;

	min-width: 140px;

	background: #1f2742;
	border: 1px solid rgba(255,255,255,.08);
	border-radius: 10px;

	padding: 6px 0;

	opacity: 0;
	visibility: hidden;
	transform: translateY(6px);

	transition: .2s ease;

	z-index: 100;
	pointer-events: none;
}

.topbar__lang.open .topbar__lang-dropdown {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
	pointer-events: auto;
}

.topbar__lang.open .topbar__lang-btn svg {
	transform: rotate(180deg);
}

.topbar__lang-dropdown a {
	display: block;
	padding: 10px 14px;

	color: #fff;
	text-decoration: none;
	font-size: 14px;

	transition: background .2s ease;
}

.topbar__lang-dropdown a:hover {
	background: #fecb17;
}

.topbar__socials {
	display: flex;
	align-items: center;
	gap: 14px;
}

.topbar__socials a {
	width: 28px;
	height: 28px;

	display: flex;
	align-items: center;
	justify-content: center;

	border-radius: 50%;
	color: #fff;

	transition: .2s ease;
}

.topbar__socials a:hover {
	background: #fecb17;
	color: #151b2e;
}

@media (max-width: 576px) {

	.topbar {
		height: 44px;
	}

	.topbar__inner {
		height: 44px;
	}

	.topbar__socials {
		gap: 10px;
	}

	.topbar__socials a {
		width: 30px;
		height: 30px;
	}
}

.header {
	position: sticky;
	top: 0;
	left: 0;
	background: #fff;
	padding-top: 15px;
	padding-block: 15px;
	z-index: 998;
	top: 40px;
}

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

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

.header__flex__logo {
	max-width: 250px;
}

.header__flex__ul {
	display: flex;
	gap: 40px;
}

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

.header__flex__ul li a {
	text-decoration: none;
	font-weight: 500;
	font-size: 16px;
	color: #444;
}

.header__flex__button {
	background: #fecb17;
	border-radius: 100px;
	padding: 10px;
	font-weight: 500;
	font-size: 14px;
	color: #0d0d0d;
	padding: 10px 54px;
	border: none;
	cursor: pointer;
}

.header__flex__ul li a:hover {
	color: #fecb17;
	border-bottom: 1.20px solid #fecb17;
}

.head__block {
	padding-top: 118px;
	padding-bottom: 110px;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

.head__block__span {
	font-weight: 400;
	font-size: 19px;
	color: #fff;
	border-bottom: 1.20px solid #fecb17;
}

.head__block__h1 {
	font-weight: 700;
	font-size: 47px;
	color: #fff;
	padding-top: 8px;
	padding-bottom: 27px;
	max-width: 719px;
	line-height: 130%;
}

.head__block__h1 span {
	color: #fecb17;
}

.head__block__text {
	font-weight: 400;
	font-size: 18px;
	line-height: 139%;
	color: #fff;
	max-width: 637px;
	margin-bottom: 66px;
}

.head__block__button {
	border-radius: 100px;
	padding: 10px;
	background: #fecb17;
	font-weight: 500;
	font-size: 18px;
	color: #0d0d0d;
	text-decoration: none;
	padding: 17px 57px;
	border: none;
}

.category__block {
	padding: 70px 0px 35px;
}

.category__block__h2 {
	font-weight: 700;
	font-size: 30px;
	color: #080808;
	text-align: center;
	padding-bottom: 30px;
}

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

.category__block__grid__bg {
	border-radius: 10px;
	background: #fff;
	padding: 30px 40px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.category__block__grid__bg__h3 {
	font-weight: 700;
	font-size: 20px;
	color: #080808;
	padding-bottom: 14px;
}

.category__block__grid__bg__p {
	font-weight: 400;
	font-size: 16px;
	color: #080808;
	padding-bottom: 21px;
}

.category__block__grid__bg__a {
	font-weight: 700;
	font-size: 16px;
	text-decoration: underline;
	color: #000;
}

.category__block__grid__bg__a:hover {
	color: #fecb17;
}

.category__block__grid__bg__img {
	max-width: 234px;
	max-height: 257px;
	object-fit: cover;
}

.preim__block {
	background: #212a49;
	padding: 30px 0px;
}

.preim__block__grid {
	display: flex;
	justify-content: space-between;
	
}

.preim__block__grid__cart {
	display: flex;
	align-items: flex-start;
	gap: 15px;
	padding: 0 40px;
}

.preim__block__grid__cart:first-child {

	padding-left: 0;

}

.preim__block__grid__cart:last-child {

	padding-right: 0;

}

.preim__block__grid__cart:not(:last-child) {

	border-right: 1px solid rgba(255, 255, 255, 0.2);

}

.preim__block__grid__cart__title {
	font-weight: 700;
	font-size: 16px;
	color: #fff;
	padding-bottom: 10px;
}

.preim__block__grid__cart__text {
	font-weight: 400;
	font-size: 16px;
	color: #fff;
	max-width: 280px;
}

.product-slider {
	padding: 35px 0;
}

.product-slider__title {
	font-size: 30px;
	font-weight: 700;
	color: #080808;
	margin-bottom: 30px;
	text-align: center;
}

.product-slider__wrapper {
	position: relative;
}

.product-slider__track {

	display: flex;
	gap: 20px;
	overflow-x: auto;

    overflow-y: hidden;
	
	scrollbar-width: none;
	-ms-overflow-style: none;
	touch-action: pan-x;
	-webkit-overflow-scrolling: touch;

}

.product-slider__track::-webkit-scrollbar {
	display: none;
}

.product-card {
	flex: 0 0 var(--card-width);
}

.product-card__image {
	position: relative;
	width: 100%;
	height: 293px;
	background: #fff;
	border-radius: 12px;
	margin-bottom: 18px;
	overflow: hidden;
}

.product-card__slides {
	position: relative;
	width: 100%;
	height: 100%;
}

.product-card__slides img {
	position: absolute;
	inset: 0;

	width: 100%;
	height: 100%;

	padding: 15px;
	object-fit: contain;

	opacity: 0;
	transition: opacity .35s ease;
}

.product-card__slides img.active {
	opacity: 1;
}

.product-card__dots {
	position: absolute;
	left: 12px;
	right: 12px;
	bottom: 12px;

	display: flex;
	gap: 6px;
	z-index: 2;
}

.product-card__dots button {
	flex: 1;
	height: 3px;

	border: none;
	border-radius: 999px;

	background: rgba(255,255,255,.45);

	cursor: pointer;
	padding: 0;

	transition: background .25s ease;
}

.product-card__dots button.active {
	background: #fff;
}

.product-card__title {
	font-size: 16px;
	font-weight: 500;
	color: #080808;
	margin-bottom: 6px;
}

.product-card__code {
	font-size: 13px;
	color: #b9b9b9;
	margin-bottom: 16px;
}

.product-card__actions {
	display: flex;
	gap: 10px;
	margin-top: 16px;
}

.product-card__btn {
	flex: 1;
	height: 40px;
	border-radius: 999px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	font-size: 13px;
	font-weight: 500;
	transition: .2s;
}

.product-card__btn--primary {
	background: #fecb17;
	color: #080808;
	border: none;
	cursor: pointer;
}

.product-card__btn--secondary {
	background: #fff;
	border: 1px solid #d9d9d9;
	color: #080808;
}

.product-card__btn--secondary:hover {
	background: #f7f7f7;
}

.product-card__image {
	position: relative;
	overflow: hidden;
}

.product-card__image .slide {
	position: absolute;
	inset: 0;

	width: 100%;
	height: 100%;

	padding: 15px;
	object-fit: contain;

	opacity: 0;
	transition: opacity .3s ease;

	max-width: none;
	max-height: none;
}

.product-card__image .slide.active {
	opacity: 1;
}

.product-card__dots {
	position: absolute;
	left: 12px;
	right: 12px;
	bottom: 12px;

	display: flex;
	gap: 6px;
	z-index: 5;
}

.product-card__dots span {
	flex: 1;
	height: 7px;
	border-radius: 999px;
	background: #F6F6F6;
	cursor: pointer;
	transition: background .2s ease;
}

.product-card__dots span.active {
	background: #fecb17;
}

.slider-arrow {
	position: absolute;
	top: 150px;
	transform: translateY(-50%);
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: none;
	background: transparent;
	color: #fff;
	font-size: 18px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 2;
}

.slider-arrow--prev {
	left: -22px;
	display: none;
}

.slider-arrow--next {
	right: -22px;
}

.slider-arrow:hover {
	background: #2f2f2f;
}

.product-card__rating {

	display: flex;
	align-items: center;
	gap: 4px;
	margin-bottom: 10px;

}

.product-card__rating {

	display: flex;
	gap: 4px;
	margin-bottom: 10px;

}

.product-card__rating img {

	width: 13px;
	height: 13px;
	display: block;

}

@media (max-width: 768px) {
	.product-slider__title {
		font-size: 24px;
	}

	.product-card {
		flex: 0 0 220px;
	}

	.product-card__image {
		height: 220px;
	}

	.slider-arrow {
		display: none !important;
	}
}

.offer__one {
	padding: 73px 66px;
	background: url(../../assets/images/of1.png);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	max-width: 1200px;
	margin: 0 auto;
	border-radius: 10px;
	margin-top: 35px;
	margin-bottom: 35px;
}

.offer__one__h2 {
	font-weight: 600;
	font-size: 39px;
	color: #fff;
	padding-bottom: 13px;
	max-width: 511px;
}

.offer__one__h2 span {
	color: #fecb17;
}

.offer__one__p {
	font-weight: 400;
	font-size: 18px;
	line-height: 139%;
	color: #fff;
	padding-bottom: 65px;
	max-width: 417px;
}

.offer__one__a {
	border: none;
	font-weight: 500;
	font-size: 18px;
	color: #0d0d0d;
	padding: 17px 57px;
	background: #fecb17;
	border-radius: 100px;
	text-decoration: none;
}

.offer__two {
	padding: 97px 66px;
	background: url(../../assets/images/of2.png);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	max-width: 1200px;
	margin: 0 auto;
	border-radius: 10px;
	margin-top: 35px;
	margin-bottom: 35px;
}

.offer__two__h2 {
	font-weight: 600;
	font-size: 39px;
	color: #fff;
	padding-bottom: 13px;
	max-width: 611px;
}

.offer__two__p {
	font-weight: 400;
	font-size: 18px;
	line-height: 139%;
	color: #fff;
	padding-bottom: 45px;
	max-width: 517px;
}

.offer__two__a {
	margin-top: 45px;
	border: none;
	font-weight: 500;
	font-size: 18px;
	color: #0d0d0d;
	padding: 17px 57px;
	background: #fecb17;
	border-radius: 100px;
	text-decoration: none;
}

.offer__two__grid {
	display: flex;
	align-items: end;
	gap: 55px;
	max-width: 700px;
	margin-bottom: 60px;
}

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

.offer__two__grid__cart img {
	max-width: 70px;
	margin: 0 auto;
}

.offer__two__grid__cart h3 {
	font-weight: 700;
	font-size: 16px;
	text-transform: uppercase;
	color: #fff;
	text-align: center;
}

.offer__two__grid__cart p {
	font-weight: 400;
	font-size: 16px;
	color: #fff;
	text-align: center;
}

.projects-slider {
	padding: 35px 0;
}

.projects-slider__title {
	text-align: center;
	font-weight: 700;
	font-size: 30px;
	color: #080808;
	margin-bottom: 30px;
}

.projects-slider__wrapper {
	position: relative;
}

.projects-slider__viewport {
	overflow: hidden;
}

.projects-slider__track {
	display: flex;
	gap: 20px;

	overflow-x: auto;
	scroll-behavior: smooth;

	scrollbar-width: none;
	-ms-overflow-style: none;

	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
}

.projects-slider__track::-webkit-scrollbar {
	display: none;
}

.project-slide {
	flex: 0 0 calc((100% - 40px) / 3);

	scroll-snap-align: start;

	border-radius: 12px;
	overflow: hidden;
	background: #f5f5f5;
}

.project-slide img {
	width: 100%;
	height: 300px;
	object-fit: cover;
	display: block;
}

.projects-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);

	width: 44px;
	height: 44px;

	border: none;
	border-radius: 50%;

	background: transparent;
	color: #fff;

	font-size: 18px;
	cursor: pointer;

	display: flex;
	align-items: center;
	justify-content: center;

	z-index: 10;
}

.projects-arrow:hover {
	background: rgba(20, 20, 20, 0.95);
}

.projects-arrow--prev {
	left: -20px;
	display: none;
}

.projects-arrow--next {
	right: -20px;
}

@media (max-width: 992px) {
	.project-slide {
		flex: 0 0 calc((100% - 20px) / 2);
	}
}

@media (max-width: 768px) {

	.projects-slider__title {
		font-size: 28px;
		margin-bottom: 25px;
	}

	.project-slide {
		flex: 0 0 100%;
	}

	.project-slide img {
		height: 240px;
	}

	/*.projects-arrow {
		display: none !important;
	}*/
}

.reviews-slider {
	padding: 35px 0;
}

.reviews-slider__title {
	text-align: center;
	font-size: 30px;
	font-weight: 700;
	color: #080808;
	margin-bottom: 30px;
}

.reviews-slider__wrapper {
	position: relative;
}

.reviews-slider__viewport {
	overflow: hidden;
}

.reviews-slider__track {
	display: flex;
	gap: 20px;

	overflow-x: auto;
	scroll-behavior: smooth;

	scrollbar-width: none;
	-ms-overflow-style: none;

	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
}

.reviews-slider__track::-webkit-scrollbar {
	display: none;
}

.review-slide {
	flex: 0 0 calc((100% - 60px) / 4);

	scroll-snap-align: start;

	border-radius: 12px;
	overflow: hidden;
	background: #fff;
	border: 1px solid #f0f0f0;
}

.review-slide img {
	width: 100%;
	height: auto;
	display: block;
}

.reviews-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);

	width: 44px;
	height: 44px;

	border: none;
	border-radius: 50%;

	background: transparent;
	color: #fff;

	font-size: 18px;
	cursor: pointer;

	display: flex;
	align-items: center;
	justify-content: center;

	z-index: 10;
}

.reviews-arrow:hover {
	background: rgba(20, 20, 20, 0.95);
}

.reviews-arrow--prev {
	left: -20px;
	display: none;
}

.reviews-arrow--next {
	right: -20px;
}

@media (max-width: 992px) {
	.review-slide {
		flex: 0 0 calc((100% - 20px) / 3);
	}
}

@media (max-width: 768px) {

	.reviews-slider__title {
		font-size: 28px;
		margin-bottom: 25px;
	}

	.review-slide {
		flex: 0 0 calc(50% - 10px);
	}

	.reviews-arrow {
		display: none !important;
	}
}

.news {
	padding: 35px 0;
}

.news__title {
	text-align: center;
	font-size: 30px;
	font-weight: 700;
	color: #080808;
	margin-bottom: 30px;
}

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

.news-card {
	background: #fff;
	border-radius: 16px;
	overflow: hidden;
	transition: transform .2s ease, box-shadow .2s ease;
}

.news-card:hover {
	transform: translateY(-3px);
}

.news-card__image {
	display: block;
	overflow: hidden;
}

.news-card__image img {
	width: 100%;
	height: 210px;
	object-fit: cover;
	display: block;
	transition: transform .3s ease;
}

.news-card:hover .news-card__image img {
	transform: scale(1.03);
}

.news-card__content {
	padding: 25px;
}

.news-card__title {
	font-size: 21px;
	font-weight: 700;
	color: #080808;
	line-height: 1.3;
	margin-bottom: 10px;
}

.news-card__title a {
	color: #080808;
	font-size: 17px;
	text-decoration: none;
}

.news-card__title a:hover {
	color: #f5c400;
}

.news-card__link {
	font-size: 16px;
	font-weight: 500;
	color: #080808;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.news-card__link:hover {
	color: #f5c400;
}

@media (max-width: 992px) {
	.news__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.news__title {
		font-size: 32px;
	}
}

@media (max-width: 576px) {

	.news {
		padding: 50px 0;
	}

	.news__grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.news__title {
		font-size: 28px;
		margin-bottom: 24px;
	}

	.news-card__image img {
		height: 220px;
	}

	.news-card__title {
		font-size: 20px;
	}
}

.faq {
	padding: 35px 0;
}

.faq__title {
	text-align: center;
	font-size: 30px;
	font-weight: 700;
	color: #080808;
	margin-bottom: 30px;
}

.faq__list {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.faq__item {
	background: #fff;
	border-radius: 16px;
	box-shadow: 0 2px 10px rgba(0,0,0,.04);
	overflow: hidden;
	border: 1px solid #f0f0f0;
}

.faq__question {
	width: 100%;
	background: none;
	border: none;
	padding: 22px 28px;

	display: flex;
	align-items: center;
	justify-content: space-between;

	gap: 20px;

	font-size: 20px;
	font-weight: 400;
	line-height: 1.3;
	color: #080808;

	cursor: pointer;
	text-align: left;
}

.faq__icon {
	width: 14px;
	height: 14px;
	position: relative;
	flex-shrink: 0;
	transition: transform .3s ease;
}

.faq__icon::before,
.faq__icon::after {
	content: "";
	position: absolute;
	background: #f5c400;
	border-radius: 2px;
}

.faq__icon::before {
	width: 14px;
	height: 2px;
	top: 6px;
	left: 0;
}

.faq__icon::after {
	width: 2px;
	height: 14px;
	top: 0;
	left: 6px;
	transition: opacity .3s ease;
}

.faq__item.active .faq__icon {
	transform: rotate(180deg);
}

.faq__item.active .faq__icon::after {
	opacity: 0;
}

.faq__answer {
	height: 0;
	overflow: hidden;
	transition: height .35s ease;
}

.faq__answer-inner {
	padding: 0 28px 24px;
}

.faq__answer p {
	font-size: 16px;
	line-height: 1.7;
	color: #4d4d4d;
}

@media (max-width: 992px) {

	.faq__title {
		font-size: 32px;
	}

	.faq__question {
		font-size: 20px;
		padding: 20px 22px;
	}

	.faq__answer-inner {
		padding: 0 22px 22px;
	}
}

@media (max-width: 576px) {

	.faq {
		padding: 50px 0;
	}

	.faq__title {
		font-size: 28px;
		margin-bottom: 24px;
	}

	.faq__question {
		font-size: 18px;
		padding: 18px;
	}

	.faq__answer-inner {
		padding: 0 18px 18px;
	}

	.faq__answer p {
		font-size: 15px;
		line-height: 1.6;
	}
}

.contacts {
	padding: 35px 0;
}

.contacts__title {
	text-align: center;
	font-size: 30px;
	font-weight: 700;
	color: #080808;
	margin-bottom: 30px;
}

.contacts__wrapper {
	display: grid;
	grid-template-columns: 380px 1fr;
	gap: 24px;
	align-items: stretch;
}

.contacts__info {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.contacts__item {
	background: #fff;
	border-radius: 20px;
	padding: 10px;
	display: flex;
	align-items: flex-start;
	gap: 16px;

	text-decoration: none;
	color: inherit;
}

.contacts__icon {
	width: 52px;
	height: 52px;
	border-radius: 50%;

	display: flex;
	align-items: center;
	justify-content: center;

	flex-shrink: 0;
}

.contacts__icon img {
	width: 24px;
	height: 24px;
}

.contacts__label {
	font-size: 14px;
	color: #8a8a8a;
	margin-bottom: 4px;
}

.contacts__value {
	font-size: 18px;
	font-weight: 600;
	color: #080808;
	line-height: 1.4;
}

.contacts__map {
	border-radius: 16px;
	overflow: hidden;
	min-height: fit-content;

	box-shadow: 0 2px 10px rgba(0,0,0,.04);
	border: 1px solid #f0f0f0;
}

.contacts__map iframe {
	width: 100%;
	height: 100%;
	border: 0;
	display: block;
}

@media (max-width: 992px) {

	.contacts__wrapper {
		grid-template-columns: 1fr;
	}

	.contacts__map {
		min-height: 360px;
	}

	.contacts__title {
		font-size: 26px;
	}
}

@media (max-width: 576px) {

	.contacts {
		padding: 50px 0;
	}

	.contacts__title {
		font-size: 22px;
		margin-bottom: 24px;
	}

	.contacts__info {
		gap: 18px;
	}

	.contacts__value {
		font-size: 16px;
	}

	.contacts__btn {
		width: 100%;
	}

	.contacts__map {
		min-height: 280px;
	}
}

.footer {
	background: #fff;
	padding: 66px 0px 20px;
}

.footr__grid {
	display: grid;
	grid-template-columns: 1.2fr 1fr 1fr 1fr;
}

.footr__grid__img {
	width: 180px;
}

.footr__grid__slog {
	font-weight: 400;
	font-size: 15px;
	color: #080808;
	padding-top: 20px;
	padding-bottom: 20px;
}

.d__flex {
	display: flex;
	gap: 15px;
}

.footr__grid__title {
	font-weight: 700;
	font-size: 18px;
	line-height: 120%;
	color: #080808;
	position: relative;

	display: inline-block;
	padding-bottom: 10px;
}

.footr__grid__title::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 40px;
	height: 2px;
	background: #fecb17;
	border-radius: 2px;

}

.footr__grid__ul {
	padding-top: 20px;
}


.footr__grid__ul li {
	list-style-type: none;
	padding-bottom: 18px;
}

.footr__grid__ul li a {
	text-decoration: none;
	font-weight: 500;
	font-size: 16px;
	line-height: 170%;
	color: #080808;
}

.footr__grid__ul li a:hover {
	color: #FECB17;
	transition: 0.2s;
}

.hr {
	border: 1px solid #eaeaea;
	margin-top: 50px;
	margin-bottom: 10px;
}

.end__text {
	text-align: center;
	margin: 0 auto;
}

.inside__page__head__block {
	position: relative;
	overflow: hidden;
	object-fit: cover;
	object-position: center bottom;
	padding: 126px 152px;
}

.inside__page__head__block::before {

	content: "";
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.54);
	z-index: 1;

}

.inside__page__head__block > * {

	position: relative;
	z-index: 2;

}

.inside__page__head__block__bred {
	display: flex;
	gap: 10px;
	padding-bottom: 16px;
	justify-content: center;
}

.inside__page__head__block__bred a {
	font-weight: 400;
	font-size: 17px;
	color: #fff;
	text-decoration: none;
}

.inside__page__head__block__bred a:hover {
	color: #fecb17;
}

.inside__page__head__block__bred span {
	font-weight: 400;
	font-size: 17px;
	color: #fff;
}

.inside__page__head__block__bred p {
	font-weight: 400;
	font-size: 17px;
	color: #fff;
}

.inside__page__head__block__title {
	font-weight: 600;
	font-size: 40px;
	color: #fff;
	text-align: center;
}

.catalog__all__h2 {
	font-weight: 700;
	font-size: 30px;
	color: #080808;
	padding-bottom: 30px;
	padding-top: 70px;
}

.catalog__all__h2 span {
	color: #fecb17;
}

.catalog__all__flex__button {
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
	padding-bottom: 30px;
}

.catalog__all__flex__button button.active {
	background: #fecb17;
}

.catalog__all__flex__button button:hover {
	background: #fecb17;
}

.catalog__all__flex__button button {
	border-radius: 100px;
	padding: 10px 30px;
	background: #f6f6f6;
	border: none;
	font-weight: 500;
	font-size: 14px;
	color: #0d0d0d;
	cursor: pointer;
}

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

.product-card {

	opacity: 1;
	transform: scale(1);
	transition:
	opacity .35s ease,
	transform .35s ease;

}

.product-card.hide {

	opacity: 0;
	transform: scale(.95);
	pointer-events: none;

}

.button__more {
	display: flex;
	justify-content: center;
	margin-top: 35px;
}

.button__more button {
	border-radius: 100px;
	padding: 10px 30px;
	background: #fecb17;
	font-weight: 500;
	font-size: 18px;
	color: #0d0d0d;
	border: none;
	cursor: pointer;
	width: 100%;
}

@media (max-width: 992px) {

	.catalog__all__grid__cart {
		grid-template-columns: repeat(2, 1fr);
	}

}

@media (max-width: 576px) {

	.catalog__all__grid__cart {
		grid-template-columns: 1fr;
	}
	.catalog__all__flex__button {
		gap: 8px;
	}
	.catalog__all__flex__button button {
		font-size: 14px;
		padding: 10px 16px;
	}

}

.about__block {
	padding: 70px 0 35px;
}

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

.about__block__h2 {
	font-weight: 700;
	font-size: 30px;
	color: #080808;
	padding-bottom: 20px;
}

.about__block__h2 span {
	color: #fecb17;
}

.about__block__text p {
	font-weight: 500;
	font-size: 20px;
	line-height: 140%;
	color: #080808;
	padding-bottom: 20px;
}

.about__block__image {
	height: 100%;
}

.about__block__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 10px;
	display: block;
}

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

.about__block__grid__cart_bg {
	padding: 26px;
	display: flex;
	gap: 15px;
	background: #fff;
	border-radius: 20px;
	align-items: start;
}

.about__block__grid__cart_bg svg {
	width: 50px;
}

.about__block__grid__cart_bg img {
	width: 30px;
}

.about__block__grid__cart_bg__h3 {
	font-weight: 700;
	font-size: 16px;
	color: #080808;
	padding-bottom: 10px;
}

.about__block__grid__cart_bg__p {
	font-weight: 400;
	font-size: 16px;
	color: #080808;
}

.about__numbers {
	padding: 35px 0;
}

.about__numbers h2 {
	text-align: center;
	margin-bottom: 40px;
	font-size: 30px;
	color: #080808;
}

.about__numbers__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
}

.about__numbers__grid__cart {
	text-align: center;
	padding: 0 30px;
}

.about__numbers__grid__cart:not(:last-child) {
	border-right: 1px solid #d7d7d7;
}

.about__numbers__grid__cart h3 {
	font-weight: 500;
	font-size: 40px;
	color: #080808;
	padding-bottom: 22px;
}

.about__numbers__grid__cart p {
	font-weight: 500;
	font-size: 18px;
	line-height: 120%;
	color: #080808;
}

.portfolio__block__page {
	padding: 70px 0 35px;
}

.portfolio__block__page__h2 {
	font-weight: 700;
	font-size: 30px;
	color: #fecb17;
	padding-bottom: 30px;
}

.portfolio__block__page__h2 span {
	color: #080808;
}

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

.portfolio__item {
	width: 100%;
	display: block;
	border-radius: 10px;

	opacity: 1;
	transform: translateY(0);
	transition: opacity .35s ease, transform .35s ease;
	height: 290px;
    object-fit: cover;
}

.portfolio__item.hide {
	opacity: 0;
	transform: translateY(15px);
	pointer-events: none;
}

/* мобильный */
@media (max-width: 768px) {
	.portfolio__block__page__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 576px) {
	.portfolio__block__page__grid {
		grid-template-columns: 1fr;
	}
}

.portfolio__block__page--blog .news-card {

	opacity: 1;
	transform: translateY(0);
	transition: opacity .35s ease, transform .35s ease;

}

.portfolio__block__page--blog .news-card.hide {

	opacity: 0;
	transform: translateY(15px);
	pointer-events: none;

}

.content__single__blog {
	padding: 70px 0px 35px;
}

.content__single__blog__grid {
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 20px;
	align-items: start;
	position: relative;

}

.content__single__blog__grid__content__left h2 {
	font-weight: 700;
	font-size: 26px;
	color: #080808;
	padding-bottom: 20px;
	padding-top: 15px;
}

.content__single__blog__grid__content__left h3 {
	font-weight: 700;
	font-size: 22px;
	color: #080808;
	padding-bottom: 20px;
	padding-top: 15px;
}

.content__single__blog__grid__content__left h4 {
	font-weight: 700;
	font-size: 18px;
	color: #080808;
	padding-bottom: 20px;
	padding-top: 15px;
}

.content__single__blog__grid__content__left p {
	font-weight: 500;
	font-size: 17px;
	line-height: 140%;
	color: #080808;
	padding-bottom: 10px;
}

.content__single__blog__grid__content__left p a {
	font-weight: 700;
	font-size: 17px;
	line-height: 140%;
	color: #fecb17;
	padding-bottom: 10px;
}

.content__single__blog__grid__content__left ul {
	padding-left: 17px;
	padding-top: 15px;
	padding-bottom: 15px;
}

.content__single__blog__grid__content__left ol {
	padding-left: 20px;
	padding-top: 15px;
	padding-bottom: 15px;
}

.content__single__blog__grid__content__left ul li {
	padding-bottom: 10px;
	font-weight: 500;
	font-size: 17px;
	line-height: 140%;
	color: #080808;
}

.content__single__blog__grid__content__left ol li {
	padding-bottom: 10px;
	font-weight: 500;
	font-size: 17px;
	line-height: 140%;
	color: #080808;
}

.content__single__blog__grid__content__left ul li a {
	font-weight: 700;
	font-size: 17px;
	line-height: 140%;
	color: #fecb17;
	padding-bottom: 10px;
}

.content__single__blog__grid__content__left ol li a {
	font-weight: 700;
	font-size: 17px;
	line-height: 140%;
	color: #fecb17;
	padding-bottom: 10px;
}

.pohoj__articles__sidebar {

	position: sticky;
	top: 100px;
	align-self: start;

}

.pohoj__articles__block {
	border-radius: 20px;
	background: #fff;
	padding: 30px;
	display: block;
}

.pohoj__articles__block__h2 {

	position: relative;
	display: inline-block;
	font-weight: 600;
	font-size: 21px;
	color: #080808;
	padding-bottom: 12px;

}

.pohoj__articles__block__h2::after {

	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 2px;
	background: #fecb17;
	border-radius: 2px;

}

.pohoj__articles__block__grid__link {
	display: grid;
	gap: 25px;
	padding-top: 25px;
}

.pohoj__articles__block__grid__link a {
	font-weight: 400;
	font-size: 15px;
	color: #080808;
	text-decoration: none;
}

.pohoj__articles__block__grid__link a:hover {
	color: #fecb17;
}

.contacts__page {
	padding: 70px 0px 35px;
}

.contacts__page__title {
	font-weight: 600;
	font-size: 28px;
	color: #000;
	padding-bottom: 30px;
}

.contacts__page__title span {
	color: #fecb17;
}

.cart__page__product__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
	padding-top: 70px;
	align-items: start;
}

.cart__page__product__grid__title {
	font-weight: 700;
	font-size: 30px;
	color: #080808;
	padding-bottom: 10px;
}

.cart__page__product__grid__code {
	font-weight: 400;
	font-size: 20px;
	color: #b9b9b9;
	padding-bottom: 15px;
}

.cart__page__product__grid__text {
	font-weight: 500;
	font-size: 16px;
	line-height: 150%;
	color: #080808;
	padding-bottom: 30px;
}

.cart__page__product__grid__color {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	padding-bottom: 10px;
}

.cart__page__product__grid__color img {
	width: 41px;
	height: 41px;
	object-fit: cover;
}

.product-card--single {

	align-self: start; 
	height: auto;

}

.product-card--single .product-card__image {

	height: auto;
	min-height: 420px;

}

.product-card--single .product-card__image .slide {

	height: 100%;

}

.popup {
	position: fixed;
	inset: 0;
	z-index: 9999;

	display: flex;
	align-items: center;
	justify-content: center;

	opacity: 0;
	visibility: hidden;
	transition: .25s ease;
}

.popup.open {
	opacity: 1;
	visibility: visible;
}

.popup__overlay {
	position: absolute;
	inset: 0;
	background: rgba(0,0,0,.6);
	backdrop-filter: blur(3px);
}

.popup__content {
	position: relative;
	width: 100%;
	max-width: 420px;

	background: #fff;
	border-radius: 20px;

	padding: 32px 28px;
	z-index: 2;

	transform: translateY(20px);
	transition: transform .25s ease;
}

.popup.open .popup__content {
	transform: translateY(0);
}

.popup__close {
	position: absolute;
	top: 14px;
	right: 14px;

	width: 34px;
	height: 34px;

	border: none;
	background: #f3f3f3;
	border-radius: 50%;

	font-size: 20px;
	cursor: pointer;
	transition: .2s;
}

.popup__close:hover {
	background: #e8e8e8;
}

.popup__title {
	font-size: 28px;
	font-weight: 700;
	color: #080808;
	margin-bottom: 10px;
}

.popup__text {
	font-size: 15px;
	line-height: 1.5;
	color: #555;
	margin-bottom: 24px;
}

.popup__form {
	display: grid;
	gap: 14px;
}

.popup__form input {
	height: 52px;
	border: 1px solid #d9d9d9;
	border-radius: 12px;
	padding: 0 16px;
	font-size: 15px;
	outline: none;
	transition: border-color .2s ease;
}

.popup__form input:focus {
	border-color: #fecb17;
}

.popup__form button {
	height: 52px;
	border: none;
	border-radius: 999px;

	background: #fecb17;
	color: #0d0d0d;

	font-size: 16px;
	font-weight: 500;

	cursor: pointer;
	transition: .2s;
}

.popup__form button:hover {
	background: #e6b700;
}

.footr__grid div .d__flex a {
	color: #080808;

}


@media (max-width: 576px) {

	.popup__content {
		margin: 16px;
		padding: 28px 20px;
		border-radius: 18px;
	}

	.popup__title {
		font-size: 24px;
	}
}

.burger {
	display: none;
}

@media (max-width: 1200px) {
	.topbar {
		padding-left: 20px;
    	padding-right: 20px;
	}

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

	.head__block {
		padding-left: 20px;
    	padding-right: 20px;
    	padding-top: 90px;
		padding-bottom: 90px;
	}

	.head__block__h1 {
	    font-size: 38px;
	}

	.head__block__text {
	    font-weight: 400;
	    font-size: 18px;
	    line-height: 139%;
	    color: #fff;
	    max-width: 637px;
	    margin-bottom: 56px;
	}

	.head__block__button {
	    border-radius: 100px;
	    padding: 10px;
	    background: #fecb17;
	    font-weight: 500;
	    font-size: 17px;
	    color: #0d0d0d;
	    text-decoration: none;
	    padding: 17px 57px;
	    border: none;
	}

	.preim__block {
	    background: #212a49;
	    padding: 30px 20px;
	}

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

	.product-slider {
		padding-left: 20px;
		padding-right: 20px;
	}

	.offer__one {
		width: auto;
	    margin-left: 20px;
	    margin-right: 20px;
	    padding: 73px 45px;
	}

	.offer__two {
		width: auto;
	    margin-left: 20px;
	    margin-right: 20px;
	    padding: 73px 45px;
	}

	.projects-slider {
	    padding: 35px 20px;
	}

	.reviews-slider {
	    padding: 35px 20px;
	}

	.news {
	    padding: 35px 20px;
	}

	.faq {
	    padding: 35px 20px;
	}

	.contacts {
	    padding: 35px 20px;
	}

	.footer {
	    background: #fff;
	    padding: 66px 20px 20px;
	}

	.offer__two__a {
	    margin-top: 45px;
	    border: none;
	    font-weight: 500;
	    font-size: 16px;
	    color: #0d0d0d;
	    padding: 17px 57px;
	    background: #fecb17;
	    border-radius: 100px;
	    text-decoration: none;
	}

	.offer__one__a {
	    margin-top: 45px;
	    border: none;
	    font-weight: 500;
	    font-size: 16px;
	    color: #0d0d0d;
	    padding: 17px 57px;
	    background: #fecb17;
	    border-radius: 100px;
	    text-decoration: none;
	}

	.faq__title {
	    font-size: 26px;
	}

	.news__title {
		font-size: 26px;
	}

	.reviews-slider__title {
		font-size: 26px;
	}

	.projects-slider__title {
		font-size: 26px;
	}

	.product-slider__title {
		font-size: 26px;
	}

	.category__block__h2 {
		font-size: 26px;
	}

	.inside__page__head__block__title {
	    font-weight: 600;
	    font-size: 35px;
	    color: #fff;
	    text-align: center;
	}

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

	.inside__page__head__block {
	    position: relative;
	    overflow: hidden;
	    object-fit: cover;
	    object-position: center bottom;
	    padding: 126px 20px 152px;
	}

	.catalog__all__h2 {
	    font-weight: 700;
	    font-size: 26px;
	    color: #080808;
	    padding-bottom: 30px;
	    padding-top: 70px;
	}

	.inside__page__head__block__title {
        font-weight: 600;
        font-size: 30px;
        color: #fff;
        text-align: center;
    }

    .inside__page__head__block {
        position: relative;
        overflow: hidden;
        object-fit: cover;
        object-position: center bottom;
        padding: 80px 20px 80px;
    }

    .catalog__all__h2 {
        font-weight: 700;
        font-size: 22px;
        color: #080808;
        padding-bottom: 30px;
        padding-top: 70px;
    }

    .catalog__all__flex__button {
	    display: flex;
	    flex-wrap: wrap;
	    gap: 15px;
	    padding-bottom: 30px;
	}

	.inside__page__head__block__title {
        font-weight: 600;
        font-size: 24px;
        color: #fff;
        text-align: center;
    }

    .about__block {
	    padding: 70px 20px 35px;
	}

	.about__block__text {
	    font-weight: 500;
	    font-size: 18px;
	    line-height: 140%;
	    color: #080808;
	}

	.about__block__h2 {
	    font-weight: 700;
	    font-size: 26px;
	    color: #080808;
	    padding-bottom: 20px;
	}

	.portfolio__block__page {
	    padding: 70px 20px 35px;
	}

	.portfolio__block__page__h2 {
	    font-weight: 700;
	    font-size: 26px;
	    color: #fecb17;
	    padding-bottom: 30px;
	}

	.content__single__blog {
	    padding: 70px 20px 35px;
	}

	.faq {
        padding: 35px 20px;
    }

    .contacts__page {
	    padding: 70px 20px 35px;
	}

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

	.content__single__blog__grid .faq {
		padding: 35px 0px;
	}
}

@media (max-width: 1100px) {
	.preim__block__grid__cart__text {
	    font-weight: 400;
	    font-size: 15px;
	    color: #fff;
	    max-width: 280px;
	}
}

@media (max-width: 992px) {
	.burger {
		display: block;
	}

	.header__flex__ul.open {
		display: block;
	}

	.header__flex__ul {
        display: none;
        position: absolute;
        background: #fff;
        width: 100%;
        left: 0;
        top: 79px;
        padding: 20px;
        height: 100vh;
    }

    .header__flex__ul li {
	    padding-bottom: 20px;
	}

	.header__flex__button {
		display: none;
	}

	.preim__block__grid__cart {
	    display: flex;
	    align-items: flex-start;
	    gap: 15px;
	    padding: 0 20px;
	}

	.preim__block__grid__cart__img {
		width: 20px;
	}

	.preim__block__grid__cart__title {
	    font-weight: 700;
	    font-size: 15px;
	    color: #fff;
	    padding-bottom: 10px;
	}

	.category__block__grid__bg {
	    border-radius: 10px;
	    background: #fff;
	    padding: 20px 20px;
	    display: flex;
	    justify-content: center;
	    align-items: center;
	}

	.offer__one__h2 {
	    font-weight: 600;
	    font-size: 35px;
	    color: #fff;
	    padding-bottom: 13px;
	    max-width: 511px;
	}

	.offer__one__p {
	    font-weight: 400;
	    font-size: 16px;
	    line-height: 139%;
	    color: #fff;
	    padding-bottom: 45px;
	    max-width: 417px;
	}

	.offer__one__a {
        margin-top: 45px;
        border: none;
        font-weight: 500;
        font-size: 14px;
        color: #0d0d0d;
        padding: 15px 37px;
        background: #fecb17;
        border-radius: 100px;
        text-decoration: none;
    }

    .offer__two__h2 {
	    font-weight: 600;
	    font-size: 35px;
	    color: #fff;
	    padding-bottom: 13px;
	    max-width: 611px;
	}

	.offer__two__p {
	    font-weight: 400;
	    font-size: 16px;
	    line-height: 139%;
	    color: #fff;
	    padding-bottom: 45px;
	    max-width: 517px;
	}

	.offer__two__a {
        margin-top: 45px;
        border: none;
        font-weight: 500;
        font-size: 15px;
        color: #0d0d0d;
        padding: 15px 37px;
        background: #fecb17;
        border-radius: 100px;
        text-decoration: none;
    }

    .offer__two__grid__cart h3 {
	    font-weight: 700;
	    font-size: 16px;
	    text-transform: uppercase;
	    color: #fff;
	    text-align: center;
	}

	.offer__two__grid__cart {
	    display: grid;
	    gap: 10px;
	}

	.about__numbers h2 {
	    text-align: center;
	    margin-bottom: 40px;
	    font-size: 26px;
	    color: #080808;
	}

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

	.about__block__text {
        font-weight: 500;
        font-size: 17px;
        line-height: 140%;
        color: #080808;
    }

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

	.about__numbers__grid__cart p {
	    font-weight: 500;
	    font-size: 15px;
	    line-height: 120%;
	    color: #080808;
	}

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

	.about__block__grid__cart {
        padding-top: 50px;
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
    }

    .about__block__h2 {
        font-weight: 700;
        font-size: 22px;
        color: #080808;
        padding-bottom: 20px;
    }

    .content__single__blog__grid {
	    display: grid;
	    grid-template-columns: 1fr;
	    gap: 20px;
	    align-items: start;
	    position: relative;
	}

	.contacts__page__title {
	    font-weight: 600;
	    font-size: 26px;
	    color: #000;
	    padding-bottom: 30px;
	}

	.cart__page__product__grid__title {
	    font-weight: 700;
	    font-size: 26px;
	    color: #080808;
	    padding-bottom: 10px;
	}
}

@media (max-width: 768px) {
	.head__block__h1 {
        font-size: 35px;
    }

    .preim__block__grid {
	    display: grid;
	    justify-content: space-between;
	    gap: 40px;
	    grid-template-columns: 1fr 1fr;
	}

	.preim__block__grid__cart {
        display: flex;
        align-items: flex-start;
        gap: 15px;
        padding: 0 0px;
    }

    .preim__block__grid__cart:not(:last-child) {
	    border-right: none;
	}

	.preim__block__grid__cart__title {
        font-weight: 700;
        font-size: 17px;
        color: #fff;
        padding-bottom: 10px;
    }

    .preim__block__grid__cart__text {
        font-weight: 400;
        font-size: 17px;
        color: #fff;
        max-width: 280px;
    }

    .preim__block__grid__cart__img {
		width: 30px;
	}

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

	.offer__one__h2 {
        font-weight: 600;
        font-size: 29px;
        color: #fff;
        padding-bottom: 13px;
        max-width: 354px;
    }

    .offer__one__p {
        font-weight: 400;
        font-size: 14px;
        line-height: 139%;
        color: #fff;
        padding-bottom: 45px;
        max-width: 350px;
    }

    .offer__two__h2 {
        font-weight: 600;
        font-size: 28px;
        color: #fff;
        padding-bottom: 13px;
        max-width: 611px;
    }

    .offer__two__p {
        font-weight: 400;
        font-size: 15px;
        line-height: 139%;
        color: #fff;
        padding-bottom: 45px;
        max-width: 417px;
    }

    .offer__two__grid__cart h3 {
        font-weight: 700;
        font-size: 14px;
        text-transform: uppercase;
        color: #fff;
        text-align: center;
    }

    .offer__two__a {
        margin-top: 45px;
        border: none;
        font-weight: 500;
        font-size: 15px;
        color: #0d0d0d;
        padding: 13px 35px;
        background: #fecb17;
        border-radius: 100px;
        text-decoration: none;
    }

    .footr__grid {
	    display: grid;
	    grid-template-columns: 1.2fr 1fr;
	    gap: 40px;
	}

	.inside__page__head__block__bred {
	    display: flex;
	    gap: 10px;
	    padding-bottom: 16px;
	    justify-content: center;
	    flex-wrap: wrap;
	}

	.cart__page__product__grid {
	    display: grid;
	    grid-template-columns: repeat(1, 1fr);
	    gap: 20px;
	    padding-top: 70px;
	    align-items: start;
	}
}

@media (max-width: 580px) {
	.head__block__h1 {
	    padding-top: 20px;
	}

	.header__flex__logo {
	max-width: 140px;
}

	.preim__block__grid {
	    display: grid;
	    justify-content: space-between;
	    gap: 40px;
	    grid-template-columns: 1fr;
	}

	.preim__block__grid__cart__title {
        font-weight: 700;
        font-size: 19px;
        color: #fff;
        padding-bottom: 10px;
    }

    .preim__block__grid__cart__text {
        font-weight: 400;
        font-size: 19px;
        color: #fff;
        max-width: 100%;
    }

    .head__block__h1 {
        font-size: 25px;
        max-width: 100%;
    }

    .head__block__text {
        font-weight: 400;
        font-size: 16px;
        line-height: 139%;
        color: #fff;
        max-width: 100%;
        margin-bottom: 56px;
    }

    .head__block__button {
        border-radius: 100px;
        padding: 10px;
        background: #fecb17;
        font-weight: 500;
        font-size: 15px;
        color: #0d0d0d;
        text-decoration: none;
        padding: 14px 37px;
        border: none;
        width: 100%;
        display: block;
        text-align: center;
    }

    .head__block__text {
        font-weight: 400;
        font-size: 16px;
        line-height: 139%;
        color: #fff;
        max-width: 100%;
        margin-bottom: 45px;
    }

    .preim__block__grid__cart {
        display: grid;
        align-items: flex-start;
        gap: 15px;
        padding: 0 0px;
    }

    .preim__block__grid__cart__title {
        font-weight: 700;
        font-size: 19px;
        color: #fff;
        padding-bottom: 10px;
        text-align: center;
    }

    .preim__block__grid__cart__text {
        font-weight: 400;
        font-size: 17px;
        color: #fff;
        max-width: 100%;
        text-align: center;
    }

    .preim__block__grid__cart div {
    	margin: 0 auto;
    }

    .category__block__h2 {
        font-size: 22px;
    }

    .category__block__grid__bg {
    	display: grid;
    }

    .preim__block__grid__cart__img__block {
    	display: flex;
    	justify-content: center;
    }

 	/* 1-я карточка — фото сверху */

	.category__block__grid__bg:nth-child(1) > div:first-child {
		order: 2;
	}
	.category__block__grid__bg:nth-child(1) > div:last-child {
		order: 1;
	}
	/* 3-я карточка — фото сверху */
	.category__block__grid__bg:nth-child(3) > div:first-child {
		order: 2;
	}
	.category__block__grid__bg:nth-child(3) > div:last-child {
		order: 1;
	}

	/* 2-я карточка */

	.category__block__grid__bg:nth-child(2) > div:first-child {
		order: 2;
	}
	.category__block__grid__bg:nth-child(2) > div:last-child {
		order: 1;
	}
	/* 4-я карточка */
	.category__block__grid__bg:nth-child(4) > div:first-child {
		order: 2;
	}
	.category__block__grid__bg:nth-child(4) > div:last-child {
		order: 1;
	}

	.category__block__grid__bg__h3 {
	    font-weight: 700;
	    font-size: 20px;
	    color: #080808;
	    padding-bottom: 14px;
	    text-align: center;
	}

	.category__block__grid__bg__p {
	    font-weight: 400;
	    font-size: 16px;
	    color: #080808;
	    padding-bottom: 21px;
	    text-align: center;
	}

	.category__block__grid__bg__a {
	    font-weight: 700;
	    font-size: 16px;
	    text-decoration: underline;
	    color: #000;
	    text-align: center;
	    display: flex;
        justify-content: center;
	}

	.footr__grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .faq__title {
        font-size: 22px;
    }

    .news__title {
        font-size: 22px;
    }

    .reviews-slider__title {
        font-size: 22px;
    }

    .projects-slider__title {
        font-size: 22px;
    }

    .offer__two__grid {
	    display: grid;
	    align-items: end;
	    gap: 55px;
	    max-width: 700px;
	    margin-bottom: 60px;
	}

	.offer__two__a {
        margin-top: 45px;
        border: none;
        font-weight: 500;
        font-size: 15px;
        color: #0d0d0d;
        padding: 13px 35px;
        background: #fecb17;
        border-radius: 100px;
        text-decoration: none;
        width: 100%;
        display: block;
        text-align: center;
    }

    .offer__two {
        width: auto;
        margin-left: 20px;
        margin-right: 20px;
        padding: 53px 25px;
    }

    .offer__two__h2 {
    	text-align: center;
    	max-width: 100%;
    }

    .offer__two__p {
    	text-align: center;
    	max-width: 100%;
    }

    .offer__one {
        width: auto;
        margin-left: 20px;
        margin-right: 20px;
        padding: 53px 25px;
    }

    .offer__one__h2 {
        font-weight: 600;
        font-size: 24px;
        color: #fff;
        padding-bottom: 13px;
        max-width: 100%;
        text-align: center;
    }

    .offer__one__p {
        font-weight: 400;
        font-size: 14px;
        line-height: 139%;
        color: #fff;
        padding-bottom: 45px;
        max-width: 100%;
        text-align: center;
    }

    .offer__one__a {
        margin-top: 0px;
        border: none;
        font-weight: 500;
        font-size: 14px;
        color: #0d0d0d;
        padding: 15px 37px;
        background: #fecb17;
        border-radius: 100px;
        text-decoration: none;
        width: 100%;
        display: block;
        text-align: center;
    }

    .offer__one {
	    background-position: left;
	}

	.portfolio__block__page__h2 {
	    font-weight: 700;
	    font-size: 22px;
	    color: #fecb17;
	    padding-bottom: 30px;
	}

	.inside__page__head__block__bred p {
	    font-weight: 400;
	    font-size: 17px;
	    color: #fff;
	    text-align: center;
	}

	.contacts__page__title {
	    font-weight: 600;
	    font-size: 22px;
	    color: #000;
	    padding-bottom: 30px;
	}

	.cart__page__product__grid__title {
        font-weight: 700;
        font-size: 22px;
        color: #080808;
        padding-bottom: 10px;
    }

    .cart__page__product__grid__code {
	    font-weight: 400;
	    font-size: 17px;
	    color: #b9b9b9;
	    padding-bottom: 15px;
	}

	.product-slider__title {
        font-size: 22px;
    }

}











