@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%);
}

.portfolio {
  position: relative;
  z-index: 2;
}
.portfolio, .portfolio a {
  color: #fff;
}
.portfolio .project_bage {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 166px;
}
.home-page .portfolio .projects {
  max-width: 1900px;
  margin: 0 auto;
}
.service-webdev-page .portfolio {
  padding-bottom: 160px;
}
.service-webdev-page .portfolio .marq-wr {
  height: 130px;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
}
.service-webdev-page .portfolio .project_bage {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 166px;
}
.portfolio .projects {
  display: flex;
  flex-wrap: wrap;
}
.portfolio .project {
  position: relative;
  display: block;
  overflow: hidden;
}
.portfolio .project:hover .project-pic {
  transform: scale(1.03);
}
.portfolio .project .project_bage {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 166px;
}
.portfolio .project-pic {
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.27, 2);
}
.portfolio .project-pic, .portfolio .project-pic img {
  width: 100%;
  height: 100%;
}
.portfolio .project-pic img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.portfolio .project-info {
  position: absolute;
  z-index: 1;
  bottom: 63px;
  right: 70px;
}
.portfolio .project-info > span {
  display: block;
}
.portfolio .project-title1 {
  font-size: 20px;
}
.portfolio .project-title2 {
  font-size: 27px;
  font-weight: 800;
  margin-bottom: 5px;
}
.portfolio .project-text {
  font-family: "PloniRegularAAA", "Helvetica", "Arial", sans-serif;
  font-size: 20px;
}
.portfolio .more-button {
  padding: 2.6% 5% 2.6% 4%;
  font-size: 36px;
  font-weight: 800;
}
.portfolio .more-button:hover .figure1 {
  filter: invert(1);
}
.portfolio .more-button .figure1 {
  content: "";
  display: block;
  width: 44px;
  height: 44px;
  margin-right: 40px;
  transform: scale(-1, 1);
  transition: all 0.3s linear;
}
.portfolio .more-button:active, .portfolio .more-button:hover, .portfolio .more-button:focus {
  outline: 0;
  outline-offset: 0;
}
.portfolio .more-button-wr {
  text-align: center;
  margin-bottom: 55px;
}
.portfolio .marq-wr {
  height: 50px;
}
.portfolio .marq-wr.mobile- {
  display: none;
}
.portfolio .marq {
  font-size: 44px;
  font-weight: 600;
}
.portfolio .marq .color {
  background: linear-gradient(180deg, #8FFF00 0%, #FAFF00 94.72%);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
          background-clip: text;
}
.portfolio .st-button.-more:after {
  margin: 0;
  top: 25px;
  left: 25px;
  transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
}
@media all and (min-width: 769px) {
  .service-facebook-page .portfolio .md-marquee-pf {
    border: 0;
    height: auto;
  }
  .service-facebook-page .portfolio .md-marquee-pf .wrap span strong:first-of-type {
    color: #116FFF;
  }
  .service-facebook-page .portfolio .marq .color {
    color: #116FFF;
    background: none;
    -webkit-text-fill-color: inherit;
    -webkit-background-clip: text;
            background-clip: text;
  }
  .service-seo-page .portfolio .md-marquee-pf {
    border: 0;
    height: auto;
  }
  .home-page .portfolio .md-marquee-pf {
    border: 0;
    height: auto;
  }
  .home-page .portfolio .md-marquee-pf .wrap strong:nth-of-type(1) {
    background: linear-gradient(180deg, #8FFF00 0%, #FAFF00 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}
.single-project .portfolio .marq-wr .marq {
  animation: marquee 20s linear infinite;
}

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

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

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

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

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

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

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

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

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

body {
  background: #000;
  font-style: normal;
}

div {
  position: relative;
}

section {
  position: relative;
}

.wrap {
  width: 96%;
  position: relative;
  margin: 0 auto;
}

.flex-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.main-container {
  position: relative;
  width: 100%;
  max-width: 2560px;
  margin: 0 auto;
  overflow: hidden;
}

.section_title_block {
  padding-bottom: 25px;
  border-bottom: 1px solid #000000;
  color: #000000;
}

.sc_title {
  font-family: "PloniRegularAAA", "sans-serif";
  font-size: 40px;
  line-height: 127.98%;
}

.sc_title_en {
  font-family: "Unbounded", "sans-serif";
  font-size: 36px;
  line-height: 127.98%;
  margin-bottom: 5px;
}

.single-project header:not(-black) {
  background-color: #fff;
}

.-mobile {
  display: none;
}

.section_1 {
  background-color: #fff;
  color: #000;
  padding: 76px 0 255px;
}
.section_1 .inner {
  max-width: 2168px;
  align-items: stretch;
}
.section_1 .sc_1_leafs {
  position: absolute;
  right: 0;
  top: 0;
  width: 720px;
}
.section_1 .sc_1_left {
  width: 1244px;
}
.section_1 .sc_1_right {
  width: 747px;
}
.section_1 .sc_1_pretitle {
  font-family: "Unbounded", "sans-serif";
  font-size: 36px;
  line-height: 127.98%;
  margin: 0 0 50px 6px;
  text-align: left;
  direction: ltr;
}
.section_1 .sc_1_pretitle strong {
  font-weight: 400;
  font-size: 44px;
  font-family: "PloniRegularAAA", "sans-serif";
}
.section_1 .sc_1_title {
  position: relative;
  font-family: "Unbounded", "sans-serif";
  font-size: 136px;
  line-height: 100.48%;
  margin-bottom: 40px;
  text-align: left;
  left: -7px;
}
.section_1 .sc_1_title br {
  display: none;
}
.section_1 .sc_1_logo_block {
  justify-content: flex-start;
  margin: 508px 0 71px 0;
}
.section_1 .sc_1_tolsoz_logo {
  height: 46px;
  background: #FFFFFF;
  border: 1px solid #000000;
  padding: 8px 28px 10px 24px;
}
.section_1 .sc_1_tolsoz_logo_img {
  width: 183px;
}
.section_1 .sc_1_tolsoz_slogan {
  height: 46px;
  background: #FFC543;
  border: 1px solid #000000;
  font-family: "Unbounded", "sans-serif";
  font-size: 33px;
  line-height: 46px;
  text-align: right;
  padding: 0 20px;
}
.section_1 .sc_1_desc_title {
  font-family: "SimplerPro", "sans-serif";
  font-size: 30px;
  line-height: 128%;
  text-align: right;
  color: #1E1E1E;
  margin: 0 20px 15px 0;
}
.section_1 .sc_1_desc_title:before {
  content: "";
  position: relative;
  display: inline-block;
  width: 21px;
  height: 21px;
  background-color: #FFC543;
  margin-left: 19px;
}
.section_1 .sc_1_desc_text {
  font-family: "PloniRegularAAA", "sans-serif";
  font-size: 24px;
  line-height: 16px;
  text-align: right;
  color: #1E1E1E;
  width: 725px;
  margin: 0 20px 20px 0;
  line-height: 128%;
}
.section_1 .sc_1_tags {
  justify-content: flex-start;
  margin-right: 20px;
}
.section_1 .sc_1_tag {
  font-family: "Unbounded", "sans-serif";
  font-size: 16px;
  line-height: 127.98%;
  text-transform: uppercase;
  color: #000000;
  padding: 7px 26px;
  margin-left: 7px;
  border: 1px solid #000000;
  border-radius: 160px;
}
.section_1 .sc_1_bottom_block {
  position: absolute;
  bottom: -9px;
  right: 20px;
}
.section_1 .sc_1_bottom_text {
  font-family: "SimplerPro", "sans-serif";
  font-weight: 900;
  font-size: 34px;
  line-height: 116%;
  width: 579px;
}
.section_1 .sc_1_bottom_scroll {
  width: 130px;
  height: 130px;
  background-color: #000;
  border-radius: 130px;
  margin-left: 38px;
}
.section_1 .sc_1_bottom_scroll:before {
  content: "";
  display: block;
  position: absolute;
  background-image: url("https://qa.wemake.co.il/mod/portfolio-tolsoz/img/sc_1_arrow.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 40px;
  width: 20px;
  animation-name: arrow_move;
  animation-duration: 1s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-timing-function: linear;
}

.section_2 {
  background-color: #fff;
  margin-top: -1px;
  padding: 6px 0 100px;
}
.section_2 .inner {
  max-width: 2168px;
}
.section_2 .sc_2_section_title {
  margin-bottom: 52px;
}
.section_2 .sc_2_frames_text {
  font-family: "Unbounded";
  font-size: 118px;
  line-height: 97.62%;
  text-transform: uppercase;
  margin: 5px 0 37px;
  text-align: left;
}
.section_2 .sc_2_frames_text .top_text {
  margin-left: 33px;
}
.section_2 .sc_2_frames_text .bottom_text {
  margin-left: 785px;
  display: inline-block;
  z-index: 1;
  direction: ltr;
}
.section_2 .sc_2_frames_text .bottom_text:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  width: 0;
  bottom: 8px;
  right: -10px;
  height: 32px;
  background: #FFB91D;
  z-index: -1;
  direction: ltr;
}
.section_2 .sc_2_frames_text.is-inview .bottom_text::before {
  animation: show_line 0.5s 1s linear forwards;
}

.section_3 {
  background-color: #fff;
  padding: 10px 0 0;
  margin-top: -1px;
  z-index: 2;
}
.section_3 .inner {
  max-width: 2168px;
  direction: ltr;
}
.section_3 .sc_3_section_title {
  margin-bottom: 105px;
  padding-bottom: 15px;
}
.section_3 .sc_3_fonts_block {
  direction: ltr;
  width: 1754px;
  padding-bottom: 15px;
  margin-bottom: 89px;
  border-bottom: 1px solid #000000;
  align-items: baseline;
  justify-content: flex-start;
}
.section_3 .sc_3_font_wrap {
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
}
.section_3 .sc_3_block_title {
  font-family: "Unbounded", "sans-serif";
  font-size: 36px;
  line-height: 127.98%;
  width: 537px;
  text-align: left;
  padding-left: 40px;
}
.section_3 .sc_3_colors_block {
  direction: ltr;
  width: 1754px;
  align-items: flex-end;
  justify-content: flex-start;
  padding-bottom: 80px;
}
.section_3 .sc_3_colors_block .sc_3_block_title {
  margin-bottom: 19px;
}
.section_3 .sc_3_font_en,
.section_3 .sc_3_font_heb {
  font-family: "Unbounded", "sans-serif";
  font-size: 36px;
  line-height: 127.98%;
  margin-right: 18px;
}
.section_3 .sc_3_font_heb {
  margin-right: 32px;
}
.section_3 .sc_3_font {
  font-family: "Heebo", "sans-serif";
  font-weight: 800;
  font-size: 144px;
  line-height: 127.98%;
  margin-right: 90px;
  top: 8px;
}
.section_3 .sc_3_font_en_upper {
  font-family: "Heebo", "sans-serif";
  font-weight: 800;
  font-size: 144px;
  line-height: 127.98%;
  margin-right: 25px;
}
.section_3 .sc_3_font_en_lower {
  font-family: "Heebo", "sans-serif";
  font-weight: 800;
  font-size: 57px;
  line-height: 127.98%;
  margin-right: 148px;
}
.section_3 .sc_3_font_heb_upper {
  height: 84px;
  margin-right: 14px;
}
.section_3 .sc_3_font_heb_lower {
  height: 39px;
}
.section_3 .sc_3_colors {
  flex-wrap: wrap;
  width: 1183px;
}
.section_3 .sc_3_color_text {
  font-family: "Unbounded", "sans-serif";
  font-size: 14px;
  line-height: 127.98%;
  position: absolute;
}
.section_3 .sc_3_color_1 {
  width: 513px;
  height: 189px;
  background: #272727;
  border: 1px solid #000000;
  border-radius: 10px;
  box-sizing: border-box;
  margin-bottom: 21px;
}
.section_3 .sc_3_color_1 .sc_3_color_text {
  color: #E6E6E6;
  bottom: 18px;
  right: 20px;
}
.section_3 .sc_3_color_2 {
  width: 319px;
  height: 189px;
  background: #AD96DC;
  border: 1px solid #000000;
  border-radius: 10px;
  box-sizing: border-box;
  margin-bottom: 21px;
}
.section_3 .sc_3_color_2 .sc_3_color_text {
  color: #E6E6E6;
  bottom: 18px;
  right: 20px;
}
.section_3 .sc_3_color_3 {
  width: 319px;
  height: 189px;
  background: #FFB91D;
  border: 1px solid #000000;
  border-radius: 10px;
  box-sizing: border-box;
  margin-bottom: 21px;
}
.section_3 .sc_3_color_3 .sc_3_color_text {
  color: #282828;
  bottom: 18px;
  right: 20px;
}
.section_3 .sc_3_color_4 {
  width: 161px;
  height: 34px;
  background: #FFB71A;
  border: 1px solid #000000;
  border-radius: 67px;
  box-sizing: border-box;
  margin-bottom: 21px;
}
.section_3 .sc_3_color_4 .sc_3_color_text {
  color: #282828;
  bottom: 6px;
  right: 15px;
}
.section_3 .sc_3_color_5 {
  width: 161px;
  height: 34px;
  background: #FF9113;
  border: 1px solid #000000;
  border-radius: 67px;
  box-sizing: border-box;
  margin-bottom: 21px;
}
.section_3 .sc_3_color_5 .sc_3_color_text {
  color: #282828;
  bottom: 6px;
  right: 15px;
}
.section_3 .sc_3_color_6 {
  width: 161px;
  height: 34px;
  background: #E3DFED;
  border: 1px solid #000000;
  border-radius: 67px;
  box-sizing: border-box;
  margin-bottom: 21px;
}
.section_3 .sc_3_color_6 .sc_3_color_text {
  color: #282828;
  bottom: 6px;
  right: 15px;
}
.section_3 .sc_3_color_7 {
  width: 654px;
  height: 34px;
  background: #F1F1F1;
  border: 1px solid #000000;
  border-radius: 67px;
  box-sizing: border-box;
  margin-bottom: 21px;
}
.section_3 .sc_3_color_7 .sc_3_color_text {
  color: #282828;
  bottom: 6px;
  right: 15px;
}
.section_3 .running-line {
  display: flex;
  align-items: center;
  justify-content: space-around;
  background-color: #000;
  padding: 10px;
  margin-bottom: 147px;
}
.section_3 .running-line .running_line_inner {
  display: flex;
  font-family: "Unbounded", "sans-serif";
  font-size: 36px;
  line-height: 127.98%;
  text-transform: uppercase;
  color: #FFFFFF;
  position: relative;
  white-space: nowrap;
  margin-right: 8px;
  animation-name: running;
  animation-duration: 30s;
  animation-iteration-count: infinite;
  animation-direction: reverse;
  animation-timing-function: linear;
}
.section_3 .running-line .running_line_inner div {
  margin-right: 8px;
}
.section_3 .home_page_block {
  padding-bottom: 478px;
}
.section_3 .home_page_block .sc_3_section_title {
  margin-bottom: 45px;
}
.section_3 .home_page_block .sc_title_en {
  padding-left: 0;
}
.section_3 .sc_title_en {
  padding-left: 40px;
}

.section_4 {
  background-color: #000;
  color: #fff;
  z-index: 3;
}
.section_4 .sc_4_leafs {
  position: absolute;
  z-index: 1;
  right: 0;
  top: 50px;
  width: 540px;
}
.section_4 .inner {
  max-width: 2168px;
  padding-top: 1044px;
  z-index: 2;
}
.section_4 .sc_4_homepage_img {
  position: absolute;
  width: 2168px;
  left: 50%;
  top: -475px;
  transform: translateX(-50%);
}
.section_4 .sc_4_section_title {
  color: #FFFFFF;
  border-bottom: none;
  margin: -2px 35px 0 42px;
}
.section_4 .sc_4_section_title .sc_title {
  margin-top: 2px;
}
.section_4 .sc_4_productpage_img {
  width: 2164px;
  margin: 0 0 129px 0;
}

.section_5 {
  background-color: #fff;
  z-index: 3;
  padding: 86px 0 68px;
}
.section_5 .inner {
  max-width: 2096px;
  z-index: 2;
}
.section_5 .sc_5_leafs_1 {
  position: absolute;
  right: 30px;
  top: 110px;
  width: 176px;
  z-index: 3;
}
.section_5 .sc_5_leafs_2 {
  position: absolute;
  left: 0px;
  top: 655px;
  width: 400px;
  z-index: 3;
}
.section_5 .sc_5_section_title.section_title_block {
  margin-bottom: 110px;
  padding-bottom: 36px;
}
.section_5 .sc_5_section_title.section_title_block .sc_title_en {
  margin-bottom: 0;
}
.section_5 .sc_5_section_title.section_title_block .sc_title {
  top: 13px;
  font-size: 36px;
  line-height: 46px;
}
.section_5 .sc_5_categorypage_img {
  width: 2300px;
  margin: 0 197px 141px 0;
  z-index: 2;
}
.section_5 .sc_5_image_1.-desktop {
  margin-right: 66px;
}
.section_5 .sc_5_section_title.promotion_block_title {
  margin-bottom: 0;
  padding-bottom: 38px;
}
.section_5 .sc_5_section_title.promotion_block_title .sc_title {
  font-size: 36px;
  line-height: 46px;
  top: 15px;
}
.section_5 .sc_5_promotion_img {
  width: 2167px;
  margin: 0 197px 0 0;
  z-index: 2;
}
.section_5 .sc_5_bottom_block {
  justify-content: flex-start;
  align-items: flex-start;
  margin: -124px auto 0 auto;
  max-width: 2560px;
}
.section_5 .sc_5_bottom_text {
  margin-top: 134px;
}
.section_5 .sc_5_bottom_title {
  width: 803px;
  font-family: "Unbounded", "sans-serif";
  font-size: 110px;
  line-height: 100.48%;
  text-align: right;
  text-transform: uppercase;
  margin-bottom: 46px;
}
.section_5 .sc_5_bottom_desc {
  width: 750px;
  font-family: "PloniRegularAAA", "sans-serif";
  font-size: 24px;
  line-height: 128%;
  color: #1E1E1E;
}
.section_5 .sc_5_bottom_img {
  width: 813px;
  margin: 0 197px 0 174px;
}

.section_6 {
  background-color: #000;
  color: #fff;
  z-index: 3;
  padding-top: 200px;
}
.section_6 .sc_6_leafs_1 {
  position: absolute;
  right: 0;
  top: 1100px;
  width: 290px;
  z-index: 3;
}
.section_6 .sc_6_leafs_2 {
  position: absolute;
  left: 0;
  top: 1970px;
  width: 518px;
  z-index: 3;
}
.section_6 .inner {
  max-width: 2096px;
  z-index: 2;
  direction: ltr;
  padding-left: 3px;
}
.section_6 .section_title_block {
  color: #fff;
  border-bottom: 1px #fff solid;
  margin-bottom: 37px;
  padding-bottom: 32px;
}
.section_6 .section_title_block .sc_title {
  top: 10px;
  font-size: 36px;
  line-height: 46px;
}
.section_6 .sc_6_account_line {
  align-items: flex-end;
  width: 1919px;
  margin-bottom: 74px;
}
.section_6 .sc_6_account_line.is-inview .sc_6_coursor {
  animation: cursor 4s 1s linear forwards;
}
.section_6 .sc_6_account_line.is-inview .sc_6_account_3 {
  opacity: 0;
  transition: all 1s 3.8s linear;
}
.section_6 .sc_6_account_title {
  font-family: "Unbounded", "sans-serif";
  font-size: 24px;
  line-height: 127.98%;
  margin-bottom: 19px;
  text-align: left;
}
.section_6 .sc_6_account_block_1 {
  width: 495px;
}
.section_6 .sc_6_account_block_2 {
  width: 495px;
}
.section_6 .sc_6_account_block_2 .image_none_active {
  z-index: 1;
}
.section_6 .sc_6_account_block_2 .image_none_active picture:first-child {
  position: relative;
  z-index: 2;
}
.section_6 .sc_6_account_block_2 .image_none_active picture:last-child {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 1;
  z-index: 1;
}
.section_6 .sc_6_account_block_3 {
  justify-content: center;
  width: 417px;
  height: 101px;
  background: #FFB91D;
  border-radius: 10px;
  font-family: "Heebo", "sans-serif";
  font-size: 24px;
  line-height: 127.98%;
  color: #000;
}
.section_6 .sc_6_account_block_4 {
  justify-content: center;
  width: 417px;
  height: 101px;
  background: #000000;
  border: 1.01858px solid #FFFFFF;
  border-radius: 10px;
  font-family: "Heebo", "sans-serif";
  font-size: 24px;
  line-height: 127.98%;
  color: #FFFFFF;
}
.section_6 .sc_6_coursor {
  position: absolute;
  width: 68px;
  top: 5.5vw;
  z-index: 10;
}
.section_6 .sc_6_img_1 {
  justify-content: flex-end;
  margin-bottom: 81px;
}
.section_6 .sc_6_image_1 {
  width: 2153px;
}
.section_6 .sc_6_img_2 {
  width: 2160px;
  margin: 0 235px 43px 0;
}
.section_6 .inner_2 {
  max-width: 2167px;
}
.section_6 .slider_section_title_block {
  padding-bottom: 52px;
  margin-bottom: 52px;
}
.section_6 .sc_6_slider_block {
  width: 2560px;
  margin: 0 auto 28px;
}
.section_6 .mobile_section_title_block {
  padding-bottom: 28px;
  margin-bottom: 0;
}
.section_6 .sc_6_mobile_frames {
  width: 2163px;
  margin: 0 auto;
  padding-bottom: 157px;
  align-items: flex-start;
}
.section_6 .sc_6_mobile_frames.is-inview .sc_6_mobile_frame {
  animation: show-frame 1s linear forwards;
}
.section_6 .sc_6_mobile_frames.is-inview .sc_6_mobile_frame.mobile_frame_3 {
  animation-delay: 0.5s;
}
.section_6 .sc_6_mobile_frames.is-inview .sc_6_mobile_frame.mobile_frame_2 {
  animation-delay: 1s;
}
.section_6 .sc_6_mobile_frames.is-inview .sc_6_mobile_frame.mobile_frame_1 {
  animation-delay: 1.5s;
}
.section_6 .sc_6_mobile_frames .sc_6_mobile_frame {
  width: 517px;
  transform: translateY(100%);
}
.section_6 .sc_6_mobile_frames .mobile_frame_1 {
  margin-top: 147px;
}
.section_6 .sc_6_mobile_frames .mobile_frame_2 {
  margin-top: 115px;
}
.section_6 .sc_6_mobile_frames .mobile_frame_3 {
  margin-top: 416px;
}
.section_6 .sc_6_mobile_frames .mobile_frame_4 {
  margin-top: 127px;
}
.section_6 .sc_6_mobile_bottom {
  position: absolute;
  right: 0;
  bottom: 147px;
  color: #fff;
  width: 715px;
  text-align: right;
}
.section_6 .sc_6_mobile_bottom_title {
  font-family: "Unbounded", "sans-serif";
  font-size: 110px;
  line-height: 100.48%;
  color: #FFFFFF;
  margin-bottom: 42px;
  text-transform: uppercase;
}
.section_6 .sc_6_mobile_bottom_text {
  font-family: "PloniRegularAAA", "sans-serif";
  font-size: 24px;
  line-height: 128%;
}

.single-project.postid-1160 .portfolio-s2 {
  padding-top: 96px;
}
.single-project.postid-1160 .portfolio-s2 .marq-wr.-style1 {
  height: 71px;
}
.single-project.postid-1160 .portfolio-s2 .marq-wr.-style1 .marq {
  font-size: 31px;
}

@keyframes running {
  0% {
    transform: translate(-100%, 0);
  }
  50% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(100%, 0);
  }
}
@keyframes scrolldown {
  0% {
    background-position: 80% 0%;
  }
  50% {
    background-position: 20% 100%;
  }
  100% {
    background-position: 80% 0%;
  }
}
@keyframes arrow_move {
  0% {
    transform: translate(-50%, -20%);
  }
  50% {
    transform: translate(-50%, -50%);
  }
  100% {
    transform: translate(-50%, -80%);
  }
}
@keyframes show_line {
  0% {
    width: 0;
  }
  100% {
    width: calc(100% + 0.39vw);
  }
}
@keyframes show-frame {
  0% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes cursor {
  0% {
    transform: translate(0);
  }
  50% {
    transform: translate(30vw, 0);
  }
  100% {
    transform: translate(30vw, -1.2vw);
  }
}
@media all and (max-width: 768px) {
  .section_1 {
    padding: 0 0 22.3529411765vw;
  }
  .section_1 .inner {
    flex-wrap: wrap;
    padding: 0;
  }
  .section_1 .sc_1_leafs {
    top: 27px;
    width: 80px;
  }
  .section_1 .sc_1_pretitle {
    font-size: 20px;
    margin: 28px 0 25px;
    padding: 0 4%;
  }
  .section_1 .sc_1_pretitle strong {
    font-size: 20px;
    font-family: "PloniRegularAAA", "sans-serif";
  }
  .section_1 .sc_1_title {
    font-size: 36px;
    margin: 0 0 16px;
    left: 0;
    padding: 0 4%;
  }
  .section_1 .sc_1_title br {
    display: block;
  }
  .section_1 .sc_1_right {
    order: 2;
    width: 100%;
    z-index: 2;
  }
  .section_1 .sc_1_left {
    order: 1;
    width: 100%;
    direction: ltr;
    z-index: 1;
  }
  .section_1 .sc_1_logo_block {
    justify-content: flex-start;
    margin: -6.8235294118vw 0 5.4117647059vw 0;
  }
  .section_1 .sc_1_tolsoz_slogan {
    font-size: 2.8235294118vw;
    order: 2;
    height: 6.8235294118vw;
    line-height: 6.8235294118vw;
    border: none;
    background-color: #FFB71A;
    padding: 0 4.2352941176vw;
  }
  .section_1 .sc_1_tolsoz_logo {
    order: 1;
    padding: 0 4.4705882353vw;
    display: flex;
    align-items: center;
    height: 6.8235294118vw;
    border: none;
  }
  .section_1 .sc_1_tolsoz_logo_img {
    width: 17.6470588235vw;
  }
  .section_1 .sc_1_tags {
    display: none;
  }
  .section_1 .sc_1_desc_block {
    margin-bottom: 46px;
  }
  .section_1 .sc_1_bottom_block {
    position: static;
    padding: 0 4%;
  }
  .section_1 .sc_1_bottom_scroll {
    min-width: 47px;
    max-width: 47px;
    max-height: 47px;
    min-height: 47px;
    background-color: #000;
    border-radius: 50%;
    margin-left: 20px;
  }
  .section_1 .sc_1_bottom_scroll::before {
    background-image: url(https://qa.wemake.co.il/mod/portfolio-tolsoz/img/sc_1_scroll_btn.svg);
    background-repeat: no-repeat;
    background-size: contain;
    width: 13px;
    height: 16px;
  }
  .section_1 .sc_1_bottom_text {
    font-size: 20px;
    width: 100%;
  }
  .section_1 .sc_1_desc_title::before {
    margin-left: 10px;
  }
  .section_1 .sc_1_desc_text {
    width: 100%;
    margin: 0;
    padding: 0 4%;
    font-size: 18px;
  }
  .section_2 {
    padding: 6px 0 56px;
  }
  .section_2 .inner {
    padding: 0 4%;
  }
  .section_2 .sc_title {
    font-size: 16px;
  }
  .section_2 .sc_title_en {
    font-size: 16px;
  }
  .section_2 .sc_2_frames_text {
    font-size: 48px;
    margin: 5px 0 39px;
  }
  .section_2 .sc_2_frames_text .top_text {
    margin-left: 0;
  }
  .section_2 .sc_2_frames_text .bottom_text {
    margin-left: 0;
  }
  .section_2 .sc_2_frames_text .bottom_text::before {
    height: 16px;
    bottom: -4px;
    right: 0;
  }
  .section_2 .section_title_block {
    padding-bottom: 5px;
  }
  .section_2 .sc_2_section_title {
    margin-bottom: 22px;
  }
  .section_2 .main-container {
    padding: 0 4%;
  }
  .section_3 {
    position: relative;
  }
  .section_3 .inner {
    padding: 0 4%;
  }
  .section_3 .sc_3_leafs_mob {
    position: absolute;
    top: 14px;
    right: 0;
    z-index: -1;
    width: 98px;
  }
  .section_3 .sc_title_en {
    font-size: 16px;
    padding-left: 0;
    text-align: left;
  }
  .section_3 .sc_title {
    font-size: 16px;
  }
  .section_3 .sc_3_section_title {
    margin-bottom: 47px;
    padding-bottom: 5px;
  }
  .section_3 .sc_3_fonts_block {
    width: 100%;
    flex-direction: column;
    padding-bottom: 24px;
    margin-bottom: 48px;
  }
  .section_3 .sc_3_block_title {
    width: 100%;
    font-size: 14px;
    padding-left: 0;
  }
  .section_3 .sc_3_font {
    top: 0;
    font-size: 32px;
    margin-right: 50px;
  }
  .section_3 .sc_3_font_en,
  .section_3 .sc_3_font_heb {
    font-size: 13px;
    margin-right: 5px;
  }
  .section_3 .sc_3_font_en_upper {
    font-size: 47px;
    margin-right: 40px;
  }
  .section_3 .sc_3_font_en_lower,
  .section_3 .sc_3_font_heb_lower {
    display: none;
  }
  .section_3 .sc_3_font_heb_upper {
    height: 33px;
  }
  .section_3 .sc_3_colors_block {
    width: 100%;
    flex-direction: column;
    padding-bottom: 11px;
  }
  .section_3 .sc_3_colors_block .sc_3_block_title {
    margin-bottom: 9px;
  }
  .section_3 .sc_3_colors {
    width: 100%;
  }
  .section_3 .sc_3_color_1,
  .section_3 .sc_3_color_2,
  .section_3 .sc_3_color_3 {
    width: 29.5572916667vw;
    height: 28.7760416667vw;
    border: 0.5px solid #000;
    margin-bottom: 0;
  }
  .section_3 .sc_3_color_1 .sc_3_color_text,
  .section_3 .sc_3_color_2 .sc_3_color_text,
  .section_3 .sc_3_color_3 .sc_3_color_text {
    right: 50%;
    transform: translateX(50%);
    font-size: 12px;
    bottom: 13px;
  }
  .section_3 .sc_3_color_4,
  .section_3 .sc_3_color_5,
  .section_3 .sc_3_color_6 {
    width: 29.296875vw;
    height: 7.5520833333vw;
    border-radius: 64px;
    border: 0.5px solid #000;
    margin-bottom: 11px;
  }
  .section_3 .sc_3_color_4 .sc_3_color_text,
  .section_3 .sc_3_color_5 .sc_3_color_text,
  .section_3 .sc_3_color_6 .sc_3_color_text {
    right: 50%;
    bottom: 50%;
    transform: translate(50%, 50%);
    font-size: 12px;
  }
  .section_3 .sc_3_color_7 {
    display: none;
  }
  .section_3 .sc_3_color_6 {
    order: 3;
  }
  .section_3 .sc_3_color_5 {
    order: 2;
  }
  .section_3 .sc_3_color_4 {
    order: 1;
  }
  .section_3 .sc_3_color_3 {
    order: 6;
  }
  .section_3 .sc_3_color_2 {
    order: 5;
  }
  .section_3 .sc_3_color_1 {
    order: 4;
  }
  .section_3 .sc_3_font_wrap {
    position: relative;
    top: -5px;
  }
  .section_3 .home_page_block {
    padding-bottom: 144px;
  }
  .section_3 .running-line {
    margin-bottom: 65px;
  }
  .section_4 .sc_4_homepage_img {
    width: 100%;
    top: -162px;
  }
  .section_4 .sc_4_leafs_mob {
    position: absolute;
    top: -30px;
    left: 0;
    width: 125px;
  }
  .section_4 .sc_title_en {
    font-size: 14px;
    margin-bottom: 0;
  }
  .section_4 .sc_title {
    font-size: 16px;
  }
  .section_4 .sc_4_productpage_img {
    width: 500px;
    position: relative;
    margin: 0 0 62px 0;
  }
  .section_4 .section_title_block {
    padding-bottom: 5px;
    border-bottom: 0.5px solid #fff;
    margin: 0 0 20px;
  }
  .section_4 .sc_4_section_title .sc_title {
    margin-top: 0;
  }
  .section_5 {
    padding: 28px 0 50px;
  }
  .section_5 .inner {
    padding: 0 4%;
  }
  .section_5 .sc_5_categorypage_img {
    width: 100%;
    margin: 0 0 60px;
    padding: 0 4% 0 0;
  }
  .section_5 .sc_5_section_title.promotion_block_title {
    padding-bottom: 8px;
  }
  .section_5 .sc_5_section_title.promotion_block_title .sc_title {
    font-size: 16px;
    top: 0;
    line-height: 127%;
  }
  .section_5 .sc_5_section_title.section_title_block .sc_title_en {
    font-size: 14px;
    text-align: left;
  }
  .section_5 .sc_5_promotion_img {
    width: 100%;
    margin: 0;
  }
  .section_5 .sc_5_bottom_block {
    margin: 0;
    flex-direction: column-reverse;
    padding: 0 4%;
  }
  .section_5 .sc_5_bottom_text {
    margin-top: 44px;
    margin-bottom: 19px;
  }
  .section_5 .sc_5_bottom_img {
    width: 100%;
    margin: 0;
  }
  .section_5 .sc_5_bottom_title {
    font-size: 48px;
    width: 100%;
    margin-bottom: 10px;
  }
  .section_5 .sc_5_bottom_desc {
    width: 100%;
    font-size: 18px;
  }
  .section_6 {
    padding-top: 30px;
  }
  .section_6 .inner {
    padding: 0 4%;
  }
  .section_6 .sc_title_en {
    font-size: 14px;
  }
  .section_6 .section_title_block {
    padding-bottom: 5px;
    margin-bottom: 40px;
  }
  .section_6 .section_title_block .sc_title {
    top: 0;
    font-size: 16px;
    line-height: 127.98%;
  }
  .section_6 .sc_6_account_line {
    width: 100%;
    flex-direction: column;
    margin-bottom: 55px;
  }
  .section_6 .sc_6_account_line.is-inview .sc_6_coursor {
    animation: cursor 4s 1s linear forwards;
  }
  .section_6 .sc_6_account_line.is-inview .sc_6_account_3 {
    opacity: 0;
    transition: all 1s 4s linear;
  }
  @keyframes cursor {
    0% {
      transform: translate(0);
    }
    50% {
      transform: translate(45vw, 0);
    }
    100% {
      transform: translate(45vw, -4vw);
    }
  }
  .section_6 .sc_6_account_title {
    font-size: 20px;
    margin-bottom: 14px;
  }
  .section_6 .sc_6_account_block_1 {
    width: 100%;
    margin-bottom: 15px;
  }
  .section_6 .sc_6_account_block_2 {
    width: 100%;
  }
  .section_6 .sc_6_account_block_3,
  .section_6 .sc_6_account_block_4 {
    display: none;
  }
  .section_6 .sc_6_coursor {
    width: 53px;
    left: 0;
    top: auto;
    bottom: -13vw;
  }
  .section_6 .sc_6_img_1 {
    margin-top: 5px;
    margin-bottom: 51px;
  }
  .section_6 .sc_6_slider_block {
    width: 100%;
    padding-right: 4%;
    margin: 0 auto 22px;
  }
  .section_6 .sc_6_mobile_frames {
    width: 100%;
    flex-wrap: wrap;
  }
  .section_6 .sc_6_mobile_frames .sc_6_mobile_frame {
    width: calc(50% - 6.5px);
  }
  .section_6 .sc_6_mobile_frames .sc_6_mobile_frame img {
    min-width: 254px;
    position: relative;
  }
  .section_6 .sc_6_mobile_frames .sc_6_mobile_1 {
    right: -22%;
  }
  .section_6 .sc_6_mobile_frames .mobile_frame_1 {
    margin-top: -60px;
    order: 3;
  }
  .section_6 .sc_6_mobile_frames .mobile_frame_2 {
    margin-top: 30px;
    order: 4;
  }
  .section_6 .sc_6_mobile_frames .mobile_frame_3 {
    margin-top: 35px;
    order: 1;
    margin-left: 13px;
  }
  .section_6 .sc_6_mobile_frames .sc_6_mobile_3 {
    right: -22%;
  }
  .section_6 .sc_6_mobile_frames .mobile_frame_4 {
    order: 2;
    margin-top: 125px;
  }
  .section_6 .sc_6_mobile_frames .sc_6_mobile_bottom {
    right: 4%;
    width: 89%;
    bottom: 57px;
  }
  .section_6 .sc_6_mobile_frames .sc_6_mobile_bottom_title {
    font-size: 38px;
    margin-bottom: 30px;
  }
  .section_6 .sc_6_mobile_frames .sc_6_mobile_bottom_text {
    font-size: 18px;
  }
  .single-project.postid-1160 .portfolio-s2 {
    padding-top: 36px;
  }
  .single-project.postid-1160 .portfolio-s2 .marq-wr.-style1 {
    height: 34px;
    border: 0;
  }
  .single-project.postid-1160 .portfolio-s2 .marq-wr.-style1 .marq {
    font-size: 14px;
  }
}
@media all and (max-width: 768px) and (min-width: 425px) {
  .section_3 .running-line {
    padding: 0.9114583333vw 0 0.7161458333vw;
  }
  .section_3 .running-line .running_line_inner {
    font-size: 2.34375vw;
  }
  .section_4 .inner {
    padding: 42.4479166667vw 4% 0;
  }
}
@media all and (max-width: 768px) and (min-width: 540px) {
  .section_4 .sc_4_productpage_img {
    width: 100%;
    margin: 0 auto 62px;
  }
}
@media all and (max-width: 425px) {
  .section_1 .sc_1_title {
    font-size: 8.4705882353vw;
  }
  .section_1 .sc_1_desc_title {
    font-size: 7.0588235294vw;
  }
  .section_1 .sc_1_desc_title::before {
    width: 4.9411764706vw;
    height: 4.9411764706vw;
  }
  .section_1 .sc_1_bottom_scroll {
    min-width: 11.0588235294vw;
    max-width: 11.0588235294vw;
    max-height: 11.0588235294vw;
    min-height: 11.0588235294vw;
  }
  .section_1 .sc_1_bottom_text {
    font-size: 4.7058823529vw;
  }
  .section_2 .sc_2_frames_text {
    font-size: 11.2941176471vw;
  }
  .section_3 .sc_3_font {
    font-size: 7.5294117647vw;
  }
  .section_3 .sc_3_font_en_upper {
    font-size: 11.0588235294vw;
  }
  .section_3 .sc_3_font_heb_upper {
    height: 7.7647058824vw;
  }
  .section_3 .sc_3_leafs_mob {
    width: 23.0588235294vw;
  }
  .section_3 .sc_3_color_text {
    font-size: 3.2941176471vw;
  }
  .section_3 .running-line {
    padding: 4px 0 3px;
    margin-bottom: 65px;
  }
  .section_3 .running-line .running_line_inner {
    font-size: 10px;
  }
  .section_4 .inner {
    padding: 180px 4% 0;
  }
  .section_4 .sc_4_productpage_img {
    width: 117.6470588235vw;
    margin: 0 0 14.5882352941vw 0;
  }
  .section_5 .sc_5_bottom_title {
    font-size: 11.2941176471vw;
  }
  .section_6 .sc_6_mobile_frames .sc_6_mobile_bottom_title {
    font-size: 8.9411764706vw;
  }
  .section_6 .sc_6_mobile_frames .sc_6_mobile_bottom_text {
    font-size: 4.2352941176vw;
  }
  .section_6 .sc_6_coursor {
    width: 12.4705882353vw;
  }
  .section_6 .sc_6_mobile_frames .sc_6_mobile_frame img {
    min-width: 59.7647058824vw;
  }
  .section_6 .sc_6_mobile_frames .sc_6_mobile_bottom {
    bottom: 13.4117647059vw;
  }
}
@media all and (max-width: 1560px) and (min-width: 769px) {
  .single-project.postid-1160 .portfolio-s2 .marq-wr.-style1 {
    height: 4.5512820513vw;
  }
  .single-project.postid-1160 .portfolio-s2 .marq-wr.-style1 .marq {
    font-size: 1.9871794872vw;
  }
}
@media all and (max-width: 2499px) and (min-width: 769px) {
  .inner {
    padding-right: 2%;
    padding-left: 2%;
  }
  .section_title_block {
    padding-bottom: 0.859375vw;
  }
  .sc_title {
    font-size: 1.5625vw;
  }
  .sc_title_en {
    font-size: 1.40625vw;
    margin-bottom: 0.1953125vw;
  }
  .section_1 {
    padding: 2.96875vw 0 9.9609375vw;
  }
  .section_1 .sc_1_leafs {
    width: 28.125vw;
  }
  .section_1 .sc_1_left {
    width: 48.59375vw;
  }
  .section_1 .sc_1_right {
    width: 29.1796875vw;
  }
  .section_1 .sc_1_pretitle {
    font-size: 1.40625vw;
    margin: 0 0 1.953125vw 0.234375vw;
  }
  .section_1 .sc_1_pretitle strong {
    font-size: 1.71875vw;
  }
  .section_1 .sc_1_title {
    font-size: 5.3125vw;
    margin-bottom: 1.5625vw;
    left: -0.2734375vw;
  }
  .section_1 .sc_1_logo_block {
    margin: 19.84375vw 0 2.7734375vw 0;
  }
  .section_1 .sc_1_tolsoz_logo {
    height: 1.796875vw;
    padding: 0.3125vw 1.09375vw 0.390625vw 0.9375vw;
  }
  .section_1 .sc_1_tolsoz_logo_img {
    width: 7.1484375vw;
  }
  .section_1 .sc_1_tolsoz_slogan {
    height: 1.796875vw;
    font-size: 1.2890625vw;
    line-height: 1.796875vw;
    padding: 0 0.78125vw;
  }
  .section_1 .sc_1_desc_title {
    font-size: 1.171875vw;
    margin: 0 0.78125vw 0.46875vw 0;
  }
  .section_1 .sc_1_desc_title:before {
    width: 0.8203125vw;
    height: 0.8203125vw;
    margin-left: 0.7421875vw;
  }
  .section_1 .sc_1_desc_text {
    font-size: 0.9375vw;
    width: 28.3203125vw;
    margin: 0 0.78125vw 0.9765625vw 0;
  }
  .section_1 .sc_1_tags {
    margin-right: 0.78125vw;
  }
  .section_1 .sc_1_tag {
    font-size: 0.625vw;
    padding: 0.2734375vw 1.015625vw;
    margin-left: 0.2734375vw;
    border-radius: 6.25vw;
  }
  .section_1 .sc_1_bottom_block {
    bottom: -0.3515625vw;
    right: 0.78125vw;
  }
  .section_1 .sc_1_bottom_text {
    font-size: 1.328125vw;
    width: 22.6171875vw;
  }
  .section_1 .sc_1_bottom_scroll {
    width: 5.078125vw;
    height: 5.078125vw;
    border-radius: 5.078125vw;
    margin-left: 1.484375vw;
  }
  .section_1 .sc_1_bottom_scroll:before {
    height: 1.5625vw;
  }
  .section_2 {
    padding: 0.234375vw 0 3.90625vw;
  }
  .section_2 .sc_2_section_title {
    margin-bottom: 2.03125vw;
  }
  .section_2 .sc_2_frames_text {
    font-size: 4.609375vw;
    margin: 0.1953125vw 0 1.4453125vw;
  }
  .section_2 .sc_2_frames_text .top_text {
    margin-left: 1.2890625vw;
  }
  .section_2 .sc_2_frames_text .bottom_text {
    margin-left: 30.6640625vw;
  }
  .section_2 .sc_2_frames_text .bottom_text:before {
    bottom: 0.3125vw;
    right: -0.390625vw;
    height: 1.25vw;
  }
  .section_3 {
    padding: 0.234375vw 0 0;
  }
  .section_3 .sc_3_section_title {
    margin-bottom: 4.1015625vw;
  }
  .section_3 .sc_3_fonts_block {
    width: 68.515625vw;
    padding-bottom: 0.5859375vw;
    margin-bottom: 3.4765625vw;
  }
  .section_3 .sc_3_block_title {
    font-size: 1.40625vw;
    width: 20.9765625vw;
    padding-left: 1.5625vw;
  }
  .section_3 .sc_3_colors_block {
    width: 68.515625vw;
    padding-bottom: 3.125vw;
  }
  .section_3 .sc_3_colors_block .sc_3_block_title {
    margin-bottom: 0.7421875vw;
  }
  .section_3 .sc_3_font_en,
  .section_3 .sc_3_font_heb {
    font-size: 1.40625vw;
    margin-right: 0.703125vw;
  }
  .section_3 .sc_3_font_heb {
    margin-right: 1.25vw;
  }
  .section_3 .sc_3_font {
    font-size: 5.625vw;
    margin-right: 3.515625vw;
    top: 0.3125vw;
  }
  .section_3 .sc_3_font_en_upper {
    font-size: 5.625vw;
    margin-right: 0.9765625vw;
  }
  .section_3 .sc_3_font_en_lower {
    font-size: 2.2265625vw;
    margin-right: 5.78125vw;
  }
  .section_3 .sc_3_font_heb_upper {
    height: 3.28125vw;
    margin-right: 0.546875vw;
  }
  .section_3 .sc_3_font_heb_lower {
    height: 1.5234375vw;
  }
  .section_3 .sc_3_colors {
    width: 46.2109375vw;
  }
  .section_3 .sc_3_color_text {
    font-size: 0.546875vw;
  }
  .section_3 .sc_3_color_1 {
    width: 20.0390625vw;
    height: 7.3828125vw;
    border-radius: 0.390625vw;
    margin-bottom: 0.8203125vw;
  }
  .section_3 .sc_3_color_1 .sc_3_color_text {
    bottom: 0.703125vw;
    right: 0.78125vw;
  }
  .section_3 .sc_3_color_2 {
    width: 12.4609375vw;
    height: 7.3828125vw;
    border-radius: 0.390625vw;
    margin-bottom: 0.8203125vw;
  }
  .section_3 .sc_3_color_2 .sc_3_color_text {
    bottom: 0.703125vw;
    right: 0.78125vw;
  }
  .section_3 .sc_3_color_3 {
    width: 12.4609375vw;
    height: 7.3828125vw;
    border-radius: 0.390625vw;
    margin-bottom: 0.8203125vw;
  }
  .section_3 .sc_3_color_3 .sc_3_color_text {
    bottom: 0.703125vw;
    right: 0.78125vw;
  }
  .section_3 .sc_3_color_4 {
    width: 6.2890625vw;
    height: 1.328125vw;
    border-radius: 2.6171875vw;
    margin-bottom: 0.8203125vw;
  }
  .section_3 .sc_3_color_4 .sc_3_color_text {
    bottom: 0.234375vw;
    right: 0.5859375vw;
  }
  .section_3 .sc_3_color_5 {
    width: 6.2890625vw;
    height: 1.328125vw;
    border-radius: 2.6171875vw;
    margin-bottom: 0.8203125vw;
  }
  .section_3 .sc_3_color_5 .sc_3_color_text {
    bottom: 0.234375vw;
    right: 0.5859375vw;
  }
  .section_3 .sc_3_color_6 {
    width: 6.2890625vw;
    height: 1.328125vw;
    border-radius: 2.6171875vw;
    margin-bottom: 0.8203125vw;
  }
  .section_3 .sc_3_color_6 .sc_3_color_text {
    bottom: 0.234375vw;
    right: 0.5859375vw;
  }
  .section_3 .sc_3_color_7 {
    width: 25.546875vw;
    height: 1.328125vw;
    border-radius: 2.6171875vw;
    margin-bottom: 0.8203125vw;
  }
  .section_3 .sc_3_color_7 .sc_3_color_text {
    bottom: 0.234375vw;
    right: 0.5859375vw;
  }
  .section_3 .running-line {
    padding: 0.390625vw;
    margin-bottom: 5.390625vw;
  }
  .section_3 .running-line .running_line_inner {
    font-size: 1.40625vw;
    margin-right: 0.3125vw;
  }
  .section_3 .running-line .running_line_inner div {
    margin-right: 0.3125vw;
  }
  .section_3 .home_page_block {
    padding-bottom: 18.671875vw;
  }
  .section_3 .home_page_block .sc_3_section_title {
    margin-bottom: 1.7578125vw;
  }
  .section_4 .sc_4_leafs {
    top: 1.953125vw;
    width: 21.09375vw;
  }
  .section_4 .inner {
    max-width: 84.6875vw;
    padding-top: 40.78125vw;
  }
  .section_4 .sc_4_homepage_img {
    width: 84.6875vw;
    top: -18.5546875vw;
  }
  .section_4 .sc_4_section_title {
    margin: -0.078125vw 1.3671875vw 0 1.640625vw;
  }
  .section_4 .sc_4_section_title .sc_title {
    margin-top: 0.078125vw;
  }
  .section_4 .sc_4_productpage_img {
    width: 84.53125vw;
    margin: 0 0 5.0390625vw 0;
  }
  .section_5 {
    padding: 3.359375vw 0 2.8515625vw;
  }
  .section_5 .sc_5_leafs_1 {
    right: 2.4609375vw;
    top: 4.296875vw;
    width: 6.875vw;
  }
  .section_5 .sc_5_leafs_2 {
    top: 25.5859375vw;
    width: 13.4765625vw;
  }
  .section_5 .sc_5_section_title.section_title_block {
    margin-bottom: 4.296875vw;
    padding-bottom: 1.40625vw;
  }
  .section_5 .sc_5_section_title.section_title_block .sc_title {
    top: 0.5078125vw;
    font-size: 1.40625vw;
    line-height: 1.796875vw;
  }
  .section_5 .sc_5_categorypage_img {
    width: 89.84375vw;
    margin: 0 7.6953125vw 5.5078125vw 0;
  }
  .section_5 .sc_5_section_title.promotion_block_title {
    padding-bottom: 1.484375vw;
  }
  .section_5 .sc_5_section_title.promotion_block_title .sc_title {
    font-size: 1.40625vw;
    line-height: 1.796875vw;
    top: 0.1171875vw;
  }
  .section_5 .sc_5_promotion_img {
    width: 84.6484375vw;
    margin: 0 7.6953125vw 0 0;
  }
  .section_5 .sc_5_bottom_block {
    margin: -4.84375vw auto 0 auto;
    max-width: 100vw;
  }
  .section_5 .sc_5_bottom_text {
    margin-top: 5.234375vw;
  }
  .section_5 .sc_5_bottom_title {
    width: 31.3671875vw;
    font-size: 4.296875vw;
    margin-bottom: 1.796875vw;
  }
  .section_5 .sc_5_bottom_desc {
    width: 29.296875vw;
    font-size: 0.9375vw;
  }
  .section_5 .sc_5_bottom_img {
    width: 31.7578125vw;
    margin: 0 7.6953125vw 0 6.796875vw;
  }
  .section_6 {
    padding-top: 7.8125vw;
  }
  .section_6 .sc_6_leafs_1 {
    top: 42.96875vw;
    width: 11.328125vw;
  }
  .section_6 .sc_6_leafs_2 {
    top: 76.953125vw;
    width: 20.234375vw;
  }
  .section_6 .inner {
    padding-left: 2%;
    padding-right: 2%;
  }
  .section_6 .section_title_block {
    margin-bottom: 1.4453125vw;
    padding-bottom: 1.25vw;
  }
  .section_6 .section_title_block .sc_title {
    top: 0.390625vw;
    font-size: 1.40625vw;
    line-height: 1.796875vw;
  }
  .section_6 .sc_6_account_line {
    width: 74.9609375vw;
    margin-bottom: 2.890625vw;
  }
  .section_6 .sc_6_account_title {
    font-size: 0.9375vw;
    margin-bottom: 0.7421875vw;
  }
  .section_6 .sc_6_account_block_1 {
    width: 19.3359375vw;
  }
  .section_6 .sc_6_account_block_2 {
    width: 19.3359375vw;
  }
  .section_6 .sc_6_account_block_3 {
    width: 16.2890625vw;
    height: 3.9453125vw;
    border-radius: 0.390625vw;
    font-size: 0.9375vw;
  }
  .section_6 .sc_6_account_block_4 {
    width: 16.2890625vw;
    height: 3.9453125vw;
    border-radius: 0.390625vw;
    font-size: 0.9375vw;
  }
  .section_6 .sc_6_coursor {
    width: 2.65625vw;
  }
  .section_6 .sc_6_img_1 {
    margin-bottom: 3.1640625vw;
  }
  .section_6 .sc_6_image_1 {
    width: 84.1015625vw;
  }
  .section_6 .sc_6_img_2 {
    width: 84.375vw;
    margin: 0 9.1796875vw 1.6796875vw 0;
  }
  .section_6 .inner_2 {
    max-width: 84.6484375vw;
  }
  .section_6 .slider_section_title_block {
    padding-bottom: 2.03125vw;
    margin-bottom: 2.03125vw;
  }
  .section_6 .sc_6_slider_block {
    width: 100vw;
    margin: 0 auto 1.09375vw;
  }
  .section_6 .mobile_section_title_block {
    padding-bottom: 1.09375vw;
  }
  .section_6 .sc_6_mobile_frames {
    width: 84.4921875vw;
    padding-bottom: 6.1328125vw;
  }
  .section_6 .sc_6_mobile_frames .sc_6_mobile_frame {
    width: 20.1953125vw;
  }
  .section_6 .sc_6_mobile_frames .mobile_frame_1 {
    margin-top: 5.7421875vw;
  }
  .section_6 .sc_6_mobile_frames .mobile_frame_2 {
    margin-top: 4.4921875vw;
  }
  .section_6 .sc_6_mobile_frames .mobile_frame_3 {
    margin-top: 16.25vw;
  }
  .section_6 .sc_6_mobile_frames .mobile_frame_4 {
    margin-top: 4.9609375vw;
  }
  .section_6 .sc_6_mobile_bottom {
    right: 7.6953125vw;
    bottom: 5.7421875vw;
    width: 27.9296875vw;
  }
  .section_6 .sc_6_mobile_bottom_title {
    font-size: 4.296875vw;
    margin-bottom: 1.640625vw;
  }
  .section_6 .sc_6_mobile_bottom_text {
    font-size: 0.9375vw;
  }
}
@media all and (min-width: 2560px) {
  .section_5 .sc_5_promotion_img {
    margin: 0 auto;
  }
  .section_5 .sc_5_categorypage_img {
    margin: 0 auto 141px auto;
  }
}
