* {
  box-sizing: border-box;
}

:root {
  --main-font-family: "Instrument Sans", sans-serif;
  --title-font-family: "Unbounded", sans-serif;
  --white: #ffffff;
  --background: #080808;
  --text: #ffffff;
  --red: #EF5143;
  --bg-dark: #080808;
}

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

body {
  font-family: var(--main-font-family);
  font-size: 16px;
  background-color: var(--background);
  color: var(--white);
  line-height: 1.5;
}
body.menu-open {
  overflow: hidden;
}
body.menu-open .header {
  background-color: var(--background);
}
body.menu-open .header.fixed .header-nav {
  top: 64px;
}
body.menu-open .header-nav {
  top: 80px;
}
body.menu-open .burger .burger-inner {
  background-color: transparent;
}
body.menu-open .burger .burger-inner:after {
  transform: translateY(-50%) rotate(405deg);
  top: 0;
}
body.menu-open .burger .burger-inner:before {
  transform: translateY(-50%) rotate(-405deg);
  top: 0;
}

img {
  max-width: 100%;
  height: auto;
}

section {
  position: relative;
  z-index: 2;
  background-color: var(--background);
}

.background-img,
.background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.background-img img, .background-img video,
.background-video img,
.background-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom center;
}
.background-img.fixed-video,
.background-video.fixed-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.container {
  width: 100%;
  max-width: 1632px;
  height: auto;
  margin: 0 auto;
  padding: 0 15px;
}
@media (max-width: 1800px) {
  .container {
    max-width: 1280px;
  }
}

.screen-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  min-height: 100vh;
}

.screen-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

a {
  text-decoration: none;
}

h1 {
  font-size: 80px;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: 0.04em;
  font-family: var(--title-font-family);
  text-transform: uppercase;
}
h1 strong {
  color: var(--red);
  display: block;
}
@media (max-width: 1800px) {
  h1 {
    font-size: 64px;
  }
}
@media (max-width: 1280px) {
  h1 {
    font-size: 56px;
  }
}
@media (max-width: 992px) {
  h1 {
    font-size: 38px;
  }
}
@media (max-width: 480px) {
  h1 {
    font-size: 30px;
  }
}

h2 {
  font-size: 56px;
  text-transform: uppercase;
  font-family: var(--title-font-family);
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.21;
  text-shadow: 5px 0 0 rgba(239, 81, 67, 0.5);
}
h2 strong {
  color: var(--red);
  font-weight: 700;
}
@media (max-width: 1800px) {
  h2 {
    font-size: 48px;
  }
}
@media (max-width: 1280px) {
  h2 {
    font-size: 40px;
  }
}
@media (max-width: 992px) {
  h2 {
    font-size: 32px;
  }
}

h3 {
  font-size: 40px;
  line-height: 1.2;
  text-transform: uppercase;
  font-family: var(--title-font-family);
  color: var(--white);
  font-weight: 700;
  letter-spacing: 0.04em;
}
h3 strong {
  color: var(--red);
  font-weight: 700;
}
@media (max-width: 1800px) {
  h3 {
    font-size: 26px;
  }
}
@media (max-width: 992px) {
  h3 {
    font-size: 24px;
  }
}
@media (max-width: 480px) {
  h3 {
    font-size: 18px;
  }
}

h4 {
  font-weight: 700;
  font-size: 28px;
  line-height: 1.28;
  letter-spacing: 0.08em;
}
@media (max-width: 1800px) {
  h4 {
    font-size: 24px;
  }
}
@media (max-width: 1280px) {
  h4 {
    font-size: 20px;
  }
}
@media (max-width: 992px) {
  h4 {
    font-size: 18px;
  }
}

h5 {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 24px;
  line-height: 1.5;
  color: var(--red);
  letter-spacing: 0.1em;
}
@media (max-width: 1800px) {
  h5 {
    font-size: 20px;
  }
}

p {
  font-size: 20px;
  line-height: 1.8;
  color: var(--white);
  font-family: var(--main-font-family);
}
p.large-text {
  font-size: 24px;
  line-height: 1.666;
}
@media (max-width: 1800px) {
  p {
    font-size: 16px;
  }
  p.large-text {
    font-size: 20px;
  }
}
@media (max-width: 1280px) {
  p {
    font-size: 16px;
  }
  p.large-text {
    font-size: 16px;
  }
}

html {
  scroll-behavior: smooth;
}

@keyframes preload-animation {
  0%, 80% {
    top: 0;
    z-index: 1000;
    opacity: 1;
  }
  99% {
    top: 100vh;
    z-index: 1000;
    opacity: 1;
  }
  100% {
    z-index: -1;
    opacity: 0;
    top: 100vh;
  }
}
@keyframes blink-span {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}
@keyframes preload-body-anim {
  0%, 99% {
    overflow: hidden;
  }
  100% {
    overflow: visible;
  }
}
body.preload-active {
  animation: preload-body-anim 2.5s;
}
body.preload-active .preload {
  z-index: 1000;
  opacity: 1;
  animation: preload-animation 3s ease-in-out;
  animation-fill-mode: both;
}
body.preload-active .preload span {
  animation: blink-span 1s ease-in-out infinite;
}
body.preload-active .preload span:nth-child(2n) {
  animation-delay: 0.1s;
}
body.preload-active .preload span:nth-child(3n) {
  animation-delay: 0.2s;
}
body.preload-active .preload span:nth-child(4n) {
  animation-delay: 0.3s;
}
body.preload-active .preload span:nth-child(5n) {
  animation-delay: 0.4s;
}
body.preload-active .preload span:nth-child(6n) {
  animation-delay: 0.5s;
}

.preload {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--background);
  z-index: -1;
  opacity: 0;
}
.preload div {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: move-gap 1s ease-in-out;
  animation-fill-mode: both;
  display: flex;
  flex-wrap: nowrap;
}
.preload span {
  font-size: 148px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.04em;
  font-family: var(--title-font-family);
  text-transform: uppercase;
  color: var(--background);
  text-shadow: -1px -1px 0 #FEEACF, 1px -1px 0 #FEEACF, -1px 1px 0 #FEEACF, 1px 1px 0 #FEEACF;
}
@media (max-width: 1800px) {
  .preload span {
    font-size: 120px;
  }
}
@media (max-width: 1280px) {
  .preload span {
    font-size: 108px;
  }
}
@media (max-width: 992px) {
  .preload span {
    font-size: 80px;
  }
}
@media (max-width: 480px) {
  .preload span {
    font-size: 45px;
  }
}

.about-intro__section {
  position: relative;
  overflow: hidden;
  height: 100vh;
  min-height: 768px;
  display: flex;
  align-items: center;
}
@media (max-width: 1800px) {
  .about-intro__section {
    min-height: 680px;
  }
}
@media (max-width: 768px) {
  .about-intro__section {
    min-height: 580px;
    height: auto;
    padding: 70px 0;
  }
}

.about-intro__inner {
  display: flex;
  gap: 176px;
  align-items: center;
}
.about-intro__inner .about-intro__text {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
  max-width: 820px;
}
.about-intro__inner .about-intro__text h1 {
  font-size: 48px;
  line-height: 1.16;
}
.about-intro__inner .about-intro__text h1 strong {
  letter-spacing: 0.02em;
}
.about-intro__inner .about-intro__text p {
  line-height: 1.8;
}
.about-intro__inner .about-intro__img {
  position: relative;
  width: 488px;
  min-width: 488px;
  height: 652px;
}
.about-intro__inner .about-intro__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
}
.about-intro__inner .about-intro__img .line {
  position: absolute;
  background: rgba(255, 255, 255, 0.2);
}
.about-intro__inner .about-intro__img .line:nth-child(1) {
  top: 0;
  left: 0;
  width: calc(100% + 50vw);
  height: 1px;
}
.about-intro__inner .about-intro__img .line:nth-child(2) {
  top: 0;
  right: 0;
  width: 1px;
  height: calc(100% + 50vh);
}
.about-intro__inner .about-intro__img .line:nth-child(3) {
  bottom: 0;
  left: -296px;
  width: calc(100% + 50vw);
  height: 1px;
}
.about-intro__inner .about-intro__img .line:nth-child(3):after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 250px;
  background: rgba(255, 255, 255, 0.2);
}
.about-intro__inner .about-intro__img .line:nth-child(4) {
  top: 0;
  left: 0;
  width: 1px;
  height: calc(100% + 50vh);
}
@media (max-width: 1800px) {
  .about-intro__inner {
    gap: 100px;
  }
  .about-intro__inner .about-intro__text h1 {
    font-size: 40px;
  }
  .about-intro__inner .about-intro__img {
    width: 380px;
    min-width: 380px;
    height: 522px;
  }
}
@media (max-width: 991px) {
  .about-intro__inner {
    gap: 40px;
  }
  .about-intro__inner .about-intro__text {
    gap: 16px;
  }
  .about-intro__inner .about-intro__text h1 {
    font-size: 28px;
  }
  .about-intro__inner .about-intro__img {
    width: 300px;
    min-width: 300px;
    height: 422px;
  }
}
@media (max-width: 768px) {
  .about-intro__inner {
    flex-direction: column-reverse;
  }
}

.about-top-content__section {
  padding: 384px 0 0;
  margin-bottom: 120px;
}
@media (max-width: 1800px) {
  .about-top-content__section {
    padding: 250px 0 0;
    margin-bottom: 80px;
  }
}
@media (max-width: 991px) {
  .about-top-content__section {
    padding: 200px 0 0;
    margin-bottom: 40px;
  }
}
@media (max-width: 580px) {
  .about-top-content__section {
    padding-top: 0;
  }
  .about-top-content__section .background-img {
    position: relative;
    z-index: 1;
  }
}

.about-top-content__inner {
  padding: 48px 80px 0;
  background: var(--background);
  display: flex;
  flex-direction: column;
  max-width: calc(50vw + 40px);
  width: 100%;
  margin: 0 0 0 auto;
}
.about-top-content__inner p {
  max-width: 760px;
  width: 100%;
  line-height: 1.8;
}
@media (max-width: 1800px) {
  .about-top-content__inner {
    padding: 48px 40px 0;
    max-width: calc(50vw + 20px);
  }
}
@media (max-width: 991px) {
  .about-top-content__inner {
    padding: 48px 20px 0;
    max-width: 100%;
    max-width: calc(75vw + 40px);
  }
}
@media (max-width: 580px) {
  .about-top-content__inner {
    padding: 48px 16px 0;
    max-width: calc(80vw + 40px);
  }
}

.contact__section {
  min-height: 768px;
  display: flex;
  align-items: center;
  padding: 200px 0 148px;
}
@media (max-width: 1800px) {
  .contact__section {
    padding: 140px 0 100px;
  }
}

.contact__inner {
  display: flex;
  gap: 100px;
  justify-content: space-between;
}
@media (max-width: 1800px) {
  .contact__inner {
    gap: 48px;
  }
}
@media (max-width: 768px) {
  .contact__inner {
    flex-direction: column;
    gap: 48px;
  }
}

.contact__text {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  max-width: 572px;
  width: 100%;
}
.contact__text h1 {
  font-family: var(--main-font-family);
  font-size: 108px;
  line-height: 1.037;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: initial;
  color: var(--white);
  margin-top: 20px;
}
.contact__text .contact__list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.contact__text .contact__list li {
  display: flex;
  gap: 24px;
  color: var(--white);
  font-size: 20px;
  line-height: 1.5;
}
.contact__text .contact__list li img {
  min-width: 32px;
  height: 32px;
  width: 32px;
  object-fit: contain;
  object-position: center;
}
.contact__text .contact__list li a {
  color: var(--white);
  transition: 0.3s;
}
.contact__text .contact__list li a:hover {
  color: var(--red);
}
.contact__text .social__list {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 24px;
}
.contact__text .social__list li a img {
  width: 40px;
  min-width: 40px;
  height: 40px;
  object-fit: contain;
  object-position: center;
  filter: brightness(0) invert(1);
  transition: transform 0.3s;
}
.contact__text .social__list li a:hover img {
  transform: scale(1.1);
  filter: brightness(0) saturate(100%) invert(19%) sepia(100%) saturate(6650%) hue-rotate(360deg) brightness(97%) contrast(112%);
}
@media (max-width: 1800px) {
  .contact__text {
    gap: 24px;
    margin-bottom: 24px;
  }
  .contact__text h1 {
    font-size: 80px;
  }
  .contact__text .contact__list li {
    font-size: 16px;
  }
  .contact__text .contact__list li img {
    min-width: 24px;
    height: 24px;
    width: 24px;
  }
  .contact__text .social__list {
    gap: 24px;
  }
  .contact__text .social__list li a img {
    width: 32px;
    min-width: 32px;
    height: 32px;
  }
}
@media (max-width: 992px) {
  .contact__text {
    gap: 16px;
  }
  .contact__text h1 {
    font-size: 60px;
  }
  .contact__text .contact__list li {
    font-size: 14px;
  }
  .contact__text .contact__list li img {
    min-width: 20px;
    height: 20px;
    width: 20px;
  }
}
@media (max-width: 768px) {
  .contact__text {
    gap: 48px;
  }
  .contact__text .social__list {
    gap: 16px;
  }
  .contact__text .contact__list {
    gap: 24px;
  }
}

.contact__form {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 56px 64px 92px;
  background: #0D0D0D;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.contact__form h2 {
  font-family: var(--main-font-family);
  font-size: 40px;
  font-weight: 700;
  color: var(--white);
  text-align: center;
  line-height: 1.2;
  margin-bottom: 16px;
  text-shadow: none;
  text-transform: inherit;
}
.contact__form p {
  margin-bottom: 60px;
  text-align: center;
}
.contact__form .wpcf7 {
  width: 100%;
}
@media (max-width: 1800px) {
  .contact__form {
    padding: 40px 48px 60px;
  }
  .contact__form h2 {
    font-size: 32px;
    margin-bottom: 16px;
  }
  .contact__form p {
    margin-bottom: 48px;
    font-size: 16px;
  }
}
@media (max-width: 992px) {
  .contact__form {
    padding: 32px 32px 48px;
  }
  .contact__form h2 {
    font-size: 24px;
    margin-bottom: 16px;
  }
  .contact__form p {
    margin-bottom: 24px;
    font-size: 16px;
  }
}

.contact-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-items: center;
}
.contact-form .btn {
  margin-top: 16px;
}
.contact-form .form-row {
  display: flex;
  gap: 60px;
  width: 100%;
}
.contact-form .form-group {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 4px;
}
.contact-form .form-group.full-width {
  width: 100%;
}
.contact-form .form-group label {
  font-family: var(--main-font-family);
  font-size: 16px;
  font-weight: 500;
  color: var(--white);
  line-height: 1.5;
  opacity: 0.7;
}
.contact-form .form-group input,
.contact-form .form-group textarea {
  width: 100%;
  height: 52px;
  font-size: 20px;
  line-height: 1.2;
  padding: 12px 0;
  background: transparent;
  border: none;
  border-bottom: 2px solid #3D3D3D;
  transition: 0.3s;
  color: var(--white);
}
.contact-form .form-group input[type=number],
.contact-form .form-group textarea[type=number] {
  -moz-appearance: textfield;
}
.contact-form .form-group input[type=number]::-webkit-outer-spin-button, .contact-form .form-group input[type=number]::-webkit-inner-spin-button,
.contact-form .form-group textarea[type=number]::-webkit-outer-spin-button,
.contact-form .form-group textarea[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
.contact-form .form-group input:placeholder,
.contact-form .form-group textarea:placeholder {
  color: #5B5B5B;
}
.contact-form .form-group input:focus,
.contact-form .form-group textarea:focus {
  border-color: #FEEACF;
  outline: none;
}
.contact-form .form-group textarea {
  height: auto;
  min-height: 52px;
  max-height: 300px;
  overflow-y: auto;
  height: 52px;
  padding: 12px 0;
  resize: none;
  font-family: var(--main-font-family);
}
@media (max-width: 1800px) {
  .contact-form {
    gap: 32px;
  }
  .contact-form .form-row {
    gap: 48px;
  }
  .contact-form .form-group label {
    font-size: 14px;
  }
  .contact-form .form-group input,
  .contact-form .form-group textarea {
    font-size: 16px;
  }
}
@media (max-width: 992px) {
  .contact-form {
    gap: 24px;
  }
  .contact-form .form-row {
    gap: 24px;
  }
}
@media (max-width: 480px) {
  .contact-form .form-row {
    flex-direction: column;
  }
  .contact-form .btn {
    width: 100%;
  }
}

.portfolio__block {
  background: var(--background);
  color: var(--white);
  padding: 96px 0 160px;
}
.portfolio__block-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 64px;
}
.portfolio__block-tabs {
  width: 100%;
  display: flex;
  gap: 40px;
  justify-content: space-between;
  align-items: center;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-gutter: stable;
}
.portfolio__block-tabs::-webkit-scrollbar {
  width: 8px;
}
.portfolio__block-tabs::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: var(--red);
  border: 2px solid var(--bg-dark);
}
.portfolio__block-tabs::-webkit-scrollbar-track {
  border-radius: 10px;
  background-color: var(--background);
}
@media (max-width: 768px) {
  .portfolio__block-tabs {
    overflow-x: scroll;
    overflow-y: hidden;
    white-space: nowrap;
    margin-right: -16px;
  }
  .portfolio__block-tabs::-webkit-scrollbar {
    width: 0;
    height: 0;
  }
}
.portfolio__block-tab p {
  color: var(--white);
  font-family: Unbounded;
  font-size: 32px;
  font-weight: 700;
  line-height: 68px;
  letter-spacing: 1.28px;
  text-transform: uppercase;
  cursor: pointer;
  opacity: 0.2;
  transition: opacity 0.3s, font-size 0.3s;
}
.portfolio__block-tab.active p {
  font-size: 48px;
  letter-spacing: 1.92px;
  opacity: 1;
}
.portfolio__block-tab.active p b {
  color: var(--red);
}
.portfolio__block-tab:hover p {
  opacity: 0.8;
}
.portfolio__block-content {
  display: none;
  flex-direction: column;
  gap: 64px;
}
.portfolio__block-content.active {
  display: flex;
}
.portfolio__block-video-wrap {
  position: relative;
  height: 624px;
  max-height: 624px;
  overflow: hidden;
  width: 100%;
}
.portfolio__block-video-wrap video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}
.portfolio__block-video-wrap.paused .content-img__link, .portfolio__block-video-wrap.playing .content-img__link {
  opacity: 0;
  z-index: -1;
}
.portfolio__block-item {
  display: none;
  flex-direction: column;
  gap: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #0d0d0d;
  padding: 24px 24px 28px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease-out, transform 0.3s ease-out;
}
.portfolio__block-item.show {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}
.portfolio__block-item--hidden {
  opacity: 0.2;
  pointer-events: none;
  display: flex;
  transform: translateY(0);
  max-height: 514px;
  overflow: hidden;
}
.portfolio__block-item--hidden .portfolio__block-video-wrap {
  overflow: visible;
}
.portfolio__block-item--hidden .portfolio__block-play {
  display: none;
}
.portfolio__block-item--hidden.show {
  opacity: 0.2;
}
.portfolio__block-play {
  position: absolute;
  right: 24px;
  bottom: 24px;
  z-index: 1;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  cursor: pointer;
  background: transparent;
  border: none;
}
.portfolio__block-play img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.3s;
  object-fit: contain;
}
.portfolio__block-play:hover img {
  transform: translate(-50%, -50%) scale(1.1);
  filter: brightness(90%);
}
.portfolio__block-info {
  display: flex;
  gap: 24px;
  padding: 0 54px 0 32px;
  align-items: flex-start;
  justify-content: space-between;
}
.portfolio__block-client-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 514px;
}
.portfolio__block-client {
  color: var(--red);
  font-family: "Instrument Sans";
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 2.4px;
  text-transform: uppercase;
}
.portfolio__block-tools {
  color: rgba(255, 255, 255, 0.8);
  font-family: "Instrument Sans";
  font-size: 20px;
  font-weight: 400;
  line-height: 1.4;
}
.portfolio__block-more {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 4px;
  margin: -4px auto 0;
  border: none;
  background: none;
  color: var(--white);
  color: #fff;
  text-align: center;
  text-shadow: 0 0 1px rgba(0, 0, 0, 0.7), 0 0 3px rgba(255, 255, 255, 0.4);
  font-family: "Instrument Sans";
  font-size: 20px;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.3s, opacity 0.5s;
}
.portfolio__block-more svg {
  transition: all 0.3s;
}
.portfolio__block-more svg path {
  transition: all 0.3s;
}
.portfolio__block-more:hover {
  color: var(--red);
}
.portfolio__block-more:hover svg {
  transform: translateY(4px);
}
.portfolio__block-more:hover svg path {
  fill: var(--red);
}
@media (max-width: 1800px) {
  .portfolio__block {
    padding: 75px 0 120px;
  }
  .portfolio__block-header {
    margin-bottom: 48px;
  }
  .portfolio__block-tabs {
    height: 48px;
  }
  .portfolio__block-tab p {
    font-size: 20px;
    line-height: 1.5;
  }
  .portfolio__block-tab.active p {
    font-size: 32px;
  }
  .portfolio__block-content {
    gap: 48px;
  }
  .portfolio__block-item {
    gap: 24px;
  }
  .portfolio__block-video-wrap {
    height: 400px;
    max-height: 400px;
  }
  .portfolio__block-video-wrap.playing {
    height: auto;
    max-height: 100%;
  }
}
@media (max-width: 1440px) {
  .portfolio__block {
    padding: 60px 0 100px;
  }
  .portfolio__block-header {
    margin-bottom: 32px;
  }
  .portfolio__block-tabs {
    height: 40px;
  }
  .portfolio__block-tab.active p {
    font-size: 24px;
  }
  .portfolio__block-content {
    gap: 32px;
  }
  .portfolio__block-item {
    gap: 24px;
  }
  .portfolio__block-item--hidden {
    max-height: 300px;
  }
  .portfolio__block-play {
    right: 10px;
    bottom: 10px;
  }
  .portfolio__block-info {
    flex-direction: column;
    gap: 16px;
    padding: 0;
  }
  .portfolio__block-client-info {
    max-width: none;
  }
  .portfolio__block-more {
    border: none;
    font-size: 14px;
    line-height: 1.5;
  }
}
@media (max-width: 992px) {
  .portfolio__block-tabs {
    height: 60px;
  }
  .portfolio__block-tab p {
    font-size: 16px;
  }
  .portfolio__block-tab.active p {
    font-size: 20px;
  }
  .portfolio__block-item {
    gap: 16px;
  }
  .portfolio__block-info {
    gap: 8px;
  }
  .portfolio__block-title {
    font-size: 16px;
  }
  .portfolio__block-client {
    font-size: 12px;
  }
  .portfolio__block-client-info {
    gap: 0;
  }
  .portfolio__block-tools {
    font-size: 10px;
  }
}
@media (max-width: 768px) {
  .portfolio__block-video-wrap {
    height: 300px;
    max-height: 300px;
  }
}
@media (max-width: 580px) {
  .portfolio__block-video-wrap {
    height: 250px;
    max-height: 250px;
  }
}
@media (max-width: 480px) {
  .portfolio__block-video-wrap {
    height: 180px;
    max-height: 180px;
  }
}

.privacy-policy__section {
  padding: 100px 0;
  background-color: #080808;
  color: rgba(255, 255, 255, 0.8);
  min-height: 100vh;
}
.privacy-policy__section .privacy-policy__inner {
  margin: 0 auto;
  padding: 0 20px;
}
.privacy-policy__section .privacy-policy__inner p {
  font-size: 20px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 16px;
}
.privacy-policy__section .privacy-policy__inner h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.96px;
  text-shadow: none;
  margin: 60px 0 24px 0;
}
.privacy-policy__section .privacy-policy__inner ul {
  margin: 16px 0;
  padding-left: 0;
  list-style: none;
}
.privacy-policy__section .privacy-policy__inner ul li {
  font-size: 18px;
  line-height: 28px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 8px;
  position: relative;
  padding-left: 25px;
}
.privacy-policy__section .privacy-policy__inner ul li::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 0px;
  background: #ef5143;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.privacy-policy__section .privacy-policy__inner a {
  color: #ef5143;
  text-decoration: underline;
}
.privacy-policy__section .privacy-policy__inner a:hover {
  color: #fff;
}

@media (max-width: 768px) {
  .privacy-policy__section {
    padding: 60px 0;
  }
  .privacy-policy__section .privacy-policy__inner {
    padding: 0 15px;
  }
  .privacy-policy__section .privacy-policy__inner h2 {
    font-size: 20px;
    padding: 15px;
    letter-spacing: 1px;
    margin: 20px 0 10px 0;
  }
  .privacy-policy__section .privacy-policy__inner p,
  .privacy-policy__section .privacy-policy__inner li {
    font-size: 16px;
  }
}
.error-404__section {
  padding-top: 80px;
  padding-bottom: 120px;
  background: #080808;
  display: flex;
  align-items: center;
  position: relative;
}
.error-404__section .error-404__inner {
  text-align: center;
  margin: 0 auto;
}
.error-404__section .clapperboard-image {
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
}
.error-404__section .clapperboard-image img {
  width: 100%;
  height: auto;
  display: block;
}
.error-404__section .error-message {
  text-align: center;
}
.error-404__section .error-message h1 {
  font-size: 40px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1.6px;
  margin-bottom: 12px;
}
.error-404__section .error-message .error-description {
  font-size: 24px;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.96px;
  line-height: 1.3;
  max-width: 850px;
  text-align: center;
  font-weight: 700;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .error-404__section {
    padding: 60px 0;
  }
  .error-404__section .clapperboard-image {
    margin-bottom: 40px;
  }
  .error-404__section .clapperboard-image img {
    width: 100%;
  }
  .error-404__section .error-message h1 {
    font-size: 32px;
    letter-spacing: 0.96px;
  }
  .error-404__section .error-message .error-description {
    font-size: 16px;
    padding: 0 20px;
  }
}
.header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  z-index: 100;
  padding: 32px 0;
  transition: 0.3s;
}
.header .container {
  max-width: 1630px;
  padding: 0 15px;
}
.header.fixed {
  padding: 16px 0;
  background-color: var(--background);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.25);
}
@media (max-width: 1800px) {
  .header {
    padding: 24px 0;
  }
  .header .container {
    padding: 0 15px;
    max-width: 1440px;
  }
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
@media (max-width: 1800px) {
  .header-inner {
    gap: 16px;
  }
}
@media (max-width: 768px) {
  .header-inner > .btn {
    display: none;
  }
}

.header-nav {
  position: relative;
  z-index: 1;
}
.header-nav ul {
  display: flex;
  align-items: center;
  gap: 40px;
}
.header-nav ul li a {
  font-size: 16px;
  line-height: 2.25;
  position: relative;
  display: block;
  color: var(--white);
}
.header-nav ul li a:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  transition: 0.3s;
  height: 2px;
  background-color: var(--white);
}
.header-nav ul li a:hover:after {
  width: 100%;
}
.header-nav > .btn {
  display: none;
}
@media (max-width: 1800px) {
  .header-nav ul {
    gap: 32px;
  }
  .header-nav ul li a {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .header-nav {
    position: absolute;
    top: 100vh;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--background);
    z-index: 100;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding: 24px 16px;
    transition: 0.5s;
  }
  .header-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    align-items: center;
  }
  .header-nav ul li a {
    width: 100%;
    text-align: center;
    font-size: 18px;
  }
  .header-nav > .btn {
    display: block;
  }
}

.header-logo {
  color: var(--white);
  font-size: 48px;
  font-weight: 500;
  line-height: 0.75;
}
@media (max-width: 1800px) {
  .header-logo {
    font-size: 40px;
  }
}

.btn {
  width: fit-content;
  font-size: 16px;
  color: var(--white);
  border: 1px solid var(--white);
  padding: 10px 50px;
  transition: 0.3s;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  white-space: nowrap;
  cursor: pointer;
}
.btn:hover {
  color: var(--background);
  background: var(--white);
}
.btn.gradient-border {
  text-transform: uppercase;
  border: none;
  background: conic-gradient(from 90deg at 50% 50%, #EF5143 0%, var(--white) 100%);
  box-shadow: 0 2px 80px 0 rgba(254, 234, 207, 0.0862745098);
  padding: 18px 56px;
  font-size: 20px;
  height: auto;
  line-height: 1.8;
  letter-spacing: 0.04em;
}
.btn.gradient-border.sm {
  padding: 18px 48px;
}
.btn.gradient-border:before, .btn.gradient-border:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 4px);
  height: calc(100% - 2px);
  background-color: var(--background);
  z-index: -2;
}
.btn.gradient-border:after {
  width: 0;
  z-index: -1;
  opacity: 0;
  border-radius: 50%;
  transition: 0.3s ease-in-out;
}
.btn.gradient-border:hover {
  box-shadow: 0 2px 80px 0 rgba(254, 234, 207, 0.1568627451);
}
.btn.gradient-border:hover:after {
  background-color: var(--white);
  width: 100%;
  opacity: 1;
  border-radius: 0;
}
@media (max-width: 1800px) {
  .btn {
    font-size: 14px;
    padding: 8px 32px;
    height: 40px;
  }
  .btn.gradient-border {
    padding: 12px 32px;
    font-size: 14px;
    height: auto;
  }
}

.burger {
  display: none;
  width: 32px;
  height: 32px;
  min-width: 32px;
  cursor: pointer;
  position: relative;
  z-index: 1;
}
.burger .burger-inner {
  width: 24px;
  height: 2px;
  border-radius: 2px;
  background-color: var(--white);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.burger .burger-inner:after, .burger .burger-inner:before {
  content: "";
  position: absolute;
  width: 24px;
  height: 2px;
  border-radius: 2px;
  background-color: var(--white);
  left: 0;
  transform: translateY(-50%) rotate(0deg);
  transition: 0.3s;
}
.burger .burger-inner:after {
  top: -8px;
}
.burger .burger-inner:before {
  top: 10px;
}
@media (max-width: 768px) {
  .burger {
    display: block;
  }
}

.footer {
  background-color: var(--background);
  z-index: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 64px;
  overflow: hidden;
  position: relative;
  z-index: 2;
}
@media (max-width: 1800px) {
  .footer {
    padding-top: 48px;
  }
}
@media (max-width: 580px) {
  .footer {
    padding-top: 24px;
  }
}

.footer__inner {
  display: flex;
  flex-direction: column;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 100px;
  position: relative;
}
.footer-top:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.2);
}
.footer-top .mail {
  font-weight: 700;
  font-size: 185px;
  line-height: 1.14;
  color: var(--background);
  text-shadow: -1px -1px 0 #FEEACF, 1px -1px 0 #FEEACF, -1px 1px 0 #FEEACF, 1px 1px 0 #FEEACF;
  transition: color 0.3s ease;
}
.footer-top .mail:hover {
  color: #FEEACF;
  text-shadow: 0 0 20px rgba(254, 234, 207, 0.2666666667);
}
@media (max-width: 1800px) {
  .footer-top {
    gap: 48px;
  }
  .footer-top .mail {
    font-size: 145px;
  }
}
@media (max-width: 1280px) {
  .footer-top .mail {
    font-size: calc(11vw - 1px);
    line-height: 1.14;
  }
}
@media (max-width: 580px) {
  .footer-top {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }
  .footer-top .mail {
    font-size: calc(11vw - 5px);
    line-height: 1.14;
  }
}

.footer-logo {
  font-size: 32px;
  line-height: 1.125;
  font-weight: 500;
  color: var(--white);
}

.footer-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 32px;
}
.footer-nav .footer-nav__list {
  align-items: center;
  display: flex;
  gap: 48px;
}
.footer-nav .footer-nav__list li a {
  font-size: 16px;
  line-height: 2.25;
  color: var(--white);
  transition: 0.3s;
}
.footer-nav .footer-nav__list li a:hover {
  color: var(--red);
}
.footer-nav .footer-social {
  display: flex;
  align-items: center;
  gap: 28px;
}
.footer-nav .footer-social li a img {
  width: 26px;
  min-width: 26px;
  height: 26px;
  transition: transform 0.3s;
}
.footer-nav .footer-social li a:hover img {
  transform: scale(1.1);
  filter: brightness(0) saturate(100%) invert(19%) sepia(100%) saturate(6650%) hue-rotate(360deg) brightness(97%) contrast(112%);
}
@media (max-width: 1800px) {
  .footer-nav {
    gap: 24px;
  }
  .footer-nav .footer-nav__list {
    gap: 32px;
  }
}
@media (max-width: 1440px) {
  .footer-nav .footer-nav__list {
    gap: 24px;
  }
}
@media (max-width: 580px) {
  .footer-nav {
    align-items: center;
  }
  .footer-nav .footer-nav__list {
    gap: 24px;
  }
}

.footer-bottom {
  padding: 56px 0 60px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.footer-bottom p {
  display: flex;
  gap: 4px;
  align-items: center;
}
.footer-bottom p,
.footer-bottom ul li a {
  font-size: 16px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.5);
  transition: 0.3s;
}
.footer-bottom p:first-child {
  width: 100%;
}
.footer-bottom ul li a:hover {
  color: var(--white);
}
.footer-bottom p a {
  display: block;
  width: 58px;
}
.footer-bottom p a img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
}
@media (max-width: 1800px) {
  .footer-bottom {
    padding: 48px 0 48px;
  }
}
@media (max-width: 1440px) {
  .footer-bottom {
    padding: 40px 0 40px;
  }
}
@media (max-width: 580px) {
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }
  .footer-bottom p:first-child {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}

.main-intro {
  position: relative;
  z-index: 1;
  height: 100vh;
  min-height: 780px;
}
.main-intro .container {
  height: 100%;
}
.main-intro .background-video:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.2) 35%, rgba(0, 0, 0, 0.2) 65%, rgba(0, 0, 0, 0.8) 100%);
}
@media (max-width: 992px) {
  .main-intro {
    min-height: 580px;
  }
}

.main-intro__inner {
  display: flex;
  flex-direction: column;
  justify-content: end;
  height: 100%;
  padding: 92px 0;
  display: flex;
}
.main-intro__inner h1 {
  margin-bottom: -34px;
  padding-right: 250px;
}
.main-intro__inner h4 {
  background: linear-gradient(180deg, rgba(148, 30, 20, 0.1) 0%, rgba(148, 30, 20, 0.05) 50%, rgba(148, 30, 20, 0) 100%);
  border-top: 0.5px solid rgba(255, 255, 255, 0.6666666667);
  border-radius: 100px;
  width: fit-content;
  padding: 16px 32px;
  margin-bottom: 36px;
  text-transform: uppercase;
}
@media (max-width: 1800px) {
  .main-intro__inner {
    padding: 72px 0;
  }
  .main-intro__inner h1 {
    margin-bottom: -28px;
    padding-right: 200px;
  }
  .main-intro__inner h4 {
    padding: 12px 24px;
    margin-bottom: 28px;
  }
}
@media (max-width: 1280px) {
  .main-intro__inner {
    padding: 48px 0;
  }
  .main-intro__inner h1 {
    margin-bottom: -24px;
    padding-right: 150px;
  }
}
@media (max-width: 992px) {
  .main-intro__inner {
    padding: 24px 0;
  }
  .main-intro__inner h4 {
    padding: 10px 24px;
    margin-bottom: 24px;
  }
  .main-intro__inner h1 {
    margin-bottom: 24px;
    padding-right: 0;
  }
}

.video-bottom {
  display: flex;
  gap: 100px;
  width: 100%;
  align-items: flex-end;
}
.video-bottom p {
  width: auto;
}
@media (max-width: 992px) {
  .video-bottom {
    flex-direction: column-reverse;
    gap: 24px;
  }
}

.video-ui {
  min-width: 63.5%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.08) 50%, rgba(0, 0, 0, 0) 100%);
  border-top: 0.5px solid rgba(255, 255, 255, 0.6666666667);
  border-radius: 100px;
  width: fit-content;
  padding: 16px 28px;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 17px;
}
.video-ui.paused .play-pause-btn svg {
  transform: scale(1) rotate(0deg);
  opacity: 1;
}
.video-ui.paused .play-pause-btn:before, .video-ui.paused .play-pause-btn:after {
  transform: translate(-50%, -50%) scale(0.5);
  opacity: 0;
}
@media (max-width: 992px) {
  .video-ui {
    min-width: 100%;
    padding: 10px 24px;
    height: 40px;
  }
}

.play-pause-btn {
  min-width: 32px;
  width: 32px;
  height: 32px;
  cursor: pointer;
  position: relative;
}
.play-pause-btn svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: 0.3s;
  position: relative;
  transform: scale(0.5px) rotate(90deg);
  opacity: 0;
}
.play-pause-btn:before, .play-pause-btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 7px;
  height: 20px;
  border-radius: 2px;
  background-color: var(--white);
  transition: 0.3s;
  transform: translate(calc(-50% + 6px), -50%) scale(1);
  opacity: 1;
}
.play-pause-btn:after {
  transform: translate(calc(-50% - 6px), -50%) scale(1);
}
.play-pause-btn.paused svg {
  transform: scale(0.5px) rotate(90deg);
  opacity: 0;
}
.play-pause-btn.paused:before, .play-pause-btn.paused:after {
  transform: translate(-50%, -50%) scale(0.5);
  opacity: 0;
}

.progress-bar {
  position: relative;
  display: block;
  width: 100%;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  border-radius: 2px;
}
.progress-bar .progress-bar-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: var(--white);
  transition: 0.3s;
  border-radius: 2px;
}

.mission-overview {
  height: 100vh;
  min-height: 650px;
  overflow: hidden;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
  background: transparent;
}
.mission-overview:before, .mission-overview:after {
  content: "";
  position: absolute;
  left: 50%;
  top: -45%;
  width: 100%;
  height: 300px;
  border-radius: 50%;
  background-color: var(--red);
  opacity: 0.3;
  transform: translateX(-50%);
  z-index: -1;
  filter: blur(150px);
}
.mission-overview:before {
  content: none;
}
.mission-overview:after {
  top: auto;
  bottom: -35%;
}
.mission-overview .background-img img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
@media (max-width: 992px) {
  .mission-overview {
    min-height: 580px;
  }
}
.mission-overview.animation-active .background-animation {
  animation: zoom 10s ease-in-out;
  animation-fill-mode: forwards;
}
.mission-overview.animation-active .background-animation img {
  animation: img-pulse 3s ease-out alternate infinite;
}
.mission-overview.animation-active .background-animation img:nth-child(3n) {
  animation-delay: 0.5s;
}
.mission-overview.animation-active .background-animation img:nth-child(3n+1) {
  animation-delay: -1s;
  animation-duration: 2s;
}
.mission-overview.animation-active .background-animation img:nth-child(3n+2) {
  animation-delay: -1.5s;
  animation-duration: 1.5s;
}

@keyframes img-pulse {
  0% {
    transform: scale(0.8);
    opacity: 0.2;
    filter: brightness(100%);
  }
  80% {
    filter: brightness(100%);
    transform: scale(1);
  }
  100% {
    transform: scale(1.05);
    opacity: 1;
    filter: brightness(125%);
  }
}
@keyframes zoom {
  0% {
    transform: translate(-50%, -50%) scale(0.2);
    opacity: 0;
  }
  25% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.05);
    opacity: 1;
  }
}
.background-animation {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  z-index: -1;
}
.background-animation img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  height: auto;
  object-fit: contain;
  transform-origin: center;
}
.background-animation img:nth-child(1) {
  width: 8%;
  min-width: 80px;
  left: 12%;
  top: 26%;
}
.background-animation img:nth-child(2) {
  width: 5%;
  min-width: 50px;
  left: 29%;
  top: 17%;
}
.background-animation img:nth-child(3) {
  width: 4.5%;
  min-width: 45px;
  left: 14%;
  top: 54%;
}
.background-animation img:nth-child(4) {
  width: 4%;
  min-width: 40px;
  left: 23%;
  top: 44%;
}
.background-animation img:nth-child(5) {
  width: 8%;
  min-width: 80px;
  left: 23%;
  top: 73%;
}
.background-animation img:nth-child(6) {
  width: 6%;
  min-width: 60px;
  left: 88%;
  top: 15%;
}
.background-animation img:nth-child(7) {
  width: 7%;
  min-width: 70px;
  left: 78%;
  top: 26%;
}
.background-animation img:nth-child(8) {
  width: 4%;
  min-width: 40px;
  left: 78%;
  top: 43%;
}
.background-animation img:nth-child(9) {
  width: 8%;
  min-width: 80px;
  left: 84%;
  top: 62%;
}
.background-animation img:nth-child(10) {
  width: 7%;
  min-width: 70px;
  left: 73%;
  top: 78%;
}
.background-animation img:nth-child(11) {
  width: 4%;
  min-width: 40px;
  left: 92%;
  top: 84%;
}
@media (max-width: 992px) {
  .background-animation {
    opacity: 0.5 !important;
  }
}

.mission-overview__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.mission-overview__inner h5 {
  margin-bottom: 40px;
}
.mission-overview__inner h2 {
  margin-bottom: 32px;
}
.mission-overview__inner p {
  margin-bottom: 56px;
}
@media (max-width: 992px) {
  .mission-overview__inner h5 {
    margin-bottom: 24px;
  }
  .mission-overview__inner h2 {
    margin-bottom: 24px;
  }
  .mission-overview__inner p {
    margin-bottom: 24px;
  }
}

.brand-slider__section {
  padding: 60px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  overflow: hidden;
  position: relative;
}
@media (max-width: 992px) {
  .brand-slider__section {
    padding: 40px 0;
  }
}

.brand-slider {
  display: flex;
  align-items: center;
  position: relative;
}
.brand-slider:before, .brand-slider:after {
  content: "";
  position: absolute;
  width: 36px;
  height: 100%;
  left: 0px;
  background: linear-gradient(90deg, rgb(8, 8, 8) 0%, rgba(8, 8, 8, 0) 100%);
  z-index: 1;
}
.brand-slider:after {
  left: auto;
  right: 0px;
  background: linear-gradient(90deg, rgba(8, 8, 8, 0) 0%, rgb(8, 8, 8) 100%);
}
.brand-slider .brand-slider__item {
  max-width: 244px;
  max-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.brand-slider .brand-slider__item img {
  width: 100%;
  height: -webkit-fill-available;
  object-fit: contain;
}
@media (max-width: 1024px) {
  .brand-slider .brand-slider__item {
    max-width: 150px;
  }
}
@media (max-width: 992px) {
  .brand-slider .brand-slider__item {
    max-width: 150px;
  }
}

.portfolio-block__section {
  padding: 160px 0;
  position: relative;
}
.portfolio-block__section::before, .portfolio-block__section::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background-color: var(--white);
  opacity: 0.3;
  z-index: -1;
}
.portfolio-block__section:after {
  height: 1px;
  top: calc(50% + 160px);
  left: calc(50% - 794px);
}
.portfolio-block__section:before {
  width: 1px;
  left: calc(50% + 160px);
}
@media (max-width: 768px) {
  .portfolio-block__section {
    padding: 60px 0;
  }
}

.portfolio-block__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 56px;
  position: relative;
}
.portfolio-block__inner .fade-side {
  cursor: pointer;
  position: absolute;
  height: 100%;
  width: 100px;
  background: linear-gradient(90deg, rgb(8, 8, 8) 0%, rgba(8, 8, 8, 0) 100%);
  z-index: 1;
  transition: 0.3s;
}
.portfolio-block__inner .fade-side.left {
  left: 0;
}
.portfolio-block__inner .fade-side.left:before {
  content: "";
  opacity: 0.1;
  position: absolute;
  left: 0;
  top: 573px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
}
.portfolio-block__inner .fade-side.right {
  left: auto;
  right: 0;
  background: linear-gradient(90deg, rgba(8, 8, 8, 0) 0%, rgb(8, 8, 8) 100%);
}
.portfolio-block__inner .fade-side:hover {
  opacity: 0.9;
}
.portfolio-block__inner .portfolio-slider {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 700px;
}
.portfolio-block__inner .slick-list {
  overflow: visible;
  height: 700px;
}
.portfolio-block__inner .slick-track {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 700px;
}
.portfolio-block__inner .portfolio-slider__item {
  overflow: hidden;
  border-radius: 6px;
  transition: all 0.3s ease;
  height: 570px;
  width: 1072px;
  position: relative;
  filter: brightness(0.4);
}
.portfolio-block__inner .portfolio-slider__item img,
.portfolio-block__inner .portfolio-slider__item video {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}
.portfolio-block__inner .portfolio-slider__item.paused .content-img__link, .portfolio-block__inner .portfolio-slider__item.playing .content-img__link {
  opacity: 0;
  z-index: -1;
}
.portfolio-block__inner .portfolio-slider__item .content-img__link {
  position: absolute;
  cursor: pointer;
  border: none;
  background: none;
  right: 32px;
  bottom: 40px;
  z-index: 1;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  opacity: 0;
  transition: 0.3s;
}
.portfolio-block__inner .portfolio-slider__item .content-img__link img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.3s;
  object-fit: contain;
  opacity: 0.5;
}
.portfolio-block__inner .portfolio-slider__item .content-img__link:hover img {
  transform: translate(-50%, -50%) scale(1.1);
  filter: brightness(90%);
}
.portfolio-block__inner .portfolio-slider__item.slick-center {
  height: 700px;
  filter: brightness(1);
}
.portfolio-block__inner .portfolio-slider__item.slick-center .content-img__link {
  opacity: 1;
}
@media (max-width: 1800px) {
  .portfolio-block__inner .portfolio-slider__item {
    height: 400px;
    width: 750px;
  }
  .portfolio-block__inner .portfolio-slider__item.slick-center {
    height: 500px;
  }
  .portfolio-block__inner .slick-track, .portfolio-block__inner .slick-list, .portfolio-block__inner .portfolio-slider {
    height: 500px;
  }
  .portfolio-block__inner .fade-side.left:before {
    top: 462px;
  }
}
@media (max-width: 992px) {
  .portfolio-block__inner .portfolio-slider__item {
    height: 300px;
    width: 600px;
  }
  .portfolio-block__inner .portfolio-slider__item.slick-center {
    height: 400px;
  }
  .portfolio-block__inner .slick-track, .portfolio-block__inner .slick-list, .portfolio-block__inner .portfolio-slider {
    height: 400px;
  }
  .portfolio-block__inner .fade-side.left:before {
    top: 412px;
  }
}
@media (max-width: 768px) {
  .portfolio-block__inner .slick-track {
    gap: 16px;
  }
  .portfolio-block__inner .portfolio-slider__item {
    height: 250px;
    width: 420px;
  }
  .portfolio-block__inner .portfolio-slider__item.slick-center {
    height: 300px;
  }
  .portfolio-block__inner .slick-track, .portfolio-block__inner .slick-list, .portfolio-block__inner .portfolio-slider {
    height: 300px;
  }
  .portfolio-block__inner .fade-side.left:before {
    content: none;
  }
}
@media (max-width: 488px) {
  .portfolio-block__inner .slick-track {
    gap: 16px;
  }
  .portfolio-block__inner .portfolio-slider__item {
    height: 150px;
    width: 280px;
  }
  .portfolio-block__inner .portfolio-slider__item.slick-center {
    height: 200px;
  }
  .portfolio-block__inner .slick-track, .portfolio-block__inner .slick-list, .portfolio-block__inner .portfolio-slider {
    height: 200px;
  }
}

.logo-slider__section {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 130px 0;
}
@media (max-width: 1800px) {
  .logo-slider__section {
    padding: 100px 0;
  }
}
@media (max-width: 992px) {
  .logo-slider__section {
    padding: 60px 0;
  }
}

.logo-slider__inner {
  display: flex;
  flex-direction: column;
}
.logo-slider__inner .logo-slider__bottom .splide__list .logo-slider__item {
  display: flex;
  flex-direction: row-reverse;
}
.logo-slider__inner .splide__list .logo-slider__item {
  display: flex;
}
.logo-slider__inner .splide__list .logo-slider__item span {
  display: block;
  font-size: 120px;
  line-height: 1;
  color: var(--white);
  font-weight: 400;
  text-transform: uppercase;
  opacity: 0.1;
  transition: 0.3s;
}
.logo-slider__inner .splide__list .logo-slider__item span.empty {
  min-width: 80px;
}
.logo-slider__inner .splide__list .logo-slider__item span:nth-child(1n):hover, .logo-slider__inner .splide__list .logo-slider__item span.hovered:nth-child(1n) {
  background: linear-gradient(90deg, rgb(42, 123, 155) 0%, rgb(87, 199, 133) 50%, rgb(237, 221, 83) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.logo-slider__inner .splide__list .logo-slider__item span:nth-child(2n):hover, .logo-slider__inner .splide__list .logo-slider__item span.hovered:nth-child(2n) {
  background: linear-gradient(90deg, rgb(2, 0, 36) 0%, rgb(9, 9, 121) 35%, rgb(0, 212, 255) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.logo-slider__inner .splide__list .logo-slider__item span:nth-child(3n):hover, .logo-slider__inner .splide__list .logo-slider__item span.hovered:nth-child(3n) {
  background: linear-gradient(180deg, #FFD400 0%, #67EDCF 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.logo-slider__inner .splide__list .logo-slider__item span:nth-child(4n):hover, .logo-slider__inner .splide__list .logo-slider__item span.hovered:nth-child(4n) {
  background: linear-gradient(90deg, #FF0099 0%, #FFD900 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.logo-slider__inner .splide__list .logo-slider__item span:nth-child(5n):hover, .logo-slider__inner .splide__list .logo-slider__item span.hovered:nth-child(5n) {
  background: radial-gradient(circle, rgb(63, 94, 251) 0%, rgb(252, 70, 107) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.logo-slider__inner .splide__list .logo-slider__item span:nth-child(6n):hover, .logo-slider__inner .splide__list .logo-slider__item span.hovered:nth-child(6n) {
  background: linear-gradient(90deg, rgb(131, 58, 180) 0%, rgb(253, 29, 29) 50%, rgb(252, 176, 69) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.logo-slider__inner .splide__list .logo-slider__item span:hover, .logo-slider__inner .splide__list .logo-slider__item span.hovered {
  opacity: 1;
}
@media (max-width: 1800px) {
  .logo-slider__inner .splide__list {
    gap: 32px;
  }
  .logo-slider__inner .splide__list .logo-slider__item span {
    font-size: 80px;
  }
}
@media (max-width: 992px) {
  .logo-slider__inner .splide__list {
    gap: 24px;
  }
  .logo-slider__inner .splide__list .logo-slider__item span {
    font-size: 60px;
  }
}

.content__section {
  padding: 180px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  z-index: 3;
  background-color: var(--background);
}
.content__section:before {
  content: "";
  position: absolute;
  width: 1px;
  height: 100%;
  left: calc(50% + 350px);
  top: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.2);
}
.content__section.alternate-lines {
  padding: 120px 0;
  border-top: none;
}
.content__section.alternate-lines .content__inner .content-img {
  height: auto;
}
.content__section.alternate-lines:before {
  top: 50%;
  transform: none;
  left: 75%;
  height: 50%;
}
.content__section.alternate-lines:after {
  content: "";
  position: absolute;
  width: 75%;
  height: 1px;
  left: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.2);
}
.content__section.alternate-lines.reverse:before {
  top: 0;
  left: 25%;
}
.content__section.alternate-lines.reverse:after {
  width: 100%;
}
.content__section.reverse:before {
  left: calc(50% - 350px);
}
.content__section.reverse .content__inner {
  flex-direction: row-reverse;
}
.content__section.reverse .content__inner .content-img img {
  transform-origin: right center;
}
@media (max-width: 1800px) {
  .content__section {
    padding: 100px 0;
  }
}
@media (max-width: 768px) {
  .content__section {
    padding: 60px 0;
  }
  .content__section:before {
    left: calc(50% + 150px);
  }
  .content__section.reverse:before {
    left: calc(50% - 150px);
  }
  .content__section.reverse .content__inner {
    flex-direction: column-reverse;
  }
  .content__section.alternate-lines {
    padding: 60px 0;
  }
  .content__section.alternate-lines:before {
    left: calc(50% + 100px);
  }
}

.content__inner {
  display: flex;
  align-items: center;
  gap: 120px;
}
.content__inner .content-text {
  max-width: 720px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 32px;
  z-index: 1;
}
.content__inner .content-text p {
  line-height: 1.8;
}
.content__inner .content-text .btn {
  margin-top: 24px;
}
.content__inner .content-img {
  max-width: 760px;
  width: 100%;
  position: relative;
  height: 580px;
}
.content__inner .content-img .video-container {
  width: 100%;
  height: 100%;
  position: relative;
}
.content__inner .content-img .video-container.playing .content-img__link, .content__inner .content-img .video-container.paused .content-img__link {
  opacity: 0;
  z-index: -1;
}
.content__inner .content-img img,
.content__inner .content-img video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
}
.content__inner .content-img .content-img__link {
  position: absolute;
  right: 32px;
  bottom: 40px;
  z-index: 1;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  background: none;
  border: none;
  cursor: pointer;
}
.content__inner .content-img .content-img__link img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.3s;
  object-fit: contain;
}
.content__inner .content-img .content-img__link:hover img {
  transform: translate(-50%, -50%) scale(1.1);
  filter: brightness(90%);
}
.content__inner .content-img:before {
  position: absolute;
  width: 986px;
  height: 658px;
  top: 50%;
  left: 25%;
  transform: translate(-50%, -50%);
  z-index: 0;
  transform-origin: center center;
}
@media (max-width: 1800px) {
  .content__inner {
    gap: 130px;
    justify-content: center;
  }
  .content__inner .content-text {
    max-width: 600px;
  }
  .content__inner .content-img {
    max-width: 600px;
    height: 480px;
  }
}
@media (max-width: 992px) {
  .content__inner {
    gap: 60px;
  }
  .content__inner .content-text {
    max-width: 400px;
    gap: 16px;
  }
  .content__inner .content-img {
    max-width: 400px;
    height: 380px;
  }
}
@media (max-width: 768px) {
  .content__inner {
    flex-direction: column-reverse;
    gap: 24px;
  }
  .content__inner .content-text .btn {
    width: 100%;
  }
  .content__inner .content-img {
    height: auto;
  }
}

.about-block__section {
  padding: 0 0 180px;
  position: relative;
}
@media (max-width: 1800px) {
  .about-block__section {
    padding: 0 0 100px;
  }
}

.about-block__panel {
  display: flex;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.02);
}
.about-block__panel .about-block__img {
  position: relative;
  min-width: 380px;
  display: flex;
  align-items: flex-end;
  padding-top: 46px;
}
.about-block__panel .about-block__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
}
.about-block__panel .about-block__img:before {
  content: "";
  position: absolute;
  width: 1px;
  height: calc(100% + 180px);
  top: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.2);
}
@media (max-width: 1800px) {
  .about-block__panel .about-block__img {
    min-width: 300px;
    padding-top: 36px;
  }
  .about-block__panel .about-block__img:before {
    height: calc(100% + 100px);
  }
}
@media (max-width: 992px) {
  .about-block__panel .about-block__img {
    min-width: 200px;
    padding-top: 26px;
  }
  .about-block__panel .about-block__img:before {
    height: calc(100% + 100px);
  }
}
@media (max-width: 768px) {
  .about-block__panel {
    flex-direction: column;
  }
  .about-block__panel .about-block__img {
    min-width: 100%;
    max-height: 300px;
    padding-top: 0;
  }
  .about-block__panel .about-block__img:before {
    height: 1px;
    width: 100%;
    top: auto;
    bottom: 0;
  }
  .about-block__panel .about-block__img img {
    height: -webkit-fill-available;
    object-fit: contain;
  }
}

.about-block__content {
  padding: 80px 88px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 46px;
}
@media (max-width: 1800px) {
  .about-block__content {
    padding: 40px 48px;
    gap: 26px;
  }
}
@media (max-width: 992px) {
  .about-block__content {
    padding: 24px 24px;
    gap: 24px;
  }
}

.about-block__content-bottom {
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 80px;
}
.about-block__content-bottom h3 {
  padding-right: 60px;
}
@media (max-width: 1800px) {
  .about-block__content-bottom {
    gap: 40px;
  }
  .about-block__content-bottom h3 {
    width: 100%;
    padding-right: 0;
  }
}
@media (max-width: 992px) {
  .about-block__content-bottom {
    gap: 24px;
    flex-direction: column;
  }
  .about-block__content-bottom .btn {
    width: 100%;
  }
}

.intro__section {
  background: var(--background);
  position: relative;
  display: flex;
  align-items: center;
  padding: 240px 0 160px;
  z-index: 2;
  overflow: hidden;
  flex-direction: column;
}
.intro__section h2 {
  text-shadow: none;
}
.intro__section .background-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  object-fit: cover;
}
.intro__section .background-img img {
  object-position: center;
}
.intro__section .container {
  justify-content: center;
  display: flex;
  flex-grow: 1;
  flex-direction: column;
  z-index: 2;
}
.intro__section .intro__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
@media (max-width: 1800px) {
  .intro__section {
    padding: 148px 0 80px;
  }
}
@media (max-width: 768px) {
  .intro__section {
    padding: 148px 0 48px;
  }
}

.link__block {
  position: relative;
  padding: 148px 0;
  background: var(--background);
  overflow: hidden;
}
.link__block:before {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--red);
  opacity: 0.2;
  filter: blur(100px);
}
.link__block-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-self: center;
  justify-content: center;
  text-align: center;
  max-width: 1028px;
  width: 100%;
}
.link__block-inner p {
  max-width: 826px;
}
.link__block.container-md .link__block-inner {
  max-width: 1150px;
  margin: 0 auto;
}
.link__block.container-md p {
  max-width: 1150px;
  margin-bottom: 14px;
}
.link__block.container-md .btn {
  margin-top: 24px;
}
.link__block h2 {
  text-shadow: none;
  margin-bottom: 32px;
}
.link__block h3 {
  margin-bottom: 40px;
}
.link__block .btn {
  margin-top: 56px;
}
@media (max-width: 1800px) {
  .link__block {
    padding: 75px 0 50px;
  }
  .link__block h2 {
    margin-bottom: 24px;
  }
  .link__block h3 {
    margin-bottom: 24px;
  }
  .link__block .btn {
    margin-top: 40px;
  }
}
/*# sourceMappingURL=style.min.css.map */
