:root {
	--max-width: 1920px;
	--extra-width: 2560px;
	--main-color: #D2B688;
	--dark-color: #212121;
	--light-gray: #F6F6F6;
	--light-color: #909090;
}
*, *::before, *::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
html {
	font-size: 10px;
	line-height: 1.3;
}
@font-face {
	font-family: 'Kharkiv Tone'; /* Гарнитура шрифта */
	src: url(../fonts/KharkivTone.ttf); /* Путь к файлу со шрифтом */
}
body {
	margin: 0;
	padding: 0;
	width: 100%;
	overflow-x: hidden;
	text-rendering: optimizeSpeed;
	font-family: 'Kharkiv Tone', 'IBM Plex Mono', monospace;
	font-size: 1.2rem;
	color: var(--dark-color);
}
@media (min-width: 576px) {
	body {
		font-size: 1.4rem;
	}
}
@media (min-width: 768px) {

}
@media (min-width: 992px) {
	body {
		font-size: 1.6rem;
	}
}
@media (min-width: 1200px) {

}
@media (min-width: 1530px) {
	body {
		font-size: 1.8rem;
	}
}
@media (min-width: 1770px) {

}
main {
	min-height: 30vh;
}
ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
h1, h2, h3, h4, h5, h6 {
	margin: 0;
	padding: 0;
}
a {
	text-decoration: none;
	color: var(--dark-color);
}

/* containers and css for all starts */
.c-container {
	width: 100%;
	max-width: var(--max-width);
	padding: 0;
	margin: 0 auto;
}
.c-container--normal {
	padding: 0 10px;
}
.c-container--small {
	padding: 0 30px;
}
.c-container--small-mod {
	padding: 0;
}
.extra-container {
	width: 100%;
	max-width: var(--extra-width);
	padding: 0;
	margin: 0 auto;
}
@media (min-width: 576px) {
	.c-container--normal {
		padding: 0 20px;
	}
	.c-container--small {
		padding: 0 60px;
	}
}
@media (min-width: 768px) {
	.c-container--normal {
		padding: 0 30px;
	}
	.c-container--small {
		padding: 0 100px;
	}
}
@media (min-width: 992px) {
	.c-container--normal {
		padding: 0 50px;
	}
	.c-container--small {
		padding: 0 150px;
	}
}
@media (min-width: 1200px) {
	.c-container--normal {
		padding: 0 80px;
	}
	.c-container--small {
		padding: 0 190px;
	}
	.c-container--small-mod {
		padding: 0 190px;
	}
}
@media (min-width: 1530px) {
	.c-container--normal {
		padding: 0 90px;
	}
	.c-container--small {
		padding: 0 200px;
	}
	.c-container--small-mod {
		padding: 0 200px;
	}
}
@media (min-width: 1770px) {
	.c-container--normal {
		padding: 0 100px;
	}
	.c-container--small {
		padding: 0 306px;
	}
	.c-container--small-mod {
		padding: 0 306px;
	}
}
.in-container {
	position: relative;
	overflow: hidden;
}
.in-container.in-container--16-9 {
	padding-top: 56.25%;
}
.in-container.in-container--9-16 {
	padding-top: 177.78%;
}
.in-container.in-container--3-2 {
	padding-top: 66.67%;
}
.in-container.in-container--3-1 {
	padding-top: 33.33%;
}
.in-container.in-container--9-4 {
	padding-top: 44.44%;
}
.in-container.in-container--1-1 {
	padding-top: 100%;
}
.in-container.in-container--590-630 {
	padding-top: 106.779661%;
}
.in-container > .in-container__inner {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.in-container > .in-container__inner > img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}
.img_lazy img {
	opacity: 0;
	transition: opacity 0.2s;
}
.img_lazy.loaded img {
	opacity: 1;
}
.noselect {
	-webkit-touch-callout: none; /* iOS Safari */
	-webkit-user-select: none; /* Safari */
	-khtml-user-select: none; /* Konqueror HTML */
	-moz-user-select: none; /* Firefox */
	-ms-user-select: none; /* Internet Explorer/Edge */
	user-select: none; /* Non-prefixed version, currently
									supported by Chrome and Opera */
}
.color-gray {
	color: var(--light-color);
}
.btn-underline {
	position: relative;
	z-index: 2;
	border: none;
	background: transparent;
	outline: none;
	cursor: pointer;
}
.btn-underline::after {
	content: '';
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 3;
	width: 100%;
	height: 2px;
	background: var(--light-color);
	transform: translateY(4rem);
	opacity: 0;
	transition: .5s;
}
.btn-underline:hover:after {
	transform: translateY(1rem);
	opacity: 1;
}
.btn-underline.active::after {
	transform: translateY(1rem);
	opacity: 1;
}
a.btn-underline:hover {
	color: var(--dark-color);
}
/* containers and css for all ends */

/* menu starts */
.menu {
	position: fixed;
	width: 100%;
	top: 0;
	left: 0;
	z-index: 101;
	background: transparent;
	transition: .3s;
	color: #ffffff;
}
.menu .menu__left svg {
	stroke: #ffffff;
}
.menu .menu-social svg {
	fill: #ffffff;
}
.menu .logo svg .svg-stroke {
	stroke: #ffffff;
}
.menu .logo svg .svg-fill {
	fill: #ffffff;
}
.menu a {
	color: #ffffff;
}
.menu--negative {
	color: var(--dark-color);
}
.menu.menu--negative .menu__left svg {
	stroke: var(--dark-color);
}
.menu.menu--negative .menu-social svg {
	fill: var(--dark-color);
}
.menu.menu--negative .logo svg .svg-stroke {
	stroke: var(--dark-color);
}
.menu.menu--negative .logo svg .svg-fill {
	fill: var(--dark-color);
}
.menu.menu--negative a {
	color: var(--dark-color);
}
.menu--negative.menu--scroll {
	color: #ffffff;
}
.menu.menu--negative.menu--scroll .menu__left svg {
	stroke: #ffffff;
}
.menu.menu--negative.menu--scroll .menu-social svg {
	fill: #ffffff;
}
.menu.menu--negative.menu--scroll .logo svg .svg-stroke {
	stroke: #ffffff;
}
.menu.menu--negative.menu--scroll .logo svg .svg-fill {
	fill: #ffffff;
}
.menu.menu--negative.menu--scroll a {
	color: #ffffff;
}
.menu.menu--negative.menu--scroll li.active a {
	color: var(--main-color);
}
.menu__inner {
	display: flex;
	flex-direction: row;
	align-items: center;
	padding: 30px 0;
	transition: 0.6s;
}
.menu.menu--scroll {
	background: rgba(33, 33, 33, 0.43);
}
.menu.menu--scroll .menu__inner {
	padding: 6px 0;
}
.menu__left,
.menu__right,
.menu-languages,
.menu-social {
	display: flex;
	flex-direction: row;
	align-items: center;
}
.menu__right,
.menu__left {
	width: calc(50% - 15px);
}
.menu__right {
	justify-content: flex-end;
}
.menu__logo {
	width: 60px;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.logo {
	width: 40px;
	height: 40px;
	animation: logo-spinning 8s ease-in-out infinite;
	animation-delay: 8s;
}
@keyframes logo-spinning {
	0% {
		transform: rotate(0deg);
	}
	10%, 100% {
		transform: rotate(360deg);
	}
}
.logo a {
	display: block;
	width: 100%;
	height: 100%;
}
.logo svg {
	width: 100%;
}
.menu__left span {
	margin-left: 20px;
}
.menu__social {
	display: block;
}
.menu-social {
	display: flex;
}
.menu-social a {
	margin-left: 20px;
	/* margin-left: 36px; */
}
.menu__languages {
	margin-left: 0;
	display: none;
}
.menu-languages a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	margin-left: 6px;
}
.menu-languages li.active a {
	color: var(--main-color);
	border: 1px solid var(--main-color);
	border-radius: 50%;
}
.menu-btn {
	cursor: pointer;
}
@media (min-width: 576px) {

}
@media (min-width: 768px) {
	.logo {
		width: 52px;
		height: 52px;
	}
	.menu__social {
		display: block;
	}
	.menu-social {
		display: flex;
	}
	.menu-languages a {
		width: 38px;
		height: 38px;
	}
}
@media (min-width: 992px) {
	.menu-social a {
		margin-left: 36px;
	}
	.menu__languages {
		display: block;
		margin-left: 40px;
	}
	.menu-languages a {
		width: 42px;
		height: 42px;
	}
}
@media (min-width: 1200px) {

}
@media (min-width: 1530px) {
	.menu__languages {
		margin-left: 90px;
	}
}
@media (min-width: 1770px) {

}
/* menu ends */

/* modal menu starts */
.modal-menu {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 198;
	width: 100%;
	height: 100vh;
	transition: .8s;
	transform: translateY(-110%);
	color: var(--dark-color);
	pointer-events: none;
}
.modal-menu.modal-menu--open {
	transform: translateY(0);
}
.modal-menu .c-container{
	height: 100%;
}
.modal-menu__inner {
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	background: #ffffff;
	pointer-events: all;
}
.modal-menu__container {
	display: flex;
	flex-direction: column;
	align-items: center;
	flex: 1 1 auto;
	overflow-y: auto;
	padding: 60px 30px 10px 30px;
}
.modal-menu__list {
	margin-bottom: 60px;
}
.modal-menu__list li {
	padding: 12px 0;
	text-align: center;
}
.modal-menu__list a {
	font-size: 1.6rem;
	color: var(--dark-color);
	transition: .5s;
}
.modal-menu__list a:hover {
	color: var(--light-color);
}
.modal-menu__social {
	margin-bottom: 30px;
}
.modal-menu__social svg {
	fill: var(--dark-color);
}
.modal-menu__social .menu-social a {
	margin-left: 0;
	margin: 0 20px;
}
.modal-menu__languages .menu-languages a {
	margin-left: 0;
	margin: 0 6px;
}
.modal-menu__close {
	flex: 0 0 auto;
	text-align: center;
	cursor: pointer;
}
.modal-menu__close svg {
	transform: scale(0.6) rotate(-90deg);
}
@media (min-width: 576px) {

}
@media (min-width: 768px) {
	.modal-menu {
		height: auto;
	}
	.modal-menu__inner {
		width: 50%;
	}
}
@media (min-width: 992px) {
	.modal-menu__inner {
		width: 40%;
	}
	.modal-menu__languages {
		display: none;
	}
}
@media (min-width: 1200px) {
	.modal-menu__list a {
		font-size: 1.8rem;
	}
}
@media (min-width: 1530px) {
	.modal-menu__inner {
		width: 25%;
	}
}
@media (min-width: 1770px) {

}
.modal-menu__background {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 197;
	width: 100%;
	height: 100vh;
	background: rgba(0,0,0,.5);
	display: none;
}
.modal-menu__background.modal-menu--open {
	display: block;
}
/* modal menu ends */

/* first screen starts */
.main-slider__upper {
	display: flex;
	flex-direction: column;
	justify-content: center;
	position: relative;
}
.title-one h1 {
	font-weight: 400;
	font-size: 3.6rem;
	line-height: 1.1;
	color: var(--main-color);
	text-align: right;
}
.title-two h2,
.title-three h2 {
	font-weight: 400;
	font-size: 3.6rem;
	line-height: 1.1;
	color: #ffffff;
}
.title-three h2 {
	text-align: right;
}
.main-slider__scroll {
	position: absolute;
	bottom: 0;
	right: 0;
	transform: scale(0.5);
}
@media (min-width: 500px) {
	.title-one h1 {
		font-size: 4.2rem;
	}
	.title-two h2,
	.title-three h2 {
		font-size: 4.2rem;
	}
}
@media (min-width: 576px) {
	.title-one h1 {
		font-size: 5rem;
	}
	.title-two h2,
	.title-three h2 {
		font-size: 5rem;
	}
}
@media (min-width: 768px) {
	.title-one h1 {
		font-size: 6rem;
	}
	.title-two h2,
	.title-three h2 {
		font-size: 6rem;
	}
	.main-slider__scroll {
		bottom: 10px;
		right: 20%;
		transform: scale(0.6);
	}
}
@media (min-width: 900px) {
	.title-one h1 {
		font-size: 6.8rem;
	}
	.title-two h2,
	.title-three h2 {
		font-size: 6.8rem;
	}
}
@media (min-width: 992px) {
	.title-one h1 {
		font-size: 7.2rem;
	}
	.title-two h2,
	.title-three h2 {
		font-size: 7.2rem;
	}
	.main-slider__scroll {
		position: absolute;
		bottom: 20px;
		right: 25%;
		transform: scale(0.7);
	}
}
@media (min-width: 1200px) {
	.title-one h1 {
		font-size: 8.2rem;
	}
	.title-two h2,
	.title-three h2 {
		font-size: 8.2rem;
	}
}
@media (min-width: 1530px) {
	.title-one h1 {
		font-size: 10rem;
	}
	.title-two h2,
	.title-three h2 {
		font-size: 10rem;
	}
}
@media (min-width: 1770px) {
	.title-one h1 {
		font-size: 10.2rem;
	}
	.title-two h2,
	.title-three h2 {
		font-size: 10.2rem;
	}
	.main-slider__scroll {
		position: absolute;
		bottom: 20px;
		right: 25%;
		transform: scale(0.8);
	}
}
.scroll-animation {
	animation: scroll-animation 2s ease-in-out infinite alternate;
}
@keyframes scroll-animation {
	0% {
		transform: translateY(0px);
	}
	100% {
		transform: translateY(12px);
	}
}
/* first screen ends */

/*main slider on index starts*/
.main-slider {
	width: 100%;
	height: 100vh;
	position: relative;
}
.main-slider__wrapper {
	width: 100%;
	height: 100%;
}
.first-slider {
	width: 100%;
	height: 100%;
	position: relative;
}
.first-slider .slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	opacity: 0;
	transition: 0.5s;
}
.first-slider .slide--active {
	opacity: 1;
}
.first-slider .slide-temp {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #212121;
	transition: 0.5s;
}
.first-slider .slide-temp.slide-temp--close {
	opacity: 0;
}
.first-slider .slide .img-wrapper {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
}
.first-slider .slide .img-wrapper img {
	opacity: 0;
	transition: 0.5s;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.first-slider .slide.slide--active .img-wrapper img {
	opacity: 1;
	animation: first-slider-animation 11s linear;
}
@keyframes first-slider-animation {
	0% {
		transform: scale(1);
	}
	100% {
		transform: scale(1.15);
	}
}
.main-slider__upper {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(33, 33, 33, 0.43);
}
/*main slider on index ends*/

/* new projects strats */
.new-projects__title h3 {
	margin: 90px 0 40px 0;
	font-weight: 400;
	font-size: 2.4rem;
}
.new-projects__grid {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
}
.new-projects__item {
	width: calc(100% / 2);
	background: rgba(48, 48, 48, 0.7);
}
.new-project-item {
	width: 100%;
	overflow: hidden;
}
.new-project-item a {
	display: block;
	width: 100%;
	height: 100%;
	position: relative;
}
.new-project-item__hover {
	padding: 10px 5px;
}
.new-project-item__title {
	color: #ffffff;
}
.new-project-item__arrow {
	position: absolute;
	top: 10px;
	left: 10px;
	z-index: 3;
	transform: scale(0.6) rotate(-45deg);
	transition: 0.4s;
}
.new-project-item a:hover .new-project-item__hover {
	opacity: 1;
}
.new-project-item a:hover .new-project-item__arrow {
	transform: scale(0.6) rotate(0);
}
@media (min-width: 576px) {
	.new-projects__title h3 {
		margin: 100px 0 50px 0;
		font-size: 3rem;
	}
	.new-project-item__arrow {
		top: 15px;
		left: 15px;
		transform: scale(0.8) rotate(-45deg);
	}
	.new-project-item a:hover .new-project-item__arrow {
		transform: scale(0.8) rotate(0);
	}
}
@media (min-width: 768px) {
	.new-projects__title h3 {
		margin: 120px 0 60px 0;
		font-size: 3.6rem;
	}
	.new-projects__item {
		width: calc(100% / 3);
	}
	.new-project-item__hover {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: rgba(48, 48, 48, 0.7);
		z-index: 2;
		padding: 15px;
		display: flex;
		flex-direction: column;
		justify-content: flex-end;
		opacity: 0;
		transition: 0.4s;
	}
	.new-project-item__title {
		color: #ffffff;
	}
	.new-project-item__arrow {
		top: 20px;
		left: 20px;
		transform: scale(0.8) rotate(-45deg);
	}
	.new-project-item a:hover .new-project-item__arrow {
		transform: scale(0.8) rotate(0);
	}
	.new-project-item a:hover .new-project-item__hover {
		opacity: 1;
	}
}
@media (min-width: 992px) {
	.new-projects__title h3 {
		margin: 140px 0 70px 0;
		font-size: 4.2rem;
	}
}
@media (min-width: 1200px) {
	.new-projects__title h3 {
		margin: 180px 0 70px 0;
		font-size: 5.2rem;
	}
	.new-project-item__hover {
		padding: 30px;
	}
	.new-project-item__title {
		font-size: 2.4rem;
	}
}
@media (min-width: 1530px) {
	.new-projects__title h3 {
		margin: 220px 0 80px 0;
		font-size: 6.4rem;
	}
	.new-project-item__hover {
		padding: 40px;
	}
	.new-project-item__title {
		font-size: 2.6rem;
	}
	.new-project-item__arrow {
		top: 40px;
		left: 40px;
		transform: rotate(-45deg);
	}
	.new-project-item a:hover .new-project-item__arrow {
		transform: rotate(0);
	}
}
@media (min-width: 1770px) {
	.new-project-item__title {
		font-size: 2.8rem;
	}
}
/* new projects ends */

/* services slider starts */
/* services slider ends */

/* callback block starts */
.callback-block {
	margin-top: 20px;
}
.callback-form {
	background: rgba(246, 246, 246, 1);
}
.callback-form__inner {
	padding: 50px 20px 20px 20px;
}
.callback-form__title {
	font-size: 2.4rem;
	text-align: center;
}
.callback-form__body {
	margin-top: 30px;
}
.callback-form__columns {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.callback-form__field {
	display: flex;
	flex-direction: column;
	width: 100%;
	margin-bottom: 20px;
}
.callback-form__field input {
	margin-top: 8px;
	padding-bottom: 2px;
	background: none;
	border: none;
	outline: none;
	border-bottom: 1px solid var(--main-color);
	color: #212121;
}
.callback-form__label {
	color: #212121;
	flex: 1 1 auto;
}
.callback-form__send {
	margin-top: 30px;
}
.callback-form__send button {
	outline: none;
	border: none;
	background: none;
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	cursor: pointer;
}
.callback-form__send button span {
	color: var(--main-color);
}
.callback-form__send button svg {
	width: 38px;
	height: 38px;
}
.callback-block__image {
	width: 100%;
	height: 140px;
}
.callback-block__image .img-wrapper {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
}
.callback-block__image .img-wrapper img {
	opacity: 1;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.callback-form__field .input-error {
	font-size: 0.8em;
	margin-top: 6px;
	display: none;
	opacity: 0;
	animation: fadeEffect 0.5s;
}
.callback-form__field .input-error.show {
	display: block;
	opacity: 1;
}
@keyframes fadeEffect {
	from {opacity: 0;}
	to {opacity: 1;}
}
@-webkit-keyframes fadeEffect {
	from {opacity: 0;}
	to {opacity: 1;}
}
.send-animation {
	animation: send-animation 1.4s ease-in-out infinite alternate;
}
@keyframes send-animation {
	0% {
		transform: translateX(-6px);
	}
	100% {
		transform: translateX(6px);
	}
}
@media (min-width: 576px) {
	.callback-form__title {
		font-size: 3rem;
	}
	.callback-form__body {
		margin-top: 45px;
	}
	.callback-form__send {
		margin-top: 45px;
	}
}
@media (min-width: 768px) {
	.callback-form__inner {
		padding: 80px 20px 40px 20px;
	}
	.callback-form__title {
		font-size: 3.6rem;
	}
	.callback-form__body {
		margin-top: 50px;
	}
	.callback-form__columns {
		display: flex;
		flex-direction: row;
		justify-content: space-between;
	}
	.callback-form__field {
		display: flex;
		flex-direction: column;
		width: calc(50% - 20px);
		margin-bottom: 0;
	}
	.callback-form__send {
		margin-top: 50px;
	}
	.callback-form__send button span {
		font-size: 1.8rem;
	}
	.callback-form__send button svg {
		width: 44px;
		height: 44px;
	}
	.callback-block__image {
		height: 180px;
	}
}
@media (min-width: 992px) {
	.callback-form__inner {
		padding: 100px 40px 60px 40px;
	}
	.callback-form__title {
		font-size: 4.2rem;
	}
	.callback-form__body {
		margin-top: 58px;
	}
	.callback-form__send {
		margin-top: 58px;
	}
	.callback-form__send button span {
		font-size: 2rem;
	}
	.callback-form__send button svg {
		width: 48px;
		height: 48px;
	}
	.callback-block__image {
		height: 200px;
	}
}
@media (min-width: 1200px) {
	.callback-form__inner {
		padding: 120px 100px 90px 100px;
	}
	.callback-form__title {
		font-size: 5.2rem;
	}
	.callback-form__body {
		margin-top: 64px;
	}
	.callback-form__send button svg {
		width: 52px;
		height: 52px;
	}
	.callback-form__send {
		margin-top: 64px;
	}
	.callback-block__image {
		height: 240px;
	}
}
@media (min-width: 1530px) {
	.callback-form__inner {
		padding: 150px 200px 100px 200px;
	}
	.callback-form__title {
		font-size: 6.4rem;
	}
	.callback-form__body {
		margin-top: 72px;
	}
	.callback-form__label {
		font-size: 1.8rem;
	}
	.callback-form__send {
		margin-top: 72px;
	}
	.callback-form__send button svg {
		width: 69px;
		height: 69px;
	}
	.callback-form__send button span {
		font-size: 2.4rem;
	}
	.callback-block__image {
		height: 300px;
	}
}
/* callback block ends */

/* about us starts */
.about-us {
	margin-top: 100px;
}
.about-us__title {
	font-size: 2.4rem;
	line-height: 1.05;
}
.about-us__columns {
	margin-top: 30px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.about-us__text {
	width: 100%;
}
.about-us__btn {
	margin-top: 50px;
}
.about-us__btn button {
	outline: none;
	border: none;
	background: none;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	cursor: pointer;
}
.about-us__btn button span {
	color: var(--main-color);
	font-size: 1.4rem;
	margin-right: 20px;
}
.about-us__btn button svg {
	width: 38px;
	height: 38px;
}
@media (min-width: 576px) {
	.about-us__title {
		font-size: 3rem;
	}
}
@media (min-width: 768px) {
	.about-us {
		margin-top: 120px;
	}
	.about-us__title {
		font-size: 3.6rem;
	}
	.about-us__btn button svg {
		width: 44px;
		height: 44px;
	}
	.about-us__btn button span {
		font-size: 1.6rem;
		margin-right: 30px;
	}
}
@media (min-width: 992px) {
	.about-us {
		margin-top: 140px;
	}
	.about-us__title {
		font-size: 4.2rem;
	}
	.about-us__columns {
		margin-top: 50px;
		display: flex;
		flex-direction: row;
		justify-content: space-between;
	}
	.about-us__text {
		width: calc(50% - 50px);
	}
	.about-us__btn button svg {
		width: 48px;
		height: 48px;
	}
}
@media (min-width: 1200px) {
	.about-us {
		margin-top: 180px;
	}
	.about-us__title {
		font-size: 5.2rem;
	}
	.about-us__btn button svg {
		width: 52px;
		height: 52px;
	}
}
@media (min-width: 1530px) {
	.about-us {
		margin-top: 240px;
	}
	.about-us__title {
		font-size: 6.4rem;
	}
	.about-us__btn {
		margin-top: 50px;
	}
	.about-us__btn button span {
		font-size: 2.4rem;
		margin-right: 60px;
	}
}
/* about us ends */

/* random-project-image starts */
.random-project-image {
	margin-top: 60px;
}
.random-project-image__inner {
	width: 100%;
	height: 300px;
}
.random-project-image__inner .img-wrapper {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
}
.random-project-image__inner .img-wrapper img {
	opacity: 1;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
@media (min-width: 576px) {
	.random-project-image {
		margin-top: 70px;
	}
	.random-project-image__inner {
		height: 330px;
	}
}
@media (min-width: 768px) {
	.random-project-image {
		margin-top: 90px;
	}
	.random-project-image__inner {
		height: 380px;
	}
}
@media (min-width: 992px) {
	.random-project-image {
		margin-top: 100px;
	}
	.random-project-image__inner {
		height: 430px;
	}
}
@media (min-width: 1200px) {
	.random-project-image {
		margin-top: 110px;
	}
	.random-project-image__inner {
		height: 510px;
	}
}
@media (min-width: 1530px) {
	.random-project-image {
		margin-top: 130px;
	}
	.random-project-image__inner {
		height: 600px;
	}
}
/* random-project-image ends */

/* footer starts */
.footer__inner {
	padding: 40px 0 15px 0;
	color: var(--dark-color);
}
.footer__title {
	margin-bottom: 10px;
	color: var(--light-color);
}
.footer-text {
	color: var(--light-color);
}
.footer__inner > div {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.footer__inner > div > div {
	width: 100%;
}
.footer__inner .right {
	margin-top: 20px;
	text-align: right;
}
.copyright .right {
	margin-top: 0;
	text-align: right;
}
.footer-contacts {
	margin-top: 30px;
}
.footer-address {
	margin-top: 30px;
}
#map {
	width: 100%;
	height: 300px;
	background: var(--dark-color);
}
.footer__inner .phone {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
}
.footer__inner .phone > * {
	margin-right: 15px;
}
@media (min-width: 576px) {
	.footer__title {
		margin-bottom: 20px;
	}
	.footer-contacts {
		display: flex;
		justify-content: space-between;
	}
	.footer-contacts > div {
		width: 47%;
	}
	.footer-address {
		margin-top: 0;
	}
}
@media (min-width: 768px) {
	.footer__inner {
		padding: 60px 0 15px 0;
	}
	.footer__inner > div {
		display: flex;
		flex-direction: row;
		justify-content: space-between;
	}
	.footer__inner .right {
		margin-top: 0;
	}
	.footer__inner > div > div {
		width: calc(50% - 10px);
	}
	.footer-contacts {
		display: flex;
		flex-direction: column;
		justify-content: space-between;
	}
	.footer-contacts > div {
		width: 100%;
	}
	.footer-address {
		margin-top: 30px;
	}
	.copyright {
		margin-top: 30px;
	}
}
@media (min-width: 1200px) {
	.footer__inner {
		padding: 80px 0 15px 0;
	}
	.footer-contacts {
		flex-direction: row;
	}
	.footer__inner > div > div {
		width: calc(50% - 20px);
	}
	.footer-contacts > div {
		width: 49%;
	}
	.footer-address {
		margin-top: 0;
	}
	.footer-contacts {
		margin-top: 60px;
	}
	.copyright {
		margin-top: 60px;
	}
}
@media (min-width: 1530px) {
	.footer__inner {
		font-size: 1.6rem;
	}
}
.by-main-page {
	margin: 15px 0;
}
.by-main-page svg {
	height: 20px;
}
.by-main-page .st1 {
	fill: var(--light-color);
}
.by-main-page .st0 {
	fill: var(--dark-color);
}
.footer__logo {
	width: 42px;
	height: 42px;
	margin-bottom: 10px;
}
.footer__logo a {
	display: block;
	width: 100%;
	height: 100%;
}
.footer__logo img {
	width: 100%;
}
@media (min-width: 768px) {
	.footer__logo {
		width: 52px;
		height: 52px;
	}
}



/* footer ends */

/* popup starts */
.popup__background {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 199;
	width: 100%;
	height: 100vh;
	background: rgba(0,0,0,.5);
	display: none;
}
.popup {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 200;
	width: 100%;
	height: 100vh;
	transition: .8s;
	transform: translateX(-120%);
	pointer-events: none;
}
.popup .callback-block__inner {
	pointer-events: all;
}
.popup.popup--open {
	transform: translateX(0);
}
.popup__background.popup--open {
	display: block;
}
.popup__inner {
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
/* popup ends */

/* project page starts */
.start-project-photo__inner {
	width: 100%;
	height: 100vh;
}
.start-project-photo__inner img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.project-description {
	color: var(--dark-color);
	margin-bottom: 30px;
}
.project-title {
	margin: 10px 0 30px 0;
}
.project-title h1 {
	font-size: 4rem;
	font-weight: 400;
}
.description-parts__wrapper > div {
	margin-bottom: 30px;
}
@media (min-width: 576px) {
	.description-parts__wrapper {
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
	}
	.description-parts__wrapper > div {
		margin-bottom: 30px;
		margin-right: 60px;
	}
}
@media (min-width: 768px) {
	.project-title h1 {
		font-size: 5.4rem;
	}
	.project-title {
		margin-bottom: 60px;
	}
	.description-parts__wrapper,
	.text-description {
		margin-bottom: 30px;
	}
}
@media (min-width: 1200px) {
	.project-title h1 {
		font-size: 7rem;
	}
}

.description-parts {
	border-bottom: 1px solid var(--dark-color);
	margin-bottom: 30px;
}
.description-parts__item {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-bottom: 30px;
}
.description-parts__item a {
	transition: .6s;
}
.description-parts__item a:hover {
	color: var(--light-color);
}
.description-parts__round {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--dark-color);
	margin-bottom: 10px;
}
@media (min-width: 992px) {
	.description-parts {
		border-bottom: 1px solid var(--dark-color);
		margin-bottom: 30px;
		display: flex;
		flex-direction: row;
		justify-content: space-between;
		flex-wrap: nowrap;
	}
	.description-parts__item {
		width: 18%;
	}
	.description-parts__item div {
		text-align: center;
	}
	.description-parts__round {
		margin-bottom: 18px;
	}
	.description-parts__item .color-gray {
		margin-bottom: 10px;
	}
}

.project-photos__wrapper {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-gap: 0.6rem;
	margin-bottom: 30px;
}
@media (min-width: 768px) {
	.project-photos__wrapper {
		grid-gap: 0.6rem;
	}
}
.project-photo.horizontal {
	grid-column: auto / span 2;
}
.project-photo .in-container {
	background: var(--light-gray);
}
.project-team__title {
	font-weight: bold;
	margin-bottom: 1rem;
}
@media (min-width: 1200px) {
	.project-team__title {
		margin-bottom: 3rem;
	}
}
.project-team__team-wrapper ul li {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	flex-wrap: wrap;
	padding: 2px 0;
}
.project-team__team-wrapper ul li span {
	display: flex;
	align-items: center;
	justify-content: flex-start;
}
.project-team__team-wrapper ul li * {
	margin-right: 1rem;
}
.project-team__team-wrapper svg {
	height: 1em;
	transform: scale(0.8);
}
.prev-next__wrapper {
	display: flex;
	flex-direction: row;
}
.prev-next__item {
	width: 50%;
	background: rgba(48, 48, 48, 0.7);
}
.prev-next__item--empty {
	background: transparent;
}
/* project page ends */

/*projects page starts*/
.projects-nav {
	margin-top: 110px;
	margin-bottom: 20px;
}
.projects-nav__wrapper nav > ul {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
}
.projects-nav__wrapper nav > ul > li{
	margin-right: 16px;
	margin-bottom: 1.2rem;
}
@media (min-width: 768px) {
	.projects-nav {
		margin-top: 120px;
		margin-bottom: 30px;
	}
}
@media (min-width: 992px) {
	.projects-nav {
		margin-bottom: 30px;
	}
}
@media (min-width: 1200px) {
	.projects-nav {
		margin-top: 140px;
		margin-bottom: 35px;
	}
}
.projects-pagination {
	margin: 30px 0;
}
@media (min-width: 576px) {
	.projects-pagination {
		margin: 40px 0;
	}
}
@media (min-width: 1200px) {
	.projects-pagination {
		margin: 50px 0;
	}
}
@media (min-width: 1770px) {
	.projects-pagination {
		margin: 60px 0;
	}
}
/*projects page ends*/

/*404 and graditude pages srarts*/
.graditude,
.error-404 {
	width: 100%;
	height: 100vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
}
.graditude h3,
.error-404 h3 {
	font-size: 2.4rem;
	text-align: center;
}
.error-404 h4 {
	font-size: 2.4rem;
	text-align: center;
}
.graditude p,
.error-404 p {
	margin-top: 30px;
}
.error-404 h3,
.graditude h3 {
	margin-bottom: 30px;
}
.graditude h4 {
	font-weight: 400;
}
@media (min-width: 576px) {
	.graditude h3,
	.error-404 h3 {
		font-size: 3rem;
	}
	.error-404 h4 {
		font-size: 2.8rem;
	}
}
@media (min-width: 768px) {
	.graditude h3,
	.error-404 h3 {
		font-size: 3.6rem;
	}
	.error-404 h4 {
		font-size: 3rem;
	}
}
@media (min-width: 992px) {
	.graditude h3,
	.error-404 h3 {
		font-size: 4.2rem;
	}
	.error-404 h4 {
		font-size: 3.2rem;
	}
}
@media (min-width: 1200px) {
	.graditude h3,
	.error-404 h3 {
		font-size: 5.2rem;
	}
	.error-404 h4 {
		font-size: 3.8rem;
	}
}
@media (min-width: 1530px) {
	.graditude h3,
	.error-404 h3 {
		font-size: 6.4rem;
	}
	.error-404 h4 {
		font-size: 4rem;
	}
}
/*404 and graditude pages ends*/

/* services starts */
.services {
	margin: 130px 0 30px 0;
	min-height: 50vh;
}
@media (min-width: 768px) {
	.services {
		margin: 160px 0 30px 0;
	}
}
@media (min-width: 1200px) {
	.services {
		margin: 180px 0 30px 0;
		min-height: 80vh;
	}
}
.services__title {
	outline: none;
	background: none;
	border: none;
	display: flex;
	flex-direction: row;
	align-items: center;
	padding: 14px 0;
	font-size: 2.4rem;
	cursor: pointer;
}
.services__title svg {
	width: 36px;
	height: 36px;
	margin-right: 18px;
	transition: .6s;
}
.services__title.active svg {
	transform: rotate(-45deg);
}
@media (min-width: 576px) {
	.services__title {
		font-size: 3rem;
	}
}
@media (min-width: 768px) {
	.services__title svg {
		width: 40px;
		height: 40px;
		margin-right: 22px;
	}
	.services__title {
		font-size: 3.6rem;
	}
}
@media (min-width: 992px) {
	.services__title svg {
		width: 48px;
		height: 48px;
		margin-right: 24px;
	}
	.services__title {
		font-size: 4.2rem;
	}
}
@media (min-width: 1200px) {
	.services__title svg {
		width: 58px;
		height: 58px;
		margin-right: 28px;
	}
	.services__title {
		padding: 20px 0;
		font-size: 5.2rem;
	}
}
@media (min-width: 1530px) {
	.services__title svg {
		width: 64px;
		height: 64px;
		margin-right: 30px;
	}
	.services__title {
		font-size: 6.4rem;
	}
}
.prices-block--bg {
	background: var(--light-gray);
	padding: 15px;
	margin-top: 30px;
}
.prices-block__title {
	margin: 12px 0;
	font-size: 1.6em;
}
.prices-block--bg .prices-block__title {
	margin: 0 0 12px 0;
}
.price-card {
	padding: 6px 0;
}
.price-card__title {
	display: flex;
	flex-direction: row;
	align-items: center;
	cursor: pointer;
}
.price-card__name {
	flex: 1 1 auto;
	font-weight: bold;
}
.price-card__price {
	width: 120px;
	flex: 0 0 auto;
	text-align: right;
}
.price-card__title svg {
	flex: 0 0 auto;
	width: 16px;
	height: 16px;
	margin-right: 18px;
	transition: .6s;
}
.price-card__title.active svg {
	transform: rotate(-180deg);
}
.price-card__parts {
	padding: 20px 10px;
}
.price-card__parts li {
	list-style-type: none;
}
.price-card__parts li::before {
	content: "- ";
}
.accordion-sibling-panel {
	height: 0;
	overflow: hidden;
	transition: 0.6s ease-out;
}
.services-description {
	padding: 15px 0;
}
.services-description__btn {
	margin: 15px 0;
}
.services-description__btn button {
	outline: none;
	border: none;
	background: none;
	display: flex;
	flex-direction: row;
	align-items: center;
	cursor: pointer;
}
.services-description__btn button span {
	text-align: left;
	font-weight: bold;
}
.services-description__btn button svg {
	width: 36px;
	height: 36px;
	margin-left: 18px;
	flex: 0 0 auto;
}
@media (min-width: 768px) {
	.services-description__btn {
		margin: 24px 0;
	}
	.services-description__btn button svg {
		width: 40px;
		height: 40px;
		margin-left: 22px;
	}
}
@media (min-width: 992px) {
	.services-description {
		padding: 30px 0;
	}
	.price-card__price {
		width: 200px;
	}
	.prices-block--bg {
		padding: 30px;
		margin-top: 45px;
	}
	.prices-block__title {
		margin: 24px 0;
	}
	.prices-block--bg .prices-block__title {
		margin: 0 0 24px 0;
	}
	.services-description__btn button svg {
		width: 48px;
		height: 48px;
		margin-left: 24px;
	}
}
@media (min-width: 1200px) {
	.price-card__parts {
		padding: 30px;
	}
	.services-description__btn button svg {
		width: 58px;
		height: 58px;
		margin-left: 28px;
	}
	.services-description__btn {
		margin: 30px 0 20px 0;
	}
}
@media (min-width: 1530px) {
	.services-description__btn button svg {
		width: 64px;
		height: 64px;
		margin-left: 30px;
	}
}
/* services ends */


















@media (min-width: 576px) {

}
@media (min-width: 768px) {

}
@media (min-width: 992px) {

}
@media (min-width: 1200px) {

}
@media (min-width: 1530px) {

}
@media (min-width: 1770px) {

}