@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: #FBF9F5;
  font-style: normal;
}

section {
  position: relative;
}

.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;
}

.class_btn {
  cursor: pointer;
}

.section_1 {
  position: relative;
  padding: 56px 303px 101px 282px;
  font-family: "PloniRegularAAA", "sans-serif";
  color: #3A302A;
}
.section_1 .inner {
  max-width: 100%;
  position: relative;
}
.section_1 .sc_1_pretitle {
  font-size: 24px;
  line-height: 127.98%;
  text-transform: uppercase;
  margin-bottom: 28px;
  text-align: left;
}
.section_1 .sc_1_title_block {
  align-items: flex-end;
}
.section_1 .sc_1_title {
  font-family: "PloniRegularAAA", "sans-serif";
  font-size: 166px;
  line-height: 78.48%;
  text-align: left;
  width: 1140px;
  white-space: nowrap;
  direction: ltr;
  margin-left: -15px;
  margin-bottom: -30px;
}
.section_1 .sc_1_subtitle {
  position: relative;
  font-size: 32px;
  line-height: 127.98%;
  text-transform: uppercase;
  text-align: right;
  white-space: nowrap;
  width: 858px;
  overflow: hidden;
  top: 12px;
  right: 12px;
}
.section_1 .sc_1_subtitle:after {
  content: "";
  display: inline-block;
  height: 1px;
  width: 100%;
  background-color: #000;
  margin-right: 14px;
}
.section_1 .sc_1_main_image {
  margin-top: 48px;
}
.section_1 .sc_1_main_image .sc_1_main_img {
  width: 100%;
  height: auto;
}
.section_1 .sc_1_bottomtext {
  margin: 74px 652px 0 0;
  width: 884px;
  font-size: 36px;
  line-height: 128%;
  text-align: right;
  color: #1E1E1E;
}
.section_1 .sc_1_bt_title {
  font-weight: 700;
  font-size: 48px;
  margin-bottom: 15px;
}
.section_1 .sc_1_circle_block {
  position: absolute;
  right: 79px;
  top: 1115px;
  width: 327px;
  height: 327px;
  border-radius: 327px;
  background-color: #fff;
}
.section_1 .sc_1_circle_text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  animation-name: bg_rotate;
  animation-duration: 30s;
  animation-iteration-count: infinite;
  animation-direction: reverse;
  animation-timing-function: linear;
}
.section_1 .sc_1_circle_text .sc_1_circle_text_img {
  position: absolute;
  left: 0;
  top: 0;
  max-width: 1000%;
}
.section_1 .scroll_down {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 141px;
  height: 141px;
  border-radius: 141px;
  background: #503F36;
}
.section_1 .scroll_down:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 49px;
  background: url("https://qa.wemake.co.il/mod/portfolio-slaborbella/img/arrow.svg") no-repeat center;
  background-size: contain;
  transform: translate(-50%, -50%);
}
.section_1 .sc_1_line_1 {
  position: absolute;
  top: 394px;
  right: 63px;
  width: 80px;
  height: 945px;
}
.section_1 .sc_1_line_2 {
  position: absolute;
  top: 493px;
  right: 170px;
  width: 45px;
  height: 945px;
}
.section_1 .sc_1_line_3 {
  position: absolute;
  top: 270px;
  right: 235px;
  width: 27px;
  height: 945px;
}

.section_2 {
  position: relative;
  color: #3A302A;
  font-family: "PloniRegularAAA", "sans-serif";
}
.section_2 .inner {
  max-width: 2310px;
  background: #FBF9F5;
  border: 1px solid #503F36;
  border-radius: 55px;
  padding: 68px 58px 63px 140px;
  align-items: stretch;
}
.section_2 .sc_2_image_block {
  width: 742px;
  margin-left: 26px;
  padding-right: 216px;
  background-color: #6F584C;
  position: relative;
}
.section_2 .sc_2_mask_block {
  position: absolute;
  top: 50%;
  right: 0;
  width: 216px;
  height: 100%;
  transform: translateY(-50%);
  background-image: url("https://qa.wemake.co.il/mod/portfolio-slaborbella/img/sc_2_mask_img.png");
  background-size: auto;
  background-repeat: no-repeat;
  background-position: center;
}
.section_2 .sc_2_info_block {
  position: relative;
  width: 1343px;
}
.section_2 .sc_2_colors_block {
  margin-bottom: 97px;
}
.section_2 .sc_2_colors_title {
  position: relative;
  font-size: 96px;
  line-height: 78.48%;
  margin-right: 49px;
  white-space: nowrap;
  top: 6px;
}
.section_2 .sc_2_colors {
  color: #FBF9F5;
}
.section_2 .sc_2_colors > div {
  padding: 7px 11px;
  height: 63px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  position: relative;
  top: -7px;
}
.section_2 .sc_2_colors > div:not(:first-child) {
  margin-right: 4px;
}
.section_2 .sc_2_colors .color_1 {
  width: 318px;
  background-color: #6F584C;
}
.section_2 .sc_2_colors .color_2 {
  width: 115px;
  background-color: #503F36;
}
.section_2 .sc_2_colors .color_3 {
  width: 123px;
  background-color: #E19F68;
  direction: ltr;
  justify-content: flex-end;
}
.section_2 .sc_2_fonts_block {
  align-items: stretch;
}
.section_2 .sc_2_fonts_pretitle {
  font-family: "PloniRegularAAA", "sans-serif";
  font-size: 24px;
  line-height: 35px;
  letter-spacing: -0.02em;
  color: #000000;
  text-align: left;
  margin-bottom: 8px;
}
.section_2 .sc_2_fonts_pretitle.english_pretitle {
  margin-bottom: 0;
}
.section_2 .sc_2_fonts_image {
  width: 614px;
  position: relative;
}
.section_2 .sc_2_fonts {
  width: 733px;
}
.section_2 .sc_2_fonts .font_title {
  font-family: "PloniRegularAAA", "sans-serif";
  font-size: 36px;
  line-height: 53px;
  text-align: left;
  letter-spacing: -0.02em;
  color: #000000;
  border-bottom: 1px solid #3A302A;
}
.section_2 .sc_2_font_oscar {
  font-family: "Oscar FM", "sans-serif";
}
.section_2 .sc_2_font_oscar .font_text {
  font-family: "Oscar FM", "sans-serif";
  font-size: 86px;
  line-height: 86px;
  text-align: right;
  letter-spacing: -0.02em;
  color: #3A302A;
  margin-top: 26px;
}
.section_2 .sc_2_font_rubik .font_title {
  margin-top: -21px;
}
.section_2 .sc_2_font_rubik .font_text {
  font-weight: 300;
  font-size: 20px;
  line-height: 150.5%;
  text-align: right;
  color: #000000;
  margin: 24px 0 124px;
  max-width: 650px;
}
.section_2 .sc_2_font_bebas .font_title {
  font-family: "Bebas Neue", "sans-serif";
  font-size: 48px;
  line-height: 58px;
  text-align: left;
  color: #000000;
  border: none;
}
.section_2 .sc_2_font_bebas .font_text {
  font-family: "Janetta Silloam", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 50px;
  line-height: 79px;
  text-align: right;
  color: #3A302A;
}
.section_2 .sc_2_bottom_lines {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
}
.section_2 .sc_2_fonts_bg {
  position: absolute;
  top: 15px;
  left: 74px;
  animation-name: bg_move;
  animation-duration: 15s;
  animation-iteration-count: infinite;
  animation-direction: normal;
  animation-timing-function: linear;
}
.section_2 .sc_2_fonts_wood {
  mix-blend-mode: multiply;
  position: absolute;
  top: -22px;
  left: 26px;
}
.section_2 .sc_2_wood_img {
  max-width: 614px;
}

.section_3 {
  position: relative;
  color: #3A302A;
  font-family: "PloniRegularAAA", "sans-serif";
}
.section_3 .sc_3_title_block {
  width: 2108px;
  margin: 126px auto 95px 266px;
  align-items: baseline;
}
.section_3 .sc_3_title {
  font-size: 48px;
  line-height: 78.48%;
  text-transform: uppercase;
  text-align: left;
  position: relative;
  width: 252px;
  white-space: nowrap;
  margin-right: 33px;
}
.section_3 .sc_3_subtitle {
  font-size: 32px;
  line-height: 78.48%;
  text-transform: uppercase;
  white-space: nowrap;
  margin-left: 15px;
}
.section_3 .sc_3_linetitle {
  display: inline-block;
  height: 1px;
  width: 100%;
  background-color: #000;
  margin-right: 14px;
}
.section_3 .inner {
  max-width: 2310px;
  background: #FBF9F5;
  border: 1px solid #503F36;
  border-radius: 55px;
  padding: 52px 58px 54px;
  align-items: stretch;
}
.section_3 .sc_3_main_block {
  background-color: #C6BBAE;
  align-items: stretch;
  z-index: 2;
}
.section_3 .sc_3_top_img {
  position: relative;
  z-index: 3;
}
.section_3 .sc_3_small_logo {
  position: absolute;
  width: 102px;
  height: 102px;
  top: 7px;
  left: 209px;
}
.section_3 .sc_3_main_image_block {
  position: relative;
  width: 1518px;
  z-index: 1;
}
.section_3 .sc_3_main_text_block {
  position: absolute;
  color: #fff;
  right: 98px;
  bottom: 170px;
  z-index: 2;
}
.section_3 .sc_3_text_title {
  font-family: "Oscar FM", "sans-serif";
  font-size: 94px;
  line-height: 94px;
  text-align: right;
}
.section_3 .sc_3_text_subtitle {
  position: relative;
  font-family: "Ktav Yad CLM", "sans-serif";
  font-style: italic;
  font-weight: 500;
  font-size: 55px;
  line-height: 97px;
  text-align: right;
  margin-right: 28px;
  top: -5px;
}
.section_3 .sc_3_scroll_down {
  position: absolute;
  right: 98px;
  bottom: 74px;
  width: 88px;
  height: 88px;
  border-radius: 88px;
  border: 1px solid #FFFFFF;
  z-index: 2;
}
.section_3 .sc_3_scroll_down::after {
  content: url("https://qa.wemake.co.il/mod/portfolio-slaborbella/img/sc_3_arrow.svg");
  position: absolute;
  top: 44px;
  left: 50%;
  transform: translateX(-50%);
}
.section_3 .sc_3_main_right_block {
  position: relative;
  width: 675px;
  overflow: hidden;
}
.section_3 .sc_3_circle_text {
  position: absolute;
  width: 316px;
  right: -109px;
  bottom: -91px;
  animation-name: bg_move;
  animation-duration: 30s;
  animation-iteration-count: infinite;
  animation-direction: reverse;
  animation-timing-function: linear;
}
.section_3 .sc_3_s_img {
  position: relative;
  top: 61px;
  right: 244px;
  width: 371px;
  height: auto;
}
.section_3 .sc_3_main_left_block {
  position: relative;
}
.section_3 .sc_3_bottom_line {
  background-color: #F2ECE4;
  width: 100%;
  height: 13px;
}
.section_3 .sc_3_inner_wrap {
  overflow: hidden;
  border-radius: 16px;
}

.section_4 {
  position: relative;
  color: #3A302A;
  font-family: "PloniRegularAAA", "sans-serif";
  padding-bottom: 149px;
}
.section_4 .sc_4_title_block {
  width: 2108px;
  margin: 89px auto 95px 266px;
  align-items: baseline;
}
.section_4 .sc_4_title {
  font-size: 48px;
  line-height: 78.48%;
  text-transform: uppercase;
  text-align: left;
  position: relative;
  width: 252px;
  white-space: nowrap;
  margin-right: 33px;
}
.section_4 .sc_4_subtitle {
  font-size: 32px;
  line-height: 78.48%;
  text-transform: uppercase;
  white-space: nowrap;
  margin-left: 15px;
}
.section_4 .sc_4_linetitle {
  display: inline-block;
  height: 1px;
  width: 100%;
  background-color: #000;
  margin-right: 14px;
}
.section_4 .sc_4_top_block {
  position: relative;
  width: 1681px;
  max-height: 767px;
  margin: 0 696px 112px 0;
  border: 1px solid #503F36;
  border-radius: 48px;
  background-color: #fbf9f5;
  z-index: 2;
}
.section_4 .sc_4_top_img.desktop- {
  position: relative;
  top: 40px;
}
.section_4 .sc_4_slaborella_text {
  position: absolute;
  width: 564px;
  top: 596px;
  left: 434px;
}
.section_4 .sc_4_slaborella_text:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 50%;
  bottom: 0;
  left: 0;
  z-index: -1;
}
.section_4 .sc_4_bottom_block {
  position: relative;
  width: 1681px;
  margin-right: 182px;
  background-color: #fbf9f5;
  z-index: 4;
}
.section_4 .sc_4_circles {
  position: absolute;
  top: 196px;
  right: 201px;
  z-index: 1;
  animation-name: bg_move;
  animation-duration: 30s;
  animation-iteration-count: infinite;
  animation-direction: reverse;
  animation-timing-function: linear;
}
.section_4 .running-lines {
  position: absolute;
  top: 1320px;
  left: 0;
  width: 50%;
  overflow: hidden;
}
.section_4 .running-line {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 7px 0 0;
  margin-bottom: 10px;
  z-index: 2;
}
.section_4 .running-line div {
  font-family: "Heebo", "sans-serif";
  font-weight: 900;
  font-size: 134px;
  line-height: 78.48%;
  text-transform: uppercase;
  color: #3A302A;
  opacity: 0.05;
  position: relative;
  white-space: nowrap;
  margin-right: 16px;
  animation-name: running;
  animation-duration: 90s;
  animation-iteration-count: infinite;
  animation-direction: reverse;
  animation-timing-function: linear;
}
.section_4 .running-line.ltr-line div {
  animation-name: running;
  animation-duration: 90s;
  animation-iteration-count: infinite;
  animation-direction: normal;
  animation-timing-function: linear;
}

.section_5 {
  padding: 124px 0 158px;
  display: none;
}
.section_5 .inner {
  max-width: 2298px;
  direction: ltr;
}
.section_5 .sc_5_main_block {
  position: relative;
  width: 1811px;
  border: 1px solid #503F36;
  border-radius: 48px;
  padding: 48px 46px;
  z-index: 2;
}
.section_5 .sc_5_main_img {
  margin-top: -79px;
}
.section_5 .sc_5_slaborbella_text {
  position: absolute;
  top: 293px;
  left: 345px;
}
.section_5 .sc_5_slaborella_block {
  position: relative;
  margin-right: 198px;
  width: 195px;
  top: -10px;
}

.section_6 {
  background-color: #FBF9F5;
}
.section_6 .sc_6_main_block {
  background-color: #C6BBAE;
  align-items: stretch;
  justify-content: flex-start;
  direction: ltr;
}
.section_6 .sc_6_left_block {
  width: 1283px;
}
.section_6 .sc_6_frame_block {
  position: relative;
  margin: 140px 0 0 326px;
  width: 442px;
  border-radius: 52px;
  overflow: hidden;
}
.section_6 .sc_6_frame_img {
  position: relative;
  z-index: 2;
}
.section_6 .sc_6_frame_inner {
  position: absolute;
  width: 96%;
  top: 1%;
  left: 2%;
  z-index: 1;
}
.section_6 .sc_6_slaborbella_block {
  text-align: center;
  margin-top: 93px;
}
.section_6 .sc_6_slaborbella_image {
  width: 858px;
  margin: 0 auto 23px;
}
.section_6 .sc_6_slaborbella_text {
  font-family: "Bebas Neue", "sans-serif";
  text-align: center;
  font-size: 27px;
  line-height: 33px;
  letter-spacing: 0.63em;
  color: #3A302A;
  margin-left: 12px;
}

.section_7 {
  padding-top: 64px;
  background-color: #FBF9F5;
}
.section_7 .inner {
  max-width: 2310px;
  border: 1px solid #3A302A;
  border-radius: 55px 55px 0 0;
  border-bottom: none;
  padding: 118px 338px 359px 338px;
  text-align: center;
}
.section_7 .sc_7_title_block {
  width: 2192px;
  margin: 82px 184px 85px;
  align-items: baseline;
}
.section_7 .sc_7_title {
  font-size: 48px;
  line-height: 78.48%;
  text-transform: uppercase;
  text-align: left;
  position: relative;
  width: 443px;
  white-space: nowrap;
  margin-right: 33px;
}
.section_7 .sc_7_subtitle {
  font-size: 32px;
  line-height: 78.48%;
  text-transform: uppercase;
  white-space: nowrap;
  margin-left: 15px;
}
.section_7 .sc_7_linetitle {
  display: inline-block;
  height: 1px;
  width: 100%;
  background-color: #000;
  margin-right: 14px;
}
.section_7 .sc_7_main_title {
  font-family: "Oscar FM";
  font-size: 124px;
  line-height: 124px;
  text-align: center;
  color: #3A302A;
  margin-bottom: 15px;
}
.section_7 .sc_7_main_title_circle {
  position: relative;
  display: inline-block;
  width: 47px;
  height: 47px;
  border: 1px solid #3A302A;
  border-radius: 47px;
  margin: 5px 5px 0 0;
}
.section_7 .sc_7_main_title_circle::after {
  content: "";
  position: absolute;
  display: block;
  width: 9px;
  height: 9px;
  background-color: #3A302A;
  border-radius: 9px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.section_7 .sc_7_main_subtitle {
  font-size: 20px;
  line-height: 143.5%;
  color: #000000;
  width: 682px;
  margin: 0 auto;
}

.section_8 {
  background-color: #3A302A;
  padding-bottom: 235px;
}
.section_8 .inner {
  max-width: 2310px;
  border: 1px solid #FBF9F5;
  border-radius: 0 0 55px 55px;
  border-top: none;
  padding: 628px 0 85px 58px;
  text-align: center;
}
.section_8 .sc_8_top_images_block {
  position: absolute;
  width: 1634px;
  top: -318px;
  left: 50%;
  transform: translateX(-50%);
}
.section_8 .sc_8_top_image_block {
  position: relative;
  width: 533px;
  border-bottom: 12px #C6BBAE solid;
}
.section_8 .sc_8_top_image_desc {
  position: absolute;
  bottom: 40px;
  right: 30px;
  text-align: right;
  color: #FFFFFF;
}
.section_8 .sc_8_top_image_title {
  font-family: "Bebas Neue", "sans-serif";
  font-size: 34px;
  line-height: 31px;
  margin-bottom: 11px;
  letter-spacing: 0.03em;
}
.section_8 .sc_8_top_image_text {
  font-family: "Heebo", "sans-serif";
  font-size: 15px;
  line-height: 23px;
  padding-top: 16px;
  border-top: 1px solid #FFFFFF;
}
.section_8 .sc_8_image_plus {
  position: absolute;
  font-family: "Bebas Neue", "sans-serif";
  font-size: 61px;
  line-height: 73px;
  color: #FFFFFF;
  left: 55px;
  bottom: 40px;
}
.section_8 .sc_8_circles {
  position: absolute;
  left: -149px;
  top: -160px;
  width: 844px;
  animation-name: bg_move;
  animation-duration: 30s;
  animation-iteration-count: infinite;
  animation-direction: reverse;
  animation-timing-function: linear;
}
.section_8 .sc_8_bottom_images_block {
  position: relative;
  direction: ltr;
  z-index: 2;
}
.section_8 .sc_8_bottom_image_left {
  width: 1364px;
}
.section_8 .sc_8_bottom_image_right {
  position: absolute;
  right: 58px;
  bottom: -480px;
  width: 1444px;
}
.section_8 .sc_8_circles_2 {
  position: absolute;
  bottom: -330px;
  right: 230px;
  width: 844px;
  animation-name: bg_move;
  animation-duration: 30s;
  animation-iteration-count: infinite;
  animation-direction: normal;
  animation-timing-function: linear;
}
.section_8 .running-lines {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin: 135px 0 0;
  z-index: 1;
}
.section_8 .running-lines .running-line {
  display: flex;
  align-items: center;
  justify-content: space-around;
  width: 2560px;
  z-index: 2;
}
.section_8 .running-lines .running-line:nth-of-type(2) {
  margin-bottom: 10px;
}
.section_8 .running-lines .running-line div {
  font-family: "Bebas Neue", "sans-serif";
  font-size: 150px;
  line-height: 100%;
  margin-right: 16px;
  color: #928A7E;
  opacity: 0.2;
  animation-name: running;
  animation-duration: 30s;
  animation-iteration-count: infinite;
  animation-direction: reverse;
  animation-timing-function: linear;
  white-space: nowrap;
}
.section_8 .running-lines .running-line.ltr-line div {
  animation-name: running;
  animation-duration: 30s;
  animation-iteration-count: infinite;
  animation-direction: normal;
  animation-timing-function: linear;
}

.section_9 {
  z-index: 2;
  height: 923px;
  padding-top: 100px;
  display: none;
}
.section_9 .sc_9_frame_block {
  width: 2197px;
  position: relative;
  margin: 0px auto 0px;
  overflow: hidden;
  border-radius: 54px;
}
.section_9 .sc_9_frame_img {
  z-index: 3;
  position: relative;
}
.section_9 .sc_9_frame_inner {
  position: absolute;
  left: 0;
  top: 0;
  background: #FBF9F5;
}
.section_9 .sc_9_loading_img {
  mix-blend-mode: multiply;
  z-index: 2;
  position: relative;
}
.section_9 .sc_9_loading_line {
  position: absolute;
  bottom: 38px;
  width: 100%;
  background-color: #FBF9F5;
  border-radius: 0px 0px 54px 54px;
}
.section_9 .sc_9_loading_line .running-lines {
  display: flex;
  align-items: center;
  justify-content: space-around;
  width: 2560px;
}
.section_9 .sc_9_loading_line .running-lines .running_line_inner {
  font-family: "PloniRegularAAA", "sans-serif";
  font-size: 69px;
  line-height: 78.48%;
  text-transform: uppercase;
  color: #3A302A;
  position: relative;
  margin-right: 16px;
  white-space: nowrap;
  animation-name: running;
  animation-duration: 30s;
  animation-iteration-count: infinite;
  animation-direction: reverse;
  animation-timing-function: linear;
}

.section_10 {
  background-color: #3A302A;
  padding-top: 35px;
  height: 813px;
}
.section_10 .sc_10_title_block {
  max-width: 2111px;
  margin: 0 183px 73px 266px;
  align-items: baseline;
}
.section_10 .sc_10_title {
  font-size: 48px;
  line-height: 78.48%;
  text-transform: uppercase;
  color: #FBF9F5;
  text-align: left;
  position: relative;
  width: 443px;
  white-space: nowrap;
  margin-right: 33px;
}
.section_10 .sc_10_linetitle {
  display: inline-block;
  height: 1px;
  width: 100%;
  background-color: #FBF9F5;
  margin-right: 14px;
}
.section_10 .sc_10_images_block {
  position: relative;
  max-width: 2190px;
  margin: 73px auto;
}
.section_10 .sc_10_frame_img {
  position: relative;
  z-index: 2;
}
.section_10 .sc_10_image_block {
  width: 500px;
  position: relative;
  overflow: hidden;
  border-radius: 54px;
}
.section_10 .sc_10_frame_inner {
  position: absolute;
  bottom: 0;
  left: 1%;
  width: 98%;
  height: 98%;
  z-index: 1;
}
.section_10 .sc_10_image_block_1 {
  top: 425px;
}
.section_10 .sc_10_image_block_2 {
  top: 330px;
}
.section_10 .sc_10_text_block {
  position: absolute;
  top: 225px;
  right: 264px;
  max-width: 860px;
}
.section_10 .sc_10_top_text {
  font-family: "PloniRegularAAA", "sans-serif";
  font-weight: 700;
  font-size: 48px;
  line-height: 128%;
  text-align: right;
  color: #FBF9F5;
  margin-bottom: 9px;
}
.section_10 .sc_10_bottom_text {
  font-family: "PloniRegularAAA", "sans-serif";
  font-size: 36px;
  line-height: 128%;
  text-align: right;
  color: #FBF9F5;
}

.section_11 {
  padding-top: 725px;
}

.sc_11_slaborella_block {
  align-items: flex-start;
  justify-content: flex-end;
  top: -187px;
  position: relative;
}

.sc_11_slaborella_image {
  width: 858px;
  margin-left: 179px;
}

.sc_11_lines {
  width: 100%;
  left: 1032px;
  height: 206px;
  position: absolute;
  background-image: url(https://qa.wemake.co.il/mod/portfolio-slaborbella/img/sc_11_lines_img.svg);
  background-position: left center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  top: -40px;
}

.sc_11_main_images {
  align-items: stretch;
  margin-bottom: 104px;
}

.sc_11_left_image {
  position: relative;
  width: 1109px;
  margin: 0 72px 0 132px;
  z-index: 2;
}

.sc_11_right_image {
  position: relative;
  background: #FBF9F5;
  border: 1px solid #503F36;
  border-right: none;
  border-radius: 57px 0 0 57px;
  padding: 39px 0 39px 37px;
  width: 1250px;
  z-index: 2;
}

.sc_11_wood {
  position: absolute;
  left: -101px;
  top: -73px;
  width: 536px;
  mix-blend-mode: normal;
  transform: rotate(-3.93deg);
}

.sc_11_lines_bottom {
  position: absolute;
  left: 0;
  bottom: 55px;
  z-index: 1;
}

.portfolio-s2 {
  background: #000;
  padding-top: 96px;
}
.portfolio-s2 .marq-wr.-style1 {
  height: 71px;
  border: 0;
}
.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 bg_move {
  100% {
    transform: translate3d(0, 0, 1px) rotate(360deg);
  }
}
@keyframes bg_rotate {
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes arrow_move {
  0% {
    transform: translate(-50%, -20%) rotate(-90deg);
  }
  50% {
    transform: translate(-50%, -50%) rotate(-90deg);
  }
  100% {
    transform: translate(-50%, -80%) rotate(-90deg);
  }
}
@media all and (max-width: 768px) {
  .section_1 {
    padding: 70px 0 40px;
  }
  .section_1 .inner {
    display: flex;
    flex-direction: column;
    padding: 0;
  }
  .section_1 .sc_1_title_block {
    flex-direction: column;
    order: 1;
    padding: 0 4%;
  }
  .section_1 .sc_1_title {
    font-size: 55px;
    width: 100%;
    margin: 0;
  }
  .section_1 .sc_1_subtitle {
    width: 100%;
    font-size: 16px;
    text-align: left;
    top: 0;
    right: 0;
    margin-bottom: 7px;
  }
  .section_1 .sc_1_subtitle:after {
    display: none;
  }
  .section_1 .sc_1_main_image {
    order: 2;
    margin-top: 24px;
    position: relative;
  }
  .section_1 .sc_1_circle_block {
    top: auto;
    bottom: -98px;
    right: auto;
    left: 4%;
    width: 196px;
    height: 196px;
    border-radius: 50%;
  }
  .section_1 .sc_1_circle_text .sc_1_circle_text_img {
    width: 196px;
  }
  .section_1 .scroll_down {
    width: 84px;
    height: 84px;
    border-radius: 50%;
  }
  .section_1 .scroll_down::after {
    width: 12px;
    height: 25px;
  }
  .section_1 .sc_1_pretitle {
    order: 4;
    font-size: 20px;
    margin-bottom: 0;
    text-align: right;
    margin-top: 11px;
    padding-right: 15%;
  }
  .section_1 .sc_1_bottomtext {
    order: 5;
    margin: 102px 0 0;
    width: 100%;
    padding: 0 4%;
  }
  .section_1 .sc_1_bt_title {
    font-size: 42px;
    line-height: 128%;
    margin-bottom: 10px;
  }
  .section_1 .sc_1_bt_text {
    font-size: 18px;
    line-height: 128%;
  }
  .section_1 .sc_1_line_3,
  .section_1 .sc_1_line_2,
  .section_1 .sc_1_line_1 {
    display: none;
  }
  .section_2 {
    padding: 0 4% 273px;
  }
  .section_2 .inner {
    padding: 20px 10px 141px;
    border-radius: 10px;
    position: relative;
  }
  .section_2 .sc_2_image_block {
    display: none;
  }
  .section_2 .sc_2_info_block {
    width: 100%;
    position: static;
  }
  .section_2 .sc_2_colors_block {
    flex-direction: column-reverse;
    align-items: flex-end;
    margin-bottom: 56px;
  }
  .section_2 .sc_2_colors_title {
    font-size: 40px;
    top: 0;
    margin: 0 0 17px 0;
  }
  .section_2 .sc_2_colors {
    width: 100%;
  }
  .section_2 .sc_2_colors > div {
    height: 60px;
    top: 0;
    font-size: 14px;
    line-height: 21px;
    padding: 0 5px;
  }
  .section_2 .sc_2_colors > div:not(:first-child) {
    margin-right: 3px;
  }
  .section_2 .sc_2_colors .color_1 {
    width: 56%;
  }
  .section_2 .sc_2_colors .color_2 {
    width: 20%;
  }
  .section_2 .sc_2_colors .color_3 {
    width: 22%;
  }
  .section_2 .sc_2_fonts_block {
    flex-direction: column-reverse;
  }
  .section_2 .sc_2_fonts {
    width: 100%;
  }
  .section_2 .sc_2_fonts .font_title {
    line-height: 50px;
  }
  .section_2 .sc_2_fonts_pretitle {
    font-size: 20px;
    line-height: 29px;
    margin-bottom: 0;
  }
  .section_2 .sc_2_font_oscar .font_text {
    margin-top: 15px;
    margin-bottom: 40px;
    font-size: 60px;
    line-height: 69px;
  }
  .section_2 .sc_2_font_rubik .font_text {
    font-size: 16px;
    margin: 8px 0 42px;
    max-width: 370px;
  }
  .section_2 .sc_2_font_bebas {
    flex-direction: column-reverse;
    align-items: normal;
  }
  .section_2 .sc_2_font_bebas .font_title {
    letter-spacing: 0;
  }
  .section_2 .sc_2_font_bebas .font_text {
    font-size: 35px;
    line-height: 55px;
  }
  .section_2 .sc_2_fonts_pretitle.english_pretitle {
    margin-bottom: 8px;
  }
  .section_2 .sc_2_fonts_image {
    width: 100%;
    z-index: 2;
  }
  .section_2 .sc_2_wood_img {
    max-width: 370px;
    width: 100%;
    margin: 0 auto;
    display: block;
  }
  .section_2 .sc_2_fonts_wood {
    top: -7.9427083333vw;
    left: 0;
    width: 100%;
  }
  .section_2 .sc_2_fonts_bg {
    left: 0;
    width: 100%;
  }
  .section_2 .sc_2_fonts_lines_bg {
    display: block;
    margin: 0 auto;
    max-width: 300px;
    width: 100%;
  }
  .section_2 .sc_2_bottom_lines {
    display: none;
  }
  .section_3 {
    padding: 0 8px;
  }
  .section_3 .inner {
    width: 100%;
    border: 0;
    padding: 0;
  }
  .section_3 .sc_3_title_block {
    width: 100%;
    padding: 0 10px;
    margin: 0 0 20px;
  }
  .section_3 .sc_3_subtitle {
    font-size: 18px;
    margin-left: 10px;
  }
  .section_3 .sc_3_title {
    font-size: 18px;
    width: auto;
    margin-right: 12px;
  }
  .section_3 .sc_3_linetitle {
    position: relative;
    top: -5px;
    margin-right: 0;
  }
  .section_3 .sc_3_main_image_block {
    width: 100%;
  }
  .section_3 .sc_3_inner_wrap {
    padding: 10px 9px 9px 8px;
    border-radius: 11px;
    border: 0.349px solid #503F36;
  }
  .section_4 {
    padding-top: 38px;
    padding-bottom: 18.1176470588vw;
  }
  .section_4 .sc_4_title_block {
    width: 100%;
    margin: 0;
    padding: 0 17px;
    margin-bottom: 18px;
  }
  .section_4 .sc_4_title {
    font-size: 18px;
    width: auto;
    margin-right: 10px;
  }
  .section_4 .sc_4_subtitle {
    font-size: 18px;
    margin-left: 10px;
  }
  .section_4 .sc_4_linetitle {
    background: #3A302A;
    height: 0.5px;
    position: relative;
    top: -7px;
    margin-right: 0;
  }
  .section_4 .sc_4_top_block {
    width: 100%;
    margin: 0 0 13px;
    border: 0;
    padding: 0;
    border-radius: 0;
    text-align: left;
  }
  .section_4 .sc_4_top_img {
    width: 96%;
    margin: 0 auto 0 0;
  }
  .section_4 .sc_4_bottom_block {
    width: 100%;
    margin-right: 0;
    border: 0;
    padding: 0;
    border-radius: 0;
    margin-bottom: 45px;
  }
  .section_4 .sc_4_bottom_img {
    position: relative;
    width: 96%;
    right: 4%;
  }
  .section_4 .sc_4_circles {
    display: none;
  }
  .section_4 .running-lines {
    top: auto;
    width: 100%;
  }
  .section_4 .running-line {
    padding: 0;
  }
  .section_4 .running-line:nth-of-type(2), .section_4 .running-line:nth-of-type(3) {
    display: none;
  }
  .section_4 .running-line div {
    font-size: 46px;
  }
  .section_4 .sc_4_slaborella_text {
    display: none;
  }
  .section_5 {
    padding: 33.4117647059vw 0 42px;
  }
  .section_5 .inner {
    padding: 0;
  }
  .section_5 .sc_5_main_block {
    width: 100%;
    border: 0;
    border-radius: 0;
    padding: 0;
    margin-top: -24.9411764706vw;
  }
  .section_5 .sc_5_slaborbella_text {
    top: 24vw;
    left: 4.2352941176vw;
    width: 43.2941176471vw;
  }
  .section_5 .sc_5_slaborella_block {
    display: none;
  }
  .section_5 .sc_5_main_img {
    width: 100%;
    margin-top: 0;
  }
  .section_6 .sc_6_main_block {
    padding: 86px 4% 77px;
  }
  .section_6 .sc_6_frame_block {
    margin: 0;
    width: 100%;
    border-radius: 0;
  }
  .section_6 .sc_6_left_block {
    display: none;
  }
  .section_6 .sc_6_frame_inner {
    width: 97%;
    left: 1.5%;
  }
  .section_6 .sc_6_slaborbella_block {
    padding: 0 4%;
    margin-top: 40px;
  }
  .section_6 .sc_6_slaborbella_image {
    width: 100%;
    margin: 0 auto 10px;
  }
  .section_6 .sc_6_slaborbella_text {
    font-size: 12px;
    line-height: 13px;
  }
  .section_7 {
    padding: 92px 4% 21.484375vw;
  }
  .section_7::after {
    content: "";
    position: absolute;
    width: 92%;
    height: 22.9947916667vw;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border: 0.5px solid #503F36;
    border-bottom: 0;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
  }
  .section_7 .sc_7_title_block {
    width: 100%;
    margin: 0 0 4.0364583333vw;
  }
  .section_7 .sc_7_subtitle {
    font-size: 18px;
    margin-left: 10px;
  }
  .section_7 .sc_7_title {
    font-size: 18px;
    margin-right: 10px;
    width: auto;
  }
  .section_7 .inner {
    border-radius: 10px;
    border: 0.5px solid #503F36;
    padding: 33px 0 0;
    display: none;
  }
  .section_7 .sc_7_main_title {
    font-size: 32px;
    line-height: 100%;
  }
  .section_7 .sc_7_main_subtitle {
    font-size: 16px;
  }
  .section_7 .sc_7_linetitle {
    position: relative;
    top: -5px;
    margin-right: 0;
  }
  .section_7 .sc_7_main_title_circle {
    width: 13px;
    height: 13px;
    border-radius: 50%;
    margin: 5px -5px 0 0;
  }
  .section_7 .sc_7_main_title_circle::after {
    width: 2px;
    height: 2px;
    border-radius: 50%;
  }
  .section_8 {
    padding: 0 4% 40px;
    margin-top: 33.0078125vw;
  }
  .section_8 .inner {
    padding: 26.0026041667vw 0 25px;
    border: 0.5px solid #FBF9F5;
    border-radius: 0 0 10px 10px;
  }
  .section_8 .sc_8_top_images_block {
    width: 100%;
    top: -50vw;
    left: 0;
    transform: none;
  }
  .section_8 .sc_8_bottom_image_left {
    width: 100%;
  }
  .section_8 .sc_8_bottom_left_img {
    height: 225px;
    width: auto;
    position: relative;
    left: -24.5%;
  }
  .section_8 .sc_8_bottom_image_right {
    right: 0px;
    bottom: auto;
    width: 100%;
    top: 135px;
  }
  .section_8 .sc_8_bottom_right_img {
    height: 361px;
    width: auto;
    position: relative;
    right: -24.5%;
  }
  .section_8 .sc_8_circles {
    left: auto;
    top: 30px;
    right: -18%;
    width: 250px;
  }
  .section_8 .sc_8_circles_2 {
    display: none;
  }
  .section_8 .running-lines {
    margin: 12px 0 0;
    left: -4%;
  }
  .section_8 .running-lines .running-line div {
    font-size: 80px;
  }
  .section_9 {
    display: none;
  }
  .section_10 {
    padding-top: 65px;
    background: #FBF9F5;
  }
  .section_10 .sc_10_title_block {
    margin: 0 0 40px;
    padding: 0 4%;
  }
  .section_10 .sc_10_title {
    font-size: 18px;
    width: auto;
    margin-right: 10px;
    color: #3A302A;
  }
  .section_10 .sc_10_top_text {
    font-size: 42px;
    color: #3A302A;
  }
  .section_10 .sc_10_bottom_text {
    font-size: 18px;
    color: #3A302A;
  }
  .section_10 .sc_10_linetitle {
    background: #3A302A;
    margin-right: 0;
    position: relative;
    top: -5px;
  }
  .section_10 .sc_10_text_block {
    position: static;
    padding: 0 4%;
  }
  .section_10 .sc_10_images_block {
    flex-wrap: wrap;
    margin: 21px auto;
  }
  .section_10 .sc_10_images_block.desktop- {
    display: none;
  }
  .section_10 .sc_10_image_block {
    width: calc(50% - 4px);
    border-radius: 0;
  }
  .section_10 .sc_10_image_block_1 {
    top: 0;
    margin-bottom: 10px;
    margin-left: 8px;
  }
  .section_10 .sc_10_image_block_3 {
    margin-left: 8px;
  }
  .section_10 .sc_10_image_block_2,
  .section_10 .sc_10_image_block_4 {
    top: -96px;
  }
  .section_10 .sc_10_row {
    display: flex;
    justify-content: center;
    min-width: 496px;
    position: relative;
    right: -6%;
    z-index: 2;
  }
  .section_10 .sc_10_row_1 {
    padding-top: 96px;
  }
  .section_10 .sc_10_circles {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
    animation-name: bg_move;
    animation-duration: 30s;
    animation-iteration-count: infinite;
    animation-direction: reverse;
    animation-timing-function: linear;
  }
  .section_11 {
    position: relative;
    padding: 600px 0 0;
  }
  .section_11 .sc_11_main_images {
    margin-bottom: 87px;
    position: relative;
  }
  .section_11 .sc_11_main_images.desktop- {
    display: none;
  }
  .section_11 .sc_11_main_img_mob {
    width: 100%;
  }
  .section_11 .sc_11_wood_mob {
    position: absolute;
    top: -210px;
    left: -40%;
    width: 400px;
    height: 400px;
  }
  .portfolio-s2 {
    padding-top: 60px;
  }
  .portfolio-s2 .marq-wr.-style1 {
    height: 34px;
  }
  .portfolio-s2 .marq-wr.-style1 .marq {
    font-size: 14px;
  }
}
@media all and (min-width: 426px) and (max-width: 768px) {
  .section_11 .sc_11_wood_mob {
    top: -27.34375vw;
    left: -40%;
    width: 52.0833333333vw;
    height: 52.0833333333vw;
  }
}
@media all and (min-width: 500px) and (max-width: 768px) {
  .section_10 .sc_10_images_block {
    padding: 0 4%;
  }
  .section_10 .sc_10_row {
    right: 0;
    min-width: 100%;
  }
  .section_10 .sc_10_image_block img {
    display: block;
    margin: 0 auto;
  }
}
@media all and (max-width: 425px) {
  .section_1 .sc_1_title {
    font-size: 12.9411764706vw;
  }
  .section_1 .sc_1_circle_text .sc_1_circle_text_img {
    width: 46.1176470588vw;
  }
  .section_1 .scroll_down {
    width: 19.7647058824vw;
    height: 19.7647058824vw;
  }
  .section_1 .sc_1_circle_block {
    bottom: -23.0588235294vw;
    width: 46.1176470588vw;
    height: 46.1176470588vw;
  }
  .section_1 .sc_1_pretitle {
    font-size: 4.7058823529vw;
  }
  .section_1 .sc_1_bt_title {
    font-size: 9.8823529412vw;
  }
  .section_1 .sc_1_bt_text {
    font-size: 4.2352941176vw;
  }
  .section_2 {
    padding: 0 4% 64.2352941176vw;
  }
  .section_2 .sc_2_colors_title {
    font-size: 9.4117647059vw;
  }
  .section_2 .sc_2_fonts .font_title {
    font-size: 8.4705882353vw;
    line-height: 11.7647058824vw;
  }
  .section_2 .sc_2_font_oscar .font_text {
    font-size: 13.6470588235vw;
    line-height: 16.2352941176vw;
  }
  .section_2 .sc_2_font_bebas .font_title {
    font-size: 11.2941176471vw;
  }
  .section_2 .sc_2_fonts_wood {
    width: 87.0588235294vw;
  }
  .section_4 .running-line div {
    font-size: 10.8235294118vw;
  }
  .section_8 .inner {
    padding: 26.5882352941vw 0 25px;
  }
  .section_8 .running-lines .running-line div {
    font-size: 18.8235294118vw;
  }
  .section_8 .sc_8_bottom_right_img {
    height: 84.9411764706vw;
  }
  .section_8 .sc_8_bottom_left_img {
    height: 52.9411764706vw;
  }
  .section_10 .sc_10_top_text {
    font-size: 9.8823529412vw;
  }
  .section_10 .sc_10_bottom_text {
    font-size: 4.2352941176vw;
  }
  .section_10 .sc_10_row {
    min-width: 116.7058823529vw;
  }
  .section_11 {
    padding: 141.1764705882vw 0 0;
  }
  .section_11 .sc_11_wood_mob {
    top: -49.4117647059vw;
    width: 94.1176470588vw;
    height: 94.1176470588vw;
  }
}
@media all and (max-width: 376px) {
  .section_11 {
    padding: 135.0588235294vw 0 0;
  }
}
@media all and (max-width: 350px) {
  .section_11 {
    padding: 124.9411764706vw 0 0;
  }
}
@media all and (max-width: 2499px) and (min-width: 769px) {
  .section_1 {
    padding: 2.1875vw 11.8359375vw 3.9453125vw 11.015625vw;
  }
  .section_1 .sc_1_pretitle {
    font-size: 0.9375vw;
    margin-bottom: 1.09375vw;
  }
  .section_1 .sc_1_title {
    font-size: 6.484375vw;
    width: 44.53125vw;
    margin-left: -0.5859375vw;
    margin-bottom: -1.171875vw;
  }
  .section_1 .sc_1_subtitle {
    font-size: 1.25vw;
    width: 33.515625vw;
    top: 0.46875vw;
    right: 0.46875vw;
  }
  .section_1 .sc_1_subtitle:after {
    margin-right: 0.546875vw;
  }
  .section_1 .sc_1_main_image {
    margin-top: 1.875vw;
  }
  .section_1 .sc_1_bottomtext {
    margin: 2.890625vw 25.46875vw 0 0;
    width: 34.53125vw;
    font-size: 1.40625vw;
  }
  .section_1 .sc_1_bt_title {
    font-size: 1.875vw;
    margin-bottom: 0.5859375vw;
  }
  .section_1 .sc_1_circle_block {
    right: 3.0859375vw;
    top: 43.5546875vw;
    width: 12.7734375vw;
    height: 12.7734375vw;
    border-radius: 12.7734375vw;
  }
  .section_1 .sc_1_circle_text_img {
    width: 12.7734375vw;
    height: 12.7734375vw;
  }
  .section_1 .scroll_down {
    width: 5.5078125vw;
    height: 5.5078125vw;
    border-radius: 5.5078125vw;
  }
  .section_1 .scroll_down::after {
    width: 0.9375vw;
    height: 1.9140625vw;
  }
  .section_1 .sc_1_line_1 {
    top: 15.390625vw;
    right: 2.4609375vw;
    width: 3.125vw;
    height: 36.9140625vw;
  }
  .section_1 .sc_1_line_2 {
    top: 19.2578125vw;
    right: 6.640625vw;
    width: 1.7578125vw;
    height: 36.9140625vw;
  }
  .section_1 .sc_1_line_3 {
    top: 10.546875vw;
    right: 9.1796875vw;
    width: 1.0546875vw;
    height: 36.9140625vw;
  }
  .section_2 .inner {
    max-width: 90.234375vw;
    border-radius: 2.1484375vw;
    padding: 2.65625vw 2.265625vw 2.4609375vw 5.46875vw;
  }
  .section_2 .sc_2_image_block {
    width: 28.984375vw;
    margin-left: 1.015625vw;
    padding-right: 8.4375vw;
  }
  .section_2 .sc_2_mask_block {
    width: 8.4375vw;
  }
  .section_2 .sc_2_info_block {
    width: 52.4609375vw;
  }
  .section_2 .sc_2_colors_block {
    margin-bottom: 3.7890625vw;
  }
  .section_2 .sc_2_colors_title {
    font-size: 3.75vw;
    margin-right: 1.9140625vw;
    top: 0.234375vw;
  }
  .section_2 .sc_2_colors > div {
    padding: 0.2734375vw 0.4296875vw;
    height: 2.4609375vw;
    top: -0.2734375vw;
    font-size: 0.703125vw;
  }
  .section_2 .sc_2_colors:not(:first-child) {
    margin-right: 0.15625vw;
  }
  .section_2 .sc_2_colors .color_1 {
    width: 12.421875vw;
  }
  .section_2 .sc_2_colors .color_2 {
    width: 4.4921875vw;
  }
  .section_2 .sc_2_colors .color_3 {
    width: 4.8046875vw;
  }
  .section_2 .sc_2_fonts_pretitle {
    font-size: 0.9375vw;
    line-height: 1.3671875vw;
    margin-bottom: 0.3125vw;
  }
  .section_2 .sc_2_fonts_image {
    width: 23.984375vw;
  }
  .section_2 .sc_2_fonts {
    width: 28.6328125vw;
  }
  .section_2 .sc_2_fonts .font_title {
    font-size: 1.40625vw;
    line-height: 2.0703125vw;
  }
  .section_2 .sc_2_font_oscar .font_text {
    font-size: 3.359375vw;
    line-height: 3.359375vw;
    margin-top: 1.015625vw;
  }
  .section_2 .sc_2_font_rubik .font_title {
    margin-top: -0.8203125vw;
  }
  .section_2 .sc_2_font_rubik .font_text {
    font-size: 0.78125vw;
    margin: 0.9375vw 0 124calc 10.546875vw;
  }
  .section_2 .sc_2_font_bebas .font_title {
    font-size: 1.875vw;
    line-height: 2.265625vw;
  }
  .section_2 .sc_2_font_bebas .font_text {
    font-size: 1.953125vw;
    line-height: 3.0859375vw;
  }
  .section_2 .sc_2_fonts_bg {
    top: 0.5859375vw;
    left: 2.890625vw;
  }
  .section_2 .sc_2_fonts_wood {
    top: -0.859375vw;
    left: 1.015625vw;
  }
  .section_2 .sc_2_wood_img {
    max-width: 23.984375vw;
  }
  .section_3 .sc_3_title_block {
    width: 82.34375vw;
    margin: 4.921875vw auto 3.7109375vw 10.390625vw;
  }
  .section_3 .sc_3_title {
    font-size: 1.875vw;
    width: 9.84375vw;
    margin-right: 1.2890625vw;
  }
  .section_3 .sc_3_subtitle {
    font-size: 1.25vw;
    margin-left: 0.5859375vw;
  }
  .section_3 .sc_3_linetitle {
    margin-right: 0.546875vw;
  }
  .section_3 .inner {
    max-width: 90.234375vw;
    border-radius: 2.1484375vw;
    padding: 2.03125vw 2.265625vw 2.109375vw;
  }
  .section_3 .sc_3_small_logo {
    width: 3.984375vw;
    height: 3.984375vw;
    top: 0.2734375vw;
    left: 8.1640625vw;
  }
  .section_3 .sc_3_main_image_block {
    width: 59.296875vw;
  }
  .section_3 .sc_3_main_text_block {
    right: 3.828125vw;
    bottom: 6.640625vw;
  }
  .section_3 .sc_3_text_title {
    font-size: 3.671875vw;
    line-height: 3.671875vw;
  }
  .section_3 .sc_3_text_subtitle {
    font-size: 2.1484375vw;
    line-height: 3.7890625vw;
    margin-right: 1.09375vw;
    top: -0.1953125vw;
  }
  .section_3 .sc_3_scroll_down {
    right: 3.828125vw;
    bottom: 2.890625vw;
    width: 3.4375vw;
    height: 3.4375vw;
    border-radius: 3.4375vw;
  }
  .section_3 .sc_3_scroll_down::after {
    top: 1.71875vw;
  }
  .section_3 .sc_3_main_right_block {
    width: 26.3671875vw;
  }
  .section_3 .sc_3_circle_text {
    width: 12.34375vw;
    right: -4.2578125vw;
    bottom: -3.5546875vw;
  }
  .section_3 .sc_3_s_img {
    top: 2.3828125vw;
    right: 9.53125vw;
    width: 14.4921875vw;
  }
  .section_3 .sc_3_bottom_line {
    height: 0.5078125vw;
  }
  .section_3 .sc_3_inner_wrap {
    border-radius: 0.625vw;
  }
  .section_4 {
    padding-bottom: 5.8203125vw;
  }
  .section_4 .sc_4_title_block {
    width: 82.34375vw;
    margin: 3.4765625vw auto 3.7109375vw 10.390625vw;
  }
  .section_4 .sc_4_title {
    font-size: 1.875vw;
    width: 9.84375vw;
    margin-right: 1.2890625vw;
  }
  .section_4 .sc_4_subtitle {
    font-size: 1.25vw;
    margin-left: 0.5859375vw;
  }
  .section_4 .sc_4_linetitle {
    margin-right: 0.546875vw;
  }
  .section_4 .sc_4_top_block {
    width: 65.6640625vw;
    margin: 0 27.1875vw 4.375vw 0;
    border-radius: 1.875vw;
  }
  .section_4 .sc_4_top_img.desktop- {
    position: relative;
    top: 1.5625vw;
  }
  .section_4 .sc_4_slaborella_text {
    width: 22.03125vw;
    top: 23.28125vw;
    left: 16.953125vw;
  }
  .section_4 .sc_4_bottom_block {
    padding: 2.890625vw 0 2.265625vw;
    border-radius: 1.875vw;
    width: 65.6640625vw;
    margin-right: 7.109375vw;
  }
  .section_4 .sc_4_circles {
    top: 7.65625vw;
    right: 7.8515625vw;
    width: 30.9375vw;
  }
  .section_4 .running-lines {
    top: 51.5625vw;
  }
  .section_4 .running-line {
    padding: 0.2734375vw 0 0;
    margin-bottom: 0.390625vw;
  }
  .section_4 .running-line div {
    font-size: 5.234375vw;
    margin-right: 0.625vw;
  }
  .section_5 {
    padding: 4.84375vw 0 6.171875vw;
  }
  .section_5 .inner {
    max-width: 89.765625vw;
  }
  .section_5 .sc_5_main_block {
    width: 70.7421875vw;
    border-radius: 1.875vw;
    padding: 1.875vw 1.796875vw;
  }
  .section_5 .sc_5_main_img {
    margin-top: -3.0859375vw;
  }
  .section_5 .sc_5_slaborbella_text {
    top: 11.4453125vw;
    left: 13.4765625vw;
    width: 28.90625vw;
  }
  .section_5 .sc_5_slaborella_block {
    margin-right: 3.828125vw;
    width: 7.6171875vw;
    top: -0.390625vw;
  }
  .section_6 .sc_6_left_block {
    width: 50.1171875vw;
  }
  .section_6 .sc_6_frame_block {
    margin: 5.46875vw 0 0 12.734375vw;
    width: 17.265625vw;
    border-radius: 2.03125vw;
  }
  .section_6 .sc_6_slaborbella_block {
    margin-top: 3.6328125vw;
  }
  .section_6 .sc_6_slaborbella_image {
    width: 33.515625vw;
    margin: 0 auto 0.8984375vw;
  }
  .section_6 .sc_6_slaborbella_text {
    font-size: 1.0546875vw;
    line-height: 1.2890625vw;
    margin-left: 0.46875vw;
  }
  .section_7 {
    padding-top: 2.5vw;
  }
  .section_7 .inner {
    max-width: 90.234375vw;
    border-radius: 2.1484375vw 2.1484375vw 0 0;
    padding: 4.609375vw 13.203125vw 14.0234375vw 13.203125vw;
  }
  .section_7 .sc_7_title_block {
    width: 85.625vw;
    margin: 3.4765625vw 7.1875vw;
  }
  .section_7 .sc_7_title {
    font-size: 1.875vw;
    width: 17.3046875vw;
    margin-right: 1.2890625vw;
  }
  .section_7 .sc_7_subtitle {
    font-size: 1.25vw;
    margin-left: 0.5859375vw;
  }
  .section_7 .sc_7_linetitle {
    margin-right: 0.546875vw;
  }
  .section_7 .sc_7_main_title {
    font-size: 4.84375vw;
    line-height: 4.84375vw;
    margin-bottom: 0.5859375vw;
  }
  .section_7 .sc_7_main_title_circle {
    width: 1.8359375vw;
    height: 1.8359375vw;
    border-radius: 1.8359375vw;
    margin: 0.1953125vw 0.1953125vw 0 0;
  }
  .section_7 .sc_7_main_title_circle::after {
    width: 0.3515625vw;
    height: 0.3515625vw;
    border-radius: 0.3515625vw;
  }
  .section_7 .sc_7_main_subtitle {
    font-size: 0.78125vw;
    width: 26.640625vw;
  }
  .section_8 {
    padding-bottom: 10.3515625vw;
  }
  .section_8 .inner {
    max-width: 90.234375vw;
    border-radius: 0 0 2.1484375vw 2.1484375vw;
    padding: 24.53125vw 0 3.3203125vw 2.265625vw;
  }
  .section_8 .sc_8_top_images_block {
    width: 63.828125vw;
    top: -12.421875vw;
  }
  .section_8 .sc_8_top_image_block {
    width: 20.8203125vw;
    border-bottom: 0.46875vw #C6BBAE solid;
  }
  .section_8 .sc_8_top_image_desc {
    bottom: 1.5625vw;
    right: 1.171875vw;
  }
  .section_8 .sc_8_top_image_title {
    font-size: 1.328125vw;
    line-height: 1.2109375vw;
    margin-bottom: 0.4296875vw;
  }
  .section_8 .sc_8_top_image_text {
    font-size: 0.5859375vw;
    line-height: 0.8984375vw;
    padding-top: 0.625vw;
  }
  .section_8 .sc_8_image_plus {
    font-size: 2.3828125vw;
    line-height: 3calc 0.2734375vw;
    left: 2.1484375vw;
    bottom: 1.5625vw;
  }
  .section_8 .sc_8_circles {
    left: -5.8203125vw;
    top: -6.25vw;
    width: 32.96875vw;
  }
  .section_8 .sc_8_bottom_image_left {
    width: 53.28125vw;
  }
  .section_8 .sc_8_bottom_image_right {
    right: 2.265625vw;
    bottom: -18.75vw;
    width: 56.40625vw;
  }
  .section_8 .sc_8_circles_2 {
    bottom: -12.890625vw;
    right: 8.984375vw;
    width: 32.96875vw;
  }
  .section_8 .running-lines {
    margin: 5.2734375vw 0 0;
  }
  .section_8 .running-lines .running-line {
    margin-bottom: 0.390625vw;
    width: 100vw;
  }
  .section_8 .running-lines .running-line div {
    font-size: 5.859375vw;
    margin-right: 0.625vw;
  }
  .section_9 {
    height: 36.0546875vw;
  }
  .section_9 .sc_9_frame_block {
    width: 85.8203125vw;
    border-radius: 2.109375vw;
  }
  .section_9 .sc_9_loading_line {
    border-radius: 0 0 2.109375vw 2.109375vw;
    bottom: 1.484375vw;
  }
  .section_9 .sc_9_loading_line .running-lines {
    width: 100vw;
  }
  .section_9 .sc_9_loading_line .running-lines .running_line_inner {
    font-size: 2.6953125vw;
    margin-right: 0.625vw;
  }
  .section_10 {
    padding-top: 1.3671875vw;
    height: 31.7578125vw;
  }
  .section_10 .sc_10_title_block {
    width: 82.4609375vw;
    margin: 0 7.1484375vw 2.8515625vw 10.390625vw;
  }
  .section_10 .sc_10_title {
    font-size: 1.875vw;
    width: 17.3046875vw;
    margin-right: 1.2890625vw;
  }
  .section_10 .sc_10_linetitle {
    margin-right: 0.546875vw;
  }
  .section_10 .sc_10_images_block {
    width: 85.546875vw;
    margin: 2.8515625vw auto;
  }
  .section_10 .sc_10_image_block {
    width: 19.53125vw;
    border-radius: 2.109375vw;
  }
  .section_10 .sc_10_image_block_1 {
    top: 16.171875vw;
  }
  .section_10 .sc_10_image_block_2 {
    top: 12.890625vw;
  }
  .section_10 .sc_10_text_block {
    top: 8.7890625vw;
    right: 10.3125vw;
    max-width: 33.59375vw;
  }
  .section_10 .sc_10_top_text {
    font-size: 1.875vw;
    margin-bottom: 0.3515625vw;
  }
  .section_10 .sc_10_bottom_text {
    font-size: 1.40625vw;
  }
  .section_11 {
    padding-top: 28.3203125vw;
  }
  .section_11 .sc_11_slaborella_block {
    top: -7.3046875vw;
  }
  .section_11 .sc_11_lines {
    left: 40.3125vw;
    height: 8.046875vw;
    top: -1.5625vw;
  }
  .section_11 .sc_11_slaborella_image {
    width: 33.515625vw;
    margin-left: 6.9921875vw;
  }
  .section_11 .sc_11_main_images {
    margin-bottom: 4.0625vw;
  }
  .section_11 .sc_11_left_image {
    width: 43.3203125vw;
    margin: 0 2.8125vw 0 5.15625vw;
  }
  .section_11 .sc_11_right_image {
    border-radius: 2.2265625vw 0 0 2.2265625vw;
    padding: 1.5234375vw 0 1.5234375vw 1.4453125vw;
    width: 48.828125vw;
  }
  .section_11 .sc_11_wood {
    left: -3.9453125vw;
    top: -2.8515625vw;
    width: 20.9375vw;
  }
  .section_11 .sc_11_lines_bottom {
    bottom: 2.1484375vw;
  }
}
@media all and (max-width: 1650px) and (min-width: 768px) {
  .portfolio-s2 .marq-wr.-style1 {
    height: 4.303030303vw;
  }
  .portfolio-s2 .marq-wr.-style1 .marq {
    font-size: 1.8787878788vw;
  }
}
