@charset "UTF-8";
@import url("../css/reset.css");
@import url("../fonts/fonts.css");
@import url("https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,100..700;1,100..700&display=swap");
html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: "Roboto Condensed", sans-serif;
  background: #000000;
  color: #fff;
  font-size: 1vw;
  line-height: 22px;
  font-weight: 400;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 0;
}

a {
  text-decoration: none;
  color: #000000;
}

img {
  max-width: 100%;
  height: auto;
  aspect-ratio: attr(width)/attr(height);
}

ul li {
  list-style-type: none;
}

.ff-road {
  font-family: "Road Rage";
  font-weight: 400;
}

.ff-condensed {
  font-family: "Open Sans Condensed";
  font-weight: 400;
}

.no-scroll {
  overflow: hidden;
}

.fs-14 {
  font-size: 14px;
  line-height: 150%;
}

.fs-16 {
  font-size: 16px;
  line-height: 130%;
}

.fs-20 {
  font-size: 20px;
  line-height: 28px;
}

.fs-24 {
  font-size: 24px;
  line-height: 130%;
}

.fs-32 {
  font-size: 32px;
  line-height: 130%;
}

.fs-40 {
  font-size: 40px;
  line-height: 100%;
}

.fs-48 {
  font-size: 48px;
  line-height: 110%;
}

.fs-64 {
  font-size: 64px;
  line-height: 110%;
}

.fs-96 {
  font-size: 96px;
  line-height: 120%;
}

.fw-500 {
  font-weight: 500;
}

.fw-700 {
  font-weight: 700;
}

.shrink-0 {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.container {
  margin: 0 auto;
  padding: 0 48px;
  max-width: 1920px;
}

.d-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.flex-wrap {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.d-grid {
  display: grid;
}

.d-block {
  display: block;
}

.grid-2 {
  grid-template-columns: 1fr 1fr;
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.flex-1 {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.justify-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.justify-between {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.justify-end {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.flex-col {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute !important;
}

.pos-start {
  top: 0;
  left: 0;
}

.pos-end {
  bottom: 0;
  left: 0;
}

.pos-center {
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.border-dark {
  border: 1px solid #1F1F1F;
}

.z-2 {
  z-index: 2;
}

.z-9 {
  z-index: 9;
}

.-z-1 {
  z-index: -1;
}

.-z-pseudo-1:after {
  z-index: -1;
}

.title-line span {
  position: relative;
  display: inline-block;
  margin-top: 12px;
  padding-bottom: 38px;
}
.title-line span:after {
  content: "";
  position: absolute;
  background: url(../images/title-line.svg) no-repeat;
  background-size: 100%;
  width: 100%;
  height: 38px;
  left: 0;
  bottom: 0;
}

.align-items-start {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.align-items-end {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.align-items-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.gap-96 {
  gap: 96px;
}

.gap-48 {
  gap: 48px;
}

.gap-24 {
  gap: 24px;
}

.gap-12 {
  gap: 12px;
}

.gap-10 {
  gap: 10px;
}

.gap-8 {
  gap: 8px;
}

.cursor-pointer {
  cursor: pointer;
}

.overflow-hidden {
  overflow: hidden;
}

.btn {
  font-family: "Roboto Condensed", sans-serif;
  border: none;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 17px 24px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  background: transparent;
}

.btn-orange {
  background: #C93A27;
  color: #000000;
}

.btn-dark {
  background: #000000;
  color: #fff;
}

.btn-white {
  background: #fff;
  color: #000000;
}

.btn-border {
  border: 2px solid;
}

.btn-border-dark {
  border-color: #000000;
}

.btn-border-white {
  border-color: #fff;
}

.btn-border-orange {
  border-color: #C93A27;
}

.hyphenated-text {
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
}

.radius-2 {
  border-radius: 2px;
}

.radius-8 {
  border-radius: 8px;
}

.radius-12 {
  border-radius: 12px;
}

.p-48 {
  padding: 48px;
}

.px-48 {
  padding-left: 48px;
  padding-right: 48px;
}

.p-24 {
  padding: 24px;
}

.mt-8 {
  margin-top: 8px;
}

.mt-12 {
  margin-top: 12px;
}

.mt-24 {
  margin-top: 24px;
}

.mt-48 {
  margin-top: 48px;
}

.m-auto {
  margin: auto;
}

.w-320 {
  width: 320px;
}

.text-center {
  text-align: center;
}

.text-white {
  color: #fff;
}

.text-orange {
  color: #C93A27;
}

.text-dark {
  color: rgba(0, 0, 0, 0.9);
}

.text-dark-100 {
  color: #1F1F1F;
}

.bg-orange {
  background: #C93A27;
}

.bg-orange-100 {
  background: #8D291B;
}

.bg-dark-10 {
  background: rgba(0, 0, 0, 0.1);
}

.bg-dark-100 {
  background: #1F1F1F;
}

.bg-dark-hover-100 {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.bg-dark-hover-100:hover {
  background: #1F1F1F;
}

.bg-white {
  background: #fff;
}

.bg-white-10 {
  background: rgba(255, 255, 255, 0.1);
}

.h-0 {
  height: 0;
}

.h-100 {
  height: 100%;
}

.h-320 {
  height: 320px;
}

.h-auto {
  height: auto;
}

.w-100 {
  width: 100%;
}

.duration-3 {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.text-uppercase {
  text-transform: uppercase;
}

.wrapper {
  padding: 12px;
  max-width: 1920px;
  margin: 0 auto;
}

.header {
  position: absolute;
  padding: 60px 12px 48px;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
}
.header .logo .anim-logo {
  display: none;
  position: relative;
}
.header .logo:hover .anim-logo {
  display: block;
  top: 0.7px;
  -webkit-transform: scale(1.0374);
      -ms-transform: scale(1.0374);
          transform: scale(1.0374);
}
.header .logo:hover .static-logo {
  display: none;
}

.burger {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 24px;
  cursor: pointer;
}
.burger.burger-main {
  margin-top: 8px;
}
.burger span {
  background: #fff;
  border-radius: 10px;
  height: 2px;
  margin: 3px 0;
  -webkit-transition: 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
  -o-transition: 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
  transition: 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
}
.burger span:nth-of-type(1) {
  width: 50%;
}
.burger span:nth-of-type(2) {
  width: 100%;
}
.burger span:nth-of-type(3) {
  width: 75%;
}
.burger.active {
  -webkit-transition: color 0.5s;
  -o-transition: color 0.5s;
  transition: color 0.5s;
}
.burger.active span {
  background: #000000;
}
.burger.active span:nth-of-type(1) {
  -webkit-transform-origin: bottom;
      -ms-transform-origin: bottom;
          transform-origin: bottom;
  -webkit-transform: rotatez(45deg) translate(3px, 1px);
      -ms-transform: rotate(45deg) translate(3px, 1px);
          transform: rotatez(45deg) translate(3px, 1px);
}
.burger.active span:nth-of-type(2) {
  -webkit-transform-origin: top;
      -ms-transform-origin: top;
          transform-origin: top;
  -webkit-transform: rotatez(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotatez(-45deg);
}
.burger.active span:nth-of-type(3) {
  -webkit-transform-origin: bottom;
      -ms-transform-origin: bottom;
          transform-origin: bottom;
  width: 50%;
  -webkit-transform: translate(10px, -4px) rotatez(45deg);
      -ms-transform: translate(10px, -4px) rotate(45deg);
          transform: translate(10px, -4px) rotatez(45deg);
}

.dropdown-menu {
  position: fixed;
  top: -100%;
  left: 12px;
  right: 12px;
  bottom: 12px;
  background-color: #C93A27;
  background-image: url("../images/noise-menu.webp"), url("../images/menu-bg.svg");
  background-repeat: no-repeat, no-repeat;
  background-position: center;
  background-size: cover, contain;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  z-index: 100;
  border-radius: 12px;
  padding: 48px 0 40px;
  overflow-y: auto;
}
.dropdown-menu::-webkit-scrollbar {
  width: 8px;
}
.dropdown-menu::-webkit-scrollbar-track {
  background: transparent;
}
.dropdown-menu::-webkit-scrollbar-thumb {
  background: #a8271e;
  border-radius: 8px;
}
.dropdown-menu.active-dropdown {
  visibility: visible;
  opacity: 1;
  top: 12px;
}
.dropdown-menu .language-menu {
  border-bottom: 1px solid #000000;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}
.dropdown-menu .language-menu li {
  padding: 7px 12px;
  font-weight: 500;
  position: relative;
}
.dropdown-menu .language-menu li.active {
  font-weight: 700;
}
.dropdown-menu .language-menu li.active:after {
  content: url(../images/arrow_drop_up.svg);
  position: absolute;
  bottom: -6px;
  left: calc(50% - 5px);
}
.dropdown-menu .language-menu li:hover {
  font-weight: 700;
}
.dropdown-menu .language-menu li:hover:after {
  content: url(../images/arrow_drop_up.svg);
  position: absolute;
  bottom: -6px;
  left: calc(50% - 5px);
}
.dropdown-menu .socials a svg path {
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}
.dropdown-menu .socials a svg:hover path {
  fill: #fff;
}

.hero {
  min-height: calc(100vh - 24px);
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  padding: 0 0 48px;
}

.hero-info {
  min-height: calc(100vh - 48px);
  padding: 216px 0 0;
}

.noise {
  z-index: 9;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.06;
}

.opacity-15 {
  opacity: 0.15;
}

.opacity-50 {
  opacity: 0.5;
}

.opacity-75 {
  opacity: 0.75;
}

.opacity-80 {
  opacity: 0.8;
}

.opacity-90 {
  opacity: 0.9;
}

.list-dots {
  padding-left: 24px;
}
.list-dots li {
  list-style-type: disc;
}

.hero-main {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.8)));
  background: -o-linear-gradient(top, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.8) 100%);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.8) 100%);
}
.hero-main .hero-text {
  margin-top: 48px;
}

.glitch-text:hover {
  -webkit-animation: glitch-text 1s linear infinite;
          animation: glitch-text 1s linear infinite;
}

@-webkit-keyframes glitch-text {
  2%, 64% {
    -webkit-transform: translate(2px, 0) skew(0deg);
            transform: translate(2px, 0) skew(0deg);
  }
  4%, 60% {
    -webkit-transform: translate(-2px, 0) skew(0deg);
            transform: translate(-2px, 0) skew(0deg);
  }
  62% {
    -webkit-transform: translate(0, 0) skew(5deg);
            transform: translate(0, 0) skew(5deg);
  }
}

@keyframes glitch-text {
  2%, 64% {
    -webkit-transform: translate(2px, 0) skew(0deg);
            transform: translate(2px, 0) skew(0deg);
  }
  4%, 60% {
    -webkit-transform: translate(-2px, 0) skew(0deg);
            transform: translate(-2px, 0) skew(0deg);
  }
  62% {
    -webkit-transform: translate(0, 0) skew(5deg);
            transform: translate(0, 0) skew(5deg);
  }
}
.glitch-text:hover:before,
.glitch-text:hover:after {
  content: attr(title);
  position: absolute;
  left: 0;
}

.glitch-text:hover:before {
  -webkit-animation: glitchTop-text 1s linear infinite;
          animation: glitchTop-text 1s linear infinite;
  clip-path: polygon(0 0, 100% 0, 100% 33%, 0 33%);
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 33%, 0 33%);
}

@-webkit-keyframes glitchTop-text {
  2%, 64% {
    -webkit-transform: translate(2px, -2px);
            transform: translate(2px, -2px);
  }
  4%, 60% {
    -webkit-transform: translate(-2px, 2px);
            transform: translate(-2px, 2px);
  }
  62% {
    -webkit-transform: translate(13px, -1px) skew(-13deg);
            transform: translate(13px, -1px) skew(-13deg);
  }
}

@keyframes glitchTop-text {
  2%, 64% {
    -webkit-transform: translate(2px, -2px);
            transform: translate(2px, -2px);
  }
  4%, 60% {
    -webkit-transform: translate(-2px, 2px);
            transform: translate(-2px, 2px);
  }
  62% {
    -webkit-transform: translate(13px, -1px) skew(-13deg);
            transform: translate(13px, -1px) skew(-13deg);
  }
}
.glitch-text:hover:after {
  -webkit-animation: glitchBotomText 1.5s linear infinite;
          animation: glitchBotomText 1.5s linear infinite;
  clip-path: polygon(0 67%, 100% 67%, 100% 100%, 0 100%);
  -webkit-clip-path: polygon(0 67%, 100% 67%, 100% 100%, 0 100%);
}

@-webkit-keyframes glitchBotomText {
  2%, 64% {
    -webkit-transform: translate(-2px, 0);
            transform: translate(-2px, 0);
  }
  4%, 60% {
    -webkit-transform: translate(-2px, 0);
            transform: translate(-2px, 0);
  }
  62% {
    -webkit-transform: translate(-22px, 5px) skew(21deg);
            transform: translate(-22px, 5px) skew(21deg);
  }
}

@keyframes glitchBotomText {
  2%, 64% {
    -webkit-transform: translate(-2px, 0);
            transform: translate(-2px, 0);
  }
  4%, 60% {
    -webkit-transform: translate(-2px, 0);
            transform: translate(-2px, 0);
  }
  62% {
    -webkit-transform: translate(-22px, 5px) skew(21deg);
            transform: translate(-22px, 5px) skew(21deg);
  }
}
@-webkit-keyframes shake {
  25% {
    -webkit-transform: rotate(calc(var(--angle) * -1));
            transform: rotate(calc(var(--angle) * -1));
  }
  50% {
    -webkit-transform: rotate(var(--angle));
            transform: rotate(var(--angle));
  }
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}
@keyframes shake {
  25% {
    -webkit-transform: rotate(calc(var(--angle) * -1));
            transform: rotate(calc(var(--angle) * -1));
  }
  50% {
    -webkit-transform: rotate(var(--angle));
            transform: rotate(var(--angle));
  }
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}
.btn-hover {
  --width: 100%;
  --time: 0.7s;
  position: relative;
  overflow: hidden;
}
.btn-hover .text {
  position: relative;
  z-index: 5;
  -webkit-transition: color var(--time);
  -o-transition: color var(--time);
  transition: color var(--time);
}
.btn-hover:hover svg {
  position: relative;
  z-index: 5;
}
.btn-hover:hover svg path {
  -webkit-transition: var(--time);
  -o-transition: var(--time);
  transition: var(--time);
}
.btn-hover:hover.btn-hover-white {
  color: #000000;
}
.btn-hover:hover.btn-hover-white svg path {
  fill: #000000;
}
.btn-hover:hover.btn-hover-dark {
  color: #fff;
}
.btn-hover:hover.btn-hover-dark svg path {
  fill: #FFFFFF;
}
.btn-hover .effect {
  position: absolute;
  display: block;
  content: "";
  z-index: 0;
  width: 0;
  height: 0;
  border-radius: 100%;
  background: #fff;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: width var(--time), padding-top var(--time);
  -o-transition: width var(--time), padding-top var(--time);
  transition: width var(--time), padding-top var(--time);
}
.btn-hover .effect-orange {
  background: #C93A27;
}
.btn-hover .effect-dark {
  background: #000000;
}
.btn-hover .effect-white {
  background: #fff;
}

.btn-hover:hover .effect {
  width: calc(var(--width) * 2.25);
  padding-top: calc(var(--width) * 2.25);
}

.animated {
  --angle: 5deg;
  -webkit-animation: shake 0.3s;
          animation: shake 0.3s;
}

.tags .tag {
  padding: 2px 8px;
}

.sw-box .poster {
  height: 40em;
  width: 100%;
}
.sw-box .poster .glitch-image {
  background: url(../images/main/software.webp) no-repeat center/cover;
}
.sw-box.sw-box-about .poster .glitch-image {
  background: url(../images/about/about.webp) no-repeat center/cover;
}

.poster-service {
  height: 26em;
}
.poster-service.design-poster .glitch-image.lazyloaded {
  background: url(../images/main/design.webp) no-repeat center/cover;
}
.poster-service.sec-poster .glitch-image {
  background: url(../images/main/it-sec.webp) no-repeat center/cover;
}
.poster-service.marketing-poster .glitch-image {
  background: url(../images/main/marketing.webp) no-repeat center/cover;
}
.poster-service.nik-poster .glitch-image {
  background: url(../images/team/nik.webp) no-repeat center/cover;
}
.poster-service.pavel-poster .glitch-image {
  background: url(../images/team/ceo.webp) no-repeat center/cover;
}
.poster-service.ux-poster .glitch-image {
  background: url(../images/design/ux.webp) no-repeat center/cover;
}
.poster-service.branding-poster .glitch-image {
  background: url(../images/design/branding.webp) no-repeat center/cover;
}
.poster-service.motion-poster .glitch-image {
  background: url(../images/design/motion.webp) no-repeat center/cover;
}
.poster-service.cost-1-poster .glitch-image {
  background: url(../images/webdev/cost-1.webp) no-repeat center/cover;
}
.poster-service.cost-2-poster .glitch-image {
  background: url(../images/webdev/cost-2.webp) no-repeat center/cover;
}
.poster-service.optimisation-poster .glitch-image {
  background: url(../images/marketing/search-optimisation.webp) no-repeat center/cover;
}
.poster-service.socialmedia-poster .glitch-image {
  background: url(../images/marketing/soial-media.webp) no-repeat center/cover;
}
.poster-service.content-marketing-poster .glitch-image {
  background: url(../images/marketing/content-marketing.webp) no-repeat center/cover;
}

.glitch-image {
  background: none; /* Изначально фон отключен */
}

.ceo-box {
  height: 46em;
  min-height: 100%;
}
.ceo-box .ceo-poster .glitch-image.lazyloaded {
  background: url(../images/team/ceo.webp) no-repeat center/cover;
}
.ceo-box .designer-poster .glitch-image {
  background: url(../images/team/designdev.webp) no-repeat center/cover;
}
.ceo-box .marketer-poster .glitch-image {
  background: url(../images/team/marketer.webp) no-repeat center/cover;
}
.ceo-box .cyber-poster .glitch-image {
  background: url(../images/team/security.webp) no-repeat center/cover;
}
.ceo-box .webdev-poster .glitch-image {
  background: url(../images/team/nik.webp) no-repeat center/cover;
}
.ceo-box .overlay-poster:after {
  content: "";
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.5)));
  background: -o-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.project-poster {
  height: 341px;
}

.overlay-dark-bottom:after {
  content: "";
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.2)), to(rgba(0, 0, 0, 0.9)));
  background: -o-linear-gradient(top, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.9) 100%);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.9) 100%);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.started-poster {
  height: 48em;
}
.started-poster .glitch-image {
  background: url(../images/main/get-started.webp) no-repeat center/cover;
}

.team-full-poster {
  height: 48em;
}
.team-full-poster .glitch-image {
  background: url(../images/hero/hero-design-4.webp) no-repeat center/cover;
}

.webdev-poster {
  height: 48em;
}
.webdev-poster .glitch-image {
  background: url(../images/offer/web-dev.webp) no-repeat center/cover;
}

.webstages-poster {
  height: 48em;
}
.webstages-poster .glitch-image {
  background: url(../images/webdev/webstages.webp) no-repeat center/cover;
}

.webcost-poster {
  height: 48em;
}
.webcost-poster .glitch-image {
  background: url(../images/webdev/website-cost.webp) no-repeat center/cover;
}

.engineers-poster {
  height: 48em;
}
.engineers-poster .glitch-image {
  background: url(../images/about/engineers.webp) no-repeat center/cover;
}

.contacts-poster {
  height: 100%;
  overflow: hidden;
}
.contacts-poster .glitch-image {
  background: url(../images/main/color-mad-cats-bg.webp) no-repeat center/cover;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  margin-top: 2px;
  margin-left: 2px;
}

.img-cover {
  position: absolute;
  left: 50%;
  top: 50%;
  min-height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.img-cover.img-cover-rel {
  position: relative;
}

.dark-mask {
  position: relative;
}
.dark-mask:after {
  content: "";
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.dark-noise {
  position: relative;
}
.dark-noise:after {
  content: "";
  background: url(../images/bg-noise/dark-noise.webp) no-repeat;
  background-size: cover;
  background-position: left center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.dark-noise.dark-noise-30:after {
  opacity: 0.3;
}
.dark-noise.dark-noise-10:after {
  opacity: 0.1;
}

.section-steps .step-item {
  border: 1px solid #1F1F1F;
  background: #000;
}
.section-steps .step-item:after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.25)), to(rgba(0, 0, 0, 0.25)));
  background: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.25) 100%);
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.25) 100%);
  z-index: 0;
}
.section-steps .step-item .step-img {
  width: 50%;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
}
.section-steps .step-item .step-img:before {
  -webkit-transition: 0.1s;
  -o-transition: 0.1s;
  transition: 0.1s;
  content: url(../images/main/steps/step-mask.svg);
  position: absolute;
  height: 100%;
  width: auto;
  visibility: hidden;
  bottom: 35px;
  right: 80%;
  z-index: 1;
}
.section-steps .step-item .step-img img {
  opacity: 0;
  -webkit-transition: opacity 0.2s ease-out;
  -o-transition: opacity 0.2s ease-out;
  transition: opacity 0.2s ease-out;
  right: 0;
  left: inherit;
  -webkit-transform: translate(0, -50%) scale(1.3);
      -ms-transform: translate(0, -50%) scale(1.3);
          transform: translate(0, -50%) scale(1.3);
}
.section-steps .step-item:hover {
  border: 1px solid transparent;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.25)), to(rgba(0, 0, 0, 0.25))), #171717;
  background: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.25) 100%), #171717;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.25) 100%), #171717;
}
.section-steps .step-item:hover .step-img img, .section-steps .step-item:hover .step-img:before {
  opacity: 1;
}
.section-steps .step-item:hover .step-img:before {
  visibility: visible;
  -webkit-transition: 0.2s ease-in;
  -o-transition: 0.2s ease-in;
  transition: 0.2s ease-in;
}
.section-steps .step-item:hover .step-num,
.section-steps .step-item:hover .step-title {
  color: #C93A27;
}
.section-steps .step-item:hover:before {
  opacity: 1;
}

.team-full-poster {
  min-height: 500px;
}

.section-webdev {
  min-height: 500px;
}
.section-webdev .webdev-text {
  max-width: 670px;
}

#map {
  width: 100%;
  height: 42em;
  min-height: 100%;
  border-radius: 8px;
}

.socials-company a svg path {
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}
.socials-company a svg:hover path {
  fill: #fff;
}

hr {
  border-width: 1px;
  border-style: solid;
}
hr.hr-dark {
  border-color: #1F1F1F;
}

footer {
  padding-bottom: 48px;
}

.speedbar {
  color: #C93A27;
}
.speedbar li a {
  color: #fff;
  position: relative;
}
.speedbar li a:after {
  content: "/";
  margin-left: 8px;
}

.card-service .team-poster .glitch-image {
  background: url(../images/team/team.webp) no-repeat center/cover;
}
.card-service .cost-3-poster .glitch-image {
  background: url(../images/webdev/cost-3.webp) no-repeat center/cover;
}

.about-steps .step-item {
  border: 1px solid #1F1F1F;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
  position: relative;
}
.about-steps .step-item .step-video {
  width: 144px;
  height: 144px;
}
.about-steps .step-item:hover {
  background: #fff;
  color: rgba(0, 0, 0, 0.9);
}
.about-steps .step-item:hover .step-title {
  color: #C93A27;
}
.about-steps .step-item:hover:after {
  content: "";
  background: url(../images/bg-noise/dark-noise.webp) no-repeat;
  background-size: cover;
  background-position: left center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.2;
}

.cropp-line-3 {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
}

.dialog-wrapper {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
  padding: 12px;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  overflow: auto;
}
.dialog-wrapper.active {
  visibility: visible;
  opacity: 1;
}

.dialog-modal {
  position: relative;
  min-height: 100%;
  z-index: 1000;
  max-width: 1920px;
  width: 100%;
  margin: 0 auto;
}

.dialog-poster {
  max-height: calc(100vh - 280px);
}

.max-content {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

.tabs-head {
  padding-bottom: 8px;
  border-bottom: 1px solid;
}
.tabs-head li {
  cursor: pointer;
  color: #fff;
  padding: 0 12px;
  position: relative;
  display: inline-block;
  font-weight: 400;
  -webkit-transition: font-weight 0.3s;
  -o-transition: font-weight 0.3s;
  transition: font-weight 0.3s;
}
.tabs-head li:hover, .tabs-head li.active {
  font-weight: 700;
}
.tabs-head li:after {
  content: "";
  position: absolute;
  border: 4px solid transparent;
  border-bottom: 4px solid #fff;
  bottom: -8px;
  left: calc(50% - 5px);
  -webkit-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  transition: opacity 0.3s;
  opacity: 0;
}
.tabs-head li.active:after {
  opacity: 1;
}

.tab-content {
  display: block;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-in-out;
  -o-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
  height: 0;
}
.tab-content.active {
  opacity: 1;
  height: 100%;
}

.accordion-item .title:hover {
  color: #C93A27;
}
.accordion-item .title:hover svg path {
  fill: #C93A27;
}
.accordion-item .title:hover svg rect {
  stroke: #C93A27;
}
.accordion-item .title svg {
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}
.accordion-item .description {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: 0.4s ease;
  -o-transition: 0.4s ease;
  transition: 0.4s ease;
}
.accordion-item.active .title {
  color: #C93A27;
}
.accordion-item.active svg {
  -webkit-transform: rotate(-180deg);
      -ms-transform: rotate(-180deg);
          transform: rotate(-180deg);
}
.accordion-item.active svg path {
  fill: #C93A27;
}
.accordion-item.active svg rect {
  stroke: #C93A27;
}

#load-more:disabled {
  opacity: 0.5;
  cursor: auto;
}
#load-more:disabled .effect {
  background: transparent;
}
#load-more:disabled:hover {
  color: inherit;
}

@media (max-width: 980px) {
  .d-lg-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .w-lg-100 {
    width: 100%;
  }
  .flex-lg-col {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .align-lg-items-center {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .align-lg-items-start {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .justify-lg-start {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .order-lg-1 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .text-lg-center {
    text-align: center;
  }
  .flex-lg-wrap {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .justify-lg-between {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .m-lg-auto {
    margin: 0 auto;
  }
  .pb-lg-24 {
    padding-bottom: 24px;
  }
  .h-lg-full {
    min-height: calc(100vh - 118px);
  }
  .scroll-lg {
    overflow-x: auto;
    scrollbar-width: none;
  }
  .scroll-lg::-webkit-scrollbar {
    display: none;
  }
  .scroll-lg > div {
    max-width: 320px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
  .fs-lg-16 {
    font-size: 16px;
    line-height: 130%;
  }
  .fs-lg-20 {
    font-size: 20px;
    line-height: 130%;
  }
  .fs-lg-24 {
    font-size: 20px;
    line-height: 130%;
  }
  .fs-lg-32 {
    font-size: 32px;
    line-height: 110%;
  }
  .fs-lg-40 {
    font-size: 40px;
    line-height: 110%;
  }
  .fs-lg-48 {
    font-size: 48px;
    line-height: 110%;
  }
  .fs-lg-64 {
    font-size: 64px;
    line-height: 110%;
  }
  .container {
    padding: 0 24px;
  }
  .sw-box .poster {
    height: 438px;
  }
  .poster-service {
    height: 240px;
  }
  .card-service {
    width: 320px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
  .flex-lg-0 {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
  }
  .grid-lg-2 {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .n-order-md-1 {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .fs-md-64 {
    font-size: 64px;
    line-height: 100%;
  }
  .fs-md-48 {
    font-size: 48px;
    line-height: 100%;
  }
  .fs-md-40 {
    font-size: 40px;
    line-height: 110%;
  }
  .fs-md-20 {
    font-size: 20px;
    line-height: 130%;
  }
  .flex-md-col {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .d-md-none {
    display: none;
  }
  .md-relative {
    position: relative;
  }
  .mt-md-24 {
    margin-top: 24px;
  }
  .grid-md-1 {
    grid-template-columns: 1fr;
  }
  .gap-md-24 {
    gap: 24px;
  }
  .gap-md-12 {
    gap: 12px;
  }
  .p-md-24 {
    padding: 24px;
  }
  .px-md-24 {
    padding-left: 24px;
    padding-right: 24px;
  }
  .ceo-box .ceo-position {
    margin-top: 208px;
  }
  .order-md-2 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .ceo-box {
    min-height: 420px;
  }
  .align-items-md-start {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .section-steps .step-item {
    min-height: 141px;
  }
  .section-steps .step-item .step-img img {
    top: -50%;
    -webkit-transform: translate(0%, 50%);
        -ms-transform: translate(0%, 50%);
            transform: translate(0%, 50%);
  }
  .section-steps .step-item .step-img:before {
    bottom: 0;
    right: 70%;
  }
  .tabs-head {
    padding-left: 12px;
    padding-bottom: 0;
    border-bottom: none;
    border-left: 1px solid;
    display: block;
  }
  .tabs-head li {
    display: block;
    padding: 8px 0;
  }
  .tabs-head li:after {
    border: 4px solid transparent;
    border-left: 4px solid #fff;
    bottom: calc(50% - 4px);
    left: -12px;
  }
  .webdev-poster {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
  }
  .section-started,
  .webcost-poster,
  .webstages-poster {
    min-height: 450px;
  }
}
@media (max-width: 500px) {
  .sw-box .poster {
    height: 240px;
  }
  #map {
    height: 240px;
  }
}
@media (min-width: 1280px) {
  .mt-xl-36 {
    margin-top: 36px;
  }
  .fs-32 {
    font-size: 2.35em;
  }
  .fs-40 {
    font-size: 4em;
  }
  .fs-48 {
    font-size: 3.13em;
  }
  .fs-96 {
    font-size: 7em;
  }
  .fs-64 {
    font-size: 4.5em;
  }
  .gap-xl-96 {
    gap: 96px;
  }
  .gap-xl-68 {
    gap: 68px;
  }
  .fs-xl-16 {
    font-size: 16px;
    line-height: 130%;
  }
  .fs-xl-24 {
    font-size: 24px;
    line-height: 130%;
  }
  .p-xl-68 {
    padding: 68px;
  }
  .px-xl-68 {
    padding-left: 68px;
    padding-right: 68px;
  }
  .p-xl-48 {
    padding: 48px;
  }
  .shrink-xl-0 {
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
  .d-xl-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .size-x2 {
    width: 2em;
  }
  footer {
    padding-bottom: 68px;
  }
  .section-steps .step-item .step-img:before {
    -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
            transform: scale(1.1);
  }
  .container {
    padding: 0 68px;
  }
}
@media (min-width: 981px) and (max-width: 1920px) {
  .fs-32 {
    font-size: 2.2em;
  }
  .fs-64 {
    font-size: 4.5em;
  }
}
@media (min-width: 1920px) {
  body {
    font-size: 1.28em;
  }
  .size-x2 {
    width: 2em;
    max-width: 100%;
  }
  .section-steps .step-item .step-img:before {
    bottom: 0;
  }
}