@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;
  }
}
.our-story {
  position: relative;
  z-index: 1;
  padding-top: 158px;
  padding-bottom: 258px;
}
.our-story .inner {
  max-width: 1340px;
  padding-right: 37px;
}
.our-story .title1 {
  font-size: 24px;
  line-height: 24px;
  font-weight: 800;
  margin-bottom: 44px;
}
.our-story .title2 {
  font-size: 128px;
  font-weight: 600;
  margin-bottom: 55px;
  background: linear-gradient(270deg, #8AB8FF, #E8CAFF, #8AB8FF, #E8CAFF, #8AB8FF);
  animation: gradient 10s ease infinite;
  background-size: 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.our-story .title3 {
  margin: 9px 0 0 50px;
  font-size: 37px;
  font-weight: 800;
  letter-spacing: 0.4px;
}
.our-story .row {
  display: flex;
}
.our-story .text {
  flex-grow: 1;
  font-size: 40px;
  line-height: 59px;
  letter-spacing: 0.4px;
  margin-bottom: 19px;
}
.our-story .caption {
  font-size: 16px;
}
.our-story .shine-eff {
  bottom: 450px;
  right: 50%;
  width: 876px;
  margin-right: 360px;
  transform: rotate(40deg);
}
@media all and (min-width: 769px) {
  .our-story .shine-eff.-an-rotate {
    animation: shine-rotate-small 30s infinite linear;
  }
}

.our-team {
  position: relative;
  z-index: 1;
  padding-bottom: 193px;
}
.our-team .inner {
  position: relative;
  max-width: 1344px;
  padding-right: 34px;
}
.our-team .row-top {
  max-width: 499px;
  margin-bottom: 115px;
}
.our-team .sub-title {
  margin-bottom: 10px;
  font-size: 18px;
}
.our-team .sub-title::before {
  width: 25px;
  height: 2px;
  margin: -2px 0 0 12px;
}
.our-team .top-title {
  font-size: 64px;
  font-weight: 800;
  margin-bottom: 19px;
}
.our-team .top-text {
  line-height: 25px;
  margin-right: -3px;
  font-size: 20px;
}
.our-team .row-team {
  position: relative;
  z-index: 1;
  margin-bottom: 335px;
  display: flex;
  align-items: flex-end;
}
.our-team .team-col {
  position: relative;
}
.our-team .team-col:nth-child(1) {
  flex-grow: 1;
}
.our-team .team-col:nth-child(2) {
  margin: 0 0 130px 72px;
}
.our-team .team-col:nth-child(3) {
  margin-bottom: 225px;
  margin-left: 68px;
}
.our-team .team-col .row {
  display: flex;
  position: relative;
  top: -23px;
  left: -17px;
}
.our-team .team-col .team-pic3 {
  position: relative;
  top: 100px;
  max-width: 133px;
}
.our-team .team-col .team-pic5 {
  position: relative;
  top: 36px;
  left: 82px;
  max-width: 102px;
}
.our-team .team-col .team-pic6 {
  max-width: 135px;
}
.our-team .team-pic1 {
  max-width: 270px;
  top: 12px;
  left: 30px;
  position: relative;
}
.our-team .team-pic2 {
  max-width: 220px;
}
.our-team .team-pic3 {
  max-width: 200px;
}
.our-team .team-pic4 {
  max-width: 255px;
}
.our-team .figure4 {
  position: absolute;
  z-index: -1;
  top: -255px;
  right: 50%;
  margin-right: -84px;
}
.our-team .team-title-wr {
  position: absolute;
  top: 498px;
  right: 288px;
}
.our-team .team-title1 {
  max-width: 210px;
  font-size: 20px;
  font-weight: 200;
  text-align: left;
  margin-bottom: 35px;
}
.our-team .team-title2 {
  max-width: 770px;
  font-size: 112px;
  font-weight: 800;
  white-space: nowrap;
  margin-bottom: 15px;
}
.our-team .team-partner-pic {
  max-width: 380px;
  margin-right: 2px;
}
@media all and (min-width: 769px) {
  .our-team .shine-eff {
    width: 1200px;
    top: 640px;
    transform: rotate(40deg);
  }
  .our-team .shine-eff.-an-rotate {
    animation: shine-rotate-small 30s infinite linear;
  }
  .our-team .shine-eff:before, .our-team .shine-eff:after {
    width: 800px;
    height: 800px;
  }
}
.our-team .row-bottom {
  max-width: 1115px;
  display: flex;
  align-items: flex-end;
}
.our-team .bottom-title {
  position: relative;
  z-index: 1;
  font-size: 100px;
  font-weight: 800;
  line-height: 1.1;
  margin-left: 10px;
  padding-bottom: 50px;
  flex-grow: 1;
}
.our-team .bottom-title span:not(.-str-white) {
  position: relative;
  display: inline;
  margin-left: 4px;
}
.our-team .bottom-text {
  max-width: 410px;
  min-width: 410px;
  line-height: 25px;
  letter-spacing: 0.2px;
}
.our-team .bottom-figure {
  position: absolute;
  z-index: -1;
  bottom: -50px;
  left: 20px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: linear-gradient(180deg, #074BFF 0%, rgba(138, 0, 255, 0.2) 100%);
  transform: rotate(135deg);
}
.our-team .our-team-arrow {
  position: absolute;
  width: 291px;
  height: 322px;
  top: 220px;
  left: 0px;
  background-image: url("https://qa.wemake.co.il/mod/about-us/img/our_team_arrow.svg");
  background-position: top center;
  background-repeat: no-repeat;
  background-size: contain;
}
.our-team .our-team-ellipse {
  position: absolute;
  width: 744px;
  height: 132px;
  left: -191px;
  top: 1017px;
  background-image: url("https://qa.wemake.co.il/mod/about-us/img/our_team_ellipse.svg");
  background-position: top center;
  background-repeat: no-repeat;
  background-size: contain;
  transform: rotate(15deg);
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@media all and (max-width: 768px) {
  .our-story {
    padding-top: 66px;
    padding-bottom: 0;
  }
  .our-story .inner {
    padding: 0 4%;
  }
  .our-story .title1 {
    font-size: 18px;
    margin-bottom: 25px;
  }
  .our-story .title2 {
    font-size: 53px;
    margin-bottom: 36px;
  }
  .our-story .title3 {
    margin: 9px 0 20px 50px;
  }
  .our-story .row {
    display: block;
    margin-bottom: 92px;
  }
  .our-story .text {
    font-size: 24px;
    line-height: 144%;
    letter-spacing: 0.3px;
  }
  .our-story .caption {
    font-size: 14px;
  }
  .our-story .shine-eff.-an-scale {
    bottom: 0;
    right: 40%;
    width: 420px;
    margin-right: 0;
    transform: rotate(40deg);
    animation: shine-rotate-small 30s infinite linear;
  }
  .our-team {
    padding: 0 0 74px;
  }
  .our-team .inner {
    padding: 0 4%;
  }
  .our-team .row-top {
    padding-right: 34px;
    margin-bottom: 0;
  }
  .our-team .top-title {
    font-size: 48px;
    margin-bottom: 12px;
  }
  .our-team .sub-title {
    margin-bottom: 18px;
  }
  .our-team .top-text {
    max-width: 360px;
  }
  .our-team .title3 {
    margin: 0 0 15px 0;
  }
  .our-team .figure4 {
    width: 482px;
    height: 172px;
    transform: rotate(16deg);
    position: relative;
    margin: 0;
    top: auto;
    right: -40px;
  }
  .our-team .team-title-wr {
    position: static;
    text-align: left;
  }
  .our-team .team-title1 {
    font-size: 16px;
    max-width: 190px;
    margin-top: -10px;
    margin-left: 15px;
    margin-bottom: 25px;
  }
  .our-team .team-title2 {
    font-size: 50px;
    margin-left: 15px;
    margin-bottom: 0;
  }
  .our-team .row-team {
    margin-bottom: 295px;
    align-items: flex-start;
  }
  .our-team .team-col:nth-child(1n) {
    margin: 0;
    flex-grow: initial;
  }
  .our-team .team-col:nth-child(1) {
    order: 1;
  }
  .our-team .team-col:nth-child(2) {
    order: 2;
    margin-top: 38px;
    margin-right: 20px;
  }
  .our-team .team-col:nth-child(4) {
    order: 3;
    margin-top: 131px;
  }
  .our-team .team-col .row {
    flex-direction: column;
  }
  .our-team .team-col .team-pic3 {
    top: 65px;
    left: 40px;
  }
  .our-team .team-col .team-pic5 {
    top: 0;
    left: 30px;
    min-width: 24vw;
  }
  .our-team .team-col .team-pic6 {
    position: relative;
    top: 35px;
    left: 30px;
    min-width: 24vw;
  }
  .our-team .team-pic1 {
    max-width: 43.5294117647vw;
    min-width: 43.5294117647vw;
    top: 0;
    left: 0;
    right: 10px;
  }
  .our-team .team-pic2 {
    max-width: 20.2352941176vw;
  }
  .our-team .team-pic3 {
    max-width: 40vw;
    min-width: 22.8235294118vw;
  }
  .our-team .team-pic4 {
    max-width: 30.1176470588vw;
    min-width: 30.1176470588vw;
    position: relative;
    top: 18px;
    right: 5px;
  }
  .our-team .row-bottom {
    flex-wrap: wrap;
  }
  .our-team .bottom-title {
    position: static;
    font-size: 55px;
    width: 100%;
    margin: 0;
    padding-bottom: 40px;
    line-height: 63.435px;
  }
  .our-team .bottom-text {
    padding-right: 25%;
    max-width: none;
    min-width: 0;
    letter-spacing: 0;
  }
  .our-team .bottom-figure {
    left: auto;
    right: -95px;
    bottom: 50px;
  }
  .our-team .shine-eff {
    transform: rotate(50deg);
    top: 800px;
    left: -150px;
    width: 450px;
  }
  .our-team .shine-eff:before, .our-team .shine-eff:after {
    width: 300px;
    height: 300px;
  }
  .our-team .our-team-arrow {
    top: auto;
    bottom: 292px;
    left: 57px;
    width: 260px;
    height: 300px;
  }
}
@media all and (max-width: 425px) {
  .our-story .title2 {
    font-size: 12.4705882353vw;
  }
  .our-story .text {
    font-size: 5.6470588235vw;
  }
  .our-team .top-title {
    font-size: 11.2941176471vw;
  }
  .our-team .our-team .sub-title {
    font-size: 4.2352941176vw;
  }
  .our-team .team-title2 {
    font-size: 11.7647058824vw;
  }
  .our-team .bottom-title {
    font-size: 12.9411764706vw;
  }
  .our-team .our-team-arrow {
    bottom: 300px;
    left: 0px;
    height: 50vw;
  }
  .our-team .row-team {
    margin-bottom: 50vw;
  }
}
@media all and (max-width: 380px) {
  .our-team .team-col:nth-child(3) {
    margin: 2px 0 0 16px;
  }
}

@media all and (max-width: 1650px) and (min-width: 769px) {
  .our-story {
    padding-bottom: 150px;
  }
  .our-story .title2 {
    font-size: 7.7575757576vw;
  }
  .our-story .title3 {
    font-size: 2.2424242424vw;
  }
  .our-story .text {
    font-size: 2.4242424242vw;
    line-height: 3.6363636364vw;
  }
  .our-team .inner {
    padding: 0;
  }
  .our-team .our-team-ellipse {
    width: 38.75vw;
    height: 132px;
    left: -180px;
    top: 996px;
  }
}
@media all and (max-width: 1440px) and (min-width: 769px) {
  .our-story {
    padding-top: 100px;
  }
  .our-story .inner {
    max-width: none;
  }
  .our-team {
    padding-bottom: 140px;
  }
  .our-team .inner {
    padding-right: 3%;
    padding-left: 3%;
    max-width: none;
  }
  .our-team .team-col:nth-child(2) {
    margin: 0 0 9.0277777778vw 5.5555555556vw;
  }
  .our-team .team-col:nth-child(3) {
    margin-bottom: 15.625vw;
  }
  .our-team .team-pic1 {
    max-width: 18.75vw;
  }
  .our-team .team-pic2 {
    max-width: 15.2777777778vw;
  }
  .our-team .team-pic3 {
    max-width: 13.8888888889vw;
  }
  .our-team .team-pic4 {
    max-width: 17.7083333333vw;
  }
  .our-team .team-title-wr {
    right: 23%;
    top: 38%;
  }
  .our-team .team-title1 {
    max-width: 14.5833333333vw;
    font-size: 1.3888888889vw;
  }
  .our-team .team-title2 {
    max-width: 53.4722222222vw;
    font-size: 7.7777777778vw;
  }
  .our-team .team-partner-pic {
    max-width: 26.3888888889vw;
  }
  .our-team .figure4 {
    top: -11.8055555556vw;
    width: 75.2083333333vw;
    height: 22.3611111111vw;
  }
  .our-team .bottom-title {
    font-size: 6.9444444444vw;
  }
}
@media all and (max-width: 1280px) and (min-width: 769px) {
  .our-story .shine-eff {
    width: 650px;
    margin-right: 200px;
  }
  .our-story .shine-eff::before, .our-story .shine-eff::after {
    width: 430px;
    height: 430px;
  }
  .our-team .shine-eff {
    width: 900px;
  }
  .our-team .shine-eff::before, .our-team .shine-eff::after {
    width: 600px;
    height: 600px;
  }
}
@media all and (max-width: 1199px) and (min-width: 769px) {
  .our-team .our-team-arrow {
    top: 180px;
    height: 250px;
  }
  .our-team .our-team-ellipse {
    top: 110vw;
  }
  .our-team .team-title-wr {
    top: 45%;
  }
  .our-team .figure4 {
    margin-right: -30%;
  }
}
@media all and (max-width: 900px) and (min-width: 769px) {
  .our-team .our-team-arrow {
    top: 150px;
  }
}
.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;
  }
}
.our-values {
  position: relative;
  z-index: 1;
  padding-top: 131px;
  padding-bottom: 218px;
}
.our-values .inner {
  max-width: 1350px;
}
.our-values .top-title {
  font-size: 64px;
  padding-right: 55px;
  margin-bottom: 40px;
  font-weight: 900;
}
.our-values .slider {
  border-radius: 20px;
  border: 1px solid #fff;
}
.our-values .slide {
  padding: 40px 53px 50px 80px;
  margin: 0 1px;
}
.our-values .owl-carousel .owl-nav button.owl-prev {
  left: auto;
}
.our-values .owl-nav {
  visibility: hidden;
}
.our-values .slide-content {
  display: flex;
}
.our-values .slide-info {
  max-width: 43%;
  min-width: 43%;
  margin-left: 4.5%;
}
.our-values .slide-media {
  flex-grow: 1;
  border-radius: 10px;
  overflow: hidden;
  max-width: 637px;
  max-height: 412px;
}
.our-values .slide-media img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
}
.our-values .slide-title1,
.our-values .slide-title2 {
  font-weight: 800;
}
@media all and (min-width: 769px) {
  .our-values .slide-title1,
  .our-values .slide-title2 {
    background: linear-gradient(270deg, #D7D7FF 0%, #F3F8FF 97.5%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
}
.our-values .slide-num {
  position: relative;
  font-family: "Heebo", "sans-serif";
  margin-bottom: 7px;
  margin-top: 3px;
  font-size: 18px;
}
.our-values .slide-title2 {
  font-family: "Unbounded", "sans-serif";
  font-weight: 900;
  font-size: 20px;
  line-height: 24px;
  position: relative;
  margin-top: 34px;
  margin-bottom: 7px;
}
.our-values .slide-title1 {
  font-size: 48px;
  margin-bottom: 26px;
}
.our-values .slide-text {
  font-size: 20px;
  line-height: 26px;
  margin-bottom: 10px;
  font-weight: 300;
  letter-spacing: 0.15px;
}
.our-values .slide-text2 {
  max-width: 435px;
}
.our-values .slide-more-wr {
  display: flex;
  justify-content: flex-end;
}
.our-values .slide-more {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 1px solid #fff;
  margin-left: 2px;
  font-size: 12px;
  font-weight: 800;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.our-values .slide-more:hover .figure5 {
  background-image: url(https://qa.wemake.co.il/mod/our-values/img/figure5-black.svg);
}
.our-values .figure5 {
  margin-top: 2px;
  position: relative;
  top: 3px;
  transition: background-image 0.3s linear;
}
.our-values .shine-eff {
  width: 1400px;
  top: 0;
  right: 50%;
  margin-right: 240px;
  transform: rotate(65deg);
}
.our-values .shine-eff:before, .our-values .shine-eff:after {
  width: 850px;
  height: 850px;
}
.our-values .owl-carousel .owl-dots {
  position: absolute;
  left: 27px;
  top: calc(50% - 10px);
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
}
.our-values .owl-carousel .owl-dots .owl-dot {
  position: relative;
  width: 10px;
  height: 10px;
  background-color: #fff;
  border-radius: 10px;
  margin: 10px 0;
}
.our-values .owl-carousel .owl-dots .owl-dot.active {
  background: linear-gradient(180deg, #E8CAFF 0%, #8CB9FF 100%);
}
.our-values .owl-carousel .owl-dots .owl-dot.active:after {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  display: block;
  border: 1px #fff solid;
  border-radius: 24px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media all and (max-width: 768px) {
  .our-values [class*=desktop-] {
    display: none;
  }
}

@keyframes arrows {
  0% {
    opacity: 0.2;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.2;
  }
}
@media all and (max-width: 768px) {
  .our-values {
    padding: 73px 0 83px;
  }
  .our-values .inner {
    padding: 0 4%;
    position: relative;
  }
  .our-values .top-title {
    font-size: 48px;
    margin-bottom: 25px;
    padding: 0;
  }
  .our-values .carousel-wrap {
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    padding-bottom: 20px;
  }
  .our-values .slider {
    border: 0;
  }
  .our-values .slide {
    position: relative;
    padding: 4% 5% 20px;
  }
  .our-values .slide-num {
    margin-bottom: 8px;
    margin-top: 0;
    font-size: 16px;
  }
  .our-values .slide-content {
    flex-direction: column;
  }
  .our-values .slide-info {
    max-width: none;
    min-width: 0;
    margin: 0;
  }
  .our-values .slide-title1 {
    margin-bottom: 5px;
    font-size: 32px;
    background: linear-gradient(270deg, #D7D7FF 0%, #98FF32 40%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .our-values .slide-text {
    letter-spacing: 0;
    font-size: 20px;
    line-height: 150%;
  }
  .our-values .slide-text2 {
    line-height: 138%;
    margin-bottom: 20px;
  }
  .our-values .owl-carousel .owl-dots {
    position: relative;
    left: 0;
    top: auto;
    bottom: 0;
    transform: none;
    flex-direction: row;
    justify-content: center;
  }
  .our-values .owl-carousel .owl-dots .owl-dot {
    margin: 0 8px;
  }
  .our-values .owl-carousel .owl-dots .owl-dot.active:after {
    width: 20px;
    height: 20px;
  }
  .our-values .slide-title2 {
    font-size: 20px;
    margin-top: 28px;
    margin-bottom: 5px;
  }
  .our-values .arrows {
    position: absolute;
    top: 4%;
    left: 3%;
    width: 70px;
  }
  .our-values .mobile-slider-arrow {
    right: auto;
    animation: arrows 3s ease infinite;
  }
  .our-values .mobile-slider-arrow:nth-child(2) {
    animation-delay: 1s;
  }
  .our-values .mobile-slider-arrow:nth-child(3) {
    animation-delay: 1.5s;
  }
}
@media all and (max-width: 425px) {
  .our-values .top-title {
    font-size: 11.2941176471vw;
  }
}

@media all and (max-width: 1440px) and (min-width: 769px) {
  .our-values {
    padding-top: 100px;
    padding-bottom: 120px;
  }
}
@media all and (max-width: 1280px) and (min-width: 769px) {
  .our-values .top-title {
    font-size: 5vw;
  }
  .our-values .slide-title1 {
    font-size: 3.75vw;
  }
  .our-values .shine-eff {
    width: 900px;
  }
  .our-values .shine-eff::before, .our-values .shine-eff::after {
    width: 600px;
    height: 600px;
  }
}
@media all and (max-width: 1024px) and (min-width: 769px) {
  .our-values .top-title {
    padding-right: 5%;
  }
  .our-values .slide {
    padding: 40px 5% 50px;
  }
  .our-values .slide-content {
    flex-direction: column;
  }
  .our-values .slide-media {
    order: 1;
    margin: 0 0 50px;
  }
  .our-values .slide-info {
    order: 2;
    max-width: none;
    margin: 0;
  }
  .our-values .owl-carousel .owl-dots {
    position: relative;
    left: 0;
    top: auto;
    bottom: 21px;
    transform: translateY(0);
    flex-direction: row;
    justify-content: center;
  }
  .our-values .owl-carousel .owl-dots .owl-dot {
    margin: 0 8px;
  }
}
.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;
  }
}
.our-journey .picture.-brd {
  border: 1px solid #707070;
  padding: 4px;
  background: #fff;
  margin-bottom: 10px;
  width: 95px;
  height: 95px;
}
.our-journey .picture.-brd, .our-journey .picture.-brd img {
  border-radius: 100px;
}
.our-journey .picture.-brd img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.our-journey .picture-wr {
  display: flex;
}
.our-journey .-r1-c2-i1 .picture:nth-child(2) {
  position: relative;
  right: -20px;
}
.our-journey .-r2-c4-i1 .picture-wr .picture {
  position: relative;
}
.our-journey .-r2-c4-i1 .picture-wr .picture:nth-child(2) {
  right: -35px;
}
.our-journey .-r2-c4-i1 .picture-wr .picture:nth-child(3) {
  right: -70px;
}
.our-journey .tbc-text {
  font-size: 24px;
  font-weight: 800;
  line-height: 25px;
  background: linear-gradient(93.98deg, #0040E5 3.49%, #116FFF 93.03%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

@media all and (min-width: 769px) {
  .our-journey {
    padding-top: 105px;
  }
  .about-us-page .our-journey {
    padding-top: 96px;
  }
  .our-journey .top-wr {
    text-align: center;
  }
  .our-journey .top-title {
    font-size: 64px;
    font-weight: 800;
  }
  .our-journey .journey-scr {
    cursor: grab;
    overflow-x: scroll;
    overflow-y: visible;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .our-journey .journey-scr::-webkit-scrollbar {
    display: none;
  }
  .our-journey .journey-scr.desktop- {
    margin-top: -20px;
    position: relative;
  }
  .our-journey .journey-scr.desktop-::after {
    content: "";
    display: block;
    position: fixed;
    width: 22.4479166667vw;
    max-width: 431px;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(90deg, #F8F8F8 0%, rgba(248, 248, 248, 0) 100%);
  }
  .our-journey .journey-wr1 {
    padding: 50px 120px 170px 140px;
    min-width: 3900px;
  }
  .about-us-page .our-journey .journey-wr1 {
    padding: 50px 188px 0 140px;
  }
  .our-journey .journey-wr2 {
    position: relative;
    height: 991px;
  }
  .our-journey .journey-wr2:before {
    content: "";
    display: block;
    position: absolute;
    z-index: 1;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
  }
  .our-journey .line-wr {
    position: relative;
  }
  .our-journey .line {
    position: absolute;
  }
  .our-journey .line.-h {
    height: 1px;
    right: 5px;
    left: 0;
    border-bottom: 1px dashed #000;
    margin-top: 22px;
  }
  .our-journey .line.-v {
    width: 1px;
    top: 2px;
    bottom: -22px;
    right: 1px;
    border-left: 1px dashed #000;
  }
  .our-journey .dot-wr {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }
  .our-journey .dot-wr:before, .our-journey .dot-wr.-hl:after {
    content: "";
    display: block;
    position: absolute;
  }
  .our-journey .dot-wr:before {
    z-index: 1;
    border-radius: 50%;
    top: 50%;
  }
  .our-journey .dot-wr.-d1:before {
    background: #000;
    right: -38px;
    width: 18px;
    height: 18px;
    margin-top: -11px;
  }
  .our-journey .dot-wr.-d2:before {
    border: 1px solid #000;
    background: #fff;
    right: -34px;
    width: 12px;
    height: 12px;
    margin-top: -6px;
  }
  .our-journey .dot-wr.-hl:after {
    top: 50%;
    right: -29px;
    width: 2px;
    height: 150px;
    background: #f8f8f8;
  }
  .our-journey .dot-wr.-md {
    position: absolute;
    top: -40px;
    right: 30px;
  }
  .our-journey .year,
  .our-journey [class^=title] {
    font-weight: 800;
    line-height: 1;
  }
  .our-journey .year {
    display: flex;
    font-size: 22px;
    font-family: "SimplerPro", "Helvetica", "Arial", sans-serif;
  }
  .our-journey .title1 {
    font-size: 48px;
  }
  .our-journey .title2 {
    font-size: 36px;
  }
  .our-journey .title3 {
    font-size: 30px;
  }
  .our-journey .title4 {
    font-size: 24px;
  }
  .our-journey .title5 {
    font-size: 20px;
  }
  .our-journey .row {
    display: flex;
  }
  .our-journey .-r1 {
    align-items: flex-end;
  }
  .our-journey .-r1 .year {
    margin-bottom: 30px;
  }
  .our-journey .-r2 {
    padding-right: 382px;
    align-items: flex-start;
    margin-top: 22px;
  }
  .our-journey .col {
    position: relative;
    width: 550px;
    padding-right: 30px;
    padding-left: 30px;
    padding-bottom: 60px;
  }
  .our-journey .col[class*=-r2-c] {
    padding-bottom: 0;
  }
  .our-journey .col[class*=-r2-c]:not(.-r2-c1) {
    padding-top: 30px;
  }
  .our-journey .col[class*=-r2-c]:not(.-r2-c1) .line {
    top: -35px;
  }
  .our-journey .col.-r1-c1 {
    padding-bottom: 175px;
    padding-right: 22px;
    width: 618px;
  }
  .our-journey .item {
    margin-bottom: 30px;
  }
  .our-journey .item .text {
    max-width: 242px;
  }
  .our-journey .item:last-child {
    margin-bottom: 0;
  }
  .our-journey .-r1-c1 {
    padding-right: 0;
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
  }
  .our-journey .-r1-c1 .picture.-brd {
    margin-right: 0;
    width: 75px;
    height: 75px;
    margin-bottom: 17px;
  }
  .our-journey .-r1-c1 .line {
    top: auto;
    position: absolute;
    height: 349px;
    right: 2px;
    bottom: -21px;
  }
  .our-journey .-r1-c1 .line:before {
    margin: 0;
    top: -8px;
    right: -7px;
    width: 15px;
    height: 15px;
  }
  .our-journey .-r1-c1 .-r1-c1-i1 {
    margin-bottom: -30px;
    margin-right: -7px;
  }
  .our-journey .-r1-c1 .-r1-c1-i1 .started-text {
    font-size: 14px;
    margin-bottom: 17px;
  }
  .our-journey .-r1-c1 .-r1-c1-i1 .title3 {
    font-size: 20px;
    margin-bottom: 11px;
  }
  .our-journey .-r1-c1 .-r1-c1-i1 .text {
    line-height: 104%;
    max-width: 293px;
    margin-bottom: -25px;
  }
  .our-journey .-r1-c2 {
    width: 760px;
    padding-bottom: 0;
    padding-right: 25px;
  }
  .our-journey .-r1-c2 .line.-v {
    bottom: -20px;
  }
  .our-journey .-r1-c2 .year {
    font-size: 16px;
    margin-bottom: 10px;
    margin-right: -5px;
  }
  .our-journey .-r1-c2 .year.dot-wr.-d1:before {
    right: -26px;
    width: 16px;
    height: 16px;
    margin-top: -9px;
  }
  .our-journey .-r1-c2-i1 {
    margin-bottom: 30px;
    margin-right: -7px;
    display: flex;
  }
  .our-journey .-r1-c2-i1 .picture.-brd {
    margin-bottom: 16px;
    width: 75px;
    height: 75px;
  }
  .our-journey .-r1-c2-i1 .title4 {
    margin-bottom: 8px;
    font-size: 20px;
  }
  .our-journey .-r1-c2-i1 .title4.dot-wr.-d2:before {
    right: -22px;
    margin-top: -4px;
  }
  .our-journey .-r1-c2-i1 .text {
    max-width: 210px;
  }
  .our-journey .-r1-c2-i2 {
    margin-right: -6px;
    display: flex;
  }
  .our-journey .-r1-c2-i2 .dot-wr.-d2:before {
    right: -23px;
    margin-top: -34px;
  }
  .our-journey .-r1-c2-i2 .picture.-brd {
    margin-bottom: 14px;
    width: 75px;
    height: 75px;
  }
  .our-journey .-r1-c2-i2 .item-content {
    margin-right: 15px;
    margin-top: 7px;
  }
  .our-journey .-r1-c2-i2 .text {
    max-width: 243px;
  }
  .our-journey .-r1-c3 {
    width: 734px;
    margin-right: 15px;
    padding-bottom: 20px;
    padding-right: 16px;
  }
  .our-journey .-r1-c3 .item:not(:last-child) {
    margin-bottom: 50px;
  }
  .our-journey .-r1-c3 .line.-v {
    right: -8px;
  }
  .our-journey .-r1-c3 .year {
    margin-bottom: 23px;
    margin-right: -2px;
    font-size: 14px;
  }
  .our-journey .-r1-c3 .year.dot-wr.-d1:before {
    right: -30px;
  }
  .our-journey .-r1-c3 .item.-r1-c3-i1 {
    margin-bottom: 50px;
  }
  .our-journey .-r1-c3 .item.-r1-c3-i1 .dot-wr.-d2:before {
    right: -29px;
  }
  .our-journey .-r1-c3-i1 {
    display: flex;
  }
  .our-journey .-r1-c3-i1 .dot-wr:before {
    margin-top: -30px;
  }
  .our-journey .-r1-c3-i1 .picture {
    margin-left: 25px;
  }
  .our-journey .-r1-c3-i1 img {
    max-width: 67px;
  }
  .our-journey .-r1-c3-i1 .text {
    max-width: 242px;
  }
  .our-journey .-r1-c3-i2 {
    display: flex;
  }
  .our-journey .-r1-c3-i2 .dot-wr:before {
    margin-top: -28px;
    right: -29px;
  }
  .our-journey .-r1-c3-i2 .picture {
    margin-bottom: 15px;
    margin-left: 21px;
  }
  .our-journey .-r1-c3-i2 img {
    max-width: 71px;
  }
  .our-journey .-r1-c3-i2 .text {
    max-width: 242px;
  }
  .our-journey .-r1-c3-i3 {
    margin-bottom: 63px;
  }
  .our-journey .-r1-c3-i3 .dot-wr.-d2:before {
    margin-top: -8px;
    right: -44px;
  }
  .our-journey .-r1-c3-i3 .title1 {
    font-size: 40px;
    margin-bottom: 5px;
  }
  .our-journey .-r1-c3-i3 .title4 {
    line-height: 84%;
    font-size: 24px;
    margin-bottom: -21px;
  }
  .our-journey .-r1-c4 {
    width: 860px;
    padding-bottom: 44px;
  }
  .our-journey .-r1-c4 .line {
    margin-right: -8px;
    top: 10px;
  }
  .our-journey .-r1-c4 .year {
    margin-bottom: 20px;
    margin-right: -21px;
    font-size: 14px;
  }
  .our-journey .-r1-c4 .year.dot-wr.-d1:before {
    right: -22px;
    width: 14px;
    height: 14px;
    margin-top: -8px;
  }
  .our-journey .-r1-c4-i1 {
    margin-bottom: 33px;
    margin-right: -8px;
    display: flex;
  }
  .our-journey .-r1-c4-i1 .dot-wr {
    margin-bottom: 8px;
  }
  .our-journey .-r1-c4-i1 .dot-wr.-d2:before {
    right: -35px;
    margin-top: -23px;
  }
  .our-journey .-r1-c4-i1 img {
    max-width: 118px;
    margin-right: -10px;
  }
  .our-journey .-r1-c4-i1 .item-content {
    margin-right: 23px;
    margin-top: -7px;
  }
  .our-journey .-r1-c4-i1 .text {
    line-height: 120%;
    margin-top: 7px;
  }
  .our-journey .-r1-c4-i2 {
    margin-bottom: 0;
    display: flex;
  }
  .our-journey .-r1-c4-i2 .dot-wr {
    margin-bottom: 15px;
  }
  .our-journey .-r1-c4-i2 .dot-wr.-d2:before {
    right: -42px;
  }
  .our-journey .-r1-c4-i2 img {
    max-height: 94px;
    margin-right: -7px;
    margin-bottom: 15px;
  }
  .our-journey .-r1-c4-i2 .item-content {
    margin-right: 35px;
    margin-top: 20px;
  }
  .our-journey .-r1-c4-i3 {
    margin-bottom: -29px !important;
    margin-right: -7px;
  }
  .our-journey .-r1-c4-i3 .dot-wr.-d2:before {
    right: -165px;
    margin-top: -30px;
  }
  .our-journey .-r1-c4-i3 .item-content {
    margin-right: 129px;
  }
  .our-journey .-r1-c4-i3 .title5 {
    margin-bottom: 6px;
  }
  .our-journey .-r1-c4-i3 .text {
    max-width: 242px;
  }
  .our-journey .-r1-c5 {
    padding-bottom: 15px;
  }
  .our-journey .-r1-c5 .year {
    margin-bottom: 8px;
    font-size: 14px;
  }
  .our-journey .-r1-c5 .year.dot-wr.-d1:before {
    right: -35px;
    width: 14px;
    height: 14px;
    margin-top: -9px;
  }
  .our-journey .-r1-c5-i1 {
    margin-bottom: 30px;
  }
  .our-journey .-r1-c5-i1 .item1 {
    display: flex;
  }
  .our-journey .-r1-c5-i1 .title2,
  .our-journey .-r1-c5-i1 .text {
    margin-bottom: 10px;
    max-width: 280px;
  }
  .our-journey .-r1-c5-i1 .title2 {
    margin-left: 25px;
  }
  .our-journey .-r1-c5-i1 .picture.-first {
    margin-bottom: 15px;
  }
  .our-journey .-r1-c5-i1 .picture.-first img {
    max-height: 32px;
  }
  .our-journey .-r1-c5-i1 .picture-wr .picture {
    max-width: 75px;
  }
  .our-journey .-r1-c5-i1 .picture-wr .picture:not(:last-child) {
    margin-left: 10px;
  }
  .our-journey .-r1-c5-i2 {
    margin-bottom: 80px;
  }
  .our-journey .-r1-c5-i2 .title2 {
    margin-bottom: 10px;
  }
  .our-journey .-r1-c5-i2 .picture-wr {
    margin-bottom: 15px;
  }
  .our-journey .-r1-c5-i2 .picture:nth-of-type(2) {
    margin-right: 15px;
  }
  .our-journey .-r1-c5-i2 .picture img {
    max-height: 76px;
  }
  .our-journey .-r1-c5-i3 .title4 {
    margin-bottom: 5px;
  }
  .our-journey .-r1-c5-i3 .text {
    margin-bottom: 5px;
  }
  .our-journey .-r1-c5-i3 .picture-wr .picture:first-child {
    margin-left: 20px;
  }
  .our-journey .-r1-c5-i3 img {
    max-height: 80px;
  }
  .our-journey .-r2-c1 {
    width: 665px;
    padding-top: 50px;
  }
  .our-journey .-r2-c1 .year {
    position: relative;
    padding: 0;
    top: auto;
    margin-bottom: 42px;
    margin-top: -9px;
    margin-right: -10px;
    font-size: 14px;
  }
  .our-journey .-r2-c1 .year.dot-wr.-d1:before {
    right: -26px;
    width: 15px;
    height: 15px;
  }
  .our-journey .-r2-c1 .line {
    top: 0;
    bottom: 18px;
  }
  .our-journey .-r2-c1-i1 {
    margin-bottom: 15px;
    margin-top: -10px;
    margin-right: -10px;
  }
  .our-journey .-r2-c1-i1 b.-simpler-pro {
    font-size: 23px;
  }
  .our-journey .-r2-c1-i1 .title5 {
    margin-top: 3px;
    margin-bottom: 4px;
  }
  .our-journey .-r2-c1-i1 .title5.dot-wr.-d2:before {
    right: -24px;
  }
  .our-journey .-r2-c1-i2 {
    margin-bottom: 30px;
    margin-right: -10px;
  }
  .our-journey .-r2-c1-i2 .dot-wr:before {
    margin-top: -16px;
    right: -25px;
  }
  .our-journey .-r2-c1-i2 img {
    max-height: 65px;
  }
  .our-journey .-r2-c1-i3 .dot-wr:before {
    margin-top: 0;
    right: -34px;
  }
  .our-journey .-r2-c1-i3 img {
    max-height: 37px;
  }
  .our-journey .-r2-c2 {
    width: 750px;
    padding-top: 50px !important;
    margin-right: -5px;
  }
  .our-journey .-r2-c2 .line {
    top: 5px !important;
    bottom: 50px;
    right: 11px;
  }
  .our-journey .-r2-c2 .year {
    font-size: 14px;
    margin-top: 80px;
  }
  .our-journey .-r2-c2 .year.dot-wr.-d1:before {
    right: -25px;
    width: 14px;
    height: 14px;
    margin-top: -12px;
  }
  .our-journey .-r2-c2-i1 {
    margin-bottom: 38px;
    margin-top: 40px;
    display: flex;
  }
  .our-journey .-r2-c2-i1 .title1 {
    margin-bottom: 2px;
    font-size: 36px;
    margin-left: 20px;
  }
  .our-journey .-r2-c2-i1 .title1.dot-wr.-d2:before {
    right: -24px;
    margin-top: -24px;
  }
  .our-journey .-r2-c2-i1 .text {
    line-height: 120%;
  }
  .our-journey .-r2-c2-i2 {
    display: flex;
  }
  .our-journey .-r2-c2-i2 .dot-wr:before {
    margin: 0;
    top: 8px;
    right: -24px;
  }
  .our-journey .-r2-c2-i2 .dot-wr:after {
    top: 6px;
  }
  .our-journey .-r2-c2-i2 img {
    max-width: 64px;
    margin-top: 4px;
  }
  .our-journey .-r2-c2-i2 .title5 {
    margin-bottom: 5px;
  }
  .our-journey .-r2-c3 {
    width: 804px;
    margin-right: -1px;
    padding-top: 40px !important;
    padding-right: 40px !important;
  }
  .our-journey .-r2-c3 .line {
    top: 0px !important;
    right: 13px;
    bottom: 60px;
  }
  .our-journey .-r2-c3 .year {
    font-size: 14px;
    margin-top: 80px;
  }
  .our-journey .-r2-c3 .year.dot-wr.-d1:before {
    right: -24px;
    width: 15px;
    height: 15px;
  }
  .our-journey .-r2-c3-i1 {
    margin-bottom: 20px;
    margin-top: 39px;
  }
  .our-journey .-r2-c3-i1 .dot-wr.-d2:before {
    right: -32px;
  }
  .our-journey .-r2-c3-i1 .title3.dot-wr.-d2:before {
    right: -22.5px;
    margin-top: -8px;
  }
  .our-journey .-r2-c3-i1 .title5 {
    margin-bottom: 5px;
  }
  .our-journey .-r2-c3-i2 {
    margin-bottom: 17px;
  }
  .our-journey .-r2-c3-i2 .dot-wr.-d2:before {
    right: -34px;
    margin-top: -8px;
  }
  .our-journey .-r2-c3-i2 .text {
    line-height: 120%;
  }
  .our-journey .-r2-c3-i2 img {
    max-height: 32px;
  }
  .our-journey .-r2-c3-i3 img {
    max-height: 40px;
  }
  .our-journey .-r2-c3-i3 .dot-wr.-d2:before {
    right: -34px;
    margin-top: -4px;
  }
  .our-journey .-r2-c3-i3 .text {
    margin-top: -2px;
  }
  .our-journey .-r2-c4 {
    padding-top: 65px !important;
    margin-right: 14px;
  }
  .our-journey .-r2-c4 .line {
    top: 0 !important;
    bottom: 50px !important;
  }
  .our-journey .-r2-c4 .year {
    font-size: 14px;
    top: 42px;
    right: 19px;
  }
  .our-journey .-r2-c4 .year.dot-wr.-d1:before {
    right: -26px;
    width: 17px;
    height: 17px;
  }
  .our-journey .-r2-c4 .picture.-brd {
    width: 85px;
    height: 85px;
  }
  .our-journey .-r2-c4-i1 {
    margin-bottom: 40px;
    margin-top: 15px;
  }
  .our-journey .-r2-c4-i1 .title5 {
    margin-bottom: 5px;
  }
  .our-journey .-r2-c4-i1 .picture.-first {
    margin-bottom: 5px;
  }
  .our-journey .-r2-c4-i1 .picture.-first img {
    max-height: 40px;
  }
  .our-journey .-r2-c4-i1 .picture.-brd img {
    min-height: 80px;
  }
  .our-journey .-r2-c4-i1 .text {
    margin-bottom: 25px;
  }
  .our-journey .-r2-c4-i2 {
    margin-bottom: 20px;
    display: flex;
  }
  .our-journey .-r2-c4-i2 .dot-wr:before {
    margin-top: -10px;
  }
  .our-journey .-r2-c4-i2 .picture.-first img {
    max-width: 237px;
  }
  .our-journey .-r2-c4-i2 .text {
    line-height: 125%;
    margin-bottom: 8px;
  }
  .our-journey .-r2-c4-i2 .picture-wr {
    margin-top: -12px;
    margin-right: 15px;
  }
  .our-journey .-r2-c4-i2 .picture.-brd {
    width: 75px;
    height: 75px;
  }
  .our-journey .-r2-c4-i2 .picture.-brd:not(:first-of-type) {
    margin-right: -30px;
  }
  .our-journey .-r2-c4-i3 {
    display: flex;
    margin-bottom: 50px;
  }
  .our-journey .-r2-c4-i3 b {
    margin-bottom: 7px;
  }
  .our-journey .-r2-c4-i3 .dot-wr {
    margin-bottom: 5px;
  }
  .our-journey .-r2-c4-i3 .dot-wr.-d2:before {
    right: -124px;
    margin-top: -15px;
  }
  .our-journey .-r2-c4-i3 .picture.-first img {
    max-width: 157px;
  }
  .our-journey .-r2-c4-i3 .picture.-brd {
    width: 75px;
    height: 75px;
    margin-left: 15px;
  }
  .our-journey .started-text {
    font-size: 11px;
    margin-bottom: 7px;
  }
  .our-journey .tbc-wr {
    position: absolute;
    top: -33px;
    left: -50px;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }
  .our-journey .tbc-wr .year {
    position: relative;
    margin-bottom: 10px;
    font-size: 24px;
  }
  .our-journey .tbc-wr .year:before {
    top: auto;
    bottom: 6px;
    right: -20px;
    margin: 0;
    width: 16px;
    height: 16px;
  }
}
@media all and (max-width: 768px) {
  .our-journey {
    padding: 90px 0 35px;
  }
  .our-journey .journey-wr {
    position: relative;
  }
  .our-journey .journey-wr:not(.-compact) {
    margin-bottom: 20px;
  }
  .our-journey .journey-wr.-compact {
    max-height: 725px;
  }
  .our-journey .journey-wr.-compact:before {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    height: 400px;
    background: linear-gradient(180deg, rgba(244, 244, 244, 0) 0%, #F8F8F8 100%);
  }
  .our-journey .journey-scr {
    height: auto;
    overflow: hidden;
    padding: 0 5%;
  }
  .our-journey .-compact .line.-v2 {
    opacity: 0.3;
  }
  .our-journey .top-wr {
    text-align: center;
  }
  .our-journey .top-title {
    font-size: 48px;
  }
  .our-journey .col {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .our-journey .col.-c2 .year {
    margin-bottom: 12px;
  }
  .our-journey .col.-c2 .line.-h {
    margin: 11px auto 18px;
  }
  .our-journey .line {
    position: relative;
  }
  .our-journey .line.-first:before {
    background: #000;
  }
  .our-journey .line.-h {
    margin: 15px auto;
    width: 100%;
    max-width: 320px;
    height: 1px;
    border-bottom: 1px dashed #000;
  }
  .our-journey .line.-v {
    margin: 20px auto 25px;
    width: 1px;
    height: 35px;
    border-right: 1px dashed #000;
  }
  .our-journey .line.-v.-v1 {
    margin: 15px auto 25px;
  }
  .our-journey .line.-v.-v2 {
    margin: 15px auto 25px;
  }
  .our-journey .line.-v:before, .our-journey .line.-v:after {
    content: "";
    display: block;
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid #000;
    right: -5px;
  }
  .our-journey .line.-v:before {
    top: -10px;
  }
  .our-journey .line.-v:after {
    bottom: -10px;
  }
  .our-journey .year {
    font-size: 18px;
    font-weight: 800;
    font-family: "SimplerPro", "Helvetica", "Arial", sans-serif;
    margin-bottom: 10px;
    position: relative;
  }
  .our-journey .year::before {
    content: "";
    position: absolute;
    top: -4px;
    left: -10px;
    right: -10px;
    bottom: 0;
    border-radius: 77px;
    z-index: -1;
    background: linear-gradient(197deg, #8FFF01, #EBFF01, #8FFF01, #EBFF01, #8FFF01);
    animation: gradient 10s ease infinite;
    background-size: 300%;
  }
  .our-journey .title {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 10px;
  }
  .our-journey .text {
    max-width: 250px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 20px;
  }
  .our-journey .started-text {
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 20px;
  }
  .our-journey .started-text span {
    display: inline-block;
    position: relative;
  }
  .our-journey .started-text span::before {
    content: "";
    position: absolute;
    width: 52px;
    top: 0px;
    right: -5px;
    bottom: 0px;
    background: linear-gradient(197deg, #8FFF01, #EBFF01, #8FFF01, #EBFF01, #8FFF01);
    animation: gradient 10s ease infinite;
    background-size: 300%;
    border-radius: 50px;
    z-index: -1;
  }
  .our-journey .picture {
    margin: 0 auto;
  }
  .our-journey .picture-wr {
    justify-content: center;
  }
  .our-journey .picture-wr .picture.-brd {
    width: 85px;
    height: 85px;
  }
  .our-journey .-c1-i1 .picture {
    width: 65px;
    height: 65px;
  }
  .our-journey .-c2-i1 {
    margin-bottom: 30px;
  }
  .our-journey .-c2-i1 b.-simpler-pro {
    font-size: 23px;
  }
  .our-journey .-c2-i1 .title {
    margin-top: 2px;
    margin-bottom: 5px;
  }
  .our-journey .-c2-i1 .line.-h {
    margin: 11px auto 18px;
  }
  .our-journey .-c2-i2 .picture {
    max-width: 65px;
    margin-bottom: 15px;
  }
  .our-journey .-c2-i2 .title {
    font-size: 20px;
  }
  .our-journey .-c2-i3 .picture {
    max-width: 90px;
    margin-bottom: 10px;
  }
  .our-journey .-c3-i1 .text {
    margin-bottom: 5px;
  }
  .our-journey .-c3-i1 .picture-wr {
    margin-right: 20px;
  }
  .our-journey .-c3-i1 .picture {
    margin: 0;
  }
  .our-journey .-c3-i1 .picture:nth-child(2) {
    position: relative;
    right: -20px;
  }
  .our-journey .-c3-i2 .text {
    margin-bottom: 5px;
  }
  .our-journey .-c3-i2 .picture {
    width: 85px;
    height: 85px;
    border: 1px solid #797979;
    border-radius: 50%;
  }
  .our-journey .-c4-i1 .title {
    font-size: 48px;
  }
  .our-journey .-c4-i2 .picture {
    max-width: 180px;
    margin-bottom: 20px;
  }
  .our-journey .-c5-i1 .picture {
    max-width: 190px;
  }
  .our-journey .-c5-i2 .picture {
    max-width: 110px;
    margin-bottom: 15px;
  }
  .our-journey .-c5-i3 .title {
    margin-bottom: 5px;
  }
  .our-journey .-c5-i3 .title.-unbounded {
    font-size: 40px;
    margin: 0;
  }
  .our-journey .-c6 .year {
    margin-bottom: 5px;
  }
  .our-journey .-c6-i1 .title {
    margin: 0;
  }
  .our-journey .-c6-i2 .picture {
    max-width: 160px;
    margin-bottom: 10px;
  }
  .our-journey .-c6-i3 .picture {
    max-width: 200px;
    margin-bottom: 15px;
  }
  .our-journey .-c7-i1 .title {
    margin: 0;
  }
  .our-journey .-c7-i1 .picture {
    max-width: 100px;
  }
  .our-journey .-c7-i2 .picture {
    max-width: 85px;
    margin-bottom: 10px;
  }
  .our-journey .-c8-i1 .picture.-first {
    max-width: 200px;
    margin-bottom: 10px;
  }
  .our-journey .-c8-i1 .picture-wr {
    margin-right: 70px;
  }
  .our-journey .-c8-i1 .picture-wr .picture {
    margin: 0;
    position: relative;
  }
  .our-journey .-c8-i1 .picture-wr .picture:nth-child(2) {
    right: -35px;
  }
  .our-journey .-c8-i1 .picture-wr .picture:nth-child(3) {
    right: -70px;
  }
  .our-journey .-c8-i1 .text {
    margin-bottom: 10px;
  }
  .our-journey .-c8-i2 .picture.-first {
    max-width: 150px;
  }
  .our-journey .-c8-i2 .picture.-brd {
    width: 85px;
    height: 85px;
  }
  .our-journey .-c8-i3 .title {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 5px;
  }
  .our-journey .-c9-i1 {
    width: 100%;
    max-width: 340px;
  }
  .our-journey .-c9-i1 .title {
    font-size: 36px;
  }
  .our-journey .-c9-i1 .picture.-first {
    max-width: 120px;
    margin-bottom: 15px;
  }
  .our-journey .-c9-i1 .text {
    margin-bottom: 15px;
  }
  .our-journey .-c9-i1 .picture-wr .picture {
    max-width: 100px;
  }
  .our-journey .-c9-i1 .picture-wr .picture:not(:last-child) {
    margin-left: 10px;
  }
  .our-journey .-c9-i2 .title {
    font-size: 36px;
  }
  .our-journey .-c9-i3 .picture {
    max-width: 240px;
  }
  .our-journey .tbc-wr {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .our-journey .tbc-wr .year {
    font-size: 20px;
  }
  .our-journey .tbc-text {
    font-size: 20px;
  }
  .our-journey .show-more {
    width: 100%;
    max-width: 338px;
    margin: 0 auto;
    display: flex;
    border-color: #000;
    min-height: 60px;
    font-weight: 800;
    font-size: 18px;
    background: #F3F3F3;
  }
}
@media all and (max-width: 425px) {
  .our-journey .top-title {
    font-size: 11.2941176471vw;
  }
}

@media all and (max-width: 1440px) and (min-width: 769px) {
  .our-journey .journey-wr1 {
    padding: 0 60px 100px 90px;
  }
}
.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;
  }
}
