@charset "UTF-8";
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
  border: none;
  outline: 0;
  font-weight: inherit;
  font-style: inherit;
  font-size: 100%;
  font-family: inherit;
  vertical-align: baseline;
  text-decoration: none;
  margin: 0;
  padding: 0;
}

table {
  border-collapse: separate;
  border-spacing: 0;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: "";
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

:focus {
  outline: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img {
  border: 0;
  -ms-interpolation-mode: bicubic;
}

a {
  text-decoration: none;
  position: relative;
  color: inherit;
}

audio, video, canvas {
  max-width: 100%;
}

textarea {
  resize: none;
}

@font-face {
  font-family: "DIN Condensed";
  src: url("../fonts/DINCondensed-Light.eot");
  src: local("DIN Condensed Light"), local("DINCondensed-Light"), url("../fonts/DINCondensed-Light.eot?#iefix") format("embedded-opentype"), url("../fonts/DINCondensed-Light.woff2") format("woff2"), url("../fonts/DINCondensed-Light.woff") format("woff"), url("../fonts/DINCondensed-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "DIN Condensed";
  src: url("../fonts/DINCondensed-Regular.eot");
  src: local("DIN Condensed"), local("DINCondensed-Regular"), url("../fonts/DINCondensed-Regular.eot?#iefix") format("embedded-opentype"), url("../fonts/DINCondensed-Regular.woff2") format("woff2"), url("../fonts/DINCondensed-Regular.woff") format("woff"), url("../fonts/DINCondensed-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Durik";
  src: url("../fonts/ДУРИК.otf");
  font-weight: normal;
  font-style: normal;
}
:root {
  --font-main: "DIN Condensed", sans-serif;
  --font-second: "Durik", sans-serif;
  --main-fontsize: 16px;
  --tablet-fontsize: 16px;
  --mobile-fontsize: 15px;
  --subtitle-fontsize: 24px;
  --color-white: #ffffff;
  --color-red: #d21e23;
  --color-black: #1a1a1a;
  --color-yellow: #f3edde;
  --color-gray: #c2c2c2;
  --gradient: linear-gradient(-145deg, #fbf7eb, #ede1c9);
}

body {
  background: var(--gradient);
  font-family: var(--font-main);
  font-size: var(--main-fontsize);
  font-weight: 400;
  line-height: 1.1;
  color: var(--color-black);
  position: relative;
  letter-spacing: -0.5px;
}

.container {
  /* контейнер для блоков */
  margin: 0 auto;
  width: 100%;
  padding: 0 40px;
  max-width: 1220px;
  border-radius: 24px;
}
.container.white {
  background-color: #f8faff;
}

section {
  margin: 180px 0;
}

hr {
  border: none;
  height: 1px;
  background-color: #fff;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-second);
  font-weight: 500;
  text-transform: uppercase;
}

h1 {
  font-size: 152px;
}

h2 {
  font-size: 40px;
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 24px;
}

h5 {
  font-size: 21px;
  font-weight: 700;
}

h6 {
  font-size: 20px;
  font-weight: 700;
}

.button {
  background-color: var(--color-red);
  font-size: 24px;
  text-transform: uppercase;
  padding: 30px 26px;
  color: var(--color-yellow);
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  cursor: pointer;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
  line-height: 0.7;
  font-family: var(--font-second);
}
.button:hover {
  background-color: var(--color-black);
}
.button.black {
  background-color: var(--color-black);
}
.button.black:hover {
  background-color: var(--color-yellow);
  color: var(--color-red);
}
.button.light {
  background: var(--gradient) !important;
  border: 3px var(--color-gray) !important;
}

strong {
  font-weight: 800;
}

.link {
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}
.link:hover {
  color: var(--color-red);
}

textarea.form-control,
input.form-control {
  padding: 20px;
  background: none;
  border: 3px solid var(--color-black);
  border-radius: 0;
  font-family: var(--font-main);
}
textarea.form-control:focus,
input.form-control:focus {
  background: none;
  border: 3px solid var(--color-black);
  border-color: #c2c2c2;
}
textarea.form-control:hover,
input.form-control:hover {
  border-color: #c2c2c2;
}

.modal-checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  cursor: pointer;
}
.modal-checkbox a {
  text-decoration: underline;
}
.modal-checkbox .marker {
  width: 24px;
  height: 24px;
  border: 3px solid var(--color-black);
  position: relative;
}
.modal-checkbox .marker img {
  -webkit-transition: 0.2s;
  transition: 0.2s;
  opacity: 0;
  position: absolute;
  left: 0;
  bottom: 2px;
}
.modal-checkbox input {
  display: none;
}
.modal-checkbox input:checked + .marker img {
  opacity: 1;
}

body {
  position: relative;
  padding-top: 85px;
}
body:after {
  content: "";
  top: 0;
  left: 0;
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background-image: url("../img/turbulence.svg");
  background-repeat: repeat;
  background-size: 300px 300px;
  background-blend-mode: overlay;
  opacity: 0.3;
  pointer-events: none;
}

header {
  padding: 40px 0 20px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 999;
}
header .container {
  max-width: 1440px;
}
header.fixed {
  background: var(--gradient);
  padding: 20px 0;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.header__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-line-pack: center;
      align-content: center;
  gap: 20px;
}

.header__text span {
  color: var(--color-red);
}

.header__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 35px;
}

section.hero {
  margin: 0;
}
section.hero .container {
  max-width: 1460px;
}

.hero__top {
  padding: 35px 0 5px;
  position: relative;
}
.hero__top:after, .hero__top:before {
  content: "";
  height: 2px;
  width: calc(100% - 20px);
  position: absolute;
  left: 10px;
  background: var(--color-black);
  top: 0;
}
.hero__top:after {
  top: auto;
  bottom: 0;
}

.hero__top_logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-transform: uppercase;
}
.hero__top_logo h1 {
  line-height: 0.75;
  letter-spacing: -3.2px;
}

.hero__top_logo-block {
  width: 107px;
  height: 107px;
  background: var(--color-black);
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 107px;
          flex: 0 0 107px;
  margin-top: -30px;
}

.hero__text {
  padding: 20px 0;
  text-align: center;
  font-size: var(--subtitle-fontsize);
}

.hero__banner {
  display: block;
  width: calc(100% - 20px);
  margin: 0 auto;
  height: 400px;
  background-image: url("../img/Rectangle 1.jpg");
  background-position: center center;
  background-size: 100% auto;
  position: relative;
  border: 3px solid var(--color-black);
}

.hero__banner_button {
  position: absolute;
  bottom: -36px;
  left: calc(50% - 100px);
}

.title-line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 10px;
  margin-bottom: 60px;
}
.title-line > div {
  -webkit-box-flex: 1;
      -ms-flex: auto;
          flex: auto;
  height: 3px;
  background-color: var(--color-black);
  margin-bottom: 3px;
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
}

.section-subtitle {
  text-align: center;
  color: var(--color-red);
  margin-bottom: 40px;
}

.clients__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 10px 1fr 10px 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 10px;
  max-width: 1040px;
  margin: 0 auto;
}

.clients__list_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  padding: 24px;
  color: var(--color-red);
  font-size: var(--subtitle-fontsize);
  border: 3px solid var(--color-black);
  letter-spacing: -0.5px;
}

.production__body {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 40px 1fr;
  grid-template-columns: 1fr 1fr;
  grid-gap: 40px;
}

.production__body_image {
  width: 100%;
  height: 400px;
  background-size: 130%;
  background-position: center center;
  border: 3px solid var(--color-black);
}

.production__body_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}

.production__body_content-icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
.production__body_content-icons li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  color: var(--color-red);
  font-size: var(--subtitle-fontsize);
}

.production__body_content-banner {
  border: 3px solid var(--color-black);
  padding: 24px;
}
.production__body_content-banner h2 {
  color: var(--color-red);
}
.production__body_content-banner span {
  font-size: var(--subtitle-fontsize);
}
.product-cats {
	margin: 12px 0;
}
.thread__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.thread__body_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 120px) / 4 - 6px);
          flex: 0 0 calc((100% - 120px) / 4 - 6px);
  padding: 24px 20px 24px 24px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 150px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border: 3px solid var(--color-black);
}

.thread__body_item-counter {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--color-red);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 40px;
  font-family: var(--font-second);
  color: var(--color-yellow);
}
.thread__body_item-counter span {
  margin-top: 5px;
}

.thread__body_item-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  min-height: 85px;
}

.thread__body_item-content_title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--color-red);
  gap: 10px;
}

.thread__body_arrow {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 40px;
          flex: 0 0 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.services__body {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 10px 1fr;
  grid-template-columns: 1fr 1fr;
  grid-gap: 10px;
  margin-bottom: 40px;
}

.services__body_list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 10px 1fr;
  grid-template-columns: 1fr 1fr;
  grid-gap: 10px;
  grid-auto-rows: 1fr;
}

.services__body_list-item {
  border: 3px solid var(--color-red);
  padding: 20px;
  font-size: var(--subtitle-fontsize);
}

.services__body_image {
  border: 3px solid var(--color-black);
  background-size: cover;
  background-position: 0% center;
  height: 520px;
}

.callback {
  background-color: var(--color-red);
  padding: 40px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  gap: 40px;
  color: var(--color-yellow);
}

.menu__body {
  margin-top: 40px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 40px 1fr 40px 1fr 40px 1fr 40px 1fr 40px 1fr;
  grid-template-columns: repeat(6, 1fr);
  grid-gap: 40px;
}

.menu__body_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
}

.menu__body_item-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
.menu__body_item-content > a.title {
  width: 100%;
  text-align: center;
  padding: 10px;
  line-height: 1;
  color: var(--color-yellow);
  background-color: var(--color-red);
}
.menu__body_item-content > a.title:hover {
  background-color: var(--color-black);
}
.menu__body_item-content > a.title h4 {
  font-size: 16px;
  margin-top: 3px;
}
.menu__body_item-content > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  line-height: 1.2;
}
.menu__body_item-content > ul li a {
  color: var(--color-black);
}

.menu__body_item-content > ul li a:hover {
  color: var(--color-red);
}
.menu__body_item-img img {
  border: 2.28px solid var(--color-black);
  height: auto;
  width: 100%;
  aspect-ratio: 1;
}

.business__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}

.business__body_row {
  display: -ms-grid;
  display: grid;
  grid-gap: 40px;
  -ms-grid-columns: 1.7fr 40px 2.44fr;
  grid-template-columns: 1.7fr 2.44fr;
}
.business__body_row span.red {
  color: var(--color-red);
}
.business__body_row > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  color: var(--color-red);
  gap: 20px;
}
.business__body_row p {
  font-size: var(--subtitle-fontsize);
}

.evolution__list {
  display: -ms-grid;
  display: grid;
  grid-gap: 40px;
  -ms-grid-columns: 1fr 40px 1fr 40px 1fr 40px 1fr;
  grid-template-columns: repeat(4, 1fr);
}

.evolution__list_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  color: var(--color-red);
  font-size: var(--subtitle-fontsize);
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.evolution__images {
  margin-top: 40px;
  display: -ms-grid;
  display: grid;
  grid-gap: 10px;
  -ms-grid-columns: 1fr 10px 1fr 10px 1fr;
  grid-template-columns: repeat(3, 1fr);
}
.evolution__images img {
  width: 100%;
  aspect-ratio: 1;
  border: 3px solid var(--color-black);
}
.price-old {
	font-weight: 400;
	text-decoration: line-through;
}
.other-products a,
#menu .news-list a {
  display: block;
  margin-bottom: 45px;
  height: 100%;
}
.other-products .btn-more,
#menu .news-list .btn-more {
  position: absolute;
  bottom: 0;
}
section#news {
	margin: 60px 0;
}
.single-news h1 {
	font-size: 80px;
}
@media (max-width: 991px) {
	.single-news h1 {
		font-size: 60px;
	}
}
@media (max-width: 757px) {
	.single-news h1 {
		font-size: 40px;
	}
}
@media (max-width: 575px) {
	.single-news h1 {
		font-size: 26px;
	}
}
.single-news ol,
.single-news ul,
.single-news p,
.single-news h3,
.single-news h4 {
	margin-bottom: 20px;
}
.single-news ul li, ul.markers li {
	margin-left: 20px;
	list-style-type: "✓";
	list-style-position: outside;
	padding-left: 1ch;
}
.single-news ul li::marker, ul.markers li::marker {
	color: green;
}
.news-list a img {
	width: 100%;
	height: auto;
	aspect-ratio: 1;
}
.news-list a .btn-more {
  background-color: var(--color-red);
  font-size: 14px;
  text-transform: uppercase;
  padding: 10px 16px;
  color: var(--color-yellow);
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  cursor: pointer;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
  line-height: 0.7;
  font-family: var(--font-second);
  margin-top: 20px;
  display: block;
}
.news-list a .btn-more:hover {
	background-color: var(--color-black);
}

footer .section-title {
  margin-bottom: 20px;
}
.footer__body {
  margin-top: 180px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr 30px 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 30px;
}
.footer__body > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  font-size: var(--subtitle-fontsize);
}
.footer__body > ul:last-child {
  text-align: right;
}
.footer__body > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.footer__text {
  margin-top: 60px;
  border-top: 3px solid var(--color-black);
  padding: 20px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 15px;
}
.footer__text h4 {
  margin-top: 7px;
}

.footer__copyright {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 40px 0;
}

.modal-backdrop.show {
  opacity: 0.8;
  background-color: var(--color-gray);
}

.callback-modal .modal-dialog {
  max-width: 560px;
}

.modal-content {
  padding: 24px;
  background: var(--gradient);
}

.callback-modal .btn-close {
  position: absolute;
  top: 27px;
  right: 24px;
  background: none;
  border: none;
  cursor: pointer;
}
.callback-modal .title-line {
  padding-right: 60px;
  margin-bottom: 0;
}

.callback-modal__body {
  margin-top: 40px;
}
.callback-modal__body h4 {
  text-align: center;
}
.callback-modal__body p {
  text-align: center;
  font-size: 18px;
  margin-top: 20px;
}
.callback-modal__body form {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
.callback-modal__body form button {
  width: 100%;
  outline: none;
  border: none;
}
.callback-modal__body form > span {
  text-align: center;
  margin-top: 10px;
}
/*# sourceMappingURL=main.css.map */