@charset "UTF-8";
.header {
  position: fixed;
  z-index: 92;
  top: 0;
  right: 0;
  left: 0;
  padding: 0;
  border-bottom: 1px solid #fff;
}
.header:not(.-black) {
  border-bottom-color: #000;
  background: #fff;
}
.header:not(.-black), .header:not(.-black) a {
  color: #000;
}
.header:not(.-black)::after, .header:not(.-black) a::after {
  background-color: #116FFF;
}
.header.-black {
  background: #000;
}
.header.-black, .header.-black a {
  color: #fff;
}
.header.-black::after, .header.-black a::after {
  background-color: #fff;
}
.header, .header a {
  color: #fff;
}
@media all and (min-width: 769px) {
  .header.fixed-header .inner {
    min-height: 95px;
  }
  .header.fixed-header ul#menu-header-menu > li {
    height: 95px;
  }
}
.header .inner {
  min-height: 125px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1558px;
  transition: 0.3s;
}
.header .logo {
  margin-top: 5px;
}
.header .logo img {
  width: 162px;
  height: 45px;
}
.header .menu-wr {
  flex-grow: 1;
  margin-left: 5%;
  max-width: 1275px;
}
.header .menu-wr-home {
  max-width: 1280px;
}
.header ul {
  transition: 0.5s;
  display: flex;
  justify-content: space-between;
  list-style: none;
}
.header ul li {
  white-space: nowrap;
}
.header ul li:not(:last-child) {
  margin-left: 5px;
}
.header ul li a {
  color: #0F0F0F;
  text-align: right;
  min-height: 50px;
  font-size: 21px;
  font-style: normal;
  font-weight: 400;
  display: flex;
  align-items: center;
  padding: 0;
  position: relative;
  transition: all 0.3s linear;
}
.header ul li a::after {
  content: "";
  position: absolute;
  display: block;
  width: 0;
  height: 1px;
  left: 0;
  bottom: 10px;
  transition: width 0.3s linear;
}
.header ul li a:hover {
  color: #116FFF;
}
.header ul li a:hover::after {
  width: 100%;
}
.header ul li.current-menu-item a {
  color: #116FFF;
  font-weight: 700;
  font-family: "PloniBoldAAA";
}
.header ul li.current-menu-item a::after {
  width: 100%;
}
.header ul li.menu-item-has-children > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row-reverse;
}
.header ul li.menu-item-has-children > a::before {
  content: "+";
  display: block;
  position: relative;
  background-color: transparent;
  margin-right: 14px;
  bottom: 0;
  z-index: 2;
}
.header ul li.menu-item-has-children:hover .sub-menu {
  max-height: 500px;
  opacity: 1;
  padding: 13px 37px 23px;
  border-top: 1px solid #000;
}
.header ul li.current-menu-parent > a {
  font-weight: 700;
  color: #116FFF;
}
.header ul li .sub-menu {
  display: block;
  max-height: 0;
  opacity: 0;
  position: absolute;
  min-width: 206px;
  height: auto;
  flex-shrink: 0;
  border-radius: 0px 0px 15px 15px;
  background: #F5F5F5;
  right: -49px;
  top: 100%;
  text-align: center;
  border-top: 0px solid #000;
  transition: all 0.3s linear;
  overflow: hidden;
  padding: 0 37px 0;
}
.header ul li .sub-menu li {
  min-width: 132px;
  padding: 18px 12px 0;
  text-align: right;
}
.header ul li .sub-menu li:not(:last-child) {
  padding-bottom: 18px;
  border-bottom: 0.5px rgba(0, 0, 0, 0.55) solid;
}
.header ul li .sub-menu li > a {
  display: inline;
  width: 100%;
  color: #000;
  text-align: right;
  line-height: 105%;
  min-height: 0;
  font-weight: 400;
  transition: all 0.5s ease-in-out;
}
.header ul li .sub-menu li > a::after {
  content: "←";
  display: block;
  position: absolute;
  bottom: auto;
  top: 0;
  transform: translateY(-50%);
  left: 0;
  opacity: 0;
  z-index: 2;
  transition: 0.3s;
  line-height: 105%;
  background-color: transparent;
  width: auto;
  font-weight: 400;
}
.header ul li .sub-menu li > a:hover {
  text-shadow: 1px 0 0 #000;
}
.header.-black ul li .sub-menu li > a:hover {
  text-shadow: 1px 0 0 #fff;
}
.header ul li .sub-menu li > a:hover::after {
  left: -22px;
  opacity: 1;
}
.header ul li .sub-menu li.current-menu-item a::after {
  width: auto;
  font-weight: 400 !important;
}
.header ul#menu-header-menu > li {
  height: 125px;
  display: flex;
  align-items: center;
  position: relative;
  transition: 0.5s;
}
.header ul#menu-header-menu > li:last-child {
  border-radius: 50px;
  overflow: hidden;
}
.header ul#menu-header-menu > li:last-child a {
  color: #FFF;
  text-align: right;
  line-height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  z-index: 2;
  padding: 0 22px 0 15px;
  height: 40px;
  min-height: 40px;
}
.header ul#menu-header-menu > li:last-child a::after {
  content: "";
  display: block;
  position: relative;
  width: 10px;
  height: 10px;
  background-image: url(https://qa.wemake.co.il/mod/header/img/plus.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-color: transparent;
  margin-right: 24px;
  bottom: 0;
  z-index: 2;
}
.header ul#menu-header-menu > li:last-child a::before {
  content: "";
  display: block;
  position: relative;
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: linear-gradient(90deg, #116FFF 0%, #630FAF 100%);
  transition: all 0.3s linear;
  border-radius: 50px;
}
.header ul#menu-header-menu > li:last-child a:hover {
  color: #0F0F0F;
}
.header ul#menu-header-menu > li:last-child a:hover::before {
  width: 40px;
}
.header ul#menu-header-menu > li.current-menu-parent > a {
  font-weight: 700;
}
.header.-black ul li a:hover {
  color: #fff;
}
.header.-black ul li.current-menu-item a {
  color: #fff;
}
.header.-black ul#menu-header-menu > li a {
  color: #fff;
}
.header.-black ul#menu-header-menu > li a:hover {
  color: #fff;
}
.header.-black ul#menu-header-menu > li:last-child a:hover {
  color: #fff;
}
.header.-black ul#menu-header-menu > li .sub-menu {
  background-color: #000;
  border-top: 1px solid #fff;
}
.header.-black ul#menu-header-menu > li .sub-menu li:not(:last-child) {
  padding-bottom: 18px;
  border-bottom: 0.5px rgba(255, 255, 255, 0.55) solid;
}

@media all and (max-width: 768px) {
  .header {
    border: none;
  }
  .header.-black .inner, .header.-black-m .inner {
    border-bottom: 1px solid #fff;
  }
  .header:not(.-black-m) {
    background: #fff;
    border-bottom: none;
  }
  .header.-black-m {
    background: #000;
    border-bottom: none;
  }
  .header:not(.-black-m) .inner {
    border-bottom: 1px solid #0C0C0C;
  }
  .header .inner {
    min-height: 60px;
    padding: 0;
    border-bottom: 1px solid #fff;
    margin: 0 4%;
  }
  .header.scrolled .inner {
    min-height: 50px;
  }
  .header .logo {
    max-width: 95px;
  }
  .header .logo img {
    height: 30px;
    width: auto;
    transition: all 0.3s linear;
  }
  .header.scrolled .logo img {
    height: 28px;
  }
  .header.scrolled .mobile-menu-btn {
    height: 22px;
  }
  .header.scrolled ~ .shine-eff-wrap {
    top: 50px;
  }
  .header.scrolled ~ .mobile-menu {
    top: 48px;
  }
  .mobile-menu-btn-wrap {
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    transform: rotate(-90deg);
  }
  .mobile-menu-btn {
    position: relative;
    top: -5px;
    width: 7.5px;
    height: 24px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    box-sizing: border-box;
    transition: all 0.3s linear;
  }
  .mobile-menu-btn.-open .mobile-menu-btn-bar-1 {
    transform: rotate(45deg);
    animation: none;
    height: 100%;
  }
  .mobile-menu-btn.-open .mobile-menu-btn-bar-2 {
    transform: rotate(-45deg);
    animation: none;
    position: relative;
    left: 4.3px;
    height: 100%;
  }
  .mobile-menu-btn-bar {
    display: inline-block;
    background: #000;
    width: 2.5px;
    height: 100%;
    transition: 0.3s;
    animation: up-and-down 1s ease infinite alternate;
  }
  .header.-black .mobile-menu-btn-bar, .header.-black-m .mobile-menu-btn-bar {
    background: #fff;
  }
  .mobile-menu-btn-bar-1 {
    height: 60%;
  }
  .mobile-menu-btn-bar-2 {
    height: 30%;
    animation-delay: 0.4s;
  }
}
@keyframes up-and-down {
  0% {
    height: 30%;
  }
  100% {
    height: 100%;
  }
}

@media all and (max-width: 1280px) and (min-width: 769px) {
  .header .logo {
    max-width: 120px;
  }
  .header ul li a {
    font-size: 18px;
  }
}
@media all and (max-width: 1440px) and (min-width: 769px) {
  .header .inner {
    min-height: 100px;
  }
  .header.fixed-header .inner {
    min-height: 100px;
  }
}
@media all and (max-width: 1050px) and (min-width: 769px) {
  .header .menu-wr {
    font-size: 1.7142857143vw;
  }
  .header ul li a {
    font-size: 16px;
  }
}
@media all and (max-width: 850px) and (min-width: 769px) {
  .header ul li a {
    font-size: 14px;
  }
}



@media all and (max-width: 768px) {
  .main-scroll-wrap {
    position: relative;
  }
  .menu-heading {
    display: flex;
    justify-content: flex-end;
    border-bottom: 1px solid #fff;
    padding: 20px 4% 15px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #000;
    z-index: 2;
    display: none;
  }
  .menu-heading .logo {
    max-width: 95px;
  }
  .mobile-menu-bt {
    position: relative;
    top: 1px;
    right: -13px;
    width: 50px;
    height: 34px;
    background: url(https://qa.wemake.co.il/mod/mobile-menu/img/menu-open-b.svg) center no-repeat;
  }
  .mobile-menu-bt.-open {
    position: absolute;
    z-index: 1;
    top: 20px;
    right: 0;
    width: 50px;
    height: 20px;
    background-image: url(https://qa.wemake.co.il/mod/mobile-menu/img/close-icon.svg);
    background-size: contain;
  }
  .header.-black-m .mobile-menu-bt {
    background-image: url(https://qa.wemake.co.il/mod/mobile-menu/img/menu-open.svg);
  }
  .mobile-menu {
    position: fixed;
    top: 58px;
    left: 0;
    right: -100%;
    bottom: 0;
    z-index: 100;
    width: 100%;
    overflow-y: scroll;
    transition: 0.5s;
  }
  .mobile-menu, .mobile-menu a {
    color: #fff;
  }
  .mobile-menu.-show {
    right: 0;
    width: 100%;
  }
  .mobile-menu:not(.-show) {
    visibility: hidden;
    opacity: 0;
  }
  .mobile-menu .menu-bg {
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
  }
  .mobile-menu .inner {
    position: relative;
    overflow-y: scroll;
    width: 100%;
    padding: 0 8.7% 0;
    display: flex;
    flex-direction: column;
  }
  .mobile-menu .menu-wr {
    text-align: center;
    font-weight: 400;
    height: 100%;
  }
  .mobile-menu .menu-wr .menu-mobile-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .mobile-menu .menu-wr .menu-mobile-menu > li {
    min-height: 9vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .mobile-menu .menu-wr .menu-mobile-menu > li.menu-item-has-children {
    line-height: 9vh;
    transition: min-height 0.3s;
    max-height: none;
    justify-content: flex-start;
  }
  .mobile-menu .menu-wr .menu-mobile-menu > li.menu-item-has-children.-open {
    min-height: calc(9vh + 155px);
    justify-content: flex-start;
    padding-bottom: 8px;
  }
  .mobile-menu .menu-wr .menu-mobile-menu > li.menu-item-has-children.-open > .sub-menu {
    margin-top: 0;
  }
  .mobile-menu .menu-wr .menu-mobile-menu > li.menu-item-has-children.-open.current-menu-item {
    padding-top: calc(4.5vh - 14px);
    padding-bottom: 8px;
  }
  .mobile-menu .menu-wr .menu-mobile-menu > li.menu-item-has-children.-open.current-menu-item > .sub-menu {
    margin-top: calc(4.5vh - 14px);
  }
  .mobile-menu .menu-wr .menu-mobile-menu > li.menu-item-has-children.-shown {
    padding-top: 0;
    padding-bottom: 8px;
  }
  .mobile-menu .menu-wr .menu-mobile-menu > li.menu-item-has-children.-shown > .sub-menu {
    margin-top: 0;
  }
  .mobile-menu .menu-wr .menu-mobile-menu > li.menu-item-has-children.-shown.current-menu-item {
    padding-bottom: 0;
  }
  .mobile-menu .menu-wr .menu-mobile-menu > li.menu-item-has-children.-shown.-open {
    justify-content: flex-start;
  }
  .mobile-menu .menu-wr .menu-mobile-menu > li.menu-item-has-children.-shown.-open.current-menu-item {
    padding-top: calc(4.5vh - 14px);
    padding-bottom: 8px;
  }
  .mobile-menu .menu-wr .menu-mobile-menu > li.menu-item-has-children.-shown.-open.current-menu-item > .sub-menu {
    margin-top: calc(4.5vh - 14px);
  }
  .mobile-menu .menu-wr .menu-mobile-menu > li.menu-item-has-children > a:after {
    content: "+";
    display: block;
    position: absolute;
    top: 50%;
    left: -30px;
  }
  .mobile-menu .menu-wr .menu-mobile-menu > li.menu-item-has-children.current-menu-item {
    padding-top: calc(4.5vh - 14px);
  }
  .mobile-menu .menu-wr .menu-mobile-menu > li.menu-item-has-children.current-menu-item > a:before {
    left: -35px;
  }
  .mobile-menu .menu-wr .menu-mobile-menu > li.-open > .sub-menu {
    max-height: 250px;
    visibility: visible;
    border-top: 1px solid #fff;
    margin-top: calc(4.5vh - 14px);
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .mobile-menu .menu-wr .menu-mobile-menu > li.-open > a:after {
    content: "-";
    transform: translateY(-50%);
  }
  .mobile-menu .menu-wr .menu-mobile-menu > li.current-menu-item > a, .mobile-menu .menu-wr .menu-mobile-menu > li.current-menu-parent > a {
    font-weight: 700;
  }
  .mobile-menu .menu-wr .menu-mobile-menu > li.current-menu-item > a {
    color: #000;
    position: relative;
    line-height: 100%;
  }
  .mobile-menu .menu-wr .menu-mobile-menu > li.current-menu-item > a::before {
    content: "";
    position: absolute;
    top: -5px;
    bottom: -5px;
    left: -10px;
    right: -10px;
    border-radius: 3px;
    background: linear-gradient(270deg, #FAFF00 -1.15%, #8FFF00 101.14%);
    transform: rotate(-1.12deg);
    z-index: -1;
  }
  .mobile-menu .menu-wr .menu-mobile-menu > li:not(.-open) > a:after {
    transform: translateY(-50%);
  }
  .mobile-menu .menu-wr .menu-mobile-menu > li a {
    position: relative;
    text-transform: uppercase;
    color: #FFF;
    font-family: SimplerPro_Extended;
    font-size: 28px;
    font-weight: 900;
    transition: none;
    -webkit-transition: none;
  }
  .mobile-menu .menu-wr .menu-mobile-menu ul li.-open:not(:last-child) > .sub-menu {
    border-bottom: 1px solid #fff;
    margin-bottom: 20px;
  }
  .mobile-menu .menu-wr .menu-mobile-menu ul li.-open > a {
    margin-bottom: 20px;
  }
  .mobile-menu .menu-wr .menu-mobile-menu ul li.-open ul.sub-menu {
    list-style: none;
    font-size: 14px;
  }
  .mobile-menu .menu-wr > ul > li {
    position: relative;
    border-bottom: 1px solid #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .mobile-menu .menu-wr > ul > li:last-of-type {
    border-bottom: none;
  }
  .mobile-menu .menu-wr > ul > li .sub-menu {
    transition: max-height 0.3s;
    max-height: 0;
    visibility: hidden;
    overflow: hidden;
    padding: 0 10px;
  }
  .mobile-menu .menu-wr > ul > li .sub-menu > li {
    line-height: 150%;
    list-style: none;
    min-height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .mobile-menu .menu-wr > ul > li .sub-menu > li.current-menu-item > a {
    color: #000;
    position: relative;
    line-height: 100%;
  }
  .mobile-menu .menu-wr > ul > li .sub-menu > li.current-menu-item > a::before {
    content: "";
    position: absolute;
    top: -5px;
    bottom: -5px;
    left: -10px;
    right: -10px;
    border-radius: 3px;
    background: linear-gradient(270deg, #FAFF00 -1.15%, #8FFF00 101.14%);
    transform: rotate(-1.12deg);
    z-index: -1;
  }
  .mobile-menu .phone-wr {
    text-align: center;
    margin-bottom: 30px;
    display: none;
  }
  .mobile-menu .social-icons {
    margin: 0;
    justify-content: center;
  }
}
.scrolled ~ .mobile-menu {
  top: 48px;
}

.shine-eff-wrap {
  width: 100%;
  position: fixed;
  top: 60px;
  left: 0;
  right: -100%;
  bottom: 0;
  z-index: 99;
  background: #000;
  overflow: hidden;
  transition: 0.5s;
}
.shine-eff-wrap.-shown {
  right: 0;
}
.shine-eff-wrap .shine-eff.-an-rotate.-p1 {
  width: 100%;
  top: 40%;
  left: 0;
  transform: translateY(-40%) rotate(-45deg);
  -webkit-animation: shine-rotate-small 30s infinite linear;
          animation: shine-rotate-small 30s infinite linear;
}
.shine-eff-wrap .shine-eff.-an-rotate.-p1::before, .shine-eff-wrap .shine-eff.-an-rotate.-p1::after {
  width: 50%;
  height: 250px;
}
.shine-eff-wrap .shine-eff.-an-rotate.-p1::before {
  background: radial-gradient(circle, rgb(112, 0, 223) 0%, transparent 100%);
}
.shine-eff-wrap .shine-eff.-an-rotate.-p1::after {
  background: radial-gradient(circle, rgb(0, 64, 229) 0%, transparent 100%);
}
.shine-eff-wrap .shine-eff.-an-rotate.-p2 {
  width: 100%;
  top: 60%;
  left: 0;
  transform: translateY(-60%) rotate(-90deg);
  -webkit-animation: shine-rotate-small 30s infinite linear;
          animation: shine-rotate-small 30s infinite linear;
}
.shine-eff-wrap .shine-eff.-an-rotate.-p2::before, .shine-eff-wrap .shine-eff.-an-rotate.-p2::after {
  width: 50%;
  height: 250px;
}
.shine-eff-wrap .shine-eff.-an-rotate.-p2::after {
  background: radial-gradient(circle, rgb(196, 76, 177) 0%, transparent 100%);
}
.shine-eff-wrap .shine-eff.-an-rotate.-p2::before {
  background: radial-gradient(circle, rgb(0, 207, 235) 0%, transparent 100%);
}

.service-webdev-page .page-head {
  background-color: #fff;
}
.page-head .inner {
  padding-top: 110px;
  padding-bottom: 190px;
}
.about-us-page .page-head .inner {
  padding-bottom: 216px;
}
.service-seo-page .page-head .inner {
  padding-top: 149px;
  padding-bottom: 201px;
}
.service-google-page .page-head .inner {
  padding-top: 153px;
  padding-bottom: 198px;
}
.service-facebook-page .page-head .inner {
  padding-top: 122px;
  padding-bottom: 222px;
}
.service-webdev-page .page-head .inner {
  padding-top: 103px;
  padding-bottom: 115px;
}
.page-head .row1 {
  padding-bottom: 48px;
  margin-bottom: 65px;
  border-bottom: 1px solid #000;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.about-us-page .page-head .row1 {
  margin-bottom: 66px;
}
.service-seo-page .page-head .row1 {
  margin-bottom: 62px;
}
.service-facebook-page .page-head .row1 {
  padding-bottom: 37px;
  max-width: 1230px;
}
.service-webdev-page .page-head .row1 {
  margin-bottom: 97px;
}
.page-head .row1-title {
  font-size: 168px;
  margin-bottom: 10px;
  font-weight: 800;
  text-align: right;
  width: 100%;
}
.service-seo-page .page-head .row1-title {
  margin-bottom: 5px;
}
.service-google-page .page-head .row1-title {
  font-size: 187px;
}
.service-facebook-page .page-head .row1-title {
  margin-bottom: 51px;
}
.service-webdev-page .page-head .row1-title {
  font-size: 191px;
  margin-bottom: 5px;
}
.page-head .row1-text {
  font-family: "Montserrat", "sans-serif";
  max-width: 480px;
  font-size: 24px;
  line-height: 120%;
  margin-left: 7px;
}
.service-google-page .page-head .row1-text {
  margin-left: 0;
}
.service-facebook-page .page-head .row1-text {
  margin-left: 10px;
}
.service-webdev-page .page-head .row1-text {
  font-size: 28px;
  margin-left: 13px;
  max-width: 100%;
  line-height: 112%;
}
.page-head .row2 {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.service-seo-page .page-head .row2 {
  align-items: center;
}
.service-google-page .page-head .row2 {
  align-items: flex-start;
}
.page-head .row2 .service-fb-head-image {
  max-width: 415px;
}
.page-head .row2-text {
  font-size: 36px;
  line-height: 52px;
  max-width: 800px;
  margin-right: 15px;
}
.service-seo-page .page-head .row2-text {
  margin-right: 5px;
}
.service-google-page .page-head .row2-text {
  margin-right: -2px;
  line-height: 53px;
}
.service-facebook-page .page-head .row2-text {
  max-width: 820px;
  line-height: 148%;
}
.service-webdev-page .page-head .row2-text {
  max-width: 975px;
  margin-right: 0;
}
.service-webdev-page .page-head .row2-text.desktop- {
  width: calc(100% - 150px);
}
.page-head .row2-text strong {
  position: relative;
  display: inline-block;
  color: #fff;
  white-space: nowrap;
}
.page-head .row2-text strong::after {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  top: 6px;
  bottom: 9px;
  right: -4px;
  left: -4px;
  background: linear-gradient(270deg, #116FFF 0%, #1066F0 100%);
}
.page-head .row2-pic {
  max-width: 415px;
  margin-right: 40px;
}
.service-seo-page .page-head .row2-pic {
  margin-bottom: 20px;
}
.page-head .row2-pic img {
  max-height: 140px;
}
.service-google-page .page-head .row2-pic img {
  max-height: 132px;
}
.page-head [class*=-bc-] {
  margin-left: 5px;
}
.page-head [class*=-bc-]:not(:first-child) {
  margin-right: 5px;
}
.page-head [class*=-bc-]:before {
  transform: none;
  border-radius: 0;
  bottom: 5px;
}
.page-head .down-bt {
  top: 50px;
  position: relative;
  cursor: pointer;
  width: 120px;
  height: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(180deg, #6F10BA 0%, #2C51D7 100%);
  border-radius: 50%;
}
.service-webdev-page .page-head .down-bt {
  top: 42px;
  left: 12px;
}
.about-us-page .page-head .down-bt {
  top: -22px;
  left: 8px;
}
.page-head .page_head_mobile_subtitle {
  margin-bottom: 21px;
  width: 100%;
  text-align: right;
}
.page-head .page_head_mobile_subtitle > div {
  font-family: "SimplerPro", "sans-serif";
  font-weight: 900;
  font-size: 17px;
  line-height: 17px;
  position: relative;
  color: #000000;
  padding: 7px 11px 4px;
  display: inline-block;
}
.page-head .page_head_mobile_subtitle > div::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(270deg, #FAFF00 -1.15%, #8FFF00 101.14%);
  border-radius: 65px;
  z-index: -1;
}
.all-projects-page .page-head .inner {
  max-width: 1816px;
  margin-right: 353px;
  padding-top: 87px;
  padding-bottom: 158px;
}
.all-projects-page .page-head .title-c-wr {
  justify-content: flex-start;
}
.all-projects-page .page-head .row1 {
  align-items: flex-start;
  font-family: "SimplerPro", "sans-serif";
  font-weight: 900;
  margin-bottom: 0;
  padding-bottom: 0;
}
.all-projects-page .page-head .row1-text {
  font-size: 18px;
  color: #000;
  line-height: 18px;
  background: linear-gradient(270deg, #FAFF00 -1.15%, #8FFF00 101.14%);
  border-radius: 65px;
  padding: 7px 19px 5px;
  margin-bottom: -25px;
  font-weight: 900;
  font-family: SimplerPro_Extended;
  margin-right: -7px;
}
.all-projects-page .page-head .row1-title {
  font-size: 240px;
  line-height: 240px;
  color: #FFFFFF;
  margin-bottom: 0;
}
.all-projects-page .page-head .row2 {
  justify-content: flex-end;
  text-align: left;
}
.all-projects-page .page-head .row2-text {
  font-family: "Unbounded", "sans-serif";
  font-size: 24px;
  line-height: 131%;
  text-transform: uppercase;
  max-width: 860px;
  margin-top: -8px;
  margin-right: 11px;
}
.all-projects-page .page-head .row2-text strong::after {
  display: none;
}
.service-seo-page .page-head .row1-title {
  font-weight: 900;
  font-size: 187px;
  line-height: 105%;
}
.service-facebook-page .page-head .row2 {
  align-items: center;
}
.service-facebook-page .page-head .row1-title {
  font-weight: 900;
  font-size: 140px;
  line-height: 105%;
  position: relative;
}
.service-webdev-page .page-head .row1-text {
  direction: ltr;
  text-align: right;
}
.about-us-page .page-head .inner {
  padding-top: 114px;
}
.about-us-page .page-head .row1-title {
  letter-spacing: 0.005em;
  margin-bottom: 21px;
}
.web-design-page .page-head .inner {
  padding-top: 101px;
  padding-bottom: 118px;
}
.web-design-page .page-head .row1 {
  margin-bottom: 154px;
}
.web-design-page .page-head .row1-title {
  font-family: SimplerPro_Extended;
  font-size: 187px;
  font-weight: 900;
  line-height: 105%;
  margin-bottom: 5px;
}
.web-design-page .page-head .row1-text {
  margin-left: 15px;
}
.web-design-page .page-head .row2-text {
  max-width: 975px;
  margin-right: 0;
}
.web-design-page .page-head .row2-pic {
  position: relative;
  left: 49px;
  top: 16px;
}
.web-design-page .page-head .row2-pic::before {
  content: "";
  position: absolute;
  width: 229px;
  height: 229px;
  top: -32px;
  left: -32px;
  background: url(https://qa.wemake.co.il/mod/page-head/img/figure_2.svg) no-repeat center;
  animation: rotate-animation 10s infinite linear;
}
.web-design-page .page-head .row2-pic img {
  max-height: 163px;
  min-height: 163px;
}
.web-design-page .page-head .down-bt {
  display: none;
}
.branding-page .page-head .inner {
  padding-top: 90px;
}
.branding-page .page-head .title-c-wr {
  max-width: 1296px;
  margin: 0 auto;
}
.branding-page .page-head .row1 {
  margin-bottom: 170px;
}
.branding-page .page-head .row1-title {
  font-size: 208px;
}
.branding-page .page-head .row1-text {
  max-width: 509px;
}
.branding-page .page-head .row2 {
  position: relative;
}
.branding-page .page-head .row2-text {
  font-size: 22px;
  line-height: 150%;
  max-width: 515px;
  margin-right: 0;
}
.branding-page .page-head .row2-text_right {
  color: #000;
  font-family: SimplerPro_Extended;
  font-size: 64px;
  font-weight: 900;
  line-height: 111.5%;
  max-width: 918px;
  text-align: left;
  position: absolute;
  left: 0;
  top: -105px;
  direction: ltr;
}
.branding-page .page-head .row2-text_right strong {
  position: relative;
  color: #fff;
}
.branding-page .page-head .row2-text_right strong::before {
  content: "";
  position: absolute;
  top: -9px;
  bottom: -7px;
  left: -12px;
  right: -9px;
  background: url(https://qa.wemake.co.il/mod/page-head/img/title-bg.png) no-repeat center center;
  transform: rotate(-0.865deg);
  border-radius: 6px;
  z-index: -1;
}
.branding-page .page-head .down-bt {
  display: none;
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@media all and (max-width: 768px) {
  .service-google-page .page-head .inner {
    padding: 33px 4% 30px;
  }
  .service-google-page .page-head .row1 {
    text-align: right;
    padding-bottom: 31px;
    margin-bottom: 30px;
  }
  .service-google-page .page-head .row1-title {
    font-size: 60px;
    margin-bottom: 2px;
  }
  .service-google-page .page-head .row1-text {
    margin-top: -10px;
  }
  .service-google-page .page-head .page_head_mobile_subtitle {
    margin-bottom: 25px;
  }
  .service-google-page .page-head .row2 {
    align-items: center;
    text-align: left;
  }
  .service-google-page .page-head .row2-text {
    font-size: 19px;
    margin-right: 0px;
    line-height: 144%;
  }
  .service-facebook-page .page-head .inner {
    padding: 38px 4% 46px;
  }
  .service-facebook-page .page-head .row1 {
    text-align: right;
    margin-bottom: 25px;
  }
  .service-facebook-page .page-head .row2 {
    align-items: center;
    text-align: left;
    width: 100%;
  }
  .service-facebook-page .page-head .row1-title {
    font-size: 40px;
    width: 100%;
    margin-bottom: 0;
    text-align: right;
    padding-right: 20px;
  }
  .service-facebook-page .page-head .page_head_mobile_subtitle {
    margin: -5px 0 41px -5px;
  }
  .service-facebook-page .page-head .row2-text {
    font-size: 19px;
    margin-right: 0;
  }
  .service-webdev-page .page-head .inner {
    padding: 28px 4% 35px;
  }
  .service-webdev-page .page-head .row1 {
    text-align: right;
    padding-bottom: 29px;
    margin-bottom: 20px;
  }
  .service-webdev-page .page-head .row1-title {
    font-size: 55px;
    line-height: 105%;
    margin-bottom: 0px;
  }
  .service-webdev-page .page-head .row1-text {
    text-align: left;
    font-size: 14px;
    max-width: 299px;
    width: 100%;
    margin-left: 0;
  }
  .service-webdev-page .page-head .page_head_mobile_subtitle {
    margin-bottom: 15px;
  }
  .service-webdev-page .page-head .row2 {
    align-items: center;
    direction: ltr;
    text-align: left;
  }
  .service-webdev-page .page-head .row2-text {
    font-size: 19px;
    direction: rtl;
  }
  .service-webdev-page .page-head .down-bt {
    top: auto;
    left: 0px;
    bottom: -63px;
  }
  .web-design-page .page-head .inner {
    padding: 32px 4% 70px;
  }
  .web-design-page .page-head .row1 {
    padding: 0 15px 25px;
    margin-bottom: 30px;
  }
  .web-design-page .page-head .row1-title {
    font-size: 52px;
    margin: 0;
  }
  .web-design-page .page-head .row1-text {
    max-width: 362px;
    margin: 0;
  }
  .web-design-page .page-head .row2-pic {
    display: none;
  }
  .web-design-page .page-head .page_head_mobile_subtitle {
    font-family: SimplerPro_Extended;
    margin: -2px 0 15px;
  }
  .web-design-page .page-head .down-bt {
    display: flex;
    bottom: -100px;
  }
  .web-design-page .page-head .row2-text {
    font-size: 19px;
  }
  .page-head {
    position: relative;
  }
  .about-us-page .page-head .inner {
    padding: 35px 4% 44px;
  }
  .about-us-page .page-head .subtitle {
    font-weight: 800;
    font-family: "SimplerPro", "Helvetica", "Arial", sans-serif;
    margin-bottom: 10px;
  }
  .about-us-page .page-head .subtitle:before {
    border-radius: 20px;
    top: -2px;
    bottom: -1px;
    right: -10px;
    left: -10px;
  }
  .about-us-page .page-head .row1 {
    padding-bottom: 34px;
    margin-bottom: 36px;
  }
  .about-us-page .page-head .row1-title {
    margin-bottom: 21px;
  }
  .about-us-page .page-head .row1-text {
    max-width: 300px;
  }
  .about-us-page .page-head .row2 {
    position: relative;
  }
  .about-us-page .page-head .row2-text {
    font-size: 19px;
  }
  .about-us-page .page-head .down-bt {
    top: auto;
    bottom: -75px;
  }
  .service-seo-page .page-head .inner {
    padding: 34px 4% 10px;
  }
  .service-seo-page .page-head .row1 {
    padding-bottom: 33px;
    margin-bottom: 28px;
  }
  .service-seo-page .page-head .row1-title {
    font-size: 58px;
    width: 100%;
    margin-bottom: 0;
  }
  .service-seo-page .page-head .row2-text {
    font-size: 19px;
    margin-right: 0;
  }
  .service-seo-page .page-head .row1-text {
    margin-left: 0;
    margin-top: -30px;
  }
  .service-seo-page .page-head .page_head_mobile_subtitle {
    margin-bottom: 23px;
    width: 100%;
    text-align: right;
    font-family: SimplerPro_Extended;
    font-size: 17px;
    font-weight: 900;
  }
  .service-seo-page .page-head .page_head_mobile_subtitle > div::after {
    left: -7px;
    right: 0;
    top: 0;
    bottom: 0;
    width: auto;
    height: auto;
  }
  .page-head .down-bt {
    position: absolute;
    width: 60px;
    height: 60px;
    top: auto;
    bottom: -80px;
    left: 0;
  }
  .page-head .figure7 {
    width: 14px;
    height: 25px;
  }
  .page-head .inner {
    padding-top: 30px;
    padding-bottom: 50px;
  }
  .page-head .title-c-wr {
    padding-right: 0;
  }
  .page-head .row1 {
    padding-bottom: 40px;
    margin-bottom: 40px;
  }
  .page-head .row1-title {
    font-size: 52px;
    width: 100%;
  }
  .page-head .row1-text {
    font-size: 14px;
    text-align: left;
    line-height: 17px;
    order: 1;
  }
  .page-head .row2 {
    align-items: center;
  }
  .page-head .row2-text {
    order: 2;
    font-size: 18px;
    line-height: 26px;
    text-align: right;
  }
  .page-head .row2-text strong {
    position: relative;
    color: #fff;
  }
  .page-head .row2-text strong::after {
    content: "";
    position: absolute;
    left: -3px;
    top: 1px;
    right: -3px;
    bottom: 2px;
    display: block;
    background: linear-gradient(270deg, #116FFF 0%, #1066F0 100%);
  }
  .page-head .row2-pic {
    order: 1;
    margin: 0 0 0 30px;
    min-width: 75px;
  }
  .all-projects-page .page-head .inner {
    max-width: 100%;
    margin: 0;
    padding-top: 34px;
    padding-bottom: 0;
  }
  .all-projects-page .page-head .title-c-wr {
    padding-bottom: 30px;
    border-bottom: 1px solid #fff;
  }
  .all-projects-page .page-head .title-c {
    width: 100%;
  }
  .all-projects-page .page-head .row1 {
    margin-bottom: 25px;
  }
  .all-projects-page .page-head .row1-text {
    font-size: 16px;
    line-height: 16px;
    border-radius: 65px;
    padding: 7px 13px 6px 16px;
    margin-bottom: 0;
    text-transform: capitalize;
    font-family: SimplerPro_Extended;
    font-weight: 900;
  }
  .all-projects-page .page-head .row1-title {
    font-size: 51px;
    line-height: 105%;
    margin-bottom: 6px;
  }
  .all-projects-page .page-head .row2-text {
    font-family: Montserrat;
    font-size: 14px;
    font-weight: 400;
    line-height: 110%;
    max-width: 299px;
    margin: 0 auto 0 0;
    text-align: left;
  }
  .all-projects-page .page-head .row2-text strong {
    font-weight: 800;
  }
  .all-projects-page .page-head .row2-text strong:after {
    display: none;
  }
  .branding-page .page-head .inner {
    padding: 25px 3.5% 44px;
  }
  .branding-page .page-head .row1 {
    padding-bottom: 30px;
    margin-bottom: 25px;
  }
  .branding-page .page-head .row1-title {
    font-size: 64px;
    line-height: 105%;
    margin-bottom: 0;
  }
  .branding-page .page-head .row1-text {
    margin-left: 0;
    max-width: 299px;
  }
  .branding-page .page-head .row2-text {
    font-size: 20px;
    line-height: 26px;
    max-width: 100%;
  }
  .branding-page .page-head .row2-text::before {
    display: none;
  }
  .branding-page .page-head .page_head_mobile_subtitle {
    margin-bottom: 25px;
  }
  .branding-page .page-head .down-bt {
    display: flex;
    bottom: -73px;
  }
}
@media all and (max-width: 426px) {
  .service-webdev-page .page-head .row1-title {
    text-align: center;
  }
  .service-webdev-page .page-head .row1-text {
    margin-left: 13px;
  }
}
@media all and (max-width: 425px) {
  .service-seo-page .page-head .row1-title {
    font-size: 13.6470588235vw;
  }
  .service-facebook-page .page-head .row1-title {
    font-size: 9.4117647059vw;
  }
  .service-webdev-page .page-head .row1-title {
    font-size: 12.9411764706vw;
  }
  .service-google-page .page-head .row1-title {
    font-size: 14.1176470588vw;
  }
  .web-design-page .page-head .row1 {
    padding: 0 3.5294117647vw 25px;
  }
  .web-design-page .page-head .row1-title {
    font-size: 12.2352941176vw;
    white-space: nowrap;
  }
  .web-design-page .page-head .row1-text {
    max-width: 362px;
    margin: 0 auto;
  }
  .web-design-page .page-head .row2-pic {
    display: none;
  }
  .web-design-page .page-head .page_head_mobile_subtitle {
    font-family: SimplerPro_Extended;
    max-width: 362px;
    margin: -2px auto 15px;
  }
  .web-design-page .page-head .down-bt {
    display: flex;
    bottom: -100px;
  }
  .branding-page .page-head .inner {
    padding: 5.8823529412vw 3.5% 10.3529411765vw;
  }
  .branding-page .page-head .row1-title {
    font-size: 15.0588235294vw;
  }
  .branding-page .page-head .row2-text {
    font-size: 4.7058823529vw;
    line-height: 6.1176470588vw;
  }
  .branding-page .page-head .down-bt {
    bottom: calc(-50% - 30px);
  }
  .page-head .row1-title {
    font-size: 12.2352941176vw;
  }
  .all-projects-page .page-head .row1-title {
    font-size: 11.7647058824vw;
  }
}

@media all and (min-width: 2499px) {
  .all-projects-page .page-head .row2-text strong::after {
    display: none;
  }
}
@media all and (max-width: 2499px) and (min-width: 769px) {
  .all-projects-page .page-head .inner {
    max-width: 70.9375vw;
    margin-right: 13.7890625vw;
    padding-top: 3.3984375vw;
    padding-bottom: 5.078125vw;
  }
  .all-projects-page .page-head .row1-text {
    margin-bottom: 0;
  }
  .all-projects-page .page-head .row1-title {
    font-size: 9.375vw;
    line-height: 9.375vw;
  }
  .all-projects-page .page-head .row2-text strong::after {
    display: none;
  }
}
@media all and (max-width: 1920px) and (min-width: 769px) {
  .service-webdev-page .page-head .inner {
    padding-top: 5.3645833333vw;
    padding-bottom: 5.9895833333vw;
  }
  .service-webdev-page .page-head .row1 {
    margin-bottom: 5.0520833333vw;
  }
  .service-facebook-page .page-head .inner {
    padding-top: 6.3541666667vw;
    padding-bottom: 11.5625vw;
  }
  .service-facebook-page .page-head .row1 {
    margin-bottom: 3.3854166667vw;
  }
  .service-google-page .page-head .inner {
    padding-top: 7.96875vw;
    padding-bottom: 10.3125vw;
  }
  .service-google-page .page-head .row1 {
    margin-bottom: 3.3854166667vw;
  }
  .service-seo-page .page-head .inner {
    padding-top: 7.7604166667vw;
    padding-bottom: 10.46875vw;
  }
  .service-seo-page .page-head .row1 {
    margin-bottom: 3.2291666667vw;
  }
  .about-us-page .page-head .inner {
    padding-top: 5.9375vw;
    padding-bottom: 11.25vw;
  }
  .about-us-page .page-head .row1 {
    margin-bottom: 3.4375vw;
  }
  .web-design-page .page-head .inner {
    padding-top: 5.2604166667vw;
    padding-bottom: 6.1458333333vw;
  }
  .web-design-page .page-head .row1 {
    margin-bottom: 8.0208333333vw;
  }
  .web-design-page .page-head .row1-title {
    font-size: 9.7395833333vw;
  }
  .web-design-page .page-head .row1-text {
    margin-left: 0.78125vw;
  }
  .web-design-page .page-head .row2-text {
    max-width: 50.78125vw;
  }
  .web-design-page .page-head .row2-pic {
    left: 2.5520833333vw;
    top: 0.8333333333vw;
  }
  .web-design-page .page-head .row2-pic::before {
    width: 11.9270833333vw;
    height: 11.9270833333vw;
    top: -1.6666666667vw;
    left: -1.6666666667vw;
  }
  .web-design-page .page-head .row2-pic img {
    max-height: 8.4895833333vw;
    min-height: 8.4895833333vw;
  }
  .branding-page .page-head .inner {
    padding-top: 4.6875vw;
  }
  .branding-page .page-head .row1 {
    margin-bottom: 8.8541666667vw;
  }
  .branding-page .page-head .row1-title {
    font-size: 10.8333333333vw;
  }
  .branding-page .page-head .row2-text_right {
    font-size: 3.3333333333vw;
    top: -5.46875vw;
    max-width: 47.8125vw;
  }
  .branding-page .page-head .row2-text_right strong::before {
    top: -0.46875vw;
    bottom: -0.3645833333vw;
    left: -0.625vw;
    right: -0.46875vw;
    border-radius: 0.3125vw;
  }
  .branding-page .page-head .row2-text {
    max-width: 26.8229166667vw;
  }
  .page-head .row2 .service-fb-head-image {
    max-width: 21.6145833333vw;
  }
}
@media all and (max-width: 1699px) and (min-width: 769px) {
  .all-projects-page .page-head .inner {
    max-width: 78.125vw;
  }
  .all-projects-page .page-head .row1-text {
    font-size: 1.0594467334vw;
    line-height: 1.0594467334vw;
    border-radius: 3.8257798705vw;
    padding: 0.412007063vw 1.2948793408vw 0.2354326074vw;
  }
  .all-projects-page .page-head .row2-text {
    font-size: 1.4125956445vw;
    max-width: 50.6180105945vw;
    margin-top: -0.4708652148vw;
    margin-right: 0.6474396704vw;
  }
}
@media all and (max-width: 1600px) and (min-width: 769px) {
  .page-head .row1-title {
    font-size: 10.5vw;
  }
  .page-head .row2-text {
    font-size: 2.25vw;
    line-height: 3.25vw;
    max-width: 50.625vw;
  }
  .page-head .row2-text strong::after {
    top: 0.375vw;
    bottom: 0.5625vw;
    right: -0.25vw;
    left: -0.25vw;
  }
  .page-head .row2-pic img {
    max-height: 8.25vw;
  }
  .service-seo-page .page-head .row1-title {
    font-size: 10.5vw;
  }
  .service-facebook-page .page-head .row1-title {
    font-size: 8.75vw;
  }
  .service-google-page .page-head .row1-title {
    font-size: 11.6875vw;
  }
  .service-google-page .page-head .row2-text {
    line-height: 3.3125vw;
  }
  .service-google-page .page-head .row2-pic img {
    max-height: 8.25vw;
  }
  .service-webdev-page .page-head .row1-title {
    font-size: 11.9375vw;
  }
  .branding-page .page-head .row2-text {
    font-size: 1.375vw;
  }
}
@media all and (max-width: 1440px) and (min-width: 769px) {
  .page-head .inner {
    padding-top: 60px;
    padding-bottom: 90px;
  }
  .page-head .down-bt {
    top: 0;
  }
}
@media all and (max-width: 1280px) and (min-width: 769px) {
  .page-head .down-bt {
    width: 9.375vw;
    height: 9.375vw;
  }
  .service-webdev-page .page-head .down-bt {
    top: 3.28125vw;
    left: 0.9375vw;
  }
  .about-us-page .page-head .down-bt {
    top: -1.71875vw;
    left: 0.625vw;
  }
  .page-head .figure7 {
    width: 1.875vw;
    height: 3.359375vw;
  }
}
.service-facebook-page .service-features .inner {
  max-width: 1650px;
}
.service-features .inner {
  max-width: 1400px;
}
.service-features .feature-item {
  display: flex;
}
@media all and (min-width: 769px) {
  .service-features [data-dir="1"] .feature-info {
    order: 1;
    padding-left: 50px;
    padding-right: 5px;
  }
  .service-features [data-dir="1"] .feature-image {
    order: 2;
    padding-right: 50px;
  }
  .service-features [data-dir="1"] .line.-v {
    right: 0;
  }
  .service-features [data-dir="1"] .line.-dot {
    right: 100%;
    left: auto;
    margin-right: 35px;
  }
  .service-features [data-dir="1"] .line.-dot:before {
    right: 0;
  }
  .service-features [data-dir="2"] .feature-info {
    padding-right: 12.5%;
  }
  .service-features [data-dir="2"] .feature-image {
    padding-left: 50px;
    direction: ltr;
  }
  .service-features [data-dir="2"] .line.-v {
    left: -1px;
  }
  .service-features [data-dir="2"] .line.-dot {
    left: 100%;
    right: auto;
    margin-left: 35px;
  }
  .service-features [data-dir="2"] .line.-dot:before {
    left: 0;
  }
}
.service-features .feature-col {
  position: relative;
  width: 50%;
  padding-bottom: 50px;
}
.service-features .feature-info {
  overflow: hidden;
}
.service-features .feature-title {
  max-width: 78%;
  position: relative;
  display: inline-flex;
  font-size: 48px;
  line-height: 50px;
  margin-bottom: 35px;
  font-weight: 900;
}
.service-facebook-page .service-features .feature-title {
  max-width: 100%;
}
.service-features .feature-subtitle {
  display: inline-flex;
  margin-bottom: 20px;
  font-size: 17px;
  font-weight: 800;
  padding: 6px 15px 4px;
  border-radius: 20px;
  background: linear-gradient(270deg, #FAFF00, #8FFF00, #FAFF00, #8FFF00, #FAFF00);
  animation: gradient 10s ease infinite;
  background-size: 300%;
  color: #000;
}
.service-features .feature-text {
  max-width: 530px;
  font-size: 24px;
  line-height: 35px;
  color: #FCFCFC;
}
.service-features .line {
  position: absolute;
}
.service-features .line.-h {
  height: 1px;
  right: 0;
  left: 0;
  border-bottom: 1px solid #fff;
}
.service-features .line.-v {
  width: 1px;
  top: 0;
  bottom: 0;
  border-left: 1px solid #fff;
}
.service-features .line.-dot {
  width: 100vw;
  top: 25px;
}
.service-features .line.-dot:before {
  content: "";
  display: block;
  position: absolute;
  top: -6px;
  width: 13px;
  height: 13px;
  background: #fff;
  border-radius: 50%;
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@media all and (max-width: 768px) {
  .service-page .service-features .feature-item:nth-child(1n) .feature-col {
    padding: 0;
    min-height: 0;
  }
  .service-features .feature-item {
    position: relative;
    flex-direction: column;
  }
  .service-features .feature-item:not(:last-child) {
    padding-bottom: 60px;
  }
  .service-features .feature-col {
    position: static;
    width: auto;
  }
  .service-features .feature-info {
    order: 1;
    margin-bottom: 30px;
  }
  .service-features .feature-image {
    order: 2;
  }
  .service-features .feature-title-wr {
    display: flex;
    justify-content: center;
  }
  .service-features .feature-title {
    font-size: 30px;
    line-height: 38px;
    margin-bottom: 20px;
  }
  .service-features .feature-subtitle {
    margin-bottom: 10px;
  }
  .service-features .feature-text {
    font-size: 19px;
    line-height: 26px;
    padding-left: 3%;
  }
  .service-features .line.-dot {
    top: 20px;
    right: 100%;
    margin-right: 10px;
  }
  .service-features .line.-v {
    left: 0;
  }
}

@media all and (max-width: 1440px) and (min-width: 769px) {
  .service-features .feature-title {
    font-size: 3.3333333333vw;
  }
}
@media all and (max-width: 1280px) and (min-width: 769px) {
  .service-features .feature-subtitle {
    font-size: 1.328125vw;
  }
  .service-features .feature-text {
    font-size: 22px;
    line-height: 30px;
  }
}
.service-features {
    padding: 150px 0 188px;
  }
  .service-features .section-title {
    font-size: 51px;
    font-weight: 800;
    text-align: center;
  }
  .service-seo-page .service-features .section-title {
    line-height: 104.5%;
  }
  .service-features .group-info {
    position: relative;
    overflow: hidden;
    padding: 0 50px 80px;
    text-align: center;
  }
  .service-seo-page .service-features .group-info {
    padding: 0 50px 89px;
  }
  .service-features .group-info .line.-h {
    left: auto;
    right: auto;
  }
  .service-features .group-info .line.-l1, .service-features .group-info .line.-l2 {
    top: 80px;
  }
  .service-features .group-info .line.-l1 {
    width: 50vw;
  }
  .service-features .group-info .line.-l3 {
    width: 50%;
    bottom: 0;
  }
  .service-features [data-ln-dir="1"] .line.-l1 {
    right: 100%;
    margin-right: 25px;
  }
  .service-features [data-ln-dir="1"] .line.-l2, .service-features [data-ln-dir="1"] .line.-l3 {
    left: 0;
  }
  .service-features [data-ln-dir="2"] .line.-l1 {
    left: 100%;
    margin-left: 25px;
  }
  .service-features [data-ln-dir="2"] .line.-l2, .service-features [data-ln-dir="2"] .line.-l3 {
    right: 0;
  }
  .service-features .group-title-wr {
    position: relative;
    display: inline-flex;
  }
  .service-features .group-title {
    font-size: 143px;
    font-weight: 800;
    margin-bottom: 35px;
    margin-top: 15px;
  }
  .service-features .group-title strong {
    position: relative;
    display: inline-flex;
    color: #000;
  }
  .service-features .group-title strong::before {
    content: "";
    position: absolute;
    display: block;
    top: -12px;
    bottom: -13px;
    right: -15px;
    left: -26px;
    border-radius: 10px;
    background: linear-gradient(98.51deg, #EBFF01, #8FFF01, #EBFF01, #8FFF01, #EBFF01);
    animation: gradient 10s ease infinite;
    -webkit-animation: gradient 10s ease infinite;
    background-size: 300%;
    z-index: -1;
    transform: rotate(0.5deg);
    -webkit-transform: rotate(0.5deg);
  }
  .service-seo-page .service-features .group-title {
    margin-top: 17px;
  }
  .service-features .group-text {
    font-size: 24px;
    max-width: 870px;
    margin: 0 auto;
    line-height: 35px;
  }
  .service-features .feature-item:first-child .feature-image {
    padding-top: 7.1428571429%;
  }
  
  .features-group1,
  .features-group2,
  .features-group3 {
    position: relative;
  }
  .features-group1 .inner,
  .features-group2 .inner,
  .features-group3 .inner {
    position: relative;
    z-index: 1;
  }
  
  .features-group1 {
    margin-bottom: 310px;
  }
  
  .features-group2 {
    margin-bottom: 310px;
  }
  
  .features-group1 .feature-item:nth-child(1) .feature-col {
    min-height: 580px;
  }
  .features-group1 .feature-item:nth-child(1) .feature-info {
    padding-top: 15%;
  }
  .features-group1 .feature-item:nth-child(1) .image-layers {
    width: 110%;
  }
  .service-seo-page .features-group1 .feature-item:nth-child(1) .image-layers {
    width: 108%;
  }
  .features-group1 .feature-item:nth-child(2) .feature-col {
    min-height: 520px;
  }
  .features-group1 .feature-item:nth-child(2) .feature-info {
    padding-top: 8.5714285714%;
  }
  .service-seo-page .features-group1 .feature-item:nth-child(2) .feature-info {
    padding-top: 9.2%;
  }
  .service-seo-page .features-group1 .feature-item:nth-child(2) .feature-info .line.-dot {
    top: 17px !important;
  }
  .features-group1 .feature-item:nth-child(2) .feature-info .feature-title {
    max-width: 70%;
  }
  .features-group1 .feature-item:nth-child(2) .feature-info .feature-title .line.-dot {
    margin-right: -52px;
  }
  .features-group1 .feature-item:nth-child(3) .feature-image {
    padding-right: 40px;
    padding-left: 18px;
    padding-top: 7px;
  }
  .features-group1 .feature-item:nth-child(3) .feature-info {
    padding-top: 144px;
  }
  .service-seo-page .features-group1 .feature-item:nth-child(3) .feature-info {
    padding-top: 157px;
  }
  .service-seo-page .features-group1 .feature-item:nth-child(3) .feature-info .line.-dot {
    margin-right: 65px !important;
    top: 18px;
  }
  .features-group1 .feature-item:nth-child(3) .line.-v {
    height: 170px;
  }
  .service-seo-page .features-group1 .feature-item:nth-child(3) .line.-v {
    height: 175px;
  }
  @media all and (min-width: 769px) {
    .features-group1 .shine-eff {
      width: 661px;
      top: 200px;
      right: 50%;
      transform: rotate(15deg);
      margin-right: -370px;
    }
    .features-group1 .shine-eff.-an-rotate {
      animation: shine-rotate-small 30s infinite linear;
    }
    .features-group1 .shine-eff:before, .features-group1 .shine-eff:after {
      width: 500px;
      height: 500px;
    }
  }
  
  .features-group2 .inner {
    max-width: 1425px;
  }
  .features-group2 .group-info {
    padding: 0 50px 75px !important;
  }
  .features-group2 .group-info .group-title {
    margin-bottom: 54px;
  }
  .features-group2 .group-info .line.-l1 {
    top: 90px;
  }
  .features-group2 .group-info .line.-l2 {
    top: 90px;
  }
  .features-group2 .feature-item:nth-child(1) .feature-col {
    min-height: 550px;
  }
  .features-group2 .feature-item:nth-child(1) .feature-col.feature-image {
    padding-top: 6.7%;
  }
  .features-group2 .feature-item:nth-child(1) .feature-col.feature-image .image-layers {
    width: 102%;
  }
  .features-group2 .feature-item:nth-child(1) .feature-info {
    padding-top: 15.9%;
    padding-right: 12.1%;
  }
  .features-group2 .feature-item:nth-child(1) .feature-info .line.-dot {
    margin-left: 20px;
  }
  .features-group2 .feature-item:nth-child(2) .feature-col {
    min-height: 600px;
    padding-top: 7px;
  }
  .features-group2 .feature-item:nth-child(2) .feature-info {
    padding-top: 11.35%;
    padding-right: 12.1%;
  }
  .features-group2 .feature-item:nth-child(2) .feature-info .line.-dot {
    margin-left: 20px;
  }
  .features-group2 .feature-item:nth-child(2) .image-layers {
    width: 110%;
  }
  .features-group2 .feature-item:nth-child(3) .feature-image {
    padding-top: 36px;
  }
  .features-group2 .feature-item:nth-child(3) .feature-info {
    padding-top: 111px;
    padding-right: 12.1%;
  }
  .features-group2 .feature-item:nth-child(3) .feature-info .line.-dot {
    margin-left: 20px;
  }
  .features-group2 .feature-item:nth-child(3) .image-layers {
    max-width: 570px;
  }
  .features-group2 .feature-item:nth-child(3) .line.-v {
    height: 136px;
  }
  @media all and (min-width: 769px) {
    .features-group2 .shine-eff.-p1, .features-group2 .shine-eff.-p2 {
      transform: rotate(50deg);
    }
    .features-group2 .shine-eff.-p1 {
      top: -30px;
      left: 50%;
      margin-left: 40px;
    }
    .features-group2 .shine-eff.-p2 {
      width: 1350px;
      bottom: 0;
      right: 50%;
      margin-right: 100px;
    }
    .features-group2 .shine-eff.-p2:before, .features-group2 .shine-eff.-p2:after {
      width: 950px;
      height: 950px;
    }
  }
  
  .features-group3 .group-info {
    padding: 0 50px 58px !important;
  }
  .features-group3 .group-title {
    margin-bottom: 54px;
  }
  .features-group3 .feature-item:nth-child(1) .feature-col {
    min-height: 610px;
  }
  .features-group3 .feature-item:nth-child(1) .feature-image {
    padding-right: 6%;
  }
  .features-group3 .feature-item:nth-child(1) .feature-info {
    padding-top: 9.1%;
  }
  .features-group3 .feature-item:nth-child(2) .feature-col {
    min-height: 440px;
  }
  .features-group3 .feature-item:nth-child(2) .feature-col.feature-info {
    padding-top: 3px;
  }
  .features-group3 .feature-item:nth-child(2) .feature-col.feature-info .feature-title {
    max-width: 70%;
  }
  .features-group3 .feature-item:nth-child(2) .feature-col.feature-info .feature-title .line.-dot {
    top: 43px;
    margin-right: -85px;
  }
  .features-group3 .feature-item:nth-child(2) .feature-image {
    padding-right: 11%;
    padding-top: 13px;
  }
  .features-group3 .feature-item:nth-child(3) .feature-image {
    padding-top: 15px;
    padding-right: 65px;
  }
  .features-group3 .feature-item:nth-child(3) .feature-info {
    padding-top: 113px;
  }
  .features-group3 .feature-item:nth-child(3) .feature-info .feature-title {
    max-width: 100%;
  }
  .features-group3 .feature-item:nth-child(3) .feature-info .feature-title .line.-dot {
    top: 54px;
  }
  .features-group3 .feature-item:nth-child(3) .image-layers {
    max-width: 500px;
  }
  .features-group3 .feature-item:nth-child(3) .line.-v {
    height: 168px;
  }
  @media all and (min-width: 769px) {
    .features-group3 .shine-eff {
      width: 980px;
      bottom: 600px;
      right: 50%;
      margin-right: 260px;
      transform: rotate(15deg);
    }
  }
  
  .statistics {
    position: relative;
    z-index: 1;
    padding-top: 157px;
    margin-bottom: 212px;
  }
  .statistics .inner {
    max-width: 1350px;
  }
  .statistics .top-title {
    font-size: 76px;
    font-weight: 800;
    margin-bottom: 212px;
    max-width: 890px;
    position: relative;
    line-height: 105%;
  }
  .statistics .top-title .-bc-gr-green:before {
    top: -8px;
    bottom: 11px;
    right: -24px;
    left: -9px;
    border-radius: 5px;
    background: linear-gradient(261.61deg, #FCFF67, #05E500, #FCFF67, #05E500, #FCFF67);
    animation: gradient 10s ease infinite;
    background-size: 300%;
  }
  .statistics .top-title:after {
    content: "";
    background-image: url("https://qa.wemake.co.il/mod/service-seo/img/service-seo-arrow-1.svg");
    background-repeat: no-repeat;
    position: absolute;
    display: block;
    width: 675px;
    height: 410px;
    left: -410px;
    bottom: -190px;
  }
  .statistics .row {
    display: flex;
    justify-content: space-between;
    max-width: 960px;
  }
  .statistics .service-seo-arrow-1 {
    display: none;
  }
  .statistics .col-info {
    flex-grow: 1;
    max-width: 480px;
    margin-left: 50px;
    padding-top: 50px;
    padding-right: 15px;
  }
  .statistics .col-phone {
    position: relative;
    max-width: 340px;
    min-width: 340px;
    height: 700px;
    padding: 17px 14px;
  }
  .statistics .phone-fr,
  .statistics .phone-content {
    position: absolute;
    width: 100%;
    height: 100%;
  }
  .statistics .phone-fr {
    top: 0;
    right: 0;
    background: url(https://qa.wemake.co.il/mod/service-seo/img/phone-fr.webp) center no-repeat;
    background-size: contain;
  }
  .statistics .phone-content {
    position: relative;
    border-radius: 50px;
    overflow: hidden;
    background-image: url(https://qa.wemake.co.il/mod/service-seo/img/phone-content.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    background-color: #fff;
  }
  .statistics .info-block {
    display: flex;
  }
  .statistics .info-arrow {
    width: 20px;
    border: solid 10px transparent;
    border-bottom: solid 15px #fff;
  }
  .statistics .info-head {
    display: flex;
    align-items: flex-end;
    max-width: 410px;
    padding-bottom: 25px;
    margin-bottom: 30px;
    border-bottom: 1px solid #fff;
  }
  .statistics .info-head .info-arrow {
    margin-bottom: 20px;
  }
  .statistics .info-head .info-arrow {
    margin-left: 33px;
  }
  .statistics .info-title1 {
    margin-left: 30px;
  }
  .statistics .info-title1,
  .statistics .info-title2 {
    font-weight: 800;
  }
  .statistics .info-title1 {
    font-size: 65px;
    line-height: 42px;
  }
  .statistics .info-title2 {
    font-size: 16px;
    line-height: 16px;
    margin-bottom: 4px;
  }
  .statistics .info-text {
    font-size: 20px;
    line-height: 25px;
    margin-bottom: 35px;
  }
  .statistics .info-features {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .statistics .info-features .info-arrow {
    margin-bottom: 18px;
  }
  .statistics .info-feature:nth-child(1), .statistics .info-feature:nth-child(2) {
    margin-bottom: 77px;
  }
  .statistics .info-feature:nth-child(2n-1) {
    margin-left: 40px;
  }
  .statistics .info-feature-title {
    margin-bottom: 15px;
    font-size: 40px;
    font-weight: 800;
  }
  .statistics .shine-eff {
    bottom: 260px;
    right: 50%;
    margin: 0 -80px 0 0;
    width: 1480px;
    transform: rotate(45deg);
  }
  .statistics .shine-eff:before, .statistics .shine-eff:after {
    width: 1000px;
    height: 1000px;
  }
  
  .performance {
    position: relative;
    z-index: 1;
    margin-bottom: 190px;
  }
  .performance .inner {
    max-width: 1350px;
  }
  .performance .top-wr {
    max-width: 1230px;
  }
  .performance .picture-wr {
    max-width: 1224px;
    position: relative;
  }
  .performance .picture-wr:after {
    content: "";
    background-image: url("https://qa.wemake.co.il/mod/service-seo/img/service-seo-arrow-2.svg");
    background-repeat: no-repeat;
    background-position: top right;
    position: absolute;
    display: block;
    width: 675px;
    height: 410px;
    right: -8px;
    top: 22px;
    z-index: 1;
  }
  .performance .picture-wr.mobile- {
    display: none;
  }
  .performance .picture-wr.desktop- {
    display: flex;
  }
  .performance .top-wr {
    padding-bottom: 80px;
    margin-bottom: 60px;
    border-bottom: 1px solid #fff;
  }
  .performance .top-title {
    font-weight: 800;
    font-size: 80px;
    margin-bottom: 39px;
  }
  .performance .top-text {
    font-size: 20px;
    max-width: 440px;
    line-height: 126%;
  }
  .performance .picture-wr {
    display: flex;
    justify-content: flex-end;
  }
  .performance .picture {
    border-radius: 15px;
    overflow: hidden;
    max-width: 860px;
    z-index: 2;
  }
  
  .business-transform {
    margin: 0 auto;
    padding: 240px 0 237px;
    background: #116FFF;
    color: #fff;
    border-top-right-radius: 75px;
    border-top-left-radius: 75px;
    text-align: center;
  }
  .business-transform .title-wr {
    position: relative;
    max-width: 962px;
    margin: 0 auto 42px;
    padding: 0 60px 0 150px;
  }
  .business-transform .title {
    margin: 0 20px;
    font-weight: 800;
    font-size: 96px;
    line-height: 95px;
  }
  .business-transform .figure1 {
    position: absolute;
  }
  .business-transform .figure1.-first {
    top: 15px;
    right: 0;
    width: 60px;
    height: 60px;
    transform: rotate(180deg);
  }
  .business-transform .figure1.-last {
    bottom: 15px;
    left: 0;
    width: 150px;
    height: 150px;
  }
  .business-transform .st-button {
    height: 55px;
    padding: 10px 3px 10px 65px;
    margin-left: 90px;
    color: #fff;
  }
  .business-transform .st-button::before {
    top: 3px;
    bottom: 3px;
    right: 3px;
    left: 3px;
    background: #fff;
  }
  .business-transform .st-button.-hover1:hover.-brd {
    border: 1px solid #fff;
  }
  .business-transform .st-button .figure6 {
    margin-left: 32px;
  }
  .business-transform .st-button .wmef-parent {
    margin-top: 2px;
  }
  
  @keyframes gradient {
    0% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 100% 50%;
    }
    100% {
      background-position: 0% 50%;
    }
  }
  @media all and (max-width: 768px) {
    .service-seo-page .service-features {
      padding: 46px 0 96px;
    }
    .service-seo-page .service-features .inner {
      padding: 0 11px;
    }
    .service-seo-page .service-features .feature-image {
      text-align: center;
    }
    .service-seo-page .service-features .feature-text {
      max-width: 365px;
      margin: 0 auto;
      text-align: center;
    }
    .service-seo-page .service-features .section-title {
      font-size: 24px;
      margin-bottom: 5px;
    }
    .service-seo-page .service-features .group-title {
      font-size: 40px;
      margin-bottom: 19px;
    }
    .service-seo-page .service-features .group-title strong {
      color: #000;
      position: relative;
    }
    .service-seo-page .service-features .group-title strong::before {
      content: "";
      display: block;
      position: absolute;
      background: linear-gradient(98.51deg, #8FFF01 1.54%, #EBFF01 100%);
      background: linear-gradient(98.51deg, #8FFF01, #EBFF01, #8FFF01, #EBFF01, #8FFF01);
      animation: gradient 10s ease infinite;
      background-size: 300%;
      border-radius: 6px;
      left: -5px;
      top: -4px;
      bottom: -3px;
      right: -7px;
      z-index: -1;
    }
    .service-seo-page .service-features .group-info {
      padding: 0;
      margin-bottom: 30px;
    }
    .service-seo-page .service-features .group-info .line {
      display: none;
    }
    .service-seo-page .service-features .group-text {
      font-size: 18px;
      line-height: 25px;
      max-width: 373px;
    }
    .service-seo-page .service-features .feature-item:first-child .line.-v {
      top: 21px;
    }
    .service-seo-page .service-features .feature-title {
      font-size: 8.4705882353vw;
      line-height: 105%;
    }
    .service-seo-page .service-features .line.-dot:before {
      width: 10px;
      height: 10px;
    }
    .service-seo-page .service-features .features-group2 .group-title strong::before {
      left: -10px;
      top: -8px;
      bottom: -1px;
      right: -7px;
    }
    .service-seo-page .service-features .features-group2 .group-info {
      margin-bottom: 56px;
    }
    .service-seo-page .service-features .features-group3 .group-info {
      padding: 0 !important;
      margin-bottom: 59px;
    }
    .service-seo-page .service-features .features-group3 .group-title {
      font-size: 46px;
      margin-bottom: 35px;
    }
    .service-seo-page .service-features .features-group3 .group-title strong::before {
      left: -5px;
      top: -8px;
      bottom: -7px;
      right: -7px;
    }
    .service-seo-page .service-features .features-group3 .feature-title {
      font-size: 30px;
    }
    .service-seo-page .service-features .features-group3 .feature-item:first-child .line.-v {
      top: 15px;
    }
    .features-group1 {
      margin-bottom: 138px;
    }
    .features-group1 .feature-item .image-layers {
      margin-left: auto;
      margin-right: auto;
    }
    .features-group1 .feature-item:nth-child(1) {
      padding-bottom: 25px;
    }
    .features-group1 .feature-item:nth-child(1) .feature-text {
      margin: 0 auto 30px;
    }
    .features-group1 .feature-item:nth-child(1) .image-layers {
      max-width: 396px;
    }
    .features-group1 .feature-item:nth-child(1) .line.-dot {
      margin-right: 30px;
    }
    .features-group1 .feature-item:nth-child(1) .line.-dot:before {
      top: -5px;
    }
    .features-group1 .feature-item:nth-child(2) {
      padding-bottom: 56px;
    }
    .features-group1 .feature-item:nth-child(2) .image-layers {
      max-width: 359px;
    }
    .features-group1 .feature-item:nth-child(2) .feature-info .feature-title .line.-dot {
      margin-right: 10px;
    }
    .features-group1 .feature-item:nth-child(3) .feature-info {
      padding-top: 0;
      margin-bottom: 20px;
    }
    .features-group1 .feature-item:nth-child(3) .image-layers {
      max-width: 363px;
    }
    .features-group1 .feature-item:nth-child(3) .feature-title {
      margin-bottom: 5px;
    }
    .features-group1 .feature-item:nth-child(3) .line.-v {
      height: 20px;
    }
    .features-group1 .shine-eff {
      top: 260px;
      right: -240px;
    }
    .features-group1 .shine-eff.-an-rotate {
      animation: shine-rotate-small 30s infinite linear;
    }
    .features-group1 .shine-eff.-p3 {
      right: 50%;
      top: 1000px;
      width: 350px;
      transform: rotate(45deg);
    }
    .features-group1 .shine-eff.-p3::before, .features-group1 .shine-eff.-p3::after {
      width: 200px;
      height: 200px;
    }
    .features-group1 .shine-eff.-p4 {
      top: 1450px;
      right: -200px;
      width: 350px;
      transform: rotate(45deg);
    }
    .features-group1 .shine-eff.-p4::before, .features-group1 .shine-eff.-p4::after {
      width: 200px;
      height: 200px;
    }
    .features-group2 {
      margin-bottom: 127px;
    }
    .features-group2 .features {
      padding-right: 10px;
    }
    .features-group2 .group-info {
      padding: 0 !important;
      margin-bottom: 56px;
    }
    .features-group2 .group-title {
      margin-top: 25px;
    }
    .features-group2 .group-title strong::before {
      left: -10px;
      top: -8px;
      bottom: -1px;
      right: -7px;
    }
    .features-group2 .feature-item:nth-child(1) {
      padding-bottom: 74px;
    }
    .features-group2 .feature-item:nth-child(1) .feature-col.feature-image {
      padding-top: 0;
    }
    .features-group2 .feature-item:nth-child(1) .feature-info {
      margin-bottom: 22px;
    }
    .features-group2 .feature-item:nth-child(1) .image-layers {
      max-width: 346px;
      margin-left: auto;
      margin-right: auto;
    }
    .features-group2 .shine-eff {
      left: -50%;
      bottom: -100px;
      transform: rotate(45deg);
    }
    .features-group2 .shine-eff.-p1 {
      top: 450px;
      left: -45%;
      width: 350px;
    }
    .features-group2 .shine-eff.-p1::before, .features-group2 .shine-eff.-p1::after {
      width: 200px;
      height: 200px;
    }
    .features-group2 .shine-eff.-p2 {
      top: 1000px;
      left: -45%;
      width: 350px;
    }
    .features-group2 .shine-eff.-p2::before, .features-group2 .shine-eff.-p2::after {
      width: 200px;
      height: 200px;
    }
    .features-group2 .feature-item:nth-child(2) {
      padding-bottom: 74px;
    }
    .features-group2 .feature-item:nth-child(2) .feature-info {
      margin-bottom: 20px;
    }
    .features-group2 .feature-item:nth-child(2) .feature-title {
      margin-bottom: 20px;
    }
    .features-group2 .feature-item:nth-child(2) .image-layers {
      max-width: 355px;
      margin-left: auto;
      margin-right: auto;
    }
    .features-group2 .feature-item:nth-child(3) .line.-dot {
      top: 17px;
      margin-right: 60px;
    }
    .features-group2 .feature-item:nth-child(3) .image-layers {
      position: relative;
      max-width: 445px;
      right: -5%;
      margin-top: 5px;
    }
    .features-group2 .feature-item:nth-child(3) .image-layers img {
      min-height: 376px;
      min-width: 412px;
      width: 100%;
    }
    .features-group2 .feature-item:nth-child(3) .feature-title {
      margin-bottom: 10px;
    }
    .features-group2 .feature-item:nth-child(3) .feature-info {
      margin-bottom: 0;
    }
    .features-group2 .feature-item:nth-child(3) .line.-v {
      height: 18px;
    }
    .features-group3 .feature-item:nth-child(3) .line.-v {
      height: 16px;
    }
    .features-group3 .feature-item .image-layers {
      margin-left: auto;
      margin-right: auto;
    }
    .features-group3 .feature-item .line.-dot:before {
      width: 13px;
      height: 13px;
    }
    .features-group3 .feature-item:nth-child(1) {
      padding-bottom: 90px;
    }
    .features-group3 .feature-item:nth-child(1) .feature-title {
      margin-bottom: 30px;
    }
    .features-group3 .feature-item:nth-child(1) .image-layers {
      max-width: 361px;
    }
    .features-group3 .feature-item:nth-child(1) .line.-dot {
      top: 15px;
      margin-right: 35px;
    }
    .features-group3 .feature-item:nth-child(1) .line.-dot:before {
      width: 13px;
      height: 13px;
    }
    .features-group3 .feature-item:nth-child(2) {
      padding-bottom: 105px;
    }
    .features-group3 .feature-item:nth-child(2) .image-layers {
      max-width: 355px;
    }
    .features-group3 .feature-item:nth-child(2) .feature-col.feature-info {
      margin-bottom: 14px;
    }
    .features-group3 .feature-item:nth-child(2) .feature-col.feature-info .feature-title {
      text-align: center;
      margin-bottom: 35px;
    }
    .features-group3 .feature-item:nth-child(2) .feature-col.feature-info .feature-title .line.-dot {
      top: 17px;
      margin-right: -25px;
    }
    .features-group3 .feature-item:nth-child(3) .feature-info .feature-title {
      max-width: 288px;
      text-align: center;
      margin-bottom: 10px;
    }
    .features-group3 .feature-item:nth-child(3) .feature-info .feature-title .line.-dot {
      top: 15px;
      margin-right: -25px;
    }
    .features-group3 .feature-item:nth-child(3) .image-layers {
      max-width: 300px;
      margin-top: -15px;
    }
    .features-group3 .shine-eff {
      left: -50%;
      bottom: 120px;
      transform: rotate(45deg);
    }
    .features-group3 .shine-eff.-p5 {
      top: 0;
      left: -40%;
      width: 350px;
    }
    .features-group3 .shine-eff.-p5::before, .features-group3 .shine-eff.-p5::after {
      width: 200px;
      height: 200px;
    }
    .features-group3 .shine-eff.-p6 {
      top: 850px;
      left: 55%;
      width: 350px;
    }
    .features-group3 .shine-eff.-p6::before, .features-group3 .shine-eff.-p6::after {
      width: 200px;
      height: 200px;
    }
    .statistics {
      padding-top: 70px;
      margin-bottom: 100px;
    }
    .statistics .inner {
      padding-right: 0;
      padding-left: 0;
    }
    .statistics .top-title {
      font-size: 36px;
      margin-bottom: 127px;
      padding: 0 5%;
    }
    .statistics .top-title:after {
      content: url("https://qa.wemake.co.il/mod/service-seo/img/service-seo-arrow-1-mobile.svg");
      background-image: none;
      width: 447px;
      height: 271px;
      right: 0;
      top: 100%;
    }
    .statistics .top-title .-bc-gr-green:before {
      top: 0;
      bottom: 4px;
      right: -4px;
      left: -5px;
    }
    .statistics .row {
      flex-direction: column;
    }
    .statistics .col-phone {
      order: 1;
      max-width: 100%;
      height: 400px;
      margin: 0 7.5294117647vw;
      padding-bottom: 0;
    }
    .statistics .col-phone:after {
      content: "";
      display: block;
      position: absolute;
      bottom: 0;
      right: -5%;
      left: -5%;
      height: 1px;
      background: #fff;
    }
    .statistics .col-info {
      padding: 61px 4% 0;
    }
    .statistics .phone-fr {
      background-size: cover;
      background-position: top center;
      max-width: 361px;
      left: 50%;
      right: auto;
      transform: translateX(-50%);
    }
    .statistics .phone-content {
      border-bottom-right-radius: 0;
      border-bottom-left-radius: 0;
      max-width: 341px;
      margin: 0 auto;
    }
    .statistics .col-info {
      order: 2;
      max-width: none;
      margin: 0;
    }
    .statistics .info-head {
      padding-bottom: 34px;
      margin-bottom: 35px;
    }
    .statistics .info-features {
      padding: 0;
      max-width: 356px;
    }
    .statistics .info-feature {
      max-width: 46%;
    }
    .statistics .info-feature:nth-child(2n-1) {
      margin-left: 5%;
    }
    .statistics .info-feature:nth-child(1), .statistics .info-feature:nth-child(2) {
      margin-bottom: 30px;
    }
    .statistics .info-feature .info-arrow {
      border-bottom-color: #8FFF00;
    }
    .statistics .info-feature-title {
      font-size: 36px;
      margin-bottom: 7px;
    }
    .statistics .info-text {
      margin-bottom: 45px;
      max-width: 385px;
      font-size: 16px;
    }
    .statistics .shine-eff {
      top: 450px;
      right: 0%;
      width: 600px;
    }
    .statistics .shine-eff::before, .statistics .shine-eff::after {
      width: 350px;
      height: 350px;
    }
    .performance {
      margin-bottom: 50px;
    }
    .performance .inner {
      padding: 0 4%;
    }
    .performance .top-wr {
      padding: 0;
      margin-bottom: 15px;
      border: none;
      text-align: center;
    }
    .performance .top-title {
      font-size: 36px;
      margin-bottom: 20px;
    }
    .performance .top-text {
      line-height: 146%;
      max-width: 373px;
      margin: 0 auto;
      font-size: 16px;
    }
    .performance .picture-wr.desktop- {
      display: none;
    }
    .performance .picture-wr.mobile- {
      display: block;
    }
    .performance .picture-wr:after {
      display: none;
    }
    .performance .shine-eff {
      width: 320px;
      opacity: 1;
      left: -30%;
      top: 120px;
      transform: rotate(90deg);
    }
    .performance .shine-eff::before, .performance .shine-eff::after {
      width: 170px;
      height: 170px;
    }
    .service-seo-page .business-growth .talk-button-wrap {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      max-width: 320px;
      margin: 32px auto 0;
    }
    .service-seo-page .business-growth .business-growth-bottom-line {
      display: block;
      position: absolute;
      bottom: 22px;
      left: 36.9411764706vw;
      right: 0;
      height: 96px;
      background-image: url(https://qa.wemake.co.il/mod/service-seo/img/business-growth-bottom-line.svg);
      background-position: right bottom;
      background-repeat: no-repeat;
      background-size: contain;
    }
    .service-seo-page .business-growth .talk-button {
      width: 108px;
      height: 108px;
      font-size: 15px;
      line-height: 16px;
      padding: 39px 16px;
    }
    .service-seo-page .features-group1 .feature-item:nth-child(3) .feature-info {
      padding-top: 0;
    }
    .service-seo-page .features-group1 .feature-item:nth-child(3) .feature-info .line.-dot {
      margin-right: 40px !important;
      top: 13px;
    }
    .service-seo-page .features-group1 .feature-item:nth-child(3) .feature-info .line.-dot:before {
      top: -5px;
    }
    .service-seo-page .features-group1 .feature-item:nth-child(3) .line.-v {
      height: 14px;
    }
  }
  @media all and (max-width: 425px) {
    .statistics .top-title {
      font-size: 8.4705882353vw;
    }
    .statistics .info-head .info-arrow {
      margin-left: 7.7647058824vw;
      width: 4.7058823529vw;
    }
    .statistics .info-title1 {
      font-size: 15.2941176471vw;
      line-height: 9.8823529412vw;
      margin-left: 7.0588235294vw;
    }
    .statistics .info-title2 {
      font-size: 3.7647058824vw;
      line-height: 3.7647058824vw;
    }
    .statistics .info-feature-title {
      font-size: 8.4705882353vw;
    }
    .statistics .col-phone {
      min-width: 300px;
      margin: 0 auto;
      padding: 10px 0 0;
    }
    .performance .top-title {
      font-size: 8.4705882353vw;
    }
    .service-seo-page .business-growth .talk-button-wrap {
      max-width: 72.94vw;
    }
    .image-layers {
      width: 100% !important;
      margin: 0;
      padding-left: 10px;
    }
    .features-group2 .feature-item:nth-child(3) .image-layers img {
      min-height: auto;
      min-width: auto;
      width: 100%;
    }
    .service-seo-page .service-features .features-group3 .group-title strong::before {
      bottom: 2px;
    }
    .service-seo-page .service-features .group-title strong::before {
      bottom: -1px;
    }
    .service-seo-page .service-features .group-title {
      font-size: 9.4117647059vw;
    }
    .service-seo-page .service-features .features-group3 .group-title {
      font-size: 10.8235294118vw;
    }
  }
  
  @media all and (max-width: 2560px) and (min-width: 1921px) {
    .statistics .top-title:after {
      width: 26.3671875vw;
      height: 19.53125vw;
      left: -15.8203125vw;
      bottom: -10.78125vw;
    }
  }
  @media all and (max-width: 1920px) and (min-width: 769px) {
    .service-features .group-title {
      font-size: 7.4479166667vw;
    }
    .service-features .group-info .line.-l1, .service-features .group-info .line.-l2 {
      top: 4.1666666667vw;
    }
    .statistics .top-title:after {
      width: 35.15625vw;
      height: 26.0416666667vw;
      left: -21.09375vw;
      bottom: -14.375vw;
    }
    .performance .picture-wr:after {
      background-size: 35.15625vw 21.3541666667vw;
      width: 35.15625vw;
      height: 21.3541666667vw;
      right: -0.4166666667vw;
      top: 22px;
    }
  }
  @media all and (max-width: 1650px) and (min-width: 769px) {
    .features-group1, .features-group2 {
      margin-bottom: 150px;
    }
    .statistics {
      margin-bottom: 120px;
    }
    .statistics .top-title {
      font-size: 4.6060606061vw;
      max-width: 53.9393939394vw;
    }
    .statistics .top-title:after {
      background-size: 40.9090909091vw 24.8484848485vw;
    }
    .statistics .top-title .-bc-gr-green:before {
      top: -0.4848484848vw;
      bottom: 0.6666666667vw;
      right: -1.4545454545vw;
      left: -0.5454545455vw;
      border-radius: 0.303030303vw;
    }
    .performance {
      margin-bottom: 120px;
    }
    .performance .top-title {
      font-size: 4.8484848485vw;
    }
    .business-transform {
      padding: 160px 0 150px;
    }
  }
  @media all and (max-width: 1440px) and (min-width: 769px) {
    .service-features {
      padding: 100px 0;
    }
    .service-features .section-title {
      font-size: 3.5416666667vw;
    }
    .features-group1,
    .features-group2 {
      margin-bottom: 80px;
    }
    .features-group1 .feature-item:nth-child(1) .feature-col {
      min-height: 40.2777777778vw;
    }
    .features-group1 .feature-item:nth-child(2) .feature-col {
      min-height: 36.1111111111vw;
    }
    .features-group2 .feature-item:nth-child(1) .feature-col {
      min-height: 38.1944444444vw;
    }
    .features-group2 .feature-item:nth-child(2) .feature-col {
      min-height: 41.6666666667vw;
    }
    .features-group3 .feature-item:nth-child(1) .feature-col {
      min-height: 42.3611111111vw;
    }
    .features-group3 .feature-item:nth-child(2) .feature-col {
      min-height: 30.5555555556vw;
    }
    .statistics {
      padding-top: 100px;
    }
    .statistics .info-title1 {
      font-size: 4.5138888889vw;
      line-height: 2.9166666667vw;
    }
    .statistics .info-head .info-arrow {
      margin-bottom: 1.3888888889vw;
    }
    .statistics .info-feature-title {
      font-size: 2.7777777778vw;
    }
    .statistics .info-arrow {
      width: 1.3888888889vw;
      border-width: 0.6944444444vw;
      border-bottom-width: 1.0416666667vw;
    }
    .business-transform .title-wr {
      max-width: 68.0555555556vw;
      padding: 0 4.1666666667vw 0 10.4166666667vw;
    }
    .business-transform .title {
      font-size: 6.6666666667vw;
      line-height: 6.5972222222vw;
    }
    .business-transform .figure1.-first {
      width: 4.1666666667vw;
      height: 4.1666666667vw;
    }
    .business-transform .figure1.-last {
      width: 10.4166666667vw;
      height: 10.4166666667vw;
    }
    .features-group1 .feature-item:nth-child(2) .feature-info .feature-title {
      line-height: 100%;
    }
    .features-group1 .feature-item:nth-child(2) .feature-info .feature-title .line.-dot {
      margin-right: -1.0416666667vw;
    }
    .features-group3 .feature-item:nth-child(2) .feature-col.feature-info .feature-title {
      line-height: 100%;
    }
    .features-group3 .feature-item:nth-child(2) .feature-col.feature-info .feature-title .line.-dot {
      margin-right: -1.0416666667vw;
    }
  }
  @media all and (max-width: 1280px) and (min-width: 769px) {
    .service-features .group-text {
      font-size: 22px;
      line-height: 30px;
    }
    .business-transform {
      padding: 120px 0 90px;
    }
    .statistics .top-title:after {
      left: -247px;
      bottom: -180px;
    }
    .features-group1 .shine-eff {
      width: 500px;
      margin-right: -250px;
    }
    .features-group1 .shine-eff::after, .features-group1 .shine-eff::before {
      width: 320px;
      height: 320px;
    }
    .features-group2 .shine-eff.-p1 {
      width: 800px;
    }
    .features-group2 .shine-eff.-p1::after, .features-group2 .shine-eff.-p1::before {
      width: 550px;
      height: 550px;
    }
    .features-group2 .shine-eff.-p2 {
      width: 1000px;
    }
    .features-group2 .shine-eff.-p2::after, .features-group2 .shine-eff.-p2::before {
      width: 670px;
      height: 670px;
    }
    .features-group3 .shine-eff {
      width: 750px;
      margin-right: 130px;
    }
    .features-group3 .shine-eff::after, .features-group3 .shine-eff::before {
      width: 550px;
      height: 550px;
    }
    .statistics .shine-eff {
      width: 1100px;
    }
    .statistics .shine-eff::after, .statistics .shine-eff::before {
      width: 820px;
      height: 820px;
    }
  }
.home-page .our-clients {
  padding: 125px 0 185px;
  position: relative;
  z-index: 2;
}
.home-page .our-clients .inner {
  max-width: 1332px;
  padding-right: 68px;
}
@media all and (min-width: 768px) {
  .home-page .our-clients .brands .col:nth-of-type(3)::before {
    border-top: 0;
    border-right: 0;
    border-bottom: 0;
  }
  .home-page .our-clients .brands .col:nth-of-type(4)::before {
    border-left: 0;
    border-right: 0;
    border-bottom: 0;
  }
  .home-page .our-clients .brands .col:nth-of-type(5)::before {
    border-left: 0;
  }
  .home-page .our-clients .brands .col:nth-of-type(8)::before {
    border-right: 0;
  }
}
.about-us-page .our-clients {
  padding: 135px 0 150px;
  z-index: 1;
  position: relative;
}
.about-us-page .our-clients .inner {
  max-width: 1280px;
}
.service-seo-page .our-clients {
  padding: 90px 0 195px;
}
.service-google-page .our-clients {
  padding: 105px 0 130px;
}
.service-google-page .our-clients .inner {
  max-width: 1285px;
}
.service-facebook-page .our-clients {
  padding: 208px 0 165px;
}
.service-facebook-page .our-clients .inner {
  max-width: 1285px;
}
.service-webdev-page .our-clients {
  padding: 110px 0 95px;
}
.service-webdev-page .our-clients .inner {
  max-width: 1285px;
}
.web-design-page .our-clients {
  padding: 95px 0 157px;
  background: #fff;
}
.web-design-page .our-clients .inner {
  margin: 0 308px 0 auto;
}
.web-design-page .our-clients .brands.-style2 .col:nth-child(1) {
  margin-right: 207px;
}
.web-design-page .our-clients .title-wr2 .title {
  margin-bottom: 10px;
}
.web-design-page .our-clients .title-wr2 .sub-title::before {
  display: none;
}
.web-design-page .our-clients .bottom-text-wr {
  left: 15px;
}
.branding-page .our-clients {
  padding-top: 95px;
  padding-bottom: 30px;
}
.branding-page .our-clients .inner {
  max-width: 1285px;
}
.branding-page .our-clients .title-wr2 {
  margin: 0 40px 70px;
}
.our-clients .inner {
  position: relative;
  max-width: 1260px;
}
.service-seo-page .our-clients .inner {
  max-width: 1284px;
}
.our-clients .title-wr1 {
  position: relative;
  margin-bottom: 54px;
  padding-bottom: 20px;
  text-align: left;
}
.our-clients .title-wr1 .title {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  display: inline-block;
  max-width: 60%;
  font-size: 96px;
  font-weight: 800;
  line-height: 1.18;
  margin-left: 3px;
}
.our-clients .title-wr1 .stroke {
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #888;
  -webkit-text-fill-color: transparent;
}
.our-clients .title-wr2 {
  margin: 0 40px 40px;
}
.our-clients .title-wr2 .sub-title {
  font-size: 18px;
  margin-bottom: 7px;
  font-weight: 900;
  font-family: SimplerPro_Extended;
}
.our-clients .title-wr2 .sub-title::before {
  width: 25px;
  height: 2px;
  margin: 0 0 0 13px;
}
.our-clients .title-wr2 .title {
  margin-bottom: 27px;
  font-size: 64px;
}
.our-clients .title-wr2 .text {
  line-height: 25px;
  max-width: 480px;
}
.about-us-page .our-clients .title-wr2 .text {
  max-width: 366px;
}
.service-seo-page .our-clients .title-wr2 .text {
  max-width: 366px;
}
.service-google-page .our-clients .title-wr2 .text {
  max-width: 366px;
}
.service-facebook-page .our-clients .title-wr2 .text {
  max-width: 366px;
}
.service-webdev-page .our-clients .title-wr2 .text {
  max-width: 366px;
}
.our-clients .brands {
  position: relative;
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
}
.our-clients .brands.mobile- {
  display: none;
}
@media all and (min-width: 769px) {
  .our-clients .brands.-style1 .col:nth-child(1) {
    margin-left: 60%;
  }
  .our-clients .brands.-style1 .col:nth-child(1), .our-clients .brands.-style1 .col:nth-child(7) {
    margin-right: 207px;
  }
  .our-clients .brands.-style2 {
    right: 3px;
  }
  .our-clients .brands.-style2 .col:nth-child(1) {
    margin-right: 213px;
  }
}
.our-clients .brands .col {
  width: 207px;
  height: 207px;
  position: relative;
}
.service-seo-page .our-clients .brands .col {
  width: 214px;
  height: 214px;
}
.service-google-page .our-clients .brands .col {
  width: 214px;
  height: 214px;
}
.service-facebook-page .our-clients .brands .col {
  width: 214px;
  height: 214px;
}
.service-webdev-page .our-clients .brands .col, .branding-page .our-clients .brands .col {
  width: 214px;
  height: 214px;
}
.our-clients .brands .col:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: -1px;
  right: -1px;
  left: 0;
  border: 1px solid #888;
}
.about-us-page .our-clients .brands .col {
  width: 213px;
  height: 214px;
}
.our-clients .brands .brand-pic {
  width: 100%;
  height: 100%;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}




















.our-clients .brands .brand-logo-wrap picture {
  opacity: 1;
  transition: opacity 1s linear;
}
.our-clients .brands .brand-logo-wrap picture.removed {
  opacity: 0;
}
.our-clients .brands .brand-logo-wrap.changed picture {
  opacity: 0;
}
.our-clients .brands-for-animation {
  display: none;
}
.our-clients .bottom-text-wr {
  position: absolute;
  bottom: 9px;
  left: 0;
  display: flex;
  justify-content: flex-end;
}
.about-us-page .our-clients .bottom-text-wr {
  bottom: 3px;
  left: -3px;
}
.service-google-page .our-clients .bottom-text-wr {
  bottom: 0;
}
.service-facebook-page .our-clients .bottom-text-wr {
  bottom: 0;
}
.our-clients .bottom-text {
  display: flex;
  max-width: 500px;
}
.service-webdev-page .our-clients .bottom-text {
  margin-bottom: -5px;
}
.our-clients .bottom-text .figure1 {
  position: relative;
  max-width: 85px;
  min-width: 85px;
  height: 85px;
  margin-left: 33px;
  right: 5px;
  top: 8px;
  border-radius: 50%;
  background-color: #000;
  background-size: 50%;
}
.our-clients .bottom-text .text {
  flex-grow: 1;
  font-size: 24px;
  padding-bottom: 32px;
  text-align: left;
  border-bottom: 1px solid #000;
}
.service-seo-page .our-clients .bottom-text .text {
  padding-bottom: 25px;
}

@media all and (max-width: 768px) {
  .home-page .our-clients {
    padding: 62px 0 64px;
  }
  .home-page .our-clients .inner {
    padding-right: 18px;
  }
  .home-page .our-clients .title-wr1 {
    margin-bottom: 35px;
  }
  .home-page .our-clients .owl-carousel.owl-rtl .owl-item {
    max-width: 126px;
  }
  .home-page .our-clients .brands {
    margin-bottom: 57px;
  }
  .home-page .our-clients .brands .col {
    max-width: 126px;
  }
  .home-page .our-clients .bottom-text .text {
    padding-bottom: 20px;
  }
  .home-page .our-clients .bottom-text .figure1 {
    top: 0;
  }
  .about-us-page .our-clients {
    padding: 77px 0 75px;
  }
  .about-us-page .our-clients .inner {
    padding-right: 18px;
  }
  .about-us-page .our-clients .title-wr1 {
    margin-bottom: 35px;
  }
  .about-us-page .our-clients .title-wr2 {
    margin: 0 38px 25px 0;
  }
  .about-us-page .our-clients .title-wr2 .title {
    margin-bottom: 12px;
  }
  .about-us-page .our-clients .owl-carousel.owl-rtl .owl-item {
    max-width: 126px;
  }
  .about-us-page .our-clients .brands {
    margin-bottom: 27px;
  }
  .about-us-page .our-clients .brands .col {
    max-width: 126px;
    max-height: 126px;
    width: auto;
    height: 29.4117647059vw;
  }
  .about-us-page .our-clients .bottom-text .text {
    padding-bottom: 10px;
    font-size: 20px;
  }
  .about-us-page .our-clients .bottom-text .figure1 {
    top: -4px;
    right: 0;
    margin-left: 0;
  }
  .service-seo-page .our-clients {
    padding: 93px 0 75px;
  }
  .service-seo-page .our-clients .inner {
    padding-right: 18px;
  }
  .service-seo-page .our-clients .title-wr1 {
    margin-bottom: 35px;
  }
  .service-seo-page .our-clients .title-wr2 {
    margin: 0 38px 25px 0;
  }
  .service-seo-page .our-clients .title-wr2 .title {
    margin-bottom: 12px;
  }
  .service-seo-page .our-clients .owl-carousel.owl-rtl .owl-item {
    max-width: 126px;
  }
  .service-seo-page .our-clients .brands {
    margin-bottom: 27px;
  }
  .service-seo-page .our-clients .brands .col {
    max-width: 126px;
    max-height: 126px;
    width: auto;
    height: 29.4117647059vw;
  }
  .service-seo-page .our-clients .bottom-text .text {
    padding-bottom: 10px;
    font-size: 20px;
  }
  .service-seo-page .our-clients .bottom-text .figure1 {
    top: -4px;
    right: 0;
    margin-left: 0;
  }
  .service-google-page .our-clients {
    padding: 70px 0 38px;
  }
  .service-google-page .our-clients .inner {
    padding-right: 18px;
  }
  .service-google-page .our-clients .title-wr1 {
    margin-bottom: 35px;
  }
  .service-google-page .our-clients .title-wr2 {
    margin: 0 38px 25px 0;
  }
  .service-google-page .our-clients .title-wr2 .title {
    margin-bottom: 12px;
  }
  .service-google-page .our-clients .owl-carousel.owl-rtl .owl-item {
    max-width: 126px;
  }
  .service-google-page .our-clients .brands {
    margin-bottom: 27px;
  }
  .service-google-page .our-clients .brands .col {
    max-width: 126px;
    max-height: 126px;
    width: auto;
    height: 29.4117647059vw;
  }
  .service-google-page .our-clients .bottom-text .text {
    padding-bottom: 10px;
    font-size: 20px;
  }
  .service-google-page .our-clients .bottom-text .figure1 {
    top: -4px;
    right: 0;
    margin-left: 0;
  }
  .service-facebook-page .our-clients {
    padding: 60px 0 90px;
  }
  .service-facebook-page .our-clients .inner {
    padding-right: 18px;
  }
  .service-facebook-page .our-clients .title-wr1 {
    margin-bottom: 35px;
  }
  .service-facebook-page .our-clients .title-wr2 {
    margin: 0 38px 25px 0;
  }
  .service-facebook-page .our-clients .title-wr2 .title {
    margin-bottom: 12px;
  }
  .service-facebook-page .our-clients .owl-carousel.owl-rtl .owl-item {
    max-width: 126px;
  }
  .service-facebook-page .our-clients .brands {
    margin-bottom: 10px;
  }
  .service-facebook-page .our-clients .brands .col {
    max-width: 126px;
    max-height: 126px;
    width: auto;
    height: 29.4117647059vw;
  }
  .service-facebook-page .our-clients .bottom-text .text {
    padding-bottom: 10px;
    font-size: 20px;
  }
  .service-facebook-page .our-clients .bottom-text .figure1 {
    top: -4px;
    right: 0;
    margin-left: 0;
  }
  .service-webdev-page .our-clients, .branding-page .our-clients {
    padding: 77px 0 95px;
  }
  .service-webdev-page .our-clients .inner, .branding-page .our-clients .inner {
    padding: 0 4%;
  }
  .service-webdev-page .our-clients .title-wr2, .branding-page .our-clients .title-wr2 {
    margin: 0 40px 25px 0;
  }
  .service-webdev-page .our-clients .owl-carousel.owl-rtl .owl-item, .branding-page .our-clients .owl-carousel.owl-rtl .owl-item {
    max-width: 126px;
  }
  .service-webdev-page .our-clients .brands, .branding-page .our-clients .brands {
    margin-bottom: 18px;
  }
  .service-webdev-page .our-clients .brands .col, .branding-page .our-clients .brands .col {
    max-width: 126px;
    max-height: 126px;
    width: auto;
    height: 29.4117647059vw;
  }
  .service-webdev-page .our-clients .bottom-text .text, .branding-page .our-clients .bottom-text .text {
    padding-bottom: 10px;
    font-size: 20px;
  }
  .service-webdev-page .our-clients .bottom-text .figure1, .branding-page .our-clients .bottom-text .figure1 {
    top: -4px;
    right: 0;
    margin-left: 0;
  }
  .web-design-page .our-clients {
    padding: 64px 0;
  }
  .web-design-page .our-clients .inner {
    margin: 0 auto;
    padding: 0 4%;
  }
  .web-design-page .our-clients .brands {
    margin-bottom: 30px;
  }
  .web-design-page .our-clients .brands.-style2 .col:nth-child(1) {
    margin-right: 0;
  }
  .web-design-page .our-clients .title-wr2 {
    margin: 0 40px 25px 0;
  }
  .web-design-page .our-clients .title-wr2 .sub-title::before {
    display: block;
  }
  .web-design-page .our-clients .bottom-text {
    border-bottom: 1px solid #000;
  }
  .web-design-page .our-clients .bottom-text .text {
    font-size: 20px;
    border-bottom: 0;
  }
  .web-design-page .our-clients .bottom-text .figure1 {
    margin-left: 6px;
    right: 0px;
    top: -3px;
  }
  .branding-page .our-clients {
    padding: 77px 0 30px;
  }
  .branding-page .our-clients .bottom-text {
    border-bottom: 1px solid #000;
    padding-bottom: 15px;
  }
  .branding-page .our-clients .bottom-text .text {
    padding-bottom: 0;
    border: 0;
  }
  .our-clients .title-wr1 {
    padding: 0;
    margin-bottom: 40px;
  }
  .our-clients .title-wr1 .title {
    position: static;
    font-size: 45px;
    max-width: none;
    line-height: 122%;
  }
  .our-clients .title-wr2 {
    margin: 0 30px 25px 0;
  }
  .our-clients .title-wr2 .title {
    margin-bottom: 10px;
    font-size: 48px;
  }
  .our-clients .title-wr2 .text {
    max-width: none;
  }
  .our-clients .bottom-text-wr {
    position: static;
  }
  .our-clients .brands {
    margin-bottom: 48px;
  }
  .our-clients .brands.desktop- {
    display: none;
  }
  .our-clients .brands.mobile- {
    display: flex;
    direction: ltr;
  }
  .our-clients .brands .col {
    width: auto;
    height: 125px;
    border: 1px solid rgba(0, 0, 0, 0.3);
    border-left: none;
  }
  .our-clients .brands .col:before {
    display: none;
  }
  .our-clients .brands .brand-pic:before {
    display: none;
  }
  .our-clients .brands .owl-stage-outer {
    overflow: visible;
    margin-right: 6%;
  }
  .our-clients .brands .owl-stage-outer:before {
    content: "";
    display: block;
    position: absolute;
    z-index: 1;
    top: -1px;
    bottom: -1px;
    left: 100%;
    width: 6%;
    margin-left: 1px;
  }
  .our-clients .brands .owl-item {
    max-width: 126px;
  }
  .our-clients .brands .owl-nav {
    display: none;
  }
  .our-clients .owl-carousel.owl-rtl .owl-item:last-of-type .col {
    border-left: 1px solid rgba(0, 0, 0, 0.3);
  }
  .our-clients .bottom-text .figure1 {
    max-width: 64px;
    min-width: 64px;
    height: 64px;
  }
  .our-clients .bottom-text .text {
    font-size: 18px;
  }
}
@media all and (max-width: 425px) {
  .our-clients .title-wr1 .title {
    font-size: 10.5882352941vw;
  }
  .our-clients .title-wr2 .title {
    font-size: 11.2941176471vw;
  }
  .our-clients .brands .col {
    height: 29.4117647059vw;
  }
  .our-clients .bottom-text .figure1 {
    max-width: 15.0588235294vw;
    min-width: 15.0588235294vw;
    height: 15.0588235294vw;
  }
  .our-clients .bottom-text .text {
    font-size: 4.2352941176vw;
  }
}

@media all and (min-width: 1920px) {
  .web-design-page .our-clients .inner {
    margin: 0 auto;
  }
}
@media all and (max-width: 1920px) and (min-width: 769px) {
  .web-design-page .our-clients {
    padding: 4.9479166667vw 0 8.1770833333vw;
  }
  .web-design-page .our-clients .inner {
    margin: 0 16.0416666667vw 0 auto;
  }
  .web-design-page .our-clients .title-wr2 {
    margin: 0 0 3.125vw;
  }
}
@media all and (max-width: 1700px) and (min-width: 769px) {
  .web-design-page .our-clients .inner {
    margin: 0 auto;
  }
}
@media all and (max-width: 1650px) and (min-width: 769px) {
  .service-facebook-page .our-clients {
    padding: 120px 0 80px;
  }
  .our-clients .inner {
    padding: 0;
    max-width: 1260px;
  }
}
@media all and (max-width: 1440px) and (min-width: 769px) {
  .about-us-page .our-clients {
    padding: 100px 0 120px;
  }
  .service-seo-page .our-clients {
    padding-bottom: 130px;
  }
  .service-google-page .our-clients {
    padding-bottom: 50px;
  }
  .service-webdev-page .our-clients {
    padding-bottom: 4.1666666667vw;
    padding-top: 7.6388888889vw;
  }
  .our-clients .title-wr2 .title {
    font-size: 4.4444444444vw;
  }
}
@media all and (max-width: 1350px) and (min-width: 769px) {
  .our-clients .inner {
    max-width: none;
    padding-right: 3%;
    padding-left: 3%;
  }
  .our-clients .bottom-text-wr {
    left: 3%;
  }
  .about-us-page .our-clients .brands .col, .service-seo-page .our-clients .brands .col, .service-google-page .our-clients .brands .col, .service-facebook-page .our-clients .brands .col, .service-webdev-page .our-clients .brands .col, .web-design-page .our-clients .brands .col, .branding-page .our-clients .brands .col {
    width: 190px;
    height: 190px;
  }
  .about-us-page .our-clients .brands.-style2 .col:nth-child(1), .service-seo-page .our-clients .brands.-style2 .col:nth-child(1), .service-google-page .our-clients .brands.-style2 .col:nth-child(1), .service-facebook-page .our-clients .brands.-style2 .col:nth-child(1), .service-webdev-page .our-clients .brands.-style2 .col:nth-child(1), .web-design-page .our-clients .brands.-style2 .col:nth-child(1), .branding-page .our-clients .brands.-style2 .col:nth-child(1) {
    margin-right: 190px;
  }
  .about-us-page .our-clients .bottom-text-wr, .service-seo-page .our-clients .bottom-text-wr, .service-google-page .our-clients .bottom-text-wr, .service-facebook-page .our-clients .bottom-text-wr, .service-webdev-page .our-clients .bottom-text-wr, .web-design-page .our-clients .bottom-text-wr, .branding-page .our-clients .bottom-text-wr {
    left: 3%;
  }
}
@media all and (max-width: 1280px) and (min-width: 769px) {
  .home-page .our-clients .inner {
    padding-right: 3%;
  }
  .our-clients .title-wr1 .title {
    font-size: 7.5vw;
  }
  .our-clients .bottom-text {
    max-width: 39.0625vw;
  }
  .our-clients .bottom-text .figure1 {
    max-width: 6.640625vw;
    min-width: 6.640625vw;
    height: 6.640625vw;
    margin-left: 2.34375vw;
  }
  .our-clients .bottom-text .text {
    font-size: 1.875vw;
    padding-bottom: 1.171875vw;
  }
}
@media all and (max-width: 1213px) and (min-width: 769px) {
  .about-us-page .our-clients .brands .col, .service-seo-page .our-clients .brands .col, .service-google-page .our-clients .brands .col, .service-facebook-page .our-clients .brands .col, .service-webdev-page .our-clients .brands .col, .web-design-page .our-clients .brands .col, .branding-page .our-clients .brands .col {
    width: 170px;
    height: 170px;
  }
  .about-us-page .our-clients .brands.-style2 .col:nth-child(1), .service-seo-page .our-clients .brands.-style2 .col:nth-child(1), .service-google-page .our-clients .brands.-style2 .col:nth-child(1), .service-facebook-page .our-clients .brands.-style2 .col:nth-child(1), .service-webdev-page .our-clients .brands.-style2 .col:nth-child(1), .web-design-page .our-clients .brands.-style2 .col:nth-child(1), .branding-page .our-clients .brands.-style2 .col:nth-child(1) {
    margin-right: 170px;
  }
}
@media all and (max-width: 1200px) and (min-width: 1001px) {
  .our-clients .brands.-style1 .col {
    width: 170px;
    height: 170px;
  }
  .our-clients .brands.-style1 .col:nth-child(1), .our-clients .brands.-style1 .col:nth-child(7) {
    margin-right: 170px;
  }
}
@media all and (max-width: 1085px) and (min-width: 958px) {
  .about-us-page .our-clients .brands .col, .service-seo-page .our-clients .brands .col, .service-google-page .our-clients .brands .col, .service-facebook-page .our-clients .brands .col, .service-webdev-page .our-clients .brands .col, .web-design-page .our-clients .brands .col, .branding-page .our-clients .brands .col {
    width: 150px;
    height: 150px;
  }
  .about-us-page .our-clients .brands.-style2 .col:nth-child(1), .service-seo-page .our-clients .brands.-style2 .col:nth-child(1), .service-google-page .our-clients .brands.-style2 .col:nth-child(1), .service-facebook-page .our-clients .brands.-style2 .col:nth-child(1), .service-webdev-page .our-clients .brands.-style2 .col:nth-child(1), .web-design-page .our-clients .brands.-style2 .col:nth-child(1), .branding-page .our-clients .brands.-style2 .col:nth-child(1) {
    margin-right: 150px;
  }
}
@media all and (max-width: 1000px) and (min-width: 851px) {
  .our-clients .brands.-style1 .col {
    width: 140px;
    height: 140px;
  }
  .our-clients .brands.-style1 .col:nth-child(1), .our-clients .brands.-style1 .col:nth-child(7) {
    margin-right: 140px;
  }
}
@media all and (max-width: 957px) and (min-width: 769px) {
  .about-us-page .our-clients .brands .col, .service-seo-page .our-clients .brands .col, .service-google-page .our-clients .brands .col, .service-facebook-page .our-clients .brands .col, .service-webdev-page .our-clients .brands .col, .web-design-page .our-clients .brands .col, .branding-page .our-clients .brands .col {
    width: 130px;
    height: 130px;
  }
  .about-us-page .our-clients .brands.-style2 .col:nth-child(1), .service-seo-page .our-clients .brands.-style2 .col:nth-child(1), .service-google-page .our-clients .brands.-style2 .col:nth-child(1), .service-facebook-page .our-clients .brands.-style2 .col:nth-child(1), .service-webdev-page .our-clients .brands.-style2 .col:nth-child(1), .web-design-page .our-clients .brands.-style2 .col:nth-child(1), .branding-page .our-clients .brands.-style2 .col:nth-child(1) {
    margin-right: 130px;
  }
}
@media all and (max-width: 850px) and (min-width: 769px) {
  .our-clients .brands.-style1 .col {
    width: 125px;
    height: 125px;
  }
  .our-clients .brands.-style1 .col:nth-child(1), .our-clients .brands.-style1 .col:nth-child(7) {
    margin-right: 125px;
  }
  .about-us-page .our-clients .brands .col, .service-seo-page .our-clients .brands .col, .service-google-page .our-clients .brands .col, .service-facebook-page .our-clients .brands .col, .service-webdev-page .our-clients .brands .col, .web-design-page .our-clients .brands .col, .branding-page .our-clients .brands .col {
    width: 120px;
    height: 120px;
  }
  .about-us-page .our-clients .brands.-style2 .col:nth-child(1), .service-seo-page .our-clients .brands.-style2 .col:nth-child(1), .service-google-page .our-clients .brands.-style2 .col:nth-child(1), .service-facebook-page .our-clients .brands.-style2 .col:nth-child(1), .service-webdev-page .our-clients .brands.-style2 .col:nth-child(1), .web-design-page .our-clients .brands.-style2 .col:nth-child(1), .branding-page .our-clients .brands.-style2 .col:nth-child(1) {
    margin-right: 120px;
  }
}
.portfolio {
  position: relative;
  z-index: 2;
}
.portfolio, .portfolio a {
  color: #fff;
}
.portfolio .project_bage {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 166px;
}
.home-page .portfolio .projects {
  max-width: 1900px;
  margin: 0 auto;
}
.service-webdev-page .portfolio {
  padding-bottom: 160px;
}
.service-webdev-page .portfolio .marq-wr {
  height: 130px;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
}
.service-webdev-page .portfolio .project_bage {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 166px;
}
.portfolio .projects {
  display: flex;
  flex-wrap: wrap;
}
.portfolio .project {
  position: relative;
  display: block;
  overflow: hidden;
}
.portfolio .project:hover .project-pic {
  transform: scale(1.03);
}
.portfolio .project .project_bage {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 166px;
}
.portfolio .project-pic {
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.27, 2);
}
.portfolio .project-pic, .portfolio .project-pic img {
  width: 100%;
  height: 100%;
}
.portfolio .project-pic img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.portfolio .project-info {
  position: absolute;
  z-index: 1;
  bottom: 63px;
  right: 70px;
}
.portfolio .project-info > span {
  display: block;
}
.portfolio .project-title1 {
  font-size: 20px;
}
.portfolio .project-title2 {
  font-size: 27px;
  font-weight: 800;
  margin-bottom: 5px;
}
.portfolio .project-text {
  font-family: "PloniRegularAAA", "Helvetica", "Arial", sans-serif;
  font-size: 20px;
}
.portfolio .more-button {
  padding: 2.6% 5% 2.6% 4%;
  font-size: 36px;
  font-weight: 800;
}
.portfolio .more-button:hover .figure1 {
  filter: invert(1);
}
.portfolio .more-button .figure1 {
  content: "";
  display: block;
  width: 44px;
  height: 44px;
  margin-right: 40px;
  transform: scale(-1, 1);
  transition: all 0.3s linear;
}
.portfolio .more-button:active, .portfolio .more-button:hover, .portfolio .more-button:focus {
  outline: 0;
  outline-offset: 0;
}
.portfolio .more-button-wr {
  text-align: center;
  margin-bottom: 55px;
}
.portfolio .marq-wr {
  height: 50px;
}
.portfolio .marq-wr.mobile- {
  display: none;
}
.portfolio .marq {
  font-size: 44px;
  font-weight: 600;
}
.portfolio .marq .color {
  background: linear-gradient(180deg, #8FFF00 0%, #FAFF00 94.72%);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
          background-clip: text;
}
.portfolio .st-button.-more:after {
  margin: 0;
  top: 25px;
  left: 25px;
  transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
}
@media all and (min-width: 769px) {
  .service-facebook-page .portfolio .md-marquee-pf {
    border: 0;
    height: auto;
  }
  .service-facebook-page .portfolio .md-marquee-pf .wrap span strong:first-of-type {
    color: #116FFF;
  }
  .service-facebook-page .portfolio .marq .color {
    color: #116FFF;
    background: none;
    -webkit-text-fill-color: inherit;
    -webkit-background-clip: text;
            background-clip: text;
  }
  .service-seo-page .portfolio .md-marquee-pf {
    border: 0;
    height: auto;
  }
  .home-page .portfolio .md-marquee-pf {
    border: 0;
    height: auto;
  }
  .home-page .portfolio .md-marquee-pf .wrap strong:nth-of-type(1) {
    background: linear-gradient(180deg, #8FFF00 0%, #FAFF00 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}
.single-project .portfolio .marq-wr .marq {
  animation: marquee 20s linear infinite;
}

.portfolio-s1 {
  padding: 90px 0 110px;
}
.home-page .portfolio-s1 {
  padding: 95px 0 110px;
}
.home-page .portfolio-s1 .title-c-wr {
  margin-bottom: 60px;
}
.home-page .portfolio-s1 .sub-title {
  margin-right: 40px;
}
.home-page .portfolio-s1 .sub-title::before {
  width: 25px;
}
.home-page .portfolio-s1 .projects {
  margin-bottom: 30px;
}
.home-page .portfolio-s1 .project:nth-of-type(1) {
  order: 3;
}
.home-page .portfolio-s1 .project:nth-of-type(2) {
  order: 2;
}
.home-page .portfolio-s1 .project:nth-of-type(3) {
  order: 1;
}
.home-page .portfolio-s1 .project:nth-of-type(4) {
  order: 4;
}
.home-page .portfolio-s1 .more-button-wr {
  margin-bottom: 58px;
}
.home-page .portfolio-s1 .running-line_portfolio {
  height: 52px;
}
.home-page .portfolio-s1 .running-line_portfolio .running_line_inner div:nth-of-type(2n) strong {
  background: linear-gradient(180deg, #8FFF00 0%, #FAFF00 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.service-facebook-page .portfolio-s1 {
  padding: 100px 0 90px;
}
.portfolio-s1 .sub-title {
  margin-bottom: 10px;
}
.portfolio-s1 .title {
  font-weight: 800;
  font-size: 111px;
  letter-spacing: 3px;
}
.portfolio-s1 .title-c-wr {
  margin-bottom: 50px;
}
.portfolio-s1 .projects {
  margin-bottom: 40px;
}
.portfolio-s1 .project {
  width: 49.65%;
  height: auto;
  position: relative;
  margin-bottom: 0.7%;
}
.portfolio-s1 .project:nth-child(2n-1) {
  margin-left: 0.7%;
}
.portfolio-s1 .project .project_bage {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 166px;
}

.portfolio-s2 {
  padding-bottom: 110px;
}
.portfolio-s2 .projects-slider.projects.mobile- {
  display: none;
}
.portfolio-s2 .projects-slider.projects.desktop- {
  display: block;
}
.portfolio-s2 .st-button.-more {
  margin-left: 25px;
}
.service-facebook-page .portfolio-s2 {
  padding-top: 155px;
}
.service-facebook-page .portfolio-s2 .blue {
  color: #116FFF;
}
.service-facebook-page .portfolio-s2 .running-line_portfolio .running_line_inner div:nth-of-type(2n) strong {
  color: #116FFF;
}
.service-webdev-page .portfolio-s2 {
  padding-top: 170px;
}
.service-webdev-page .portfolio-s2 .projects.owl-carousel.owl-rtl .slider-navigation {
  margin-bottom: 170px;
}
.service-webdev-page .portfolio-s2 .running-line_portfolio {
  height: 128px;
  padding: 19px 0;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
}
.service-google-page .portfolio-s2 {
  padding: 158px 0 50px;
}
.service-google-page .portfolio-s2 .running-line_portfolio {
  height: 128px;
  padding: 19px 0;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
}
.service-google-page .portfolio-s2 .projects {
  margin-bottom: 40px;
}
.service-google-page .portfolio-s2 .more-button-wr {
  margin-bottom: 55px;
}
.service-google-page .portfolio-s2 .marq-wr {
  height: 130px;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
}
.service-seo-page .portfolio-s2 {
  padding-bottom: 14px;
  padding-top: 100px;
}
.service-seo-page .portfolio-s2 .more-button-wr {
  margin-bottom: 60px;
}
.single-project .portfolio-s2 {
  padding-bottom: 0;
}
.single-project.postid-681 .portfolio-s2 {
  padding-top: 206px;
}
.single-project.postid-681 .portfolio-s2 .title1,
.single-project.postid-681 .portfolio-s2 .title2,
.single-project.postid-681 .portfolio-s2 .st-button.-more,
.single-project.postid-681 .portfolio-s2 .st-button.-more:after {
  color: #252525;
}
.single-project.postid-681 .portfolio-s2 .st-button.-more:before {
  border-color: #000;
}
.single-project.postid-681 .portfolio-s2 .projects.owl-carousel.owl-rtl .owl-dots .owl-dot.active {
  background: #000;
}
.single-project.postid-681 .portfolio-s2 .projects.owl-carousel.owl-rtl .owl-prev,
.single-project.postid-681 .portfolio-s2 .projects.owl-carousel.owl-rtl .owl-next {
  border: 1px solid #000;
}
.single-project.postid-681 .portfolio-s2 .projects.owl-carousel.owl-rtl .owl-prev span svg,
.single-project.postid-681 .portfolio-s2 .projects.owl-carousel.owl-rtl .owl-next span svg {
  fill: #000;
}
.single-project.postid-681 .portfolio-s2 .projects.owl-carousel.owl-rtl .owl-prev:hover span svg,
.single-project.postid-681 .portfolio-s2 .projects.owl-carousel.owl-rtl .owl-next:hover span svg {
  fill: #fff;
}
.single-project.postid-681 .portfolio-s2 .marq-wr.-style1 {
  height: 71px;
  padding-top: 7px;
}
.single-project.postid-681 .portfolio-s2 .marq-wr.-style1 .marq {
  font-size: 31px;
}
.portfolio-s2 .inner {
  max-width: 1300px;
}
.portfolio-s2 .title1 {
  font-size: 96px;
  font-weight: 800;
  margin-bottom: 5px;
}
.portfolio-s2 .top-wr {
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
  width: 100%;
  max-width: 780px;
}
.portfolio-s2 .title2 {
  font-size: 30px;
  margin-left: 40px;
  margin-top: 6px;
}
.portfolio-s2 .projects {
  margin-bottom: 60px;
}
.portfolio-s2 .projects.owl-carousel.owl-rtl .owl-stage {
  right: -7.5%;
}
.portfolio-s2 .projects.owl-carousel.owl-rtl .owl-item {
  max-width: 943px;
}
.portfolio-s2 .projects.owl-carousel.owl-rtl .slider-navigation {
  max-width: 1475px;
  width: 80%;
  position: relative;
  right: 16.3%;
  margin-top: 73px;
  margin-bottom: 222px;
}
.portfolio-s2 .projects.owl-carousel.owl-rtl .owl-dots {
  max-width: calc(100% - 442px);
  position: relative;
  right: 221px;
}
.portfolio-s2 .projects.owl-carousel.owl-rtl .owl-dots .owl-dot {
  height: 2px;
  border: 0;
  border-radius: 0;
  background: #747474;
  float: left;
}
.portfolio-s2 .projects.owl-carousel.owl-rtl .owl-dots .owl-dot.active {
  height: 6px;
  background: #fff;
  margin-top: -4px;
}
.portfolio-s2 .projects.owl-carousel.owl-rtl .owl-dots .owl-dot:not(:last-child) {
  margin-left: 0;
}
.portfolio-s2 .projects.owl-carousel.owl-rtl .owl-nav {
  display: block;
  position: relative;
}
.portfolio-s2 .projects.owl-carousel.owl-rtl .owl-prev,
.portfolio-s2 .projects.owl-carousel.owl-rtl .owl-next {
  border: 1px solid #FFF;
  padding: 22px 50px;
  position: absolute;
  top: -32px;
}
.portfolio-s2 .projects.owl-carousel.owl-rtl .owl-prev.st-button.-hover1,
.portfolio-s2 .projects.owl-carousel.owl-rtl .owl-next.st-button.-hover1 {
  overflow: visible;
}
.portfolio-s2 .projects.owl-carousel.owl-rtl .owl-prev.st-button.-hover1:before,
.portfolio-s2 .projects.owl-carousel.owl-rtl .owl-next.st-button.-hover1:before {
  background: #116FFF;
  border: 1px solid #116FFF;
  top: -1px;
  bottom: -1px;
  right: -1px;
  left: -1px;
  transition: all 0.3s linear;
}
.portfolio-s2 .projects.owl-carousel.owl-rtl .owl-prev span svg,
.portfolio-s2 .projects.owl-carousel.owl-rtl .owl-next span svg {
  fill: #fff;
}
.portfolio-s2 .projects.owl-carousel.owl-rtl .owl-prev {
  left: 0;
}
.portfolio-s2 .projects.owl-carousel.owl-rtl .owl-prev.st-button.-hover1:not(:hover):before {
  left: calc(100% + 1px);
}
.portfolio-s2 .projects.owl-carousel.owl-rtl .owl-next {
  transform: scale(1);
  right: 0;
}
.portfolio-s2 .projects.owl-carousel.owl-rtl .owl-next.st-button.-hover1:not(:hover):before {
  right: calc(100% + 1px);
}
.portfolio-s2 .more-button-wr {
  margin-top: 167px;
}
@media all and (min-width: 769px) {
  .portfolio-s2 .more-button-wr {
    display: none;
    margin-top: 222px;
  }
}
.portfolio-s2 .project-info {
  bottom: 12%;
  right: 6%;
}
.portfolio-s2 .project-title1 {
  margin-bottom: 5px;
}
.portfolio-s2 .project-title2 {
  margin-bottom: 10px;
}

.projects-slider.owl-carousel .owl-nav {
  display: none;
}
.projects-slider.owl-carousel .owl-dots {
  margin-top: 30px;
}
.projects-slider.owl-carousel .owl-dots .owl-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid #fff;
}
.projects-slider.owl-carousel .owl-dots .owl-dot:not(:last-child) {
  margin-left: 10px;
}
.projects-slider.owl-carousel .owl-dots .owl-dot.active {
  background: #fff;
}

.all-projects-page {
  background-color: #000;
  color: #fff;
}
.all-projects-page .portfolio {
  background-color: #fff;
}
.all-projects-page .projects {
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
}
.all-projects-page .projects-item {
  width: 33.3333%;
  overflow: hidden;
  position: relative;
}
.all-projects-page .projects-item .project_bage {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 110px;
}
.all-projects-page .projects-item .project-pic {
  transition: all 0.5s linear;
}
.all-projects-page .projects-item .project-info {
  right: 60px;
  bottom: 55px;
}
.all-projects-page .projects-item .project-title1 {
  margin-bottom: 2px;
  font-size: 18px;
  line-height: 26px;
  font-family: "PloniRegularAAA", "Helvetica", "Arial", sans-serif;
}
.all-projects-page .projects-item .project-title2 {
  margin-bottom: 1px;
  font-family: "SimplerPro", "sans-serif";
  font-weight: 900;
  font-size: 30px;
  line-height: 30px;
}
.all-projects-page .projects-item .project-text {
  font-family: "PloniRegularAAA", "Helvetica", "Arial", sans-serif;
  font-size: 20px;
  line-height: 29px;
}
.all-projects-page .projects-item .project-link-soon {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 100%;
  transition: top 0.5s linear;
  overflow: hidden;
}
.all-projects-page .projects-item .project-link-soon::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: #595959;
  mix-blend-mode: multiply;
}
.all-projects-page .projects-item .project-link-soon .portfolio-comming-soon {
  width: 346px;
  height: 345px;
  min-width: 145px;
  min-height: 145px;
}
.all-projects-page .projects-item .project-link-soon picture {
  position: relative;
  z-index: 2;
}
.all-projects-page .projects-item:hover .project .project-pic {
  transform: scale(1.05);
}
.all-projects-page .projects-item:hover .project-link-soon {
  top: 0;
}
.all-projects-page .projects-item:hover .project-pic {
  transform: none;
}

.section-portfolio {
  background-color: #000000;
  padding-top: 180px;
  color: #fff;
}
.section-portfolio .sc_portfolio_pre_title {
  margin: 0 163px 23px 0;
  font-weight: 400;
  font-size: 22px;
  line-height: 26px;
}
.section-portfolio .sc_portfolio_pre_title:after {
  content: "";
  display: block;
  position: absolute;
  width: 25px;
  height: 2px;
  background: #fff;
  right: -39px;
  top: 50%;
  transform: translateY(-50%);
}
.section-portfolio .sc_portfolio_title {
  font-weight: 900;
  font-size: 5.8333333333vw;
  line-height: 88%;
  margin: 0 8.4895833333vw 53px 0;
}
.section-portfolio .sc_portfolio_wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 150%;
  left: 33%;
}
.section-portfolio .portfolio-post .post_descr {
  position: absolute;
  bottom: 3.90625vw;
  right: 3.90625vw;
  text-align: right;
  color: #fff;
}
.section-portfolio .portfolio-post .post_category {
  font-weight: 400;
  font-size: 0.9375vw;
  line-height: 27px;
}
.section-portfolio .portfolio-post .post_title {
  font-style: normal;
  font-weight: 900;
  font-size: 1.40625vw;
  line-height: 27px;
}
.section-portfolio .portfolio-post .post_excerpt {
  font-style: normal;
  font-weight: 400;
  font-size: 1.0416666667vw;
  line-height: 30px;
}
.section-portfolio .running-line {
  background: linear-gradient(270deg, #FAFF00 -1.15%, #8FFF00 101.14%);
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 18px 0;
  margin-top: 51px;
  border-bottom: 1px #000 solid;
}
.section-portfolio .running-line-block {
  font-style: normal;
  font-weight: 400;
  font-size: 31px;
  line-height: 35px;
  margin-right: 20px;
  position: relative;
  white-space: nowrap;
  text-transform: uppercase;
  z-index: 2;
  animation-name: running;
  animation-duration: 30s;
  animation-iteration-count: infinite;
  animation-direction: normal;
  animation-timing-function: linear;
}
.section-portfolio .owl-carousel .owl-stage-outer {
  overflow: visible;
}

.running-line_project {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(270deg, #FAFF00 -1.15%, #8FFF00 101.14%);
  padding: 20px 0;
}
.running-line_project .running_line_inner {
  display: flex;
  font-family: "Unbounded", "sans-serif";
  font-size: 31px;
  line-height: 100%;
  text-transform: uppercase;
  color: #000;
  position: relative;
  white-space: nowrap;
  margin-right: 4px;
  animation-name: running;
  animation-duration: 40s;
  animation-iteration-count: infinite;
  animation-direction: reverse;
  animation-timing-function: linear;
}
.running-line_project .running_line_inner div {
  margin-right: 4px;
}

.running-line_portfolio {
  display: flex;
  align-items: center;
  justify-content: center;
}
.running-line_portfolio .running_line_inner {
  display: flex;
  font-family: "Unbounded", "sans-serif";
  font-size: 44px;
  font-weight: 600;
  line-height: 100%;
  text-transform: uppercase;
  color: #fff;
  position: relative;
  white-space: nowrap;
  margin-right: 4px;
  animation-name: running;
  animation-duration: 140s;
  animation-iteration-count: infinite;
  animation-direction: reverse;
  animation-timing-function: linear;
}
.running-line_portfolio .running_line_inner div {
  margin-right: 10px;
}
.running-line_portfolio .running_line_inner div strong {
  font-weight: 600;
}

@keyframes running {
  0% {
    transform: translate(-100%, 0);
  }
  50% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(100%, 0);
  }
}
@media all and (max-width: 768px) {
  .portfolio .projects {
    display: block;
    margin: 0 7px 40px;
  }
  .portfolio .project-info {
    right: 19px;
    bottom: 13px;
  }
  .portfolio .project-title1 {
    font-size: 14px;
  }
  .portfolio .project-title2 {
    font-size: 18px;
    margin-bottom: 3px;
  }
  .portfolio .project-text {
    font-size: 16px;
  }
  .portfolio .more-button-wr {
    margin-bottom: 30px;
  }
  .portfolio .more-button {
    padding: 5% 9%;
    font-size: 20px;
    background: linear-gradient(93.7deg, #8FFF00 7.26%, #FAFF00 100%);
    border-color: transparent;
    color: #000;
    transition: 0.3s;
  }
  .portfolio .more-button:hover .figure1 {
    filter: invert(0);
  }
  .portfolio .more-button:hover.-brd {
    border-color: #fff;
  }
  .portfolio .more-button.st-button.-hover1::before {
    background: #000;
  }
  .portfolio .more-button.st-button.-hover1:hover {
    color: #fff;
  }
  .portfolio .more-button:focus, .portfolio .more-button:active {
    outline: 0 !important;
    outline-offset: 0 !important;
  }
  .portfolio .more-button .figure1 {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    filter: invert(1);
  }
  .portfolio .marq-wr {
    height: 60px;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
  }
  .portfolio .marq-wr.mobile- {
    display: flex;
  }
  .portfolio .marq {
    font-size: 22px;
  }
  .portfolio .marq .color {
    background: -webkit-linear-gradient(0deg, #FAFF00, #8FFF00);
    -webkit-background-clip: text;
            background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .portfolio .md-marquee-pf .wrap strong:nth-of-type(1) {
    background: linear-gradient(180deg, #8FFF00 0%, #FAFF00 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .service-webdev-page .portfolio .md-marquee-pf {
    border: 0;
    height: auto;
  }
  .service-page .portfolio-s2 {
    padding-bottom: 50px;
  }
  .portfolio-s1 {
    padding: 70px 0 50px;
  }
  .portfolio-s1 .title-c-wr {
    margin-bottom: 40px;
  }
  .portfolio-s1 .title {
    font-size: 32px;
    letter-spacing: 0;
  }
  .portfolio-s1 .project {
    width: auto;
    height: 71vw;
  }
  .portfolio-s1 .project:nth-child(1n) {
    margin: 0 0 7px;
  }
  .portfolio-s1 .project .project_bage {
    width: 29.9479166667vw;
  }
  .home-page .portfolio-s1 {
    padding: 35px 0 52px;
  }
  .home-page .portfolio-s1 .sub-title {
    margin-bottom: 5px;
    margin-top: 5px;
  }
  .home-page .portfolio-s1 .title-c-wr {
    margin-bottom: 40px;
  }
  .home-page .portfolio-s1 .projects {
    margin: 0 7px 35px;
    display: flex;
  }
  .home-page .portfolio-s1 .project {
    height: 67vw;
  }
  .home-page .portfolio-s1 .project:nth-of-type(3) {
    display: none;
  }
  .home-page .portfolio-s1 .project:nth-of-type(1), .home-page .portfolio-s1 .project:nth-of-type(2) {
    margin: 0 auto 7px;
  }
  .home-page .portfolio-s1 .project:nth-of-type(4) {
    margin: 0 auto;
  }
  .home-page .portfolio-s1 .more-button-wr {
    margin-bottom: 30px;
  }
  .home-page .portfolio-s1 .more-button {
    padding: 6% 10%;
  }
  .home-page .portfolio-s1 .marq {
    margin-top: 8px;
  }
  .portfolio-s2 .projects-slider.projects.desktop- {
    display: none;
  }
  .portfolio-s2 .projects-slider.projects.mobile- {
    display: block;
  }
  .portfolio-s2 .projects-slider.projects {
    display: block;
    margin-right: 21px;
  }
  .portfolio-s2 .projects-slider.projects.owl-carousel.owl-rtl .owl-stage {
    right: 0;
  }
  .portfolio-s2 .projects-slider.projects.owl-carousel.owl-rtl .owl-item {
    max-width: 300px;
  }
  .portfolio-s2 .projects-slider.projects.owl-carousel.owl-rtl .slider-navigation {
    display: none;
  }
  .portfolio-s2 .top-wr {
    margin-bottom: 25px;
  }
  .portfolio-s2 .projects {
    margin-bottom: 20px;
  }
  .portfolio-s2 .project-info {
    right: 20px;
    bottom: 25px;
  }
  .portfolio-s2 .project-title1 {
    margin-bottom: 5px;
  }
  .service-seo-page .portfolio-s2 {
    padding-bottom: 46px;
    padding-top: 0;
  }
  .service-seo-page .portfolio-s2 .projects {
    margin-bottom: 25px;
  }
  .service-facebook-page .portfolio-s2 {
    padding-top: 63px;
    padding-bottom: 65px;
  }
  .service-facebook-page .portfolio-s2 .more-button-wr {
    margin-bottom: 33px;
  }
  .service-facebook-page .portfolio-s2 .marq-wr {
    height: 64px;
  }
  .service-google-page .portfolio-s2 {
    padding: 75px 0 40px;
  }
  .service-google-page .portfolio-s2 .running-line_portfolio {
    height: 63px;
  }
  .service-google-page .portfolio-s2 .running-line_portfolio .running_line_inner {
    font-size: 22px;
  }
  .service-google-page .portfolio-s2 .projects {
    margin-bottom: 20px;
  }
  .service-google-page .portfolio-s2 .more-button-wr {
    margin-bottom: 45px;
  }
  .service-google-page .portfolio-s2 .marq-wr {
    height: 64px;
  }
  .service-webdev-page .portfolio-s2 {
    padding-top: 80px;
    padding-bottom: 85px;
  }
  .service-webdev-page .portfolio-s2 .running-line_portfolio {
    height: 32px;
    padding: 0;
    border: 0;
  }
  .service-webdev-page .portfolio-s2 .running-line_portfolio .running_line_inner {
    font-size: 27px;
  }
  .service-webdev-page .portfolio-s2 .running-line_portfolio .running_line_inner div strong {
    background: none;
    -webkit-text-fill-color: #fff;
  }
  .service-webdev-page .portfolio-s2 .more-button-wr {
    margin-bottom: 22px;
  }
  .service-webdev-page .portfolio-s2 .marq-wr {
    height: 32px;
    border: 0;
  }
  .service-webdev-page .portfolio-s2 .marq-wr .portfolio .marq {
    font-size: 26px;
  }
  .portfolio-s2 .title1 {
    font-size: 36px;
    margin: 0;
  }
  .portfolio-s2 .title2 {
    font-size: 16px;
  }
  .portfolio-s2 .st-button.-more {
    display: none;
  }
  .portfolio-s2 .owl-carousel .owl-stage-outer {
    overflow: visible;
  }
  .portfolio-s2 .projects-slider {
    padding-left: 100px;
  }
  .portfolio-s2 .project {
    overflow: hidden;
  }
  .portfolio-s2 .more-button {
    padding: 4% 7%;
    font-size: 18px;
  }
  .portfolio-s2 .more-button .figure1 {
    width: 10px;
    height: 10px;
  }
  .portfolio-s2 .projects.owl-carousel.owl-rtl .owl-nav {
    display: none;
  }
  .portfolio-s2 .more-button-wr {
    margin-top: 0;
  }
  .all-projects-page .portfolio {
    background-color: #000;
    padding: 13px 4% 0;
  }
  .all-projects-page .projects-item {
    width: 100%;
  }
  .all-projects-page .projects-item:not(:last-of-type) {
    margin-bottom: 10px;
  }
  .all-projects-page .projects-item .project-info {
    right: 19px;
    bottom: 12px;
  }
  .all-projects-page .projects-item .project-text {
    font-size: 16px;
    line-height: 24px;
  }
  .all-projects-page .projects-item .project-title2 {
    margin-bottom: 0;
    font-size: 18px;
    line-height: 100%;
  }
  .all-projects-page .projects-item .project-title1 {
    margin-bottom: 0;
    font-size: 12px;
    line-height: 18px;
  }
  .all-projects-page .projects-item .project_bage {
    width: 26.0416666667vw;
  }
  .all-projects-page .projects {
    display: flex;
    margin: 0;
  }
  .section-portfolio {
    padding-top: 14.3529411765vw;
  }
  .section-portfolio .inner {
    padding: 0 17px;
  }
  .section-portfolio .sc_portfolio_pre_title {
    margin: 0 7.0588235294vw 3.0588235294vw 0;
    font-size: 4.2352941176vw;
  }
  .section-portfolio .sc_portfolio_pre_title:after {
    width: 4.7058823529vw;
    right: -7.0588235294vw;
    top: 51%;
  }
  .section-portfolio .sc_portfolio_title {
    font-size: 7.5294117647vw;
    margin: 0 7.0588235294vw 3.5294117647vw 0;
  }
  .section-portfolio .sc_portfolio_wrap {
    width: 154%;
    left: 0;
    margin-bottom: 10.5882352941vw;
  }
  .section-portfolio .owl-carousel .owl-stage-outer {
    overflow: hidden;
  }
  .section-portfolio .owl-carousel .owl-nav.disabled {
    display: none;
  }
  .section-portfolio .owl-carousel .portfolio-post img {
    width: 100%;
    height: auto;
  }
  .section-portfolio .owl-carousel .portfolio-post .post_category {
    font-size: 3.2941176471vw;
    line-height: normal;
  }
  .section-portfolio .owl-carousel .portfolio-post .post_title {
    font-size: 4.2352941176vw;
    line-height: normal;
    margin-bottom: 1.6470588235vw;
  }
  .section-portfolio .owl-carousel .portfolio-post .post_excerpt {
    font-size: 3.7647058824vw;
    line-height: normal;
  }
  .section-portfolio .owl-carousel .portfolio-post .post_descr {
    bottom: 5.4117647059vw;
    right: 4.7058823529vw;
  }
  .section-portfolio .marq-wr.-style1 {
    height: 8vw;
  }
  .section-portfolio .marq-wr.-style1 .marq {
    font-size: 3.4487058824vw;
    font-weight: 400;
    line-height: 111.5%;
  }
  .running-line_project {
    padding: 10px 0;
  }
  .running-line_project .running_line_inner {
    font-size: 14px;
    margin-right: 1px;
  }
  .running-line_project .running_line_inner div {
    margin-right: 1px;
  }
  .running-line_portfolio {
    height: 63px;
    padding: 19px 0;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
  }
  .running-line_portfolio .running_line_inner {
    font-size: 22px;
    margin-right: 4px;
    animation-duration: 120s;
  }
  .running-line_portfolio .running_line_inner div {
    margin-right: 4px;
  }
  .running-line_portfolio .running_line_inner div strong {
    background: linear-gradient(180deg, #8FFF00 0%, #FAFF00 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}
@media all and (max-width: 400px) {
  .portfolio-s2 .projects-slider.projects.mobile-.owl-carousel.owl-rtl .owl-item {
    min-width: auto;
  }
  .portfolio-s2 .projects-slider.projects.mobile- {
    margin-right: 10px;
  }
}

@media all and (max-width: 2499px) {
  .all-projects-page .projects-item .project-link-soon .portfolio-comming-soon {
    width: 13.515625vw;
    height: 13.4765625vw;
  }
}
@media all and (max-width: 2560px) and (min-width: 769px) {
  .all-projects-page .projects-item .project-info {
    right: 2.34375vw;
    bottom: 2.1484375vw;
  }
  .all-projects-page .projects-item .project-title1 {
    font-size: 0.703125vw;
    line-height: 1.015625vw;
  }
  .all-projects-page .projects-item .project-title2 {
    font-size: 1.0546875vw;
    line-height: 1.0546875vw;
  }
  .all-projects-page .projects-item .project-text {
    font-size: 0.78125vw;
    line-height: 1.1328125vw;
  }
  .running-line_project {
    padding: 1.0416666667vw 0;
  }
  .running-line_project .running_line_inner {
    font-size: 1.6145833333vw;
    margin-right: 0.2083333333vw;
  }
  .running-line_project .running_line_inner div {
    margin-right: 0.2083333333vw;
  }
  .running-line_portfolio .running_line_inner {
    font-size: 2.2916666667vw;
    margin-right: 0.2083333333vw;
  }
  .running-line_portfolio .running_line_inner div {
    margin-right: 0.5208333333vw;
  }
  .service-webdev-page .portfolio-s2 .running-line_portfolio, .service-google-page .portfolio-s2 .running-line_portfolio {
    height: 6.6666666667vw;
    padding: 0.9895833333vw 0;
  }
}
@media all and (max-width: 1920px) and (min-width: 769px) {
  .portfolio .project-info {
    bottom: 3.28125vw;
    right: 3.6458333333vw;
  }
}
@media all and (max-width: 1600px) and (min-width: 769px) {
  .portfolio .marq {
    font-size: 2.75vw;
  }
  .portfolio .more-button {
    font-size: 2.25vw;
  }
  .portfolio .more-button .figure1 {
    width: 2.75vw;
    height: 2.75vw;
  }
  .service-webdev-page .portfolio .marq-wr {
    height: 8.125vw;
  }
  .service-facebook-page .portfolio-s1 {
    padding-bottom: 60px;
  }
  .portfolio-s1 .title {
    font-size: 6.9375vw;
    letter-spacing: 0.1875;
  }
  .portfolio-s2 .title1 {
    font-size: 6vw;
  }
  .service-google-page .portfolio-s2 .marq-wr {
    height: 8.125vw;
  }
}
@media all and (max-width: 1440px) and (min-width: 769px) {
  .portfolio-s1 {
    padding-bottom: 50px;
  }
  .portfolio-s2 {
    padding-bottom: 70px;
  }
  .service-google-page .portfolio-s2 .more-button-wr {
    margin-bottom: 100px;
  }
  .service-webdev-page .portfolio-s2 {
    padding-top: 8.3333333333vw;
    padding-bottom: 6.9444444444vw;
  }
}
@media all and (max-width: 1280px) and (min-width: 769px) {
  .portfolio-s2 .title2 {
    font-size: 26px;
  }
  .portfolio-s2 .projects.owl-carousel.owl-rtl .slider-navigation {
    margin-bottom: 17.34375vw;
  }
}
@media all and (max-width: 1152px) and (min-width: 769px) {
  .portfolio .project-title2 {
    font-size: 2.34375vw;
  }
}
@media all and (max-width: 1024px) {
  .portfolio-s2 .projects.owl-carousel.owl-rtl .slider-navigation {
    width: 95%;
    right: 0;
    margin-right: auto;
    margin-left: auto;
  }
  .portfolio-s2 .projects.owl-carousel.owl-rtl .owl-dots .owl-dot.active {
    height: 4px;
    margin-top: -2px;
  }
  .single-project.postid-681 .portfolio-s2 {
    padding-top: 100px;
  }
  .portfolio-s1 .project .project_bage {
    width: 12.6953125vw;
  }
  .all-projects-page .projects-item .project_bage {
    width: 9.765625vw;
  }
  .portfolio .project .project_bage {
    width: 12.6953125vw;
  }
}
@media all and (max-width: 992px) and (max-width: 769px) {
  .portfolio-s1 .project .project_bage {
    width: 22.4609375vw;
  }
  .all-projects-page .projects-item .project_bage {
    width: 19.53125vw;
  }
  .portfolio .project .project_bage {
    width: 22.4609375vw;
  }
}
@media all and (min-width: 550px) and (max-width: 769px) {
  .portfolio-s2 .projects-slider.projects.owl-carousel.owl-rtl .owl-item {
    min-width: auto;
  }
}
@media all and (max-width: 425px) {
  .all-projects-page .page-head .row1-title {
    font-size: 11.7647058824vw;
  }
  .all-projects-page .page-head .row2-text {
    font-size: 3.2941176471vw;
  }
  .all-projects-page .projects-item .project-info {
    right: 4.4705882353vw;
    bottom: 2.8235294118vw;
  }
  .all-projects-page .projects-item .project-title2 {
    font-size: 4.2352941176vw;
  }
  .all-projects-page .projects-item .project-text {
    font-size: 3.7647058824vw;
  }
  .home-page .portfolio-s1 .title {
    font-size: 7.5294117647vw;
  }
  .service-webdev-page .portfolio-s2 .running-line_portfolio .running_line_inner {
    font-size: 6.3529411765vw;
  }
  .service-google-page .portfolio-s2 .running-line_portfolio {
    height: 14.8235294118vw;
  }
  .service-google-page .portfolio-s2 .running-line_portfolio .running_line_inner {
    font-size: 5.1764705882vw;
  }
  .running-line_portfolio {
    height: 14.8235294118vw;
  }
  .running-line_project {
    padding: 2.3529411765vw 0;
  }
  .running-line_project .running_line_inner {
    font-size: 3.2941176471vw;
  }
}
.business-growth {
  position: relative;
  z-index: 1;
  padding: 120px 0 170px;
}

@media all and (min-width: 769px) {
  .service-google-page .business-growth {
    padding: 140px 0 0;
  }
  .service-google-page .business-growth .inner {
    margin-bottom: 165px;
  }
  .service-google-page .business-growth .row {
    padding-right: 4.5%;
  }
  .service-google-page .business-growth .col1-title1 {
    margin-bottom: 30px;
  }
  .service-google-page .business-growth .col1-title2:before {
    margin: 2px 0 0 10px;
  }
  .service-google-page .business-growth .col1-title2::after {
    top: 25px;
    left: -15px;
  }
  .service-google-page .business-growth .col2-title1 {
    padding: 126px 15px 80px 50px;
    line-height: 100%;
  }
  .service-google-page .business-growth .col2-line {
    right: -75px;
  }
  .service-google-page .business-growth .col2-title2 {
    right: -110px;
  }
  .service-google-page .business-growth .talk-button {
    left: 65px;
  }
  .service-google-page .business-growth .marq-wr.-style1 {
    height: 72px;
    padding-top: 10px;
  }
  .service-google-page .business-growth .marq-wr.-style1 .marq {
    font-size: 31px;
    line-height: 111.5%;
  }
}
.service-webdev-page .business-growth,
.web-design-page .business-growth {
  padding: 100px 0 0;
}

.service-webdev-page .business-growth .business-growth-bottom-line,
.web-design-page .business-growth .business-growth-bottom-line {
  display: block;
  position: absolute;
  top: 780px;
  width: 1714px;
  left: 204px;
  height: 283px;
  background-image: url(https://qa.wemake.co.il/mod/business-growth/img/webdev-buisness-line.svg);
  background-position: right bottom;
  background-repeat: no-repeat;
  background-size: contain;
  transform: rotate(5.36deg);
}

.service-webdev-page .business-growth .inner,
.web-design-page .business-growth .inner {
  margin-bottom: 304px;
}

.service-webdev-page .business-growth .row,
.web-design-page .business-growth .row {
  padding-right: 60px;
  padding-left: 60px;
}

.service-webdev-page .business-growth .col1-title1,
.web-design-page .business-growth .col1-title1 {
  margin-bottom: 27px;
}

.service-webdev-page .business-growth .col1-title2 .part1,
.web-design-page .business-growth .col1-title2 .part1 {
  letter-spacing: 2px;
  margin-left: 25px;
}

.service-webdev-page .business-growth .col1-title2:before,
.web-design-page .business-growth .col1-title2:before {
  margin: 5px 0 0 10px;
}

.service-webdev-page .business-growth .col1-title2:after,
.web-design-page .business-growth .col1-title2:after {
  top: 30px;
  left: -10px;
}

.service-webdev-page .business-growth .col1,
.web-design-page .business-growth .col1 {
  margin-left: 35px;
}

.service-webdev-page .business-growth .col2-title1,
.web-design-page .business-growth .col2-title1 {
  padding: 125px 0 80px;
  line-height: 100%;
}

.service-webdev-page .business-growth .talk-button,
.web-design-page .business-growth .talk-button {
  left: 0px;
}

.service-webdev-page .business-growth .marq-wr,
.web-design-page .business-growth .marq-wr {
  height: 70px;
}

.service-webdev-page .business-growth .marq-wr .marq,
.web-design-page .business-growth .marq-wr .marq {
  font-size: 31px;
}

.branding-page .business-growth {
  padding: 120px 0 110px;
}
.branding-page .business-growth .row {
  padding-right: 3.5%;
}
.branding-page .business-growth .col1-title1 {
  margin-bottom: 25px;
}
.branding-page .business-growth .col1-title1 .part1 {
  margin-left: 25px;
}
.branding-page .business-growth .col1-title2:before {
  margin: 8px 0 0 10px;
}
.branding-page .business-growth .col1-title2::after {
  top: 30px;
  left: -10px;
}
.branding-page .business-growth .col2-line {
  right: -75px;
}
.branding-page .business-growth .col1 {
  margin-left: 35px;
}
.branding-page .business-growth .col2-title1 {
  padding: 120px 0 125px;
}
.branding-page .business-growth .talk-button {
  left: 40px;
  top: -110px;
}

@media all and (min-width: 769px) {
  .service-facebook-page .business-growth {
    padding: 73px 0 0;
  }
  .service-facebook-page .business-growth .inner {
    margin-bottom: 264px;
    position: relative;
  }
  .service-facebook-page .business-growth .col1-title2:before, .service-facebook-page .business-growth .col1-title2:after {
    border-color: #fff;
  }
  .service-facebook-page .business-growth .col2-line {
    border-color: #fff;
  }
  .service-facebook-page .business-growth .col2-line:before, .service-facebook-page .business-growth .col2-line:after {
    background: #fff;
  }
  .service-facebook-page .business-growth .marq-wr {
    height: 70px;
  }
  .service-facebook-page .business-growth .marq-wr .marq {
    font-size: 31px;
  }
  .service-facebook-page .business-growth .shine-eff {
    width: 1350px;
    top: 50%;
    left: 50%;
    margin: -100px 0 0 -450px;
    transform: rotate(50deg);
  }
  .service-facebook-page .business-growth .shine-eff:before, .service-facebook-page .business-growth .shine-eff:after {
    width: 900px;
    height: 900px;
  }
  .service-facebook-page .business-growth .talk-button-wrap.desktop- {
    position: absolute;
    bottom: 80px;
    left: 0;
  }
  .service-facebook-page .business-growth .talk-button-wrap.desktop- .talk-button {
    color: #fff;
    left: 60px;
    top: -35px;
  }
  .service-facebook-page .business-growth .talk-button-wrap.desktop- .talk-button::before {
    background: #116FFF;
  }
  .service-facebook-page .business-growth .talk-button-wrap.desktop- .talk-button .figure1 {
    transform: scale(-1, 1);
  }
  .service-facebook-page .business-growth .row {
    padding-right: 4.5%;
  }
  .service-facebook-page .business-growth .row .col1-title1 {
    margin-bottom: 30px;
  }
  .service-facebook-page .business-growth .row .col1-title2:before {
    margin: 2px 0 0 10px;
  }
  .service-facebook-page .business-growth .row .col1-title2::after {
    top: 25px;
    left: -15px;
  }
  .service-facebook-page .business-growth .row .col2-title1 {
    padding: 103px 15px 100px 50px;
    line-height: 100%;
  }
  .service-facebook-page .business-growth .row .col2-line {
    right: -75px;
  }
  .service-facebook-page .business-growth .row .col2-title2 {
    right: -110px;
  }
}
@media all and (min-width: 769px) {
  .service-seo-page .business-growth {
    padding: 200px 0 165px;
  }
  .service-seo-page .business-growth .col1-title1 {
    margin-bottom: 30px;
  }
  .service-seo-page .business-growth .col1-title2::before {
    margin: 2px 0 0 10px;
  }
  .service-seo-page .business-growth .col1-title2::after {
    top: 25px;
    left: -15px;
  }
  .service-seo-page .business-growth .col1-title2 .part1 {
    letter-spacing: 5px;
  }
  .service-seo-page .business-growth .col2-title1 {
    margin: 190px 0 33px;
    padding: 125px 20px 170px 0;
    line-height: 100%;
  }
  .service-seo-page .business-growth .col2-title2 {
    right: -105px;
  }
  .service-seo-page .business-growth .col2-line {
    right: -65px;
  }
  .service-seo-page .business-growth .marq-wr, .service-seo-page .business-growth .md-marquee-wr {
    height: 0;
  }
  .service-seo-page .business-growth .running-line {
    display: none;
  }
}
.service-seo-page .business-growth .talk-button-wrap {
  display: none;
}

@media all and (min-width: 769px) {
  .web-design-page .business-growth {
    padding: 135px 0 0;
  }
  .web-design-page .business-growth .inner {
    margin-bottom: 275px;
  }
  .web-design-page .business-growth .row {
    padding-right: 50px;
  }
  .web-design-page .business-growth .col1 {
    margin-left: 43px;
    max-width: 440px;
    min-width: 440px;
  }
  .web-design-page .business-growth .col1-title1 {
    display: none;
  }
  .web-design-page .business-growth .col1-title2 {
    justify-content: flex-end;
  }
  .web-design-page .business-growth .col1-title2::before {
    min-width: 42px;
  }
  .web-design-page .business-growth .parts {
    white-space: nowrap;
  }
  .web-design-page .business-growth .col2-title1 {
    padding: 80px 0 80px 50px;
    margin: 155px 0 40px;
  }
  .web-design-page .business-growth .col2-title2 .part3 {
    display: none;
  }
  .web-design-page .business-growth .talk-button {
    top: -80px;
    left: 225px;
  }
  .web-design-page .business-growth .business-growth-bottom-line {
    background-image: url(https://qa.wemake.co.il/mod/business-growth/img/webdesign-buisness-line.svg);
    transform: rotate(-0.1deg);
    top: auto;
    bottom: 120px;
    left: 244px;
  }
  .web-design-page .business-growth .md-marquee-wr_bg {
    height: 0;
  }
}
.business-growth .inner {
  max-width: 1340px;
}
.business-growth .row {
  padding-right: 9.5%;
  display: flex;
}
.business-growth .col1 {
  max-width: 500px;
  min-width: 500px;
  margin-left: 25px;
}
.business-growth .col2 {
  flex-grow: 1;
}
.business-growth .col1-title1, .business-growth .col1-title2 {
  font-weight: 800;
}
.business-growth .col1-title1 {
  font-size: 32px;
  margin-bottom: 10px;
}
.business-growth .col1-title2 {
  position: relative;
  z-index: 1;
  display: flex;
}
.business-growth .col1-title2:before, .business-growth .col1-title2:after {
  content: "";
  display: block;
}
.business-growth .col1-title2:before {
  width: 42px;
  height: 42px;
  border: 11px solid #000;
  margin: 18px 0 0 10px;
  border-radius: 50%;
}
.business-growth .col1-title2:after {
  position: absolute;
  z-index: -1;
  top: 45px;
  left: 5px;
  width: 610px;
  height: 60px;
  border: 2px solid #000;
  transform: rotate(15deg);
  border-radius: 50%;
}
.business-growth .col1-title2 .part1 {
  font-size: 135px;
  display: inline-block;
  margin-left: 20px;
}
.business-growth .col1-title2 .part2 {
  font-size: 36px;
}
.business-growth .col1-title2 .part3 {
  font-size: 96px;
}
.business-growth .col2-title1 {
  position: relative;
  margin: 190px 0 20px;
  padding: 120px 0 160px;
  font-size: 48px;
  font-weight: 800;
  line-height: 47px;
}
.business-growth .col2-title1 strong {
  background: linear-gradient(270deg, #116FFF 0%, #1066F0 100%);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}
.business-growth .col2-bottom-wr {
  position: relative;
}
.business-growth .col2-title2 {
  position: relative;
  right: -125px;
  padding-left: 150px;
  white-space: nowrap;
  font-weight: 900;
}
.business-growth .col2-title2 .part1 {
  position: absolute;
  bottom: 0;
  left: 100%;
  margin-left: 15px;
  font-size: 36px;
}
.business-growth .col2-title2 .part2 {
  display: inline-block;
  margin-left: 30px;
  font-size: 96px;
  line-height: 75px;
}
.business-growth .col2-title2 .part3 {
  font-size: 32px;
}
.business-growth .col2-line {
  position: absolute;
  top: 0;
  bottom: 0;
  right: -85px;
  width: 1px;
  border-right: 1px dotted #000;
}
.business-growth .col2-line:before, .business-growth .col2-line:after {
  content: "";
  display: block;
  position: absolute;
  right: -5px;
  width: 9px;
  height: 9px;
  background: #000;
  border-radius: 50%;
}
.business-growth .col2-line:before {
  top: 0;
}
.business-growth .col2-line:after {
  bottom: 0;
}
.business-growth .talk-button {
  position: absolute;
  left: 50px;
  top: -40px;
}
.business-growth .talk-button:hover {
  color: #000;
}
.business-growth .running-line {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(270deg, #FAFF00 -1.15%, #8FFF00 101.14%);
  padding: 20px 0;
  height: 72px;
}
.business-growth .running-line .running_line_inner {
  display: flex;
  font-family: "Unbounded", "sans-serif";
  font-size: 31px;
  line-height: 100%;
  text-transform: uppercase;
  color: #000;
  position: relative;
  white-space: nowrap;
  margin-right: 6px;
  animation-name: running;
  animation-duration: 80s;
  animation-iteration-count: infinite;
  animation-direction: reverse;
  animation-timing-function: linear;
}
.business-growth .running-line .running_line_inner div {
  margin-right: 6px;
}

@keyframes running {
  0% {
    transform: translate(-100%, 0);
  }
  50% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(100%, 0);
  }
}
@media all and (max-width: 768px) {
  .business-growth {
    padding: 70px 0 40px;
  }
  .service-google-page .business-growth {
    padding: 20px 0 0;
  }
  .service-google-page .business-growth .inner {
    margin-bottom: 42px;
  }
  .service-google-page .business-growth .col1 {
    padding-right: 35px;
  }
  .service-google-page .business-growth .col1-title1 {
    margin-bottom: 17px;
  }
  .service-google-page .business-growth .col1-title2:before {
    margin-top: 2px;
  }
  .service-google-page .business-growth .col1-title2:after {
    top: 15px;
    left: -10px;
  }
  .service-google-page .business-growth .col2-title1 {
    padding: 152px 15px 127px 80px;
  }
  .service-google-page .business-growth .col2-title2 {
    max-width: 330px;
  }
  .service-google-page .business-growth .col2-bottom-wr .talk-button.desktop- {
    display: none;
  }
  .service-google-page .business-growth .talk-button-wrap {
    display: flex;
    max-width: 351px;
    margin: 20px auto 0;
  }
  .service-google-page .business-growth .business-growth-bottom-line {
    bottom: 56px;
  }
  .service-google-page .business-growth .col2-line {
    left: 50px;
  }
  .service-google-page .business-growth .marq-wr {
    display: flex;
    height: 34px;
  }
  .service-google-page .business-growth .marq-wr .marq {
    font-size: 14px;
  }
  .service-facebook-page .business-growth {
    background: #fff;
    color: #000;
    padding: 80px 0 0;
    margin: 0;
  }
  .service-facebook-page .business-growth .inner {
    margin-bottom: 60px;
    padding: 0 4%;
  }
  .service-facebook-page .business-growth .col1 {
    padding-right: 20px;
  }
  .service-facebook-page .business-growth .col1-title1 {
    margin-bottom: 16px;
  }
  .service-facebook-page .business-growth .col1-title2:before {
    margin-top: 2px;
  }
  .service-facebook-page .business-growth .col1-title2:after {
    top: 15px;
    left: -5px;
  }
  .service-facebook-page .business-growth .col2-title1 {
    padding: 151px 0 130px 70px;
  }
  .service-facebook-page .business-growth .shine-eff {
    display: none;
  }
  .service-facebook-page .business-growth .col1-title2::before,
  .service-facebook-page .business-growth .col1-title2:after {
    border-color: #000;
  }
  .service-facebook-page .business-growth .marq-wr {
    height: 35px;
  }
  .service-facebook-page .business-growth .col2-line {
    border-color: #000;
  }
  .service-facebook-page .business-growth .col2-line:before, .service-facebook-page .business-growth .col2-line:after {
    background: #000;
  }
  .service-facebook-page .business-growth .business-growth-bottom-line {
    bottom: 70px;
  }
  .service-facebook-page .business-growth .talk-button-wrap {
    margin: 21px auto 0;
  }
  .service-facebook-page .business-growth .talk-button-wrap.desktop- {
    display: none;
  }
  .service-facebook-page .business-growth .talk-button {
    width: 95px;
    height: 95px;
    padding: 34px 11px;
    right: 35px;
  }
  .service-facebook-page .business-growth .talk-button .button-text {
    color: #000;
  }
  .service-seo-page .business-growth {
    padding: 70px 0 0px;
  }
  .service-seo-page .business-growth .inner {
    padding-bottom: 38px;
  }
  .service-seo-page .business-growth .col1-title1 {
    margin: 0 50px 12px auto;
  }
  .service-seo-page .business-growth .col1-title2 {
    margin: 0 50px 0 auto;
  }
  .service-seo-page .business-growth .col1-title2:before {
    border-width: 8px;
    margin-top: 5px;
  }
  .service-seo-page .business-growth .col1-title2::after {
    top: 18px;
    left: -7px;
  }
  .service-seo-page .business-growth .col2-title1 {
    margin: 0 auto 14px;
  }
  .service-seo-page .business-growth .talk-button-wrap {
    display: flex;
  }
  .service-seo-page .business-growth .business-growth-bottom-line {
    bottom: 56px;
  }
  .service-seo-page .business-growth .marq-wr {
    display: flex;
    height: 34px;
  }
  .service-seo-page .business-growth .marq-wr .marq {
    font-size: 14px;
  }
  .branding-page .business-growth {
    padding: 60px 0 0;
  }
  .branding-page .business-growth .inner {
    padding-bottom: 42px;
  }
  .branding-page .business-growth .row {
    padding-right: 0;
  }
  .branding-page .business-growth .col1 {
    margin-left: 0;
  }
  .branding-page .business-growth .col1-title1 {
    margin-bottom: 15px;
  }
  .branding-page .business-growth .col1-title2::after {
    top: 15px;
  }
  .branding-page .business-growth .col2-title1 {
    padding: 150px 0 125px;
  }
  .branding-page .business-growth .col2-title1 p {
    max-width: 283px;
  }
  .branding-page .business-growth .col2-line {
    right: auto;
  }
  .branding-page .business-growth .talk-button-wrap {
    height: 0;
  }
  .branding-page .business-growth .talk-button {
    left: auto;
    right: 35px;
    top: -60px;
    margin: 0 0 0 auto;
    width: 95px;
    height: 95px;
  }
  .branding-page .business-growth .running-line {
    display: flex;
  }
  .branding-page .business-growth .business-growth-bottom-line {
    bottom: 65px;
    left: 45px;
    right: 0;
    background-size: contain;
  }
  .business-growth .row {
    padding: 0;
    display: block;
  }
  .business-growth .col1 {
    max-width: none;
    min-width: 0;
    margin: 0;
  }
  .business-growth .col1-title1,
  .business-growth .col1-title2 {
    max-width: 300px;
    margin: 0 auto;
  }
  .business-growth .col1-title1 {
    font-size: 19px;
  }
  .business-growth .col1-title2 {
    text-align: center;
    justify-content: center;
  }
  .business-growth .col1-title2:before {
    width: 25px;
    height: 25px;
    border-width: 6px;
    margin-top: 10px;
  }
  .business-growth .col1-title2:after {
    top: 25px;
    left: -15px;
    width: 360px;
    height: 40px;
    border-width: 1px;
  }
  .business-growth .col1-title2 .part1 {
    font-size: 80px;
  }
  .business-growth .col1-title2 .part2 {
    font-size: 20px;
  }
  .business-growth .col1-title2 .part3 {
    font-size: 57px;
  }
  .business-growth .col2-title1 {
    max-width: 380px;
    padding: 130px 0 150px 70px;
    margin: 0 auto 10px;
    font-size: 22px;
    line-height: 22px;
  }
  .business-growth .col2-line {
    right: auto;
    left: 60px;
  }
  .business-growth .col2-title2 {
    max-width: 310px;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: flex-end;
    position: static;
    padding: 0;
    margin: 0 auto;
    white-space: initial;
    text-align: left;
  }
  .business-growth .col2-title2 .part1,
  .business-growth .col2-title2 .part2 {
    margin: 0;
  }
  .business-growth .col2-title2 .part1 {
    order: 1;
    position: static;
    font-size: 21px;
  }
  .business-growth .col2-title2 .part2 {
    order: 2;
    font-size: 60px;
    line-height: 45px;
  }
  .business-growth .col2-title2 .part3 {
    width: 100%;
    order: 3;
    font-size: 24px;
    margin-top: 5px;
  }
  .business-growth .talk-button {
    position: relative;
    top: auto;
    left: auto;
    width: 108px;
    height: 108px;
    font-size: 15px;
    line-height: 16px;
    padding: 39px 16px;
  }
  .business-growth .talk-button-wrap {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    max-width: 320px;
    margin: 32px auto 0;
  }
  .business-growth .business-growth-bottom-line {
    display: block;
    position: absolute;
    bottom: 22px;
    left: 41.6470588235vw;
    right: 0;
    height: 96px;
    background-image: url(https://qa.wemake.co.il/mod/business-growth/img/business-growth-bottom-line.svg);
    background-position: left bottom;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .service-webdev-page .business-growth, .web-design-page .business-growth {
    padding: 45px 0 0;
  }
  .service-webdev-page .business-growth .inner, .web-design-page .business-growth .inner {
    margin-bottom: 39px;
    padding: 0 4%;
  }
  .service-webdev-page .business-growth .row, .web-design-page .business-growth .row {
    padding: 0;
  }
  .service-webdev-page .business-growth .col1, .web-design-page .business-growth .col1 {
    margin-left: 0px;
    padding-right: 30px;
  }
  .service-webdev-page .business-growth .col1-title1, .web-design-page .business-growth .col1-title1 {
    margin-bottom: 16px;
  }
  .service-webdev-page .business-growth .col1-title2, .web-design-page .business-growth .col1-title2 {
    max-width: 310px;
  }
  .service-webdev-page .business-growth .col1-title2:before, .web-design-page .business-growth .col1-title2:before {
    margin: 2px 0 0 10px;
    position: relative;
    right: -20px;
  }
  .service-webdev-page .business-growth .col1-title2:after, .web-design-page .business-growth .col1-title2:after {
    top: 7px;
  }
  .service-webdev-page .business-growth .parts, .web-design-page .business-growth .parts {
    margin-right: -25px;
  }
  .service-webdev-page .business-growth .parts .part1, .web-design-page .business-growth .parts .part1 {
    margin-left: 15px;
  }
  .service-webdev-page .business-growth .col2-title1, .web-design-page .business-growth .col2-title1 {
    padding: 150px 0 130px 85px;
  }
  .service-webdev-page .business-growth .talk-button-wrap.mobile-, .web-design-page .business-growth .talk-button-wrap.mobile- {
    justify-content: flex-start;
    max-width: 310px;
    margin: 22px auto 0;
  }
  .service-webdev-page .business-growth .talk-button, .web-design-page .business-growth .talk-button {
    left: -30px;
    width: 95px;
    height: 95px;
  }
  .service-webdev-page .business-growth .talk-button.desktop-, .web-design-page .business-growth .talk-button.desktop- {
    display: none;
  }
  .service-webdev-page .business-growth .marq-wr, .web-design-page .business-growth .marq-wr {
    height: 34px;
  }
  .service-webdev-page .business-growth .marq-wr .marq, .web-design-page .business-growth .marq-wr .marq {
    font-size: 14px;
    margin-top: 3px;
  }
  .service-webdev-page .business-growth .business-growth-bottom-line, .web-design-page .business-growth .business-growth-bottom-line {
    display: block;
    position: absolute;
    top: auto;
    bottom: 9.4117647059vw;
    width: 570px;
    left: 30px;
    right: auto;
    height: 84px;
    background-image: url(https://qa.wemake.co.il/mod/business-growth/img/business-growth-bottom-line_mob.svg);
    background-position: right bottom;
    background-repeat: no-repeat;
    background-size: contain;
    transform: rotate(5.36deg);
  }
  .web-design-page .business-growth {
    padding: 62px 0 0;
  }
  .web-design-page .business-growth .inner {
    margin-bottom: 28px;
    position: relative;
  }
  .web-design-page .business-growth .talk-button-wrap.mobile- {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    max-width: 270px;
    margin: 43px auto 0;
  }
  .web-design-page .business-growth .talk-button {
    width: 108px;
    height: 108px;
    font-size: 15px;
    line-height: 16px;
    padding: 39px 16px;
  }
  .web-design-page .business-growth .business-growth-bottom-line {
    display: block;
    position: absolute;
    bottom: -35px;
    left: 0;
    right: -295px;
    height: 84px;
    background-image: url(https://qa.wemake.co.il/mod/business-growth/img/business-growth-bottom-line_mob.svg);
    background-position: right bottom;
    background-repeat: no-repeat;
    background-size: contain;
    transform: rotate(5.761deg);
  }
  .business-growth .running-line {
    padding: 5px 0;
    height: 34px;
  }
  .business-growth .running-line .running_line_inner {
    font-size: 14px;
    margin-right: 4px;
    animation-duration: 50s;
  }
  .business-growth .running-line .running_line_inner div {
    margin-right: 4px;
  }
}
@media all and (max-width: 425px) {
  .service-features .feature-item .image-layers {
    position: relative;
    padding-left: 10px;
    width: 100%;
  }
  .business-growth .col1-title1,
  .business-growth .col1-title2 {
    max-width: 70.5882352941vw;
  }
  .business-growth .col1-title1 {
    font-size: 4.4705882353vw;
  }
  .business-growth .col1-title2:before {
    width: 5.8823529412vw;
    height: 5.8823529412vw;
  }
  .business-growth .col1-title2:after {
    top: 5.8823529412vw;
    left: -3.5294117647vw;
    width: 84.7058823529vw;
    height: 9.4117647059vw;
  }
  .business-growth .col1-title2 .part1 {
    font-size: 16.4705882353vw;
  }
  .business-growth .col1-title2 .part2 {
    font-size: 4.7058823529vw;
  }
  .business-growth .col1-title2 .part3 {
    font-size: 13.4117647059vw;
  }
  .business-growth .col2-title1 {
    max-width: 89.4117647059vw;
    padding: 30.5882352941vw 0 35.2941176471vw 16.4705882353vw;
    font-size: 5.1764705882vw;
    line-height: 5.1764705882vw;
  }
  .business-growth .col2-line {
    left: 14.1176470588vw;
  }
  .business-growth .col2-title2 {
    max-width: 72.9411764706vw;
  }
  .business-growth .col2-title2 .part1 {
    font-size: 4.9411764706vw;
  }
  .business-growth .col2-title2 .part2 {
    font-size: 14.1176470588vw;
    line-height: 10.5882352941vw;
  }
  .business-growth .col2-title2 .part3 {
    font-size: 5.6470588235vw;
  }
  .service-google-page .business-growth .inner {
    margin-bottom: 40px;
  }
  .service-google-page .business-growth .col2-bottom-wr {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
  }
  .service-google-page .business-growth .talk-button {
    margin: 20px 0 0 10px;
  }
  .web-design-page .business-growth .talk-button-wrap.mobile- {
    max-width: 63.5294117647vw;
  }
  .web-design-page .business-growth .business-growth-bottom-line {
    bottom: -8.2352941176vw;
    right: -69.4117647059vw;
    height: 19.7647058824vw;
  }
  .web-design-page .business-growth .col2-title1 {
    padding: 35.2941176471vw 0 30.5882352941vw 20vw;
  }
  .branding-page .business-growth .col1-title2::after {
    top: 3.5294117647vw;
  }
  .branding-page .business-growth .col2-title1 {
    padding: 35.2941176471vw 0 29.4117647059vw;
  }
  .branding-page .business-growth .col2-title1 p {
    max-width: 66.5882352941vw;
  }
}
@media all and (max-width: 360px) {
  .reports .feature-title {
    font-size: 40px;
  }
}

@media all and (max-width: 2560px) and (min-width: 769px) {
  .service-webdev-page .business-growth .md-marquee-wr, .web-design-page .business-growth .md-marquee-wr {
    font-size: 1.5598958333vw;
  }
  .business-growth .running-line {
    padding: 1.0416666667vw 0;
    height: 3.75vw;
  }
  .business-growth .running-line .running_line_inner {
    font-size: 1.6145833333vw;
    margin-right: 0.3125vw;
  }
  .business-growth .running-line .running_line_inner div {
    margin-right: 0.3125vw;
  }
}
@media all and (max-width: 1660px) and (min-width: 769px) {
  .business-growth {
    padding: 80px 0 110px;
  }
  .business-growth .row {
    padding-right: 7.8313253012vw;
  }
  .business-growth .col1 {
    max-width: 30.1204819277vw;
    min-width: 30.1204819277vw;
  }
  .business-growth .col1-title1 {
    font-size: 1.9277108434vw;
  }
  .business-growth .col1-title2:before {
    width: 2.5301204819vw;
    height: 2.5301204819vw;
    border-width: 0.6626506024vw;
    margin: 1.0843373494vw 0 0 0.6024096386vw;
  }
  .business-growth .col1-title2:after {
    top: 2.7108433735vw;
    left: 0.3012048193vw;
    width: 36.7469879518vw;
    height: 3.6144578313vw;
  }
  .business-growth .col1-title2 .part1 {
    font-size: 8.1325301205vw;
    margin-left: 1.2048192771vw;
  }
  .business-growth .col1-title2 .part2 {
    font-size: 2.1686746988vw;
  }
  .business-growth .col1-title2 .part3 {
    font-size: 5.7831325301vw;
  }
  .business-growth .col2-title1 {
    margin: 15vw 0 1.2048192771vw;
    padding: 7.2289156627vw 0 9.6385542169vw;
    font-size: 2.8915662651vw;
    line-height: 2.8313253012vw;
  }
  .business-growth .col2-title2 {
    right: -7.5301204819vw;
    padding-left: 9.0361445783vw;
  }
  .business-growth .col2-title2 .part1 {
    font-size: 2.1686746988vw;
  }
  .business-growth .col2-title2 .part2 {
    margin-left: 1.8072289157vw;
    font-size: 5.7831325301vw;
    line-height: 4.5180722892vw;
  }
  .business-growth .col2-title2 .part3 {
    font-size: 1.9277108434vw;
  }
  .business-growth .col2-line {
    right: -5.1204819277vw;
  }
  .service-facebook-page .business-growth .talk-button-wrap.desktop- {
    position: absolute;
    bottom: 4.8192771084vw;
  }
  .service-webdev-page .business-growth .business-growth-bottom-line {
    top: 50.1807228916vw;
    width: 103.2530120482vw;
    left: 12.2891566265vw;
    height: 283px;
  }
  .service-webdev-page .business-growth .marq-wr, .service-facebook-page .business-growth .marq-wr, .web-design-page .business-growth .marq-wr {
    height: 4.2168674699vw;
  }
  .service-webdev-page .business-growth .marq-wr .marq, .service-facebook-page .business-growth .marq-wr .marq, .web-design-page .business-growth .marq-wr .marq {
    font-size: 1.8674698795vw;
  }
  .service-google-page .business-growth .marq-wr.-style1 {
    height: 4.2168674699vw;
  }
  .service-google-page .business-growth .marq-wr.-style1 .marq {
    font-size: 1.8674698795vw;
  }
  .web-design-page .business-growth .inner {
    margin-bottom: 16.5662650602vw;
  }
  .web-design-page .business-growth .col1 {
    max-width: 30.1204819277vw;
    min-width: 30.1204819277vw;
  }
  .web-design-page .business-growth .col1-title2::before {
    min-width: 2.5301204819vw;
  }
  .web-design-page .business-growth .col2-title1 {
    margin: 9.3373493976vw 0 2.4096385542vw;
  }
  .web-design-page .business-growth .talk-button {
    top: -4.8192771084vw;
    left: 13.5542168675vw;
  }
  .web-design-page .business-growth .business-growth-bottom-line {
    bottom: 7.2289156627vw;
    left: 14.6987951807vw;
    width: 103.2530120482vw;
    height: 283px;
  }
}
@media all and (max-width: 1600px) and (min-width: 769px) {
  .service-facebook-page .business-growth {
    padding-top: 60px;
  }
}
@media all and (max-width: 1440px) and (min-width: 769px) {
  .service-google-page .business-growth .inner,
  .service-facebook-page .business-growth .inner,
  .service-webdev-page .business-growth .inner {
    margin-bottom: 10.4166666667vw;
  }
  .service-google-page .business-growth .business-growth-bottom-line,
  .service-facebook-page .business-growth .business-growth-bottom-line,
  .service-webdev-page .business-growth .business-growth-bottom-line {
    top: 40.5421686747vw;
  }
  .service-webdev-page .business-growth,
  .web-design-page .business-growth {
    padding-top: 60px;
  }
}
@media all and (max-width: 1360px) and (min-width: 769px) {
  .service-seo-page .business-growth .col1-title2 .parts, .service-webdev-page .business-growth .col1-title2 .parts, .web-design-page .business-growth .col1-title2 .parts {
    display: flex;
    align-items: flex-end;
  }
  .service-seo-page .business-growth .col1-title2 .part2, .service-webdev-page .business-growth .col1-title2 .part2, .web-design-page .business-growth .col1-title2 .part2 {
    margin-bottom: 17px;
  }
  .service-seo-page .business-growth .col1-title2 .part3, .service-webdev-page .business-growth .col1-title2 .part3, .web-design-page .business-growth .col1-title2 .part3 {
    margin-bottom: 5px;
    margin-right: 10px;
  }
  .service-seo-page .business-growth .col1-title2:before, .service-webdev-page .business-growth .col1-title2:before, .web-design-page .business-growth .col1-title2:before {
    width: 1.5vw;
    height: 1.5vw;
    min-width: 1.5vw;
    border-width: 0.4vw;
    margin: 2px 0 0 0;
  }
}
@media all and (max-width: 1280px) and (min-width: 769px) {
  .service-facebook-page .business-growth .shine-eff {
    width: 1050px;
    margin: -100px 0 0 -350px;
  }
  .service-facebook-page .business-growth .shine-eff::before, .service-facebook-page .business-growth .shine-eff::after {
    width: 720px;
    height: 720px;
  }
}
@media all and (max-width: 1024px) and (min-width: 769px) {
  .service-seo-page .business-growth {
    padding: 100px 0 100px;
  }
  .service-google-page .business-growth {
    padding: 100px 0 0;
  }
}
@media all and (max-width: 1000px) and (min-width: 769px) {
  .service-seo-page .business-growth .col1-title2 .part1,
  .service-webdev-page .business-growth .col1-title2 .part1,
  .web-design-page .business-growth .col1-title2 .part1 {
    margin-left: 10px;
  }
  .service-seo-page .business-growth .col1-title2 .part2,
  .service-webdev-page .business-growth .col1-title2 .part2,
  .web-design-page .business-growth .col1-title2 .part2 {
    margin-bottom: 12px;
  }
  .service-seo-page .business-growth .col1-title2::after,
  .service-webdev-page .business-growth .col1-title2::after,
  .web-design-page .business-growth .col1-title2::after {
    top: 12px;
  }
}
.footer {
  position: relative;
  z-index: 1;
  background: #000;
  padding-top: 63px;
  padding-bottom: 30px;
}
.home .footer {
  padding-top: 64px;
}
.footer, .footer a {
  color: #fff;
}
.footer .inner {
  max-width: 1350px;
}
.footer .row {
  display: flex;
  justify-content: space-between;
}
.footer .row1 {
  margin-bottom: 102px;
  max-width: 1330px;
}
.footer .menu-title {
  margin-bottom: 22px;
  font-size: 18px;
  font-weight: 700;
  font-family: "PloniBoldAAA";
}
.home .footer .menu-title {
  margin-bottom: 19px;
}
.footer .menu {
  font-size: 16px;
}
.footer .menu:not(:last-child) {
  margin-left: 20px;
}
.footer .menu ul {
  list-style: none;
}
.footer .menu ul li:not(:last-child) {
  margin-bottom: 7px;
}
.footer .menu a {
  display: flex;
  align-items: center;
  font-size: 18px;
}
.footer .menu a:hover {
  text-decoration: underline;
}
.footer .menu a:before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-left: 8px;
  background: #fff;
}
.footer .footer-logo {
  width: auto;
  height: 42px;
}
.footer .row2 {
  padding-bottom: 20px;
  margin-bottom: 10px;
  border-bottom: 1px solid #fff;
  align-items: flex-end;
}
.footer .contacts,
.footer .badges {
  display: flex;
  align-items: center;
}
.footer .contacts {
  margin: 0 0 5px 50px;
}
.footer .address {
  margin-left: 25px;
}
.footer .phone {
  font-size: 18px;
}
.footer .badge-pic:not(:last-child) {
  margin-left: 20px;
}
.footer .badge-pic:nth-of-type(1) {
  margin-left: 13px;
}
.footer .badge-pic:nth-of-type(2) {
  margin-left: 12px;
}
.footer .badge-pic img {
  width: 72px;
}
.footer .row3 {
  align-items: center;
}
.footer .social {
  display: flex;
  align-items: center;
  flex-grow: 1;
  margin-left: 50px;
}
.footer .social-title {
  margin-left: 40px;
  font-weight: 600;
  font-size: 16px;
  font-family: "SimplerPro";
  margin-top: 5px;
}
.footer .social-links {
  display: flex;
  justify-content: space-between;
  flex-grow: 1;
  max-width: 410px;
  font-size: 16px;
  margin-top: 5px;
}
.footer .social-links a:not(:last-child) {
  margin-left: 20px;
}

@media all and (max-width: 768px) {
  .footer {
    padding: 15px 0 58px;
  }
  .home .footer {
    padding: 15px 0 58px;
  }
  .footer .row1 {
    margin-bottom: 70px;
    display: block;
  }
  .footer .mobile-footer-menu ul {
    list-style: none;
  }
  .footer .mobile-footer-menu a {
    display: flex;
    align-items: center;
  }
  .footer .mobile-footer-menu > ul > li {
    border-bottom: 2px solid rgba(255, 255, 255, 0.7);
  }
  .footer .mobile-footer-menu > ul > li.menu-item-has-children > a {
    padding-bottom: 8px;
    font-weight: 700;
    font-family: "PloniBoldAAA";
  }
  .footer .mobile-footer-menu > ul > li > a {
    padding: 25px 0 26px;
    font-size: 24px;
    font-weight: 600;
    justify-content: space-between;
  }
  .footer .mobile-footer-menu > ul > li > a:after {
    content: "";
    display: block;
    margin-right: 20px;
    width: 13px;
    height: 13px;
    background: url(https://qa.wemake.co.il/mod/footer/img/footer-menu-arr.svg);
    transition: 0.3s;
    -webkit-transition: 0.3s;
  }
  .footer .mobile-footer-menu > ul > li.-open > a::after {
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
  }
  .footer .mobile-footer-menu > ul > li > ul.sub-menu {
    height: 0;
    transition: 0.3s;
    transform: scaleY(0);
    transform-origin: top;
  }
  .footer .mobile-footer-menu > ul > li > ul a {
    font-size: 16px;
  }
  .footer .mobile-footer-menu > ul > li > ul a:before {
    content: "";
    display: block;
    width: 7px;
    height: 7px;
    margin-left: 8px;
    background: #fff;
  }
  .footer .mobile-footer-menu > ul > li > ul li:not(:last-child) {
    margin-bottom: 10px;
  }
  .footer .mobile-footer-menu > ul > li.-open > ul.sub-menu {
    height: auto;
    transform: scaleY(1);
    margin-bottom: 25px;
  }
  .footer .row2 {
    display: block;
    padding-bottom: 25px;
    margin-bottom: 20px;
  }
  .footer .contacts {
    margin: 0 0 20px;
    font-size: 18px;
  }
  .footer .badges {
    justify-content: space-between;
  }
  .footer .social {
    margin: 0;
  }
  .footer .social-links {
    max-width: 100%;
  }
  .wm-poweredby .inner {
    padding: 15px 0 9px;
  }
}

@media all and (max-width: 1024px) and (min-width: 769px) {
  .footer .menu a {
    font-size: 16px;
  }
}
@media all and (max-width: 960px) and (min-width: 769px) {
  .footer .badge-pic img {
    height: 44px;
    width: 44px;
  }
}
.wm-poweredby {
  background-color: #000;
  direction: ltr;
  z-index: 1;
  position: relative;
}
.wm-poweredby[data-dot-effect="1"] .wm-poweredby-letter.l1:before, .wm-poweredby[data-dot-effect="2"] .wm-poweredby-letter.l2:before, .wm-poweredby[data-dot-effect="3"] .wm-poweredby-letter.l3:before, .wm-poweredby[data-dot-effect="4"] .wm-poweredby-letter.l4:before, .wm-poweredby[data-dot-effect="5"] .wm-poweredby-letter.l5:before, .wm-poweredby[data-dot-effect="6"] .wm-poweredby-letter.l6:before {
  visibility: visible;
  animation: jump-animation 0.5s linear;
}
.wm-poweredby[data-dot-effect="7"] .wm-poweredby-letter.l6:after {
  visibility: visible;
  animation: jump-animation-final 0.5s linear;
}
.wm-poweredby .inner {
  text-align: center;
  padding: 15px 0 24px;
  font-size: 14px;
  color: #D7D7D7;
}
.wm-poweredby .inner, .wm-poweredby .wm-poweredby-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
.wm-poweredby .wm-poweredby-text {
  margin-top: 1px;
  display: inline-block;
}
.wm-poweredby .wm-poweredby-letter {
  width: 15px;
  height: 15px;
  position: relative;
}
.wm-poweredby .wm-poweredby-letter:before, .wm-poweredby .wm-poweredby-letter.l6:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 100%;
  right: 50%;
  margin: 0 -4px -2px;
  width: 6px;
  height: 6px;
  background-color: #747676;
  visibility: hidden;
  border-radius: 50%;
}
.wm-poweredby .wm-poweredby-letter.fill path {
  animation: letter-push-animation 0.3s linear;
}
.wm-poweredby .wm-poweredby-letter.hide-dot.l6:after {
  visibility: hidden;
}
.wm-poweredby .wm-poweredby-letter.l1.fill path, .wm-poweredby .wm-poweredby-letter.l2.fill path {
  fill: #116FFF;
}
.wm-poweredby .wm-poweredby-letter.l2 {
  left: -2px;
}
.wm-poweredby .wm-poweredby-letter.l3 {
  left: -3px;
}
.wm-poweredby .wm-poweredby-letter.l3:before {
  margin-right: -3px;
}
.wm-poweredby .wm-poweredby-letter.l4 {
  left: -4px;
}
.wm-poweredby .wm-poweredby-letter.l4:before {
  margin-right: -1px;
}
.wm-poweredby .wm-poweredby-letter.l5 {
  left: -8px;
}
.wm-poweredby .wm-poweredby-letter.l5:before {
  margin-right: -1px;
}
.wm-poweredby .wm-poweredby-letter.l5 .wm-poweredby-svg {
  position: absolute;
  top: -2px;
  right: 0;
  height: 16px;
}
.wm-poweredby .wm-poweredby-letter.l6 {
  left: -13px;
}
.wm-poweredby .wm-poweredby-letter.l6:before, .wm-poweredby .wm-poweredby-letter.l6:after {
  margin-right: -2px;
}
.wm-poweredby .wm-poweredby-letter.l6 .wm-poweredby-svg {
  position: absolute;
  top: -3px;
  right: 0;
  height: 21px;
}
.wm-poweredby .wm-poweredby-svg {
  position: relative;
  z-index: 1;
  display: inline-block;
  width: 100%;
  height: 100%;
}
.wm-poweredby .wm-poweredby-svg path {
  fill: #D7D7D7;
  transition: all 0.7s linear;
}

@keyframes jump-animation {
  0% {
    transform: translateX(-13px) translateY(0);
  }
  50% {
    transform: translateX(-6px) translateY(-10px);
  }
  100% {
    transform: translateX(0) translateY(0);
  }
}
@keyframes letter-push-animation {
  0% {
    transform: translateY(6px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes jump-animation-final {
  0% {
    transform: translateX(0) translateY(0);
  }
  50% {
    transform: translateX(6px) translateY(-10px);
  }
  100% {
    opacity: 0;
    transform: translateX(13px) translateY(0);
  }
}
@media all and (max-width: 768px) {
  body .wm-poweredby .inner {
    padding: 15px 0 9px;
  }
}
