@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;
}

.overflow_horizontal{
    overflow-x:hidden ;
}

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

:root body.bg-dark {
  /*--black: #fff;*/
  --white: #060606;
}

.gg-arrow-top-right {
  box-sizing: border-box;
  position: relative;
  display: block;
  width: 8px;
  height: 8px;
  border-top: 2px solid;
  transform: scale(var(--ggs, 1));
  border-right: 2px solid;
}

/*.gg-arrow-top-right::after {*/
/*  content: '';*/
/*  display: block;*/
/*  box-sizing: border-box;*/
/*  position: absolute;*/
/*  width: 14px;*/
/*  height: 2px;*/
/*  background: currentColor;*/
/*  transform: rotate(-45deg);*/
/*  top: 3px;*/
/*  right: -3px;*/
/*}*/

#trailer {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  mix-blend-mode: difference;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 500ms ease;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

#trailer:not([data-type='']) > #trailer-icon {
  opacity: 1;
}

#trailer-icon {
  scale: 0.5;
  line-height: 4;
  opacity: 0;
  transition: opacity 400ms ease;
  -webkit-transition: opacity 400ms ease;
}

.interactable {
  cursor: pointer;
  position: relative;
  mix-blend-mode: difference;
  color: #000;
  text-decoration: none;
}

body:hover > #trailer {
  opacity: 1;
}

.overlay {
	position: fixed;
	width: 100%;
	height: 100vh;
	top: 0;
	left: 0;
	display: none;
	background-color: rgba(0, 0, 0, .8);
	z-index: 999;
}
.popup {
	position: absolute;
	width: 400px;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	padding: 40px;
  border-radius: 5px;
	box-sizing: border-box;
	background: blue;
	color: pink;
}
.popup__h2 {
  text-align: center;
}
.close-popup {
	position: absolute;
	top: 10px;
	right: 10px;
	width: 23px;
	height: 23px;
	cursor: pointer;
	background: #000;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.lang span{
    cursor: pointer;
}

/*.close-popup:before {*/
/*	content: '';*/
/*	background-color: #fff;*/
/*	position: absolute;*/
/*	height: 1px;*/
/*	width: 20px;*/
/*	top: 11px;*/
/*	left: -4px;*/
/*	transform: rotate(-45deg);*/
/*}*/

/*.close-popup:after {*/
/*	content: '';*/
/*	background-color: #fff;*/
/*	position: absolute;*/
/*	height: 1px;*/
/*	width: 20px;*/
/*	top: 11px;*/
/*	transform: rotate(45deg);*/
/*	left: -4px;*/
/*}*/


body{
    background: var(--white);
}


body.bg-dark header a,
/*body.bg-dark footer a,*/
body.bg-dark .call-action__text,
body.bg-dark .call-action__arrow svg g path, 
body.bg-dark footer > *{
    color: #fff ;
    stroke:#fff ;
}

body.bg-dark .offer-item p{
    color: #000;
}

body.bg-dark .hero__video #white{
    display: none;
}

body.bg-dark .toggle{
    background: #000;
}

.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;
  margin-right: 20%;
}
.header__nav ul {
  display: flex;
  align-items: center;
  gap: 10px;
  text-transform: lowercase;
  list-style: none;
}
.header__nav ul li:nth-child(5) {
  /*display: 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__tabs > *{
    color:var(--black);
}
.faq__box {
  color:#000 !important;
  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;
  color:#000;
}
.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;
  display: flex;
    align-items: center;
    justify-content: center;
}
.projects__img img {
    max-width: 90%;
    max-height: 90%;
}
.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;
}
.darkswitch {
    display: flex;
    width: 65px;
    height: auto;
    background-color: black;
    border-radius: 99rem;
    padding: 4px;
    justify-content: start;
    transition: all 0.5s ease;
    position: relative;
    cursor: pointer;
}
.sun {
    width: 18px;
    height: 18px;
    position: absolute;
    top: 0px;
    bottom: 0px;
    margin-top: auto;
    margin-bottom: auto;
    left: 6px;
    background-image: url('../images/Sun.svg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}
.moon {
    width: 18px;
    height: 18px;
    position: absolute;
    top: 0px;
    bottom: 0px;
    margin-top: auto;
    margin-bottom: auto;
    right: 6px;
    background-image: url('../images/moon.svg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}
.toggle {
    background-color: white;
    width: 24px;
    height: 24px;
    border-radius: 99rem;
    z-index: 2;
    transition: all 0.5s ease;
}
.toggle.bg-white {
    transform: translateX(33px);
}
.bg-white {
    background-color: #fff;
}
.bg-black {
    background-color: #141516;
}


.marketing .title {
    height: 60vh;
}
.web .title {
    height: 75vh;
}

/*about*/

.about__desc {
  display: flex;
  justify-content: flex-end;
  gap: 90px;
  margin: 128px 0;
  padding: 0 5% 0 24px;
}
.about__desc-item {
  max-width: 506px;
}
.about__desc-title {
  color: var(--black);
  font-size: 36px;
  font-weight: 400;
  text-transform: capitalize;
  padding: 18px 36px;
  border-radius: 32px;
  border: 1px solid var(--black);
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 24px;
}
.about__team {
  background-color: var(--orange);
  border-radius: 32px 32px 0 0;
  padding: 92px 0 195px;
}
.about__team .about__team-desc {
  max-width: 395px;
}
.about__team-list {
  max-width: 80%;
  margin: 96px auto 0;
  display: flex;
  flex-direction: column;
  gap: 97px;
}
.about__team-item {
  display: grid;
  grid-template-columns: repeat(2, minmax(100px, 500px));
  gap: 10%;
  align-items: flex-end;
  max-height: 551px;
  justify-content: center;
}
.about__team-item:nth-child(even) .about__team-card {
  order: -1;
}
.about__team-img {
  border-radius: 29px;
  overflow: hidden;
  font-size: 0;
  height: fit-content;
}
.about__team-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.about__team-card {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.about__team-info {
  border-radius: 16px;
  border: 2px solid var(--black);
  padding: 42px 26px 42px 36px;
  /*height: calc(100% - 110px);*/
  height: fit-content;
  background-color: var(--orange);
  position: relative;
  z-index: 5;
  transform: translateY(110px);
}
.about__team-name {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 19px 36px 42px;
  font-weight: 400;
  border-radius: 16px 16px 0 0;
  border: 2px solid var(--black);
  border-bottom: none;
}
.about__team-name .span-title {
    font-size: 36px;
}
.about__team-name span {
  display: block;
  font-size: 20px;
}
.about__team-text {
  margin-bottom: 40px;
}
.about__team-btn {
  width: -moz-fit-content;
  width: fit-content;
  background-color: var(--black);
  color: var(--orange);
}
.about__team-btn .innerbuttoncircle {
  background-color: var(--orange);
}
.about__team-btn:hover .innerbuttoncirclearrow {
  background-image: url(../images/proj_arrow.svg);
  width: 15px;
  height: 15px;
}
.about__address {
    /*max-width: 470px;*/
    /*margin-left: auto;*/
    margin-top: auto;
    padding: 20px;
    border-radius: 15px;
    border: 1px solid #141516;
}
.about__address span {
    display: block;
}
.popup{
    background: var(--orange);
    border-radius: 15.034px;
    border: 0.94px solid #000;
    height: fit-content;
    width:326px;
    padding: 23px;
    padding-top:60px;
}
.diginities__text{
    margin-top: 32px;
    color: var(--black);
    font-family: Raleway;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%; 
}
.swiper-slide .diginities__img{
    max-width: 140.3px;
    width:100%;
    margin: 0 auto;
}
.swiper-button-next,
.swiper-button-prev{
    top:16%;
    background: #000;
    width:30px;
    height: 30px;
    border-radius: 50%;
}
.swiper-button-next:after, 
.swiper-button-prev:after {
    color: var(--orange);
    transform: scale(.4);
}
.popup .dot{
    width:8px;
    height: 8px;
    border: 1px solid var(--black);
}
.popup .projects__dots{
    gap: 5px;
}

/*lang*/
.lang {
    position: relative;
    z-index: 10;
}
body.bg-dark .lang {
    color: #fff;
}








@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;
  }
  .hero {
        padding: 0px 24px;
    }
    .projects__tabs {
        padding: 0 24px;
    }
  .about__team-list {
    max-width: 90%;
  }
}
@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;
    color:#000;
  }
  .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;
  }
  .about__team-list {
    max-width: 100%;
  }
  .about__team-item {
    gap: 5%;
  }
}
@media screen and (max-width: 1024px) {
    
  .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;
  }
    
body.bg-dark .header__burger span,
body.bg-dark .header__burger.open span{
    background-color:#fff ;
}    
  .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);
  }
    .marketing .title {
        height: auto;
    }
    .web .title {
        height: auto;
    }
  .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;
  }
  .projects__tabs {
    padding: 0 24px;
}
.projects__tabs-nav {
    margin-bottom: 20px;
}
.slide__text {
    flex-direction: column-reverse;
}
.slide__arrow {
    width: 60px;
    height: 60px;
}
.arrow__svg {
    width: 30px;
    height: 30px;
}
  .about__desc {
    max-width: 768px;
    margin: 60px auto 60px;
    flex-direction: column;
    gap: 48px;
  }
  .about__desc-title {
    font-size: 28px;
  }
  .about__team-item {
    height: 500px;
  }
  .about__team-info {
    padding: 32px 16px 2px 26px;
    height: calc(100% - 100px);
  }
  .about__team-name {
    padding: 19px 26px 42px;
    font-size: 28px;
  }
  .about__team-name span {
    font-size: 16px;
  }
  .about__team-text {
    margin-bottom: 20px;
    font-size: 16px;
  }
  .about__team-item.dogs .about__team-info {
        height: fit-content;
    }
}
@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;
  }
  .hero__video video {
    top: -90px;
}
.call-action {
    padding-top: 20px;
    padding-right: 24px;
}
}
@media screen and (max-width: 550px) {
  .scroll-lock {
    height: 100vh;
    overflow: hidden;
  }
  #trailer{
    display: none;
  }
  body {
    font-size: 16px;
  }
 .faq__tabs > *{    
    color:#000;
 }
.darkswitch{
    margin-bottom: 30px;
}
    
.slide .slide__text {
    opacity: 1;
    transform: translateY(0px);
    align-items: flex-start;
}
  
  .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;
  }
  .call-action__text {
    font-size: 24px;
}
.call-action__arrow {
    display: none;
}
.call-action {
    padding-left: 24px;
}
.hero__video video {
    top: 0px;
}
.hero__video {
    height: 140px;
    width: 80%;
    margin: 0 auto;
}
.slide__desc {
    font-size: 16px;
}
.marquee {
    padding: 0px 0;
}
.projects__img {
    border-radius: 15px;
    padding-top: 25px;
    height: 312px;
}
.projects__row p {
    font-size: 16px;
}
.projects__row h3 {
    font-size: 24px;
}
.projects__row {
    padding-bottom: 16px;
}
.projects__btn {
    margin: 0 auto;
}
.projects__tabs-nav .tab {
    font-size: 24px;
}
.projects__tabs-content .tab-content {
    font-size: 16px;
}
.hero {
    padding: 0px 0;
}
.projects__wrapper {
    margin-top: 0px;
}

.web .title {
    font-size: 52px;
}
.marketing .title {
    font-size: 52px;
}
.marketing .title span {
    text-align: left;
    display: inline;
}
.projects__img {
    border-radius: 15px;
}
.dot {
    width: 10px;
    height: 10px;
    border: 1px solid var(--black);
}
.projects__dots {
    top: 18px;
    left: 18px;
}
.case .title {
    font-size: 72px;
}
  .about .title {
    font-size: 72px;
  }
  .about .title span {
    display: block;
    text-align: right;
    padding-right: 10%;
  }
  .about__desc-title {
    font-size: 24px;
  }
  .about__desc {
    gap: 32px;
  }
  .about__team-item {
    grid-template-columns: repeat(1, minmax(100px, 500px));
    gap: 24px;
    max-height: initial;
    height: auto;
  }
  .about__team {
    padding: 72px 0 102px;
  }
  .about__team-item:nth-child(even) .about__team-card {
    order: 0;
  }
  .about__team-img {
    max-height: 360px;
    height: fit-content;
  }
  .about__team-name {
    padding: 16px 40px 43px;
  }
  .about__team-name .span-title {
    font-size: 24px;
  }
  .about__team-info {
    padding: 32px 40px 32px 40px;
    height: 100%;
    transform: translateY(10px);
  }
  .about__team-list {
    margin: 72px auto 0;
    gap: 40px;
  }
  .about__team-btn {
    margin: 0 auto;
  }
  .about__team-card {
    height: -moz-fit-content;
    height: fit-content;
    padding-top: 85px;
  }
  .about__team-item:first-child .about__team-card {
    /*padding-top: 105px;*/
  }
  .about__team-item.dogs .about__team-card {
        height: 500px;
    }
}/*# sourceMappingURL=style.min.css.map */