@font-face {
	font-family: 'ProximaNova-Regular';
	font-display: auto;
	src: url("../fonts/ProximaNova-Regular.ttf") format("truetype");
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'ProximaNova-Bold';
  font-display: auto;
  src: url("../fonts/ProximaNova-Bold.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
	font-family: 'ProximaNova-Semibold';
  font-display: auto;
  src: url("../fonts/ProximaNova-Semibold.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
	font-family: 'Lato-Semibold';
  font-display: auto;
  src: url("../fonts/Lato-Semibold.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

html, body {
	margin: 0;
	padding: 0;
}

body {
	font-family: "ProximaNova-Regular", Tahoma, sans-serif;
	background: #000; /* Чёрный фон страницы */
	color: #ccc; /* Светло‑серый основной текст */
	font-size: 14px;
	min-width: 350px;
}

h1,
h2,
h3 {
	all: unset;
	display: block;
}

.fixed_size {
	width: 100%;
	max-width: 1150px;
	margin: 0 auto;
}

.layout {
	overflow: hidden;
}

.layout__header {
	background: #000;
	background-size: cover;
	height: 978px;
	position: relative;
	background-position: bottom;
	/* Если нужна картинка-фон, она останется, но поверх неё будет затемнение */
	position: relative;
}
.layout__header::before {
	content: "";
	position: absolute;
	top: 0; left: 0; right: 0; bottom: 0;
	background: rgba(0,0,0,.7); /* Полупрозрачный чёрный слой поверх фона */
	z-index: 1;
}

.layout__header .header__menu {
	padding: 50px 50px 0 50px;
	position: relative;
	z-index: 2;
}

.layout__header .header__menu__flexbox {
	display: inline-block;
}

.layout__header .header__menu .menu__logo {
	display: flex;
	text-decoration: none;
	color: #fff;
	align-items: center;
	justify-content: space-between;
}

.layout__header .header__menu .menu__logo .logo__image {
	background: url("../images/Logo-1x.png") no-repeat;
	background-size: contain;
	width: 57px;
	height: 41px;
	display: inline-block;
	filter: grayscale(100%); /* Монохромная версия логотипа */
}

.layout__header .header__menu .menu__logo .logo__text {
	font-family: 'ProximaNova-Semibold';
	display: inline-block;
	text-transform: uppercase;
	vertical-align: top;
	line-height: 43px;
	margin-left: 16px;
	font-size: 16px;
	letter-spacing: 1px;
	color: #fff; /* Белый текст логотипа */
}

.layout__header .header__menu .menu__mobile {
	display: inline-block;
	float: right;
	cursor: pointer;
	margin: 5px;
	display: none;
}

.layout__header .header__menu .menu__mobile svg {
	width: 24px;
	height: 24px;
	fill: #fff;
}

.layout__header .header__menu .menu__container {
	display: inline-block;
	float: right;
}

.layout__header .header__menu .menu__container a {
	color: #ddd; /* Светло‑серый цвет ссылок меню */
	text-decoration: none;
	padding: 0px 16px;
	display: inline-block;
	line-height: 45px;
	font-family: 'ProximaNova-Semibold';
	text-transform: uppercase;
	font-size: 12px;
	letter-spacing: 1px;
	position: relative;
	padding-left: 0;
}

.layout__header .header__menu .menu__container a span {
	position: relative;
	top: 0;
	transition: top 300ms;
}

.layout__header .header__menu .menu__container a:hover span {
	top: -3px;
}

.layout__header .header__description {
	max-width: 600px;
	color: #fff;
	margin-top: 165px;
	padding: 0 50px;
	position: relative;
	z-index: 2;
}

.layout__header .header__description .description__title {
	font-family: 'ProximaNova-Semibold';
	font-size: 50px;
	color: #fff;
}

.layout__header .header__description .description__text {
	color: #ccc;
	font-size: 20px;
	margin-top: 15px;
	line-height: 1.5em;
	max-width: 400px;
}

.layout__header .header__description .description__button {
	background: #222; /* Тёмно‑серый вместо красного градиента */
	font-family: 'ProximaNova-Semibold';
	color: #fff;
	text-decoration: none;
	line-height: 70px;
	display: inline-block;
	border-radius: 5px;
	margin-top: 30px;
	text-transform: uppercase;
	font-size: 16px;
	box-shadow: 0 4px 12px rgba(0,0,0,0.6);
	position: relative;
	top: 0;
	transition: top 300ms, background 300ms, box-shadow 300ms;
	width: 260px;
	text-align: center;
}

.layout__header .header__description .description__button:hover {
	top: -3px;
	background: #444;
	box-shadow: 0 6px 18px rgba(0,0,0,0.7);
}

/* Анимация кнопки осталась, но без цветного свечения — только тень */
@-webkit-keyframes description__button-animation {
	0% {
		box-shadow: 0px 2px 15px 6px rgba(0,0,0,0.5);
	}
	50% {
		box-shadow: 0px 2px 15px -4px rgba(0,0,0,0.4);
	}
	100% {
		box-shadow: 0px 2px 15px 6px rgba(0,0,0,0.5);
	}
}

.layout__about {
	background: url("../images/about-bg.jpg") no-repeat;
	padding-bottom: 300px;
	background-size: cover;
	background-position: bottom center;
	position: relative;
}
/* Затемнение фона секции About для контраста текста */
.layout__about::before {
	content: "";
	position: absolute;
	top: 0; left: 0; right: 0; bottom: 0;
	background: rgba(0,0,0,.8);
	z-index: 1;
}
.layout__about .fixed_size {
	max-width: 1300px;
	position: relative;
	z-index: 2;
}

.layout__about .about__image {
	width: 787px;
	height: 842px;
	position: absolute;
	left: -120px;
	bottom: -390px;
	filter: grayscale(100%); /* Ч/б картинка */
}

.layout__about .about__description {
	margin: 0 30px 0 50%;
	padding-top: 150px;
	position: relative;
	z-index: 2;
}

.layout__about .about__description .description__title {
	font-family: 'ProximaNova-Semibold';
	font-size: 40px;
	color: #fff;
}

.layout__about .about__description .description__text {
	color: #aaa;
	font-size: 18px;
	margin-top: 40px;
	line-height: 30px;
}

.layout__about .about__description .description__table {
	display: flex;
	justify-content: center;
	align-content: space-between;
	flex-direction: row;
	margin-top: 80px;
}

.layout__about .about__description .description__table .table__item {
	margin: 0 auto;
	border-right: 1px solid #444; /* Тонкая серая линия */
	padding: 0 30px;
	text-align: center;
}

.layout__about .about__description .description__table .table__item:first-child {
	padding-left: 0;
}

.layout__about .about__description .description__table .table__item:last-child {
	border-right: 0;
	padding-right: 0;
}

.layout__about .about__description .description__table .table__item .item__title {
	font-size: 50px;
	color: #fff;
	font-family: 'Lato-Semibold';
}

.layout__about .about__description .description__table .table__item .item__text {
	font-family: 'ProximaNova-Semibold';
	font-size: 14px;
	color: #999;
	text-transform: uppercase;
	margin-top: 15px;
	letter-spacing: 1px;
	line-height: 1.5em;
}

.layout__projects {
	background: #000;
	background-size: cover;
	position: relative;
	margin-top: -200px;
	padding-top: 150px;
	padding-bottom: 400px;
	clip-path: polygon(0px 10%, 100% 0px, 100% 91%, 0px 100%);
	-webkit-clip-path: polygon(0px 10%, 100% 0px, 100% 90%, 0px 100%);
}

.layout__projects .projects__title {
	color: #fff;
	font-size: 40px;
	font-family: 'ProximaNova-Semibold';
	margin-top: 70px;
	padding: 0 50px;
}

.layout__projects .projects__items {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	margin-top: 60px;
	margin-left: -15px;
	justify-content: flex-start;
	padding: 0 50px;
}

.layout__projects .projects__items .item {
	width: 21%;
	flex-grow: 0;
	margin: 15px;
	position: relative;
	border-radius: 5px;
	background: #1a1a1a;
	padding: 45px;
	transition: background 300ms, top 300ms, box-shadow 300ms;
	top: 0;
	box-shadow: 0px 6px 45px 0px rgba(0,0,0,0.6);
	padding-bottom: 110px;
	overflow: hidden;
}

.layout__projects .projects__items .item:hover {
	background: #333;
	top: -10px;
	box-shadow: 0px 10px 55px 0px rgba(0,0,0,0.8);
}

.layout__projects .projects__items .item .item__avatar {
	background: #333; /* Вместо цветного фона — тёмно‑серый */
	width: 75px;
	height: 75px;
	border-radius: 50%;
	float: left;
	filter: grayscale(100%);
}

.layout__projects .projects__items .item .item__title {
	color: #fff;
	font-size: 28px;
	font-family: 'ProximaNova-Semibold';
	margin-left: 95px;
	position: absolute;
	right: 45px;
	left: 45px;
}

.layout__projects .projects__items .item .item__category {
	color: #777;
	font-size: 12px;
	margin-top: 120px;
	text-transform: uppercase;
	font-family: 'ProximaNova-Semibold';
}

.layout__projects .projects__items .item .item__description {
	color: #aaa;
	font-size: 16px;
	margin-top: 15px;
	line-height: 22px;
}

.layout__projects .projects__items .item .item__link {
	text-transform: uppercase;
	color: #fff;
	text-decoration: none;
	font-family: 'ProximaNova-Semibold';
	font-size: 14px;
	margin-top: 30px;
	display: inline-block;
	transition: color 300ms;
	position: absolute;
	bottom: 40px;
}

.layout__projects .projects__items .item .item__link--disabled {
	color: #666 !important;
}

