/*******************
Fonts
********************/
@font-face {
	font-family: 'Montserrat';
	src: url("/assets/templates/old/fonts/Montserrat-Regular.eot");
	src: local('Montserrat Regular'), local('Montserrat-Regular'),
		url("/assets/templates/old/fonts/Montserrat-Regular.eot") format('embedded-opentype'),
		url("/assets/templates/old/fonts/Montserrat-Regular.woff") format('woff'),
		url("/assets/templates/old/fonts/Montserrat-Regular.ttf") format('truetype');
	font-weight: normal;
	font-style: normal;
}
@font-face {
	font-family: 'Montserrat';
	src: url("/assets/templates/old/fonts/Montserrat-Medium.eot");
	src: local('Montserrat Medium'), local('Montserrat-Medium'),
		url("/assets/templates/old/fonts/Montserrat-Medium.eot") format('embedded-opentype'),
		url("/assets/templates/old/fonts/Montserrat-Medium.woff") format('woff'),
		url("/assets/templates/old/fonts/Montserrat-Medium.ttf") format('truetype');
	font-weight: 500;
	font-style: normal;
}
@font-face {
	font-family: 'Montserrat';
	src: url("/assets/templates/old/fonts/Montserrat-SemiBold.eot");
	src: local('Montserrat SemiBold'), local('Montserrat-SemiBold'),
		url("/assets/templates/old/fonts/Montserrat-SemiBold.eot") format('embedded-opentype'),
		url("/assets/templates/old/fonts/Montserrat-SemiBold.woff") format('woff'),
		url("/assets/templates/old/fonts/Montserrat-SemiBold.ttf") format('truetype');
	font-weight: 600;
	font-style: normal;
}
@font-face {
	font-family: 'Montserrat';
	src: url("/assets/templates/old/fonts/Montserrat-Bold.eot");
	src: local('Montserrat Bold'), local('Montserrat-Bold'),
		url("/assets/templates/old/fonts/Montserrat-Bold.eot") format('embedded-opentype'),
		url("/assets/templates/old/fonts/Montserrat-Bold.woff") format('woff'),
		url("/assets/templates/old/fonts/Montserrat-Bold.ttf") format('truetype');
	font-weight: bold;
	font-style: normal;
}
@font-face {
	font-family: 'Montserrat';
	src: url("/assets/templates/old/fonts/Montserrat-Black.eot");
	src: local('Montserrat Black'), local('Montserrat-Black'),
		url("/assets/templates/old/fonts/Montserrat-Black.eot") format('embedded-opentype'),
		url("/assets/templates/old/fonts/Montserrat-Black.woff") format('woff'),
		url("/assets/templates/old/fonts/Montserrat-Black.ttf") format('truetype');
	font-weight: 900;
	font-style: normal;
}

/*******************
Variables
********************/
:root {
	/* colors */
	--primary-color: #0059fc; /* rgb(0,89,252) */
	--primary-light-color: #4d8bfd; /* rgb(77,139,253) */
	--secondary-color: #14253f; /* rgb(20,37,63) */
	--secondary-light-color: #1c3355; /* rgb(28,51,85) */
	--third-color: #31EBFF;

	/* body */
	--body-text-font-family: 'Montserrat', sans-serif;
	--body-text-font-size: 16px;
	--body-text-font-weight: normal;
	--body-text-line-height: 1.4;
	--body-text-color: #14253f;
	--body-bg-color: #fafafa;

	/* heading */
	--heading-font-family: 'Montserrat', sans-serif;
	--heading-font-weight: 900;

	/* blocks */
	--block-border-radius: 12px;
	--big-block-border-radius: 24px;
	--capture-block-bg-color: #f8f9fa;
}

/********************
General
********************/
html {
  height: 100%;
}
body {
  min-height: 100%;
  min-width: 320px;
  font-family: var(--body-text-font-family);
  font-size: var(--body-text-font-size);
  font-weight: var(--body-text-font-weight);
  line-height: var(--body-text-line-height);
  color: var(--body-text-color);
  background-color: var(--body-bg-color);
  overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 {
	font-family: var(--heading-font-family);
	font-weight: var(--heading-font-weight);
	line-height: 1.2;
}
h1,
.old-h1 {
	font-size: 36px;
}
h2,
.old-h2 {
	margin-bottom: 20px;
	font-size: 30px;
}
h3,
.old-h3 {
	font-size: 26px;
}
ul,
ol {
	margin: 0;
	padding: 0;
	list-style-type: none;
}
ul.old-wo-bullets,
ol.old-wo-bullets {
	list-style-type: none !important;
}
img {
	max-width: 100%;
}
/*** Layout ***/
.old-container {
	/*max-width: ;*/
}

/*** Forms ***/
.old-form-group {
	margin-bottom: 20px;
}
.old-form-group-inline {
	display: flex;
	flex-direction: row;
}
.old-form-group-btn-tos {
	align-items: center;
}
.old-tos {
	font-size: 14px;
}
.old-form-group-btn-tos .old-tos {
	margin-bottom: 0;
}
.old-form-group-btn-tos .old-btn {
	margin-right: 30px;
	flex: 0 0 auto;
}
.old-form-group-btn-tos .old-tos a {
	border-bottom: 1px solid transparent;
	transition: all .3s;
}
.old-form-group-btn-tos .old-tos a:hover {
	border-bottom: 1px solid var(--primary-color);
}
input {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: center;
	-ms-align-items: center;
	align-items: center;
	width: 280px;
	height: 60px;
	padding: 0 10px;
	font-size: 16px;
	font-weight: normal;
	text-align: center;
	color: #0f0f0f;
	background-color: #ececec;
	border: none;
	border-radius: 4px;
}
input:focus {
	outline-color: #cacaca;
}
input:focus-visible,
textarea:focus-visible {
	outline: none;
}
/* Custom input */
.old-custom-text {
	position: relative;
	width: 100%;
	overflow: hidden;
	padding: 5px 0 0;
	margin: 0 0 calc( 0.005 * 100vw + 8.4px);
	background-color: transparent;
}
.old-custom-text__input {
	width: 100%;
	border: none;
	height: 50px;
	font-size: 16px;
	line-height: 1;
	color: #333333;
	font-weight: 500;
	padding: 0;
	text-align: left;
	background-color: transparent;
}
textarea.old-custom-text__input {
	height: 100px;
	padding-top: 20px;
}
.old-custom-text__input:focus {
	outline-color: transparent;
	border: none;
}
.old-custom-text__text {
  cursor: text;
  font-size: 16px;
  line-height: 1;
  color: #333333;
  font-weight: 500;
  position: absolute;
  left: 0;
  top: 16px;
  transition: 0.2s 0.15s, color 1s;
}
.old-custom-text__line {
  stroke-width: 2px;
}
.old-graphic {
  stroke: #d8d8d8;
  pointer-events: none;
  transition: stroke 0.7s, -webkit-transform 0.7s;
  transition: transform 0.7s, stroke 0.7s;
  transition: transform 0.7s, stroke 0.7s, -webkit-transform 0.7s;
  transition-timing-function: cubic-bezier(0, 0.25, 0.5, 1);
  position: absolute;
  top: 0;
  left: 0;
  fill: none;
}
.old-custom-text.old-active .old-custom-text__text {
  font-size: 12px;
  top: 2px;
  color: var(--primary-color);
}
.old-custom-text.old-active .old-graphic {
  stroke: var(--primary-color);
  -webkit-transform: translate3d(-66.6%, 0, 0);
  transform: translate3d(-66.6%, 0, 0);
}

/* Buttons */
.old-btn {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: max-content;
	min-width: 90px;
	margin: 0;
	padding: 12px 24px;
	font-size: 15px;
	letter-spacing: -0.01em;
	text-align: center;
	color: #fff;
	font-weight: 500;
	background: linear-gradient(90deg, var(--primary-color) -6.93%, var(--primary-light-color) 108.23%);
	box-shadow: 0 3px 7px rgb(0 0 0 / 15%);
	border: none;
	outline: none;
	border-radius: 4px;
	transition: 0.3s;
	overflow: hidden;
}
.old-btn:after {
	content: '';
  position: absolute;
  z-index: 2;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  transition: all 0.3s;
  opacity: 0;
}
.old-btn:hover {
	color: #fff;
	text-decoration: none;
	cursor: pointer;
}
.old-btn:hover:after {
	opacity: .12;
}
.old-btn-white {
	font-weight: 600;
	color: #fff;
	background: transparent;
	border: 2px solid #fff;
	border-radius: 4px;
}
.old-btn-white:hover {
	background: rgba(255,255,255,.2);;
}
.old-btn-small {
	padding: 6px 12px;
	font-size: 12px;
	font-weight: 500;
}
.old-btn-large {
	padding: 24px 48px;
	font-size: 18px;
	font-weight: 500;
}
.old-btn-fullwidth {
	width: 100%;
}
.old-btn-icon__before {
	/*margin-top: -2px;*/
	margin-right: 13px;
}
.old-btn-icon__after {
	/*margin-top: -2px;*/
	margin-left: 13px;
	font-size: 20px;
}
.old-btn-small .old-btn-icon__before {
	margin-right: 10px;
	font-size: inherit;
}
.old-btn-small .old-btn-icon__after {
	margin-left: 10px;
	font-size: inherit;
}
.old-btn-large .old-btn-icon__before {
	margin-right: 18px;
	font-size: 24px;
}
.old-btn-large .old-btn-icon__after {
	margin-left: 18px;
	font-size: 24px;
}

/*** Bg ***/
.old-bg-primary {
	padding-left: 5px;
	padding-right: 5px;
	background-color: var(--primary-color);
	color: #fff;
}

/*** FontAwesome ***/
.old-icon::before {
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
}

/*** Seciton lines ***/
.old-section-lines {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	background: repeating-linear-gradient(
	  to right,
	  rgba(255,255,255,0.05),
	  rgba(255,255,255,0.05) 1px,
	  transparent 2px,
	  transparent 10%
	);
}

/********************
Header
********************/

/*** Header top ***/
.old-main-header {
	position: relative;
	font-size: 14px;
}
.old-main-header-top {
	padding-top: 10px;
	padding-bottom: 10px;
}
.old-main-header-top__container {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
/* Header logo */
.old-main-header__logo {
	line-height: 1;
	color: var(--body-text-color);
	text-align: center;
}
.old-main-header__logo-title {
	margin-bottom: 0;
	font-family: var(--heading-font-family);
	font-weight: var(--heading-font-weight);
	font-size: 28px;
	text-transform: uppercase;
}
.old-main-header__logo-subtitle {
	margin-bottom: 0;
	font-family: var(--body-text-font-family);
	font-weight: var(--body-text-font-weight);
	font-size: 15px;
	text-transform: lowercase;
}
.old-logo:hover {
	color: var(--primary-color);
}
/* Header select city */
.old-main-header__city-select {
	margin-bottom: 0;
}
.old-city-select__link-icon {
	margin-right: 4px;
}
.old-city-select__link-city {
	position: relative;
}
.old-city-select__link-city:after {
	content: "";
  position: absolute;
  left: 1px;
  right: 0;
  bottom: -2px;
  border-top: 1px dashed var(--primary-light-color);
  transition: .3s;
}
.old-city-select__link:hover .old-city-select__link-city:after {
	border-top-color: transparent;
}
/* User account link  */
.old-user-account__link-icon {
	margin-top: -2px;
}
/* Header social & email */
.old-main-header__social-email {
	display: flex;
	align-items: center;
}
.old-main-header__social-list {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-right: 8px;
}
.old-main-header__social-item {
	margin-right: 5px;
}
.old-main-header__social-item-link-icon {
	width: 26px;
	height: 26px;
}
.old-main-header__email {
	margin-bottom: 0;
}
/* Header contacts */
.old-main-header__contacts {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
}
.old-phone {
	font-size: 22px;
	font-weight: bold;
	line-height: 1;
	color: var(--body-text-color);
}
.old-main-header__contacts-phone-mobile {
	margin-bottom: 3px;
}
.old-work-time {
	display: flex;
	align-items: center;
	font-size: 12px;
}
.old-work-time__icon {
	margin-top: 2px;
	width: 12px;
	height: 12px;
	transform: scale(1);
	margin-right: 5px;
	background: rgba(10,210,0,1);
  box-shadow: 0 0 0 0 rgba(10,210,0,1);
	border-radius: 50%;
	animation: pulse 2s infinite;
}
@keyframes pulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(10,210,0,0.7);
  }
  
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(10,210,0,0);
  }
  
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(10,210,0,0);
  }
}
.old-work-time__text-value {
	font-weight: 600;
}
/*** Main navigation ***/
.old-main-header__nav-wrapper {
	position: relative;
	display: flex;
	align-items: stretch;
	height: 60px;
	background-color: #fff;
	box-shadow: 9px 9px 19px rgb(155 163 178 / 7%);
}
.old-main-header__nav {
	display: flex;
}
.old-main-menu {
	display: flex;
	align-items: stretch;
	flex: 1;
}
.old-main-menu__item {
	display: flex;
	align-items: stretch;
	justify-content: center;
	margin-right: 25px;
}
.old-main-menu__item:last-child {
	margin-right: 0;
}
.old-main-menu__item-link {
	display: flex;
	align-items: center;
	padding: 0 12px;
	color: var(--body-text-color);
	font-weight: 600;
	font-size: 16px;
}
.old-main-menu__item-link:first-child {
	padding-left: 0;
}
.old-main-menu__item:hover .old-main-menu__item-link,
.old-main-menu__item_active .old-main-menu__item-link {
	color: var(--primary-color);
}
.old-main-menu__item-link-count {
	margin-left: 5px;
	font-size: 10px;
}
.old-main-header__order-btn {
	align-self: center;
}
/* Hamburger */
.old-hamburger {
	padding: 0;
	display: none;
	cursor: pointer;
	transition-property: opacity, filter;
	transition-duration: 0.15s;
	transition-timing-function: linear;
	font: inherit;
	color: inherit;
	text-transform: none;
	background-color: transparent;
	border: 0;
	margin: 0;
	overflow: visible;
}
.old-hamburger:hover {
	opacity: 0.7;
}
.old-hamburger.old-is-active:hover {
	opacity: 0.7;
}
.old-hamburger.old-is-active .old-hamburger-inner,
.old-hamburger.old-is-active .old-hamburger-inner::before,
.old-hamburger.old-is-active .old-hamburger-inner::after {
	background-color: #000;
}
.old-hamburger-box {
  width: 40px;
  height: 24px;
  display: inline-block;
  position: relative;
}
.old-hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px;
}
.old-hamburger-inner, .old-hamburger-inner::before, .old-hamburger-inner::after {
	width: 40px;
	height: 4px;
	background-color: #000;
	border-radius: 4px;
	position: absolute;
	transition-property: transform;
	transition-duration: 0.15s;
	transition-timing-function: ease;
}
.old-hamburger-inner::before, .old-hamburger-inner::after {
	content: "";
	display: block;
}
.old-hamburger-inner::before {
	top: -10px;
}
.old-hamburger-inner::after {
  bottom: -10px;
}
.old-hamburger--slider .old-hamburger-inner {
  top: 2px;
}
.old-hamburger--slider .old-hamburger-inner::before {
	top: 10px;
	transition-property: transform, opacity;
	transition-timing-function: ease;
	transition-duration: 0.15s;
}
.old-hamburger--slider .old-hamburger-inner::after {
	top: 20px;
}
.old-hamburger--slider.old-is-active .old-hamburger-inner {
	transform: translate3d(0, 10px, 0) rotate(45deg);
}
.old-hamburger--slider.old-is-active .old-hamburger-inner::before {
	transform: rotate(-45deg) translate3d(-5.71429px, -6px, 0);
	opacity: 0;
}
.old-hamburger--slider.old-is-active .old-hamburger-inner::after {
	transform: translate3d(0, -20px, 0) rotate(-90deg);
}
/* Mobile menu */
.old-main-header__nav-wrapper {
	width: 100%;
	z-index: 1;
}
.old-main-header__nav-wrapper.old-sticky {
	position: fixed;
	top: 0;
}
.old-mobile-menu-wrapper {
	display: none;
	position: absolute;
	left: 0;
	top: 60px;
	width: 100%;
	padding-top: 30px;
	padding-bottom: 30px;
	background-color: rgba(255, 255, 255, 0.98);
	border-top: 1px solid rgba(0, 0, 0, 0.04);
	box-shadow: 9px 9px 19px rgb(155 163 178 / 7%);
}
.old-mobile-menu-wrapper.old-is-active {
	display: block;
}
.old-main-header__nav {
	z-index: 2;
}
.old-mobile-menu {
	display: flex;
	flex-direction: column;
	align-items: center;
}
.old-mobile-menu__item {
	margin-bottom: 10px;
}
.old-mobile-menu__item:last-child {
	margin-bottom: 0;
}
.old-mobile-menu__item-link {
	font-size: 20px;
	font-weight: 500;
}

/********************
Page home
********************/
main {
	min-height: 800px;
}
.old-main_home {
	padding-top: 0;
}

.old-page__home h2 {
	margin-bottom: 20px;
	font-size: 50px;
	text-transform: uppercase;
}
.old-lead {
	margin-bottom: 20px;
	font-size: 22px;
}

/*** Capture block ***/
.old-capture-block {
	display: flex;
	padding-top: 100px;
	padding-bottom: 100px;
	min-height: 600px;
}
.old-capture-block__container {
	display: flex;
}
.old-capture-block__title {
	margin-bottom: 20px;
	font-size: 50px;
}
.old-capture-block__title-city {
	color: var(--primary-color);
}
.old-capture-block__img-inner {
	display: none;
}
.old-capture-block__img {
	display: flex;
}

/*** Services ***/
.old-services {
	position: relative;
	padding-top: 100px;
	padding-bottom: 30px;
	color: #fff;
	background-color: var(--primary-color);
}
.old-services__container {
	z-index: 2;
}
.old-services__lead {
	margin-bottom: 50px;
}
.old-services-list__section {
	position: relative;
	margin-bottom: 30px;
}
.old-services-list {
	display: flex;
	flex-wrap: wrap;
}
.old-service-list__item {
	display: flex;
	flex-direction: column;
	flex: 0 0 auto;
	width: calc(33.333% - 26.666px);
	margin-right: 40px;
	margin-bottom: 40px;
	color: var(--body-text-color);
	padding: 40px;
  background: #fff;
	border-radius: var(--block-border-radius);
  box-shadow: 0 40px 80px -40px rgb(20 37 63 / 50%);
  transition: all .3s;
}
.old-service-list__item:hover {
	transform: translateY(-10px);
}
.old-service-list__item:nth-child(3n) {
	margin-right: 0;
}
.old-services-list__right {
	padding-left: 100px;
}
.old-services-list__left {
	padding-right: 100px;
}
.old-services-list__label {
	position: absolute;
	top: calc(50% - 40px);
	transform: translateY(-50%);
	font-size: 30px;
	font-weight: 800;
	text-transform: uppercase;
}
.old-services-list__label-left {
	transform: rotate(-90deg);
	left: -20px;
}
.old-services-list__label-right {
	transform: rotate(90deg);
	right: -95px;
}
.old-service-list__item-title {
	min-height: 70px;
}
.old-service-list__item-btn {
	margin-top: auto;
}

/*** Projects ***/
.old-projects {
	padding-top: 100px;
	padding-bottom: 100px;
}
.old-projects__lead {
	margin-bottom: 50px;
}
.old-projects-list {
	display: flex;
	flex-wrap: wrap;
}
.old-projects-list__item {
	flex: 0 0 auto;
	width: calc(50% - 15px);
	margin-right: 30px;
	margin-bottom: 50px;
}
.old-projects-list__item:nth-child(2n) {
	margin-right: 0;
}
.old-projects-list__item-link {
	color: var(--body-text-color);
}
.old-projects-list__item-img {
	position: relative;
	margin-bottom: 20px;
  border-radius: 20px;
  overflow: hidden;
	transition: .3s;
}
.old-projects-list__item-img:after {
  content: "Перейти";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  background-color: var(--primary-color);
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #fff;
  transition: .3s;
  transform: scale(0);
}
.old-projects-list__item-title {
	font-size: 24px;
	font-weight: 600;
}
.old-projects-list__item:hover .old-projects-list__item-link {
	color: var(--body-text-color);
}
.old-projects-list__item:hover .old-projects-list__item-img {
	transform: scale(0.9);
}
.old-projects-list__item:hover .old-projects-list__item-img:after {
	transform: scale(1);
}
.old-projects-list__item-link.old-no-link .old-projects-list__item-img:after {
	display: none;
}
.old-projects-order-block {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-left: -50px;
	margin-right: -50px;
	padding: 60px 50px;
	color: #fff;
	background-color: var(--secondary-color);
	border-radius: var(--big-block-border-radius);
}
.old-projects-order-block__main-title {
	margin-bottom: 10px;
	font-family: var(--heading-font-family);
	font-size: 30px;
	font-weight: var(--heading-font-weight);
}
.old-projects-order-block__main-text {
	margin-bottom: 0;
	font-size: 18px;
}
.old-projects__btn {
	margin-top: -16px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 50px;
}

/*** About ***/
.old-about {
	position: relative;
	padding-top: 100px;
	padding-bottom: 100px;
	background-color: var(--primary-color);
}
.old-about__title,
.old-about__lead {
	color: #fff;
}
.old-features-list {
	display: flex;
	flex-wrap: wrap;
}
.old-about__features-list {
	margin-top: 50px;
	color: #fff;
}
.old-features-list__item {
	margin-bottom: 30px;
}
.old-features-list__item:nth-child(3n) {
	margin-right: 0;
}
.old-features-list__item-icon {
	margin-bottom: 20px;
}
.old-features-list__item-icon img {
	width: 200px;
	height: 200px;
}
.old-features-list__item-title {
	margin-bottom: 10px;
}
.old-features-list__item-desc {
	margin-bottom: 0;
}
.old-features-list__item.old-col-3 .old-features-list__item-icon img {
	width: 150px;
	height: 150px;
}

/*** Clients ***/
.old-clients__home {
	position: relative;
	min-height: 600px;
	padding-top: 100px;
	padding-bottom: 100px;
	color: #fff;
	background: var(--secondary-color);
}
.old-clients__lead {
	margin-bottom: 50px;
}
.old-clients-list__item {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 50px;
	padding-left: 30px;
	padding-right: 30px;
}
.old-clients-list__item-img {
	max-height: 100px;
	opacity: 0.7;
	transition: all 0.3s;
}
.old-clients-list__item-img:hover {
	cursor: pointer;
	opacity: 1;
}

/*** Reviews ***/
.old-reviews__home {
	padding-top: 100px;
	padding-bottom: 100px;
}
h2.old-reviews__h2 {
	margin-bottom: 50px;
}
.old-reviews__block {
	width: 1100px;
	height: 100%;
	margin-left: auto;
	margin-right: auto;
	padding: 60px 40px;
	background-color: var(--secondary-color);
	border-radius: 24px;
}
.old-reviews__block-title {
	font-weight: 900;
	text-align: center;
	color: #fff;
}
.old-reviews-list {
	width: 1296px;
	margin-left: -138px;
	margin-bottom: 50px;
}
.old-reviews-list__item {
	display: flex !important;
	flex-direction: column;
	max-width: 468px;
	height: inherit !important;
	margin: 0 20px;
	padding: 50px 40px;
	background-color: #fff;
	box-shadow: 0 20px 40px -20px rgb(20 37 63 / 50%);
	border-radius: 12px;
}
.old-reviews-list__item-text {
	margin-bottom: 40px;
	font-size: 18px;
}
.old-reviews-list__item-client {
	display: flex;
}
.old-reviews-list__item-client-photo {
	flex: 0 0 auto;
	width: 100px;
	height: 100px;
	margin-right: 20px;
	border-radius: 50%;
	box-shadow: 0 6px 24px -5px rgb(20 37 63 / 50%);
	overflow: hidden;
}
.old-reviews-list__item-client-photo img {
	border-radius: 50%;
}
.old-reviews-list__item-client-body {
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: calc(100% - 100px - 20px);
}
.old-reviews-list__item-client-name {
	margin-bottom: 10px;
	font-size: 14px;
	font-weight: bold;
}
.old-reviews-list__item-client-position {
	margin-bottom: 0;
	font-size: 12px;
}
.old-reviews-block_btn {
	margin-left: auto;
	margin-right: auto;
}
.old-reviews-list .slick-list {
  margin: 0 -20px;
}
.old-reviews-list .slick-track {
  display: flex !important;
  padding-top: 40px;
  padding-bottom: 40px;
}
.old-reviews-list .slick-prev,
.old-reviews-list .slick-next {
    width: 40px;
    height: 40px;
    top: auto;
    bottom: -40px;
    z-index: 1;
}
.old-reviews-list .slick-prev {
  left: calc(50% - 45px);
}
.old-reviews-list .slick-next {
  right: calc(50% - 45px);
}
.old-reviews-list .slick-prev:before,
.old-reviews-list .slick-next:before {
    font-size: 40px;
}

/*** Order ***/
.old-order {
	padding-top: 100px;
	padding-bottom: 100px;
	background-color: #f4f8ff;
}
.old-order_lead {
	margin-bottom: 50px;
}
.old-order-form-section {
	margin-bottom: 20px;
}
.old-order-form-section__title {
	font-weight: bold;
}
.old-order-form-section__desc {
	margin-bottom: 30px;
}
.old-form-group-checkbox-row,
.old-form-group-radio-row {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
}
.old-custom-checkbox_big,
.old-custom-radio_big {
	margin: 0 15px 15px 0;
}
.old-custom-checkbox input,
.old-custom-radio input {
	display: none;
}
.old-custom-checkbox__wrap,
.old-custom-radio__wrap {
	display: flex;
	flex-direction: row;
	align-items: center;
}
.old-custom-checkbox__wrap,
.old-custom-radio__wrap {
	cursor: pointer;
  border: 2px solid #EBEBEB;
  border-radius: 8px;
  background: #FFFFFF;
  padding: calc(0.005 * 100vw + 8.4px);
  transition: .3s;
}
.old-custom-checkbox__fake,
.old-custom-radio__fake {
	display: block;
  position: relative;
  background: #FFFFFF;
  border: 1px solid #E3E7EC;
  border-radius: 5px;
  width: calc(0.0025 * 100vw + 19.2px);
  height: calc(0.0025 * 100vw + 19.2px);
  margin-right: calc(0.0025 * 100vw + 7.2px);
  transition: .3s;
}
.old-custom-checkbox__fake::after,
.old-custom-radio__fake::after {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	border-radius: 3px;
	background-color: var(--primary-color);
	opacity: 0;
	transition: .3s;
	background-image: url("/assets/templates/old/img/icons/icon-check.svg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: calc( 0.00313 * 100vw + 9px);
}
.old-custom-checkbox__name,
.old-custom-radio__name {
  font-size: calc(0.00125 * 100vw + 13.6px);
  color: #333333;
  line-height: calc(0.00125 * 100vw + 21.6px);
}
.old-custom-checkbox:hover .old-custom-checkbox__wrap,
.old-custom-checkbox:focus .old-custom-checkbox__wrap,
.old-custom-checkbox input:checked + .old-custom-checkbox__wrap,
.old-custom-radio:hover .old-custom-radio__wrap,
.old-custom-radio:focus .old-custom-radio__wrap,
.old-custom-radio input:checked + .old-custom-radio__wrap {
	border-color: var(--primary-color);
}
.old-custom-checkbox:hover .old-custom-checkbox__fake,
.old-custom-checkbox:focus .old-custom-checkbox__fake,
.old-custom-checkbox input:checked + .old-custom-checkbox__wrap .old-custom-checkbox__fake,
.old-custom-radio:hover .old-custom-radio__fake,
.old-custom-radio:focus .old-custom-radio__fake,
.old-custom-radio input:checked + .old-custom-radio__wrap .old-custom-radio__fake {
	border-color: var(--primary-color);
}
.old-custom-checkbox input:checked + .old-custom-checkbox__wrap .old-custom-checkbox__fake::after,
.old-custom-radio input:checked + .old-custom-radio__wrap .old-custom-radio__fake::after {
	opacity: 1;
}
.old-order-form .old-custom-text {
	background-color: #f4f8ff;
}
.old-order-form-section-contacts {
	max-width: 840px;
	margin-bottom: 20px;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.old-order-form-section-contacts .old-custom-text {
	width: 45%;
	margin-bottom: 40px;
}
.old-order-form .old-form-group-btn-tos {
	max-width: 840px;
}
.old-order-form .old-custom-text-textarea {
	max-width: 840px;
}

/*** Contacts ***/
.old-contacts-home {
	padding-top: 100px;
	padding-bottom: 100px;
	background-color: #fff;
}
.old-contacts-block-wrapper {
	max-width: 1810px;
	background-color: #F7F8F9;
	border-radius: 20px;
}
.old-contacts-block {
	display: flex;
	flex-wrap: wrap;
	padding-top: 50px;
	padding-bottom: 50px;
}
.old-contacts-block__content {
	flex: 0 0 auto;
	width: 500px;
	margin-right: 100px;
}
.old-contacts__map {
	flex: 0 0 auto;
	width: calc(100% - 500px - 100px);
	min-height: 415px;
	border-radius: 10px;
	overflow: hidden;
}
.old-contacts__phone .old-phone {
	font-size: 28px;
	font-weight: bold;
	color: var(--body-text-color);
}
.old-contacts__phone .old-phone:hover {
	color: var(--primary-color);
}
.old-contacts__email {
	margin-bottom: 30px;
}
.old-contacts__email .old-email {
	font-size: 18px;
	color: var(--body-text-color);
	border-bottom: 1px solid var(--primary-color);
}
.old-contacts__email .old-email:hover {
	color: var(--primary-color);
}
.old-contacts__social-list {
	display: flex;
	flex-wrap: wrap;
}
.old-contacts__social-item {
	margin-right: 10px;
}
.old-contacts__social-item:last-child {
	margin-right: 10px;
}
.old-contacts__social-item-link {
	display: flex;
	width: 30px;
	height: 30px;
}

/********************
Simple page
********************/

/*** Main content ***/
.old-content {
	padding: 40px 30px;
	background-color: #fff;
	box-shadow: 9px 9px 19px rgb(155 163 178 / 7%);
	border-radius: 20px;
}
.old-content ul,
.old-content ol {
	padding-left: 15px;
}
.old-content ol {
	list-style-type: decimal;
}

/********************
About
********************/

/*** Team ***/
.old-team-list {
	display: flex;
	flex-wrap: wrap;
}
.old-team-list__item {
	flex: 0 0 auto;
	width: calc(20% - 16px);
	margin-right: 20px;
	margin-bottom: 20px;
	background: #fff;
	border-radius: var(--block-border-radius);
  box-shadow: 0 40px 80px -40px rgb(20 37 63 / 50%);
  overflow: hidden;
  transition: all .3s;
}
.old-team-list__item:nth-child(5n) {
	margin-right: 0;
}
.old-team-list__item-content {
	padding: 20px;
}
.old-team-list__item-name {
	margin-bottom: 5px;
	font-weight: bold;
}
.old-team-list__item-job-title {
	margin-bottom: 0;
	font-size: 14px;
}
.old-team-list__item:hover {
	box-shadow: 0 30px 80px -30px rgb(20 37 63 / 70%);
}

/********************
Footer
********************/
.old-main-footer {
	padding-top: 50px;
	padding-bottom: 50px;
	background-color: var(--primary-color);
}
.old-main-footer__container {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}
.old-main-footer__logo {
	line-height: 1;
	color: #fff;
	text-align: center;
}
.old-main-footer__logo-title {
	margin-bottom: 0;
	font-family: var(--heading-font-family);
	font-weight: var(--heading-font-weight);
	font-size: 28px;
	text-transform: uppercase;
}
.old-main-footer__logo-subtitle {
	margin-bottom: 0;
	font-family: var(--body-text-font-family);
	font-weight: var(--body-text-font-weight);
	font-size: 15px;
	text-transform: lowercase;
}
.old-main-footer__logo:hover {
	color: rgba(255,255,255,0.7);
}
.old-footer-menu {
	display: flex;
	flex-wrap: wrap;
}
.old-footer-menu__item {
	margin-right: 20px;
}
.old-footer-menu__item:last-child {
	margin-right: 0;
}
.old-footer-menu__item-link {
	font-weight: 600;
	color: rgba(255,255,255,0.7);
}
.old-footer-menu__item-link:hover {
	color: rgba(255,255,255,1);
}
.old-main-footer__contacts {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
}
.old-main-footer__contacts-phone-main,
.old-main-footer__contacts-phone-mobile,
.old-main-footer__contacts-email {
	color: #fff;
}
.old-main-footer__contacts-phone-mobile {
	margin-bottom: 10px;
}
.old-main-footer__contacts-phone-main:hover,
.old-main-footer__contacts-phone-mobile:hover,
.old-main-footer__contacts-email:hover {
	color: rgba(255,255,255,0.7);
}

/********************
Misc
********************/

/*** Scroll to top button ***/
#scrollToTop,
#scrollToNextSection {
	position: fixed;
	bottom: 30px;
	right: 30px;
	z-index: 1000;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	text-align: center;
	text-decoration: none;
	background-color: var(--primary-color);
	border-radius: 50%;
	opacity: 0;
	visibility: hidden;
	transition: background-color .3s, opacity .5s, visibility .5s;
}
#scrollToTop::before,
#scrollToNextSection::before {
  font: var(--fa-font-solid);
  font-size: 20px;
  color: #fff;
  content: "\f062";
}
#scrollToTop:hover,
#scrollToNextSection:hover {
	background-color: var(--primary-light-color);
	cursor: pointer;
}
#scrollToTop:active,
#scrollToNextSection:active {
	background-color: var(--secondary-color);
}
#scrollToTop.old-show,
#scrollToNextSection.old-show {
	opacity: 1;
	visibility: visible;
}

/*** Scroll to top button ***/
#scrollToNextSection {
	bottom: 100px;
}
#scrollToNextSection::before {
	transform: rotate(180deg);
}

/********************
Modal
********************/
.old-modal {
	max-width: 430px;
	padding: 50px 70px;
	border-radius: 15px;
}
.old-modal h3 {
	margin-bottom: 30px;
	text-align: center;
}
.old-modal .old-btn {
	margin-left: auto;
	margin-right: auto;
}

/*** cfCities modal ***/
#cfModal {
	width: 1000px;
	max-width: 1000px;
}
.old-cfModal__title {
	font-size: 18px;
}
#cfModal .old-cf-cities {
	columns: 5;
	-webkit-columns: 5;
	-moz-columns: 5;
}

/********************
Media
********************/
@media (max-width: 1399px) {
	.old-service-list__item-title {
		font-size: 22px;
	}
	.old-projects-order-block {
		margin-left: 0px;
		margin-right: 0px;
	}
	.old-reviews-list {
			width: 1000px;
			margin-left: auto;
			margin-right: auto;
	}
	.old-reviews-list__item {
		max-width: 100%;
	}
}
@media (max-width: 1199px) {
	.old-capture-block__title,
	.old-page__home h2 {
		font-size: 40px;
	}
	.old-lead {
		font-size: 20px;
	}
	.old-capture-block__img {
		align-items: center;
	}
	.old-services-list__label {
		position: relative;
		left: 0;
		transform: none;
		margin-bottom: 20px;
	}
	.old-services-list__right {
		padding-left: 0;
	}
	.old-services-list__left {
		padding-right: 0;
	}
	.old-reviews__block,
	.old-reviews-list {
		width: 100%;
	}
	.old-contacts-block-wrapper {
		border-radius: 0;
	}
	.old-contacts-block__content {
		width: 400px;
		margin-right: 50px;
	}
	.old-contacts__map {
		width: calc(100% - 400px - 50px);
	}
}
@media (max-width: 991px) {
	.old-logo-wrapper {
		text-align: center;
	}
	.old-main-header__logo {
		display: flex;
		flex-direction: column;
		margin-bottom: 3px;
	}
	.old-cf-city__more-cities {
		display: none;
	}
	.old-city-select__link {
		font-size: 10px;
	}
	.old-main-header__social-item-link-icon {
		width: 30px;
		height: 30px;
	}
	.old-main-header__nav {
		justify-content: space-between;
	}
	.old-main-menu {
		display: none;
	}
	.old-hamburger {
		display: inline-block;
	}
	.old-capture-block__title,
	.old-page__home h2 {
    font-size: 32px;
    text-align: center;
	}
	.old-lead {
    font-size: 18px;
	}
	.old-capture-block {
		min-height: auto;
	}
	.old-capture-block__title br {
		display: none;
	}
	.old-capture-block__img {
		display: none;
	}
	.old-capture-block__img-inner {
		display: block;
		margin-bottom: 20px;
		text-align: center;
	}
	.old-capture-block__img-inner img {
		max-width: 500px;
	}
	.old-capture-block__order-btn {
		margin-left: auto;
		margin-right: auto;
	}
	.old-service-list__item {
		width: calc(50% - 15px);
    margin-right: 30px;
	}
	.old-service-list__item:nth-child(2n) {
		margin-right: 0;
	}
	.old-service-list__item:nth-child(3n) {
    margin-right: 30px;
	}
	.old-features-list__item-icon {
		text-align: center;
	}
	.old-features-list__item-title {
		font-size: 20px;
		text-align: center;
	}
	.old-features-list__item-icon img {
		width: 100px;
		height: 100px;
	}
	.old-projects-order-block {
		padding: 40px 30px;
	}
	.old-projects-order-block__main-wrapper {
		margin-right: 20px;
	}
	.old-projects-order-block__main-title {
		font-size: 24px;
	}
	.old-reviews__block-title {
		font-size: 26px;
	}
	.old-contacts-home {
		padding-bottom: 0;
	}
	.old-contacts-block__content {
		width: 300px;
		margin-right: 20px;
	}
	.old-contacts__map {
    width: calc(100% - 300px - 20px);
	}
	.old-main-footer__container {
		flex-direction: column;
		justify-content: center;
	}
	.old-main-footer__logo,
	.old-main-footer__nav-wrapper {
		margin-bottom: 20px;
	}
	.old-main-footer__contacts {
		justify-content: center;
		align-items: center;
	}
}
@media (max-width: 767px) {
	.old-mobile-menu {
		margin-bottom: 20px;
	}
  .old-main-header__social-email {
    justify-content: center;
  }
	.old-main-header__email {
		text-align: center;
	}
	.old-capture-block,
	.old-services,
	.old-projects,
	.old-about,
	.old-clients__home,
	.old-reviews__home,
	.old-order,
	.old-contacts-home {
		padding-top: 50px;
		padding-bottom: 50px;
	}
	.old-services-list__section_last,
	.old-services-list__section_last .old-service-list__item:last-child {
		margin-bottom: 0;
	}
	.old-service-list__item {
		width: 100%;
		margin-right: 0;
	}
	.old-service-list__item-title {
		min-height: auto;
		margin-bottom: 10px;
	}
	.old-projects-list__item {
		width: 100%;
		margin-right: 0;
	}
	.old-projects-order-block {
		flex-direction: column;
	}
	.old-projects-order-block__main-wrapper {
		margin-right: 0;
		margin-bottom: 20px;
		text-align: center;
	}
	.old-features-list__item-desc {
		text-align: center;
	}
	.old-about__features-list_last .old-features-list__item:last-child {
		margin-bottom: 0;
	}
	.old-clients__home,
	.old-contacts-home {
		padding-bottom: 0;
	}
	.old-contacts-block {
		flex-wrap: wrap;
	}
	.old-contacts-block__content,
	.old-contacts__map {
		width: 100%;
	}
	.old-contacts-block__content {
		margin-bottom: 50px;
	}
	.old-footer-menu {
		justify-content: center;
	}
	.old-footer-menu__item {
		margin-bottom: 10px;
	}
}
@media (max-width: 575px) {
	.old-phone {
		font-size: 18px;
	}
	.old-work-time {
		font-size: 10px;
	}
	.old-capture-block__img-inner img {
		max-width: 100%;
	}
	.old-capture-block__title,
	.old-page__home h2 {
		font-size: 26px;
	}
	.old-lead {
		font-size: 16px;
	}
	.old-services-list__label {
		font-size: 22px;
	}
	.old-projects-order-block__btn {
		width: 100%;
	}
	.old-reviews__block {
		padding: 30px;
	}
	.old-reviews-list__item {
		padding: 30px;
	}
	.old-reviews-list__item-text {
		font-size: 16px;
	}
	.old-order-form-section-contacts {
		flex-wrap: wrap;
	}
	.old-order-form-section-contacts .old-custom-text {
		width: 100%;
		margin-right: 0;
	}
	.old-order-form-section-contacts .old-custom-text:last-child {
		margin-bottom: 0;
	}
	.old-form-group-btn-tos {
		flex-wrap: wrap;
	}
	.old-form-group-btn-tos .old-btn {
		order: 2;
		margin-right: 0;
	}
	.old-form-group-btn-tos .old-tos {
		order: 1;
		width: 100%;
		margin-bottom: 20px;
	}
	.old-order-form-section_services .old-form-group-checkbox,
	.old-order-form-section_budget .old-form-group-checkbox {
		flex-wrap: wrap;
	}
	.old-order-form-section_services .old-form-group-checkbox .old-custom-checkbox {
		width: 100%;
		margin-right: 0;
	}
	.old-order-form-section_budget .old-form-group-radio .old-custom-radio {
		width: calc(50% - 7.5px);
	}
	.old-order-form-section_budget .old-form-group-radio .old-custom-radio:nth-child(2n) {
		margin-right: 0;
	}
	.old-footer-menu {
		flex-direction: column;
	}
	.old-footer-menu__item {
		margin-right: 0;
		text-align: center;
	}
	.old-modal {
		padding: 40px;
	}
}
@media (max-width: 399px) {
	.old-main-header__logo-title {
		font-size: 20px;
	}
	.old-main-header__logo-subtitle {
		font-size: 11px;
	}
	.old-phone {
		font-size: 14px;
	}
  .old-main-header__order-btn {
    width: auto;
    max-width: 230px;
    padding: 10px 12px;
    font-size: 12px;
  }
	.old-callback {
		font-size: 12px;
	}
	.old-reviews__block {
		padding: 25px 10px;
	}
	.old-reviews-list__item {
		padding: 20px 10px;
	}
	.old-reviews-list__item-client {
		flex-wrap: wrap;
		justify-content: center;
	}
	.old-reviews-list__item-client-photo {
		margin-right: 0;
		margin-bottom: 20px;
	}
	.old-reviews-list__item-client-body {
		width: 100%;
		text-align: center;
	}
	.old-order-form-section_budget .old-form-group-radio .old-custom-radio {
    width: calc(100%);
    margin-right: 0;
	}
}

/********************* BEM *********************/

/********************
General
********************/

/* Links */
a {
	color: var(--primary-color);
}
a,
button,
.old-link {
	transition: all 0.3s;
	text-decoration: none;
}
a:hover {
	color: var(--primary-color);
	text-decoration: none;
}
.old-link {
	border-bottom: 1px solid transparent;
}
.old-link:hover {
	border-bottom-color: var(--primary-color);
}

/* Headings */
.old-title {
	font-family: var(--heading-font-family);
	font-weight: var(--heading-font-weight);
	line-height: 1.2;
}
.old-title_h1 {
	margin-bottom: 0;
	font-size: 36px;
}

/*** Common blocks ***/
.old-block {
	background-color: #fff;
	border-radius: 20px;
	box-shadow: 9px 9px 19px rgb(155 163 178 / 7%);
	transition: all .3s;
}
.old-block_hover:hover {
	box-shadow: 10px 10px 20px rgb(155 163 178 / 15%);
}
/* Pagination */
.old-pagination {
	display: flex;
}
.old-page-item {
	margin-right: 3px;
}
.old-page-link {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 30px;
	height: 30px;
	padding: 3px 8px;
	border-radius: 3px;
	color: var(--body-text-color);
	background-color: #fff;
	box-shadow: 9px 9px 19px rgb(155 163 178 / 7%);
}
.old-page-link:hover {
	box-shadow: 10px 10px 20px rgb(155 163 178 / 15%);
}
.old-page-item.old-active .old-page-link,
.old-page-item:hover .old-page-link {
	color: #fff;
	background-color: var(--primary-color);
	box-shadow: 10px 10px 20px rgb(155 163 178 / 15%);
}
.old-page-item.old-disabled .old-page-link {
	background-color: rgba(0, 0, 0, 0.1);
}
.old-page-item.old-disabled .old-page-link:hover {
	color: var(--body-text-color);
}

/*** Structure ***/
main {
	padding-top: 50px;
	padding-bottom: 50px;
}
.old-section {
	padding-top: 100px;
	padding-bottom: 100px;
}
.old-section__title {
  margin-bottom: 20px;
  font-size: 50px;
  text-transform: uppercase;
}

/*** Breadcrumbs ***/
.old-breadcrumbs {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	margin-bottom: 30px;
}
.old-breadcrumbs__item:after {
	content: '/';
	margin-left: 5px;
	margin-right: 5px;
	font-size: 10px;
	color: rgba(0, 0, 0, 0.7);
}
.old-breadcrumbs__item_active:after {
	display: none;
}
.old-breadcrumbs__item-name {
	font-size: 12px;
	border-bottom: 1px solid transparent;
	transition: all .3s;
}
.old-breadcrumbs__item-link:hover .old-breadcrumbs__item-name {
	border-bottom-color: var(--primary-color);
}

/********************
Portfolio page
********************/

.old-portfolio__row {
	margin-bottom: 10px;
}
.old-portfolio__col {
	display: flex;
	flex-direction: column;
	margin-bottom: 24px;
}
.old-portfolio__item {
	flex: 1 1 auto;
	display: flex;
	flex-direction: column;
	color: var(--body-text-color);
	overflow: hidden;
}
.old-portfolio__item-img {
	position: relative;
}
.old-portfolio__item-view-block {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	font-weight: bold;
	color: #fff;
	opacity: 0;
	transition: all .3s;
}
.old-portfolio__item:hover .old-portfolio__item-view-block {
	opacity: 1;
	background-color: rgba(0, 0, 0, 0.7);
}
.old-portfolio__item-body {
	padding: 30px 20px;
}
.old-portfolio__item-title {
	font-size: 18px;
}
.old-portfolio__item-desc {
	margin-bottom: 0;
}
.old-portfolio__item:hover .old-portfolio__item-desc {
	color: var(--body-text-color);
}
.old-portfolio__item-prop-list {
	position: absolute;
	left: 0;
	bottom: 0;
	display: flex;
	flex-wrap: wrap;
	padding: 10px 15px;
}
.old-portfolio__item-prop-list-item {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 15px;
	font-size: 13px;
	font-weight: 600;
	border: 2px solid var(--primary-color);
	color: #fff;
	background-color: var(--primary-color);
	border-radius: 15px;
	transition: all .3s;
}
.old-portfolio__item:hover .old-portfolio__item-prop-list-item {
	background-color: transparent;
	border-color: #fff;
}

/********************
Project page
********************/

/*** Project intro ***/
.old-project-intro {
	padding: 30px;
	margin-bottom: 100px;
}
.old-project-props {
	margin-bottom: 30px;
}
.old-project-props__item {
	margin-bottom: 5px;
}
.old-project-intro__desc-title {
	font-size: 18px;
}

/*** Project Content ***/
.old-project-content {
	padding: 0 50px;
}
.old-project-content__title {
	text-align: center;
}
.old-project-gallery__item {
	display: flex;
	margin-bottom: 20px;
}

/********************
Clients page
********************/

.old-clients {
	padding: 30px 20px;
	padding-bottom: 0;
	padding-bottom: 10px;
	background-color: var(--secondary-color);
	border-radius: 20px;
}

/********************
Reviews page
********************/

/********************
Contacts page
********************/

.old-contacts {
	display: flex;
	flex-wrap: wrap;
	padding: 30px;
}
.old-contacts__content {
	flex: 0 0 auto;
	width: 500px;
	margin-right: 100px;
}

/********************
Media
********************/
@media (max-width: 1399px) {

}
@media (max-width: 1199px) {

	/********************
	General
	********************/

	/*** Structure ***/
	.old-section {
		padding-top: 70px;
		padding-bottom: 70px;
	}
	.old-section__title {
		font-size: 40px;
	}

	/********************
	About
	********************/

	/*** Team ***/
	.old-team-list__item {
		width: calc(25% - 15px);
	}
	.old-team-list__item:nth-child(5n) {
		margin-right: 20px;
	}
	.old-team-list__item:nth-child(4n) {
		margin-right: 0px;
	}

	/********************
	Contacts
	********************/

	.old-contacts__content {
		width: 400px;
		margin-right: 50px;
	}

}
@media (max-width: 991px) {

	/********************
	General
	********************/

	/*** Structure ***/
	.old-section {
		padding-top: 60px;
		padding-bottom: 60px;
	}
	.old-section__title {
		font-size: 32px;
	}

	/********************
	About
	********************/

	/*** Team ***/
	.old-team-list__item {
		width: calc(33.33% - 13.33px);
	}
	.old-team-list__item:nth-child(4n) {
		margin-right: 20px;
	}
	.old-team-list__item:nth-child(3n) {
		margin-right: 0px; 	
	}

	/********************
	Contacts
	********************/
	
	.old-contacts__content {
		width: 300px;
		margin-right: 20px;
	}

}
@media (max-width: 767px) {

	/********************
	General
	********************/

	/* Headings */
	.old-title_h1 {
		font-size: 30px;
	}

	/*** Structure ***/
	main {
		padding-top: 30px;
		padding-bottom: 30px;
	}
	.old-section {
		padding-top: 50px;
		padding-bottom: 50px;
	}

	/********************
	Project
	********************/

	/*** Project intro ***/
	.old-project-intro__img {
		order: 1;
		margin-bottom: 30px;
	}
	.old-project-intro__main {
		order: 2;
	}

	/********************
	About
	********************/

	/*** Team ***/
	.old-team-list__item {
		width: calc(50% - 10px);
	}
	.old-team-list__item:nth-child(3n) {
		margin-right: 20px; 	
	}
	.old-team-list__item:nth-child(2n) {
		margin-right: 0px; 	
	}

	/********************
	Contacts
	********************/

	.old-contacts__content {
		width: 100%;
		margin-right: 0;
		margin-bottom: 50px;
	}

}
@media (max-width: 575px) {

	/********************
	General
	********************/

	/* Headings */
	.old-title_h1 {
		font-size: 24px;
	}

	/*** Structure ***/
	.old-section__title {
		font-size: 26px;
	}

	/********************
	Contacts
	********************/

	.old-contacts {
		padding: 20px;
	}

}
@media (max-width: 399px) {
	
	/********************
	General
	********************/

	/* Headings */
	.old-title_h1 {
		font-size: 20px;
	}

	/********************
	Project
	********************/

	/*** Project intro ***/
	.old-project-intro {
		padding: 20px;
	}

	/********************
	About
	********************/

	/*** Team ***/
	.old-team-list__item {
		width: 100%;
		margin-right: 0;
	}

}
