@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 {
  position: relative;
  z-index: 1;
  padding: 190px 0 0;
}
.service-features .feature-title {
  margin-bottom: 5px;
}
.service-features .feature-subtitle {
  margin-bottom: 20px;
}
.service-features .feature-text {
  line-height: 28px;
}
.service-features [class*=-bc-gr-]:before {
  top: -2px;
  bottom: 3px;
  transform: none;
  border-radius: 4px;
}
.service-features .-bc-gr-green:before {
  background: linear-gradient(261.61deg, #FCFF67, #05E500, #FCFF67, #05E500, #FCFF67);
  animation: gradient 10s ease infinite;
  background-size: 300%;
}

.service-features1 {
  padding: 145px 0 233px;
}
.service-features1 .inner {
  max-width: 1600px;
}
.service-features1 .top-wr {
  max-width: 1340px;
  margin: 0 100px 0 auto;
  display: flex;
  justify-content: space-between;
  margin-bottom: 110px;
}
.service-features1 .top-info {
  margin-left: 50px;
  max-width: 520px;
}
.service-features1 .top-title1 {
  font-size: 36px;
  margin-bottom: 20px;
  max-width: 461px;
}
.service-features1 .top-title1 .-bc-gr-green:before {
  top: -1px;
  bottom: 0;
  left: -6px;
  right: -6px;
}
.service-features1 .top-text {
  color: #FCFCFC;
  font-size: 24px;
  line-height: 119.478%;
}
.service-features1 .top-title2 {
  font-size: 310px;
  font-weight: 800;
  line-height: 280px;
  margin-top: 17px;
  margin-left: 5px;
}
.service-features1 .group-title {
  font-size: 96px;
  font-weight: 800;
  margin-bottom: 120px;
  padding-right: 95px;
}
.service-features1 .feature-text {
  color: #FCFCFC;
}
.service-features1 .feature-item:nth-child(1) .line.-v {
  top: 32px;
}
.service-features1 .feature-item:nth-child(1) .feature-col {
  min-height: 530px;
}
.service-features1 .feature-item:nth-child(1) .feature-image {
  padding-right: 5%;
  padding-top: 32px;
}
.service-features1 .feature-item:nth-child(1) .feature-image .image-layers.desktop- {
  max-width: 590px;
}
.service-features1 .feature-item:nth-child(1) .feature-info {
  padding-right: 6.4%;
  padding-top: 9px;
}
.service-features1 .feature-item:nth-child(1) .feature-info .line.-dot {
  top: 22px;
  margin-right: 195px;
}
.service-features1 .feature-item:nth-child(2) .feature-col {
  min-height: 640px;
}
.service-features1 .feature-item:nth-child(2) .feature-info {
  padding-top: 9.5%;
  padding-right: 12.2%;
}
.service-features1 .feature-item:nth-child(2) .feature-image {
  padding-left: 5.7%;
  padding-top: 36px;
}
.service-features1 .feature-item:nth-child(2) .feature-image .image-layers.desktop- {
  max-width: 619px;
}
.service-features1 .feature-item:nth-child(3) .feature-image {
  padding-right: 38px;
  padding-top: 45px;
}
.service-features1 .feature-item:nth-child(3) .feature-image .image-layers.desktop- {
  max-width: 753px;
}
.service-features1 .feature-item:nth-child(3) .feature-col {
  min-height: 830px;
}
.service-features1 .feature-item:nth-child(3) .feature-info {
  padding-top: 15.3%;
  padding-right: 6.3%;
}
.service-features1 .feature-item:nth-child(4) .line.-v {
  bottom: auto;
  height: 283px;
}
.service-features1 .feature-item:nth-child(4) .feature-image {
  padding-left: 65px;
  padding-top: 50px;
}
.service-features1 .feature-item:nth-child(4) .feature-image .image-layers {
  max-width: 742px;
  margin-right: -7px;
}
.service-features1 .feature-item:nth-child(4) .feature-image .image-layers .layer-pic:nth-child(2) {
  z-index: 1;
}
.service-features1 .feature-item:nth-child(4) .feature-info {
  padding-top: 16.4%;
  padding-right: 12.2%;
}
.service-features1 .feature-item:nth-child(4) .feature-info .feature-title {
  max-width: 100%;
}
.service-features1 .feature-item:nth-child(4) .feature-info .line.-dot {
  top: 20px;
}
.service-features1 .shine-eff {
  opacity: 0.9;
  width: 960px;
  top: 560px;
  left: 50%;
  margin-left: 130px;
  transform: rotate(40deg);
}
@media all and (min-width: 769px) {
  .service-features1 .shine-eff.-an-rotate {
    animation: shine-rotate-small 30s infinite linear;
  }
}
.service-features1 .shine-eff:before, .service-features1 .shine-eff:after {
  width: 600px;
  height: 600px;
}

.service-features2 {
  padding: 249px 0 61px;
}
.service-features2 .inner {
  max-width: 1500px;
}
.service-features2 .top-wr {
  display: flex;
  margin-bottom: 20px;
  margin-right: 18px;
}
.service-features2 .top-title1 {
  line-height: 200px;
  font-size: 384px;
  font-weight: 800;
  margin-left: 30px;
  padding-top: 55px;
}
.service-features2 .top-title2 {
  font-size: 36px;
  max-width: 35%;
  margin-top: -20px;
}
.service-features2 .top-title2 .-bc-gr-green:before {
  top: -1px;
  bottom: 0;
  left: -6px;
  right: -6px;
}
.service-features2 .line.-v, .service-features2 .line.-h {
  border-color: #000;
}
.service-features2 .line.-dot:before {
  background-color: #000;
}
.service-features2 .feature-text {
  color: #1E1E1E;
}
.service-features2 .feature-item:nth-child(1) .line.-v {
  top: -16px;
}
.service-features2 .feature-item:nth-child(1) .feature-image {
  padding-top: 5%;
  padding-left: 9.2857142857%;
}
.service-features2 .feature-item:nth-child(1) .image-layers {
  max-width: 502px;
}
.service-features2 .feature-item:nth-child(1) .feature-info {
  margin-top: -40px;
  padding-right: 13.2%;
}
.service-features2 .feature-item:nth-child(2) .feature-col {
  min-height: 630px;
}
.service-features2 .feature-item:nth-child(2) .feature-image {
  padding-right: 7%;
}
.service-features2 .feature-item:nth-child(2) .feature-info {
  padding-top: 13.8%;
  padding-right: 20px;
}
.service-features2 .feature-item:nth-child(2) .image-layers {
  top: -85px;
  max-width: 550px;
}
.service-features2 .feature-item:nth-child(3) .line.-v {
  bottom: auto;
  height: 166px;
}
.service-features2 .feature-item:nth-child(3) .feature-info {
  padding-top: 140px;
  padding-right: 13.2%;
}
.service-features2 .feature-item:nth-child(3) .feature-image {
  padding-left: 9.2%;
}
.service-features2 .feature-item:nth-child(3) .image-layers {
  top: -80px;
  max-width: 614px;
}

.responsive {
  position: relative;
  z-index: 1;
  padding: 170px 0 267px;
}
.responsive .inner {
  max-width: 1660px;
}
.responsive .top-wr {
  display: flex;
  justify-content: space-between;
  max-width: 1370px;
  margin: 0 136px 120px auto;
}
.responsive .top-info {
  margin: -3px 0 0 80px;
  max-width: 720px;
}
.responsive .top-title {
  padding-top: 20px;
  font-weight: 800;
  font-size: 123px;
  line-height: 100px;
  margin-bottom: 47px;
}
.responsive .top-text {
  font-size: 24px;
}
.responsive .picture {
  max-width: 410px;
}
.responsive .md-title-wr {
  display: flex;
  justify-content: flex-end;
}
.responsive .md-title {
  font-size: 108px;
  transform: rotate(-1.9deg);
  margin-bottom: 100px;
  font-weight: 900;
}
.responsive .md-title:before {
  background-image: url(https://qa.wemake.co.il/mod/service-webdev/img/md-bg1.svg);
  transform: rotate(2deg);
  top: -40px;
  bottom: -50px;
  right: -80px;
  left: -10px;
}
.responsive .md-text {
  font-size: 54px;
  transform: rotate(1.9deg);
  max-width: 76.5%;
  padding-left: 3%;
  padding-right: 13%;
  line-height: 145%;
}
.responsive .md-text:before {
  background-image: url(https://qa.wemake.co.il/mod/service-webdev/img/md-bg2.svg);
  top: -55px;
  bottom: -45px;
  right: 140px;
  left: -45px;
  transform: rotate(-2deg);
}
.responsive .md-title,
.responsive .md-text {
  position: relative;
  z-index: 1;
}
.responsive .md-title:before,
.responsive .md-text:before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.responsive .shine-eff {
  width: 960px;
  top: 600px;
  right: 50%;
  transform: rotate(50deg);
  opacity: 0.6;
}
@media all and (min-width: 769px) {
  .responsive .shine-eff.-an-rotate {
    animation: shine-rotate-small 30s infinite linear;
  }
}
.responsive .shine-eff::before, .responsive .shine-eff::after {
  width: 600px;
  height: 600px;
}

.quality {
  position: relative;
  padding: 0 0 148px;
}
.quality .inner {
  padding-top: 14%;
  position: relative;
}
.quality .wemake-team-wr {
  display: flex;
  justify-content: flex-end;
}
.quality .wemake-team {
  position: absolute;
  top: 32px;
  left: 35px;
  width: 1090px;
  height: 330px;
  background: url(https://qa.wemake.co.il/mod/service-webdev/img/qa-team.svg) center no-repeat;
  background-size: contain;
}
.quality .row {
  display: flex;
  justify-content: space-between;
  max-width: 1490px;
}
.quality .col-info {
  margin-left: 5%;
  max-width: 645px;
  padding-right: 95px;
}
.quality .title1,
.quality .title2 {
  font-weight: 800;
}
.quality .title1 {
  font-size: 270px;
  line-height: 150px;
  margin-bottom: 33px;
}
.quality .title2 {
  font-size: 50px;
}
.quality .-bc-gr-green {
  white-space: nowrap;
}
.quality .-bc-gr-green:before {
  top: 2px;
  bottom: 2px;
  right: -5px;
  left: -10px;
  transform: rotate(-3deg);
  background: linear-gradient(261.61deg, #FCFF67, #05E500, #FCFF67, #05E500, #FCFF67);
  animation: gradient 10s ease infinite;
  background-size: 300%;
}
.quality .-first {
  max-width: 541px;
  padding-top: 44px;
  padding-right: 20px;
  margin-bottom: 100px;
}
.quality .-last {
  margin-bottom: 30px;
}
.quality .text {
  font-size: 24px;
  max-width: 520px;
  line-height: 118.978%;
}
.quality .image-layers {
  margin-top: 75px;
  max-width: 46%;
}
.quality .image-layers.desktop- {
  max-width: 711px;
}

.wp-experts {
  padding-top: 190px;
}
.wp-experts .inner {
  margin-bottom: 260px;
  max-width: 1670px;
}
.wp-experts .row1 {
  display: flex;
  margin-bottom: 300px;
  max-width: 1625px;
  width: 100%;
  margin-right: 22px;
}
.wp-experts .row1 .picture {
  border-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-grow: 1;
  border: 1px solid #fff;
  max-width: 470px;
  width: 100%;
  height: 212px;
}
.wp-experts .row1 .picture:not(:last-child) {
  margin-left: 18px;
}
.wp-experts .row1 img {
  max-width: 205px;
  max-height: 90px;
}
.wp-experts .row1 .col-info {
  max-width: 477px;
  width: 100%;
  margin-left: 46px;
}
.wp-experts .row1 .col-images {
  display: flex;
  flex-grow: 1;
  max-width: 958px;
  width: 100%;
  margin-top: 8px;
}
.wp-experts .row1 .title1 {
  margin-bottom: 30px;
}
.wp-experts .row1 .text {
  line-height: 30px;
  font-size: 20px;
}
.wp-experts .title1,
.wp-experts .title2 {
  font-weight: 800;
}
.wp-experts .title1 {
  font-size: 50px;
}
.wp-experts .title2 {
  font-size: 96px;
}
.wp-experts .fr-text p:not(:last-child) {
  margin-bottom: 30px;
}
.wp-experts .row2 {
  display: flex;
  justify-content: space-between;
  margin-bottom: 85px;
}
.wp-experts .row2 .title1 {
  line-height: 55px;
  margin-bottom: 10px;
}
.wp-experts .row2 .col-info {
  padding-top: 72px;
  margin-left: 22px;
  padding-right: 10px;
  max-width: 488px;
  width: 100%;
}
.wp-experts .row2 .col-images {
  max-width: 1144px;
  width: 100%;
}
.wp-experts .row2 .text {
  font-size: 24px;
}
.wp-experts .row2 .text p:not(:first-child) {
  font-size: 22px;
}
.wp-experts .row2 [class*=-bc-gr-]:before {
  top: -5px;
  bottom: 0;
  right: -10px;
  left: -10px;
}
.wp-experts .row2 .-bc-gr-green:before {
  background: linear-gradient(261.61deg, #FCFF67, #05E500, #FCFF67, #05E500, #FCFF67);
  animation: gradient 10s ease infinite;
  background-size: 300%;
  border-radius: 0;
}
.wp-experts .row2 .fr-text p:not(:last-child) {
  margin-bottom: 39px;
}
.wp-experts .row2 .fr-text p:not(:first-child) {
  line-height: 143%;
}
.wp-experts .features {
  display: flex;
  flex-wrap: wrap;
  color: #000;
}
.wp-experts .feature-item {
  margin-bottom: 22px;
  border-radius: 15px;
  padding: 3% 4.8% 4.2%;
  width: 49.4%;
}
.wp-experts .feature-item:nth-child(2n-1) {
  margin-left: 1%;
}
.wp-experts .feature-item:nth-child(4n-3) {
  background: linear-gradient(136.11deg, #FCEAFB 0%, #9B94F0 99.3%);
  padding: 93px 120px 104px;
}
.wp-experts .feature-item:nth-child(4n-2) {
  background: linear-gradient(136.11deg, #FBF1FA 0%, #F4D5F0 99.3%);
  padding: 93px 120px 104px;
}
.wp-experts .feature-item:nth-child(4n-1) {
  background: linear-gradient(90deg, #F2FCFD 0.52%, #B8EFF7 71.02%);
}
.wp-experts .feature-item:nth-child(4n) {
  background: linear-gradient(131.52deg, #F4FDF2 0%, #D4F7B8 100%);
}
.wp-experts .feature-item:nth-child(3) {
  width: 68%;
}
.wp-experts .feature-item:nth-child(4) {
  width: 30.8%;
}
.wp-experts .feature-title {
  font-weight: 800;
  font-size: 50px;
  margin-bottom: 22px;
}
.wp-experts .feature-text {
  font-size: 22px;
  line-height: 30px;
  max-width: 570px;
}
.wp-experts .row3 .title2 {
  text-align: center;
  margin-bottom: 43px;
}
.wp-experts .marq-wr.-style1 .marq {
  margin-top: 5px;
}
.wp-experts .running-line {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(270deg, #FAFF00 -1.15%, #8FFF00 101.14%);
  padding: 20px 0;
  height: 112px;
}
.wp-experts .running-line .running_line_inner {
  display: flex;
  font-family: "Unbounded", "sans-serif";
  font-size: 48px;
  line-height: 100%;
  text-transform: uppercase;
  color: #000;
  position: relative;
  white-space: nowrap;
  margin-right: 8px;
  animation-name: running;
  animation-duration: 80s;
  animation-iteration-count: infinite;
  animation-direction: reverse;
  animation-timing-function: linear;
}
.wp-experts .running-line .running_line_inner div {
  margin-right: 8px;
}
@keyframes running {
  0% {
    transform: translate(-100%, 0);
  }
  50% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(100%, 0);
  }
}

.portfolio {
  margin-bottom: 0;
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@media all and (max-width: 768px) {
  .service-features .feature-title-wr {
    justify-content: flex-start;
  }
  .service-features .feature-title {
    font-size: 40px;
    margin-bottom: 2px;
    max-width: 85%;
  }
  .service-features .line.-dot::before {
    width: 10px;
    height: 10px;
    top: -5px;
  }
  .service-features .feature-subtitle {
    margin-bottom: 20px;
    padding: 5px 25px 5px;
  }
  .service-features .feature-text {
    line-height: 26px;
    font-size: 19px;
  }
  .service-features .feature-item .image-layers {
    margin-left: auto;
    margin-right: auto;
  }
  .service-features .inner {
    padding: 0 17px;
  }
  .service-features .-bc-gr-green:before {
    bottom: -3px;
  }
  .service-features1 {
    padding: 64px 0 68px;
  }
  .service-features1 .top-wr {
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 60px;
    margin: 0 auto 70px;
  }
  .service-features1 .top-title1 {
    font-size: 30px;
    margin-right: auto;
    margin-left: auto;
  }
  .service-features1 .top-title2 {
    order: 1;
    font-size: 96px;
    line-height: initial;
    margin-left: -15px;
    margin-top: 0;
  }
  .service-features1 .top-info {
    order: 2;
    margin: 0;
    max-width: none;
  }
  .service-features1 .top-text {
    font-size: 19px;
    line-height: 26px;
    color: #fff;
  }
  .service-features1 .group-title {
    font-size: 36px;
    margin-bottom: 36px;
    padding-right: 0;
  }
  .service-features1 .group-title .feature-text {
    color: #fff;
  }
  .service-features1 .shine-eff {
    opacity: 0.9;
    width: 450px;
    top: 660px;
    left: -50%;
    margin-left: 0;
    transform: rotate(40deg);
  }
  .service-features1 .shine-eff::before, .service-features1 .shine-eff::after {
    width: 270px;
    height: 270px;
  }
  .service-features1 .shine-eff-2 {
    width: 450px;
    top: auto;
    bottom: 50px;
    transform: rotate(90deg);
  }
  .service-features1 .shine-eff-2::before, .service-features1 .shine-eff-2::after {
    width: 320px;
    height: 320px;
  }
  .service-features1 .shine-eff.-p1 {
    width: 350px;
    top: 1900px;
    left: 50%;
  }
  .service-features1 .shine-eff.-p1::before, .service-features1 .shine-eff.-p1::after {
    width: 230px;
    height: 230px;
  }
  .service-features1 .feature-item:nth-child(1) {
    padding-bottom: 97px;
  }
  .service-features1 .feature-item:nth-child(1) .feature-info .line.-dot {
    top: 13px;
    margin-right: 65px;
  }
  .service-features1 .feature-item:nth-child(1) .feature-info .line.-dot::before {
    width: 10px;
    height: 10px;
  }
  .service-features1 .feature-item:nth-child(1) .line.-v {
    top: 14px;
  }
  .service-features1 .feature-item:nth-child(1) .image-layers {
    max-width: 362px;
    left: 13px;
  }
  .service-features1 .feature-item:nth-child(2) {
    padding-bottom: 96px;
  }
  .service-features1 .feature-item:nth-child(2) .line.-dot {
    top: 18px;
    margin-right: 45px;
  }
  .service-features1 .feature-item:nth-child(2) .image-layers {
    max-width: 368px;
    left: 10px;
  }
  .service-features1 .feature-item:nth-child(3) {
    padding-bottom: 64px;
  }
  .service-features1 .feature-item:nth-child(3) .line.-dot {
    margin-right: 10px;
  }
  .service-features1 .feature-item:nth-child(3) .image-layers {
    max-width: 374px;
    left: 4px;
    top: -10px;
  }
  .service-features1 .feature-item:nth-child(4) .feature-image .image-layers {
    max-width: 458px;
    left: 76px;
    width: 117%;
  }
  .service-features1 .feature-item:nth-child(4) .feature-info .feature-title {
    max-width: 85%;
  }
  .service-features1 .feature-item:nth-child(4) .feature-info .line.-dot {
    top: 55px;
    margin-right: -75px;
  }
  .service-features1 .feature-item:nth-child(4) .line.-v {
    height: 55px;
  }
  .service-features2 {
    padding: 64px 0 58px;
  }
  .service-features2 .top-wr {
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 35px;
    margin-right: 0;
  }
  .service-features2 .top-title1 {
    font-size: 96px;
    line-height: initial;
    padding: 0;
    margin: 0;
  }
  .service-features2 .top-title2 {
    max-width: 382px;
    font-size: 32px;
    margin-top: -10px;
  }
  .service-features2 .-bc-gr-green:before {
    bottom: 2px;
  }
  .service-features2 .feature-title {
    font-size: 30px;
    margin-bottom: 0px;
  }
  .service-features2 .feature-title .feature-subtitle {
    font-size: 16px;
  }
  .service-features2 .feature-item:nth-child(1) {
    padding-bottom: 95px;
  }
  .service-features2 .feature-item:nth-child(1) .line.-dot {
    margin-right: 40px;
  }
  .service-features2 .feature-item:nth-child(1) .feature-info {
    margin-top: 0;
  }
  .service-features2 .feature-item:nth-child(1) .line.-v {
    top: 20px;
  }
  .service-features2 .feature-item:nth-child(1) .image-layers {
    max-width: 371px;
  }
  .service-features2 .feature-item:nth-child(2) {
    padding-bottom: 100px;
  }
  .service-features2 .feature-item:nth-child(2) .image-layers {
    max-width: 361px;
    top: 0;
    left: 15px;
  }
  .service-features2 .feature-item:nth-child(3) .line.-v {
    height: 15px;
  }
  .service-features2 .feature-item:nth-child(3) .image-layers {
    max-width: 363px;
    top: 0;
    left: 17px;
  }
  .service-features2 .feature-item:nth-child(3) .line.-dot {
    top: 15px;
    margin-right: 15px;
  }
  .responsive {
    padding: 45px 0 114px;
  }
  .responsive .inner {
    padding: 0 17px;
  }
  .responsive .top-wr {
    padding-left: 0;
    margin: 0 auto 60px;
    flex-wrap: wrap;
  }
  .responsive .top-info {
    margin: 0 0 55px 18.8235294118vw;
  }
  .responsive .top-title {
    font-weight: 900;
    font-size: 64px;
    line-height: 83%;
    margin-bottom: 20px;
  }
  .responsive .top-text {
    font-size: 19px;
    line-height: 26px;
  }
  .responsive .picture {
    max-width: 390px;
  }
  .responsive .md-block {
    max-width: 500px;
    margin: 0 auto;
  }
  .responsive .md-title {
    font-weight: 900;
    font-size: 46px;
    line-height: 83%;
    margin-left: 1.1764705882vw;
    margin-bottom: 14.1176470588vw;
  }
  .responsive .md-title:before {
    top: -11.0588235294vw;
    bottom: -11.7647058824vw;
    right: -7.7647058824vw;
    left: -2.3529411765vw;
  }
  .responsive .md-text {
    font-size: 20px;
    line-height: 145%;
    transform: rotate(1.9deg);
    max-width: 359px;
    left: -6%;
    padding-right: 0;
    padding-top: 15px;
  }
  .responsive .md-text:before {
    background-image: url(https://qa.wemake.co.il/mod/service-webdev/img/md-bg2_mob.svg);
    top: -17px;
    bottom: -30px;
    right: -24px;
    left: -9px;
    transform: rotate(-2deg);
  }
  .responsive .shine-eff {
    width: 394px;
    top: 690px;
    right: auto;
    left: 10%;
    transform: rotate(50deg);
    opacity: 0.8;
  }
  .responsive .shine-eff::before, .responsive .shine-eff::after {
    width: 295px;
    height: 296px;
  }
  .quality {
    padding: 30px 0 63px;
  }
  .quality .inner {
    padding: 0 17px;
  }
  .quality .wemake-team {
    position: relative;
    top: -70px;
    right: -5%;
    margin-right: 0;
    width: 497px;
    height: 289px;
    transform: rotate(-3deg);
  }
  .quality .row {
    flex-wrap: wrap;
  }
  .quality .col-info {
    margin-left: 0;
    max-width: 100%;
    padding-right: 0;
  }
  .quality .title1 {
    font-size: 96px;
    line-height: 96px;
    margin-bottom: 2.1176470588vw;
    font-weight: 900;
  }
  .quality .title2 {
    font-size: 30px;
    line-height: 100%;
    font-weight: 900;
  }
  .quality .-first {
    max-width: 267px;
    padding-top: 50px;
    margin-bottom: 4px;
    padding-right: 0;
  }
  .quality .-last {
    margin-bottom: 15px;
  }
  .quality .-bc-gr-green:before {
    top: -3px;
    left: -5px;
  }
  .quality .text {
    font-size: 19px;
    line-height: 26px;
  }
  .quality .image-layers {
    margin: -107px auto 0;
    max-width: 100%;
  }
  .wp-experts {
    padding-top: 42px;
  }
  .wp-experts .inner {
    margin-bottom: 20px;
    padding: 0 4%;
  }
  .wp-experts .row1 {
    flex-wrap: wrap;
    margin-bottom: 97px;
    padding-left: 0;
    margin-right: 0;
  }
  .wp-experts .row1 .picture {
    height: 74px;
    border-radius: 5px;
  }
  .wp-experts .row1 .picture:not(:last-child) {
    margin-left: 1.6470588235vw;
  }
  .wp-experts .row1 img {
    max-width: 94px;
    max-height: 90px;
  }
  .wp-experts .row1 .col-info {
    max-width: 100%;
    margin-left: 0;
    margin-bottom: 15px;
  }
  .wp-experts .row1 .title1 {
    margin-bottom: 27px;
    line-height: 75%;
    max-width: 357px;
  }
  .wp-experts .row1 .text {
    font-size: 19px;
    line-height: 26px;
  }
  .wp-experts .title1 {
    font-weight: 900;
    font-size: 30px;
    line-height: 100%;
  }
  .wp-experts .title1 strong {
    font-size: 84px;
    line-height: 100%;
  }
  .wp-experts .title2 {
    font-size: 96px;
  }
  .wp-experts .fr-text p:not(:last-child) {
    margin-bottom: 27px;
    line-height: 155%;
  }
  .wp-experts .row2 {
    flex-wrap: wrap;
    margin-bottom: 77px;
    position: relative;
  }
  .wp-experts .row2 .title1 {
    font-weight: 900;
    font-size: 50px;
    line-height: 110%;
    margin-bottom: 5px;
  }
  .wp-experts .row2 .col-info {
    padding-top: 0;
    margin-left: 0;
    max-width: 100%;
    padding-right: 0;
  }
  .wp-experts .row2 .text {
    font-size: 19px;
    line-height: 26px;
  }
  .wp-experts .row2 .text p:not(:first-child) {
    font-size: 19px;
    line-height: 26px;
    margin-bottom: 25px;
  }
  .wp-experts .row2 [class*=-bc-]:before {
    top: -4px;
    bottom: 5px;
    right: -10px;
    left: -15px;
    border-radius: 5px;
  }
  .wp-experts .row2 .fr-text p:not(:last-child) {
    font-size: 24px;
    margin-bottom: 30px;
  }
  .wp-experts .row2 .col-images img {
    display: block;
    margin: 0 auto;
  }
  .wp-experts .row2 .shine-eff {
    width: 350px;
    top: 50px;
    left: -130px;
    transform: rotate(-45deg);
  }
  .wp-experts .row2 .shine-eff::after, .wp-experts .row2 .shine-eff::before {
    width: 200px;
    height: 200px;
  }
  .wp-experts .row3 {
    position: relative;
  }
  .wp-experts .row3 .title2 {
    font-size: 48px;
    line-height: 48px;
    text-align: right;
    margin-bottom: 31px;
  }
  .wp-experts .row3 .shine-eff {
    top: 150px;
    left: -100px;
    width: 420px;
    animation: shine-rotate-samall 30s infinite linear;
  }
  .wp-experts .row3 .shine-eff::after, .wp-experts .row3 .shine-eff::before {
    width: 250px;
    height: 250px;
  }
  .wp-experts .features {
    display: flex;
    flex-wrap: wrap;
    color: #000;
  }
  .wp-experts .feature-item {
    margin-bottom: 12px;
    border-radius: 15px;
    padding: 5.8823529412vw 4.4705882353vw 8.4705882353vw;
    width: 100%;
  }
  .wp-experts .feature-item:nth-child(2n-1) {
    margin-left: 0;
  }
  .wp-experts .feature-item:nth-child(4n-3) {
    background: linear-gradient(136.11deg, #FCEAFB 0%, #9B94F0 99.3%);
    padding: 17px 19px 25px 20px;
  }
  .wp-experts .feature-item:nth-child(4n-2) {
    background: linear-gradient(136.11deg, #FBF1FA 0%, #F4D5F0 99.3%);
    padding: 17px 19px 25px 20px;
  }
  .wp-experts .feature-item:nth-child(4n-1) {
    background: linear-gradient(90deg, #F2FCFD 0.52%, #B8EFF7 71.02%);
    padding: 17px 19px 25px 20px;
  }
  .wp-experts .feature-item:nth-child(4n-1) .feature-title {
    margin-bottom: 5px;
  }
  .wp-experts .feature-item:nth-child(4n) {
    background: linear-gradient(131.52deg, #F4FDF2 0%, #D4F7B8 100%);
    padding: 25px 19px 36px 20px;
  }
  .wp-experts .feature-item:nth-child(4n) .feature-title {
    margin-bottom: 3px;
  }
  .wp-experts .feature-item:nth-child(3) {
    width: 100%;
  }
  .wp-experts .feature-item:nth-child(4) {
    width: 100%;
  }
  .wp-experts .feature-title {
    font-weight: 800;
    font-size: 32px;
    line-height: 32px;
    margin-bottom: 10px;
  }
  .wp-experts .feature-text {
    font-size: 16px;
    line-height: 24px;
  }
  .wp-experts .marq-wr.-style1 {
    height: 8vw;
  }
  .wp-experts .marq-wr.-style1 .marq {
    font-size: 3.1764705882vw;
    line-height: 111.5%;
    margin-top: 3px;
  }
  .wp-experts .running-line {
    padding: 5px 0;
    height: 34px;
  }
  .wp-experts .running-line .running_line_inner {
    font-size: 14px;
    margin-right: 4px;
    animation-duration: 50s;
  }
  .wp-experts .running-line .running_line_inner div {
    margin-right: 4px;
  }
  .portfolio {
    padding-top: 80px;
  }
  .webdev-awards.about-awards .inner {
    padding: 0 17px;
  }
  .webdev-awards.about-awards .awards-head {
    margin-bottom: 65px;
  }
  .webdev-awards.about-awards .awards-head .title {
    font-family: "Unbounded", "sans-serif";
    font-weight: 900;
    font-size: 4.7058823529vw;
    padding-left: 0;
  }
  .webdev-awards.about-awards .awards-head .title strong {
    color: #000;
    font-weight: 900;
  }
  .webdev-awards.about-awards .awards-behance .service-webdev-line {
    position: absolute;
    width: 316px;
    height: 192px;
    left: 14px;
    top: -85px;
    background-image: url(https://qa.wemake.co.il/mod/service-webdev/img/service-webdev-line.svg);
    background-position: top left;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: -1;
  }
  .webdev-awards.about-awards .awards-behance .service-webdev-ellipse {
    position: absolute;
    width: 285px;
    height: 74px;
    right: -139px;
    top: 150px;
    background-image: url(https://qa.wemake.co.il/mod/service-webdev/img/service-webdev-ellipse.svg);
    background-position: top left;
    background-size: contain;
    background-repeat: no-repeat;
    transform: rotate(24.97deg);
    z-index: -1;
  }
  .webdev-awards.about-awards .awards-behance .inner {
    align-items: flex-end;
    flex-wrap: wrap;
  }
  .webdev-awards.about-awards .awards-behance .behance-pic-wr {
    width: 65.8823529412vw;
    left: 15px;
    padding: 0;
    margin-top: 35px;
  }
  .webdev-awards.about-awards .awards-behance .behance-text-wr {
    position: absolute;
    min-width: 25.6470588235vw;
    max-width: 25.6470588235vw;
    top: 36.9411764706vw;
    left: 67.0588235294vw;
  }
  .webdev-awards.about-awards .awards-behance .behance-badge-wr {
    padding: 0;
    transform: rotate(14deg);
  }
  .webdev-awards.about-awards .awards-behance .behance-title-pic {
    margin-top: -20px;
  }
  .webdev-awards.about-awards .awards-design:not(:first-child) {
    margin-top: 22.3529411765vw;
    right: 0;
  }
  .webdev-awards.about-awards .awards-design:not(:last-child) {
    margin-left: 0;
  }
  .webdev-awards.about-awards .awards-design .design-badges {
    margin-bottom: 25px;
  }
  .webdev-awards.about-awards .awards-design .design-col:nth-child(1),
  .webdev-awards.about-awards .awards-design .design-col:nth-child(2),
  .webdev-awards.about-awards .awards-design .design-col:nth-child(3),
  .webdev-awards.about-awards .awards-design .design-col:nth-child(4) {
    margin-top: 0;
  }
  .webdev-awards.about-awards .awards-design .design-row {
    right: 37px;
    margin-bottom: 19px;
  }
  .webdev-awards.about-awards .awards-css .css-title1 {
    font-family: "SimplerPro", "sans-serif";
    font-weight: 900;
    font-size: 8.4705882353vw;
    line-height: 137%;
    text-align: right;
  }
  .webdev-awards.about-awards .awards-css .css-title1 strong {
    color: #000;
    position: relative;
  }
  .webdev-awards.about-awards .awards-css .css-title1 strong::after {
    content: "";
    position: absolute;
    left: -1.1764705882vw;
    top: -2.3529411765vw;
    right: -1.1764705882vw;
    bottom: -1.8823529412vw;
    background: linear-gradient(261.61deg, #FCFF67 -9.31%, #05E500 121.63%);
    border-radius: 7px;
    transform: rotate(0.98deg);
    z-index: -1;
  }
  .webdev-awards.about-awards .awards-css .css-team-wr {
    order: 3;
    margin-top: -33px;
  }
  .webdev-awards.about-awards .awards-css .figure-wr {
    min-height: 140px;
  }
  .webdev-awards.about-awards .awards-css .figure4 {
    bottom: 0;
    right: -30px;
    margin: 0;
    top: -102px;
    width: 590px;
    height: 153px;
    transform: rotate(13deg);
  }
  .webdev-awards.about-awards .awards-css .css-col:nth-child(2) {
    padding-top: 0;
  }
  .service-webdev-page .webdev-awards .awards-head .inner {
    max-width: 410px;
  }
  .service-webdev-page .marq-wr.-style1 {
    z-index: 1;
  }
  .service-webdev-page .marq-wr.-style1 .marq {
    line-height: 111.5%;
    font-weight: 400;
  }
  .service-webdev-page .business-growth .business-growth-bottom-line {
    display: block;
    position: absolute;
    bottom: -6px;
    left: 24px;
    width: 570px;
    right: auto;
    height: 96px;
    background-image: url(https://qa.wemake.co.il/mod/service-webdev/img/business-growth-bottom-line.svg);
    background-position: left bottom;
    background-repeat: no-repeat;
    background-size: contain;
  }
  .md-marquee-wr {
    font-size: 3.0588235294vw;
  }
}
@media all and (min-width: 500px) and (max-width: 768px) {
  .service-features1 .feature-item:nth-child(4) .feature-image .image-layers {
    left: 0px;
    width: 100%;
    margin: 0 auto;
  }
}
@media all and (max-width: 426px) {
  .service-webdev-page .awards .awards-design .design-row.owl-carousel.owl-rtl .owl-item {
    max-width: 227px;
  }
  .responsive .top-info {
    margin: 0 0 55px 0;
  }
}
@media all and (max-width: 425px) {
  .service-features .feature-title {
    font-size: 9.4117647059vw;
  }
  .service-features1 .top-title1 {
    font-size: 7.0588235294vw;
  }
  .service-features1 .top-title2 {
    font-size: 22.5882352941vw;
  }
  .service-features1 .group-title {
    font-size: 8.4705882353vw;
  }
  .service-features2 .top-title1 {
    font-size: 22.5882352941vw;
  }
  .service-features2 .top-title2 {
    font-size: 7.0588235294vw;
  }
  .service-features .line.-dot {
    margin-right: 10px !important;
  }
  .service-features .feature-item .image-layers {
    left: 0 !important;
  }
  .service-features1 .feature-item:nth-child(4) .feature-image .image-layers {
    width: 100%;
  }
  .responsive .top-title {
    font-size: 15.0588235294vw;
  }
  .responsive .md-title {
    font-size: 10.8235294118vw;
  }
  .responsive .md-text {
    font-size: 4.7058823529vw;
    line-height: 6.8235294118vw;
  }
  .quality .image-layers {
    margin-top: -70px;
  }
  .quality .title1 {
    font-size: 22.5882352941vw;
    line-height: 22.5882352941vw;
  }
  .quality .title2 {
    font-size: 7.0588235294vw;
    line-height: 7.0588235294vw;
  }
  .quality .-bc-gr-green:before {
    top: -0.7058823529vw;
    left: -1.1764705882vw;
    bottom: 0;
    right: -1.1764705882vw;
  }
  .wp-experts .title1 {
    font-weight: 900;
    font-size: 7.0588235294vw;
    line-height: 7.0588235294vw;
  }
  .wp-experts .title1 strong {
    font-size: 19.7647058824vw;
    line-height: 20vw;
  }
  .wp-experts .row2 .title1 {
    font-size: 11.7647058824vw;
  }
  .wp-experts .row2 [class*=-bc-]:before {
    border-radius: 1.1764705882vw;
    top: -0.9411764706vw;
    bottom: 1.1764705882vw;
    right: -2.3529411765vw;
    left: -3.5294117647vw;
  }
  .wp-experts .row3 .title2 {
    font-size: 11.2941176471vw;
    line-height: 11.2941176471vw;
  }
  .wp-experts .feature-title {
    font-size: 7.5294117647vw;
    line-height: 7.5294117647vw;
  }
  .wp-experts .feature-text {
    font-size: 3.7647058824vw;
    line-height: 5.6470588235vw;
  }
  .wp-experts .running-line {
    padding: 1.1764705882vw 0;
    height: 8vw;
  }
  .wp-experts .running-line .running_line_inner {
    font-size: 3.2941176471vw;
    margin-right: 0.9411764706vw;
  }
  .wp-experts .running-line .running_line_inner div {
    margin-right: 0.9411764706vw;
  }
  .webdev-awards.about-awards .awards-behance .service-webdev-ellipse {
    top: 33.8823529412vw;
  }
}
@media all and (max-width: 410px) {
  .responsive .md-text {
    padding-left: 5%;
  }
  .responsive .md-text:before {
    left: 2%;
  }
}

@media all and (max-width: 2560px) and (min-width: 769px) {
  .wp-experts .md-marquee-wr {
    height: 5.8333333333vw;
    font-size: 2.0833333333vw;
  }
  .wp-experts .running-line {
    padding: 1.0416666667vw 0;
    height: 5.8333333333vw;
  }
  .wp-experts .running-line .running_line_inner {
    font-size: 2.5vw;
    margin-right: 0.4166666667vw;
  }
  .wp-experts .running-line .running_line_inner div {
    margin-right: 0.4166666667vw;
  }
}
@media all and (max-width: 1900px) and (min-width: 1025px) {
  .quality .inner {
    padding-top: 16%;
  }
}
@media all and (max-width: 1920px) and (min-width: 769px) {
  .service-features1 {
    padding: 7.5520833333vw 0 12.1354166667vw;
  }
  .service-features1 .top-wr {
    margin: 0 5.2083333333vw 5.7291666667vw auto;
  }
  .service-features1 .group-title {
    padding-right: 4.9479166667vw;
  }
  .wp-experts .row1 .picture {
    height: 11.0416666667vw;
  }
  .responsive .md-text {
    font-size: 2.8125vw;
  }
}
@media all and (max-width: 1650px) and (min-width: 769px) {
  .service-features1 .top-title2 {
    font-size: 18.7878787879vw;
    line-height: 16.9696969697vw;
  }
  .service-features1 .group-title {
    font-size: 5.8181818182vw;
  }
  .service-features1 .feature-item:nth-child(3) .image-layers, .service-features1 .feature-item:nth-child(4) .image-layers {
    width: 100%;
  }
  .service-features1 .feature-item:nth-child(4) .line.-v {
    bottom: -20vw;
    height: auto;
  }
  .service-features2 .top-title1 {
    padding-top: 3.3333333333vw;
    line-height: 12.1212121212vw;
    font-size: 20.303030303vw;
  }
  .responsive .top-title {
    font-size: 7.4545454545vw;
    line-height: 6.0606060606vw;
  }
  .responsive .md-title {
    font-size: 6.5454545455vw;
  }
  .responsive .md-title:before {
    top: -2.4242424242vw;
    bottom: -3.0303030303vw;
    right: -4.2424242424vw;
    left: -0.6060606061vw;
  }
  .responsive .top-info {
    margin: -3px 0 0 4.8484848485vw;
  }
  .quality .wemake-team {
    margin-right: -26.6666666667vw;
    width: 66.0606060606vw;
    height: 20vw;
  }
  .quality .title1 {
    font-size: 16.3636363636vw;
    line-height: 9.0909090909vw;
  }
  .quality .title2 {
    font-size: 3.0303030303vw;
  }
  .quality .-bc-gr-green:before {
    top: 0.1212121212vw;
    bottom: 0.1212121212vw;
    right: -0.303030303vw;
    left: -0.6060606061vw;
  }
  .wp-experts .inner {
    margin-bottom: 200px;
  }
  .wp-experts .row1 {
    margin-bottom: 200px;
    margin-right: 0;
  }
  .wp-experts .title2 {
    font-size: 5.8181818182vw;
  }
  .wp-experts .feature-title {
    font-size: 3.0303030303vw;
  }
  .service-webdev-page .portfolio .marq-wr {
    height: 7.8787878788vw;
  }
  .awards-head .top-title1 {
    font-size: 5.8181818182vw;
  }
}
@media all and (max-width: 1440px) and (min-width: 769px) {
  .service-features1 {
    padding: 8.3333333333vw 0 5.5555555556vw;
  }
  .service-features1 .top-wr,
  .service-features1 .group-title {
    margin-bottom: 80px;
  }
  .service-features1 .top-title1 {
    font-size: 2.5vw;
    max-width: 32.0138888889vw;
  }
  .service-features1 .top-title1 .-bc-gr-green:before {
    left: -0.4166666667vw;
    right: -0.4166666667vw;
    border-radius: 0.2777777778vw;
  }
  .service-features1 .feature-item:nth-child(1) .feature-col {
    min-height: 36.8055555556vw;
  }
  .service-features1 .feature-item:nth-child(2) .feature-col {
    min-height: 44.4444444444vw;
  }
  .service-features1 .feature-item:nth-child(3) .feature-col {
    min-height: 57.6388888889vw;
  }
  .service-features2 {
    padding: 9.7222222222vw 0 2.7777777778vw;
  }
  .service-features2 .top-title2 {
    font-size: 2.5vw;
  }
  .service-features2 .top-title2 .-bc-gr-green:before {
    left: -0.4166666667vw;
    right: -0.4166666667vw;
    border-radius: 0.2777777778vw;
  }
  .service-features2 .feature-item:nth-child(1) .image-layers {
    max-width: 34.7222222222vw;
  }
  .service-features2 .feature-item:nth-child(2) .feature-col {
    min-height: 43.75vw;
  }
  .service-features2 .feature-item:nth-child(2) .image-layers {
    top: -2.7777777778vw;
  }
  .service-features2 .feature-item:nth-child(3) .image-layers {
    top: -2.7777777778vw;
    width: 100%;
  }
  .responsive {
    padding: 7.6388888889vw 0 13.8888888889vw;
  }
  .responsive .top-wr {
    padding-left: 0;
  }
  .responsive .md-text {
    margin-right: 100px;
  }
  .quality {
    padding-bottom: 6.9444444444vw;
  }
  .wp-experts {
    padding-top: 8.3333333333vw;
  }
  .wp-experts .inner {
    margin-bottom: 8.3333333333vw;
  }
  .wp-experts .row1 {
    padding-left: 0;
    margin-bottom: 9.7222222222vw;
  }
  .wp-experts .row1 img {
    max-height: 50%;
  }
  .wp-experts .row2 .title1 {
    line-height: 3.8194444444vw;
  }
  .wp-experts .row2 [class*=-bc-gr-]:before {
    top: -0.3472222222vw;
    right: -0.6944444444vw;
    left: -0.6944444444vw;
  }
  .wp-experts .title1 {
    font-size: 3.4722222222vw;
  }
}
@media all and (max-width: 1440px) and (min-width: 769px) {
  .responsive .md-text {
    margin-right: 137px;
    padding-right: 5%;
  }
  .responsive .md-text::before {
    right: -40px;
  }
  .wp-experts .feature-item:nth-child(4n-3),
  .wp-experts .feature-item:nth-child(4n-2) {
    padding: 3% 4.8% 4.2%;
  }
}
@media all and (max-width: 1350px) and (min-width: 768px) {
  .container .service-webdev-page .inner {
    padding-left: 3%;
    padding-right: 3%;
  }
}
@media all and (max-width: 1280px) and (min-width: 769px) {
  .wp-experts .row2 .col-info {
    padding-top: 0;
  }
  .wp-experts .feature-title {
    margin-bottom: 10px;
  }
  .wp-experts .feature-text {
    font-size: 20px;
    line-height: 25px;
  }
  .service-features1 .shine-eff.-an-rotate {
    width: 640px;
  }
  .service-features1 .shine-eff.-an-rotate::before, .service-features1 .shine-eff.-an-rotate::after {
    width: 420px;
    height: 420px;
  }
  .responsive .shine-eff {
    width: 640px;
  }
  .responsive .shine-eff::before, .responsive .shine-eff::after {
    width: 420px;
    height: 420px;
  }
}
@media all and (max-width: 1024px) and (min-width: 769px) {
  .service-features1 .top-wr {
    margin: 0 auto 7.8125vw;
  }
  .service-features1 .feature-item:nth-child(1) .feature-info,
  .service-features1 .feature-item:nth-child(3) .feature-info {
    padding-right: 0;
  }
  .service-features1 .group-title {
    padding-right: 0;
    margin-bottom: 7.8125vw;
  }
  .service-features2 .top-wr {
    margin-right: 0;
  }
  .service-features2 .feature-item:nth-child(2) .feature-info {
    padding-right: 0;
  }
  .responsive .top-wr {
    margin: 0 0 11.71875vw auto;
  }
  .responsive .md-text {
    margin-right: 4%;
    padding: 0;
  }
  .quality .inner {
    padding-top: 18%;
  }
  .quality .col-info {
    padding-right: 0;
  }
  .wp-experts .row1 .col-images {
    flex-direction: column;
  }
  .wp-experts .row1 .picture:not(:last-child) {
    margin-left: 0;
    margin-bottom: 18px;
  }
}
.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;
  }
}
.awards-head {
  position: relative;
  z-index: 3;
}
.awards-head .sub-title {
  margin-bottom: 17px;
}
.awards-head .sub-title::before {
  width: 25px;
  height: 2px;
  margin: -1px 0 0 15px;
}

.awards-behance {
  position: relative;
  z-index: 3;
}
.awards-behance .behance-pic-wr {
  position: relative;
  transform: rotate(-4.95deg);
}
.awards-behance .shine-eff.-p1 {
  width: auto;
  height: auto;
  opacity: 1;
}
.awards-behance .shine-eff.-p1:before {
  width: 100%;
  height: 100%;
  right: auto;
  background: radial-gradient(circle, #1136ff 0%, transparent 65%);
}
.awards-behance .behance-title-pic,
.awards-behance .behance-text-wr {
  position: relative;
  z-index: 1;
}
.awards-behance .behance-title-pic {
  max-width: 365px;
  margin-bottom: 40px;
}
.awards-behance .behance-text {
  max-width: 508px;
}

.awards-design {
  position: relative;
  z-index: 1;
}
.awards-design .design-row {
  display: flex;
  justify-content: space-between;
}
.awards-design .design-row.desktop- {
  display: flex;
}
.awards-design .design-row.mobile- {
  display: none;
}
.awards-design .design-title {
  font-size: 24px;
  font-weight: 800;
}
.about-us-page .awards-design .design-title {
  margin-left: -20px;
  line-height: 120%;
}
.awards-design .design-badges {
  position: relative;
  margin-bottom: 75px;
  display: flex;
}
.awards-design .design-badge {
  width: 110px;
}
.awards-design .design-badge:nth-child(2) {
  position: relative;
}
.awards-design .design-badge-pic {
  width: 135px;
}
.awards-design .fr-text p:not(:last-child) {
  margin-bottom: 35px;
}

.awards-css {
  position: relative;
  z-index: 1;
  padding-bottom: 120px;
}
.awards-css .css-row {
  display: flex;
  align-items: flex-end;
}
.awards-css .css-col:nth-child(1) {
  width: 31.5%;
  margin: 0 0 5px 35px;
}
.about-us-page .awards-css .css-col:nth-child(1) {
  width: 32.3%;
  margin: 0 0 3px 45px;
}
.about-us-page .awards-css .css-col:nth-child(1).title-col {
  width: 100%;
  margin: 0 0 35px 45px;
}
.web-design-page .awards-css .css-col:nth-child(1) {
  width: 32.3%;
  margin: 0 0 3px 45px;
}
.web-design-page .awards-css .css-col:nth-child(1).title-col {
  width: 100%;
  margin: 0 0 35px 45px;
}
.awards-css .css-col:nth-child(2) {
  flex-grow: 1;
}
.awards-css .css-team-wr {
  display: flex;
  align-items: flex-end;
}
.about-us-page .awards-css .css-team-wr {
  margin-top: -14px;
  margin-right: -11px;
}
.web-design-page .awards-css .css-team-wr {
  margin-top: -14px;
  margin-right: -11px;
}
.awards-css .css-team {
  display: flex;
  margin: 0 3px 5px 50px;
}
.awards-css .css-person {
  width: 65px;
}
.awards-css .css-person-pic {
  width: 95px;
  height: 95px;
  padding: 5px;
  border: 1px solid #fff;
  border-radius: 50%;
  background: #000;
}
.awards-css .css-team-title2 {
  line-height: 28px;
  font-size: 26px;
  margin-bottom: -3px;
}
.awards-css .css-team-title2 b {
  font-weight: 800;
}

.home-awards {
  padding-top: 110px;
}
.home-awards .inner {
  max-width: 1560px;
}
.home-awards .fr-text {
  font-size: 24px;
}
.home-awards .line {
  width: 985px;
  max-width: 90%;
  height: 1px;
  background: #fff;
}
.home-awards .awards-head .title {
  font-size: 111px;
  font-weight: 800;
  margin-left: -40px;
}
.home-awards .awards-behance {
  z-index: 1;
}
.home-awards .awards-behance .inner {
  padding-top: 45px;
  margin-right: 744px;
}
.home-awards .awards-behance .behance-pic-wr {
  margin-bottom: 107px;
  display: inline-flex;
  width: 692px;
}
.home-awards .awards-behance .behance-pic {
  max-width: 654px;
}
.home-awards .awards-behance .behance-text-wr {
  left: 23px;
}
.home-awards .awards-behance .behance-text-wr .fr-text p {
  margin-bottom: 33px;
  line-height: 120%;
}
.home-awards .awards-behance .behance-badge {
  position: absolute;
  z-index: 1;
  bottom: 70px;
  left: 10px;
  max-width: 210px;
  transform: rotate(-5deg);
}
.home-awards .awards-behance .line {
  position: relative;
  max-width: 900px;
  margin: 110px 0 120px 0;
  left: 23px;
}
.home-awards .awards-behance .shine-eff.-p1 {
  top: -200px;
  right: -200px;
  left: -200px;
  bottom: -200px;
}
@media all and (min-width: 769px) {
  .home-awards .awards-behance .shine-eff.-p1 {
    margin-right: 0;
  }
}
.home-awards .awards-behance .home-awards-arrow {
  position: absolute;
  top: 290px;
  left: -205px;
  width: 379px;
  height: 419px;
  background-image: url("https://qa.wemake.co.il/mod/awards/img/home-awards-arrow.svg");
  background-position: top left;
  background-repeat: no-repeat;
  background-size: contain;
  transform: rotate(5deg);
  z-index: -1;
}
.home-awards .awards-behance .home-awards-ellipse {
  position: absolute;
  top: 237px;
  left: 71%;
  width: 505px;
  height: 132px;
  transform: rotate(30deg);
  background-image: url("https://qa.wemake.co.il/mod/awards/img/home-awards-ellipse.svg");
  background-position: top left;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: -1;
}
.home-awards .awards-design .design-row {
  padding-left: 16px;
}
.home-awards .awards-design .design-col {
  width: 32.3624595469%;
}
.home-awards .awards-design .design-col:last-child {
  width: 29.7734627832%;
  padding-top: 195px;
}
.home-awards .awards-design .design-col:nth-child(1) .design-pic {
  margin-bottom: 27px;
}
.home-awards .awards-design .design-col:nth-child(2) .design-pic {
  margin-bottom: 30px;
}
.home-awards .awards-design .design-col:nth-child(3) .design-pic {
  margin-bottom: 19px;
}
.home-awards .awards-design .design-title-pic {
  position: relative;
  margin-bottom: 15px;
  max-width: 355px;
}
.home-awards .awards-design .design-text {
  position: relative;
  margin-bottom: 65px;
}
.home-awards .awards-design .design-pic {
  max-width: 460px;
}
.home-awards .awards-design .design-badge {
  width: 113px;
}
.home-awards .awards-design .design-badge-pic {
  width: 137px;
}
.home-awards .awards-design .line {
  margin: 140px 0 55px;
}
.home-awards .awards-design .shine-eff {
  bottom: 550px;
  left: 230px;
  transform: rotate(-60deg);
}
@media all and (min-width: 769px) {
  .home-awards .awards-design .shine-eff {
    width: 841px;
    animation: shine-rotate-small 30s infinite linear;
  }
}
.home-awards .awards-design .design-title {
  line-height: 28.56px;
}
.home-awards .awards-css [class*=-bc-]:before {
  top: -5px;
  bottom: -5px;
}
.home-awards .awards-css .css-col:nth-child(1) {
  margin: 0 0 5px 31px;
}
.home-awards .awards-css .css-title-pic {
  max-width: 350px;
  margin-bottom: 35px;
}
.home-awards .awards-css .css-pic {
  max-width: 485px;
}
.home-awards .awards-css .css-text {
  margin-bottom: 22px;
}
.home-awards .awards-css .css-text .fr-text {
  padding-left: 5px;
}
.home-awards .awards-css .css-text .fr-text p:not(:last-child) {
  margin-bottom: 35px;
}
.home-awards .awards-css .figure4 {
  position: absolute;
  top: -20px;
  right: 50%;
  margin-right: -75px;
}
.home-awards .awards-css .css-team-title1 {
  font-size: 51px;
  line-height: 69.88px;
  max-width: 910px;
  margin-bottom: 22px;
  text-transform: lowercase;
  font-weight: 900;
}
.home-awards .awards-css .css-team-title1 strong {
  color: #000;
  position: relative;
  display: inline-block;
  margin-left: 15px;
}
.home-awards .awards-css .css-team-title1 strong::before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  top: -3px;
  bottom: 0;
  right: -7px;
  left: -7px;
  border-radius: 7px;
  transform: rotate(0.98deg);
  background: linear-gradient(261.61deg, #FCFF67, #05E500, #FCFF67, #05E500, #FCFF67);
  animation: gradient 10s ease infinite;
  background-size: 300%;
}
.home-awards .awards-css .line {
  margin: 135px 0 8px;
}

.about-awards .inner {
  max-width: 1358px;
  position: relative;
}
.about-awards .fr-text {
  line-height: 30px;
}
.about-awards .awards-head {
  text-align: left;
  margin-bottom: 444px;
}
.about-awards .awards-head .title {
  font-size: 64px;
  font-weight: 800;
  line-height: 90px;
  padding-left: 15px;
  position: relative;
  z-index: 2;
}
.about-awards .awards-head .title div:nth-of-type(1) p {
  margin-bottom: 8px;
  margin-top: -2px;
  line-height: 105%;
}
.about-awards .awards-head .title div:nth-of-type(1) p strong {
  margin-left: 4px;
  padding: 2px 5px 2px 5px;
  transform: rotate(-0.923deg);
}
.about-awards .awards-head .title div:nth-of-type(2) p {
  margin-bottom: 9px;
  margin-top: -1px;
  line-height: 105%;
}
.about-awards .awards-head .title div:nth-of-type(2) p strong {
  margin-left: 3px;
  padding: 3px 4px 3px 7px;
  transform: rotate(1.075deg);
}
.about-awards .awards-head .title div:nth-of-type(3) p {
  margin-top: -5px;
  line-height: 125%;
}
.about-awards .awards-head .title div:nth-of-type(3) p strong {
  transform: rotate(-2.385deg);
  padding: 2px 5px 0 7px;
  margin-left: 1px;
  margin-right: -2px;
}
.about-awards .awards-head .title strong {
  background: linear-gradient(98.51deg, #8FFF01, #EBFF01, #8FFF01, #EBFF01, #8FFF01);
  animation: gradient 10s ease infinite;
  background-size: 300%;
}
.about-awards .awards-head .title strong::before {
  display: none;
}
.about-awards .awards-head .shine-eff {
  top: 300px;
  right: 50%;
  margin-right: -1440px;
  transform: rotate(-10deg);
  width: 1200px;
  opacity: 0.9;
}
.about-awards .awards-head .shine-eff:before, .about-awards .awards-head .shine-eff:after {
  width: 850px;
  height: 850px;
}
.about-awards .awards-head .about-us-behance-line {
  position: absolute;
  width: 914px;
  height: 555px;
  left: 131px;
  bottom: -477px;
  background-image: url("https://qa.wemake.co.il/mod/awards/img/about-us-behance-line.svg");
  background-position: top center;
  background-repeat: no-repeat;
  background-size: contain;
  transform: rotate(-3.72deg);
  z-index: 1;
}
.about-awards .awards-behance {
  margin-bottom: 260px;
}
.about-us-page .about-awards .awards-behance {
  margin-bottom: 200px;
}
.about-awards .awards-behance .inner {
  display: flex;
  align-items: flex-start;
  max-width: 1352px;
}
.about-awards .awards-behance .behance-pic-wr {
  flex-grow: 1;
  max-width: 654px;
  margin-top: 30px;
}
.about-us-page .about-awards .awards-behance .behance-pic-wr {
  margin-top: 34px;
}
.about-awards .awards-behance .behance-text-wr {
  max-width: 610px;
  min-width: 610px;
  margin-left: 64px;
}
.about-awards .awards-behance .behance-text-wr .fr-text p {
  margin-right: 2px;
}
.about-awards .awards-behance .behance-text-wr .fr-text p:not(:last-child) {
  margin-bottom: 29px;
}
.about-awards .awards-behance .title1 {
  font-size: 30px;
  margin-bottom: 19px;
  margin-right: 4px;
  letter-spacing: 0.7px;
}
.about-awards .awards-behance .title2 {
  font-size: 110px;
  font-weight: 600;
  margin-right: 2px;
}
.about-awards .awards-behance .behance-badge {
  max-width: 240px;
  margin-bottom: 26px;
  margin-top: 28px;
  margin-right: -5px;
}
.about-awards .awards-behance .behance-title-pic {
  margin-right: 3px;
}
.about-awards .awards-behance .shine-eff.-p1 {
  top: -100px;
  right: -100px;
  left: -100px;
  bottom: -100px;
}
.about-awards .awards-behance .shine-eff.-p1::before {
  background: radial-gradient(circle, #1500ff 0%, transparent 65%);
}
@media all and (min-width: 769px) {
  .about-awards .shine-eff {
    transform: rotate(-50deg);
    right: 50%;
    opacity: 0.9;
    width: 1300px;
  }
  .about-awards .shine-eff:before, .about-awards .shine-eff:after {
    width: 900px;
    height: 900px;
  }
}
.about-awards .awards-design {
  margin-bottom: 340px;
  padding-right: 110px;
}
.about-us-page .about-awards .awards-design {
  margin-bottom: 358px;
}
.about-awards .awards-design .inner {
  max-width: 1478px;
  padding-right: 10px;
}
.about-awards .awards-design .design-top-title-pic {
  max-width: 570px;
  margin-bottom: 10px;
}
.about-awards .awards-design .design-top-text {
  max-width: 425px;
  margin-bottom: 40px;
}
.about-us-page .about-awards .awards-design .design-top-text {
  margin-bottom: 43px;
}
.about-awards .awards-design .design-col {
  width: 100%;
}
.about-awards .awards-design .design-col:not(:last-child) {
  margin-left: 3.7%;
}
.about-awards .awards-design .design-pic {
  margin-bottom: 30px;
}
.about-us-page .about-awards .awards-design .design-pic {
  margin-bottom: 35px;
}
.about-awards .awards-design .shine-eff {
  top: 0;
}
.about-awards .awards-css {
  margin-bottom: 150px;
}
.about-us-page .about-awards .awards-css {
  margin-bottom: 38px;
}
.about-awards .awards-css .inner {
  max-width: 1500px;
}
.about-us-page .about-awards .awards-css .inner {
  max-width: 1530px;
  padding-right: 27px;
}
.about-awards .awards-css .str-title {
  font-size: 85px;
  font-weight: 600;
}
.about-awards .awards-css .css-title1 {
  margin-bottom: 10px;
  font-size: 17px;
  font-weight: 800;
}
.about-us-page .about-awards .awards-css .css-title1 {
  margin-bottom: 20px;
}
.about-awards .awards-css .css-title2 {
  font-size: 49px;
  font-weight: 600;
  margin-bottom: 45px;
}
.about-us-page .about-awards .awards-css .css-title2 {
  margin-bottom: 47px;
  margin-right: 9px;
}
.about-awards .awards-css .css-title-pic {
  margin-bottom: 35px;
  max-width: 350px;
}
.about-awards .awards-css .css-row {
  align-items: stretch;
}
.about-awards .awards-css .css-row.-first {
  margin-bottom: 45px;
}
.about-us-page .about-awards .awards-css .css-row.-first {
  margin-bottom: 0;
}
.about-awards .awards-css .css-row.-first .css-col:nth-child(2) {
  text-align: left;
  padding-top: 20px;
}
.about-us-page .about-awards .awards-css .css-row.-first .css-col:nth-child(2) {
  padding-top: 30px;
}
.about-awards .awards-css .css-col:nth-child(2) {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.about-awards .awards-css .css-text {
  max-width: 460px;
}
.about-us-page .about-awards .awards-css .css-text.desktop- {
  margin-top: 5px;
}
.about-us-page .about-awards .awards-css .css-text.desktop- .fr-text p:not(:last-child) {
  margin-bottom: 30px;
}
.about-awards .awards-css .figure-wr {
  position: relative;
  min-height: 420px;
}
.about-awards .awards-css .figure4 {
  position: absolute;
  width: 1190px;
  height: 355px;
}
.about-us-page .about-awards .awards-css .figure4 {
  margin-top: -20px;
}
.about-awards .awards-css .css-person-pic {
  background: #fff;
}
.about-awards .awards-css .shine-eff {
  top: 550px;
}

.webdev-awards .inner {
  position: relative;
  z-index: 1;
}
.webdev-awards .inner .awards-head .top-title1 {
  margin-bottom: 20px;
}
.webdev-awards .inner .awards-head .top-text {
  line-height: 144%;
}
.service-webdev-page .webdev-awards .service-webdev-line-dt {
  bottom: 390px;
  left: 0px;
}
.service-webdev-page .webdev-awards .awards-design .design-col:nth-child(3), .service-webdev-page .webdev-awards .awards-design .design-col:nth-child(4) {
  top: -110px;
}
.service-webdev-page .webdev-awards .awards-design .design-col:nth-child(1), .service-webdev-page .webdev-awards .awards-design .design-col:nth-child(2) {
  margin-top: 200px;
}
.service-webdev-page .webdev-awards .awards-design .design-pic {
  margin-bottom: 20px;
}
.service-webdev-page .webdev-awards .awards-design .design-title {
  line-height: 120%;
}
.webdev-awards .awards-head {
  margin-bottom: 100px;
}
.service-webdev-page .webdev-awards .awards-head .inner {
  max-width: 1680px;
}
.service-webdev-page .webdev-awards .awards-head .top-title1 {
  margin-bottom: 20px;
}
.service-webdev-page .webdev-awards .awards-head .top-text {
  line-height: 140%;
}
.webdev-awards .awards-head .top-wr {
  max-width: 710px;
}
.webdev-awards .awards-head .top-title1 {
  font-size: 96px;
  font-weight: 900;
}
.webdev-awards .awards-head .top-text {
  font-size: 22px;
  max-width: 710px;
}
.webdev-awards .awards-design {
  margin-bottom: 191px;
}
.service-webdev-page .webdev-awards .awards-design .inner {
  max-width: 1680px;
}
.service-webdev-page .webdev-awards .awards-design .design-badge {
  width: 100px;
  margin-top: 5px;
}
.service-webdev-page .webdev-awards .awards-design .design-row {
  max-width: 1503px;
}
.service-webdev-page .webdev-awards .awards-design .design-col {
  max-width: 356px;
}
.webdev-awards .awards-design .design-badges {
  display: flex;
  margin-bottom: 55px;
}
.webdev-awards .awards-design .design-badge-pic {
  max-width: 135px;
}
.webdev-awards .awards-design .design-title-pic {
  max-width: 360px;
  margin-bottom: 10px;
}
.webdev-awards .awards-design .design-text {
  max-width: 430px;
  line-height: 30px;
}
.webdev-awards .awards-design .design-col {
  width: 100%;
}
.webdev-awards .awards-design .design-col:nth-child(1), .webdev-awards .awards-design .design-col:nth-child(2) {
  margin-top: 190px;
}
.webdev-awards .awards-design .design-col:nth-child(3), .webdev-awards .awards-design .design-col:nth-child(4) {
  position: relative;
  top: -120px;
}
.webdev-awards .awards-design .design-col:not(:last-child) {
  margin-left: 25px;
}
.webdev-awards .awards-design .design-pic {
  margin-bottom: 15px;
}
.webdev-awards .awards-design .shine-eff {
  width: 840px;
  top: 100px;
  left: -100px;
  transform: rotate(-50deg);
}
.webdev-awards .awards-design .shine-eff.-an-rotate {
  animation: shine-rotate-small 30s infinite linear;
}
.webdev-awards .awards-design .shine-eff::before, .webdev-awards .awards-design .shine-eff::after {
  width: 580px;
  height: 580px;
}
.service-webdev-page .webdev-awards .awards-css {
  padding-bottom: 300px;
}
.service-webdev-page .webdev-awards .awards-css .inner {
  max-width: 1680px;
}
.service-webdev-page .webdev-awards .awards-css .css-col:nth-child(1) {
  max-width: 506px;
  margin: 0 5px 5px 75px;
}
.service-webdev-page .webdev-awards .awards-css .css-col:nth-child(1) img {
  width: 100%;
}
.service-webdev-page .webdev-awards .awards-css .css-title {
  margin-bottom: 41px;
}
.service-webdev-page .webdev-awards .awards-css .css-text {
  line-height: 160%;
}
.service-webdev-page .webdev-awards .awards-css .css-text .fr-text p:not(:last-child) {
  margin-bottom: 32px;
}
.service-webdev-page .webdev-awards .awards-css .cssw-pic {
  margin-bottom: 40px;
}
.service-webdev-page .webdev-awards .awards-css .css-team-wr {
  margin-bottom: -5px;
  margin-right: -5px;
}
.service-webdev-page .webdev-awards .awards-css .css-badges {
  max-width: 315px;
}
.webdev-awards .awards-css .css-title-pic {
  max-width: 250px;
  margin-bottom: 50px;
  display: none;
}
.webdev-awards .awards-css .css-row {
  align-items: stretch;
}
.webdev-awards .awards-css .css-col:nth-child(2) {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.webdev-awards .awards-css .cssw-pic {
  margin-bottom: 40px;
  max-width: 115px;
  display: none;
}
.webdev-awards .awards-css .css-title {
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 40px;
}
.webdev-awards .awards-css .css-text {
  margin-bottom: 50px;
  flex-grow: 1;
  max-width: 460px;
}
.webdev-awards .awards-css .css-text .fr-text {
  margin-bottom: 60px;
}
.webdev-awards .service-webdev-line-dt {
  position: absolute;
  width: 829px;
  height: 666px;
  background-image: url("https://qa.wemake.co.il/mod/awards/img/webdev-awards-line.svg");
  background-position: top left;
  background-repeat: no-repeat;
  background-size: contain;
  bottom: 237px;
  left: -15px;
}

.webdesign-awards {
  padding-top: 165px;
  position: relative;
  z-index: 12;
}
.webdesign-awards .awards-head {
  margin-bottom: 200px;
}
.webdesign-awards .awards-head .title div:nth-of-type(1) p {
  margin-bottom: 18px;
}
.webdesign-awards .awards-head .title div:nth-of-type(2) p {
  margin-bottom: 18px;
}
.webdesign-awards .awards-head .about-us-behance-line {
  width: 826px;
  height: 540px;
  left: 270px;
  bottom: -420px;
  background: url(https://qa.wemake.co.il/mod/awards/img/webdesign-behance-line.svg) top center no-repeat;
  background-size: contain;
  transform: rotate(1.8deg);
}
.webdesign-awards .awards-behance {
  margin-bottom: 318px;
}
.webdesign-awards .awards-behance .inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  max-width: 1480px;
  margin: 0 auto 0 165px;
}
.webdesign-awards .awards-behance .fr-text {
  font-size: 20px;
}
.webdesign-awards .awards-behance .behance-pic-wr {
  max-width: 580px;
}
.webdesign-awards .awards-behance .behance-pic-cert {
  position: relative;
}
.webdesign-awards .awards-behance .behance-badge-wr {
  position: absolute;
  width: 245px;
  height: 245px;
  bottom: -90px;
  right: -132px;
  transform: rotate(11.175deg);
}
.webdesign-awards .awards-behance .webdesign_awards_behance_pic3 {
  position: relative;
  width: 210px;
  transform: rotate(5deg);
  top: 120px;
  left: 95px;
}
.webdesign-awards .awards-behance .title1 {
  color: #FFF;
  text-align: right;
  font-family: SimplerPro_Extended;
  font-size: 17px;
  font-weight: 900;
  margin: 0 0 10px 0;
  letter-spacing: 0;
}
.webdesign-awards .awards-behance .title2 {
  font-size: 49px;
  background: linear-gradient(264deg, #8FFF00 27.48%, #EBFF00 94.11%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 47px;
}
.webdesign-awards .awards-design {
  margin-bottom: 265px;
}
.webdesign-awards .awards-design .inner {
  max-width: 1510px;
}
.webdesign-awards .awards-design .design-badge {
  width: 100px;
}
.webdesign-awards .awards-design .design-pic {
  margin-bottom: 20px;
}
.webdesign-awards .awards-design .design-col:nth-child(1),
.webdesign-awards .awards-design .design-col:nth-child(2) {
  margin-top: 126px;
}
.webdesign-awards .awards-design .design-col:nth-child(3),
.webdesign-awards .awards-design .design-col:nth-child(4) {
  top: -180px;
}
.webdesign-awards .awards-css {
  margin-bottom: 150px;
}
.about-us-page .webdesign-awards .awards-css {
  margin-bottom: 38px;
}
.webdesign-awards .awards-css .inner {
  max-width: 1500px;
}
.about-us-page .webdesign-awards .awards-css .inner {
  max-width: 1530px;
  padding-right: 27px;
}
.webdesign-awards .awards-css .str-title {
  font-size: 85px;
  font-weight: 600;
}
.webdesign-awards .awards-css .css-title1 {
  margin-bottom: 10px;
  font-size: 17px;
  font-weight: 800;
}
.about-us-page .webdesign-awards .awards-css .css-title1 {
  margin-bottom: 20px;
}
.webdesign-awards .awards-css .css-title2 {
  font-size: 49px;
  font-weight: 600;
  margin-bottom: 45px;
}
.about-us-page .webdesign-awards .awards-css .css-title2 {
  margin-bottom: 47px;
  margin-right: 9px;
}
.webdesign-awards .awards-css .css-title-pic {
  margin-bottom: 35px;
  max-width: 350px;
}
.webdesign-awards .awards-css .css-row {
  align-items: stretch;
}
.webdesign-awards .awards-css .css-row.-first {
  margin-bottom: 45px;
}
.about-us-page .webdesign-awards .awards-css .css-row.-first {
  margin-bottom: 0;
}
.webdesign-awards .awards-css .css-row.-first .css-col:nth-child(2) {
  text-align: left;
  padding-top: 20px;
}
.about-us-page .webdesign-awards .awards-css .css-row.-first .css-col:nth-child(2) {
  padding-top: 30px;
}
.webdesign-awards .awards-css .css-col:nth-child(2) {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.webdesign-awards .awards-css .css-text {
  max-width: 460px;
}
.about-us-page .webdesign-awards .awards-css .css-text.desktop- {
  margin-top: 5px;
}
.about-us-page .webdesign-awards .awards-css .css-text.desktop- .fr-text p:not(:last-child) {
  margin-bottom: 30px;
}
.webdesign-awards .awards-css .figure-wr {
  position: relative;
  min-height: 420px;
}
.webdesign-awards .awards-css .figure4 {
  position: absolute;
  width: 1190px;
  height: 355px;
}
.about-us-page .webdesign-awards .awards-css .figure4 {
  margin-top: -20px;
}
.webdesign-awards .awards-css .css-person-pic {
  background: #fff;
}
.webdesign-awards .awards-css .shine-eff {
  top: 550px;
}

.marketing {
  position: relative;
  z-index: 1;
  padding-bottom: 240px;
}
.home-page .marketing {
  padding-bottom: 262px;
}
.about-us-page .marketing {
  padding-bottom: 144px;
}
.about-us-page .marketing .inner {
  max-width: 1528px;
}
.home-page .marketing .inner {
  max-width: 1560px;
  padding-left: 5px;
}
.marketing .row {
  display: flex;
  align-items: flex-start;
}
.about-us-page .marketing .row {
  align-items: flex-end;
}
.marketing .col:nth-child(1) {
  flex-grow: 1;
  margin-left: 70px;
}
.about-us-page .marketing .col:nth-child(1) {
  padding-bottom: 60px;
}
.about-us-page .marketing .col {
  padding: 0 30px 30px 0;
}
.marketing .col:nth-child(2) {
  width: 48.5%;
  text-align: left;
}
.about-us-page .marketing .col:nth-child(2) {
  width: 52%;
}
.marketing .title1 {
  font-size: 17px;
  font-weight: 800;
  margin: 21px 0 9px;
}
.marketing .title2 {
  font-size: 49px;
  font-weight: 600;
  margin-bottom: 70px;
}
.marketing .text {
  max-width: 485px;
  font-size: 24px;
}
.about-us-page .marketing .text {
  max-width: 423px;
  font-size: 20px;
  line-height: 30px;
}
.marketing .text .fr-text p:not(:last-child) {
  margin-bottom: 35px;
}
.about-us-page .marketing .text .fr-text p:not(:last-child) {
  margin-bottom: 27px;
}
.marketing .partner-pic {
  margin-bottom: 40px;
}
.marketing .cert-title {
  text-align: left;
  font-size: 85px;
  font-weight: 600;
  margin-bottom: 56px;
}
.about-us-page .marketing .cert-title {
  margin-bottom: 92px;
}
.marketing .cert-wr {
  display: flex;
}
.marketing .marketing_image1_wrap {
  margin-left: 35px;
  position: relative;
}
.marketing .marketing_image1_wrap .marketing_image1_anim {
  position: absolute;
  width: 86%;
  top: 58%;
  left: 50%;
  transform: translateX(-50%);
}
.marketing .marketing_image1_wrap .marketing_image1_anim video {
  width: 100%;
  height: auto;
}
.about-us-page .marketing .marketing_image1_wrap {
  margin-left: 50px;
}
@media all and (min-width: 769px) {
  .marketing .shine-eff {
    top: 450px;
    right: 50%;
    margin: 0 -610px 0 0;
    width: 1300px;
    transform: rotate(-60deg);
    animation: shine-rotate-small 30s infinite linear;
  }
  .marketing .shine-eff:before, .marketing .shine-eff:after {
    width: 900px;
    height: 900px;
  }
}
.marketing .marq-wr.mobile- {
  display: none;
}

.webdesign-awards3 {
  margin-top: 175px;
}
.webdesign-awards3 .section_4 {
  position: relative;
}
.webdesign-awards3 .section_4 .inner {
  position: relative;
  max-width: 1520px;
  padding-right: 0;
  position: relative;
  z-index: 10;
}
.webdesign-awards3 .section_4 .awards-head {
  text-align: left;
  padding-bottom: 315px;
  position: relative;
}
.webdesign-awards3 .section_4 .awards-head .title {
  font-size: 64px;
  font-weight: 800;
  line-height: 90px;
  padding-left: 15px;
  position: relative;
  z-index: 2;
}
.webdesign-awards3 .section_4 .awards-head .title strong {
  color: #000;
  position: relative;
  display: inline-block;
  font-weight: 800;
  background: linear-gradient(98.51deg, #8FFF01, #EBFF01, #8FFF01, #EBFF01, #8FFF01);
  animation: gradient 10s ease infinite;
  background-size: 300%;
  border-radius: 4px;
}
.webdesign-awards3 .section_4 .awards-head .title div:nth-of-type(1) p {
  margin-bottom: 10px;
  margin-top: -2px;
  line-height: 105%;
  position: relative;
  top: -7px;
  left: -16px;
}
.webdesign-awards3 .section_4 .awards-head .title div:nth-of-type(1) p strong {
  margin-left: 0;
  padding: 10px 14px 2px 20px;
  transform: rotate(-0.923deg);
  position: relative;
  left: 10px;
}
.webdesign-awards3 .section_4 .awards-head .title div:nth-of-type(2) p {
  margin-bottom: 18px;
  margin-top: -3px;
  line-height: 105%;
  position: relative;
  left: -14px;
}
.webdesign-awards3 .section_4 .awards-head .title div:nth-of-type(2) p strong {
  padding: 7px 12px 3px 17px;
  transform: rotate(1.075deg);
  position: relative;
  left: 8px;
}
.webdesign-awards3 .section_4 .awards-head .title div:nth-child(3) {
  margin-top: 3px;
}
.webdesign-awards3 .section_4 .awards-head .title div:nth-child(3) p {
  line-height: 105%;
  position: relative;
  top: -10px;
  left: -13px;
}
.webdesign-awards3 .section_4 .awards-head .title div:nth-child(3) p strong {
  transform: rotate(-2.385deg);
  padding: 15px 15px 0 15px;
  position: relative;
  left: 12px;
}
.webdesign-awards3 .section_4 .awards-head .sc_4_line {
  content: "";
  position: absolute;
  width: 983px;
  height: 406px;
  bottom: 20px;
  left: 360px;
  background: url(https://qa.wemake.co.il/mod/awards/img/sc_4_line.svg) no-repeat top center;
  background-size: contain;
}
.webdesign-awards3 .section_4 .awards-design {
  display: flex;
  justify-content: space-between;
}
.webdesign-awards3 .section_4 .awards-design .shine-eff {
  left: -100px;
}
.webdesign-awards3 .section_4 .awards-design .awards-design_content {
  width: 780px;
}
.webdesign-awards3 .section_4 .awards-design .awards-design_title {
  color: #FFF;
  font-family: SimplerPro_Extended;
  font-size: 96px;
  font-weight: 900;
}
.webdesign-awards3 .section_4 .awards-design .awards-design_subtitle {
  color: #FFF;
  font-family: SimplerPro_Extended;
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 25px;
}
.webdesign-awards3 .section_4 .awards-design .awards-design_text {
  color: #FFF;
  text-align: right;
  font-family: PloniRegularAAA, sans-serif;
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 87px;
  line-height: 150%;
  max-width: 595px;
}
.webdesign-awards3 .section_4 .awards-design .awards-design_logo {
  max-width: 226px;
  margin-bottom: 27.5px;
}
.webdesign-awards3 .section_4 .awards-design .badge-block {
  display: flex;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid #727272;
}
.webdesign-awards3 .section_4 .awards-design .badge-block:first-of-type {
  border-top: 1px solid #727272;
}
.webdesign-awards3 .section_4 .awards-design .badge-image {
  max-width: 136px;
  margin-left: 48px;
}
.webdesign-awards3 .section_4 .awards-design .badge-descr {
  margin-top: 13px;
}
.webdesign-awards3 .section_4 .awards-design .badge-title {
  color: #FFF;
  text-align: right;
  font-family: SimplerPro_Extended;
  font-size: 30px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 16px;
  direction: ltr;
}
.webdesign-awards3 .section_4 .awards-design .badge-text {
  color: #FFF;
  text-align: right;
  font-family: PloniRegularAAA, sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 150%;
  max-width: 535px;
}
.webdesign-awards3 .section_4 .awards-design .awards-design_images {
  display: flex;
  justify-content: flex-end;
  position: relative;
  width: 729px;
  margin-right: 10px;
  margin-top: 23px;
}
.webdesign-awards3 .section_4 .awards-design .awards-design_images .cert {
  position: absolute;
  width: 374px;
}
.webdesign-awards3 .section_4 .awards-design .awards-design_images .cert1 {
  top: 0;
  left: 0;
}
.webdesign-awards3 .section_4 .awards-design .awards-design_images .cert2 {
  top: 174px;
  left: 214px;
  z-index: 1;
}
.webdesign-awards3 .section_4 .awards-design .awards-design_images .cert3 {
  top: 430px;
  left: 355px;
  z-index: 3;
}
.webdesign-awards3 .section_4 .special-award {
  padding-top: 95px;
  padding-bottom: 140px;
  display: flex;
  align-items: center;
  position: relative;
}
.webdesign-awards3 .section_4 .special-award .shine-eff {
  width: 1100px;
  top: 300px;
  left: -10%;
}
.webdesign-awards3 .section_4 .special-award .shine-eff::before, .webdesign-awards3 .section_4 .special-award .shine-eff::after {
  width: 800px;
  height: 800px;
}
.webdesign-awards3 .section_4 .special-award_image {
  width: 515px;
  margin-left: 159px;
}
.webdesign-awards3 .section_4 .special-award_content {
  margin-top: 75px;
}
.webdesign-awards3 .section_4 .special-award_title {
  color: #FFF;
  text-align: right;
  font-family: SimplerPro_Extended;
  font-size: 75px;
  font-weight: 900;
  line-height: 100%;
  text-transform: uppercase;
  margin-bottom: 125px;
  max-width: 731px;
  position: relative;
}
.webdesign-awards3 .section_4 .special-award_title::before {
  content: "";
  position: absolute;
  width: 762px;
  height: 155px;
  top: 85px;
  right: -40px;
  background: url(https://qa.wemake.co.il/mod/awards/img/sc_4_ellipse.svg) no-repeat;
  background-size: contain;
}
.webdesign-awards3 .section_4 .special-award_text {
  color: #FFF;
  text-align: right;
  font-family: PloniRegularAAA, sans-serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 150%;
  max-width: 535px;
}
.webdesign-awards3 .section_4 .awards-css {
  padding-top: 145px;
  padding-bottom: 114px;
}
.webdesign-awards3 .section_4 .awards-css_wrap {
  display: flex;
}
.webdesign-awards3 .section_4 .awards-css_image {
  width: 513px;
  margin-left: 58px;
}
.webdesign-awards3 .section_4 .awards-css_content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.webdesign-awards3 .section_4 .awards-css_content_top {
  max-width: 412px;
}
.webdesign-awards3 .section_4 .awards-css_content_title {
  color: #FFF;
  text-align: right;
  font-family: SimplerPro_Extended;
  font-size: 30px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 41px;
  direction: ltr;
}
.webdesign-awards3 .section_4 .awards-css_content_text {
  color: #FFF;
  text-align: right;
  font-family: PloniRegularAAA, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 166%;
}
.webdesign-awards3 .section_4 .awards-css_content_text p {
  margin-bottom: 30px;
  font-size: 20px;
}
.webdesign-awards3 .section_4 .awards-css_logo {
  max-width: 250px;
  margin-bottom: 51px;
}
.webdesign-awards3 .section_4 .design-row {
  display: none;
}
.webdesign-awards3 .section_4 .sc_4_awards_css_logo_star {
  max-width: 114px;
  margin-bottom: 45px;
}
.webdesign-awards3 .section_4 .css-team-wr {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  max-width: 460px;
  flex-wrap: wrap;
}
.webdesign-awards3 .section_4 .css-team {
  display: flex;
}
.webdesign-awards3 .section_4 .css-person {
  width: 63px;
}
.webdesign-awards3 .section_4 .css-person-pic {
  width: 95px;
  height: 95px;
  padding: 5px;
  border: 1px solid #fff;
  border-radius: 50%;
  background: #000;
}
.webdesign-awards3 .section_4 .css-team-title2 {
  line-height: 107.5%;
  font-size: 26px;
}
.webdesign-awards3 .section_4 .css-team-title2 strong {
  font-weight: 700;
}
.webdesign-awards3 .section_4 .running-line {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(270deg, #FAFF00 -1.15%, #8FFF00 101.14%);
  padding: 20px 0;
  height: 112px;
}
.webdesign-awards3 .section_4 .running-line .running_line_inner {
  display: flex;
  font-family: "Unbounded", "sans-serif";
  font-size: 48px;
  line-height: 100%;
  text-transform: uppercase;
  color: #000;
  position: relative;
  white-space: nowrap;
  margin-right: 8px;
  animation-name: running;
  animation-duration: 80s;
  animation-iteration-count: infinite;
  animation-direction: reverse;
  animation-timing-function: linear;
  font-weight: 400;
}
.webdesign-awards3 .section_4 .running-line .running_line_inner div {
  margin-right: 8px;
}
.webdesign-awards3 .section_4 .branding-awards {
  position: relative;
  z-index: 1;
  padding-top: 252px;
  padding-bottom: 240px;
}
.webdesign-awards3 .section_4 .branding-awards::before {
  content: "";
  position: absolute;
  width: 766px;
  height: 194px;
  top: 244px;
  right: -197px;
  background: url(https://qa.wemake.co.il/mod/awards/img/sc_4_circle.svg) no-repeat top center;
  background-size: contain;
  display: flex;
  justify-content: space-between;
  padding-bottom: 95px;
  transform: rotate(30deg);
}
.webdesign-awards3 .section_4 .branding-awards .shine-eff {
  left: 0;
}
.webdesign-awards3 .section_4 .branding-awards .inner {
  position: relative;
  max-width: 1520px;
  display: flex;
  justify-content: flex-end;
  left: -51px;
}
.webdesign-awards3 .section_4 .branding-awards .inner.mobile- {
  display: none;
}
.webdesign-awards3 .section_4 .branding-awards .row {
  display: flex;
  align-items: stretch;
}
.webdesign-awards3 .section_4 .branding-awards .col:nth-child(1) {
  flex-grow: 1;
  margin: -4px 0 -4px 17px;
  text-align: right;
}
.webdesign-awards3 .section_4 .branding-awards .col:nth-child(2) {
  width: 69%;
}
.webdesign-awards3 .section_4 .branding-awards .title1 {
  font-size: 17px;
  font-weight: 800;
  margin: 21px 0 9px;
}
.webdesign-awards3 .section_4 .branding-awards .title2 {
  font-size: 49px;
  font-weight: 600;
  margin-bottom: 70px;
}
.webdesign-awards3 .section_4 .branding-awards .text {
  max-width: 485px;
  font-size: 24px;
}
.webdesign-awards3 .section_4 .branding-awards .text .fr-text p:not(:last-child) {
  margin-bottom: 35px;
}
.about-us-page .webdesign-awards3 .section_4 .branding-awards .text .fr-text p:not(:last-child) {
  margin-bottom: 27px;
}
.webdesign-awards3 .section_4 .branding-awards .partner-pic {
  margin-bottom: 40px;
}
.webdesign-awards3 .section_4 .branding-awards .cert-title {
  font-family: SimplerPro_Extended;
  max-width: 1130px;
  text-align: left;
  font-size: 96px;
  font-weight: 900;
  margin-bottom: 44px;
}
.webdesign-awards3 .section_4 .branding-awards .cert-title.-str-white {
  -webkit-text-stroke-width: 0.6999999881px;
}
.webdesign-awards3 .section_4 .branding-awards .cert-wr {
  display: flex;
}
.webdesign-awards3 .section_4 .branding-awards .branding-awards_image1_wrap {
  margin-left: 0.8854166667vw;
  position: relative;
}
.webdesign-awards3 .section_4 .branding-awards .branding-awards_image1_wrap .branding-awards_image1_anim {
  position: absolute;
  width: 86%;
  top: 58%;
  left: 50%;
  transform: translateX(-50%);
}
.webdesign-awards3 .section_4 .branding-awards .branding-awards_image1_wrap .branding-awards_image1_anim video {
  width: 100%;
  height: auto;
}
.webdesign-awards3 .section_4 .branding-awards .branding-awards_image2_wrap {
  margin-left: 0.8854166667vw;
  position: relative;
}
.webdesign-awards3 .section_4 .branding-awards .branding-awards_image2_wrap .branding-awards_image2_anim {
  position: absolute;
  width: 86%;
  top: 58%;
  left: 50%;
  transform: translateX(-50%);
}
.webdesign-awards3 .section_4 .branding-awards .branding-awards_image2_wrap .branding-awards_image2_anim video {
  width: 100%;
  height: auto;
}

.-light-green-text strong {
  color: #000;
  position: relative;
  display: inline-block;
  font-weight: 800;
  padding: 0 2px 0 11px;
}
.-light-green-text strong:before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  top: 2px;
  bottom: 13px;
  right: -10px;
  left: -10px;
  background: linear-gradient(98.51deg, #8FFF01, #EBFF01, #8FFF01, #EBFF01, #8FFF01);
  animation: gradient 10s ease infinite;
  background-size: 300%;
  border-radius: 4px;
}
.-light-green-text div:nth-child(1) strong:before {
  transform: rotate(-0.92deg);
}
.-light-green-text div:nth-child(2) strong {
  margin-right: -2px;
  margin-left: 1px;
}
.-light-green-text div:nth-child(2) strong:before {
  transform: rotate(1.08deg);
  top: 6px;
  bottom: 9px;
  left: -13px;
  right: -7px;
}
.-light-green-text div:nth-child(3) {
  margin-top: 3px;
}
.-light-green-text div:nth-child(3) strong {
  padding-left: 6px;
  margin-left: 5px;
  margin-right: -2px;
}
.-light-green-text div:nth-child(3) strong:before {
  transform: rotate(-2.38deg);
  right: -12px;
  top: -5px;
  bottom: 16px;
}

@media all and (min-width: 769px) {
  .md-marquee-wr_aw {
    height: 0;
  }
}
@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@keyframes arrows {
  0% {
    opacity: 0.2;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.2;
  }
}
@keyframes marquee2 {
  0% {
    left: 0;
  }
  100% {
    left: -70%;
  }
}
@keyframes marquee3 {
  0% {
    left: 0;
  }
  100% {
    left: -240%;
  }
}
@media all and (max-width: 768px) {
  .webdev-awards .awards-head {
    z-index: 1;
  }
  .webdev-awards .awards-behance {
    z-index: 2;
  }
  .service-webdev-page .webdev-awards .awards-head .shine-eff {
    top: 120px;
    right: -20%;
    margin-right: 0;
    transform: rotate(-45deg);
    width: 350px;
  }
  .service-webdev-page .webdev-awards .awards-head .shine-eff::before, .service-webdev-page .webdev-awards .awards-head .shine-eff::after {
    width: 200px;
    height: 200px;
  }
  .service-webdev-page .webdev-awards .awards-design .mobile-top-wr {
    padding: 0 5px;
  }
  .service-webdev-page .webdev-awards .awards-design .design-top-text {
    margin-bottom: 43px;
    font-size: 19px;
    line-height: 26px;
  }
  .service-webdev-page .webdev-awards .awards-design .design-badge {
    width: 98px;
    margin-top: 0;
  }
  .service-webdev-page .webdev-awards .awards-design .design-badge:not(:first-of-type) {
    margin-right: -17px;
  }
  .service-webdev-page .webdev-awards .awards-design .design-col:nth-child(1),
  .service-webdev-page .webdev-awards .awards-design .design-col:nth-child(2) {
    margin-top: 0;
  }
  .service-webdev-page .webdev-awards .awards-design .design-pic {
    margin-bottom: 14px;
  }
  .service-webdev-page .webdev-awards .awards-design .line {
    margin: 0;
  }
  .service-webdev-page .webdev-awards .awards-design .line .mobile-slider-arrow {
    top: 15px;
    right: calc(100% - 60px);
    animation: arrows 3s ease infinite;
  }
  .service-webdev-page .webdev-awards .awards-design .line .mobile-slider-arrow:nth-child(1) {
    margin-left: 35px;
  }
  .service-webdev-page .webdev-awards .awards-design .line .mobile-slider-arrow:nth-child(2) {
    margin-left: 17px;
    animation-delay: 1s;
  }
  .service-webdev-page .webdev-awards .awards-design .line .mobile-slider-arrow:nth-child(3) {
    margin-left: 0;
    animation-delay: 1.5s;
  }
  .service-webdev-page .webdev-awards .awards-design .shine-eff {
    width: 440px;
  }
  .service-webdev-page .webdev-awards .awards-design .shine-eff::before, .service-webdev-page .webdev-awards .awards-design .shine-eff::after {
    width: 250px;
    height: 250px;
  }
  .service-webdev-page .webdev-awards .awards-css {
    padding-bottom: 0;
    margin-bottom: 0;
  }
  .service-webdev-page .webdev-awards .awards-css .inner {
    margin-bottom: 35px;
  }
  .service-webdev-page .webdev-awards .awards-css .figure4 {
    top: -90px;
  }
  .service-webdev-page .webdev-awards .awards-css .css-team-wr {
    margin-right: 0px;
    margin-top: -22px;
  }
  .service-webdev-page .webdev-awards .awards-css .marq-wr.-style1 {
    height: 34px;
  }
  .service-webdev-page .webdev-awards .awards-css .marq-wr.-style1 .marq {
    font-size: 14px;
  }
  .service-webdev-page .webdev-awards .awards-behance .shine-eff.-p1 {
    top: 30px;
    right: 30px;
    left: -55px;
    bottom: 30px;
  }
  .webdev-awards .running-line {
    display: flex;
    align-items: center;
    justify-content: space-around;
    background: linear-gradient(270deg, #FAFF00 -1.15%, #8FFF00 101.14%);
    padding: 5px 0;
    height: 34px;
  }
  .webdev-awards .running-line .running_line_inner {
    display: flex;
    font-family: "Unbounded", "sans-serif";
    font-size: 14px;
    line-height: 100%;
    text-transform: uppercase;
    color: #000;
    position: relative;
    white-space: nowrap;
    margin-right: 4px;
    animation-name: running;
    animation-duration: 50s;
    animation-iteration-count: infinite;
    animation-direction: reverse;
    animation-timing-function: linear;
  }
  .webdev-awards .running-line .running_line_inner div {
    margin-right: 4px;
  }
  @keyframes running {
    0% {
      transform: translate(-100%, 0);
    }
    50% {
      transform: translate(0, 0);
    }
    100% {
      transform: translate(100%, 0);
    }
  }
  .awards-behance .behance-title-pic {
    max-width: 155px;
    margin-bottom: 20px;
  }
  .awards-design .design-badges {
    margin-bottom: 25px;
  }
  .awards-design .design-badge {
    width: 80px;
  }
  .home-page .awards-design .design-badge {
    width: 80px;
  }
  .awards-design .design-badge-pic {
    width: 100px;
  }
  .home-page .awards-design .design-badge-pic {
    width: 97px;
  }
  .awards-design .design-title {
    font-size: 13px;
    font-weight: 400;
  }
  .awards-css {
    margin-bottom: 50px;
    padding-bottom: 170px;
  }
  .awards-css .css-col:nth-child(1) {
    display: none;
  }
  .awards-css .css-team {
    margin-left: 40px;
  }
  .awards-css .css-person {
    width: 55px;
  }
  .awards-css .css-person-pic {
    width: 80px;
    height: 80px;
    border: none;
    background: #fff;
  }
  .awards-css .css-team-title2 {
    line-height: 25px;
    font-size: 22px;
  }
  .awards .awards-design {
    margin-bottom: 90px;
  }
  .awards .awards-design .inner {
    padding: 0 17px;
  }
  .awards .awards-design .design-title-pic {
    max-width: 500px;
    margin-bottom: 35px;
  }
  .awards .awards-design .design-row {
    padding-left: 150px;
    margin-bottom: 20px;
    right: -6px;
  }
  .awards .awards-design .design-row.desktop- {
    display: none;
  }
  .awards .awards-design .design-row.mobile- {
    display: block;
  }
  .awards .awards-design .design-col:last-child {
    padding: 0;
  }
  .awards .awards-design .design-col:nth-child(1n) {
    width: auto;
  }
  .awards .awards-design .design-pic {
    margin-bottom: 15px;
  }
  .awards .awards-design .design-text {
    margin-bottom: 30px;
  }
  .awards .awards-design .owl-stage-outer {
    overflow: visible;
  }
  .awards .awards-design .owl-stage {
    display: flex;
  }
  .awards .awards-design .owl-nav {
    display: none;
  }
  .awards .awards-design .line {
    position: relative;
    width: auto;
    max-width: none;
    margin: 0 0 0 55px;
  }
  .awards .awards-design .shine-eff {
    top: auto;
    left: -200px;
    bottom: 0;
    transform: rotate(-50deg);
  }
  .awards .awards-design .line {
    background: #fff;
    height: 1px;
  }
  .home-page .awards .awards-design {
    margin-bottom: 84px;
  }
  .home-page .awards .awards-design .design-title-pic {
    margin-bottom: 40px;
  }
  .home-page .awards .awards-design .design-text {
    margin-bottom: 37px;
  }
  .home-page .awards .awards-design .fr-text p:not(:last-child) {
    margin-bottom: 22px;
  }
  .home-page .awards .awards-design .design-row {
    right: 37px;
  }
  .home-page .awards .awards-design .design-col:nth-child(1) .design-pic {
    margin-bottom: 14px;
  }
  .home-page .awards .awards-design .design-title {
    line-height: 120%;
  }
  .home-page .awards .awards-css {
    margin-bottom: 43px;
  }
  .home-page .awards .awards-css .css-team-wr {
    flex-wrap: wrap;
  }
  .home-page .awards .awards-css .css-team-title1 {
    font-size: 33px;
    line-height: 136%;
  }
  .home-page .awards .awards-css .css-team {
    margin: 0 0px 5px 40px;
  }
  .home-page .awards .awards-css .figure4 {
    bottom: 0;
    right: -3%;
    margin: 0;
    top: calc(100% - 7px);
    width: 590px;
    height: 155px;
  }
  .awards .awards-css .css-team-title1 {
    font-size: 36px;
    margin-bottom: 25px;
    line-height: 50px;
  }
  .awards .awards-css .line {
    display: none;
  }
  .awards .awards-css .figure4 {
    bottom: 0;
    right: 6%;
    margin: 0;
    top: auto;
    width: 590px;
    height: 190px;
  }
  .home-awards {
    padding-top: 50px;
  }
  .home-page .home-awards {
    padding-top: 55px;
  }
  .home-page .home-awards .inner {
    position: relative;
  }
  .home-page .home-awards .awards-head .sub-title {
    margin-bottom: 6px;
  }
  .home-page .home-awards .awards-behance {
    margin-bottom: 40vw;
  }
  .home-page .home-awards .awards-behance .behance-text-wr {
    left: 0;
    top: -2px;
  }
  .home-page .home-awards .awards-behance .behance-text-wr .fr-text p {
    margin-bottom: 22px;
  }
  .home-awards .fr-text {
    font-size: 18px;
  }
  .home-awards .awards-head .title {
    font-size: 7.5294117647vw;
  }
  .home-awards .awards-design .line .mobile-slider-arrow {
    animation: arrows 3s ease infinite;
  }
  .home-awards .awards-design .line .mobile-slider-arrow:nth-child(2) {
    animation-delay: 1s;
  }
  .home-awards .awards-design .line .mobile-slider-arrow:nth-child(3) {
    animation-delay: 1.5s;
  }
  .home-awards .awards-behance {
    margin-bottom: 60vw;
  }
  .home-awards .awards-behance .inner {
    padding: 0 17px;
    position: relative;
    margin-right: auto;
  }
  .home-awards .awards-behance .behance-pic-wr {
    justify-content: flex-end;
    margin: 10.8235294118vw 23.5294117647vw 8.2352941176vw 0;
    width: 65.8823529412vw;
  }
  .home-awards .awards-behance .line {
    display: none;
  }
  .home-awards .awards-behance .shine-eff.-p1 {
    top: -70px;
    right: -70px;
    left: -70px;
    bottom: -70px;
  }
  .home-awards .awards-behance .shine-eff.-p2 {
    width: 350px;
    left: -140px;
    bottom: -80px;
    transform: rotate(39deg);
    animation: shine-rotate-small 30s infinite linear;
  }
  .home-awards .awards-behance .shine-eff.-p2::before, .home-awards .awards-behance .shine-eff.-p2::after {
    width: 200px;
    height: 200px;
  }
  .home-awards .awards-behance .home-awards-ellipse {
    top: 32.9411764706vw;
    right: -60vw;
    width: 67.0588235294vw;
    height: 17.4117647059vw;
  }
  .home-awards .awards-behance .home-awards-arrow {
    top: calc(100% + 200px);
    right: auto;
    width: 40.3529411765vw;
    height: 40vw;
    left: -40px;
  }
  .about-us-page .about-awards .awards-behance {
    margin-bottom: 76px;
  }
  .about-us-page .about-awards .awards-design {
    margin-bottom: 78px;
  }
  .about-us-page .about-awards .awards-design .design-top-text {
    margin-bottom: 54px;
  }
  .about-us-page .about-awards .awards-design .design-pic {
    margin-bottom: 15px;
  }
  .about-us-page .about-awards .awards-design .line {
    margin: 0;
  }
  .about-us-page .about-awards .awards-design .line .mobile-slider-arrow {
    top: 20px;
    right: calc(100% - 60px);
    animation: arrows 3s ease infinite;
  }
  .about-us-page .about-awards .awards-design .line .mobile-slider-arrow:nth-child(1) {
    margin-left: 35px;
  }
  .about-us-page .about-awards .awards-design .line .mobile-slider-arrow:nth-child(2) {
    margin-left: 17px;
    animation-delay: 1s;
  }
  .about-us-page .about-awards .awards-design .line .mobile-slider-arrow:nth-child(3) {
    margin-left: 0;
    animation-delay: 1.5s;
  }
  .about-us-page .about-awards .awards-css {
    margin-bottom: 34px;
  }
  .about-us-page .about-awards .awards-css .figure4 {
    right: -5px;
    width: 530px;
    height: 210px;
  }
  .about-us-page .about-awards .awards-css .css-team-wr {
    flex-wrap: wrap;
  }
  .webdesign-awards .about-awards .awards-css {
    margin-bottom: 34px;
  }
  .webdesign-awards .about-awards .awards-css .figure4 {
    right: -5px;
    width: 530px;
    height: 210px;
  }
  .webdesign-awards .about-awards .awards-css .css-team-wr {
    flex-wrap: wrap;
  }
  .service-webdev-page .about-awards .awards-css .css-row.-first {
    display: block;
  }
  .service-webdev-page .about-awards .awards-design {
    margin-bottom: 83px;
  }
  .about-awards .awards-head {
    margin-bottom: 105px;
  }
  .about-awards .awards-head .inner {
    padding: 0 4%;
  }
  .about-awards .awards-head .title {
    font-size: 21px;
    line-height: 145%;
    padding: 0;
  }
  .about-awards .awards-head .fr-text {
    line-height: 20px;
  }
  .about-awards .awards-head [class*=-bc-]:before {
    border-radius: 0;
    top: 5px;
    bottom: 5px;
  }
  .about-awards .awards-head .-light-green-text strong:before {
    top: 0px;
    bottom: 5px;
    right: 0px;
    left: 3px;
    border-radius: 1px;
  }
  .about-awards .awards-head .-light-green-text div:nth-child(2) strong:before {
    top: 1px;
    bottom: 3px;
    left: 0px;
    right: 0px;
  }
  .about-awards .awards-head .-light-green-text div:nth-child(3) strong:before {
    right: 0px;
    top: -3px;
    bottom: 5px;
    left: -4px;
  }
  .about-awards .awards-head .about-us-behance-line {
    width: 356px;
    height: 268px;
    left: -15px;
    bottom: -256px;
    transform: scale(-1, 1);
  }
  .about-awards .awards-design {
    padding-right: 0;
  }
  .about-awards .awards-behance {
    margin-bottom: 75px;
  }
  .about-awards .awards-behance .inner {
    display: flex;
    flex-direction: column;
  }
  .about-awards .awards-behance .behance-pic-wr {
    order: 1;
    margin-bottom: 40px;
    padding: 0 7px;
    height: 100%;
  }
  .about-awards .awards-behance .behance-pic-wr .behance-pic {
    height: 100%;
  }
  .about-awards .awards-behance .behance-text-wr {
    order: 2;
    max-width: 100%;
    min-width: 0;
    margin: 0;
  }
  .about-awards .awards-behance .title1 {
    font-size: 22px;
    margin-right: 0;
    margin-bottom: 14px;
  }
  .about-awards .awards-behance .title2 {
    font-size: 80px;
    white-space: nowrap;
  }
  .about-awards .awards-behance .behance-badge-wr {
    padding-left: 13%;
    direction: ltr;
    margin-top: -15px;
  }
  .about-awards .awards-behance .behance-badge {
    max-width: 140px;
    transform: rotate(-15deg);
  }
  .about-awards .awards-behance .behance-title-pic {
    margin: -33px 0 16px;
  }
  .about-awards .awards-behance .behance-text-wr .fr-text {
    line-height: 120%;
  }
  .about-awards .awards-behance .behance-text-wr .fr-text p:not(:last-child) {
    margin-bottom: 24px;
  }
  .about-awards .awards-behance .shine-eff.-an-scale.mobile- {
    top: 500px;
    right: -40%;
    transform: rotate(-45deg);
  }
  .about-awards .awards-design {
    margin-bottom: 60px;
  }
  .about-awards .awards-design .design-row {
    right: 37px;
    margin-bottom: 28px;
  }
  .about-awards .design-top-text {
    margin-bottom: 60px;
  }
  .about-awards .design-top-text .fr-text {
    line-height: 120%;
  }
  .about-awards .design-top-text .fr-text p:not(:last-child) {
    margin-bottom: 25px;
  }
  .about-awards .awards-css {
    margin-bottom: 50px;
    padding: 0;
  }
  .about-awards .awards-css .css-row.-first {
    display: none;
  }
  .about-awards .awards-css .css-team-wr {
    order: 1;
    margin-bottom: 35px;
  }
  .about-awards .awards-css .figure-wr {
    order: 2;
    min-height: 140px;
  }
  .about-awards .awards-css .figure4 {
    right: 0;
  }
  .about-awards .awards-css .css-col:nth-child(2) {
    display: flex;
  }
  .about-awards .marq-wr.mobile- {
    margin-top: 15px;
    margin-bottom: 10px;
    height: 80px;
  }
  .about-awards .marq-wr.mobile- .marq {
    height: 80px;
    line-height: 100%;
    animation: marquee3 15s linear infinite alternate;
  }
  .webdesign-awards {
    padding-top: 85px;
  }
  .webdesign-awards .awards-head {
    margin-bottom: 120px;
  }
  .webdesign-awards .awards-head .about-us-behance-line {
    width: 316px;
    height: 192px;
    left: 45px;
    bottom: -194px;
    transform: scale(1, 1);
  }
  .webdesign-awards .awards-head .title {
    font-size: 4.9411764706vw;
  }
  .webdesign-awards .awards-head .title div:nth-of-type(1) p {
    margin-bottom: 7px;
  }
  .webdesign-awards .awards-head .title div:nth-of-type(2) p {
    margin-bottom: 9px;
  }
  .webdesign-awards .awards-design .line .mobile-slider-arrow {
    animation: arrows 3s ease infinite;
  }
  .webdesign-awards .awards-design .line .mobile-slider-arrow:nth-child(2) {
    animation-delay: 1s;
  }
  .webdesign-awards .awards-design .line .mobile-slider-arrow:nth-child(3) {
    animation-delay: 1.5s;
  }
  .webdesign-awards .awards-behance {
    position: relative;
  }
  .webdesign-awards .awards-behance::after {
    content: "";
    position: absolute;
    width: 25.4117647059vw;
    height: 28vw;
    left: 7%;
    background: url(https://qa.wemake.co.il/mod/awards/img/web_design_behance_line.svg) center top no-repeat;
    background-size: contain;
  }
  .webdesign-awards .awards-behance .inner {
    margin: 0 auto;
    padding: 0 4%;
  }
  .webdesign-awards .awards-behance .title2.mobile- {
    background: none;
    margin-bottom: 12px;
    margin-top: 37px;
  }
  .webdesign-awards .awards-behance .title1 {
    font-family: PloniRegularAAA;
    font-weight: 400;
    display: none;
  }
  .webdesign-awards .awards-behance .behance-badge-wr {
    margin: 0 auto 0 55px;
    padding: 0;
    position: relative;
    width: 143px;
    height: 140px;
    transform: rotate(-14.867deg);
    bottom: 0;
    right: 0;
  }
  .webdesign-awards .awards-behance .behance-pic-wr {
    padding: 0 11px;
  }
  .webdesign-awards .awards-behance .webdesign_awards_behance_pic3 {
    width: 155px;
    transform: none;
    top: -5px;
    left: 0;
    margin-bottom: 12px;
  }
  .webdesign-awards .awards-design {
    margin-bottom: 40px;
  }
  .webdesign-awards .awards-design .design-badges {
    margin-bottom: 25px;
  }
  .webdesign-awards .awards-design .design-badge {
    width: 97px;
  }
  .webdesign-awards .awards-design .design-badge:not(:first-of-type) {
    margin-right: -17px;
  }
  .webdesign-awards .awards-design .design-badge:nth-child(2) {
    z-index: 1;
  }
  .webdesign-awards .awards-design .design-badge-pic {
    width: 97px;
  }
  .webdesign-awards .awards-design .design-text {
    line-height: 125%;
    margin-bottom: 56px;
  }
  .webdesign-awards .awards-design .design-text .fr-text {
    line-height: 125%;
  }
  .webdesign-awards .awards-design .design-text .fr-text p:not(:last-child) {
    margin-bottom: 20px;
  }
  .webdesign-awards .awards-design .design-col:nth-child(1),
  .webdesign-awards .awards-design .design-col:nth-child(2) {
    margin-top: 0;
  }
  .webdesign-awards .awards-design .line {
    margin: 0 0 0 55px;
  }
  .webdesign-awards .awards-design .line .mobile-slider-arrow {
    top: -6px;
    right: 100%;
  }
  .webdesign-awards .awards-design .shine-eff {
    width: 457px;
    bottom: 50px;
  }
  .webdesign-awards .awards-design .shine-eff::before, .webdesign-awards .awards-design .shine-eff::after {
    width: 250px;
    height: 250px;
  }
  .webdesign-awards .awards-css {
    margin-bottom: 50px;
    margin-top: 84px;
    padding: 0;
  }
  .webdesign-awards .awards-css .css-row.-first {
    display: none;
  }
  .webdesign-awards .awards-css .css-team-wr {
    order: 1;
    margin-bottom: 35px;
  }
  .webdesign-awards .awards-css .figure-wr {
    order: 2;
    min-height: 140px;
  }
  .webdesign-awards .awards-css .figure4 {
    right: 0;
  }
  .webdesign-awards .awards-css .css-col:nth-child(2) {
    display: flex;
  }
  .webdesign-awards .md-marquee-wr {
    height: 0;
    margin: 0;
  }
  .marketing {
    padding-bottom: 90px;
    z-index: 2;
  }
  .home-page .marketing {
    padding-bottom: 96px;
  }
  .home-page .marketing .inner {
    padding: 0 4%;
  }
  .home-page .marketing .cert-title {
    margin-left: 0;
    margin-bottom: 28px;
  }
  .home-page .marketing .text {
    line-height: 132%;
  }
  .home-page .marketing .text .fr-text p:not(:last-child) {
    margin-bottom: 24px;
  }
  .home-page .marketing .col:nth-child(1) {
    margin: 0 0 30px;
  }
  .home-page .marketing .cert-pic img {
    max-width: 190px;
  }
  .about-us-page .marketing {
    padding-bottom: 80px;
  }
  .about-us-page .marketing .inner {
    padding: 0 4%;
  }
  .about-us-page .marketing .col {
    padding: 0;
  }
  .about-us-page .marketing .col:nth-child(1) {
    padding: 0 0 27px;
    margin: 0;
  }
  .about-us-page .marketing .col:nth-child(2) {
    width: 100%;
  }
  .about-us-page .marketing .cert-title {
    margin-bottom: 54px;
    margin-left: -8px;
  }
  .about-us-page .marketing .text {
    font-size: 18px;
    line-height: 24px;
  }
  .about-us-page .marketing .marketing_image1_wrap {
    margin-left: 3%;
  }
  .marketing .row {
    flex-direction: column;
  }
  .marketing .col:nth-child(1) {
    margin: 0 0 25px;
  }
  .marketing .col:nth-child(2) {
    width: auto;
  }
  .marketing .marketing_image1_wrap {
    margin-left: 10px;
  }
  .marketing .cert-title {
    font-size: 85px;
    margin-bottom: 20px;
  }
  .marketing .text {
    font-size: 18px;
  }
  .marketing .marq-wr.mobile- {
    display: block;
    margin: 43px 0 28px;
    height: 85px;
  }
  .marketing .marq-wr.mobile- .marq {
    height: 85px;
    width: 100%;
    line-height: 100%;
    margin-bottom: 0;
  }
  .marketing .running-line_str_white .running_line_inner {
    animation-duration: 100s;
  }
  .running-line_str_white {
    display: flex;
    align-items: center;
    justify-content: space-around;
  }
  .running-line_str_white .running_line_inner {
    display: flex;
    position: relative;
    white-space: nowrap;
    margin-right: 1px;
    animation-name: running;
    animation-duration: 180s;
    animation-iteration-count: infinite;
    animation-direction: reverse;
    animation-timing-function: linear;
  }
  .running-line_str_white .running_line_inner div {
    margin-right: 1px;
  }
  .webdesign-awards3 {
    margin-top: 130px;
  }
  .webdesign-awards3 .section_4 .owl-nav.disabled {
    display: none !important;
  }
  .webdesign-awards3 .section_4 .inner {
    padding: 0 4%;
  }
  .webdesign-awards3 .section_4 .awards-head {
    padding-bottom: 70px;
  }
  .webdesign-awards3 .section_4 .awards-head .title {
    font-size: 22px;
    padding-left: 0;
  }
  .webdesign-awards3 .section_4 .awards-head .title strong {
    border-radius: 1px;
  }
  .webdesign-awards3 .section_4 .awards-head .title div:nth-of-type(1) p {
    margin-bottom: 10px;
    margin-top: -2px;
    top: -10px;
    left: 0;
  }
  .webdesign-awards3 .section_4 .awards-head .title div:nth-of-type(1) p strong {
    margin-left: 0;
    padding: 2px 5px 1px 5px;
    left: 0;
  }
  .webdesign-awards3 .section_4 .awards-head .title div:nth-of-type(2) p {
    margin-bottom: 18px;
    margin-top: -13px;
    left: 0;
  }
  .webdesign-awards3 .section_4 .awards-head .title div:nth-of-type(2) p strong {
    padding: 4px 5px 2px 6px;
    left: 0;
  }
  .webdesign-awards3 .section_4 .awards-head .title div:nth-child(3) p {
    top: -15px;
    left: 0;
  }
  .webdesign-awards3 .section_4 .awards-head .title div:nth-child(3) p strong {
    padding: 3px 5px 2px 5px;
    left: 0;
  }
  .webdesign-awards3 .section_4 .awards-head .sc_4_line {
    width: 320px;
    height: 212px;
    left: -4%;
    top: 57px;
    background: url(https://qa.wemake.co.il/mod/awards/img/sc_4_line_mob.svg) no-repeat top center;
    background-size: contain;
  }
  .webdesign-awards3 .section_4 .awards-design {
    padding-bottom: 25px;
    position: relative;
  }
  .webdesign-awards3 .section_4 .awards-design .awards-design_title {
    font-size: 64px;
    margin-bottom: -5px;
  }
  .webdesign-awards3 .section_4 .awards-design .awards-design_subtitle {
    font-size: 36px;
    font-weight: 500;
    letter-spacing: 3px;
  }
  .webdesign-awards3 .section_4 .awards-design .awards-design_text {
    font-size: 20px;
    margin-bottom: 35px;
  }
  .webdesign-awards3 .section_4 .awards-design .awards-design_images {
    display: none;
  }
  .webdesign-awards3 .section_4 .awards-design .badge-block {
    position: relative;
    align-items: flex-start;
    flex-direction: column;
    padding: 35px 0;
  }
  .webdesign-awards3 .section_4 .awards-design .badge-block .cert {
    width: 76.2352941176vw;
  }
  .webdesign-awards3 .section_4 .awards-design .badge-block:first-of-type {
    border: none;
  }
  .webdesign-awards3 .section_4 .awards-design .badge-image {
    max-width: 33.8823529412vw;
    margin-bottom: -27px;
    margin-right: 0;
    margin-left: 8px;
    position: absolute;
    top: 68.2352941176vw;
    left: 4.4705882353vw;
  }
  .webdesign-awards3 .section_4 .awards-design .badge-title {
    margin-top: 32px;
    font-size: 20px;
  }
  .webdesign-awards3 .section_4 .awards-design .badge-title strong {
    padding: 5px 2px 2px 2px;
    color: #000;
    border-radius: 1px;
    background: linear-gradient(99deg, #8FFF01 1.54%, #EBFF01 100%);
  }
  .webdesign-awards3 .section_4 .awards-design .badge-text {
    font-size: 18px;
    max-width: 333px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
  }
  .webdesign-awards3 .section_4 .awards-design .badge-descr {
    padding-right: 5px;
  }
  .webdesign-awards3 .section_4 .awards-design .shine-eff {
    width: 300px;
    top: 50px;
    left: -20%;
  }
  .webdesign-awards3 .section_4 .awards-design .shine-eff::before, .webdesign-awards3 .section_4 .awards-design .shine-eff::after {
    width: 200px;
    height: 200px;
  }
  .webdesign-awards3 .section_4 .branding-awards {
    padding-top: 15.7647058824vw;
    padding-bottom: 12.7058823529vw;
  }
  .webdesign-awards3 .section_4 .branding-awards::before {
    display: none;
  }
  .webdesign-awards3 .section_4 .branding-awards .inner {
    left: 0;
    display: block;
  }
  .webdesign-awards3 .section_4 .branding-awards .inner.mobile- {
    display: block;
  }
  .webdesign-awards3 .section_4 .branding-awards .row {
    flex-wrap: wrap;
  }
  .webdesign-awards3 .section_4 .branding-awards .col:nth-child(1) {
    width: 100%;
    order: 2;
  }
  .webdesign-awards3 .section_4 .branding-awards .col:nth-child(2) {
    width: 100%;
    order: 1;
    margin-bottom: 40px;
    display: none;
  }
  .webdesign-awards3 .section_4 .branding-awards .cert-title {
    font-size: 8.2352941176vw;
    line-height: normal;
    text-align: right;
    margin-bottom: 4.2352941176vw;
  }
  .webdesign-awards3 .section_4 .special-award {
    padding-top: 25px;
    padding-bottom: 30px;
    flex-direction: column;
  }
  .webdesign-awards3 .section_4 .special-award .shine-eff {
    width: 400px;
    top: 320px;
    left: -30%;
  }
  .webdesign-awards3 .section_4 .special-award .shine-eff::before, .webdesign-awards3 .section_4 .special-award .shine-eff::after {
    width: 250px;
    height: 250px;
  }
  .webdesign-awards3 .section_4 .special-award_content {
    margin-top: 0;
    margin-bottom: 12px;
  }
  .webdesign-awards3 .section_4 .special-award_title {
    font-size: 40px;
    margin-bottom: 15px;
  }
  .webdesign-awards3 .section_4 .special-award_title::before {
    width: 423px;
    height: 86px;
    top: 0;
    right: -30px;
    background: url(https://qa.wemake.co.il/mod/awards/img/sc_4_ellipse_mob.svg) no-repeat;
    background-size: contain;
  }
  .webdesign-awards3 .section_4 .special-award_text {
    font-size: 16px;
    max-width: 368px;
  }
  .webdesign-awards3 .section_4 .design-row {
    display: block;
    right: 0;
  }
  .webdesign-awards3 .section_4 .owl-stage-outer {
    overflow: visible;
  }
  .webdesign-awards3 .section_4 .owl-stage {
    display: flex;
  }
  .webdesign-awards3 .section_4 .design-pic {
    margin-bottom: 14px;
  }
  .webdesign-awards3 .section_4 .design-title {
    font-size: 13px;
    font-weight: 400;
    line-height: 120%;
  }
  .webdesign-awards3 .section_4 .special-award_logos {
    display: flex;
    align-items: center;
    margin-bottom: 21px;
  }
  .webdesign-awards3 .section_4 .special-award_logos span {
    color: #FFF;
    font-family: Unbounded;
    font-size: 19px;
    font-weight: 400;
    line-height: 120%;
    margin: 0 15px 0 19px;
  }
  .webdesign-awards3 .section_4 .sc_4_awards_design_logo {
    width: 221px;
  }
  .webdesign-awards3 .section_4 .sc_4_awards_css_logo {
    width: 118px;
  }
  .webdesign-awards3 .section_4 .line {
    background: #fff;
    height: 1px;
    position: relative;
    width: 100%;
    margin: 32px auto 47px;
  }
  .webdesign-awards3 .section_4 .line .mobile-slider-arrow {
    top: 15px;
    right: calc(100% - 60px);
    animation: arrows 3s ease infinite;
  }
  .webdesign-awards3 .section_4 .line .mobile-slider-arrow:nth-child(1) {
    margin-left: 35px;
  }
  .webdesign-awards3 .section_4 .line .mobile-slider-arrow:nth-child(2) {
    margin-left: 17px;
    animation-delay: 1s;
  }
  .webdesign-awards3 .section_4 .line .mobile-slider-arrow:nth-child(3) {
    margin-left: 0;
    animation-delay: 1.5s;
  }
  .webdesign-awards3 .section_4 .awards-css {
    padding-top: 25px;
    padding-bottom: 53px;
  }
  .webdesign-awards3 .section_4 .css-team {
    margin-left: 15px;
  }
  .webdesign-awards3 .section_4 .css-person {
    width: 57px;
  }
  .webdesign-awards3 .section_4 .css-person-pic {
    width: 78px;
    height: 78px;
  }
  .webdesign-awards3 .section_4 .css-team-title2 {
    font-size: 21px;
    margin-bottom: -5px;
  }
  .webdesign-awards3 .section_4 .running-line {
    padding: 5px 0;
    height: 34px;
  }
  .webdesign-awards3 .section_4 .running-line .running_line_inner {
    font-size: 14px;
  }
}
@keyframes running {
  0% {
    transform: translate(-100%, 0);
  }
  50% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(100%, 0);
  }
}
@media all and (max-width: 480px) {
  .webdesign-awards3 .section_4 .awards-design .badge-image {
    top: 70.5882352941vw;
  }
}
@media all and (max-width: 426px) {
  .home-page .home-awards .awards-behance {
    margin-bottom: 60vw;
  }
  .home-page .home-awards .awards-behance .home-awards-arrow {
    top: calc(100% + 200px);
    right: auto;
    width: 50.3529411765vw;
    height: 55.7647058824vw;
    left: -65px;
  }
  .home-page .awards .awards-design .design-row.owl-carousel.owl-rtl .owl-item {
    max-width: 227px;
  }
  .home-page .marketing .cert-pic img {
    max-width: 100%;
  }
  .about-us-page .awards .awards-design .design-row.owl-carousel.owl-rtl .owl-item {
    max-width: 227px;
  }
  .service-webdev-page .awards .awards-design .design-row.owl-carousel.owl-rtl .owl-item {
    max-width: 227px;
  }
  .about-awards .awards-behance .title2.mobile- {
    font-size: 18.8235294118vw;
  }
  .webdesign-awards .awards-behance .title2.mobile- {
    font-size: 18.8235294118vw;
    width: 302vw;
  }
}
@media all and (max-width: 425px) {
  .home-page .awards .awards-css .css-team {
    margin: 0 0px 5px 9.4117647059vw;
  }
  .home-page .awards .awards-css .css-team-title1 {
    font-size: 7.7647058824vw;
  }
  .home-page .awards .awards-css .css-team-title1 strong::before {
    top: -0.7058823529vw;
    right: -1.6470588235vw;
    left: -1.6470588235vw;
    border-radius: 1.6470588235vw;
  }
  .awards-css .css-team {
    margin: 0 0px 5px 9.4117647059vw;
  }
  .awards-css .css-person {
    width: 12.9411764706vw;
  }
  .awards-css .css-person-pic {
    width: 18.8235294118vw;
    height: 18.8235294118vw;
    padding: 1.1764705882vw;
  }
  .awards-css .css-team-title2 {
    line-height: 5.8823529412vw;
    font-size: 5.1764705882vw;
    margin-bottom: -0.7058823529vw;
  }
  .about-awards .awards-head .title {
    font-size: 4.9411764706vw;
  }
  .marketing .cert-title {
    font-size: 20vw;
  }
  .home-page .marketing .cert-wr {
    justify-content: center;
  }
  .home-page .marketing .cert-wr .marketing_image1_wrap {
    margin-left: 3%;
  }
  .marketing .webdesign-awards3 .section_4 .awards-head {
    padding-bottom: 16.4705882353vw;
  }
  .marketing .webdesign-awards3 .section_4 .awards-head .title {
    font-size: 5.1764705882vw;
  }
  .marketing .webdesign-awards3 .section_4 .awards-head .title div:nth-of-type(1) p {
    margin-bottom: 2.3529411765vw;
    margin-top: -0.4705882353vw;
    top: -2.3529411765vw;
  }
  .marketing .webdesign-awards3 .section_4 .awards-head .title div:nth-of-type(1) p strong {
    padding: 0.4705882353vw 1.1764705882vw 0.2352941176vw 1.1764705882vw;
  }
  .marketing .webdesign-awards3 .section_4 .awards-head .title div:nth-of-type(2) p {
    margin-bottom: 4.2352941176vw;
    margin-top: -3.0588235294vw;
  }
  .marketing .webdesign-awards3 .section_4 .awards-head .title div:nth-of-type(2) p strong {
    padding: 0.9411764706vw 1.1764705882vw 0.4705882353vw 1.4117647059vw;
  }
  .marketing .webdesign-awards3 .section_4 .awards-head .title div:nth-child(3) p {
    top: -3.5294117647vw;
  }
  .marketing .webdesign-awards3 .section_4 .awards-head .title div:nth-child(3) p strong {
    padding: 0.7058823529vw 1.1764705882vw 0.4705882353vw 1.1764705882vw;
  }
  .marketing .webdesign-awards3 .section_4 .awards-head .sc_4_line {
    width: 75.2941176471vw;
    height: 49.8823529412vw;
    top: 13.4117647059vw;
  }
  .marketing .webdesign-awards3 .section_4 .awards-design {
    padding-bottom: 5.8823529412vw;
  }
  .marketing .webdesign-awards3 .section_4 .awards-design .awards-design_title {
    font-size: 15.0588235294vw;
    margin-bottom: -1.1764705882vw;
  }
  .marketing .webdesign-awards3 .section_4 .awards-design .awards-design_subtitle {
    font-size: 8.4705882353vw;
    letter-spacing: 0.7058823529vw;
  }
  .marketing .webdesign-awards3 .section_4 .awards-design .awards-design_text {
    font-size: 4.7058823529vw;
    margin-bottom: 8.2352941176vw;
  }
  .marketing .webdesign-awards3 .section_4 .awards-design .badge-block {
    padding: 8.2352941176vw 0;
  }
  .marketing .webdesign-awards3 .section_4 .awards-design .badge-descr {
    padding-right: 1.1764705882vw;
  }
  .marketing .webdesign-awards3 .section_4 .awards-design .badge-image {
    max-width: 33.6470588235vw;
    margin-bottom: 0;
  }
  .marketing .webdesign-awards3 .section_4 .awards-design .badge-title {
    font-size: 4.7058823529vw;
  }
  .marketing .webdesign-awards3 .section_4 .awards-design .badge-title strong {
    padding: 1.1764705882vw 0.4705882353vw 0.4705882353vw 0.4705882353vw;
  }
  .marketing .webdesign-awards3 .section_4 .awards-design .badge-text {
    font-size: 4.2352941176vw;
  }
  .marketing .webdesign-awards3 .section_4 .special-award {
    padding-top: 5.8823529412vw;
    padding-bottom: 7.0588235294vw;
  }
  .marketing .webdesign-awards3 .section_4 .special-award .shine-eff {
    width: 94.1176470588vw;
    top: 75.2941176471vw;
  }
  .marketing .webdesign-awards3 .section_4 .special-award .shine-eff::before, .marketing .webdesign-awards3 .section_4 .special-award .shine-eff::after {
    width: 58.8235294118vw;
    height: 58.8235294118vw;
  }
  .marketing .webdesign-awards3 .section_4 .special-award_title {
    font-size: 9.4117647059vw;
  }
  .marketing .webdesign-awards3 .section_4 .special-award_title::before {
    width: 99.5294117647vw;
    height: 20.2352941176vw;
    right: -7.0588235294vw;
  }
  .marketing .webdesign-awards3 .section_4 .special-award_logos span {
    font-size: 4.4705882353vw;
    margin: 0 3.5294117647vw 0 4.4705882353vw;
  }
  .marketing .webdesign-awards3 .section_4 .sc_4_awards_design_logo {
    width: 52vw;
  }
  .marketing .webdesign-awards3 .section_4 .sc_4_awards_css_logo {
    width: 27.7647058824vw;
  }
  .marketing .webdesign-awards3 .section_4 .awards-css {
    padding-top: 5.8823529412vw;
    padding-bottom: 12.4705882353vw;
  }
  .marketing .webdesign-awards3 .section_4 .css-team {
    margin-left: 3.5294117647vw;
  }
  .marketing .webdesign-awards3 .section_4 .css-person {
    width: 13.4117647059vw;
  }
  .marketing .webdesign-awards3 .section_4 .css-person-pic {
    width: 18.3529411765vw;
    height: 18.3529411765vw;
    padding: 1.1764705882vw;
  }
  .marketing .webdesign-awards3 .section_4 .css-team-title2 {
    font-size: 4.9411764706vw;
    margin-bottom: -1.1764705882vw;
  }
}

@media all and (min-width: 2199px) {
  .home-awards .awards-behance .inner {
    margin-right: 33.8335607094vw;
  }
  .home-awards .awards-behance .behance-pic-wr {
    width: 31.468849477vw;
    margin-bottom: 4.5475216007vw;
  }
  .home-awards .awards-behance .behance-badge {
    bottom: 3.1832651205vw;
    left: 0.4547521601vw;
    max-width: 9.5497953615vw;
  }
  .home-awards .awards-behance .behance-pic {
    width: 29.5588904047vw;
  }
  .home-awards .awards-behance .behance-title-pic {
    max-width: 16.5984538427vw;
    margin-bottom: 1.8190086403vw;
  }
  .home-awards .awards-behance .behance-text {
    width: 22.7376080036vw;
  }
  .home-awards .awards-behance .fr-text {
    font-size: 1.0914051842vw;
  }
  .home-awards .awards-behance .fr-text p:not(:last-child) {
    margin-bottom: 1.1368804002vw;
  }
}
@media all and (min-width: 1921px) {
  .webdesign-awards .awards-behance .inner {
    margin: 0 auto;
  }
}
@media all and (max-width: 1680px) and (min-width: 769px) {
  .webdesign-awards3 .section_4 .branding-awards {
    padding-top: 15vw;
    padding-bottom: 14.2857142857vw;
  }
  .webdesign-awards3 .section_4 .branding-awards::after {
    width: 45.5952380952vw;
    height: 11.5476190476vw;
    top: 14.5238095238vw;
    right: -11.7261904762vw;
  }
  .webdesign-awards3 .section_4 .branding-awards .inner {
    left: 0;
    padding-left: 3%;
    padding-right: 3%;
  }
  .webdesign-awards3 .section_4 .branding-awards .cert-title {
    font-size: 5.7142857143vw;
    max-width: 67.2619047619vw;
  }
  .webdesign-awards3 .section_4 .css-team-title2 {
    font-size: 1.5476190476vw;
  }
  .webdesign-awards3 .section_4 .css-person {
    width: 53px;
  }
  .webdesign-awards3 .section_4 .css-person-pic {
    width: 75px;
    height: 75px;
  }
  .webdesign-awards3 .section_4 .awards-design {
    padding-right: 3%;
  }
}
@media all and (max-width: 1920px) and (min-width: 769px) {
  .webdesign-awards3 .section_4 .inner {
    margin: 0 auto 0 6.9109375vw;
  }
  .webdesign-awards3 .section_4 .awards-head {
    padding-bottom: 16.40625vw;
  }
  .webdesign-awards3 .section_4 .awards-head .title {
    font-size: 3.3333333333vw;
    line-height: 4.6875vw;
    padding-left: 0.78125vw;
  }
  .webdesign-awards3 .section_4 .awards-head .title div:nth-of-type(1) p {
    margin-bottom: 0.5208333333vw;
    margin-top: -0.1041666667vw;
    top: -0.3645833333vw;
    left: -0.8333333333vw;
  }
  .webdesign-awards3 .section_4 .awards-head .title div:nth-of-type(1) p strong {
    padding: 0.5208333333vw 0.7291666667vw 0.1041666667vw 1.0416666667vw;
    left: 0.5208333333vw;
  }
  .webdesign-awards3 .section_4 .awards-head .title div:nth-of-type(2) p {
    margin-bottom: 0.9375vw;
    margin-top: -0.15625vw;
    left: -0.7291666667vw;
  }
  .webdesign-awards3 .section_4 .awards-head .title div:nth-of-type(2) p strong {
    padding: 0.3645833333vw 0.625vw 0.15625vw 0.8854166667vw;
    left: 0.4166666667vw;
  }
  .webdesign-awards3 .section_4 .awards-head .title div:nth-child(3) {
    margin-top: 0.15625vw;
  }
  .webdesign-awards3 .section_4 .awards-head .title div:nth-child(3) p {
    top: -0.5208333333vw;
    left: -0.6770833333vw;
  }
  .webdesign-awards3 .section_4 .awards-head .title div:nth-child(3) p strong {
    padding: 0.78125vw 0.78125vw 0 0.78125vw;
    left: 0.625vw;
  }
  .webdesign-awards3 .section_4 .awards-head .sc_4_line {
    width: 51.1979166667vw;
    height: 21.1458333333vw;
    bottom: 1.0416666667vw;
    left: 18.75vw;
  }
  .webdesign-awards3 .section_4 .awards-design {
    padding-bottom: 4.9479166667vw;
  }
  .webdesign-awards3 .section_4 .awards-design .awards-design_content {
    width: 40.625vw;
  }
  .webdesign-awards3 .section_4 .awards-design .awards-design_title {
    font-size: 5vw;
  }
  .webdesign-awards3 .section_4 .awards-design .awards-design_subtitle {
    font-size: 2.1875vw;
  }
  .webdesign-awards3 .section_4 .awards-design .awards-design_text {
    margin-bottom: 4.53125vw;
  }
  .webdesign-awards3 .section_4 .awards-design .awards-design_logo {
    margin-bottom: 1.4322916667vw;
  }
  .webdesign-awards3 .section_4 .awards-design .badge-block {
    padding: 1.4583333333vw 0;
  }
  .webdesign-awards3 .section_4 .awards-design .badge-image {
    max-width: 7.0833333333vw;
    margin-left: 2.5vw;
  }
  .webdesign-awards3 .section_4 .awards-design .badge-title {
    font-size: 1.5625vw;
  }
  .webdesign-awards3 .section_4 .awards-design .awards-design_images {
    width: 37.96875vw;
    margin-right: 0.5208333333vw;
    margin-top: 1.1979166667vw;
  }
  .webdesign-awards3 .section_4 .awards-design .awards-design_images .cert {
    width: 19.4791666667vw;
  }
  .webdesign-awards3 .section_4 .awards-design .awards-design_images .cert2 {
    top: 9.0625vw;
    left: 11.1458333333vw;
  }
  .webdesign-awards3 .section_4 .awards-design .awards-design_images .cert3 {
    top: 22.3958333333vw;
    left: 18.4895833333vw;
  }
  .webdesign-awards3 .section_4 .special-award {
    padding-top: 4.9479166667vw;
    padding-bottom: 7.2916666667vw;
  }
  .webdesign-awards3 .section_4 .special-award .shine-eff {
    width: 57.2916666667vw;
    top: 15.625vw;
  }
  .webdesign-awards3 .section_4 .special-award .shine-eff::before, .webdesign-awards3 .section_4 .special-award .shine-eff::after {
    width: 41.6666666667vw;
    height: 41.6666666667vw;
  }
  .webdesign-awards3 .section_4 .special-award_image {
    width: 26.8229166667vw;
    margin-left: 8.28125vw;
  }
  .webdesign-awards3 .section_4 .special-award_content {
    margin-top: 3.90625vw;
  }
  .webdesign-awards3 .section_4 .special-award_title {
    font-size: 3.90625vw;
    margin-bottom: 6.5104166667vw;
    max-width: 38.0729166667vw;
  }
  .webdesign-awards3 .section_4 .special-award_title::before {
    width: 39.6875vw;
    height: 8.0729166667vw;
    top: 4.4270833333vw;
    right: -2.0833333333vw;
  }
  .webdesign-awards3 .section_4 .awards-css {
    padding-top: 7.5520833333vw;
    padding-bottom: 5.9375vw;
  }
  .webdesign-awards3 .section_4 .awards-css_image {
    width: 26.71875vw;
    margin-left: 3.0208333333vw;
  }
  .webdesign-awards3 .section_4 .awards-css_content_title {
    font-size: 1.5625vw;
    margin-bottom: 2.1354166667vw;
  }
  .webdesign-awards3 .section_4 .awards-css_logo {
    margin-bottom: 2.65625vw;
  }
  .webdesign-awards3 .section_4 .sc_4_awards_css_logo_star {
    margin-bottom: 2.34375vw;
  }
  .webdesign-awards3 .section_4 .running-line {
    padding: 1.0416666667vw 0;
    height: 5.8333333333vw;
  }
  .webdesign-awards3 .section_4 .running-line .running_line_inner {
    font-size: 2.5vw;
    margin-right: 0.4166666667vw;
  }
  .webdesign-awards3 .section_4 .running-line .running_line_inner div {
    margin-right: 0.4166666667vw;
  }
}
@media all and (max-width: 1919px) and (min-width: 769px) {
  .home-awards .awards-css .figure4 {
    width: 56.40625vw;
    height: 16.7708333333vw;
  }
  .about-awards .awards-css .str-title {
    font-size: 4.4270833333vw;
  }
  .about-awards .awards-css .figure-wr {
    min-height: 21.875vw;
  }
  .about-awards .awards-css .figure4 {
    width: 61.9791666667vw;
    height: 18.4895833333vw;
  }
  .about-us-page .marketing .row {
    align-items: flex-start;
  }
  .home-awards .awards-behance .inner {
    margin-right: 38.75vw;
  }
  .home-awards .awards-behance .behance-pic-wr {
    width: 36.0416666667vw;
    margin-bottom: 5.2083333333vw;
  }
  .home-awards .awards-behance .behance-badge {
    bottom: 3.6458333333vw;
    left: 0.5208333333vw;
    max-width: 10.9375vw;
  }
  .home-awards .awards-behance .behance-pic {
    width: 33.8541666667vw;
  }
  .home-awards .awards-behance .behance-title-pic {
    max-width: 19.0104166667vw;
    margin-bottom: 2.0833333333vw;
  }
  .home-awards .awards-behance .behance-text {
    width: 26.0416666667vw;
  }
  .home-awards .awards-behance .fr-text {
    font-size: 1.25vw;
  }
  .home-awards .awards-behance .fr-text p:not(:last-child) {
    margin-bottom: 1.3020833333vw;
  }
  .home-awards .awards-behance .home-awards-arrow {
    top: 15.1041666667vw;
    left: -10.6770833333vw;
    height: 21.8229166667vw;
  }
  .home-awards .awards-behance .home-awards-ellipse {
    top: 12.34375vw;
    left: 25.5208333333vw;
    height: 6.875vw;
  }
  .webdesign-awards {
    padding-top: 8.59375vw;
  }
  .webdesign-awards .awards-head {
    margin-bottom: 10.4166666667vw;
  }
  .webdesign-awards .awards-head .about-us-behance-line {
    width: 43.0208333333vw;
    height: 28.125vw;
    left: 14.0625vw;
    bottom: -21.875vw;
  }
  .webdesign-awards .awards-behance .inner {
    margin: 0 auto 0 8.59375vw;
  }
  .webdesign-awards .awards-behance .behance-pic-wr {
    max-width: 30.2083333333vw;
  }
  .webdesign-awards .awards-behance .behance-badge-wr {
    width: 12.7604166667vw;
    height: 12.7604166667vw;
    bottom: -4.6875vw;
    right: -6.875vw;
  }
  .webdesign-awards .awards-behance .webdesign_awards_behance_pic3 {
    width: 10.9375vw;
    top: 6.25vw;
    left: 4.9479166667vw;
  }
  .webdesign-awards .awards-behance .title2 {
    font-size: 2.5520833333vw;
    margin-bottom: 2.4479166667vw;
  }
  .webdesign-awards .awards-design {
    margin-bottom: 13.8020833333vw;
  }
  .webdesign-awards .awards-design .design-col:nth-child(1),
  .webdesign-awards .awards-design .design-col:nth-child(2) {
    margin-top: 6.5625vw;
  }
  .webdesign-awards .awards-design .design-col:nth-child(3),
  .webdesign-awards .awards-design .design-col:nth-child(4) {
    margin-top: 6.5625vw;
    top: -9.375vw;
  }
  .webdesign-awards .awards-css .str-title {
    font-size: 4.4270833333vw;
  }
  .webdesign-awards .awards-css .figure-wr {
    min-height: 21.875vw;
  }
  .webdesign-awards .awards-css .figure4 {
    width: 61.9791666667vw;
    height: 18.4895833333vw;
  }
  .webdesign-awards3 .section_4 .inner {
    margin: 0 auto 0 8.59375vw;
  }
}
@media all and (max-width: 1650px) and (min-width: 769px) {
  .home-awards .awards-head .title {
    font-size: 6.7272727273vw;
  }
  .home-awards .awards-css .css-team-title1 {
    font-size: 3.0909090909vw;
    line-height: 4.2424242424vw;
  }
  .about-awards .awards-behance .title2 {
    font-size: 6.6666666667vw;
  }
  .about-awards .awards-behance .behance-badge {
    max-width: 14.5454545455vw;
  }
  .about-awards .awards-behance .behance-title-pic {
    max-width: 22.1212121212vw;
  }
  .about-awards .awards-css .css-title2 {
    font-size: 2.9696969697vw;
  }
  .webdev-awards .awards-head .top-title1 {
    font-size: 5.8181818182vw;
  }
  .webdev-awards .service-webdev-line-dt {
    width: 50.2424242424vw;
    height: 40.3636363636vw;
    bottom: 23.6363636364vw;
    left: auto;
    right: 66.1212121212vw;
  }
  .webdesign-awards .awards-design .inner {
    padding-right: 3%;
  }
  .webdesign-awards .awards-css .css-title2 {
    font-size: 2.9696969697vw;
  }
  .marketing .cert-title {
    font-size: 5.1515151515vw;
  }
  .marketing .title2 {
    font-size: 2.9696969697vw;
  }
  .home-page .marketing .inner {
    padding-left: 3%;
  }
  .metrics .inner {
    padding-left: 3%;
  }
}
@media all and (max-width: 1600px) and (min-width: 769px) {
  .about-awards .inner {
    max-width: none;
  }
  .about-awards .awards-design {
    padding-right: 0;
    margin-bottom: 200px;
  }
  .about-awards .awards-css {
    margin-bottom: 0;
  }
  .about-us-page .about-awards .awards-design {
    margin-bottom: 200px;
  }
  .webdesign-awards .awards-css {
    margin-bottom: 0;
  }
}
@media all and (max-width: 1440px) and (min-width: 769px) {
  .home-awards {
    padding-top: 50px;
  }
  .home-awards .line {
    max-width: none;
  }
  .about-awards .awards-head .title {
    font-size: 4.4444444444vw;
    line-height: 6.25vw;
  }
  .about-awards .awards-behance {
    margin-bottom: 120px;
  }
  .about-awards .awards-behance .behance-text-wr {
    max-width: 48%;
    min-width: 48%;
  }
  .about-awards .awards-design {
    margin-bottom: 150px;
  }
  .about-us-page .about-awards .awards-design {
    margin-bottom: 150px;
  }
  .webdev-awards .awards-head {
    margin-bottom: 6.9444444444vw;
  }
  .webdev-awards .awards-design {
    margin-bottom: 140px;
  }
  .webdev-awards .awards-css {
    padding-bottom: 110px;
  }
  .service-webdev-page .webdev-awards .awards-css {
    padding-bottom: 110px;
  }
  .marketing {
    padding-bottom: 150px;
  }
  .marketing .col:nth-child(1) {
    padding-top: 0;
  }
  .webdesign-awards .awards-behance {
    margin-bottom: 218px;
  }
}
@media all and (max-width: 1280px) and (min-width: 769px) {
  .awards-design .design-title {
    font-size: 1.875vw;
  }
  .home-awards .fr-text {
    font-size: 20px;
  }
  .home-page .marketing {
    padding-bottom: 200px;
  }
  .home-page .marketing .shine-eff {
    top: 400px;
    margin: 0 -410px 0 0;
    width: 950px;
  }
  .home-page .marketing .shine-eff::before, .home-page .marketing .shine-eff::after {
    width: 620px;
    height: 620px;
  }
  .home-awards .awards-design .shine-eff {
    width: 630px;
    left: 180px;
  }
  .home-awards .awards-design .shine-eff::before, .home-awards .awards-design .shine-eff::after {
    width: 400px;
    height: 400px;
  }
  .about-awards .awards-design .shine-eff {
    width: 900px;
  }
  .about-awards .awards-design .shine-eff::before, .about-awards .awards-design .shine-eff::after {
    width: 650px;
    height: 650px;
  }
  .about-awards .awards-head .shine-eff {
    margin-right: -1000px;
    width: 900px;
  }
  .about-awards .awards-head .shine-eff::before, .about-awards .awards-head .shine-eff::after {
    width: 600px;
    height: 600px;
  }
  .about-awards .awards-behance .shine-eff.-p1 {
    top: -70px;
    right: -70px;
    left: -70px;
    bottom: -70px;
  }
  .about-awards .awards-css .shine-eff {
    width: 700px;
    right: 60%;
  }
  .about-awards .awards-css .shine-eff::before, .about-awards .awards-css .shine-eff::after {
    width: 530px;
    height: 530px;
  }
  .webdev-awards .awards-design .shine-eff {
    width: 560px;
  }
  .webdev-awards .awards-design .shine-eff::before, .webdev-awards .awards-design .shine-eff::after {
    width: 400px;
    height: 400px;
  }
  .webdesign-awards .awards-css .shine-eff {
    width: 700px;
    right: 60%;
  }
  .webdesign-awards .awards-css .shine-eff::before, .webdesign-awards .awards-css .shine-eff::after {
    width: 530px;
    height: 530px;
  }
}
@media all and (max-width: 1280px) and (min-width: 901px) {
  .service-webdev-page .webdev-awards .awards-design .design-col:nth-child(1), .service-webdev-page .webdev-awards .awards-design .design-col:nth-child(2) {
    margin-top: 100px;
  }
}
@media all and (max-width: 900px) and (min-width: 769px) {
  .service-webdev-page .webdev-awards .awards-design .design-col:nth-child(1), .service-webdev-page .webdev-awards .awards-design .design-col:nth-child(2) {
    margin-top: 70px;
  }
}
@media all and (max-width: 1024px) and (min-width: 769px) {
  .awards-css .css-col:nth-child(1) {
    width: 40%;
  }
  .awards-css .css-col:nth-child(2) {
    width: 50%;
  }
  .awards-css .css-team-wr {
    flex-wrap: wrap;
  }
  .home-awards .awards-css .figure4 {
    margin-right: 0;
  }
  .home-page .marketing {
    padding-bottom: 150px;
  }
  .about-awards .awards-head {
    margin-bottom: 300px;
  }
  .about-awards .awards-head .about-us-behance-line {
    width: 600px;
    height: 450px;
    bottom: -400px;
  }
  .about-us-page .about-awards .awards-behance {
    margin-bottom: 100px;
  }
  .about-us-page .about-awards .awards-design {
    margin-bottom: 150px;
  }
  .about-us-page .marketing {
    padding-bottom: 100px;
  }
  .about-us-page .marketing .marketing_image1_wrap {
    margin-left: 10px;
  }
  .service-webdev-page .webdev-awards .awards-css {
    padding-bottom: 100px;
  }
  .webdesign-awards3 .section_4 .awards-design .awards-design_text {
    font-size: 16px;
  }
  .webdesign-awards3 .section_4 .awards-design .badge-text {
    font-size: 16px;
  }
  .webdesign-awards3 .section_4 .special-award_text {
    font-size: 16px;
  }
}
@media all and (max-width: 850px) and (min-width: 769px) {
  .webdev-awards .awards-design .design-text {
    max-width: 360px;
  }
}
.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;
  }
}
.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;
  }
}
