@charset "UTF-8";
body {
  overflow-x: hidden;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--main-font);
  font-weight: 400;
}

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

:root {
  --black: #141516;
  --white: #fff;
  --blue: #a8daf4;
  --green: #b2deca;
  --orange: #f5a091;
  --purple: #abaedb;
  --yellow: #fbfdd2;
  --main-font: Raleway;
}

.button {
  display: flex;
  padding: 1.1rem 2.5rem 1.1rem 3.5rem;
  border-radius: 99rem;
  align-self: baseline;
  background-color: var(--orange);
  transition: all 0.5s ease;
  justify-content: center;
  align-items: center;
  gap: 1em;
  color: var(--black);
  text-decoration: none;
  text-transform: capitalize;
}

.button:hover .innerbuttoncircle {
  width: 26px;
  height: 26px;
}

.innerbuttoncirclewrapper {
  display: flex;
  position: relative;
  height: 2rem;
  justify-content: center;
  align-items: center;
}

.innerbuttoncircle {
  display: flex;
  position: relative;
  border-radius: 50%;
  width: 0;
  height: 0;
  background-color: black;
  justify-content: center;
  align-items: center;
  transition: all 0.5s ease;
}

.innerbuttoncirclearrow {
  display: flex;
  position: relative;
  width: 0;
  height: 0;
  justify-content: center;
  align-items: center;
  background-image: url(../images/circlearrow_white.svg);
  background-size: contain;
  transition: all 0.5s ease;
  background-repeat: no-repeat;
  transform: rotate(-180deg);
}

.button:hover .innerbuttoncirclearrow {
  width: 10px;
  height: 10px;
  transform: rotate(0deg);
}

.call-action .innerbuttoncirclearrow {
  background-image: url(../images/social_arrow.svg);
}

.projects__btn:hover .innerbuttoncirclearrow {
  width: 15px;
  height: 15px;
  transform: rotate(0deg);
}

.blob {
  width: 740px;
  height: 430px;
  position: absolute;
  background: transparent;
  border: 2px solid var(--black);
}

.slide {
  width: 500px;
  height: 500px;
  border-radius: 32px;
  padding: 60px;
  padding-bottom: 52px;
  padding-right: 53px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.slide__arrow {
  width: 120px;
  height: 120px;
  background: var(--black);
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slide__desc {
  font-size: 18px;
  color: var(--black);
  font-weight: 400;
  line-height: 130%;
  max-width: 253px;
  width: 100%;
}
.slide__text {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: auto;
  transform: translateY(100px);
  transition: 0.3s;
  opacity: 0;
}

.slide:hover .slide__text {
  opacity: 1;
  transform: translateY(0px);
}

.arrow__svg {
  animation-name: slideArrow;
  animation-duration: 0.4s;
  animation-iteration-count: infinite;
  animation-direction: alternate-reverse;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
  animation-play-state: running;
}

.slide.facebook {
  background: var(--blue);
}

.slide.google {
  background: var(--green);
}

.slide.funnel {
  background: var(--orange);
}

.slide.web {
  background: var(--purple);
}

.slide.e-commerce {
  background: var(--yellow);
}

.slide h2 {
  color: var(--black);
  font-size: 56px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
}

.slide.web h2,
.slide.facebook h2 {
  max-width: 267px;
}

.dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid var(--black);
}

.projects__tabs-content {
  position: relative;
  width: 300%;
  display: flex;
}

.projects__tabs-content .tab-content {
  flex: 1;
  position: absolute;
  width: 100%;
  opacity: 0;
  transform: translateX(100%);
  transition: opacity 0.5s ease, transform 0.5s ease;
  color: var(--black);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
}

.projects__tabs-content .tab-content.active {
  opacity: 1;
  transform: translateX(0);
}

.container {
  max-width: 1493px;
  width: 100%;
  height: 100%;
  padding: 0 24px;
  margin: 0 auto;
}

.logo {
  text-transform: uppercase;
}

.breadcrumbs {
  font-size: 16px;
  display: none;
}
.breadcrumbs a {
  color: var(--black);
  opacity: 0.4;
}

.title {
  color: var(--black);
  font-size: 128px;
  text-transform: uppercase;
  font-weight: 400;
}

.header {
  padding: 36px 0;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--white);
  z-index: 50;
}
.header__burger {
  display: none;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header.home-page .header__nav {
  margin-left: auto;
}
.header__nav ul {
  display: flex;
  align-items: center;
  gap: 10px;
  text-transform: lowercase;
  list-style: none;
}
.header__nav ul a {
  display: flex;
  padding: 0.75rem 31px;
  border-radius: 99rem;
  background-color: transparent;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  transition: all 0.5s ease;
}
.header__nav ul a:after {
  content: "";
  display: flex;
  width: 0rem;
  height: 0.8rem;
  position: relative;
  background-image: url("../images/rightarrow.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: all 0.5s 0.2s ease;
  margin-left: 0rem;
  opacity: 0;
  filter: brightness(0) invert(0);
  transform: translateY(6%);
}
.header__nav ul a:hover {
  background-color: var(--orange);
}
.header__nav ul a:hover:after {
  width: 0.8rem;
  margin-left: 0.5rem;
  opacity: 1;
}

.footer {
  background: var(--white);
  border-radius: 32px 32px 0 0;
  padding: 155px 0 48px;
  margin-top: -32px;
}
.footer__logo {
  text-align: center;
  margin: 0 0 150px;
  font-size: 128px;
  text-transform: uppercase;
}
.footer__links {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.offers {
  display: flex;
  gap: 32px;
  flex-direction: row;
  padding: 0;
  align-items: stretch;
  margin-bottom: 132px;
}
.offers .leftcontainer {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 70%;
  gap: 32px;
}
.offers .lefttop,
.offers .leftbottom {
  display: flex;
  justify-content: space-between;
  width: 100%;
  gap: 32px;
}
.offers .icon {
  max-height: 60px;
  margin-bottom: 24px;
}
.offers .icon img {
  height: 100%;
  width: auto;
}
.offers h4 {
  color: var(--black, #141516);
  font-size: 36px;
  font-weight: 400;
  margin-bottom: 24px;
}
.offers p {
  font-size: 18px;
}
.offers .offer-item {
  display: flex;
  flex-direction: column;
  border-radius: 32px;
  padding: 40px;
  transition: all 0.5s ease;
}
.offers .offer-item .button {
  display: flex;
  padding: 24px 42px;
  border-radius: 99rem;
  align-self: baseline;
  background-color: var(--black);
  transition: all 0.5s ease;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: var(--blue);
  text-transform: capitalize;
  margin-top: 28px;
}
.offers .offer-item .innerbuttoncirclewrapper {
  display: flex;
  position: relative;
  height: 26px;
  justify-content: center;
  align-items: center;
}
.offers .offer-item .innerbuttoncircle {
  display: flex;
  position: relative;
  border-radius: 99rem;
  width: 0;
  height: 0;
  justify-content: center;
  align-items: center;
  transition: all 0.5s ease;
}
.offers .offer-item .button:hover .innerbuttoncircle {
  width: 26px;
  height: 26px;
}
.offers .offer-item .innerbuttoncirclearrow {
  display: flex;
  position: relative;
  width: 0;
  height: 0;
  justify-content: center;
  align-items: center;
  background-image: url("../images/circlearrow_white.svg");
  background-size: contain;
  transition: all 0.5s ease;
  background-repeat: no-repeat;
  transform: rotate(-180deg);
}
.offers .offer-item .button:hover .innerbuttoncirclearrow {
  width: 12px;
  height: 12px;
  transform: rotate(0deg);
}
.offers .offer-item .straightcirclebutton {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: black;
  height: 74px;
  width: 74px;
  border-radius: 99rem;
  align-self: flex-end;
  transition: all 0.5s ease;
  margin-top: auto;
}
.offers .offer-item .straightcirclebutton .straightarrow {
  height: 40px;
  width: 40px;
  transition: all 0.5s ease;
}
.offers .offer-item .straightcirclebutton .straightarrow svg {
  width: 100%;
  height: 100%;
}
.offers .offer-item .straightcirclebutton:hover .straightarrow {
  height: 30px;
  width: 30px;
}
.offers .worktogether {
  width: 60%;
  background-color: var(--blue);
}
.offers .worktogether .innerbuttoncircle {
  background-color: var(--blue);
}
.offers .worktogether .innerbuttoncirclearrow {
  filter: invert(0) brightness(0);
}
.offers .firstofall {
  width: 40%;
  background-color: var(--purple);
}
.offers .SEOarticle {
  width: 50%;
  background-color: var(--yellow);
}
.offers .payment {
  width: 50%;
  background-color: var(--orange);
  justify-content: space-between;
}
.offers .coffe {
  width: 30%;
  background-color: var(--green);
  background-image: url(/assets/images/coffe-bg.svg);
  background-size: 85%;
  background-repeat: no-repeat;
  background-position: bottom right;
}
.offers .coffe .button {
  color: var(--green);
  margin-top: 49%;
}
.offers .coffe .innerbuttoncircle {
  background-color: var(--green);
}
.offers .coffe .innerbuttoncirclearrow {
  filter: invert(0) brightness(0);
}

.faq__inner {
  display: flex;
  align-items: flex-start;
  gap: 136px;
}
.faq__img {
  width: 620px;
  height: 800px;
  border-radius: 32px;
  border: 3px solid var(--black);
  overflow: hidden;
  font-size: 0;
}
.faq__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.faq__tabs {
  max-width: 685px;
  margin-top: -32px;
}
.faq__box {
  padding: 32px 0 29px;
  border-bottom: 3px solid rgba(20, 21, 22, 0.4);
}
.faq .accordion {
  font-size: 36px;
  cursor: pointer;
  padding: 0 65px 0 0;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  transition: 0.4s;
  position: relative;
  background-color: transparent;
}
.faq .accordion::after {
  content: "+";
  font-size: 3rem;
  position: absolute;
  right: 1rem;
}
.faq .accordion.active-faq::after {
  content: "−";
}
.faq .panel {
  max-height: 0;
  overflow: hidden;
  transition: all 0.2s ease-out;
  padding-right: 65px;
}
.faq .active-tab .panel {
  margin-top: 20px;
}

video {
  width: 100%;
  height: auto;
}

.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  height: 100%;
  background: #000;
  color: #fff;
  pointer-events: none;
  z-index: 999999;
}

.counter {
  position: fixed;
  left: 50px;
  bottom: 50px;
  display: flex;
  height: 100px;
  font-size: 100px;
  line-height: 102px;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100px, 0 100px);
          clip-path: polygon(0 0, 100% 0, 100% 100px, 0 100px);
  font-weight: 400;
}

.counter-1,
.counter-2,
.counter-3 {
  position: relative;
  top: -15px;
}

.num1offset1 {
  position: relative;
  right: -25px;
}

.num1offset2 {
  position: relative;
  right: -10px;
}

.loader {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300px;
  height: 50px;
  transform: translate(-50%, -50%);
  display: flex;
  background: rgb(80, 80, 80);
}

.loader-1 {
  position: relative;
  background: #fff;
  width: 200px;
}

.loader-2 {
  position: relative;
  width: 100px;
  background: #fff;
}

.bar {
  height: 50px;
}

.website-content {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero {
  padding: 100px 0;
}
.hero__video {
  overflow: hidden;
  height: 400px;
}
.hero__video video {
  position: relative;
  top: -300px;
}
.hero__video video source#white {
  display: none;
}
.hero__inner {
  margin: 0 auto;
  height: 200px;
  max-width: 1680px;
  width: 100%;
}

.call-action {
  position: relative;
  max-width: 1400px;
  padding-top: 128px;
  padding-right: 118px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: flex-end;
}
.call-action__inner {
  display: flex;
  gap: 32px;
  align-items: flex-end;
}
.call-action__arrow {
  padding-bottom: 108px;
}
.call-action__text {
  color: var(--black);
  font-size: 36px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  max-width: 512px;
}
.call-action__btn {
  margin-top: 32px;
  color: var(--black);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  text-transform: capitalize;
  width: 199px;
}
.call-action__btn:hover {
  width: 235px;
}
.call-action__blobs {
  position: absolute;
}
.call-action__blobs .blob-1 {
  top: 200px;
  right: 790px;
  animation: animate-blob-1 14s ease-in-out infinite;
}
.call-action__blobs .blob-2 {
  top: 350px;
  right: 760px;
  animation: animate-blob-1 6s ease-in-out infinite alternate-reverse;
}

.horizontal-sliders {
  height: 100vh;
  position: relative;
  align-items: center;
  display: flex;
  flex-wrap: no-wrap;
  width: 500%;
  gap: 42px;
  overflow-x: hidden;
  padding-left: 200px !important;
}

.next-block {
  height: 100vh;
  background: blue;
}

.projects {
  background: var(--orange);
  padding-top: 40px;
  padding-bottom: 108px;
}
.projects__wrapper {
  max-width: 1440px;
  width: 100%;
  position: relative;
  margin: 0 auto;
  display: flex;
  margin-top: 80px;
  gap: 63px;
}
.projects__img {
  border: 2px solid var(--black);
  max-width: 696px;
  border-radius: 32px;
  width: 100%;
  height: 610px;
  position: relative;
}
.projects__dots {
  top: 26px;
  left: 26px;
  position: absolute;
  display: flex;
  gap: 10px;
}
.projects__desc {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.projects__btn {
  background-color: var(--black);
  color: var(--orange);
}
.projects__btn .innerbuttoncirclearrow {
  background-image: url(../images/proj_arrow.svg);
}
.projects__btn .innerbuttoncircle {
  background-color: var(--orange);
}
.projects__row {
  width: 100%;
  cursor: pointer;
  padding-bottom: 24px;
  border-bottom: 2px solid rgba(20, 21, 22, 0.3);
}
.projects__row p {
  color: var(--black);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
.projects__row h3 {
  color: var(--black);
  font-size: 36px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
}
.projects__tabs {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  margin-top: 135px;
  display: flex;
  justify-content: space-between;
}
.projects__tabs-content {
  position: relative;
  max-width: 506px;
  width: 100%;
}
.projects__tabs-nav {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.projects__tabs-nav .tab {
  cursor: pointer;
  color: rgba(20, 21, 22, 0.4);
  font-size: 36px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  transition: 0.2s all;
}
.projects__tabs-nav .tab.active {
  transition: 0.2s all;
  color: var(--black);
}

.marquee {
  position: relative;
  background: transparent;
  color: #eee;
  padding: 32px 0;
  font-weight: 600;
  font-size: 40px;
  text-transform: uppercase;
  overflow: hidden;
}

.marquee__inner {
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  flex: auto;
  flex-direction: row;
}

.marquee__part {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  color: var(--black);
  font-size: 128px;
  font-weight: 400;
  line-height: 130%;
  text-transform: lowercase;
  margin-right: 30px;
}

.marquee__part svg {
  position: relative;
  top: 20px;
  margin-left: 30px;
}

@keyframes slideArrow {
  0% {
    transform: translateX(10%) translateY(-10%);
  }
  100% {
    transform: translateX(-10%) translateY(10%);
  }
}
@keyframes animate-blob-1 {
  0% {
    border-radius: 60% 40% 30% 70%/60% 30% 70% 40%;
  }
  50% {
    border-radius: 30% 60% 70% 40%/50% 60% 30% 60%;
  }
  100% {
    border-radius: 60% 40% 30% 70%/60% 30% 70% 40%;
  }
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: var(--main-font);
}

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

html {
  height: 100%;
}

body {
  font-size: 20px;
  line-height: 1.3;
  color: var(--black);
  height: 100%;
  flex-direction: column;
}

main {
  flex-grow: 1;
  margin-top: 135px;
}

.marketing__content {
  margin-top: 128px;
  background-color: var(--green);
  border-radius: 32px 32px 0 0;
  padding: 90px 0 138px;
  background-image: url(../images/marketing-bg.svg);
  background-size: auto 817px;
  background-position: right top 540px;
  background-repeat: no-repeat;
}
.marketing__info {
  display: grid;
  grid-template-columns: repeat(2, minmax(100px, 506px));
  gap: 20px 0;
  justify-content: space-between;
  margin-bottom: 387px;
}
.marketing__item-title {
  font-size: 36px;
  font-weight: 400;
  padding: 18px 36px;
  border: 1px solid var(--black);
  border-radius: 32px;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 24px;
}
.marketing__item-text:not(:first-child) {
  margin-bottom: 24px;
  position: relative;
}
.marketing__item-text:not(:first-child) svg {
  position: absolute;
  width: 32px;
  height: 32px;
  bottom: 10px;
  left: -64px;
}
.marketing .button {
  display: flex;
  padding: 24px 42px;
  border-radius: 99rem;
  align-self: baseline;
  background-color: var(--black);
  transition: all 0.5s ease;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: var(--green);
  text-transform: capitalize;
  margin-top: 24px;
  width: -moz-fit-content;
  width: fit-content;
}
.marketing .innerbuttoncirclewrapper {
  display: flex;
  position: relative;
  height: 26px;
  justify-content: center;
  align-items: center;
}
.marketing .innerbuttoncircle {
  display: flex;
  position: relative;
  border-radius: 99rem;
  width: 0;
  height: 0;
  justify-content: center;
  align-items: center;
  transition: all 0.5s ease;
  background-color: var(--green);
}
.marketing .button:hover .innerbuttoncircle {
  width: 26px;
  height: 26px;
}
.marketing .innerbuttoncirclearrow {
  display: flex;
  position: relative;
  width: 0;
  height: 0;
  justify-content: center;
  align-items: center;
  background-image: url("../images/circlearrow_white.svg");
  background-size: contain;
  transition: all 0.5s ease;
  background-repeat: no-repeat;
  transform: rotate(-180deg);
  filter: invert(0) brightness(0);
}
.marketing .button:hover .innerbuttoncirclearrow {
  width: 12px;
  height: 12px;
  transform: rotate(0deg);
}

.case__desc {
  margin: 130px 0 130px auto;
  max-width: 530px;
  font-size: 36px;
  position: relative;
}
.case__desc svg {
  position: absolute;
  width: 32px;
  height: 32px;
  bottom: 10px;
  left: -64px;
}
.case__inner {
  background-color: var(--orange);
  border-radius: 32px 32px 0 0;
  padding: 94px 0 134px;
}
.case__tags {
  display: flex;
  align-items: center;
  gap: 33px;
  margin-bottom: 132px;
}
.case__tags span {
  border-radius: 32px;
  padding: 18px 36px;
  font-size: 36px;
  border: 1px solid var(--black);
}
.case__gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(100px, 684px));
  gap: 90px 76px;
}
.case__item-img {
  border-radius: 32px;
  overflow: hidden;
  font-size: 0;
  margin-bottom: 32px;
  transition: all 0.5s ease;
}
.case__item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.case__item-title {
  font-size: 36px;
  font-weight: 400;
}
.case .selectorbar {
  width: 90%;
  background: rgba(0, 0, 0, 0.29);
  height: 3px;
  display: flex;
  border-radius: 32px;
  overflow: hidden;
  margin-top: 24px;
}
.case .selectorbar .selectedbar {
  width: 0%;
  background-color: var(--black);
  height: 3px;
  transition: all 0.5s ease;
}
.case__item:hover .selectedbar {
  width: 100%;
}
.case__item:hover .case__item-img {
  transform: translateY(-15px);
}

.web__content {
  background-color: var(--blue);
  border-radius: 32px 32px 0 0;
  padding: 90px 0 132px;
}
.web__info {
  max-width: 512px;
  margin: 0 0 203px auto;
}
.web__info .button {
  margin-top: 32px;
  width: -moz-fit-content;
  width: fit-content;
  background-color: var(--black);
  color: var(--blue);
}
.web__info .innerbuttoncircle {
  background-color: var(--blue);
}
.web__info .innerbuttoncirclearrow {
  background-image: url("../images/circlearrow_white.svg");
  filter: invert(0) brightness(0);
}
.web__item-title {
  font-size: 36px;
  font-weight: 400;
  margin-bottom: 32px;
  position: relative;
}
.web__item-title svg {
  position: absolute;
  width: 32px;
  height: 32px;
  left: -64px;
  bottom: 10px;
}

.mdk__subtitle {
  margin-top: 192px;
  display: flex;
  justify-content: space-between;
  gap: 165px;
}
.mdk__about {
  max-width: 569px;
  width: 100%;
  flex-shrink: 0;
  font-size: 20px;
}
.mdk__about p {
  margin-bottom: 30px;
}
.mdk__about .button {
  padding: 0;
  max-width: 370px;
  padding: 24px 42px;
}
.mdk__row {
  padding-bottom: 24px;
  margin-bottom: 32px;
  border-bottom: 2px solid rgba(20, 21, 22, 0.3);
}
.mdk__row h3 {
  font-size: 36px;
}
.mdk__row:last-child {
  border: none;
}

.mdk-project {
  border-radius: 32px 32px 0px 0px;
  padding-top: 67px;
  padding-bottom: 128px;
  background-color: var(--orange);
}
.mdk-project .case__tags {
  gap: 24px;
  margin: 0;
}
.mdk-project .case__tags p {
  max-width: 390px;
}
.mdk-project__funnel {
  display: flex;
  gap: 81px;
  margin-top: 64px;
  margin-bottom: 128px;
}
.mdk-project__funnel .img-wrapper {
  max-width: 853px;
}
.mdk-project__funnel-wrapper {
  max-width: 511px;
  justify-content: flex-end;
  display: flex;
  flex-direction: column;
}
.mdk-project__funnel-wrapper .case__tags {
  margin-top: auto;
  flex-direction: column;
  align-items: flex-start;
}
.mdk-project__funnel-wrapper .case__tags p {
  max-width: 100%;
  margin-bottom: 64px;
}
.mdk-project__lead {
  margin-top: 64px;
  display: flex;
  margin-bottom: 128px;
}
.mdk-project__lead .lead_img {
  margin-right: 68px;
}
.mdk-project__lead .lead_imgs.first-img-row {
  margin-right: 127px;
}
.mdk-project__lead .lead_imgs {
  display: flex;
  flex-wrap: wrap;
  max-width: 346px;
  justify-content: space-between;
  max-height: 346px;
}
.mdk-project__lead .lead_imgs .small-img {
  max-width: 170px;
  width: 100%;
  max-height: 170px;
}
.mdk-project__lead .lead_imgs #left {
  position: relative;
  left: 60px;
}
.mdk-project__lead .lead_imgs #right {
  position: relative;
  right: 60px;
}
.mdk-project__lead .first-main {
  margin-bottom: 38px;
}
.mdk-project__lead .second-main {
  margin-top: 42px;
}
.mdk-project .case__tags.result-tags p {
  max-width: 442px;
}

.results__block {
  padding-top: 64px;
}

.results__block .mobile {
  display: none;
}
.brand-book {
  display: flex;
  gap: 89px;
  margin-bottom: 123px;
}
.brand-book__first-col p {
  max-width: 517px;
  margin-top: 24px;
}
.brand-book__img.mobile {
  display: none;
}
.brand-book__img:nth-child(2) {
  margin-top: 64px;
}
.brand-book__wrapper {
  margin-top: 73px;
  display: flex;
  gap: 42px;
}

.ninespace-lead {
  display: flex;
  gap: 64px;
  padding-top: 64px;
  padding-bottom: 128px;
}
.ninespace-lead__md-first-row {
  display: flex;
  gap: 64px;
}
.ninespace-lead__md-second-row {
  display: flex;
  gap: 64px;
  margin-top: 40px;
}
@media screen and (max-width: 1440px) {
  .faq__img {
    flex-shrink: 0;
    height: 680px;
    max-width: 40%;
    width: 100%;
  }
  .web__content::before {
    width: 645px;
  }
  .marketing__content {
    background-size: auto 700px;
  }
  .projects {
    overflow: hidden;
  }
  .projects__wrapper {
    padding: 0 24px;
  }
}
@media screen and (max-width: 1380px) {
  .lead_img {
    display: none;
  }
  .mdk-project__lead {
    justify-content: center;
  }
  .mdk-project__lead .lead_imgs {
    max-height: -moz-fit-content;
    max-height: fit-content;
  }
  .mdk__subtitle {
    gap: 65px;
  }
}
@media screen and (max-width: 1220px) {
  body {
    font-size: 18px;
  }
  .offers .offer-item {
    padding: 30px;
  }
  .offers h4 {
    font-size: 28px;
  }
  .offers p {
    font-size: 16px;
  }
  .marketing__item-title,
  .web__item-title,
  .case__desc {
    font-size: 32px;
  }
  .marketing__content {
    background-size: auto 600px;
  }
  .faq .accordion {
    font-size: 28px;
  }
  .faq__img {
    height: 560px;
  }
  .footer__logo,
  .title {
    font-size: 110px;
  }
  .web__content::before {
    width: 575px;
  }
  .case__desc {
    margin: 80px 0 80px auto;
  }
  .case__tags span {
    font-size: 28px;
  }
  .offers {
    flex-direction: column;
  }
  .offers .leftcontainer,
  .offers .coffe {
    width: 100%;
  }
  .offers .coffe .button {
    margin-top: 5%;
  }
  .offers .coffe {
    background-size: 30%;
  }
  .offers .icon img {
    max-height: inherit;
  }
  .marquee__part {
    font-size: 110px;
  }
  .projects__row h3 {
    font-size: 28px;
  }
}
@media screen and (max-width: 1024px) {
  .brand-book {
    gap: 0;
    margin-bottom: 40px;
  }
  .brand-book__second-col {
    display: none;
  }
  .brand-book__first-col {
    max-width: 100%;
    width: 100%;
  }
  .brand-book__img.mobile {
    display: block;
    margin-top: 40px;
  }
  .brand-book__wrapper {
    max-width: 100%;
    width: 100%;
    justify-content: center;
  }
  .brand-book__wrapper svg {
    display: none;
  }
  .ninespace-lead {
    padding-top: 34px;
    gap: 34px;
    padding-bottom: 38px;
    flex-direction: column;
  }
  .ninespace-lead__md-first-row {
    justify-content: space-between;
  }
  .mdk__subtitle {
    gap: 72px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .mdk__about {
    font-size: 16px;
  }
  .mdk__row h3 {
    font-size: 24px;
  }
  .mdk__row p {
    font-size: 16px;
  }
  .mdk-project__funnel {
    flex-direction: column;
    gap: 61px;
    margin-bottom: 48px;
  }
  .mdk-project .case__tags {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .mdk-project__funnel-wrapper {
    max-width: 100%;
  }
  .mdk-project__funnel .img-wrapper {
    max-width: 100%;
  }
  .mdk-project__lead {
    justify-content: space-between;
    align-items: center;
  }
  .mdk-project__lead .lead_imgs #left {
    left: auto;
  }
  .mdk-project__lead .lead_imgs #right {
    position: relative;
    right: auto;
  }
  .mdk-project__lead .lead_imgs.first-img-row {
    margin-right: 0;
  }
  .mdk-project__lead .second-main {
    margin-top: 15px;
  }
  .mdk-project__lead .first-main {
    margin-bottom: 15px;
  }
  .mdk-project__lead {
    margin-top: 24px;
    display: flex;
    margin-bottom: 48px;
  }
  .container {
    max-width: 768px;
  }
  .marketing__info {
    grid-template-columns: repeat(1, minmax(100px, 1fr));
    margin-bottom: 150px;
  }
  .marketing__content {
    background-image: none;
  }
  .marketing__item:nth-child(2) {
    order: 2;
  }
  .marketing__item-text svg {
    display: none;
  }
  .faq__inner {
    gap: 50px;
    flex-direction: column-reverse;
  }
  .faq__img {
    max-width: 100%;
  }
  .offers .coffe {
    background-image: none;
  }
  .footer__links {
    flex-direction: column;
    gap: 10px;
  }
  .web__content::before {
    content: none;
  }
  .web__info {
    max-width: 100%;
    margin: 0 0 100px auto;
  }
  .web__item-title svg {
    display: none;
  }
  main {
    margin-top: 50px;
  }
  .case__desc {
    margin: 50px 0 50px auto;
  }
  .marketing__item-title,
  .web__item-title,
  .case__desc {
    font-size: 26px;
  }
  .case__tags span {
    font-size: 20px;
  }
  .case__gallery {
    gap: 60px 40px;
  }
  .case__item-title {
    font-size: 28px;
  }
  .marketing__content {
    margin-top: 50px;
  }
  .offers .lefttop,
  .offers .leftbottom,
  .offers .leftcontainer,
  .offers {
    gap: 20px;
  }
  .horizontal-sliders {
    width: 100%;
    gap: 24px;
    overflow-x: hidden;
    padding-left: 24px !important;
    overflow: scroll;
  }
  .slide {
    width: 340px;
    padding: 50px 37px;
    flex-shrink: 0;
  }
  .slide h2 {
    font-size: 48px;
  }
  .hero {
    padding: 50px 0;
  }
  .hero__video {
    height: 220px;
  }
  .hero__video video {
    top: -180px;
  }
  .call-action {
    padding-top: 70px;
  }
  .call-action__text {
    font-size: 28px;
  }
  .projects__wrapper {
    flex-direction: column;
    max-width: 768px;
  }
  .projects__tabs {
    max-width: 768px;
    margin-top: 65px;
    flex-direction: column;
  }
  .projects {
    padding-bottom: 240px;
  }
  .marquee__part {
    font-size: 96px;
  }
  .marquee__part svg {
    max-width: 110px;
  }
}
@media screen and (max-width: 783px) {
  .mdk-project__lead {
    flex-direction: column;
    gap: 20px;
  }
  .mdk-project__lead .second-main {
    margin-top: 15px;
    order: -1;
  }
}
@media screen and (max-width: 688px) {
  .offers .lefttop,
  .offers .leftbottom {
    flex-direction: column;
  }
  .offers .worktogether,
  .offers .firstofall,
  .offers .SEOarticle,
  .offers .payment {
    width: 100%;
  }
  .footer__logo {
    font-size: 44px;
    margin: 0 0 50px;
  }
  .title {
    font-size: 96px;
  }
  .case__item-img {
    border-radius: 8px;
  }
}
@media screen and (max-width: 500px) {
  .ninespace-lead__md-first-row {
    gap: 12px;
  }
  .ninespace-lead {
    padding-top: 34px;
    gap: 14px;
  }
  .ninespace-lead__md-second-row {
    gap: 24px;
    margin-top: 14px;
  }
  .brand-book__wrapper {
    margin-top: 23px;
  }
  .brand-book__img:nth-child(2) {
    margin-top: 24px;
  }
  .title.ninespace {
    font-size: 72px;
  }
  .mdk-case .case__tags {
    display: flex;
  }
  .mdk-project__funnel-wrapper .case__tags p {
    max-width: 100%;
    margin-bottom: 24px;
  }
  .mdk-title__wrapper h1 {
    display: flex;
    flex-direction: column;
  }
  .mdk-project__lead .lead_imgs .small-img {
    max-width: 47%;
    width: 100%;
    max-height: 100%;
    margin-top: 10px;
  }
  .mdk-title__wrapper h1 span:nth-child(2) {
    margin-left: auto;
    margin-right: 20px;
  }
  .results__block .mobile {
    display: block;
  }
  .results__block .desktop {
    display: none;
  }
  .scroll-lock {
    height: 100vh;
    overflow: hidden;
  }
  body {
    font-size: 16px;
  }
  .home-page .header__burger {
    margin-left: auto;
  }
  .header__burger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 14px;
    position: relative;
    z-index: 40;
  }
  .header__burger span {
    height: 2px;
    background-color: var(--black);
    transition: all 0.5s;
  }
  .header__burger.open span {
    background-color: var(--white);
  }
  .header__burger.open span:nth-child(2) {
    display: none;
  }
  .header__burger.open span:first-child {
    width: 100%;
    transform: rotate(45deg) translate(3px, -3px);
  }
  .header__burger.open span:last-child {
    width: 100%;
    transform: rotate(-45deg) translate(11px, -6px);
  }
  .header__burger span:first-child, .header__burger span:last-child {
    width: 50%;
  }
  .header__burger span:first-child {
    align-self: flex-end;
  }
  .header {
    position: relative;
  }
  .header .logo.open {
    color: var(--white);
    position: relative;
    z-index: 40;
  }
  .header__nav {
    position: absolute;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    transform: translateX(-110%);
    background-color: var(--black);
    transition: transform 0.5s;
    z-index: 30;
    padding: 120px 24px 50px;
  }
  .header__nav ul {
    flex-direction: column;
    align-items: flex-start;
  }
  .header__nav ul a {
    color: var(--white);
    position: relative;
  }
  .header__nav ul a::before {
    position: absolute;
    content: "";
    top: 15px;
    left: 0;
    width: 13px;
    height: 13px;
    background-image: url(../images/circlearrow_white.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }
  .header__nav.open {
    transform: translateX(0);
  }
  .case__tags,
  .case__desc {
    display: none;
  }
  .case__gallery {
    grid-template-columns: repeat(1, minmax(100px, 684px));
    gap: 32px 0;
  }
  .case__inner {
    margin-top: 72px;
    padding: 50px 0 111px;
  }
  .case__item-img {
    margin-bottom: 24px;
  }
  .case__item-title {
    font-size: 24px;
  }
  .case .selectorbar {
    margin-top: 16px;
  }
  .footer {
    padding: 72px 0 24px;
    z-index: 5;
    position: relative;
  }
  .offers .icon {
    max-height: 40px;
  }
  .offers h4 {
    font-size: 24px;
  }
  .offers .offer-item .button {
    margin: 32px auto 0;
    padding: 20px 42px;
  }
  .offers .offer-item {
    padding: 32px 40px;
  }
  .offers .offer-item .straightcirclebutton {
    height: 60px;
    width: 60px;
  }
  .offers {
    margin-bottom: 72px;
  }
  .footer__logo {
    margin: 0 0 100px;
  }
  .footer__links {
    gap: 24px;
  }
  main {
    margin-top: 0px;
  }
  .marketing .title,
  .web .title {
    line-height: 1.1;
  }
  .marketing .title span {
    display: block;
  }
  .marketing__content {
    margin-top: 72px;
    padding: 50px 0 117px;
  }
  .marketing__item-title,
  .web__item-title,
  .case__desc {
    font-size: 24px;
  }
  .marketing .button {
    margin: 48px auto 0;
  }
  .marketing__info {
    margin-bottom: 72px;
  }
  .faq .container {
    padding: 0;
  }
  .faq__inner {
    gap: 72px;
  }
  .faq__box {
    padding: 32px 0 16px;
  }
  .faq .accordion {
    font-size: 24px;
  }
  .faq .accordion::after {
    line-height: 1;
    top: -5px;
  }
  .web__content {
    padding: 50px 0 132px;
    margin-top: 72px;
  }
  .web__info .button {
    margin: 48px auto 0;
  }
  .web__info {
    max-width: 100%;
    margin: 0 0 72px auto;
  }
}/*# sourceMappingURL=style.css.map */