@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, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  scroll-behavior: smooth;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
  background: #141414;
}
body * {
  box-sizing: border-box;
  font-family: Inter, sans-serif;
}
body a {
  color: white;
  text-decoration: none;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

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

video {
  width: 100%;
  height: 100vh;
  position: absolute;
  left: 0;
  top: 0;
  object-fit: cover;
  filter: brightness(0.5);
  z-index: -1;
  pointer-events: none;
}

footer {
  padding: 70px 50px 50px 50px;
}
footer .first-line {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
footer .first-line img {
  width: 100px;
}
footer .first-line p, footer .first-line span {
  font-size: 16px;
  color: #dddddd;
  margin-bottom: 15px;
  line-height: 1.4;
}
footer .first-line a {
  font-size: 24px;
  color: white;
  margin-bottom: 20px;
}
footer .f-menu {
  display: flex;
  gap: 100px;
}
footer .f-menu a {
  font-size: 18px;
}
footer .f-menu > div {
  display: flex;
  flex-direction: column;
}
footer .f-contact {
  display: flex;
  gap: 100px;
}
footer .last-line {
  color: white;
  font-size: 14px;
  border-top: 1px solid #363637;
  padding-top: 20px;
  margin-top: 20px;
}

header {
  position: fixed;
  padding: 50px;
  display: flex;
  width: 100%;
  z-index: 99;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.4196078431), transparent);
  transition: all 0.3s linear;
}
header.scrolled {
  backdrop-filter: blur(10px);
  background: rgba(0, 0, 0, 0.84);
  padding: 20px 50px;
}
header .main-menu {
  display: flex;
  align-items: center;
  gap: 50px;
}
header .main-menu li {
  transition: all 0.3s linear;
}
header .main-menu li:hover {
  transform: translateY(-3px);
}
header .main-menu a {
  color: white;
  font-size: 18px;
}
header #logoMini {
  width: 150px;
  transition: width 0.3s linear;
}
header #logoMini .l-mini {
  fill: white;
  transition: all 0.3s linear;
}
header #logoMini:hover .l-mini {
  fill: #f12d15;
}
header #logoMini.scrolled {
  width: 50px;
}

.main {
  height: 100vh;
  width: 100%;
}
.main .stage {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  padding: 50px;
}
.main .stage .logo {
  width: 250px;
}
.main .stage a {
  font-size: 18px;
  display: flex;
  align-items: center;
  padding: 0 20px;
  transition: all 0.3s linear;
}
.main .stage a img {
  margin-left: 10px;
  width: 20px;
  animation: move 2s infinite;
}
.main .stage a:hover {
  padding: 20px;
  background: #f12d15;
}
@keyframes move {
  0% {
    transform: translateX(0px);
  }
  50% {
    transform: translateX(5px);
  }
  100% {
    transform: translateX(0px);
  }
}
.main .stage h1 {
  font-family: Orbitron, sans-serif;
  color: white;
  font-size: 70px;
  font-weight: 600;
}

section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  justify-content: center;
  font-size: 3rem;
}

.scroll {
  color: white;
  font-size: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.scroll img {
  width: 40px;
  animation: updown 2s linear infinite;
  margin-bottom: 10px;
}
@keyframes updown {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
  100% {
    transform: translateY(0);
  }
}

@media (max-width: 1370px) {
  .main h1 {
    font-size: 48px !important;
  }
}
.about {
  background: url("../img/logo-bg.svg") no-repeat;
  background-position: bottom right;
  background-color: #060606;
}
.about .container {
  display: flex;
  flex-direction: row;
  position: relative;
  align-content: flex-end;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  min-height: 100%;
  padding: 100px 50px;
}
.about .container .intro-text {
  width: 200px;
}
.about .container .intro-text p {
  font-size: 14px;
}
.about .container .about-section {
  width: calc(100% - 300px);
}
.about svg {
  width: 450px;
  margin-bottom: 100px;
}
.about h3 {
  color: white;
  font-size: 47px;
  max-width: 70%;
  line-height: 1.1;
  font-weight: 400;
  margin-bottom: 100px;
  margin-top: -5px;
  font-family: Orbitron, sans-serif;
}
.about p {
  font-size: 22px;
  line-height: 1.4;
  color: white;
  max-width: 640px;
}
.about .cards .card {
  padding: 30px;
  height: 400px;
  background: #0d0d0d;
  display: flex;
  cursor: pointer;
  position: relative;
  flex-direction: column;
  justify-content: space-between;
}
.about .cards .card h5 {
  color: white;
  font-size: 34px;
}
.about .cards .card .select {
  position: absolute;
  right: 30px;
  top: 30px;
}
.about .cards .card .select img {
  transition: all 0.3s linear;
  width: 20px;
}
.about .cards .card span {
  font-size: 14px;
  margin-top: 10px;
  color: #3a3a3a;
}
.about .cards .card:hover .select {
  position: absolute;
  right: 30px;
  top: 30px;
}
.about .cards .card:hover .select img {
  width: 30px;
}

.services {
  background: #111111;
}

.testimonials {
  background: #e8e8e8;
}

.promo {
  background: #e0e0e0;
}

.contact {
  background: #ddd;
}

.slider-container {
  width: calc(100% + 50px);
  overflow: hidden; /* Скрываем лишние слайды */
  position: relative;
  margin: auto;
}

.slider {
  display: flex;
  gap: 10px; /* Учитываем отступы между карточками */
  transition: transform 0.5s ease-in-out;
  flex-wrap: nowrap; /* Запрещаем перенос элементов */
}

.slide {
  flex: 0 0 29%; /* 25% ширины минус gap */
  box-sizing: border-box;
  position: relative;
  min-width: 29%; /* Чтобы не ломался при ресайзе */
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.slide-content {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  padding: 15px;
  max-width: 60%;
  border-radius: 5px;
}

/* Кнопки управления */
.controls {
  display: flex;
  justify-content: space-between;
  bottom: 100px;
  gap: 10px;
  position: absolute;
}

.control {
  background: #0d0d0d;
  color: white;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  font-size: 18px;
  width: 50px;
}

.promo {
  min-height: 100%;
  background: url(../img/promo-bg.png) no-repeat;
  background-position: center;
  background-color: #111111;
  display: flex;
  flex-direction: column;
  padding: 130px 0 100px 0;
}
.promo h4 {
  color: white;
  text-align: center;
  margin-bottom: 50px;
}
.promo h4 i {
  color: #f12d15;
}
.promo a {
  font-size: 18px;
  display: flex;
  align-items: center;
  padding: 20px;
  transition: all 0.3s linear;
}
.promo a:hover {
  background: #f12d15;
}
.promo a img {
  margin-left: 10px;
  width: 20px;
  animation: move 2s infinite;
}

.control:hover {
  background: rgba(0, 0, 0, 0.8);
}

.services {
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  background: #060606;
}

.subsection {
  width: 100%;
  padding: 0;
}
.subsection.image-s {
  height: 500px;
}
.subsection.image-s img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.subsection:not(.image-s) {
  display: flex;
  justify-content: space-between;
  padding: 100px 50px;
  background: url("../img/promo-bg2.png") no-repeat;
  background-size: cover;
  background-position: right bottom;
}
.subsection:not(.image-s) .introduction {
  line-height: 1.4;
  color: white;
  max-width: 640px;
  font-size: 14px;
}
.subsection:not(.image-s) h4 {
  color: white;
  font-size: 47px;
  max-width: 70%;
  line-height: 1.1;
  font-weight: 400;
  margin-bottom: 40px;
  margin-top: -5px;
  font-family: Orbitron, sans-serif;
}
.subsection:not(.image-s) p {
  font-size: 18px;
  color: white;
  max-width: calc(100% - 400px);
  line-height: 1.4;
  margin-bottom: 20px;
}
.subsection .benefits {
  max-width: 600px;
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.subsection .benefits li {
  width: calc(50% - 50px);
  margin-bottom: 30px;
}
.subsection .benefits li h5 {
  color: #dddddd;
  font-size: 18px;
  margin-bottom: 20px;
}
.subsection .benefits li p {
  max-width: 100%;
  line-height: 1.4;
  font-size: 14px;
}
.subsection > div:first-child {
  width: 200px;
}
.subsection > div:last-child {
  width: calc(100% - 300px);
}

.testimonials {
  background: #f12d15;
  padding: 100px 50px 0 50px;
  display: block;
}
.testimonials .heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 80px;
}
.testimonials .title {
  color: #1e1e1e;
  max-width: 70%;
  line-height: 1.1;
  font-weight: 500;
  margin-top: -5px;
  font-size: 42px;
  font-family: Orbitron, sans-serif;
}
.testimonials .subtitle {
  font-size: 16px;
  color: #1e1e1e;
  max-width: 200px;
}
.testimonials .steps {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  margin-bottom: 100px;
}
.testimonials .steps::before {
  content: "";
  position: absolute;
  top: 50px;
  left: -50px;
  width: 100vw;
  height: 1px;
  background: #1e1e1e;
}
.testimonials .step {
  flex: 1;
  position: relative;
  text-align: left;
}
.testimonials .step-number {
  font-size: 36px;
  font-weight: bold;
  color: #1e1e1e;
}
.testimonials .step-title {
  font-size: 18px;
  font-weight: bold;
  margin: 40px 0 10px 0;
  color: #1e1e1e;
}
.testimonials .step-description {
  font-size: 14px;
  padding-right: 30px;
  color: #1e1e1e;
  line-height: 1.4;
}
.testimonials .step-dot {
  width: 10px;
  height: 10px;
  background: #1e1e1e;
  border-radius: 50%;
  position: absolute;
  top: 46px;
  left: 6%;
  transform: translateX(-50%);
}
.testimonials .slides-heading h2 {
  color: white;
  font-size: 42px;
  line-height: 1.1;
  font-weight: 500;
  text-align: right;
  margin-bottom: 10px;
  font-family: Orbitron, sans-serif;
}
.testimonials .slides-heading p {
  font-size: 14px;
  color: white;
  text-align: right;
  line-height: 1.5;
  margin-bottom: 50px;
}
.testimonials .slides-heading .arrows {
  display: flex;
  flex-direction: row;
  gap: 10px;
  justify-content: flex-end;
  padding: 20px 0;
}
.testimonials .slides-heading .arrows .arrow {
  background: #0d0d0d;
  color: white;
  border: none;
  padding: 13px 15px 6px 15px;
  cursor: pointer;
  font-size: 18px;
  width: 50px;
  border-radius: 0;
}
.testimonials .slides-heading .arrows .arrow img {
  width: 100%;
}
.testimonials .slides-heading .arrows .arrow:first-child img {
  transform: rotate(180deg);
}
.testimonials .slides-heading .arrows .arrow:hover {
  background: #282828;
}
.testimonials .slides-keeper {
  overflow: visible;
  max-height: 600px;
  padding: 0 0 50px 0;
}
.testimonials .slides-keeper .slides {
  display: flex;
  flex-direction: column;
  gap: 30px;
  transition: transform 0.5s ease-in-out;
}
.testimonials .slides-keeper .slides .slide {
  height: 320px;
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  box-shadow: 30px 60px 107px 0px rgba(0, 0, 0, 0.1882352941);
  justify-content: center;
  overflow: hidden;
  position: relative;
  background: #181818;
  padding: 90px 50px 30px 50px;
}
.testimonials .slides-keeper .slides .slide > p {
  font-size: 32px;
  max-width: 80%;
  color: white;
  line-height: 1.3;
  margin: 20px 0;
}
.testimonials .slides-keeper .slides .slide > div > div > p:first-child {
  color: white;
  margin-bottom: 5px !important;
}
.testimonials .slides-keeper .slides .slide:before {
  content: "";
  color: #d7d7d7;
  position: absolute;
  top: 31px;
  width: 50px;
  height: 50px;
  background: url("../img/quotes.svg") no-repeat;
  background-size: cover;
  left: 50px;
  font-family: fantasy;
  font-style: italic;
}
.testimonials .slides-keeper .slides .slide > div {
  display: flex;
  align-items: center;
  width: 100%;
  margin-top: 20px;
  gap: 20px;
}
.testimonials .slides-keeper .slides .slide > div img {
  width: 60px;
  border-radius: 50%;
}
.testimonials .slides-keeper .slides .slide > div > div p:first-child {
  font-size: 20px;
  margin-bottom: -2px;
}
.testimonials .slides-keeper .slides .slide > div > div p:last-child {
  font-size: 16px;
  color: #9f9f9f;
}
.testimonials .feed-slides {
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
  overflow: hidden;
}
.testimonials .feed-slides .slides-heading {
  width: 500px;
}
.testimonials .feed-slides .slides-keeper {
  width: calc(100% - 700px);
}

.contact {
  background: #1e1e1e;
}

.make-form {
  cursor: pointer;
}

.overlay {
  background: rgba(0, 0, 0, 0.7490196078);
  position: fixed;
  width: 100%;
  height: 100vh;
  z-index: 999;
  display: none;
  opacity: 0;
  top: 0;
  left: 0;
}
.overlay.active {
  display: flex;
  align-items: center;
  opacity: 1;
  transition: all 0.3s linear;
  justify-content: center;
}

.contact-form {
  width: 550px;
  height: 600px;
  padding: 50px;
  position: relative;
  background: url(../img/logo-bg.svg) no-repeat;
  background-position: right bottom;
  background-color: #060606;
  background-size: cover;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-content: center;
  justify-content: center;
  align-items: flex-start;
}
.contact-form .close-btn {
  background: #f12d15;
  border: none;
  font-size: 30px;
  position: absolute;
  right: -20px;
  top: -20px;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
}
.contact-form h2 {
  margin-bottom: 50px;
  color: white;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.2;
}
.contact-form input, .contact-form textarea {
  width: 100%;
  padding: 20px 20px;
  margin-top: 5px;
  border: none;
  margin-bottom: 20px;
  outline: none;
  background: #141414;
  color: white;
}
.contact-form .field-container {
  display: flex;
  width: 100%;
  justify-content: space-between;
  gap: 30px;
}
.contact-form .field-container > div {
  width: 50%;
}
.contact-form label {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
  display: block;
  color: white;
}
.contact-form textarea {
  height: 100%;
  resize: none;
  font-family: "Inter", sans-serif;
}
.contact-form button[type=submit] {
  font-size: 16px;
  display: flex;
  align-items: center;
  padding: 15px 20px;
  width: 100%;
  justify-content: center;
  transition: all 0.3s linear;
  color: white;
  border: none;
  background: #f12d15;
}
.contact-form button[type=submit] img {
  margin-left: 10px;
}

.text-content {
  display: block;
  color: white;
  padding: 200px 50px 100px 50px;
}
.text-content h1 {
  color: white;
  font-size: 47px;
  max-width: 70%;
  line-height: 1.1;
  font-weight: 400;
  margin-bottom: 40px;
  margin-top: -5px;
  font-family: Orbitron, sans-serif;
}
.text-content li {
  margin-bottom: 30px;
  font-size: 14px;
  color: white;
}
.text-content li:before {
  color: #6b6b6b;
  content: "—";
  margin-right: 10px;
}
.text-content h3 {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 20px;
  color: white;
}
.text-content h4 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 20px;
  color: white;
}
.text-content p {
  line-height: 1.5;
  margin-bottom: 20px;
  color: white;
  max-width: 70%;
  font-size: 14px;
}
.text-content .headline {
  font-size: 18px;
  margin-bottom: 35px;
}

@media (min-width: 900px) and (max-width: 1500px) {
  .about .cards .card h5 {
    color: white;
    font-size: 24px;
  }
  .testimonials .feed-slides .slides-keeper {
    width: calc(100% - 600px);
  }
  footer .first-line a {
    font-size: 14px;
  }
  footer .first-line p, footer .first-line span {
    font-size: 11px;
  }
  .main h1 {
    font-size: 48px !important;
  }
}
@media (max-width: 600px) {
  .feed-slides {
    display: none !important;
  }
  .about .container .about-section {
    width: 100%;
  }
  .slide {
    flex: auto;
    min-width: 90%;
  }
  .main {
    height: 60vh;
    min-height: 60vh;
  }
  .main .stage {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 50px;
  }
  .main .stage .logo, .main .stage .scroll {
    display: none;
  }
  .main .stage h1 {
    margin-bottom: 50px;
  }
  .main .stage a {
    padding: 20px;
    background: #f12d15;
  }
  header {
    position: absolute;
  }
  header #logoMini {
    width: 105px;
  }
  header .main-menu {
    display: none;
  }
  .about .cards .card h5 {
    font-size: 24px;
  }
  .controls {
    display: flex;
    justify-content: flex-start;
    bottom: 100px;
    gap: 10px;
    position: static;
    margin: 10px 0;
  }
  .about .container {
    flex-direction: column;
  }
  .about .container .intro-text {
    width: 100%;
  }
  .about .container h3 {
    font-size: 32px;
    color: white;
    line-height: 1.1;
    font-weight: 400;
    margin-top: 20px;
    margin-bottom: 100px;
  }
  .subsection:not(.image-s) {
    flex-direction: column;
  }
  .subsection:not(.image-s) h4 {
    max-width: 100%;
    margin-top: 20px;
    font-size: 38px;
  }
  .subsection:not(.image-s) p {
    max-width: 100% !important;
  }
  .subsection:not(.image-s) div:last-child {
    width: 100%;
  }
  .overlay .contact-form {
    width: 90%;
    padding: 25px;
  }
  footer {
    padding: 30px 20px 20px 20px;
  }
  footer .first-line {
    flex-direction: column;
  }
  footer .f-contact {
    flex-direction: column;
    gap: 24px;
  }
  footer .f-menu > div:first-child, footer .f-menu > div:nth-child(2) {
    display: none;
  }
}

/*# sourceMappingURL=style.css.map */
