/* https://www.joshwcomeau.com/css/custom-css-reset/ */

*, *::before, *::after {
  box-sizing: border-box;
}
* {
  margin: 0;
}
@media (prefers-reduced-motion: no-preference) {
  html {
    interpolate-size: allow-keywords;
  }
}
body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}
input, button, textarea, select {
  font: inherit;
}
p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}
p {
  text-wrap: pretty;
}
h1, h2, h3, h4, h5, h6 {
  text-wrap: balance;
}
#root, #__next {
  isolation: isolate;
}

:root {
	--dark-blue: #003852; --dark-blue-rgb: 0, 56, 82; 
	--brand-blue: #00557B;
	--light-blue: #0099E0;
	--brand-red: #ED1556;
	--cntr-width: 1920px;
}

/* FONTS */

@font-face {
	font-family: 'DIN Pro';
	src: url('fonts/DINPro/DINPro.eot');
	src: url('fonts/DINPro/DINPro.eot?#iefix') format('embedded-opentype'), url('fonts/DINPro/DINPro.woff') format('woff'), url('fonts/DINPro/DINPro.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}

/* HEADER */

.p-header {
  position: sticky; top: 0; z-index: 10;
	background: var(--dark-blue);
}
.p-header__container {
	width: 100%; max-width: var(--cntr-width); margin: 0 auto;
	background: var(--dark-blue); padding: 8px 16px;
	display: flex; justify-content: space-between; align-items: center;
}
.p-header__logo > a > img {
	width: 200px; color: inherit;
}
.p-header__menu > button {
	border: none; background: none; margin: 0; padding: 8px 0 8px 8px;
	font-size: 24px; line-height: 1;
	color: #fff; cursor: pointer;
}
.p-header__menu > button:hover {
	color: var(--light-blue);
}
.p-header__menu > button:visited {
	color: #fff;
}
.p-header__menu > button > span {
	display: none;
}
.p-header__contacts {
	display: none;
}
@media (min-width: 1024px) {
	.p-header__container {
		display: grid; grid-template-columns: 2fr 1fr 2fr;
	}
	.p-header__menu {
		order: 1;
	}
	.p-header__menu > button {
		display: flex; align-items: center; padding: 0;
	}
	.p-header__menu > button > span {
		display: block; margin-left: 16px;
		font-size: 16px;
	}
	.p-header__logo {
		order: 2; justify-self: center;
	}
	.p-header__contacts {
		order: 3; display: block; justify-self: end;
	}
	.p-header__contacts > a:nth-child(n+2) {
		margin-left: 16px;
	}
	.p-header__contacts > .whatsapp {
		display: inline-block; vertical-align: middle;
		font-size: 24px; line-height: 1;
		color: #fff;
	}
	.p-header__contacts > .whatsapp:hover {
		color: var(--light-blue);
	}
	.p-header__contacts > .telegram {
		display: inline-block; vertical-align: middle;
		font-size: 24px; line-height: 1;
		color: #fff; 
	}
	.p-header__contacts > .telegram:hover {
		color: var(--light-blue);
	}
	.p-header__contacts > .telephone {
		display: inline-block; vertical-align: middle;
		background: var(--brand-red); padding: 4px 8px;
		font-size: 20px; line-height: 1;
		color: #fff; border-radius: 4px;
	}
	.p-header__contacts > .telephone:hover {
		background: var(--light-blue);
	}
}
@media (min-width: 1280px) {
	.p-header__container {
		padding: 16px 32px 12px 32px;
	}
	.p-header__contacts > .telegram {
		font-size: 32px;
	}
	.p-header__contacts > .whatsapp {
		font-size: 32px;
	}
	.p-header__contacts > .telephone {
		font-size: 28px;
	}
}

/* LEFT MENU */

.p-left-menu, .plm {
	display: flex; width: 100%; height: 100%;
	flex-direction: column; justify-content: space-between;
	position: fixed; z-index: 10; transform: translateX(-100%);
	transition: transform 0.5s ease;
	background: var(--dark-blue);
	padding: 32px 16px;
}
.plm.active {
	transform: translateX(0);
}
.plm__list {}
.plm__list > li {}
.plm__list > li:nth-child(n+2) {
	margin-top: 20px;
}
.plm__list > li > a {
	font-size: 20px; line-height: 1;
	color: #fff;
}
.plm__list > li > a:hover {
	color: var(--light-blue);
}
.plm__sublist {}
.plm__sublist > li {
	margin-top: 8px;
	display: flex; align-items: center;
}
.plm__sublist > li > i {
	font-size: 20px; line-height: 1;
	color: var(--light-blue);
}
.plm__sublist > li > a {
	padding: 8px 0;
	font-size: 16px; line-height: 1;
	color: #fff;
}
.plm__sublist > li > a:hover {
	color: var(--light-blue);
}
.plm__contacts {
	margin-top: 100px;
	text-align: center;
}
.plm__contacts > a {
	display: inline-block; padding: 8px;
	font-size: 32px; line-height: 1;
	background: var(--brand-blue); color: #fff;
	border-radius: 4px;
}
.plm__contacts > a.telephone {
	background: var(--brand-red);
}
.plm__contacts > a:nth-child(n+2) {
	margin-left: 20px;
}
.plm__contacts > p {
	margin: 20px 0 0 0;
	font-size: 20px; line-height: 1;
	color: #fff;
}
@media (min-width: 1024px) {
	.plm__contacts {
		display: none;
	}
}
@media (min-width: 1280px) {
	.plm {
		padding: 32px;
	}
	
}




/* yes idea legacy */

@media (min-width: 1660px) {
  .header__bottom.video > .video__wrapper {
    gap: 20px;
  }
  .header__bottom.video .video__top {
    flex-grow: 1;
  }
}
.info .popup .modal__cross {
  top: 10px;
  right: 10px;
}

.news-list {
  display: grid;
  gap: 16px;
}
@media (min-width: 768px) {
  .news-list {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (min-width: 1024px) {
  .news-list {
    grid-template-columns: repeat(4, 1fr);
  }
}
