@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%);
}

.contact-us .title-s1 {
  font-size: 96px;
  font-weight: 800;
}
.contact-us .title-s1 strong {
  position: relative;
  display: inline-block;
  letter-spacing: 0.015em;
}
.contact-us .title-s1 strong::after {
  content: "";
  position: absolute;
  left: -16px;
  top: -20px;
  right: -16px;
  bottom: -11px;
  display: block;
  background-image: url("https://qa.wemake.co.il/mod/contact-us/img/contact-us-text-bg.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  z-index: -1;
  transform: rotate(-0.734deg);
}
.contact-us .title-s2 {
  font-size: 24px;
  font-weight: 800;
}
.contact-us .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;
}
.contact-us .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;
}
.contact-us .running-line .running_line_inner div {
  margin-right: 8px;
}
@keyframes running {
  0% {
    transform: translate(-100%, 0);
  }
  50% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(100%, 0);
  }
}

.contact-us-first {
  position: relative;
  z-index: 1;
}
.contact-us-first .contact-us-line {
  position: absolute;
  width: 828px;
  height: 666px;
  right: 0;
  top: 236px;
  background-image: url("https://qa.wemake.co.il/mod/contact-us/img/contact-us-line.svg");
  background-position: top right;
  background-repeat: no-repeat;
  background-size: contain;
}
.contact-us-first .inner {
  padding-top: 100px;
  padding-bottom: 160px;
  max-width: 1280px;
}
.contact-us-first .sub-title {
  font-size: 18px;
  font-weight: 600;
  padding-right: 7px;
}
.contact-us-first .sub-title:before {
  width: 25px;
  height: 2px;
  margin: -6px 0 0 11px;
}
.contact-us-first .top-title {
  margin-bottom: 115px;
  max-width: 1080px;
  line-height: 96px;
  margin-top: 3px;
}
.contact-us-first [class*=-bc-] {
  color: #fff;
}
.contact-us-first [class*=-bc-]:before {
  top: 0;
  right: 0;
  left: -3px;
  transform: rotate(-0.9deg);
}
@media all and (min-width: 1651px) {
  .contact-us-first [class*=-bc-]:before {
    bottom: 15px;
  }
}
.contact-us-first .middle-wr {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.contact-us-first .row {
  width: 100%;
  max-width: 706px;
  margin-left: 34px;
}
.contact-us-first .row-form {
  margin: 3px 0 119px 38px;
}
.contact-us-first .form-title {
  margin-bottom: 2px;
}
.contact-us-first .form-text {
  margin-bottom: 32px;
  margin-right: 4px;
  font-weight: 300;
  font-size: 22px;
}
.contact-us-first .st-form {
  margin-right: 3px;
}
.contact-us-first .st-form .row-fields {
  margin-bottom: 35px;
}
.contact-us-first .st-form .row-fields .field {
  max-width: 253px;
}
.contact-us-first .st-form .row-fields .field:not(:last-child) {
  margin-left: 23px;
  max-width: 204px;
}
.contact-us-first .st-form .field.-last {
  margin-bottom: 20px;
}
.contact-us-first .st-form .field .fl-label,
.contact-us-first .st-form .field input:not([type=submit]),
.contact-us-first .st-form .field textarea,
.contact-us-first .st-form .field select {
  color: #fff;
  font-size: 20px;
  height: 38px;
}
.contact-us-first .st-form .field input:not([type=submit]), .contact-us-first .st-form .field textarea, .contact-us-first .st-form .field select {
  border-bottom-color: #fff;
}
.contact-us-first .st-form .checkbox-wr {
  margin-bottom: 15px;
  margin-right: 8px;
}
.contact-us-first .st-form .checkbox-wr .checkbox {
  letter-spacing: 0.005em;
  font-size: 20px;
}
.contact-us-first .st-form .checkbox-wr .checkbox::before {
  top: 50%;
  transform: translateY(-50%);
}
.contact-us-first .st-form .checkbox-wr .checkbox::after {
  margin: 0px 3px 0 0;
  top: 50%;
  transform: translateY(-50%);
}
.contact-us-first .st-form .button-wr {
  display: flex;
  justify-content: flex-end;
  position: relative;
  left: -9px;
}
.contact-us-first .st-form .submit-bt {
  position: relative;
  z-index: 1;
  font-weight: 800;
  font-size: 20px;
  padding: 10px 20px 10px 52px;
  display: flex;
  align-items: center;
  height: 45px;
  color: #fff;
}
.contact-us-first .st-form .submit-bt:hover:before {
  width: 100%;
  background: #0063ff;
  border-radius: 25px;
}
.contact-us-first .st-form .submit-bt:before, .contact-us-first .st-form .submit-bt:after {
  display: block;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
}
.contact-us-first .st-form .submit-bt:before {
  content: "";
  background: #116FFF;
  border-radius: 25px;
  width: 45px;
  height: 45px;
  transition: all 0.5s ease-in-out;
}
.contact-us-first .st-form .submit-bt:after {
  content: "+";
  margin: 0;
  top: 22.5px;
  left: 22.5px;
  transform: translate(-50%, -50%);
}
.contact-us-first .social-title {
  margin-bottom: 42px;
}
.contact-us-first .social-buttons {
  display: flex;
  margin-right: 2px;
}
.contact-us-first .social-button {
  width: 100%;
  max-width: 345px;
  height: 86px;
  font-size: 24px;
  transition: all 0.3s linear;
}
.contact-us-first .social-button:hover {
  background: #fff;
  color: #000;
}
.contact-us-first .social-button:not(:last-child) {
  margin-left: 8px;
}
.contact-us-first .shine-eff {
  bottom: 510px;
  right: 50%;
  margin: 0 -1300px 0 0;
  width: 1212px;
  transform: rotate(120deg);
}
@media all and (min-width: 769px) {
  .contact-us-first .shine-eff.-an-rotate {
    animation: shine-rotate-small 30s infinite linear;
  }
}
.contact-us-first .shine-eff:before, .contact-us-first .shine-eff:after {
  width: 900px;
  height: 900px;
}

.contact-us-second {
  position: relative;
  z-index: 1;
}
.contact-us-second .inner {
  max-width: 1950px;
  display: flex;
  align-items: stretch;
  margin-bottom: 97px;
}
.contact-us-second .picture {
  min-width: 28%;
  max-width: 28%;
  margin-left: 69px;
  direction: ltr;
}
.contact-us-second .picture img {
  min-width: 640px;
  min-height: 100%;
  border-radius: 10px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.contact-us-second .contacts {
  display: flex;
  flex-direction: row;
  align-content: stretch;
  flex-wrap: wrap;
  width: 100%;
}
.contact-us-second .title {
  margin-bottom: 0px;
}
.contact-us-second .rows {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
}
.contact-us-second .row {
  display: flex;
  align-items: center;
  flex-grow: 1;
  padding-bottom: 15px;
  border-bottom: 1px solid #fff;
}
.contact-us-second .row:first-child {
  padding-bottom: 26px;
  margin-bottom: 61px;
}
.contact-us-second .row:first-child .row-title {
  margin-bottom: 6px;
  margin-left: 8px;
}
.contact-us-second .row:not(:first-child) {
  padding-bottom: 53px;
}
.contact-us-second .row:nth-child(2) {
  margin-bottom: 62px;
}
.contact-us-second .row-title {
  min-width: 90px;
  margin: 30px 0 0 10px;
}
.contact-us-second .row-value {
  font-size: 80px;
  font-weight: 800;
}
.contact-us-second .marq-wr.-style1 .marq {
  margin-top: 8px;
}

@media all and (max-width: 768px) {
  .contact-us .inner {
    padding-right: 17px;
    padding-left: 17px;
  }
  .contact-us .title-s1 {
    font-size: 9.4117647059vw;
    line-height: 9.4117647059vw;
  }
  .contact-us .title-s1 strong {
    position: relative;
    display: inline-block;
  }
  .contact-us .title-s1 strong::after {
    content: "";
    position: absolute;
    left: -3px;
    top: -6px;
    right: -3px;
    bottom: -2px;
    display: block;
    background-image: url("https://qa.wemake.co.il/mod/contact-us/img/contact-us-header-text-bg.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
  }
  .contact-us .contact-us-first .inner {
    padding-bottom: 49px;
    padding-top: 56px;
  }
  .contact-us .contact-us-first .top-title-wrap {
    position: relative;
  }
  .contact-us .contact-us-first .top-title {
    padding-bottom: 118px;
    margin: 0;
  }
  .contact-us .contact-us-first .sub-title {
    font-size: 4.2352941176vw;
    font-weight: 600;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    font-size: 3.7647058824vw;
    line-height: 3.7647058824vw;
    padding-right: 0;
    white-space: nowrap;
  }
  .contact-us .contact-us-first .sub-title.sub-title:before {
    display: inline-block;
    position: relative;
    width: 25px;
    height: 1px;
    top: 0;
    left: 0;
    margin: 0 0 0 18px;
  }
  .contact-us .contact-us-first .contact-us-line {
    background-image: url("https://qa.wemake.co.il/mod/contact-us/img/contact-us-line-mob.svg");
    width: 411px;
    height: 323px;
    left: -15px;
    right: auto;
    top: auto;
    bottom: 4px;
    z-index: -1;
  }
  .contact-us .contact-us-first .middle-wr {
    position: relative;
  }
  .contact-us .contact-us-first .contact-us-scroll-down {
    position: absolute;
    border-radius: 61px;
    width: 61px;
    height: 61px;
    left: 0;
    top: -68px;
    background: linear-gradient(180deg, #6F10BA 0%, #2C51D7 100%);
  }
  .contact-us .contact-us-first .contact-us-scroll-down picture {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block;
  }
  .contact-us .contact-us-first .row {
    margin: 0;
  }
  .contact-us .contact-us-first .row-form {
    margin: 0 auto;
  }
  .contact-us .contact-us-first .st-form .row-fields {
    flex-wrap: wrap;
    margin-bottom: 0;
  }
  .contact-us .contact-us-first .st-form .row-fields .field {
    margin-left: 0;
    margin-bottom: 33px;
    max-width: 100%;
  }
  .contact-us .contact-us-first .st-form .row-fields .field:not(:last-child) {
    max-width: 100%;
  }
  .contact-us .contact-us-first .st-form .checkbox-wr {
    margin-bottom: 24px;
    margin-right: 0;
  }
  .contact-us .contact-us-first .st-form .checkbox-wr .checkbox {
    font-size: 18px;
  }
  .contact-us .contact-us-first .st-form .button-wr {
    left: 0;
    margin-bottom: 65px;
  }
  .contact-us .contact-us-first .st-form .submit-bt {
    border: 1px solid;
    border-color: transparent;
  }
  .contact-us .contact-us-first .st-form .submit-bt:before {
    width: 100%;
    background: #0063ff;
    border-radius: 25px;
  }
  .contact-us .contact-us-first .st-form .submit-bt:hover {
    border-color: #fff;
    border-radius: 25px;
  }
  .contact-us .contact-us-first .st-form .submit-bt:hover::before {
    background: transparent;
  }
  .contact-us .contact-us-first .form-text {
    font-weight: 300;
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 0;
  }
  .contact-us .contact-us-first .social-title {
    margin-bottom: 14px;
  }
  .contact-us .contact-us-first .social-buttons {
    flex-wrap: wrap;
  }
  .contact-us .contact-us-first .social-button {
    font-size: 4.2352941176vw;
    line-height: 4.2352941176vw;
    width: 100%;
    height: 71px;
    max-width: 100%;
  }
  .contact-us .contact-us-first .social-button:not(:last-child) {
    margin: 0 0 3.2941176471vw 0;
    background-color: #fff;
    color: #000;
  }
  .contact-us .contact-us-first .social-button:not(:last-child):hover {
    background-color: #000;
    color: #fff;
  }
  .contact-us .contact-us-first .shine-eff.-an-rotate {
    animation: shine-rotate-small 30s infinite linear;
    top: 300px;
    width: 420px;
    margin: 0 -330px 0 0;
    z-index: -1;
  }
  .contact-us .contact-us-first .shine-eff.-an-rotate::before, .contact-us .contact-us-first .shine-eff.-an-rotate::after {
    width: 250px;
    height: 250px;
  }
  .contact-us .contact-us-second .inner {
    flex-wrap: wrap;
    padding: 0;
    justify-content: center;
    margin-bottom: 48px;
  }
  .contact-us .contact-us-second .picture {
    min-width: 0;
    max-width: 100%;
    margin-left: 0;
    margin-bottom: 11.2941176471vw;
    height: 310px;
    overflow: hidden;
    display: flex;
    align-items: center;
  }
  .contact-us .contact-us-second .picture img {
    min-width: 0;
    border-radius: 0;
  }
  .contact-us .contact-us-second .contacts {
    padding: 0 17px;
  }
  .contact-us .contact-us-second .title-s2 {
    font-weight: 900;
    font-size: 3.2941176471vw;
    line-height: 3.2941176471vw;
    margin-bottom: 5.1764705882vw;
  }
  .contact-us .contact-us-second .row {
    padding-bottom: 7px;
  }
  .contact-us .contact-us-second .row:not(:last-child) {
    margin-bottom: 6.3529411765vw;
  }
  .contact-us .contact-us-second .row-title {
    min-width: 12.7058823529vw;
    margin: 11px 0 9px 10px;
  }
  .contact-us .contact-us-second .row-value {
    font-weight: 900;
    font-size: 5.6470588235vw;
    line-height: 5.6470588235vw;
  }
  .contact-us .marq-wr.-style1 {
    height: 34px;
    padding-top: 3px;
  }
  .contact-us .marq-wr.-style1 .marq {
    font-size: 14px;
    line-height: 111.5%;
    margin-top: 3px;
  }
  .contact-us .running-line {
    padding: 5px 0;
    height: 34px;
  }
  .contact-us .running-line .running_line_inner {
    font-size: 14px;
    margin-right: 4px;
    animation-duration: 50s;
  }
  .contact-us .running-line .running_line_inner div {
    margin-right: 4px;
  }
}
@media all and (max-width: 425px) {
  .contact-us .contact-us-first .contact-us-line {
    width: 96.7058823529vw;
    height: 76vw;
  }
  .contact-us .running-line {
    padding: 1.1764705882vw 0;
    height: 8vw;
  }
  .contact-us .running-line .running_line_inner {
    font-size: 3.2941176471vw;
    margin-right: 0.9411764706vw;
  }
  .contact-us .running-line .running_line_inner div {
    margin-right: 0.9411764706vw;
  }
}

@media all and (max-width: 1920px) and (min-width: 769px) {
  .contact-us-second .inner {
    margin-bottom: 5.0520833333vw;
  }
  .contact-us-second .row-title {
    margin-top: 1.5625vw;
  }
  .contact-us-second .row-value {
    font-size: 4.1145833333vw;
  }
  .contact-us-second .row:first-child {
    padding-bottom: 1.3541666667vw;
    margin-bottom: 3.1770833333vw;
  }
  .contact-us-second .row:nth-child(2) {
    margin-bottom: 3.2291666667vw;
  }
  .contact-us-second .row:not(:first-child) {
    padding-bottom: 2.7604166667vw;
  }
  .contact-us-second .picture {
    margin-left: 3.59375vw;
  }
  .contact-us-second .picture img {
    min-width: 33.3333333333vw;
  }
  .contact-us-second .md-marquee-wr {
    height: 5.8333333333vw;
    font-size: 2.1354166667vw;
  }
  .contact-us-first .inner {
    padding-top: 5.2083333333vw;
    padding-bottom: 8.3333333333vw;
  }
  .contact-us-first .contact-us-line {
    width: 828px;
    height: 34.6875vw;
    right: auto;
    left: 56.7708333333vw;
    top: 236px;
  }
  .contact-us-first .row-form {
    margin: 3px 0 6.1979166667vw 38px;
  }
  .contact-us .running-line {
    padding: 1.0416666667vw 0;
    height: 5.8333333333vw;
  }
  .contact-us .running-line .running_line_inner {
    font-size: 2.5vw;
    margin-right: 0.4166666667vw;
  }
  .contact-us .running-line .running_line_inner div {
    margin-right: 0.4166666667vw;
  }
}
@media all and (max-width: 1650px) and (min-width: 769px) {
  .contact-us .inner {
    max-width: none;
    padding-right: 80px;
    padding-left: 80px;
  }
  .contact-us .title-s1 {
    font-size: 6vw;
  }
  .contact-us .title-s1 strong::after {
    left: -1vw;
    top: -1.25vw;
    right: -1vw;
    bottom: -0.6875vw;
  }
  .contact-us-first .top-title {
    margin-bottom: 7.1875vw;
    max-width: 67.5vw;
    line-height: 6vw;
  }
}
@media all and (max-width: 1450px) and (min-width: 769px) {
  .contact-us-second .row-value {
    font-size: 3.3103448276vw;
  }
  .contact-us-second .row-title {
    font-size: 1.6551724138vw;
  }
}
@media all and (max-width: 1280px) and (min-width: 769px) {
  .contact-us-second .picture {
    min-width: 22%;
    max-width: 22%;
  }
  .contact-us-first .shine-eff {
    margin: 0 -900px 0 0;
    width: 800px;
  }
  .contact-us-first .shine-eff::before, .contact-us-first .shine-eff::after {
    width: 600px;
    height: 600px;
  }
  .contact-us .title-s2 {
    font-size: 1.6551724138vw;
  }
}
@media all and (max-width: 960px) and (min-width: 769px) {
  .contact-us-first .row {
    max-width: none;
  }
}
.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;
  }
}
