:root {
	--c-dark: #131313;
	--button-radius: 10px;
	--transition: .2s;
	scroll-behavior: smooth;
	scroll-padding-top: 151px;
}

body {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	font-family: 'Muller', sans-serif;
	font-size: 1.875rem;
	font-size: 1.5625rem;
	font-weight: 300;
	line-height: 1.35;
	color: #202020;
}

main {
	flex-grow: 1;
}

.pt80 {
	padding-top: 80px;
}
.pb80 {
	padding-bottom: 80px;
}
.pt60 {
	padding-top: 60px;
}
.pb60 {
	padding-bottom: 60px;
}
.mb200 {
	margin-bottom: 200px;
}


button {
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: var(--transition);
}

h1,
h2,
h3 {
	font-weight: 400;
	text-transform: uppercase;
}



h3 {
	font-size: 2.1875rem;
}

b {
	font-weight: 700;
}


.grid {
	display: grid;
}
.grid.col2_auto {
	grid-template-columns: auto auto;
}
.grid.col2 {
	grid-template-columns: repeat(2, 1fr);
}
.grid.col3 {
	grid-template-columns: repeat(3, 1fr);
}
.grid.col4 {
	grid-template-columns: repeat(4, 1fr);
}
.grid.grid_3_2 {
	grid-template-columns: 3fr 2fr;
}
.flex {
	display: flex;
	justify-content: space-between;
	flex-direction: row;
}
.flex.column {
	flex-direction: column;
}
.flex.around {
	justify-content: space-around;
}

.flex.center, .grid.center {
	justify-content: center;
}
.flex.left {
	justify-content: flex-start;
}
.flex.right {
	justify-content: flex-end;
}
.flex.vcenter, .grid.vcenter {
	align-items: center;
}
.flex.vtop, .grid.vtop {
	align-items: flex-start;
}
.flex.vbottom, .grid.vbottom {
	align-items: flex-end;
}
.flex.wrap {
	flex-wrap: wrap;
}
.gap40 {
	gap: 40px;
}
.gap24 {
	gap: 24px;
}
.gap20 {
	gap: 20px;
}
.gap16 {
	gap: 16px;
}
.gap12 {
	gap: 12px;
}
.gap8 {
	gap: 8px;
}

iframe {
	border: 0 none;
	display: block;
}
.redaktor h2,
.redaktor h3 {
	margin: 0.5em 0;
}

.redaktor p,
.redaktor ol,
.redaktor ul {
	margin: 1em 0;
}
.redaktor ol,
.redaktor ul {
	padding: 0 0 0 30px;
}
.redaktor ul li {
	list-style: disc;
}
.redaktor ol li {
	list-style: decimal;
}
.redaktor a {
	text-decoration: underline;
}

.title-italic {
	font-size: 2.1875rem;
	font-style: italic;
	color: #5D5D5D;
}

.container {
	max-width: 100%;
	padding: 0 50px;
}

.button {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: fit-content;
	height: 65px;
	padding: 0 28px;
	border-radius: var(--button-radius);
	border: 1px solid #000;
	font-size: 1.25rem;
	font-weight: 500;
}

.button:hover {
	background: #3F3F3F;
	border-color: #fff;
	color: #fff;
}

.button.white {
	background: #eeeeee;
	color: #000;
}

.button.white span {
	color: #000;
}

.button.white:hover {
	background: #3F3F3F;
}

.button.white:hover span {
	color: #fff;
}

.button.transparent {
	background: rgba(0, 0, 0, 0.39);
	border-color: #fff;
	color: #fff;
}

.button.transparent:hover {
	background: rgba(0, 0, 0, 0.6);
}

.button.dark {
	background: rgba(255, 255, 255, 0.1);
	border-color: #fff;
	color: #fff;
}

.button.dark:hover {
	background: rgba(255, 255, 255, 0.2);
}

.button span {
	translate: 0 2px;
}

.header {
	position: fixed;
	z-index: 100;
	top: 0;
	left: 0;
	width: 100%;
	transition: var(--transition);
}

.header.active {
	background: #fff;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
}

.header.white {
	background: #fff;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
}

.header__inner {
	display: flex;
	align-items: center;
	padding: 37px 0;
}

.logo {
	opacity: 0;
	visibility: hidden;
	transition: var(--transition);
}

.header.active .logo {
	opacity: 1;
	visibility: visible;
}

.header.white .logo {
	opacity: 1;
	visibility: visible;
}

.logo__image {
	width: 115px;
	height: auto;
}

.menu {
	position: absolute;
	left: 50%;
	width: max-content;
	translate: -50% 0;
}

.menu__list {
	display: flex;
	gap: 50px;
}

.menu__list>li>a {
	display: block;
	padding: 10px 15px;
	transition: var(--transition);
	line-height: 1;
	font-size: 1.5625rem;
	text-transform: uppercase;
	color: #fff;
}

.menu__list>li>a:hover {
	color: #8E8E8E;
}

.header.active .menu__list>li>a {
	color: #202020;
}

.header.active .menu__list>li>a:hover {
	color: #8E8E8E;
}

.header.white .menu__list>li>a {
	color: #202020;
}

.header.white .menu__list>li>a:hover {
	color: #8E8E8E;
}

.header__button {
	height: 70px;
	margin-left: auto;
	padding: 0 34px;
	border-radius: 100px;
	background: rgba(255, 255, 255, 0.10);
	font-size: 1.375rem;
	color: #BFBFBF;
}

.header__button:hover {
	background: rgba(255, 255, 255, 0.20);
}

.header__button span {
	translate: 0 2px;
}

.header.active .header__button {
	background: rgba(0, 0, 0, 0.10);
	color: #202020;
}

.header.active .header__button:hover {
	background: rgba(0, 0, 0, 0.20);
}

.header.white .header__button {
	background: rgba(0, 0, 0, 0.10);
	color: #202020;
}

.header.white .header__button:hover {
	background: rgba(0, 0, 0, 0.20);
}

.burger {
	position: relative;
	display: none;
	order: 1;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 28px;
}

.burger__item {
	position: absolute;
	width: 40px;
	height: 1px;
	background: rgba(255, 255, 255, 0.8);
	border-radius: 2px;
	transition: 0.1s;
}

.header.active .burger__item {
	background: #000;
}

.header.white .burger__item {
	background: #000;
}

.burger__item:nth-child(1) {
	transform: translateY(-12px);
}

.burger__item:nth-child(3) {
	transform: translateY(12px);
}

.burger.active .burger__item:nth-child(1) {
	transform: translateY(0) rotate(45deg) scaleX(1.1);
}

.burger.active .burger__item:nth-child(3) {
	transform: translateY(0) rotate(-45deg) scaleX(1.1);
}

.burger.active .burger__item:nth-child(2) {
	opacity: 0;
}

.mobile-panel {
	position: fixed;
	z-index: 105;
	top: 0;
	left: 0;
	width: 100%;
	background: #fff;
	opacity: 0;
	visibility: hidden;
	transition: var(--transition);
}

.mobile-panel.active {
	opacity: 1;
	visibility: visible;
}

.mobile-panel__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	gap: 70px;
	padding: 40px 20px;
	height: 100vh;
}



.mobile-menu {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 35px;
}



.mobile-menu>li>a {
	font-size: 1.5625rem;
	font-weight: 400;
	line-height: 1;
	text-transform: uppercase;
}

.mobile-panel.active .mobile__logo {
	opacity: 1;
	visibility: visible;
}

.mobile__logo .logo__image {
	width: 108px;
	height: auto;
}

.mobile-panel .mobile__button {
	height: 60px;
	padding: 0 35px;
	background: rgba(0, 0, 0, 0.10);
	font-size: 1.25rem;
	font-weight: 400;
	color: #202020;
}

.mobile-panel__close-button {
	position: absolute;
	top: 40px;
	right: 50px;
}

.mobile-panel__close-button-icon {
	width: 30px;
	height: 30px;
	fill: #000;
}

.hero {
	position: relative;
	background: var(--c-dark);
}

.hero::before {
	content: "";
	position: absolute;
	z-index: 1;
	inset: 0;
	background: linear-gradient(180deg, rgba(13, 13, 13, 1) 0%, rgba(13, 13, 13, 0) 50%, rgba(13, 13, 13, 1) 100%);
}

.hero__bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero__bg-mobile {
	display: none;
}

.hero__inner {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
	height: 1326px;
	padding-bottom: 75px;
	color: #fff;
}

.hero__logo {
	position: absolute;
	top: 50%;
	left: 50%;
	translate: -50% -50%;
	width: 360px;
	height: auto;
}

.hero__title {
	margin-top: auto;
	font-size: 2.1875rem;
	line-height: 1.43;
	text-align: center;
}



.intro__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 100vh;
	max-height: 1000px;
	text-align: center;
}

.intro__title {
	margin-bottom: 30px;
	font-size: 2.625rem;
	line-height: 1;
	font-style: normal;
	color: #000;
}

.intro__text {
	max-width: 668px;
	margin-bottom: 65px;
	font-size: 1.875rem;
	font-weight: 300;
}

.projects {
	margin-bottom: 190px;
}



.projects__title {
	margin-bottom: 26px;
}

.projects__footer {
	margin-top: 90px;
}




.project-card__name {
	margin-bottom: 35px;
	font-size: 1.375rem;
	color: #7D7D7D;
}

.project-card__image-wrapper {
	position: relative;
	aspect-ratio: 0.659;
}

.project-card__image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.projects__footer {
	display: flex;
	justify-content: space-between;
	gap: 190px;
}

.projects__text {
	font-weight: 300;
}



.video {
	margin-bottom: 205px;
}

.video__inner {
	padding-top: 76px;
	border-top: 1px solid #000;
}

.video-player {
	position: relative;
	width: 100%;
	aspect-ratio: 2.1;
}

.video-player__plug {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.callback {
	overflow: hidden;
	position: relative;
	margin-bottom: 205px;
}

.callback::before {
	content: "";
	position: absolute;
	z-index: 2;
	inset: 0;
	background: linear-gradient(180deg, rgba(13, 13, 13, 0.75) 0%, rgba(13, 13, 13, 0) 50%, rgba(13, 13, 13, 0.75) 100%);
}

.callback__bg {
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.callback__inner {
	position: relative;
	z-index: 3;
	display: grid;
	grid-template-columns: 1fr 538px;
	gap: 60px;
	min-height: 640px;
	padding: 100px 0;
}



.callback__title {
	font-size: 2.1875rem;
	font-style: normal;
	color: #fff;
}







.fields {
	display: flex;
	flex-direction: column;
	gap: 40px;
	margin-bottom: 34px;
}



.input {
	width: 100%;
	height: 60px;
	border-bottom: 1px solid;
	font-size: 1.375rem;
}

.form.white .input {
	color: #fff;
	border-color: #fff;
}

.form.white .input::placeholder {
	color: #fff;
}

.checkbox {
	position: relative;
	display: flex;
	align-items: center;
	gap: 15px;
	cursor: pointer;
}

.checkbox__inp {
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
}

.checkbox__fake {
	position: relative;
	min-width: 20px;
	height: 20px;
	border-radius: 3px;
	border: 1px solid #fff;
}

.checkbox__fake::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 17px;
	height: 17px;
	border-radius: 2px;
	opacity: 0;
	transition: 0.2s;
}

.form.white .checkbox__fake::before {
	background: url(../images/check-white.svg);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
}

.checkbox__inp:checked+.checkbox__fake::before {
	opacity: 1;
}

.checkbox__text {
	font-size: 1.125rem;
	font-weight: 300;
}
.checkbox__text a {
	text-decoration: underline;
}

.form.white .checkbox__text {
	color: #fff;
}

.form__button {
	margin-top: 90px;
}

.about {
	margin-bottom: 210px;
}



.about__grid {
	display: grid;
	grid-template-columns: 1fr 695px;
	column-gap: 30px;
}

.about__col {
	position: relative;
}

.about__col:nth-child(3) {
	margin-top: 90px;
}

.about__col:nth-child(4) {
	margin-top: 90px;
}

.about__col:nth-child(5) {
	margin-top: 60px;
}

.about__col:nth-child(6) {
	margin-top: 60px;
}

.about__button {
	width: max-content;
}



.about__subtitle {
	font-size: 2.1875rem;
}

.about__subtitle b {
	font-style: italic;
}

.about__col:nth-child(6) .about__subtitle {
	margin-top: 130px;
}



.about-image {
	width: 100%;
	height: 532px;
	object-fit: cover;
}

.about-image-2 {
	height: 393px;
}

.services {
	position: relative;
	background: #000;
}

.services__bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: .7;
}

.services__inner {
	overflow: hidden;
	position: relative;
	display: flex;
	justify-content: space-between;
	padding-top: 57px;
	height: 100vh;
}

.services__title {
	color: #fff;
}

.services__slider {
	overflow: hidden;
	align-self: flex-end;
	height: 100%;
}

.services__slider .swiper {
	height: 100%;
}

.service-card {
	position: relative;
	display: flex;
	flex-direction: column;
	max-width: 791px;
	max-height: 403px;
	padding: 28px 33px;
	background: #E5E4E4;
}

.service-card__icon {
	position: absolute;
	top: 32px;
	right: 26px;
	width: 54px;
	height: 54px;
	fill: rgba(0, 0, 0, 0.45);
}

.service-card__title {
	flex-grow: 1;
}

.service-card__text {
	color: #6A6A6A;
}

.advantages {
	background: #262626;
}

.advantages__inner {
	padding: 60px 0 120px;
	color: #8A8A8A;
}

.advantages__title {
	margin-bottom: 245px;
	color: #B0B0B0;
}

.advantages__list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	column-gap: clamp(60px, 3.8vw, 145px);
	row-gap: 78px;
}



.advantage-card__num {
	margin-bottom: 10px;
	font-size: 1.5625rem;
	line-height: 1;
}

.advantage-card__title {
	margin-bottom: 29px;
	color: #fff;
}



.advantages__button {
	margin: 0 auto;
	margin-top: 142px;
}



.how-work__inner {
	padding: 87px 0 253px;
}

.how-work__head {
	display: flex;
	justify-content: space-between;
	margin-bottom: 117px;
}

.how-work__title {
	text-align: right;
}





.steps {
	position: relative;
}

.step {
	display: none;
	grid-template-columns: 295px 1fr;
	gap: 60px;
}

.step.active {
	display: grid;
	animation: stepAnimation 1s;
}

@keyframes stepAnimation {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}



.step__text {
	font-weight: 300;
}

.steps-panel {
	position: relative;
	margin-bottom: 100px;
}

.steps-panel__progress {
	position: relative;
	width: 100%;
	height: 1px;
	background: #bebebe;
	margin-bottom: 23px;
}

.steps-panel__progress-line {
	position: absolute;
	left: 0;
	width: 0;
	height: 1px;
	background: #373737;
	transition: .2s;
}

.steps-panel__progress-point {
	position: absolute;
	top: 50%;
	left: 0;
	translate: 9px -50%;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: #373737;
	transition: .2s;
}

.steps-panel__numbers {
	display: flex;
	justify-content: space-between;
	width: 100%;
}

.steps-panel__number {
	cursor: pointer;
	font-style: italic;
	color: #969696;
}

.steps-panel__number.active {
	font-weight: 700;
	color: #555555;
}

.reviews {
	margin-bottom: 244px;
}



.reviews__slider {
	position: relative;
}

.review-card {
	display: grid;
	grid-template-columns: 768px 1fr;
	gap: 30px;
	padding: 30px;
	background: #D9D9D9;
}

.review-card__image-wrapper {
	position: relative;
	height: 430px;
}

.review-card__image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.review-card__content {
	display: flex;
	flex-direction: column;
}

.review-card__title {
	flex-grow: 1;
}

.review-card__text {
	margin-bottom: 38px;
	font-weight: 300;
}

.review-card__name {
	font-style: italic;
	color: #767676;
}

.reviews__slider-nav {
	display: flex;
	justify-content: center;
	gap: 60px;
}

.slider .swiper-button {
	top: 50%;
	translate: 0 -50%;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 77px;
	height: 77px;
	margin: 0;
	padding: 0;
	border-radius: 50%;
	background: #EBEBEB;
}

.slider .swiper-button-prev {
	left: 38px;
}

.slider .swiper-button-next {
	right: 38px;
}

.slider .swiper-button::before,
.slider .swiper-button::after {
	display: none;
}

.slider .swiper-button__icon {
	width: 28px;
	height: 28px;
}

.slider .swiper-button-disabled {
	opacity: 1;
}

.faq {
	margin-bottom: 276px;
}



.faq__title {
	margin-bottom: 38px;
}

.accordion {
	display: flex;
	flex-direction: column;
}

.accordion__item {
	padding: 46px 0;
	border-bottom: 1px solid #848484;
}

.accordion__item:first-child {
	border-top: 1px solid #848484;
}



.faq-item__inner {
	position: relative;
	display: flex;
	align-items: center;
}

.faq-item__num {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 275px;
	color: #969696;
}

.faq-item__image-wrapper {
	position: relative;
	min-width: 244px;
	height: 157px;
}

.faq-item__image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.faq-item__container {
	max-width: 1020px;
	padding-left: 80px;
}
.faq-item__title {
	cursor: pointer;
}



.faq-item__icon {
	position: absolute;
	top: 50%;
	right: 53px;
	translate: 0 -50%;
	width: 36px;
	height: 36px;
	fill: rgba(0, 0, 0, 0.45);
	transition: var(--transition);
}

.faq-item.active .faq-item__icon {
	rotate: 90deg;
}



.faq-item__content {
	overflow: hidden;
	height: 0;
	transition: var(--transition);
}

.accordion__content-inner {
	padding-top: 30px;
}

.blog {
	margin-bottom: 270px;
}



.blog__title {
	margin-bottom: 33px;
}

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

.blog-card {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 36px 28px;
	min-height: 494px;
	background: #000;
	color: #fff;
}

.blog-card:hover .blog-card__image {
	opacity: .5;
}

.blog-card.hidden {
	display: none;
}

.blog-card__image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: .7;
	transition: var(--transition);
}

.blog-card__content {
	position: relative;
}

.blog-card__date {
	margin-bottom: 20px;
	font-size: 1.25rem;
	line-height: 1;
}



.blog__button {
	max-width: 280px;
	width: 100%;
	margin: 0 auto;
	margin-top: 110px;
}

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

.test::before {
	content: "";
	position: absolute;
	z-index: 2;
	inset: 0;
	background: linear-gradient(180deg, rgba(13, 13, 13, 0.75) 0%, rgba(13, 13, 13, 0) 50%, rgba(13, 13, 13, 0.75) 100%);
}

.test__bg {
	position: absolute;
	z-index: 1;
	top: 50%;
	left: 0;
	translate: 0 -50%;
	width: 135%;
	height: auto;
	max-width: initial;
}

.test__inner {
	position: relative;
	z-index: 3;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 827px;
	color: #fff;
}

.test__title {
	margin-bottom: 17px;
}

.test__subtitle {
	margin-bottom: 34px;
	text-align: center;
}

.test__button.transparent {
	background: rgba(255, 255, 255, 0.25);
}

.footer {
	background: #131313;
}

.footer__inner {
	padding: 55px 0;
	color: #fff;
}

.footer__top {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 30px;
	margin-bottom: 220px;
}



.footer__logo-image {
	width: 440px;
	height: auto;
}



.spcials {
	display: flex;
	gap: 22px;
}

.social_note {
	max-width: 430px;
	font-size: 14px;
	margin: 15px 0 0px;
}

.social-link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 92px;
	height: 92px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.1);
	transition: var(--transition);
}
.social-link.small {
	width: 40px;
	height: 40px;
}

.social-link:hover {
	background: rgba(255, 255, 255, 0.15);
}

.social-link__icon {
	width: 54%;
	height: 54%;
	fill: #fff;
	opacity: .7;
}

.footer__middle {
	display: grid;
	grid-template-columns: repeat(3, auto);
	justify-content: space-between;
	gap: 30px;
}







.short-form {
	max-width: 424px;
}

.short-form__title {
	margin-bottom: 8px;
	font-size: 1.875rem;
	color: #C2C2C2;
}

.field {
	position: relative;
}

.short-form__button {
	position: absolute;
}

.short-form.white .input {
	height: 50px;
	border-color: #989898;
	font-size: 1.25rem;
	font-weight: 300;
}

.short-form.white .input::placeholder {
	color: #6F6F6F;
}

.short-form__button {
	position: absolute;
	top: 0;
	right: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
}

.short-form__button-icon {
	width: 23px;
	height: 23px;
	fill: #989898;
	transition: var(--transition);
}

.short-form__button:hover .short-form__button-icon {
	fill: #fff;
}

.short-form__warning {
	margin-top: 13px;
	font-size: 1.125rem;
	line-height: 1.2;
	color: #6F6F6F;
}

.footer__middle {
	margin-bottom: 220px;
}

.footer__middle-col-title {
	margin-bottom: 25px;
	font-size: 1.875rem;
	color: #5D5D5D;
}

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

.footer__contacts-link {
	color: #fff;
}

.footer__contacts-link:hover {
	text-decoration: underline;
}

.footer__address {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.footer__bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 30px;
}

.footer__bottom-text {
	font-size: 1.25rem;
	color: #9C9C9C;
}

.footer a:hover {
	text-decoration: underline;
}

.page {
	position: relative;
	padding-top: 151px;
}

.bredcrumbs {
	margin-bottom: 122px;
}

.bredcrumbs__list>span {
	display: flex;
	align-items: center;
	gap: 10px;
	padding-top: 60px;
	font-size: 1.5625rem;
	font-family: "Manrope", sans-serif;
	line-height: 1;
	color: #6E6E6E;
}

.bredcrumbs__list>span span {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	display: inline-block;
}

.bredcrumbs__list>span span:last-child {
	/*white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	max-width: 200px;*/
	display: inline-block;
}

.bredcrumbs__item {
	display: flex;
	gap: 10px;
}

.bredcrumbs__item::after {
	content: ">";
}

.bredcrumbs__item:last-child::after {
	display: none;
}

.bredcrumbs__link {
	transition: var(--transition);
}

.bredcrumbs__link:hover {
	color: #000;
}

.pagination {
	margin-top: 80px;
}
.pagination .nav-links {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 16px;
}
.pagination .nav-links .page-numbers {
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 60px;
	min-width: 60px;
	border-radius: 30px;
	color: #202020;
	background: rgba(0, 0, 0, 0.10);
	transition: 0.3s;
}
.pagination .nav-links .page-numbers.prev,
.pagination .nav-links .page-numbers.next {
	padding: 0 30px;
}
.pagination .nav-links .page-numbers.current,
.pagination .nav-links .page-numbers:hover {
	background: rgba(0, 0, 0, 0.20);
}

.cases {
	margin-bottom: 230px;
}

.cases__slider {
	overflow: hidden;
}

.dynamic-card {
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.dynamic-card__head {
	line-height: 1.35;
}

.dynamic-card__title {
	font-size: 28px;
	font-weight: 400;
	color: #000;
}

.dynamic-card__subtitle {
	font-size: 1.375rem;
	font-weight: 300;
	color: #7D7D7D;
}

.dynamic-card__body {
	overflow: hidden;
	position: relative;
	height: 550px;
}

.dynamic-card__image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 75%;
	object-fit: cover;
	filter: grayscale(1);
	transition: .5s;
}

.swiper-slide-active .dynamic-card__image {
	height: 100%;
}

.swiper-slide-active .dynamic-card__image {
	filter: grayscale(0);
}

.project-intro {
	margin-bottom: 214px;
}





.project-intro__layout {
	display: grid;
	grid-template-columns: 1fr 767px;
	column-gap: 10vw;
}



.project-intro__col:nth-child(1) {
	grid-row: 1;
}

.project-intro__col:nth-child(2) {
	grid-row: 2;
	margin-top: 140px;
}

.project-intro__col:nth-child(3) {
	grid-row: 3;
	margin-top: 170px;
}

.project-intro__col:nth-child(4) {
	grid-column: 2;
	grid-row: 4 span;
}

.project-intro__content {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 140px;
}



.project-intro__title {
	margin-bottom: 10px;
	font-size: 2.8125rem;
	font-weight: 400;
	font-style: normal;
	color: #000;
}







.project-intro__image-wrapper {
	overflow: hidden;
	position: relative;
	height: 100%;
}

.project-intro__image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}



.project-intro__info {
	font-size: 1.5625rem;
	line-height: 1.8;
	text-transform: uppercase;
	color: #5D5D5D;
}

.project-slider {
	margin-bottom: 130px;
}

.project-slider__inner {
	position: relative;
}

.project-slider__slide {
	overflow: hidden;
	position: relative;
	height: 100vh;
	max-height: 1020px;
}

.project-slider__image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.slider-nav {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	gap: 30px;
	margin-top: 30px;
}

.swiper-pagination {
	display: none;
}

.slider .swiper-pagination {
	position: relative;
	translate: 0 0;
	inset: auto;
	width: max-content;
	margin: 0;
	padding: 0;
}

.swiper-pagination-bullet-active {
	background: #000;
}

.new-solutions {
	margin-bottom: 130px;
}



.new-solutions__row {
	display: grid;
	grid-template-columns: 490px 1fr;
	gap: 30px;
}









.galery {
	margin-bottom: 147px;
}



.galery__grid {
	display: grid;
	grid-auto-flow: column;
	grid-template-rows: 415px 415px 415px;
	gap: 14px;
	min-width: 100vw;
}

.galery__item {
	overflow: hidden;
	position: relative;
	width: 33.333vw;
}

.galery__item-0 {
	grid-row: 1 span;
}

.galery__item-1 {
	grid-row: 2 span;
}

.galery__item-2 {
	grid-row: 2 span;
}

.galery__item-3 {
	grid-row: 1 span;
}

.galery__item-4 {
	grid-row: 1 span;
}

.galery__item-5 {
	grid-row: 2 span;
}

.galery__item-6 {
	grid-row: 2 span;
}

.galery__item-9 {
	grid-row: 2 span;
}

.galery__item-10 {
	grid-row: 2 span;
}

.galery__slide:nth-child(2n) .galery__item {
	grid-column: auto;
	grid-row: auto;
}

.galery__slide:nth-child(2n) .galery__item-0 {
	grid-row: 2 span;
}

.galery__slide:nth-child(2n) .galery__item-1 {
	grid-row: 1 span;
}

.galery__slide:nth-child(2n) .galery__item-2 {
	grid-row: 2 span;
}

.galery__slide:nth-child(2n) .galery__item-3 {
	grid-row: 2 span;
	grid-column: 2;
}

.galery__slide:nth-child(2n) .galery__item-4 {
	grid-column: auto;
	grid-row: auto;
}

.galery__slide:nth-child(2n) .galery__item-5 {
	grid-column: auto;
	grid-row: auto;
}

.galery__image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}



.galery__slider-track {
	display: flex;
	gap: 14px;
	width: max-content;
	animation: marquee 20s linear infinite;
}

.galery__slider .swiper-slide {
	width: 100vw;
}

@keyframes marquee {
	0% {
		transform: translateX(0);
	}

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

.slider-nav-2 {
	display: none;
	justify-content: flex-end;
	gap: 10px;
	padding: 0 20px;
	margin-bottom: 16px;
}

.slider-nav-2 .swiper-button {
	background: transparent;
	border-radius: 0;
}





.slider-nav-2 .swiper-button img {
	width: 16px;
	height: 16px;
	opacity: .8;
}

.decor {
	margin-bottom: 132px;
}

.decor__inner {
	display: grid;
	grid-template-columns: 25% 1fr;
}



.decor__text {
	column-count: 2;
	gap: 5%;
}

.callback-v-2 {
	margin-bottom: 160px;
}
.callback.callback-mb0 {
	margin-bottom: 0;
}

.callback-v-2 .callback__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0;
}

.callback-v-2 .callback__title {
	margin-bottom: 60px;
	text-align: center;
}

.callback-v-2 .callback__form {
	max-width: 538px;
	width: 100%;
}

.callback-v-2 .form__button {
	margin: 0 auto;
	margin-top: 90px;
}

.blog-button-next {
	position: absolute;
	top: 190px;
	right: 50px;
	gap: 6px;
	display: none;
	align-items: center;
	font-size: 1.5625rem;
	line-height: 1;
	color: #131313;
}

.blog-button-next__icon {
	width: 16px;
	height: 16px;
	fill: #000;
}

.blog-details {
	margin-bottom: 100px;
}

.blog-details__inner {
	display: flex;
	flex-direction: column;
	gap: 100px;
}

.blog-details__date {
	margin-bottom: 25px;
	font-size: 20px;
	color: #979797;
}

.blog-details__title {
	margin-bottom: 68px;
	font-size: 2.8125rem;
}

.dual-paragraphs {
	column-count: 2;
	gap: 72px;
}





.blog-details-present {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	background: #262626;
}

.blog-details-present__image-wrapper {
	overflow: hidden;
	position: relative;
	aspect-ratio: 0.81;
}

.blog-details-present__image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.blog-details-present__image-wrapper:nth-child(2) .blog-details-present__image {
	top: 50%;
	left: 50%;
	translate: -50% -50%;
	width: 72.4%;
	height: 65.9%;
}

.blog-details__single-photo {
	position: relative;
	aspect-ratio: 1.86;
}

.blog-details__single-photo-image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.page-blog .blog {
	margin-bottom: 160px;
}

.blog-photo-slider {
	margin-bottom: 180px;
}

.blog-photo-slider__slide {
	overflow: hidden;
	position: relative;
	aspect-ratio: 1.5;
}

.blog-photo-slider__image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.dark-wrapper {
	background: #262626;
	color: #fff;
}

.about-intro {
	padding-bottom: 250px;
}

.about-intro__inner {
	color: #fff;
}

.about-intro__title {
	margin-bottom: 35px;
	font-size: 2.1875rem;
}

.about-intro__text {
	margin-bottom: 200px;
	color: #8A8A8A;
}

.employees-list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
	justify-content: center;
	max-width: 1190px;
	margin: 0 auto;
	margin-bottom: 180px;
}

.employee-card {
	display: flex;
	flex-direction: column;
	gap: 34px;
	align-items: center;
}

.employee-card__photo {
	overflow: hidden;
	position: relative;
	width: 100%;
	aspect-ratio: 1;
	border-radius: 50%;
}

.employee-card__image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}



.employee-card__name {
	font-weight: 400;
}

.employee-card__position {
	font-weight: 300;
	color: #A2A2A2;
}

.about-intro__bottom-text {
	margin-bottom: 60px;
	text-align: center;
	color: #8A8A8A;
}

.about-intro__button {
	margin: 0 auto;
}

.employees-slider {
	padding-bottom: 232px;
	background: #262626;
}

.employees-slider .dynamic-card__title {
	color: #fff;
}



.statistics {
	padding: 120px 0;
	background: #fff;
}

.statistics__list {
	display: grid;
	grid-template-columns: repeat(4, auto);
	justify-content: space-between;
	gap: 30px;
}



.statistic-item__num {
	margin-bottom: 10px;
	font-size: 4.6875rem;
	font-weight: 400;
	line-height: 1;
}



.page-about .video {
	margin-bottom: 145px;
	background: #fff;
}

.page-about .video__inner {
	padding: 0;
	border: 0;
}

.how-to-order {
	margin-bottom: 138px;
}

.how-to-order__inner {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	column-gap: 90px;
	row-gap: 78px;
}



.how-to-order__col:nth-child(1) {
	flex: 0 0 456px;
}

.how-to-order__title {
	font-size: 2.1875rem;
}

.step-list {
	display: grid;
	grid-template-columns: repeat(2, 505px);
	gap: 155px;
	row-gap: 78px;
}



.step-card__num {
	margin-bottom: 12px;
	font-size: 1.5625rem;
	line-height: 1;
}

.step-card__title {
	margin-bottom: 20px;
	font-size: 2.1875rem;
}



.modal {
	position: fixed;
	z-index: 110;
	inset: 0;
	display: none;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background: rgba(0, 0, 0, 0.2392156863);
	cursor: pointer;
}

.modal.show {
	display: flex;
	padding: 20px;
}

.modal__container {
	cursor: initial;
	user-select: none;
	position: relative;
	translate: 0 10px;
	display: flex;
	flex-direction: column;
	align-items: center;
	max-width: 552px;
	width: 100%;
	padding: 100px 40px 80px;
	background-color: #fff;
	background-image: url(../images/modal-bg.jpg);
	background-size: cover;
	background-position: center center;
	border-radius: 30px;
	opacity: 0;
	transition: 0.2s;
	color: #fff;
}

.modal__container.fade {
	translate: 0 0;
	opacity: 1;
}

.modal__title {
	margin-bottom: 50px;
	font-size: 1.25rem;
	font-weight: 400;
	text-align: center;
}

.modal__form {
	max-width: 538px;
	width: 100%;
}

.modal__form .fields {
	gap: 60px;
}

.modal__form .input {
	width: 100%;
	height: 50px;
	font-size: 1.25rem;
}

.modal__form .checkbox {
	margin-top: 60px;
}

.modal__form-button {
	max-width: 245px;
	min-width: 0;
	width: 100%;
	height: 50px;
	margin: 0 auto;
	margin-top: 66px;
	font-weight: 400;
}

.modal-close-button {
	cursor: pointer;
	position: absolute;
	top: 20px;
	right: 20px;
}

.modal-close-button:hover .modal-close-button__icon {
	opacity: 1;
}

.modal-close-button__icon {
	width: 24px;
	height: 24px;
	transition: var(--transition);
	fill: #fff;
	opacity: 0.6;
}

.completed-modal {}

.completed-modal .modal__container {
	padding: 15px 30px;
	background: #acacac;
	background-image: none;
	border-radius: 15px;
}

.completed-modal .modal__title {
	margin-bottom: 0;
	font-size: 1.5625rem;
	font-weight: 300;
	line-height: 1.3;
	color: #000;
}

@media (max-width: 1800px) {
	.how-to-order__col:nth-child(1) {
		flex: 0 0 1000px;
	}

	.step-list {
		grid-template-columns: repeat(2, 1fr);
		column-gap: 60px;
	}
}

@media (max-width: 1680px) {
	:root {
		scroll-padding-top: 127px;
	}

	body {
		font-size: 1.5625rem;
	}

	.header__inner {
		justify-content: space-between;
		gap: 20px;
		padding: 25px 0;
	}

	.logo__image {
		width: 115px;
	}

	.menu__list {
		gap: 15px;
	}

	.menu__list>li>a {
		font-size: 1rem;
	}

	.header__button {
		height: 60px;
		margin: 0;
		font-size: 1.125rem;
	}

	.hero__logo {
		width: 200px;
	}

	.button {
		font-size: 1.25rem;
	}

	.project-card__name {
		font-size: 1.25rem;
	}

	.projects__footer {
		margin-top: 60px;
	}

	.video,
	.mb200 {
		margin-bottom: 182px;
	}

	.video__inner {
		padding-top: 60px;
	}

	h3 {
		font-size: 1.5rem;
	}

	.advantages__title {
		margin-bottom: 120px;
	}

	.advantages__button {
		margin-top: 90px;
	}

	.reviews {
		margin-bottom: 140px;
	}

	.review-card__image-wrapper {
		height: 400px;
	}

	.slider .swiper-button-prev {
		left: 20px;
	}

	.slider .swiper-button-next {
		right: 20px;
	}

	.faq {
		margin-bottom: 140px;
	}

	.accordion__item {
		padding: 30px 0;
	}

	.faq-item__num {
		min-width: 150px;
	}

	.faq-item__container {
		padding-left: 40px;
	}

	.faq-item__title {
		font-size: 1.5625rem;
	}

	.footer__top {
		margin-bottom: 100px;
	}

	.footer__middle {
		margin-bottom: 170px;
	}

	.footer__bottom-text {
		font-size: 1.125rem;
	}

	.footer__logo-image {
		width: 300px;
	}

	.spcials {
		gap: 15px;
	}
	.social_note {
		max-width: 280px;
		font-size: 13px;
	}

	.social-link {
		width: 60px;
		height: 60px;
	}

	.social-link__icon {
		width: 30px;
		height: 30px;
	}

	.step {
		gap: 30px;
	}

	.service-card__icon {
		width: 35px;
		height: 35px;
	}

	.service-card {
		max-height: 300px;
	}

	.menu {
		position: relative;
		inset: auto;
		translate: 0 0;
	}

	.advantages__list {
		gap: 30px;
		row-gap: 60px;
	}

	.short-form {
		max-width: 324px;
	}

	.callback__title {
		font-size: 1.875rem;
	}

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

	.faq-item__container {
		max-width: 100%;
	}

	.faq-item__icon {
		display: none;
	}

	.page {
		padding-top: 127px;
	}

	.project-intro__layout {
		grid-template-columns: 1fr 600px;
	}

	.about-intro {
		padding-bottom: 200px;
	}

	.about-intro__bottom-text {
		font-size: 1.5625rem;
	}
}

@media (max-width: 1440px) {
	.bredcrumbs {
		margin-bottom: 186px;
	}

	.project-intro__layout {
		grid-template-columns: 1fr 422px;
		column-gap: 60px;
	}

	.project-intro__col:nth-child(2) {
		grid-row: 4;
		grid-column: 2 span;
		margin-top: 100px;
	}

	.project-intro__col:nth-child(4) {
		grid-row: 3 span;
	}

	.project-intro__image-wrapper {
		min-height: 620px;
	}

	.project-intro__title {
		font-size: 2.1875rem;
	}

	.project-intro__subtitle.title-italic {
		font-size: 1.25rem;
	}

	.project-intro__info {
		font-size: 1.25rem;
	}

	.new-solutions__row {
		grid-template-columns: auto 1fr;
		gap: 60px;
	}

	.galery {
		margin-bottom: 125px;
	}

	.decor {
		margin-bottom: 123px;
	}

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

	.title-italic {
		margin-bottom: 37px;
	}

	.decor__text {
		gap: 45px;
	}

	.bredcrumbs {
		margin-bottom: 120px;
	}

	.blog-details__inner {
		gap: 100px;
	}

	.modal__form .fields {
		gap: 30px;
	}

	.modal__form .checkbox {
		margin-top: 40px;
	}

	.modal__form-button {
		margin-top: 40px;
	}
}

@media (max-width: 1199px) {
	body {
		font-size: 1.5625rem;
	}

	.title-italic {
		font-size: 1.875rem;
	}

	.logo__image {
		width: 115px;
	}

	.header__button {
		display: none;
	}

	.mobile-panel .mobile__button {
		display: flex;
	}

	.burger {
		display: flex;
	}

	.header__menu {
		display: none;
	}


	.hero__inner {
		height: 1450px;
	}

	.hero__logo {
		width: 376px;
	}

	.hero__title {
		font-size: 2.1875rem;
		line-height: 50px;
	}

	.intro__inner {
		height: 753px;
	}

	.intro__title {
		font-size: 1.875rem;
	}

	.intro__text {
		font-size: 1.5625rem;
	}

	.footer__middle {
		grid-template-columns: minmax(0, 424px) 371px;
		gap: 130px;
		row-gap: 120px;
	}

	.short-form {
		max-width: 100%;
	}

	.footer__middle-col:last-child {
		grid-column: 2;
	}

	.project-card__image-wrapper {
		aspect-ratio: 0;
		height: 362px;
	}

	.projects__title {
		margin-bottom: 24px;
	}

	.project-card__name {
		margin-bottom: 30px;
	}

	.projects__footer {
		margin-top: 50px;
	}

	.projects__text {
		max-width: 449px;
	}

	.projects {
		margin-bottom: 128px;
	}

	.video__inner {
		padding-top: 54px;
	}

	.callback__inner {
		display: flex;
		flex-direction: column;
		gap: 50px;
		align-items: center;
	}

	.callback__title {
		text-align: center;
	}

	.callback__form {
		max-width: 474px;
	}

	.input {
		height: 45px;
		font-size: 1.375rem;
	}

	.fields {
		margin-bottom: 24px;
		gap: 40px;
	}

	.form__button {
		margin-top: 45px;
	}

	.callback__inner {
		padding: 60px 0 60px;
	}

	.callback::before {
		background: linear-gradient(180deg, rgba(13, 13, 13, 0.75) 0%, rgba(13, 13, 13, 0.3) 50%, rgba(13, 13, 13, 0.75) 100%);
	}

	.callback__bg {
		max-width: initial;
		width: auto;
		height: auto;
		translate: -10% 0;
	}

	.callback {
		margin-bottom: 110px;
	}



	.about__col:nth-child(4) {
		margin-top: 45px;
		grid-row: 2;
		grid-column: 2;
	}

	.about__col:nth-child(3) {
		grid-column: 2 span;
	}

	.about-image-2 {
		display: none;
	}

	.about__col:nth-child(5) {
		grid-column: 2 span;
		margin-top: 50px;
	}

	.about__col:nth-child(6) {
		margin-top: 50px;
		grid-column: 2;
	}

	.about__col:nth-child(6) .about__subtitle {
		margin-top: 0;
	}

	.about {
		margin-bottom: 160px;
	}

	.about__subtitle {
		font-size: 1.875rem;
	}

	.advantages__inner {
		padding: 55px 0 75px;
	}

	.advantages__title {
		margin-bottom: 78px;
	}

	.advantage-card__num {
		font-size: 1.25rem;
	}

	.advantage-card__title {
		font-size: 1.875rem;
	}

	.advantages__list {
		grid-template-columns: repeat(2, 1fr);
		column-gap: 30px;
		row-gap: 120px;
	}

	.advantages__button {
		margin-top: 140px;
	}

	.services__inner {
		display: flex;
		flex-direction: column;
		padding-top: 55px;
		height: 1346px;
	}

	.services__title {
		margin-bottom: 193px;
	}

	.services__slider {
		max-width: 730px;
		width: 100%;
		margin: 0 auto;
	}

	.service-card {
		max-width: 100%;
		max-height: 372px;
	}

	.how-work__inner {
		padding: 64px 0 125px;
	}

	.step.active {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		gap: 20px;
	}

	.steps-panel {
		margin-bottom: 150px;
	}

	.step__title {
		font-size: 1.875rem;
	}

	.reviews__inner {
		position: relative;
		display: flex;
		flex-direction: column;
		align-items: center;
		padding-bottom: 58px;
		padding-left: 30px;
		padding-right: 30px;
		background: #D9D9D9;
	}

	.reviews__slider {
		position: initial;
		max-width: 702px;
		width: 100%;
	}

	.review-card {
		position: relative;
		display: flex;
		flex-direction: column;
		align-items: center;
		padding: 0;
		padding-top: 90px;
	}

	.review-card__image-wrapper {
		max-width: 100%;
		width: 100%;
		height: 350px;
	}

	.review-card__content {
		max-width: 702px;
		width: 100%;
	}

	.review-card__title {
		position: absolute;
		top: 35px;
	}

	.faq-item__num {
		min-width: 100px;
	}

	.faq-item__image-wrapper {
		min-width: 235px;
	}

	.faq-item__content-inner {
		font-size: 1.25rem;
	}

	.blog__button {
		margin-top: 80px;
	}

	.blog {
		margin-bottom: 128px;
	}

	.page {
		padding-top: 127px;
	}

	.bredcrumbs {
		margin-bottom: 80px;
	}

	.dynamic-card {
		gap: 15px;
	}

	.dynamic-card__body {
		height: 250px;
	}

	.dynamic-card__title {
		font-size: 1.125rem;
	}

	.dynamic-card__subtitle {
		font-size: 1.125rem;
	}

	.cases {
		margin-bottom: 148px;
	}

	.project-intro {
		margin-bottom: 110px;
	}

	.project-intro__title {
		font-size: 1.5625rem;
	}

	.project-intro__subtitle.title-italic {
		font-size: 1.125rem;
	}

	.project-intro__layout {
		grid-template-columns: 1fr 375px;
	}

	.project-intro__image-wrapper {
		min-height: 467px;
	}

	.project-slider__slide {
		height: auto;
		aspect-ratio: 1.6;
	}

	.new-solutions__row {
		grid-template-columns: minmax(0, 1fr);
		gap: 0;
	}

	.title-italic {
		margin-bottom: 30px;
	}

	.decor__text {
		font-size: 1.375rem;
	}

	.callback-v-2 {
		margin-bottom: 120px;
	}

	.callback-v-2 .callback__form {
		max-width: 474px;
	}

	.callback-v-2 .callback__bg {
		height: 100%;
		translate: -10% 0;
		object-fit: contain;
	}

	.bredcrumbs {
		margin-bottom: 80px;
	}

	.bredcrumbs__list>span {
		font-size: 1.25rem;
	}

	.blog-details {
		margin-bottom: 80px;
	}

	.blog-details__inner {
		gap: 80px;
	}

	.blog-details-button-next {
		top: 143px;
		font-size: 20px;
	}

	.blog-details__date {
		font-size: 1.125rem;
	}

	.blog-details__title {
		margin-bottom: 50px;
		font-size: 2.1875rem;
	}

	.dual-paragraphs {
		column-count: 1;
	}

	.blog-details-present__image-wrapper {
		aspect-ratio: 0.78;
	}

	.blog-photo-slider {
		margin-bottom: 140px;
	}

	.about-intro {
		padding-bottom: 150px;
	}

	.about-intro__title {
		margin-bottom: 32px;
	}

	.about-intro__text {
		column-count: 2;
		gap: 50px;
		margin-bottom: 160px;
	}

	.employees-list {
		gap: 25px;
		max-width: 818px;
	}

	.employee-card__position {
		font-size: 1.25rem;
	}

	.employees-slider {
		padding-bottom: 138px;
	}

	.employees-slider .dynamic-card__body {
		height: 358px;
	}

	.statistics {
		padding: 100px 0;
	}

	.statistic-item__num {
		font-size: 3.4375rem;
	}

	.statistic-item__text {
		font-size: 1.25rem;
	}

	.page-about .video {
		margin-bottom: 100px;
	}



	.how-to-order__col:nth-child(1) {
		flex: 0 0 100%;
	}

	.step-card__title {
		font-size: 1.875rem;
	}

	.step-card__num {
		margin-bottom: 10px;
		font-size: 1.25rem;
	}

	.footer__bottom {
		display: grid;
		grid-template-columns: repeat(2, auto);
	}
}

@media (max-width: 1024px) {
	.pb80 {
		padding-bottom: 60px;
	}
	.galery {
		margin-bottom: 126px;
	}

	.galery__grid {
		grid-template-rows: 330px 330px 330px 330px 330px;
	}

	.galery__item {
		width: 50vw;
	}

	.galery__item-0 {
		grid-column: auto;
		grid-row: 1 span;
	}

	.galery__item-1 {
		grid-column: auto;
		grid-row: 2 span;
	}

	.galery__item-2 {
		grid-column: auto;
		grid-row: 1 span;
	}

	.galery__item-3 {
		grid-column: 2;
		grid-row: 2 span;
	}

	.galery__item-4 {
		grid-column: auto;
		grid-row: 1 span;
	}

	.galery__item-5 {
		grid-row: 1 span;
	}

	.galery__item-6 {
		grid-column: auto;
		grid-row: 2 span;
	}



	.galery__slide:nth-child(2n) .galery__item-0 {
		grid-row: 1 span;
		grid-column: 1;
	}

	.galery__slide:nth-child(2n) .galery__item-1 {
		grid-row: 2 span;
		grid-column: 2;
	}

	.galery__slide:nth-child(2n) .galery__item-2 {
		grid-column: 1;
		grid-row: 2 span;
	}

	.galery__slide:nth-child(2n) .galery__item-3 {
		grid-column: 2;
		grid-row: 1 span;
	}

	.galery__slide:nth-child(2n) .galery__item-4 {
		grid-column: 1;
		grid-row: 1 span;
	}

	.galery__slide:nth-child(2n) .galery__item-5 {
		grid-column: 2;
	}
}

@media (max-width: 991px) {
	:root {
		scroll-padding-top: 108px;
	}
	#wpadminbar {
		display: none;
	}
	html[lang] {
		margin-top: 0 !important;
	}
	body {
		font-size: 1.125rem;
	}

	.pagination {
		margin-top: 60px;
	}
	.pagination .nav-links .page-numbers {
		min-height: 50px;
		min-width: 50px;
	}
	.header__inner {
		padding: 15px 0;
	}

	.hero__inner {
		height: 1056px;
	}

	.hero__logo {
		width: 160px;
	}

	.hero__title {
		font-size: 1.875rem;
	}

	.header__button {
		height: 55px;
		font-size: 1rem;
	}

	.intro__inner {
		height: 100vh;
	}

	.button {
		height: 62px;
		font-size: 1.125rem;
	}

	.project-card__name {
		margin-bottom: 16px;
		font-size: 1.125rem;
	}

	.projects__footer {
		display: flex;
		flex-direction: column;
		gap: 50px;
	}

	.projects__button {
		order: -1;
		width: max-content;
	}

	.projects__text {
		max-width: 100%;
	}

	.projects__footer {
		margin-top: 30px;
	}

	.projects {
		margin-bottom: 120px;
	}

	.video,
	.mb200 {
		margin-bottom: 120px;
	}

	.video__inner {
		padding-top: 40px;
	}

	.callback::before {
		background: #000;
		opacity: .6;
	}

	.callback__title {
		font-size: 1.5625rem;
	}

	.input {
		font-size: 1.25rem;
	}

	.about__grid {
		display: flex;
		flex-direction: column;
	}

	.about__title {
		margin-bottom: 30px;
	}

	.about__col:nth-child(4) {
		margin-top: 35px;
	}

	.about {
		margin-bottom: 120px;
	}

	.advantages__list {
		row-gap: 60px;
	}

	.advantage-card__title {
		font-size: 1.5rem;
	}

	.advantages__title {
		margin-bottom: 60px;
	}

	.advantages__button {
		margin-top: 90px;
	}

	.services__title {
		margin-bottom: 60px;
	}

	.service-card {
		max-height: 340px;
	}

	.service-card__title {
		margin-bottom: 15px;
	}

	.service-card__icon {
		width: 25px;
		height: 25px;
	}

	.services__inner {
		height: 540px;
	}

	.how-work__head {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		margin-bottom: 60px;
	}

	.how-work__title {
		margin-bottom: 15px;
	}

	.how-work__inner {
		padding: 90px 0;
	}

	.steps-panel {
		margin-bottom: 60px;
	}

	.review-card__image-wrapper {
		height: auto;
		aspect-ratio: 1.4;
	}

	.review-card__text {
		margin-bottom: 30px;
	}

	.slider .swiper-button {
		position: relative;
		translate: 0;
		inset: auto;
	}

	.reviews__slider-nav {
		gap: 30px;
	}



	.slider .swiper-button {
		width: 55px;
		height: 55px;
	}

	.slider .swiper-button__icon {
		width: 20px;
		height: 20px;
	}

	.reviews {
		margin-bottom: 148px;
	}

	.faq-item__image-wrapper {
		min-width: 176px;
		height: 115px;
	}

	.accordion__content-inner {
		padding-top: 11px;
	}

	.faq-item__content-inner {
		font-size: 1.375rem;
	}

	.faq-item__container {
		padding-left: 46px;
	}

	.faq {
		margin-bottom: 126px;
	}

	.title-italic {
		font-size: 1.25rem;
	}

	.blog__cards {
		display: flex;
		flex-direction: column;
		gap: 23px;
	}

	.blog-card {
		min-height: 0;
		aspect-ratio: 1.93;
		padding: 24px;
	}

	.blog__button {
		width: 255px;
		margin-top: 70px;
	}

	.blog {
		margin-bottom: 132px;
	}

	.blog-button-next span {
		display: none;
	}

	.test__inner {
		min-height: 0;
		aspect-ratio: 0.91;
	}

	.test__bg {}

	.footer__middle {
		row-gap: 188px;
	}

	.footer__middle-col:nth-child(1) {
		grid-column: 2 span;
	}

	.footer__form {
		display: grid;
		grid-template-columns: 1fr minmax(394px, 1fr);
		gap: 30px;
		row-gap: 20px;
	}

	.short-form__warning {
		grid-column: 2;
		margin-top: 0;
	}

	.footer__middle-col:nth-child(3) .footer__middle-col-title {
		text-align: right;
	}

	.short-form__title {
		font-size: 1.5625rem;
	}

	.footer__middle-col-title {
		font-size: 1.5625rem;
	}

	.footer__address-text {
		font-size: 1.375rem;
	}

	.footer__contacts {
		font-size: 1.375rem;
	}

	.footer__middle {
		grid-template-columns: repeat(2, 1fr);
		column-gap: 80px;
	}

	.footer__logo-image {
		width: 220px;
	}

	.advantages__list {
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	.advantage-card {
		display: flex;
		flex-direction: column;
		align-items: center;
		max-width: 513px;
		text-align: center;
	}

	.advantage-card__title {
		margin-bottom: 25px;
	}

	.page {
		padding-top: 108px;
	}

	.bredcrumbs__list>span {
		gap: 5px;
		padding-top: 55px;
	}

	.bredcrumbs__item {
		gap: 5px;
	}

	.dynamic-card__title {
		font-size: 1rem;
	}

	.swiper-pagination {
		display: block;
	}

	.new-solutions__text {
		font-size: 1.375rem;
	}

	.galery {
		margin-bottom: 85px;
	}

	.callback-v-2 {
		margin-bottom: 100px;
	}

	.callback-v-2 .callback__inner {
		min-height: 0;
	}

	.callback-v-2 .callback__bg {
		translate: -25% 0;
	}

	.callback-v-2 .callback__title {
		margin-bottom: 30px;
	}

	.callback-v-2 .form__button {
		margin-top: 50px;
	}

	.cases {
		margin-bottom: 80px;
	}

	.project-intro__col:nth-child(3) {
		margin-top: 50px;
	}

	.blog-details-button-next {
		top: 145px;
		font-size: 1rem;
	}

	.blog-details__date {
		margin-bottom: 15px;
		font-size: 1rem;
	}

	.blog-details__title {
		margin-bottom: 45px;
		font-size: 1.5625rem;
	}

	.blog-details__text {
		font-size: 1.375rem;
	}

	.blog-details-present__image-wrapper:nth-child(2) .blog-details-present__image {
		width: 73.4%;
		height: 78.9%;
	}

	.blog-photo-slider {
		margin-bottom: 100px;
	}

	.about-intro__title {
		font-size: 1.5625rem;
	}

	.about-intro__text {
		gap: 40px;
		font-size: 1.375rem;
	}

	.employees-list {
		margin-bottom: 100px;
	}

	.employee-card__content {
		line-height: 1.5;
	}

	.employee-card__name {
		font-size: 1.25rem;
	}

	.employee-card__position {
		font-size: 1rem;
	}

	.about-intro__bottom-text {
		margin-bottom: 40px;
		font-size: 1.375rem;
	}

	.employees-slider {
		padding-bottom: 90px;
	}

	.employees-slider .dynamic-card__body {
		height: 265px;
	}

	.statistics {
		padding: 60px 0;
	}

	.statistic-item__num {
		font-size: 2.5rem;
	}

	.page-about .video {
		margin-bottom: 90px;
	}

	.how-to-order {
		margin-bottom: 100px;
	}

	.how-to-order__inner {
		gap: 0;
	}

	.how-to-order__title {
		margin-bottom: 60px;
		font-size: 1.5625rem;
	}

	.step-list {
		column-gap: 45px;
		row-gap: 75px;
	}

	.step-card__title {
		margin-bottom: 15px;
		font-size: 1.375rem;
	}
}

@media (max-width: 767px) {
	:root {
		scroll-padding-top: 75px;
	}
	.pb80 {
		padding-bottom: 40px;
	}

	.mobile-menu>li>a {
		font-size: 1.25rem;
	}

	.mobile-panel .mobile__button {
		display: flex;
		font-size: 1rem;
	}

	body {
		font-size: 1rem;
	}
	.pagination {
		margin-top: 40px;
	}
	.pagination .nav-links {
		gap: 8px;
	}
	.pagination .nav-links .page-numbers {
		min-height: 40px;
		min-width: 40px;
	}
	.container {
		padding: 0 20px;
	}

	.logo__image {
		width: 68px;
	}

	.header__button {
		height: 30px;
		padding: 0 15px;
		font-size: 10px;
	}

	.burger {
		width: 23px;
		height: 15px;
	}

	.burger__item {
		width: 23px;
	}

	.burger__item:nth-child(1) {
		transform: translateY(-8px);
	}

	.burger__item:nth-child(3) {
		transform: translateY(8px);
	}

	.mobile-panel__close-button {
		top: 25px;
		right: 20px;
	}

	.mobile-panel__close-button-icon {
		width: 20px;
		height: 20px;
	}

	.hero__inner {
		height: 100vh;
		padding-bottom: 37px;
	}

	.hero__logo {
		width: 133px;
	}

	.hero__title {
		font-size: 1rem;
		line-height: 25px;
	}

	.hero__bg {
		display: none;
	}

	.hero__bg-mobile {
		position: absolute;
		top: 0;
		left: 0;
		display: block;
		width: 100%;
		height: 100%;
		object-fit: cover;
	}

	.hero::before {
		background: linear-gradient(180deg, rgba(13, 13, 13, 0.6) 0%, rgba(13, 13, 13, 0.1) 50%, rgba(13, 13, 13, 0.6) 100%);
	}

	.intro__title {
		margin-bottom: 30px;
		font-size: 1.5625rem;
	}

	.intro__text {
		margin-bottom: 40px;
		font-size: 16px;
	}

	.button {
		height: 46px;
		padding: 0 15px;
		font-size: 12px;
	}

	.project-card__name {
		margin-bottom: clamp(10px, 2vw, 15px);
		font-size: clamp(12px, 2.5vw, 20px);
	}

	.project-card__image-wrapper {
		height: auto;
		aspect-ratio: 0.81;
	}

	.projects__footer {
		gap: 40px;
	}

	.projects__button {
		order: 1;
		margin: 0 auto;
	}

	.video,
	.mb200 {
		margin-bottom: 80px;
	}

	.callback__title br {
		display: none;
	}

	.faq-item__num {
		min-width: 50px;
	}

	.faq-item__container {
		padding-left: 30px;
	}

	.faq-item__image-wrapper {
		min-width: 156px;
	}

	.faq-item__title {
		font-size: 1.125rem;
	}

	.faq-item__content-inner {
		font-size: 1rem;
	}

	.footer__form {
		display: flex;
		flex-direction: column;
		gap: 0;
	}

	.short-form__title {
		margin-bottom: 15px;
	}

	.short-form__warning {
		margin-top: 15px;
		font-size: 1rem;
	}

	.footer__contacts {
		font-size: 1rem;
	}

	.footer__address-text {
		font-size: 1rem;
	}

	.footer__bottom {
		gap: 15px;
	}

	.footer__bottom-text {
		font-size: 1rem;
	}

	.footer__inner {
		padding-bottom: 30px;
	}

	.footer__bottom-text:nth-child(4) {
		order: -1;
	}

	.footer__bottom-text:nth-child(2) {
		order: -1;
	}

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

	.bredcrumbs {
		margin-bottom: 70px;
	}

	.bredcrumbs__list>span {
		padding-top: 35px;
	}

	.dynamic-card__head {
		padding: 0 20px;
	}

	.project-intro__col:nth-child(1) {
		grid-column: 2 span;
		text-align: center;
	}

	.project-intro__col:nth-child(3) {
		grid-column: 2 span;
		margin-top: 80px;
		text-align: center;
	}

	.project-intro__col:nth-child(4) {
		display: none;
	}

	.project-intro {
		margin-bottom: 60px;
	}

	.new-solutions {
		margin-bottom: 80px;
	}

	.galery {
		margin-bottom: 60px;
	}

	.decor {
		margin-bottom: 60px;
	}

	.decor__text {
		column-count: 1;
		font-size: 1rem;
	}

	.blog-details-button-next {
		top: 122px;
		right: 20px;
	}

	.blog-details-button-next span {
		display: none;
	}

	.blog-details__inner {
		gap: 40px;
	}

	.blog-details__title {
		margin-bottom: 30px;
	}

	.blog-details__text {
		font-size: 1.125rem;
	}

	.page-blog .blog {
		margin-bottom: 100px;
	}

	.page {
		padding-top: 75px;
	}

	.about-intro {
		padding-bottom: 100px;
	}

	.about-intro__text {
		column-count: 1;
	}

	.about-intro__text {
		margin-bottom: 75px;
		font-size: 1.125rem;
	}

	.employees-list {
		gap: 20px;
		margin-bottom: 90px;
	}

	.employee-card {
		gap: 17px;
	}

	.employee-card__name {
		font-size: 1rem;
	}

	.employee-card__position {
		font-size: 0.75rem;
	}

	.about-intro__bottom-text {
		font-size: 1rem;
	}

	.employees-slider .dynamic-card__head {
		padding: 0;
	}

	.statistics__list {
		gap: 20px;
	}

	.statistic-item__text {
		font-size: 1.125rem;
	}

	.how-to-order {
		margin-bottom: 90px;
	}

	.step-list {
		column-gap: 30px;
		row-gap: 40px;
	}

	.step-card__title {
		font-size: 1.25rem;
	}

	.modal__container {
		padding-left: 15px;
		padding-right: 15px;
		padding-top: 80px;
		border-radius: 15px;
	}

	.modal__title {
		margin-bottom: 40px;
		font-size: 1.25rem;
	}

	.form.white .input {
		height: 50px;
		font-size: 1rem;
	}

	.modal__form-button {
		max-width: 330px;
		width: 100%;
		height: 60px;
		font-size: 1.25rem;
	}

	.modal-close-button__icon {
		width: 22px;
		height: 22px;
	}
}

@media (max-width: 575px) {
	:root {
		scroll-padding-top: 75px;
	}

	.mobile-menu {
		gap: 25px;
	}

	.mobile-menu>li>a {
		font-size: 1.125rem;
	}

	.faq-item__num {
		min-width: 50px;
	}

	.faq-item__image-wrapper {
		min-width: 93px;
		height: 71px;
	}

	.faq-item__container {
		padding-left: 15px;
	}

	.faq-item__title {
		font-size: 0.875rem;
	}

	.faq-item__content-inner {
		font-size: 0.75rem;
	}

	.footer__top {
		flex-direction: column;
		gap: 90px;
		margin-bottom: 70px;
	}

	.spcials {
		justify-content: center;
	}
	.social_note {
		text-align: center;
	}
	
	.social-link {
		width: 40px;
		height: 40px;
	}

	.social-link__icon {
		width: 22px;
		height: 22px;
	}

	.short-form__title {
		margin-bottom: 30px;
	}

	.short-form__warning {
		font-size: 12px;
	}

	.input {
		height: 40px;
		font-size: 1rem;
	}

	.short-form.white .input {
		height: 40px;
	}

	.short-form__button-icon {
		width: 17px;
		height: 17px;
	}

	.short-form__title {
		font-size: 1.25rem;
	}

	.footer__middle-col-title {
		font-size: 1.25rem;
	}

	.footer__middle {
		gap: 30px;
		row-gap: 60px;
		margin-bottom: 80px;
	}

	.footer__contacts {
		font-size: 0.875rem;
	}

	.footer__address-text {
		font-size: 0.875rem;
		text-align: right;
	}

	.footer__bottom {
		padding-top: 15px;
		border-top: 1px solid rgba(255, 255, 255, 0.2);
	}

	.footer__bottom-text {
		font-size: 0.75rem;
		color: #9C9C9C;
	}

	.callback__title {
		font-size: 1.25rem;
	}

	.about__col:nth-child(1) {
		order: -1;
	}

	.about__col:nth-child(2) {
		order: -1;
	}

	.about__col:nth-child(4) {
		order: -1;
	}

	.callback {
		margin-bottom: 60px;
	}

	.about__subtitle {
		font-size: 1rem;
	}

	.about__col:nth-child(5) {
		margin-top: 30px;
	}

	.about-image {
		height: auto;
		aspect-ratio: 1.39;
	}

	.about__col:nth-child(6) {
		margin-top: 30px;
	}

	.advantage-card__title {
		margin-bottom: 13px;
		font-size: 1rem;
	}

	.service-card {
		min-height: 162px;
		height: auto;
		padding: 20px 20px;
	}

	.service-card__title {
		font-size: 1rem;
	}

	.service-card__text {
		font-size: 0.875rem;
	}

	.service-card__icon {
		top: 20px;
		right: 20px;
		width: 22px;
		height: 22px;
	}

	.services__inner {
		height: 580px;
	}

	h3 {
		font-size: 1rem;
	}

	.how-work__inner {
		padding: 60px 0;
	}

	.steps-panel__number {
		font-size: 0.75rem;
	}

	.steps-panel__progress-point {
		width: 8px;
		height: 8px;
	}

	.steps-panel__progress {
		margin-bottom: 10px;
	}

	.how-work__subtitle {
		width: 100%;
		text-align-last: right;
	}

	.how-work__title {
		margin-bottom: 30px;
	}

	.step__title {
		font-size: 1rem;
	}

	.step__text {
		font-size: 0.875rem;
	}

	.review-card__text {
		font-size: 0.875rem;
	}

	.reviews__inner {
		padding-bottom: 20px;
	}

	.slider .swiper-button {
		width: 29px;
		height: 29px;
	}

	.slider .swiper-button__icon {
		width: 15px;
		height: 15px;
	}

	.reviews__slider-nav {
		margin-top: 15px;
	}

	.reviews {
		margin-bottom: 60px;
	}

	.faq__title {
		margin-bottom: 30px;
	}

	.blog-card {
		padding: 15px;
	}

	.blog-card__date {
		margin-bottom: 12px;
		font-size: 0.625rem;
	}

	.blog-card__title {
		font-size: 0.875rem;
	}

	.blog__button {
		margin-top: 50px;
	}

	.blog {
		margin-bottom: 90px;
	}

	.footer__logo-image {
		width: 170px;
	}

	.form__button {
		margin: 0 auto;
		margin-top: 50px;
	}

	.checkbox__text {
		font-size: 0.75rem;
	}

	.bredcrumbs__list>span {
		gap: 5px;
		font-size: 0.75rem;
	}

	.bredcrumbs__item {
		gap: 5px;
	}

	.dynamic-card__body {
		height: 483px;
	}



	.project-intro {
		margin-bottom: 60px;
	}

	.project-slider {
		margin-bottom: 60px;
	}

	.slider-nav {
		gap: 20px;
	}

	.swiper-pagination-bullet {
		width: 5px;
		height: 5px;
	}

	.new-solutions__text {
		font-size: 1rem;
	}

	.galery__slider-track {
		gap: 0;
		animation: none;
		width: auto;
	}

	.galery__grid {
		grid-template-columns: repeat(2, 1fr);
		grid-template-rows: 33vw 33vw 33vw;
		grid-auto-flow: dense;
		gap: 6px;
	}

	.galery__item {
		width: 100%;
		grid-column: auto !important;
		grid-row: auto !important;
	}

	.galery__item:nth-child(2) {
		grid-row: 2 span !important;
	}

	.galery__item:nth-child(3) {
		grid-row: 2 span !important;
	}

	.slider-nav-2 {
		display: flex;
	}

	.decor__text {
		font-size: 0.875rem;
	}

	.cases {
		margin-bottom: 60px;
	}

	.project-intro__col:nth-child(3) {
		margin-top: 37px;
	}

	.callback-v-2 {
		margin-bottom: 60px;
	}

	.callback__title {
		font-size: 1rem;
	}

	.blog-details-button-next {
		top: 118px;
	}

	.blog-details {
		margin-bottom: 60px;
	}

	.blog-details__date {
		font-size: 0.75rem;
	}

	.blog-details__title {
		margin-bottom: 30px;
		font-size: 1.125rem;
	}

	.blog-details__text {
		font-size: 0.875rem;
	}

	.blog-details-present {
		grid-template-columns: 1fr;
	}

	.blog-details-present__image-wrapper:nth-child(2) {
		display: none;
	}

	.blog-details__single-photo {
		aspect-ratio: 1.15;
		background: #262626;
	}

	.blog-details__single-photo-image {
		top: 50%;
		left: 50%;
		translate: -50% -50%;
		width: 84.3%;
		height: 58%;
	}

	.page-blog .projects {
		margin-bottom: 80px;
	}

	.blog-photo-slider {
		margin-bottom: 80px;
	}

	.blog-photo-slider__slide {
		aspect-ratio: 1.43;
	}

	.about-intro {
		padding-bottom: 90px;
	}

	.about-intro__title {
		font-size: 1.125rem;
	}

	.about-intro__text {
		font-size: 0.875rem;
	}

	.employees-list {
		gap: 15px;
		margin-bottom: 75px;
	}

	.employee-card {
		gap: 15px;
	}

	.employee-card__name {
		font-size: 0.75rem;
	}

	.employee-card__position {
		font-size: 0.625rem;
	}

	.about-intro__bottom-text {
		font-size: 0.875rem;
	}

	.employees-slider {
		padding-bottom: 60px;
	}

	.employees-slider .dynamic-card {
		gap: 10px;
	}

	.employees-slider .dynamic-card__body {
		height: auto;
		aspect-ratio: 0.82;
	}

	.employees-slider .dynamic-card__title {
		font-size: 0.75rem;
	}

	.employees-slider .dynamic-card__subtitle {
		font-size: 0.625rem;
	}

	.statistics {
		padding: 50px 0;
	}

	.statistics__list {
		grid-template-columns: repeat(2, max-content);
		gap: 40px;
		row-gap: 40px;
		padding: 0 8%;
	}

	.statistic-item__num {
		font-size: 1.875rem;
	}

	.statistic-item__text {
		font-size: 0.875rem;
	}

	.page-about .video {
		margin-bottom: 60px;
	}

	.how-to-order {
		margin-bottom: 80px;
	}

	.how-to-order__title {
		font-size: 1.125rem;
	}

	.step-list {
		column-gap: 15px;
		row-gap: 40px;
	}

	.step-card__num {
		font-size: 0.875rem;
	}

	.step-card__title {
		margin-bottom: 10px;
		font-size: 1rem;
	}

	.step-card__text {
		font-size: 0.875rem;
	}

	.modal__container {
		padding-bottom: 50px;
	}

	.modal__title {
		font-size: 1rem;
	}

	.modal__form .fields {
		gap: 40px;
	}

	.form.white .input {
		height: 45px;
		font-size: 0.875rem;
	}

	.modal__form .checkbox__fake {
		min-width: 20px;
		height: 20px;
	}

	.modal__form-button {
		height: 50px;
		font-size: 0.875rem;
	}
}

@media (max-width: 480px) {
	.how-to-order__title {
		font-size: 1rem;
	}
}

.page-blog .projects__footer {
	display: none;
}

.scroll-custom::-webkit-scrollbar {
	width: 10px;
	height: 8px;
}

.scroll-custom::-webkit-scrollbar-track {
	background: #f0f0f0;
	border-radius: 10px;
}


.scroll-custom::-webkit-scrollbar-thumb {
	background: #888;
	border-radius: 10px;
}

/* Бегунок при наведении */
.scroll-custom::-webkit-scrollbar-thumb:hover {
	background: #555;
}