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

.inner,
.inner * {
  box-sizing: border-box;
}

.inner-content {
  display: flex;
  flex-direction: column;
  gap: 0px;
  align-items: flex-end;
  justify-content: flex-start;
  width: 100%;
  min-width: 768px;
  position: relative;
}

.header .inner {
  max-width: 1550px;
}

.section-1 {
  background: #da2316;
  border-radius: 0px 0px 50px 50px;
  padding: 226px 7.34375vw 131px;
  display: flex;
  flex-direction: row;
  gap: 40px;
  align-items: center;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  min-width: 768px;
  width: 100%;
  position: relative;
  direction: ltr;
}

.bg-images {
  display: flex;
  flex-direction: row;
  gap: 40px;
  align-items: center;
  justify-content: flex-end;
  flex: 1;
  position: relative;
}

.image {
  flex: 1;
  height: 905px;
  max-width: 1560px;
  position: relative;
  -o-object-fit: cover;
     object-fit: cover;
}

.small-images {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: flex-start;
  justify-content: flex-start;
  flex-shrink: 0;
  position: relative;
}

.image2 {
  flex-shrink: 0;
  width: 53px;
  height: 905px;
  position: relative;
  -o-object-fit: cover;
     object-fit: cover;
}

.image3 {
  flex-shrink: 0;
  width: 63px;
  height: 905px;
  position: relative;
  -o-object-fit: cover;
     object-fit: cover;
}

.rectangles {
  display: flex;
  flex-direction: row;
  gap: 15px;
  align-items: flex-start;
  justify-content: flex-start;
  flex-shrink: 0;
  position: relative;
}

.rectangle {
  background: #ffffff;
  flex-shrink: 0;
  width: 16px;
  height: 905px;
  position: relative;
}

.rectangle2 {
  background: #ffffff;
  flex-shrink: 0;
  width: 73px;
  height: 905px;
  position: relative;
}

.headline {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  justify-content: flex-start;
  flex-shrink: 0;
  position: absolute;
  left: 7.34375vw;
  top: 466px;
}

.text {
  background: #ffffff;
  padding: 0px 30px 0px 30px;
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
}

.logo-brand {
  color: #000000;
  text-align: left;
  font-family: "Unbounded", sans-serif;
  font-size: 113.1710891724px;
  line-height: 127.98%;
  font-weight: 400;
  text-transform: uppercase;
  position: relative;
}

.text2 {
  background: #020202;
  padding: 0px 30px 0px 30px;
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
}

.identity {
  color: #ffffff;
  text-align: left;
  font-family: "Unbounded", sans-serif;
  font-size: 113.1710891724px;
  line-height: 127.98%;
  font-weight: 300;
  text-transform: uppercase;
  position: relative;
}

.design {
  color: #ffffff;
  text-align: left;
  font-family: "Unbounded", sans-serif;
  font-size: 113.1710891724px;
  line-height: 127.98%;
  font-weight: 300;
  text-transform: uppercase;
  position: relative;
}

.section-2 {
  margin: 150px auto 170px;
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  flex-shrink: 0;
  min-width: 768px;
  max-width: 2184px;
  width: 100%;
  position: relative;
}

.section-2 .text1 {
  color: #2e2e30;
  text-align: center;
  font-family: "PloniRegularAAA", sans-serif;
  font-size: 27.1558647156px;
  font-weight: 400;
  line-height: 140%;
  text-transform: uppercase;
  position: relative;
  flex: 1;
  max-width: 1272px;
}

.section-3 {
  padding: 0px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 120px;
  align-items: center;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  min-width: 768px;
  max-width: 2184px;
  width: 100%;
  position: relative;
  direction: ltr;
}

.divider {
  display: flex;
  flex-direction: row;
  gap: 25px;
  align-items: flex-end;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
  max-width: 2184px;
  margin: 0 auto;
  width: 100%;
}

.fonts-and-colors {
  color: #2e2e30;
  text-align: left;
  font-family: "Unbounded", sans-serif;
  font-size: 24px;
  line-height: 127.98%;
  font-weight: 400;
  position: relative;
}

.divider-line {
  border-style: solid;
  border-color: #2e2e30;
  border-width: 1px 0 0 0;
  flex: 1;
  height: 0px;
  position: relative;
}

.div {
  color: #2e2e30;
  text-align: left;
  font-family: "PloniRegularAAA", sans-serif;
  font-size: 24px;
  line-height: 127.98%;
  font-weight: 400;
  position: relative;
}

.image4 {
  width: 100%;
  flex-shrink: 0;
  height: auto;
  max-width: 2184px;
  position: relative;
  -o-object-fit: cover;
     object-fit: cover;
}

.section-4 {
  margin: 270px auto 0;
  display: flex;
  flex-direction: column;
  gap: 0px;
  align-items: center;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  height: 25vw;
  min-width: 768px;
  position: relative;
  direction: ltr;
}
.section-4 picture {
  min-width: 768px;
  max-width: 2184px;
  width: 100%;
}

.bg-grey {
  background: #2e2e30;
  border-radius: 50px 50px 0px 0px;
  flex-shrink: 0;
  width: 2559px;
  height: 11.328125vw;
  position: absolute;
  right: 0%;
  left: 0.04%;
  width: 99.96%;
  bottom: -1.328125vw;
}

.image5 {
  flex-shrink: 0;
  width: 100%;
  max-width: 80vw;
  height: auto;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -13%;
  -o-object-fit: cover;
     object-fit: cover;
}

.section-5 {
  background: #2e2e30;
  padding: 0 0 180px;
  position: relative;
  direction: ltr;
}
.section-5 .sc_5_inner {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0px;
  align-items: center;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  min-width: 768px;
  max-width: 1760px;
  width: 100%;
  margin: 0 auto;
}

.headline2 {
  background: #2e2e30;
  padding: 180px 0px 0px 0px;
  display: flex;
  flex-direction: column;
  gap: 94px;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  flex-shrink: 0;
  min-width: 768px;
  position: relative;
}

.innovate-create-elevate-architectural-mastery-in-every-detail {
  color: #ffffff;
  text-align: center;
  font-family: "Unbounded", sans-serif;
  font-size: 40px;
  line-height: 110%;
  font-weight: 300;
  text-transform: uppercase;
  position: relative;
  width: 100%;
  max-width: 1062px;
}

.line-divider {
  border-style: dashed;
  border-color: #ffffff;
  border-width: 1px 0 0 0;
  align-self: stretch;
  flex-shrink: 0;
  height: 0px;
  position: relative;
}

.logo-design {
  background: #2e2e30;
  padding: 94px 0px 0px 0px;
  display: flex;
  flex-direction: row;
  gap: 4.453125vw;
  align-items: flex-start;
  justify-content: center;
  align-self: stretch;
  flex-shrink: 0;
  min-width: 768px;
  position: relative;
}

.logo-description {
  background: #2e2e30;
  display: flex;
  flex-direction: column;
  gap: 120px;
  align-items: flex-end;
  justify-content: center;
  flex: 1;
  position: relative;
}

.headline3 {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}

.logo-concept {
  color: #ffffff;
  text-align: left;
  font-family: "Unbounded", sans-serif;
  font-size: 24px;
  line-height: 127.98%;
  font-weight: 400;
  position: relative;
  align-self: stretch;
}

.yamin-adrichalim-ya {
  text-align: left;
  font-family: "Unbounded", sans-serif;
  font-size: 74.909942627px;
  line-height: 110%;
  font-weight: 400;
  text-transform: uppercase;
  position: relative;
  align-self: stretch;
}
.yamin-adrichalim-ya span {
  display: inline-block;
  font-family: "Unbounded", sans-serif;
  font-size: 74.909942627px;
  line-height: 110%;
  font-weight: 400;
  text-transform: uppercase;
}

.yamin-adrichalim-ya-span {
  color: #6a6a6a;
  position: relative;
}
.yamin-adrichalim-ya-span::first-letter {
  color: #ffffff;
  font-weight: 300;
}

.yamin-adrichalim-ya-span3 {
  color: #ffffff;
  font-weight: 300;
}

.yamin-adrichalim-ya-span4 {
  color: #6a6a6a;
}

.yamin-adrichalim-ya-span5 {
  color: #6a6a6a;
}
.yamin-adrichalim-ya-span5::first-letter {
  color: #ffffff;
  font-weight: 300;
}

.yamin-adrichalim-ya-span7 {
  color: #ffffff;
  font-weight: 300;
}

.section-5 .logo-block {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
  padding: 0 0 0 3.359375vw;
}
.section-5 .image6-block {
  flex-shrink: 0;
  width: 219px;
  height: 188.5px;
  position: relative;
  display: inline-block;
}
.section-5 .image6-block .image6 {
  width: 219px;
  height: 188.5px;
  position: relative;
  -o-object-fit: cover;
     object-fit: cover;
}
.section-5 .div2 {
  color: #ffffff;
  text-align: center;
  font-family: "Unbounded", sans-serif;
  font-size: 61.3854293823px;
  line-height: 110%;
  font-weight: 400;
  text-transform: uppercase;
  position: relative;
}
.section-5 .image7-block {
  flex-shrink: 0;
  width: 206px;
  height: 205.5px;
  position: relative;
  -o-object-fit: cover;
     object-fit: cover;
  display: inline-block;
}
.section-5 .image7-block .image7 {
  width: 206px;
  height: 205.5px;
  position: relative;
  -o-object-fit: cover;
     object-fit: cover;
}
.section-5 .image8 {
  flex-shrink: 0;
  width: 205.5px;
  height: 205.5px;
  position: relative;
  -o-object-fit: cover;
     object-fit: cover;
}
.section-5 .text-and-button {
  border-style: dashed;
  border-color: #ffffff;
  border-width: 0px 0px 1px 0px;
  padding: 0px 0px 40px 0px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
  gap: 15px;
}
.section-5 .button {
  border-radius: 90px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 140px;
  height: 140px;
  position: relative;
  overflow: visible;
}

.div4 {
  color: #ffffff;
  text-align: right;
  font-family: "PloniRegularAAA", sans-serif;
  font-size: 32px;
  line-height: 120%;
  font-weight: 400;
  text-transform: uppercase;
  position: relative;
  flex: 1;
  max-width: 837px;
}

.image9 {
  flex: 1;
  height: 809px;
  max-width: 440px;
  position: relative;
  -o-object-fit: cover;
     object-fit: cover;
}

.image10 {
  flex-shrink: 0;
  width: 118px;
  height: 93px;
  position: absolute;
  left: -20%;
  top: 4%;
  -o-object-fit: cover;
     object-fit: cover;
}

.image11 {
  flex-shrink: 0;
  width: 93px;
  height: auto;
  position: absolute;
  right: 2px;
  top: calc(50% + 92.5px);
  -o-object-fit: cover;
     object-fit: cover;
}

.sc_5_images_block {
  position: relative;
}

.section-6 {
  padding-top: 180px;
  background: #2e2e30;
  padding: 0 0 220px;
  position: relative;
  direction: ltr;
  margin-top: -1px;
}
.section-6 .sc_6_inner {
  display: flex;
  flex-direction: column;
  gap: 120px;
  align-items: center;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  min-width: 768px;
  max-width: 1760px;
  width: 100%;
  margin: 0 auto;
}

.fonts-and-colors2 {
  color: #ffffff;
  text-align: left;
  font-family: "Unbounded", sans-serif;
  font-size: 24px;
  line-height: 127.98%;
  font-weight: 400;
  position: relative;
}

.divider-line2 {
  border-style: solid;
  border-color: #ffffff;
  border-width: 1px 0 0 0;
  flex: 1;
  height: 0px;
  position: relative;
}

.div5 {
  color: #ffffff;
  text-align: left;
  font-family: "PloniRegularAAA", sans-serif;
  font-size: 24px;
  line-height: 127.98%;
  font-weight: 400;
  position: relative;
}

.image12 {
  flex-shrink: 0;
  width: 1759px;
  height: 739px;
  position: relative;
  -o-object-fit: cover;
     object-fit: cover;
}

.section-7 {
  background: #2e2e30;
  padding: 0 0 219px 0;
  height: auto;
  position: relative;
  direction: ltr;
  margin-top: -1px;
}
.section-7 .sc_7_inner {
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: center;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  min-width: 768px;
  max-width: 1972px;
  width: 100%;
  margin: 0 auto;
}
.section-7 .divider {
  width: 100%;
  max-width: 1760px;
  margin: 0 auto 120px auto;
}

.image13 {
  flex-shrink: 0;
  width: 10.5859375vw;
  height: auto;
  position: absolute;
  right: -4.765625vw;
  top: 5.5%;
  -o-object-fit: cover;
     object-fit: cover;
}

.image14 {
  flex-shrink: 0;
  width: 100%;
  max-width: 61.875vw;
  height: auto;
  position: relative;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 0 auto;
  top: -50px;
  display: block;
}

.image15 {
  flex-shrink: 0;
  width: 100%;
  max-width: 723.5px;
  height: auto;
  position: relative;
  left: 0;
  top: -27px;
  -o-object-fit: cover;
     object-fit: cover;
}

.images {
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: flex-start;
  justify-content: flex-start;
  flex-shrink: 0;
  position: relative;
}
.images picture {
  width: 100%;
  text-align: left;
}

.image16 {
  flex-shrink: 0;
  width: 1973px;
  height: 793px;
  position: relative;
  -o-object-fit: cover;
     object-fit: cover;
}

.image17 {
  flex-shrink: 0;
  width: 1972.95px;
  height: 855.42px;
  position: relative;
  -o-object-fit: cover;
     object-fit: cover;
}

.image18 {
  flex-shrink: 0;
  width: 21.953125vw;
  height: auto;
  position: absolute;
  left: -15%;
  top: 12%;
  -o-object-fit: cover;
     object-fit: cover;
}

.image19 {
  flex-shrink: 0;
  width: 105px;
  height: 121px;
  position: absolute;
  left: calc(50% - 183px);
  top: calc(50% - 367.5px);
  -o-object-fit: cover;
     object-fit: cover;
}

.section-8 {
  padding: 0px 0px 0px 7.34375vw;
  position: relative;
  direction: ltr;
  background: #fff;
}
.section-8 .sc_8_inner {
  position: relative;
  display: flex;
  flex-direction: row;
  gap: 199px;
  align-items: center;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  min-width: 768px;
  width: 100%;
  margin: 0 auto;
}

.text3 {
  display: flex;
  flex-direction: column;
  gap: 200px;
  align-items: flex-start;
  justify-content: flex-start;
  flex: 1;
  position: relative;
}

.bg-image {
  flex-shrink: 0;
  width: 428px;
  height: 503px;
  position: absolute;
  right: -214.5px;
  bottom: -235px;
  -o-object-fit: cover;
     object-fit: cover;
}

.text4 {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
  justify-content: center;
  align-self: stretch;
  flex-shrink: 0;
  height: 483px;
  position: relative;
}

.architecture-merges-art-and-science {
  color: #2e2e30;
  text-align: left;
  font-family: "Unbounded", sans-serif;
  font-size: 100px;
  line-height: 110%;
  font-weight: 400;
  text-transform: uppercase;
  position: relative;
  width: 100%;
  max-width: 984px;
}

.in-designing {
  color: #2e2e30;
  text-align: right;
  font-family: "Janetta Silloam", sans-serif;
  font-size: 100px;
  line-height: 100.48%;
  font-weight: 400;
  position: relative;
  align-self: stretch;
}

.structures {
  color: #2e2e30;
  text-align: left;
  font-family: "Unbounded", sans-serif;
  font-size: 100px;
  line-height: 110%;
  font-weight: 400;
  text-transform: uppercase;
  position: relative;
  width: 100%;
  max-width: 984px;
}

.image20 {
  flex-shrink: 0;
  width: 465px;
  height: 69.75px;
  position: relative;
  -o-object-fit: cover;
     object-fit: cover;
}

.image21 {
  flex: 1;
  height: 1224px;
  position: relative;
  -o-object-fit: cover;
     object-fit: cover;
}

.section-9 {
  background: #2e2e30;
  padding: 100px 188px 0px 188px;
  display: flex;
  flex-direction: column;
  gap: 120px;
  align-items: center;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  height: 2147px;
  min-width: 768px;
  position: relative;
  direction: ltr;
}

.bg-image2-block {
  flex-shrink: 0;
  width: 754px;
  height: 934px;
  position: absolute;
  right: 0;
  bottom: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

.images2 {
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: center;
  justify-content: flex-start;
  flex-shrink: 0;
  position: relative;
}

.image22-block {
  flex-shrink: 0;
  width: 1043px;
  height: 696.5px;
  position: relative;
  -o-object-fit: cover;
     object-fit: cover;
}

.image23-block {
  flex-shrink: 0;
  width: 1159px;
  height: 773px;
  position: relative;
  -o-object-fit: cover;
     object-fit: cover;
}

.image24-block {
  flex-shrink: 0;
  width: 1043px;
  height: 695.5px;
  position: relative;
  -o-object-fit: cover;
     object-fit: cover;
}

.block-with-text {
  display: flex;
  flex-direction: row;
  gap: 55px;
  align-items: center;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.image25_block {
  flex-shrink: 0;
  width: 642px;
  height: 1260px;
  position: relative;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
  z-index: 3;
}

.text5 {
  padding: 0px 0px 360px 0px;
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  justify-content: flex-start;
  flex: 1;
  position: relative;
}

.text6 {
  color: #ffffff;
  text-align: left;
  font-family: "Unbounded", sans-serif;
  font-size: 84.1392669678px;
  line-height: 110%;
  font-weight: 400;
  text-transform: uppercase;
  position: relative;
  width: 870px;
}
.text6 p {
  position: relative;
  display: inline-block;
  z-index: 2;
}
.text6 p::after {
  content: "";
  position: absolute;
  background: #fd2415;
  padding: 12px 33px 12px 180px;
  right: -23px;
  top: 0;
  width: 200%;
  height: 100%;
  z-index: -1;
  display: block;
}

.div6 {
  flex-shrink: 0;
  width: 56px;
  height: 53px;
  position: absolute;
  right: -108px;
  top: 50%;
  overflow: visible;
  transform: translateY(-50%);
  z-index: 2;
}

.portfolio {
  padding-top: 180px;
}
.portfolio .title1,
.portfolio .title2 {
  color: #252525;
}
.portfolio .st-button.-more.-c-white {
  color: #252525;
  font-family: "PloniRegularAAA", "Helvetica", "Arial", sans-serif;
}
.portfolio .st-button.-more.-c-white::before {
  border: 1px solid #252525;
}
.portfolio .st-button.-more.-c-white:hover {
  color: #fff;
}
.portfolio .st-button.-more.-c-white:hover::before {
  border: 1px solid #fff;
}

.portfolio-s2 .project-text {
  font-family: "PloniRegularAAA", "Helvetica", "Arial", sans-serif;
}
.portfolio-s2 .projects.owl-carousel.owl-rtl .owl-prev span svg,
.portfolio-s2 .projects.owl-carousel.owl-rtl .owl-next span svg {
  fill: #252525;
}
.portfolio-s2 .projects.owl-carousel.owl-rtl .owl-prev,
.portfolio-s2 .projects.owl-carousel.owl-rtl .owl-next {
  border: 1px solid #252525;
}
.portfolio-s2 .projects.owl-carousel.owl-rtl .owl-dots .owl-dot.active {
  background: #252525;
}

@-webkit-keyframes running {
  0% {
    transform: translate(-100%, 0);
  }
  50% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(100%, 0);
  }
}

@keyframes running {
  0% {
    transform: translate(-100%, 0);
  }
  50% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(100%, 0);
  }
}
@-webkit-keyframes bg_move {
  100% {
    transform: translate3d(0, 0, 1px) rotate(360deg);
  }
}
@keyframes bg_move {
  100% {
    transform: translate3d(0, 0, 1px) rotate(360deg);
  }
}
@-webkit-keyframes bg_rotate {
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes bg_rotate {
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@-webkit-keyframes arrow_move {
  0% {
    transform: translate(-50%, -20%) rotate(-90deg);
  }
  50% {
    transform: translate(-50%, -50%) rotate(-90deg);
  }
  100% {
    transform: translate(-50%, -80%) rotate(-90deg);
  }
}
@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 (min-width: 769px) {
  .mobile- {
    display: none !important;
  }
}
@media all and (max-width: 768px) {
  .desktop- {
    display: none !important;
  }
  .section-1 {
    background: #da2316;
    border-radius: 0px 0px 24px 24px;
    padding: 96px 17px 24px 17px;
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    flex-shrink: 0;
    max-width: 768px;
    min-width: 320px;
    position: relative;
  }
  .bg-images {
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    justify-content: center;
    flex: 1;
    position: relative;
  }
  .bg-images picture {
    width: 100%;
  }
  .image {
    flex: 1;
    height: auto;
    width: 100%;
    position: relative;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .headline {
    display: flex;
    flex-direction: column;
    gap: 3px;
    align-items: flex-start;
    justify-content: flex-start;
    flex-shrink: 0;
    position: absolute;
    left: 17px;
    top: 96px;
  }
  .text {
    background: #ffffff;
    padding: 0px 10px 0px 10px;
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
  }
  .logo-brand {
    color: #000000;
    text-align: left;
    font-size: 9.1436947093vw;
    line-height: 127.98%;
    font-weight: 400;
    text-transform: uppercase;
    position: relative;
  }
  .text2 {
    background: #000000;
    padding: 0px 10px 0px 10px;
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
  }
  .identity {
    color: #ffffff;
    text-align: left;
    font-family: "Unbounded", sans-serif;
    font-size: 9.1436947093vw;
    line-height: 127.98%;
    font-weight: 300;
    text-transform: uppercase;
    position: relative;
  }
  .design {
    color: #ffffff;
    text-align: left;
    font-family: "Unbounded", sans-serif;
    font-size: 9.1436947093vw;
    line-height: 127.98%;
    font-weight: 300;
    text-transform: uppercase;
    position: relative;
  }
  .section-2 {
    margin: 0 auto;
    padding: 40px 17px 80px 17px;
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    justify-content: center;
    width: 100%;
    flex-shrink: 0;
    max-width: 768px;
    min-width: 320px;
    position: relative;
  }
  .yamin-architects-mobile {
    font-family: "PloniRegularAAA", "Helvetica", "Arial", sans-serif;
    color: #2e2e30;
    text-align: center;
    font-size: 4.2352941176vw;
    font-weight: 400;
    text-transform: uppercase;
    position: relative;
    width: 100%;
    max-width: 84.2352941176vw;
    line-height: 150%;
  }
  .section-3 {
    padding: 0px 17px 0px 17px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    flex-shrink: 0;
    max-width: 768px;
    min-width: 320px;
    position: relative;
  }
  .section-3 picture {
    width: 100%;
  }
  .divider {
    display: flex;
    flex-direction: row;
    gap: 6px;
    align-items: undefined;
    justify-content: center;
    align-self: stretch;
    flex-shrink: 0;
    position: relative;
    font-family: "Unbounded", sans-serif;
    font-weight: 300;
    min-width: 320px;
  }
  .divider-en {
    color: #2e2e30;
    text-align: left;
    font-size: 16px;
    line-height: 127.98%;
    font-weight: 400;
    position: relative;
  }
  .divider-line {
    border-style: solid;
    border-color: #2e2e30;
    border-width: 0.5px 0 0 0;
    flex: 1;
    height: 0px;
    position: relative;
    transform-origin: 0 0;
    transform: rotate(0deg) scale(1, 1);
  }
  .r {
    color: #2e2e30;
    text-align: left;
    font-family: "PloniRegularAAA", "Helvetica", "Arial", sans-serif;
    font-size: 16px;
    line-height: 127.98%;
    font-weight: 400;
    position: relative;
  }
  .image2 {
    align-self: stretch;
    flex-shrink: 0;
    height: auto;
    position: relative;
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
  }
  .section-4 {
    margin: 0 auto;
    padding: 70px 0 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    flex-shrink: 0;
    max-width: 768px;
    min-width: 320px;
    position: relative;
    height: auto;
  }
  .section-4 .divider {
    padding: 0 17px;
  }
  .section-4 picture {
    width: 100%;
    min-width: 320px;
  }
  .image-mockup {
    display: flex;
    flex-direction: column;
    gap: 0px;
    align-items: center;
    justify-content: flex-start;
    flex-shrink: 0;
    position: relative;
    width: 100%;
    padding: 0 17px;
  }
  .bg-grey {
    background: #2e2e30;
    border-radius: 24px 24px 0px 0px;
    flex-shrink: 0;
    width: 100%;
    height: 14.1176470588vw;
    position: absolute;
    left: 0;
    bottom: 0%;
    top: 56.2%;
    height: 43.8%;
  }
  .image3 {
    flex-shrink: 0;
    width: 100%;
    height: auto;
    position: relative;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .section-5 {
    margin: 0 auto;
    padding: 0;
    background: #2e2e30;
    display: flex;
    flex-direction: column;
    gap: 58px;
    align-items: flex-end;
    justify-content: flex-start;
    width: 100%;
    flex-shrink: 0;
    max-width: 768px;
    min-width: 320px;
    position: relative;
  }
  .section-5 .headline2 {
    background: #2e2e30;
    border-style: dashed;
    border-color: #ffffff;
    border-width: 0px 0px 1px 0px;
    padding: 36px 17px 30px 17px;
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    justify-content: center;
    align-self: stretch;
    flex-shrink: 0;
    position: relative;
    min-width: 320px;
  }
  .section-5 .innovate-create-elevate-architectural-mastery-in-every-detail {
    color: #ffffff;
    text-align: center;
    font-family: "Unbounded", sans-serif;
    font-size: 20px;
    line-height: 110%;
    font-weight: 300;
    text-transform: uppercase;
    position: relative;
    flex: 1;
  }
  .section-5 .logo-description {
    background: #2e2e30;
    padding: 0px 17px 100px 17px;
    display: flex;
    flex-direction: column;
    gap: 85px;
    align-items: center;
    justify-content: flex-start;
    align-self: stretch;
    flex-shrink: 0;
    position: relative;
  }
  .section-5 .headline3 {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
    justify-content: flex-start;
    align-self: stretch;
    flex-shrink: 0;
    position: relative;
  }
  .section-5 .logo-concept {
    color: #ffffff;
    text-align: left;
    font-family: "Unbounded", sans-serif;
    font-size: 16px;
    line-height: 127.98%;
    font-weight: 300;
    position: relative;
    align-self: stretch;
  }
  .section-5 .yamin-adrichalim-ya {
    text-align: center;
    font-family: "Unbounded", sans-serif;
    font-size: 24.5091266632px;
    line-height: 110%;
    font-weight: 300;
    text-transform: uppercase;
    position: relative;
    align-self: stretch;
  }
  .section-5 .yamin-adrichalim-ya span {
    font-family: "Unbounded", sans-serif;
    font-size: 24px;
    line-height: 110%;
    font-weight: 300;
    text-transform: uppercase;
    display: inline;
  }
  .section-5 .yamin-adrichalim-ya-span {
    color: #ffffff;
  }
  .section-5 .yamin-adrichalim-ya-span2 {
    color: #6a6a6a;
  }
  .section-5 .yamin-adrichalim-ya-span3 {
    color: #ffffff;
  }
  .section-5 .yamin-adrichalim-ya-span4 {
    color: #6a6a6a;
  }
  .section-5 .yamin-adrichalim-ya-span5 {
    color: #ffffff;
  }
  .section-5 .yamin-adrichalim-ya-span6 {
    color: #6a6a6a;
  }
  .section-5 .yamin-adrichalim-ya-span7 {
    color: #ffffff;
  }
  .section-5 .logo-and-description {
    display: flex;
    flex-direction: column;
    gap: 48px;
    align-items: flex-start;
    justify-content: flex-start;
    align-self: stretch;
    flex-shrink: 0;
    position: relative;
  }
  .section-5 .logo-block {
    display: flex;
    flex-direction: row;
    gap: 25px;
    align-items: center;
    justify-content: center;
    align-self: stretch;
    flex-shrink: 0;
    position: relative;
    padding: 0;
  }
  .section-5 .image4 {
    flex-shrink: 0;
    width: 88.5px;
    height: 76px;
    position: relative;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .section-5 .div {
    color: #ffffff;
    text-align: center;
    font-family: "Unbounded", sans-serif;
    font-size: 24.7191925049px;
    line-height: 110%;
    font-weight: 300;
    text-transform: uppercase;
    position: relative;
  }
  .section-5 .image5 {
    flex-shrink: 0;
    width: 83px;
    height: 83px;
    position: relative;
    -o-object-fit: cover;
       object-fit: cover;
    left: 0;
    transform: translateX(0);
  }
  .section-5 .arrow {
    flex-shrink: 0;
    width: 20.13px;
    height: auto;
    position: relative;
    overflow: visible;
  }
  .section-5 .div2 {
    color: #ffffff;
    text-align: right;
    font-family: "PloniMlV2Aaa-Regular", sans-serif;
    font-size: 16px;
    line-height: 135%;
    font-weight: 400;
    text-transform: uppercase;
    position: relative;
    align-self: stretch;
    height: 71px;
  }
  .section-6 {
    margin: 0 auto;
    background: #2e2e30;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    flex-shrink: 0;
    max-width: 768px;
    min-width: 320px;
    position: relative;
  }
  .section-6 .divider {
    padding: 0px 17px 0px 17px;
  }
  .section-6 .divider-en, .section-6 .r {
    color: #fff;
  }
  .section-6 .divider-line {
    border-color: #fff;
  }
  .section-6 .image6 {
    padding: 0px 17px 0px 17px;
    flex-shrink: 0;
    width: 100%;
    height: auto;
    position: relative;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .section-6 .image6 img {
    width: 100%;
  }
  .section-6 .images {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    justify-content: flex-start;
    align-self: stretch;
    flex-shrink: 0;
    position: relative;
  }
  .section-6 .image7 {
    max-width: 100%;
    width: 100%;
    flex-shrink: 0;
    height: auto;
    position: relative;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .section-6 .image7 img {
    width: 100%;
  }
  .section-6 .image8 {
    flex-shrink: 0;
    width: 322px;
    height: 55px;
    position: relative;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .section-6 .image9 {
    padding: 0px 17px 0px 17px;
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    height: auto;
    position: relative;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .section-6 .image9 img {
    width: 100%;
  }
  .section-7 {
    background: #ffffff;
    padding: 0px 0px 0px 17px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
    flex-shrink: 0;
    max-width: 768px;
    min-width: 320px;
    position: relative;
  }
  .section-7 .text-block {
    display: flex;
    flex-direction: column;
    gap: 34px;
    align-items: flex-start;
    justify-content: flex-start;
    flex: 1;
    position: relative;
    z-index: 2;
  }
  .section-7 .text3 {
    padding: 0px 40px 0px 0px;
    display: flex;
    flex-direction: column;
    gap: 0px;
    align-items: flex-start;
    justify-content: flex-start;
    align-self: stretch;
    flex-shrink: 0;
    position: relative;
  }
  .section-7 ._2-15-gray-line-01-6 {
    flex-shrink: 0;
    width: 83.51px;
    height: 71.05px;
    position: absolute;
    right: calc(50% - 21px);
    top: auto;
    bottom: 0;
    transform-origin: 0 0;
    transform: none;
    -o-object-fit: cover;
       object-fit: cover;
    z-index: 1;
  }
  .section-7 .architecture-merges-art-and-science {
    color: #2e2e30;
    text-align: left;
    font-family: "Unbounded", sans-serif;
    font-size: 16.6015644073px;
    line-height: 110%;
    font-weight: 300;
    text-transform: uppercase;
    position: relative;
    align-self: stretch;
  }
  .section-7 .in-designing {
    color: #2e2e30;
    text-align: right;
    font-family: "Janetta Silloam", sans-serif;
    font-size: 16.6015644073px;
    line-height: 100.48%;
    font-weight: 400;
    position: relative;
    align-self: stretch;
  }
  .section-7 .structures {
    color: #2e2e30;
    text-align: left;
    font-family: "Unbounded", sans-serif;
    font-size: 16.6015644073px;
    line-height: 110%;
    font-weight: 300;
    text-transform: uppercase;
    position: relative;
    align-self: stretch;
  }
  .section-7 .logo2 {
    flex-shrink: 0;
    width: 77.2px;
    height: 11.58px;
    position: relative;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .section-7 .image10 {
    margin: 0 0 0 -20px;
    flex: 1;
    height: auto;
    position: relative;
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    left: 0;
    top: 0;
  }
  .section-8 {
    background: #2e2e30;
    padding: 40px 17px 50px 17px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    flex-shrink: 0;
    height: auto;
    max-width: 768px;
    min-width: 320px;
    position: relative;
  }
  .section-8 .bg-image {
    flex-shrink: 0;
    width: 286px;
    height: 230px;
    position: absolute;
    right: -56px;
    bottom: -230px;
    transform-origin: 0 0;
    transform: rotate(-90deg) scale(1, 1);
    -o-object-fit: cover;
       object-fit: cover;
  }
  .section-8 .image11 {
    flex-shrink: 0;
    width: 362px;
    height: 451px;
    position: absolute;
    left: -113px;
    bottom: -90px;
    top: auto;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .section-8 .text-selection {
    background: #fd2415;
    flex-shrink: 0;
    width: 305px;
    height: 35px;
    position: absolute;
    left: -84px;
    top: 391px;
  }
  .section-8 .images2 {
    padding: 0px 0px 50px 0px;
    display: flex;
    flex-direction: row;
    gap: 4px;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
  }
  .section-8 .image12 {
    border-radius: 7.02px;
    flex-shrink: 0;
    width: 39.5294117647vw;
    height: 28.2352941176vw;
    position: relative;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .section-8 .image12 picture {
    width: 100%;
  }
  .section-8 .image12 img {
    width: 100%;
  }
  .section-8 .image13 {
    border-radius: 5.93px;
    flex-shrink: 0;
    width: 37.1764705882vw;
    height: 35.7647058824vw;
    position: relative;
    -o-object-fit: cover;
       object-fit: cover;
    right: 0;
  }
  .section-8 .image13 picture {
    width: 100%;
  }
  .section-8 .image13 img {
    width: 100%;
  }
  .section-8 .image14 {
    border-radius: 4.69px;
    flex-shrink: 0;
    width: 42.3529411765vw;
    height: 28.2352941176vw;
    position: relative;
    -o-object-fit: cover;
       object-fit: cover;
    top: 0;
  }
  .section-8 .image14 picture {
    width: 100%;
  }
  .section-8 .image14 img {
    width: 100%;
  }
  .section-8 .text6 {
    color: #ffffff;
    text-align: left;
    font-family: "Unbounded", sans-serif;
    font-size: 32px;
    line-height: 110%;
    font-weight: 300;
    text-transform: uppercase;
    position: relative;
    flex: 1;
    padding-left: 50px;
    width: auto;
    max-width: 395px;
  }
  .section-8 .text6 p {
    position: relative;
    display: inline-block;
    z-index: 2;
  }
  .section-8 .text6 p::after {
    content: "";
    position: absolute;
    background: #fd2415;
    padding: 12px 33px 12px 180px;
    right: -23px;
    top: 0;
    width: 200%;
    height: 100%;
    z-index: -1;
    display: block;
  }
  .section-8 .text6 svg {
    width: 21px;
    height: auto;
    right: -56px;
  }
  .section-8 .div3 {
    flex-shrink: 0;
    width: 21.92px;
    height: 20.75px;
    position: absolute;
    left: calc(50% + 19px);
    top: calc(50% + 8px);
    overflow: visible;
  }
  .portfolio {
    padding-top: 70px;
  }
}
@media all and (max-width: 410px) {
  .section-5 .logo-block {
    gap: 5px;
  }
  .section-5 .yamin-adrichalim-ya span {
    font-size: 17px;
  }
  .section-7 .architecture-merges-art-and-science {
    font-size: 14px;
  }
  .section-8 .text6 {
    padding-left: 24px;
    font-size: 24px;
  }
  .divider {
    min-width: 100px;
  }
}
@media all and (max-width: 2499px) and (min-width: 769px) {
  .section-3,
.section-4 {
    padding-left: 15px;
    padding-right: 15px;
  }
  .image16,
.image17 {
    width: 100%;
    height: auto;
  }
}
@media all and (max-width: 2560px) and (min-width: 1699px) {
  .architecture-merges-art-and-science,
.in-designing,
.structures {
    font-size: calc(80px + 20 * (100vw - 1699px) / 861);
  }
}
@media all and (max-width: 1800px) and (min-width: 769px) {
  .section-5 .sc_5_inner,
.section-6 .sc_6_inner,
.section-7 .sc_7_inner,
.section-8 .sc_8_inner {
    padding-left: 15px;
    padding-right: 15px;
  }
  .image22-block,
.image24-block {
    width: 40.7421875vw;
    height: auto;
    min-width: 430px;
  }
  .image23-block {
    width: 45.2734375vw;
    height: auto;
    min-width: 500px;
  }
}
@media all and (max-width: 1699px) and (min-width: 769px) {
  .section-8 {
    padding: 0;
  }
  .section-8 .sc_8_inner {
    padding-right: 0;
    gap: 20px;
    align-items: stretch;
  }
  .section-8 .sc_8_inner picture {
    width: 42%;
  }
  .section-8 .sc_8_inner picture img {
    height: auto;
  }
  .section-8 .bg-image {
    right: -270px;
    bottom: -290px;
  }
  .section-8 .text3 {
    max-width: 58%;
    gap: 0;
    justify-content: stretch;
  }
  .section-8 .architecture-merges-art-and-science,
.section-8 .in-designing,
.section-8 .structures {
    max-width: 98%;
    font-size: 70px;
  }
  .section-8 .text4 {
    height: 100%;
  }
}
@media all and (max-width: 1499px) and (min-width: 769px) {
  .section-8 .architecture-merges-art-and-science {
    font-size: 60px;
  }
}
@media all and (max-width: 1299px) and (min-width: 769px) {
  .logo-brand {
    font-size: 90px;
  }
  .identity, .design {
    font-size: 80px;
  }
  .image, .image2, .image3, .rectangle, .rectangle2 {
    height: 705px;
  }
  .section-1 {
    padding-top: 8.828125vw;
    padding-bottom: 5.1171875vw;
  }
  .headline {
    top: 26.015625vw;
  }
  .section-2 {
    padding-left: 15px;
    padding-right: 15px;
  }
  .section-2 .text1 {
    font-size: 22px;
  }
  .section-3 {
    gap: 4.6875vw;
  }
  .divider > div {
    font-size: 18px !important;
  }
  .section-4 {
    margin-top: 6.640625vw;
  }
  .headline2 {
    padding-top: 7.03125vw;
    gap: 3.671875vw;
  }
  .yamin-adrichalim-ya span {
    font-size: 42px;
  }
  .section-5 {
    padding: 0 0 7.03125vw;
  }
  .section-5 .image6-block .image6 {
    width: 100%;
    height: auto;
  }
  .innovate-create-elevate-architectural-mastery-in-every-detail {
    font-size: 32px;
  }
  .image9 {
    height: 31.6015625vw;
    max-width: 17.1875vw;
  }
  .image10 {
    width: 4.609375vw;
    height: auto;
  }
  .image11 {
    width: 3.6328125vw;
    top: 9.2741935484vw;
    right: 2px;
    left: auto;
  }
  .section-5 .image6-block,
.section-5 .image7-block,
.section-5 .image8-block {
    height: auto;
    width: 20%;
  }
  .section-5 .image6-block .image6,
.section-5 .image7-block .image7,
.section-5 .image8-block .image8 {
    height: auto;
    width: 100%;
  }
  .logo-description {
    gap: 5.46875vw;
  }
  .div4 {
    font-size: 24px;
  }
  .section-5 .button {
    width: 5.46875vw;
    height: 5.46875vw;
  }
  .image12 {
    width: 100%;
    height: auto;
  }
  .section-6 {
    padding-bottom: 100px;
  }
  .section-6 .sc_6_inner {
    gap: 4.6875vw;
  }
  .section-7 {
    padding-bottom: 60px;
  }
  .section-7 .sc_7_inner {
    padding-top: 0;
  }
  .section-7 .image15 {
    max-width: 28.2421875vw;
  }
  .section-8 {
    padding: 0 0 0 15px;
  }
  .section-8 .sc_8_inner {
    gap: 0;
    justify-content: space-between;
  }
  .section-8 .text3 {
    max-width: 48%;
    gap: 0;
  }
  .section-8 .architecture-merges-art-and-science,
.section-8 .in-designing,
.section-8 .structures {
    font-size: 42px;
  }
  .section-8 .bg-image {
    right: -370px;
  }
}

