@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;
  }
}
.goosto {
  background: #040404;
  position: relative;
  overflow: hidden;
}
.goosto .inner2 {
  display: flex;
  flex-direction: column;
  gap: 0px;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
}
.goosto .divider {
  display: flex;
  flex-direction: column;
  gap: 0px;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}
.goosto .divider-text {
  border-style: solid;
  border-color: transparent;
  border-width: 1px;
  padding: 1.5625vw 0px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
  direction: ltr;
}
.goosto .typography-colors {
  color: #ffffff;
  text-align: left;
  font-family: "Unbounded-Regular", sans-serif;
  font-size: calc(16px + 8 * (100vw - 768px) / 1792);
  line-height: 127.98%;
  font-weight: 400;
  position: relative;
}
.goosto .div {
  color: #ffffff;
  text-align: right;
  font-family: "PloniRegularAAA", sans-serif;
  font-size: calc(16px + 8 * (100vw - 768px) / 1792);
  line-height: 127.98%;
  font-weight: 400;
  position: relative;
}
.goosto .divider-line {
  border-style: solid;
  border-color: #ffffff;
  border-width: 1px 0 0 0;
  align-self: stretch;
  flex-shrink: 0;
  height: 0px;
  position: relative;
}
.goosto .running-line {
  display: flex;
  align-items: center;
  justify-content: center;
}
.goosto .running-line .running_line_inner {
  font-family: "Bebas Neue", sans-serif;
  font-size: 101px;
  line-height: 127.98%;
  font-weight: 400;
  text-transform: uppercase;
  display: flex;
  color: #fff;
  position: relative;
  white-space: nowrap;
  margin-right: 0;
  animation-name: running;
  animation-duration: 30s;
  animation-direction: reverse;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
.goosto .running-line .running_line_inner div {
  margin-right: 6px;
}
.goosto .section-1 {
  background: #040404;
  display: flex;
  flex-direction: column;
  gap: 0px;
  align-items: center;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}
.goosto .section-1 .running-line {
  position: absolute;
  top: 41.5%;
}
.goosto .section-1 .running-line .running_line_inner {
  animation-duration: 80s;
}
.goosto .section-1 .running-line div {
  font-family: "Bebas Neue", sans-serif;
  font-size: calc(80px + 232 * (100vw - 768px) / 1792);
  line-height: 100%;
  font-weight: 400;
  text-transform: uppercase;
  position: relative;
  -webkit-text-stroke: 0.5px #FFF;
  color: transparent;
  white-space: nowrap;
}
.goosto .section-1 .bg-image {
  flex-shrink: 0;
  width: 41.5625vw;
  position: absolute;
  right: 0;
  top: 0;
  -o-object-fit: cover;
     object-fit: cover;
}
.goosto .section-1 .bg-image video {
  width: 100%;
  transform: rotate(180deg);
}
.goosto .section-1 .bg-image .bg-dark {
  width: 100%;
  height: 60%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000 100%);
  position: absolute;
  bottom: 0;
  left: 0;
}
.goosto .section-1 .main-image-and-main-text {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  justify-content: flex-start;
  flex-shrink: 0;
  width: 100%;
  height: 60.546875vw;
  position: relative;
  z-index: 1;
}
.goosto .section-1 .website-ui-ux-design-development {
  color: #ffffff;
  text-align: left;
  font-family: "Unbounded-Regular", sans-serif;
  font-size: calc(30px + 57 * (100vw - 768px) / 1792);
  line-height: 127.98%;
  font-weight: 400;
  position: absolute;
  left: 37.6953125vw;
  top: 9.921875vw;
  width: 36.2890625vw;
}
.goosto .section-1 .image {
  flex-shrink: 0;
  width: 100%;
  height: 61.796875vw;
  position: absolute;
  left: 0px;
  top: 0px;
  -o-object-fit: cover;
     object-fit: cover;
}
.goosto .section-1 .scroll-button {
  border-radius: 50%;
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: calc(50px + 62 * (100vw - 768px) / 1792);
  height: calc(50px + 62 * (100vw - 768px) / 1792);
  position: absolute;
  right: 7.34375vw;
  top: 41.484375vw;
  overflow: visible;
  background: linear-gradient(180deg, #FF7C02 0%, #FFC302 100%);
  z-index: 1;
}
.goosto .section-1 .figure7 {
  width: 16px;
  height: 34px;
}
.goosto .section-2 {
  display: flex;
  flex-direction: column;
  gap: 0px;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
  margin-top: -4.3vw;
}
.goosto .section-2 .divider {
  padding: 0px 7.34375vw 0px;
  z-index: 1;
}
.goosto .section-2 .process-block {
  padding: 10px;
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  flex-shrink: 0;
  height: 36.1328125vw;
  position: relative;
}
.goosto .section-2 .bg-gradient {
  background: linear-gradient(103.83deg, rgb(255, 195, 1) 0%, rgb(255, 118, 1) 99.9899983406%);
  border-radius: 7.3828125vw;
  flex-shrink: 0;
  width: 16.2109375vw;
  height: 16.2109375vw;
  position: relative;
  filter: blur(5.03515625vw);
}
.goosto .section-2 .image2 {
  flex-shrink: 0;
  width: 41.7578125vw;
  position: absolute;
  left: 50%;
  top: 19.5%;
  transform: translateX(-50%);
  -o-object-fit: cover;
     object-fit: cover;
}
.goosto .section-2 .image3 {
  flex-shrink: 0;
  width: 14.1015625vw;
  position: absolute;
  left: 15.5%;
  top: -7.5%;
  -o-object-fit: cover;
     object-fit: cover;
  animation-duration: 26s;
}
.goosto .section-2 .image4 {
  flex-shrink: 0;
  width: 6.8359375vw;
  position: absolute;
  left: 27%;
  top: 67.5%;
  -o-object-fit: cover;
     object-fit: cover;
  animation-duration: 30s;
}
.goosto .section-2 .image5 {
  flex-shrink: 0;
  width: 12.05078125vw;
  position: absolute;
  left: 68.3%;
  top: 77%;
  -o-object-fit: cover;
     object-fit: cover;
  animation-duration: 18s;
}
.goosto .section-3 {
  background: #040404;
  padding: 0px 7.34375vw 3.125vw;
  display: flex;
  flex-direction: column;
  gap: 3.90625vw;
  align-items: center;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}
.goosto .section-3 .image6 {
  flex-shrink: 0;
  width: 7.65625vw;
  position: absolute;
  right: 8%;
  top: -20%;
  -o-object-fit: cover;
     object-fit: cover;
  animation-duration: 22s;
}
.goosto .section-3 .image7 {
  border-radius: 1.953125vw;
  align-self: stretch;
  flex-shrink: 0;
  width: 100%;
  position: relative;
  -o-object-fit: cover;
     object-fit: cover;
}
.goosto .section-4 {
  background: #040404;
  padding: 0px 7.34375vw 0px;
  display: flex;
  flex-direction: column;
  gap: 0px;
  align-items: center;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  height: 79.7265625vw;
  position: relative;
}
.goosto .section-4 .divider-line {
  z-index: 3;
}
.goosto .section-4 .running-line {
  position: absolute;
  bottom: 23.2%;
  z-index: 1;
}
.goosto .section-4 .running-line .running_line_inner {
  font-size: calc(30px + 71 * (100vw - 768px) / 1792);
}
.goosto .section-4 .section-4-inner {
  background: #040404;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}
.goosto .section-4 .bg-gradient2 {
  display: flex;
  flex-direction: row;
  gap: 30.2734375vw;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 99.53125vw;
  position: relative;
}
.goosto .section-4 .bg-gradient-left {
  background: linear-gradient(103.83deg, rgb(255, 195, 1) 0%, rgb(255, 118, 1) 99.9899983406%);
  border-radius: 12.399609375vw;
  flex-shrink: 0;
  width: 22.8515625vw;
  height: 22.8515625vw;
  position: relative;
  filter: blur(8.4375vw);
}
.goosto .section-4 .bg-gradient-center {
  background: linear-gradient(103.83deg, rgb(255, 195, 1) 0%, rgb(255, 118, 1) 99.9899983406%);
  border-radius: 7.3828125vw;
  flex-shrink: 0;
  width: 16.2109375vw;
  height: 16.2109375vw;
  position: relative;
  filter: blur(5.01953125vw);
}
.goosto .section-4 .bg-gradient-right {
  background: linear-gradient(103.83deg, rgb(255, 195, 1) 0%, rgb(255, 118, 1) 99.9899983406%);
  border-radius: 13.61328125vw;
  flex-shrink: 0;
  width: 27.2265625vw;
  height: 27.2265625vw;
  position: relative;
  filter: blur(8.4375vw);
}
.goosto .section-4 .image8 {
  flex-shrink: 0;
  width: 31.1328125vw;
  position: absolute;
  left: 32%;
  top: 10%;
  -o-object-fit: cover;
     object-fit: cover;
}
.goosto .section-4 .image9 {
  flex-shrink: 0;
  width: 8.0859375vw;
  position: absolute;
  left: 71%;
  top: 22%;
  -o-object-fit: cover;
     object-fit: cover;
  animation-duration: 18s;
}
.goosto .section-4 .image10 {
  flex-shrink: 0;
  width: 10.1953125vw;
  position: absolute;
  left: 4.7%;
  top: 11%;
  -o-object-fit: cover;
     object-fit: cover;
}
.goosto .section-4 .text {
  display: flex;
  flex-direction: column;
  gap: calc(2px + 6 * (100vw - 768px) / 1792);
  align-items: flex-start;
  justify-content: center;
  flex-shrink: 0;
  position: absolute;
  left: 37.2%;
  bottom: -77%;
  width: 24.921875vw;
  min-width: 26vw;
}
.goosto .section-4 .div2 {
  color: #ffffff;
  text-align: center;
  font-family: "Rubik-Bold", sans-serif;
  font-size: calc(10px + 30 * (100vw - 768px) / 1792);
  line-height: 128%;
  font-weight: 700;
  position: relative;
}
.goosto .section-4 ._2016 {
  color: #ffffff;
  text-align: right;
  font-family: "Rubik-Regular", sans-serif;
  font-size: calc(8px + 16 * (100vw - 768px) / 1792);
  line-height: 128%;
  font-weight: 400;
  position: relative;
}
.goosto .section-4 .image11 {
  flex-shrink: 0;
  width: 20.4296875vw;
  position: absolute;
  left: 71.4%;
  top: 60.5%;
  -o-object-fit: cover;
     object-fit: cover;
}
.goosto .section-4 .image12 {
  flex-shrink: 0;
  width: 20.6640625vw;
  position: absolute;
  left: 4.5%;
  top: 105%;
  -o-object-fit: cover;
     object-fit: cover;
}
.goosto .section-4 .image13 {
  flex-shrink: 0;
  width: 35.0390625vw;
  position: absolute;
  left: 37%;
  bottom: -146.5%;
  -o-object-fit: cover;
     object-fit: cover;
}
.goosto .section-4 .goosto-text {
  flex-shrink: 0;
  width: 10.703125vw;
  position: absolute;
  left: 82.5%;
  bottom: -155%;
  -o-object-fit: cover;
     object-fit: cover;
}
.goosto .section-4 .group-1846-1 {
  flex-shrink: 0;
  width: 26.953125vw;
  min-width: 27vw;
  position: absolute;
  left: 37%;
  bottom: -80.5%;
  -o-object-fit: cover;
     object-fit: cover;
}
.goosto .section-4 .image14 {
  flex-shrink: 0;
  width: 18.75vw;
  position: absolute;
  left: 7.3%;
  top: 37%;
  -o-object-fit: cover;
     object-fit: cover;
}
.goosto .section-5 {
  background: #040404;
  padding: 0px 7.34375vw 2.3046875vw;
  width: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.goosto .section-5 .divider {
  z-index: 1;
}
.goosto .section-5 .section-container {
  position: relative;
}
.goosto .section-5 .image15 {
  flex-shrink: 0;
  width: 65.078125vw;
  position: absolute;
  right: 0;
  top: 9%;
}
.goosto .section-5 .image15 video {
  width: 100%;
}
.goosto .section-5 .running-line {
  position: absolute;
  top: 43.5%;
  z-index: 1;
}
.goosto .section-5 .running-line.left-to-right {
  top: 55%;
}
.goosto .section-5 .running-line.left-to-right .running_line_inner {
  animation-direction: revert;
}
.goosto .section-5 .running-line .running_line_inner {
  animation-duration: 50s;
}
.goosto .section-5 .running-line div {
  font-family: "Bebas Neue", sans-serif;
  font-size: calc(34px + 117 * (100vw - 768px) / 1792);
  line-height: 100%;
  font-weight: 700;
  text-transform: uppercase;
  position: relative;
  -webkit-text-stroke: 1.06px #656565;
  color: transparent;
  white-space: nowrap;
}
.goosto .section-5 picture {
  display: flex;
  justify-content: flex-end;
}
.goosto .section-5 .image-container {
  width: 100%;
}
.goosto .section-5 .image16 {
  width: 51.5234375vw;
  z-index: 1;
  position: relative;
  margin-top: 6.640625vw;
}
.goosto .section-6 {
  background: #040404;
  padding: 0px 7.34375vw;
  display: flex;
  flex-direction: column;
  gap: 3.515625vw;
  align-items: center;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}
.goosto .section-6 .white-bg {
  background: #ffffff;
  flex-shrink: 0;
  width: 100%;
  height: 71.015625vw;
  position: absolute;
  left: 0px;
  top: 62.4609375vw;
}
.goosto .section-6 .image17 {
  align-self: stretch;
  flex-shrink: 0;
  height: 79.5703125vw;
  position: relative;
  -o-object-fit: cover;
     object-fit: cover;
}
.goosto .section-7 {
  background: #ffffff;
  padding: 1.953125vw 7.34375vw 7.8125vw;
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
  direction: ltr;
}
.goosto .section-7 .image-container {
  position: relative;
}
.goosto .section-7 .image-container.is-inview .black-border::before {
  animation: horizontal-line 0.5s linear forwards;
}
.goosto .section-7 .image-container.is-inview .black-border::after {
  animation: horizontal-line 0.5s 1s linear forwards;
}
.goosto .section-7 .image-container.is-inview .black-border div::before {
  animation: vertical-line 0.5s 0.5s linear forwards;
}
.goosto .section-7 .image-container.is-inview .black-border div::after {
  animation: vertical-line 0.5s 1.5s linear forwards;
}
.goosto .section-7 .image18 {
  flex-shrink: 0;
  width: 38.046875vw;
  position: relative;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
}
.goosto .section-7 .black-border {
  width: 61.5%;
  height: 80%;
  position: absolute;
  top: 12%;
  left: 51%;
  transform: translateX(-50%);
}
.goosto .section-7 .black-border::after, .goosto .section-7 .black-border::before {
  content: "";
  position: absolute;
  width: 0;
  height: 1vw;
  background: #000;
}
.goosto .section-7 .black-border::before {
  top: 0;
  right: 0;
}
.goosto .section-7 .black-border::after {
  bottom: 0;
  left: 0;
}
.goosto .section-7 .black-border div:before, .goosto .section-7 .black-border div::after {
  content: "";
  position: absolute;
  width: 1vw;
  height: 0;
  background: #000;
}
.goosto .section-7 .black-border div:before {
  top: 0;
  left: 0;
}
.goosto .section-7 .black-border div::after {
  bottom: 0;
  right: 0;
}
.goosto .section-7 .let-s-begin-our-hookah-trip-together {
  color: #000000;
  text-align: left;
  font-family: "Unbounded-Regular", sans-serif;
  font-size: calc(30px + 71 * (100vw - 768px) / 1792);
  line-height: 127.98%;
  font-weight: 400;
  text-transform: uppercase;
  position: relative;
  width: 29.9609375vw;
}
.goosto .section-7 .image19 {
  flex-shrink: 0;
  width: 4.66796875vw;
  position: absolute;
  right: 18.5%;
  top: 33.5%;
  -o-object-fit: cover;
     object-fit: cover;
  animation-duration: 26s;
}
.goosto .section-7 .image20 {
  flex-shrink: 0;
  width: 6.93359375vw;
  position: absolute;
  right: 10%;
  top: 59%;
  -o-object-fit: cover;
     object-fit: cover;
  animation-duration: 18s;
}
.goosto .section-8 {
  padding: 0px 7.34375vw;
  display: flex;
  flex-direction: column;
  gap: 0px;
  align-items: center;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  height: 51.328125vw;
  position: relative;
}
.goosto .section-8 .divider {
  display: none;
}
.goosto .section-8 .black-bg {
  background: #020202;
  flex-shrink: 0;
  width: 100%;
  height: 34.4140625vw;
  position: absolute;
  left: 0px;
  top: 16.9140625vw;
}
.goosto .section-8 .image21 {
  flex-shrink: 0;
  width: 83.1640625vw;
  position: absolute;
  left: 50%;
  top: -5.078125vw;
  transform: translateX(-50%);
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
}
.goosto .section-8 .video-container {
  width: 65.078125vw;
  position: absolute;
  left: 0;
  bottom: 0;
}
.goosto .section-8 .video-container video {
  width: 100%;
  transform: rotate(180deg);
}
.goosto .section-9 {
  background: #020202;
  padding: 0px 7.34375vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  height: 171.6796875vw;
  position: relative;
}
.goosto .divider4 {
  display: flex;
  flex-direction: row;
  margin-bottom: 8.59375vw;
  gap: 0.78125vw;
  align-items: flex-end;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
  direction: ltr;
}
.goosto .mobile_adaptive {
  color: #ffffff;
  text-align: left;
  font-family: "Unbounded-Regular", sans-serif;
  font-size: calc(20px + 28 * (100vw - 768px) / 1792);
  line-height: 131.98%;
  font-weight: 400;
  text-transform: uppercase;
  position: relative;
}
.goosto .divider-subtitle {
  display: flex;
  flex-direction: column;
  gap: 0.9765625vw;
  align-items: flex-end;
  justify-content: flex-start;
  flex: 1;
  position: relative;
}
.goosto .div4 {
  color: #ffffff;
  text-align: left;
  font-family: "PloniRegularAAA", sans-serif;
  font-size: calc(16px + 4 * (100vw - 768px) / 1792);
  line-height: 100.48%;
  font-weight: 400;
  text-transform: uppercase;
  position: relative;
}
.goosto .divider-line3 {
  border-style: solid;
  border-color: #ffffff;
  border-width: 1px 0 0 0;
  align-self: stretch;
  flex-shrink: 0;
  height: 0px;
  position: relative;
  transform-origin: 0 0;
  transform: rotate(0deg) scale(1, 1);
}
.goosto .image22 {
  flex-shrink: 0;
  width: 52.98828125vw;
  position: absolute;
  left: 0;
  top: 49.4%;
  -o-object-fit: cover;
     object-fit: cover;
}
.goosto .image22 video {
  width: 100%;
  transform: rotate(180deg);
}
.goosto .bgb-gradient {
  background: linear-gradient(180deg, rgb(255, 113, 0) 0%, rgb(255, 145, 0) 31.7708343267%, rgb(255, 214, 1) 100%);
  border-radius: 50%;
  flex-shrink: 0;
  width: 29.0234375vw;
  height: 29.1015625vw;
  position: absolute;
  left: 25.8%;
  top: 70.2%;
}
.goosto .bgb-gradient2 {
  background: linear-gradient(180deg, rgb(255, 113, 0) 0%, rgb(255, 145, 0) 31.7708343267%, rgb(255, 214, 1) 100%);
  border-radius: 50%;
  flex-shrink: 0;
  width: 18.6328125vw;
  height: 18.59375vw;
  position: absolute;
  left: 39.5%;
  top: 10.5%;
}
.goosto .bgb-gradient3 {
  background: linear-gradient(180deg, rgb(255, 113, 0) 0%, rgb(255, 145, 0) 31.7708343267%, rgb(255, 214, 1) 100%);
  border-radius: 50%;
  flex-shrink: 0;
  width: 19.1015625vw;
  height: 19.1015625vw;
  position: absolute;
  left: 40.5%;
  top: 66.5%;
}
.goosto .phone-images {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
  direction: ltr;
}
.goosto .columns {
  display: flex;
  gap: 2.734375vw;
  align-items: flex-start;
  justify-content: flex-end;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
  direction: ltr;
}
.goosto .column-1 {
  padding: 0px 0.78125vw 16.40625vw 0px;
  display: flex;
  flex-direction: column;
  gap: 1.5625vw;
  align-items: flex-start;
  justify-content: flex-start;
  flex: 1;
  position: relative;
  top: -8.28125vw;
}
.goosto .mobile-images {
  display: flex;
  flex-direction: row;
  gap: 1.5625vw;
  align-items: flex-start;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}
.goosto .image23 {
  flex-shrink: 0;
  width: 19.53125vw;
  position: relative;
  -o-object-fit: cover;
     object-fit: cover;
}
.goosto .column-2 {
  padding: 8.3984375vw 0px 0px 0.78125vw;
  display: flex;
  flex-direction: column;
  gap: 8.59375vw;
  align-items: flex-start;
  justify-content: flex-start;
  flex: 1;
  height: 57.12890625vw;
  position: relative;
}
.goosto .frame-37042 {
  padding-top: 2.9296875vw;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
  justify-content: flex-start;
  width: 100%;
  flex-shrink: 0;
  position: relative;
}
.goosto .div5 {
  color: #ffffff;
  text-align: right;
  font-family: "PloniRegularAAA", sans-serif;
  font-size: 48px;
  line-height: 128%;
  font-weight: 700;
  position: relative;
  align-self: stretch;
}
.goosto .div6 {
  color: #ffffff;
  text-align: right;
  font-family: "PloniRegularAAA", sans-serif;
  font-size: calc(16px + 20 * (100vw - 768px) / 1792);
  line-height: 128%;
  font-weight: 400;
  position: relative;
  width: 100%;
  max-width: 34.53125vw;
  direction: rtl;
}
.goosto .mobile-images2 {
  display: flex;
  flex-direction: row;
  gap: 1.5625vw;
  align-items: flex-start;
  justify-content: flex-end;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}
.goosto .desktop_images {
  display: flex;
  flex-direction: row;
  gap: 0px;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}
.goosto .column-12 {
  display: flex;
  flex-direction: column;
  gap: 0px;
  align-items: flex-start;
  justify-content: center;
  flex: 1;
  position: relative;
  left: -10.078125vw;
}
.goosto .image24 {
  display: flex;
  flex-direction: row;
  gap: 0px;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  flex-shrink: 0;
  min-width: 50vw;
  position: relative;
}
.goosto .image25 {
  flex-shrink: 0;
  position: relative;
  -o-object-fit: cover;
     object-fit: cover;
}
.goosto .column-22 {
  display: flex;
  flex-direction: column;
  gap: 3.90625vw;
  align-items: flex-end;
  justify-content: center;
  flex: 1;
  position: relative;
  right: 7.34375vw;
}
.goosto .frame-37038 {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  min-width: 50vw;
  position: relative;
}
.goosto .image26 {
  flex-shrink: 0;
  width: 50vw;
  position: relative;
  -o-object-fit: cover;
     object-fit: cover;
}
.goosto .frame-37039 {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  min-width: 50vw;
  position: relative;
}
.goosto .image27 {
  flex-shrink: 0;
  width: 50vw;
  position: relative;
  -o-object-fit: cover;
     object-fit: cover;
}
.goosto .image28 {
  flex-shrink: 0;
  width: 10.703125vw;
  position: absolute;
  left: 5%;
  bottom: 0;
  -o-object-fit: cover;
     object-fit: cover;
}
.goosto .image29 {
  flex-shrink: 0;
  width: 12.05078125vw;
  position: absolute;
  left: 7.5%;
  top: 33.5%;
  -o-object-fit: cover;
     object-fit: cover;
  animation-duration: 26s;
}
.goosto .image30 {
  flex-shrink: 0;
  width: 16.42578125vw;
  position: absolute;
  left: 17.5%;
  top: 36.3%;
  -o-object-fit: cover;
     object-fit: cover;
  animation-duration: 18s;
}
.goosto .running-line2 {
  padding: 1.484375vw 0;
  z-index: 1;
  position: absolute;
  bottom: 0;
  border: 1px solid #FFF;
}
.goosto .running-line2 .running_line_inner {
  font-size: calc(20px + 43 * (100vw - 768px) / 1792);
  line-height: 100%;
}
.goosto .image-animation {
  animation: swimming-effect-animation 22s infinite alternate ease-in-out;
}
.goosto .gradient-animation {
  animation: gradient-animation 10s infinite ease-in-out;
}
.goosto .bg-dark_1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000 100%);
  transform: rotate(180deg);
}
.goosto .bg-dark_2 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 55%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000 100%);
}

.portfolio {
  background: #1E1E1E;
  padding-top: 100px;
}

@keyframes swimming-effect-animation {
  0% {
    transform: translateX(0) translateY(0);
  }
  25% {
    transform: translateX(-0.98vw) translateY(-0.39vw);
  }
  50% {
    transform: translateX(-1.56vw) translateY(0.98vw);
  }
  75% {
    transform: translateX(-5px) translateY(-1.38vw);
  }
  100% {
    transform: translateX(0) translateY(0);
  }
}
@keyframes gradient-animation {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.7);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes horizontal-line {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
@keyframes vertical-line {
  0% {
    height: 0;
  }
  100% {
    height: 100%;
  }
}
@media all and (max-width: 1440px) and (min-width: 768px) {
  .goosto .section-2 {
    margin-top: -3vw;
  }
  .goosto .section-4 .running-line {
    bottom: 21%;
  }
}
@media all and (max-width: 1280px) and (min-width: 768px) {
  .goosto .section-1 .running-line {
    top: 45%;
  }
}
@media all and (max-width: 1200px) and (min-width: 768px) {
  .goosto .section-9 {
    height: 180vw;
  }
}
@media all and (max-width: 768px) {
  .goosto .-menu-pd {
    padding-top: 60px;
  }
  .goosto .section-1 {
    padding-bottom: 66px;
  }
  .goosto .section-1 .bg-text {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-start;
    flex-shrink: 0;
    position: absolute;
    left: 0;
    top: 28.5%;
    z-index: 1;
  }
  .goosto .section-1 .bg-text_text {
    font-family: "Bebas Neue", sans-serif;
    font-size: 76px;
    line-height: 84%;
    font-weight: 400;
    color: transparent;
    position: relative;
    -webkit-text-stroke: 0.5px #444444;
    white-space: nowrap;
  }
  .goosto .section-1 .bg-text_text1 {
    text-align: left;
    left: 4.5%;
  }
  .goosto .section-1 .bg-text_text2 {
    text-align: right;
    left: -10%;
  }
  .goosto .section-1 .bg-image {
    width: 100%;
  }
  .goosto .section-1 .main-image-and-main-text {
    padding: 40px 4vw 0;
    height: auto;
    max-width: 425px;
  }
  .goosto .section-1 .website-ui-ux-design-development {
    position: relative;
    width: 100%;
    top: auto;
    left: auto;
    font-size: 40px;
  }
  .goosto .section-1 .image33 {
    margin-top: -40px;
  }
  .goosto .section-1 .scroll-button {
    width: 75px;
    height: 75px;
    left: 4vw;
    bottom: 86px;
    top: auto;
    right: auto;
  }
  .goosto .section-2 {
    margin-top: 0;
    margin-bottom: 90px;
    gap: 90px;
  }
  .goosto .section-2 .divider {
    padding: 0 4vw;
  }
  .goosto .section-2 .process-block {
    height: auto;
    gap: 0;
    padding: 0 4vw;
  }
  .goosto .section-2 .image2 {
    position: relative;
    width: 100%;
    left: auto;
    top: auto;
    transform: translateX(0);
    max-width: 390.5px;
  }
  .goosto .section-2 .bg-gradient {
    width: 151.56px;
    height: 151.56px;
    border-radius: 69.024px;
    position: absolute;
    top: 12%;
    filter: blur(47.5px);
  }
  .goosto .section-2 .image3 {
    width: 132px;
    left: 7%;
    top: -55%;
  }
  .goosto .section-2 .image4 {
    width: 64px;
    left: 32%;
    top: 84%;
  }
  .goosto .section-2 .image5 {
    width: 113px;
    left: 47%;
    top: 142%;
    z-index: 1;
  }
  .goosto .section-3 {
    padding: 0 4vw 50px;
    gap: 37px;
  }
  .goosto .section-3 .image6 {
    width: 71.5px;
    right: 0;
    top: -175%;
  }
  .goosto .section-3 .image7 {
    border-radius: 20px;
    max-width: 99.23%;
  }
  .goosto .section-4 {
    padding: 0 4vw;
    height: 257.4117647059vw;
    max-height: 1850px;
  }
  .goosto .section-4 .divider {
    z-index: 1;
  }
  .goosto .section-4 .bg-gradient2 {
    flex-direction: column;
    position: absolute;
    top: 0;
    left: 0;
    height: 248vw;
  }
  .goosto .section-4 .bg-gradient-left {
    width: 74.1176470588vw;
    height: 74.1176470588vw;
    filter: blur(23.0117647059vw);
    right: -47%;
    top: 5%;
    position: absolute;
  }
  .goosto .section-4 .bg-gradient-right {
    width: 70vw;
    max-width: 415px;
    height: 70vw;
    max-height: 415px;
    filter: blur(20vw);
    left: -45%;
    bottom: 15%;
    position: absolute;
  }
  .goosto .section-4 .section-4-inner {
    height: 248vw;
    z-index: 0;
  }
  .goosto .section-4 .image8 {
    width: 83.5294117647vw;
    right: 0;
    left: auto;
    top: 34.7%;
  }
  .goosto .section-4 .image9 {
    width: 25.1764705882vw;
    left: auto;
    right: 0;
    top: 23.5%;
  }
  .goosto .section-4 .image10 {
    width: 27.2941176471vw;
    left: 0;
    top: 3.8%;
  }
  .goosto .section-4 .image12 {
    width: 35.2941176471vw;
    top: 13.2%;
    left: 0;
  }
  .goosto .section-4 .image13 {
    width: 48.4705882353vw;
    left: 0;
    bottom: 15%;
  }
  .goosto .section-4 .image14 {
    width: 58.8235294118vw;
    right: -8%;
    left: auto;
    top: 3.8%;
  }
  .goosto .section-4 .goosto-text {
    width: 34.8235294118vw;
    right: 0;
    bottom: 12.2%;
    left: auto;
  }
  .goosto .section-4 .running-line {
    bottom: 55px;
  }
  .goosto .section-4 .running-line .running_line_inner {
    font-size: 31px;
  }
  .goosto .section-5 {
    padding: 0 4vw 70px;
  }
  .goosto .section-5 .image16 {
    width: 100%;
  }
  .goosto .section-6 {
    padding: 0 4vw 66px;
    gap: 20px;
  }
  .goosto .section-6 .image-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .goosto .section-6 .image17 {
    min-width: 577px;
    height: auto;
    border-radius: 12px;
    border: 0.5px solid #FFF;
  }
  .goosto .section-6 .image17.left {
    left: -16%;
  }
  .goosto .section-6 .image17.right {
    right: -16%;
  }
  .goosto .section-7 {
    padding: 32px 4vw 60px;
    flex-direction: column;
    gap: 0;
  }
  .goosto .section-7 .image-container {
    order: 2;
    margin-top: -6px;
  }
  .goosto .section-7 .black-border::after, .goosto .section-7 .black-border::before {
    height: 2vw;
  }
  .goosto .section-7 .black-border div:before, .goosto .section-7 .black-border div::after {
    width: 2vw;
  }
  .goosto .section-7 .let-s-begin-our-hookah-trip-together {
    width: 100%;
    font-size: 45.5px;
    max-width: 391px;
  }
  .goosto .section-7 .image18 {
    width: 100%;
    max-width: 391px;
  }
  .goosto .section-7 .image19 {
    width: 12.8235294118vw;
    right: 53%;
    top: 19%;
    max-width: 54.5px;
  }
  .goosto .section-7 .image20 {
    width: 18.9411764706vw;
    right: auto;
    left: 77%;
    top: 19%;
    max-width: 80.5px;
  }
  .goosto .section-8 {
    background: #fff;
    height: auto;
    padding: 0;
    margin-bottom: 100px;
  }
  .goosto .section-8 .divider {
    display: flex;
    padding: 0 4vw;
  }
  .goosto .section-8 .divider-text {
    border-color: #fff;
  }
  .goosto .section-8 .divider-line {
    border-color: #000;
  }
  .goosto .section-8 .typography-colors,
  .goosto .section-8 .div {
    color: #000;
  }
  .goosto .section-8 .image-container {
    position: relative;
  }
  .goosto .section-8 .image21 {
    position: relative;
    top: auto;
    left: auto;
    transform: translateX(0);
    width: 100%;
    max-width: 425px;
    margin-top: -45px;
    z-index: 2;
  }
  .goosto .section-8 .black-bg {
    height: 175px;
    top: auto;
    bottom: 0;
  }
  .goosto .section-8 .bg-gradient {
    background: linear-gradient(180deg, rgb(255, 113, 0) 0%, rgb(255, 145, 0) 31.7708343267%, rgb(255, 214, 1) 100%);
    border-radius: 50%;
  }
  .goosto .section-8 .bg-gradient-big {
    width: 55.5294117647vw;
    height: 55.5294117647vw;
    max-width: 236px;
    max-height: 236px;
    position: absolute;
    right: -18%;
    bottom: -14%;
    z-index: 1;
  }
  .goosto .section-8 .bg-gradient-small {
    width: 13.1764705882vw;
    height: 13.1764705882vw;
    position: absolute;
    left: -6%;
    top: 33%;
    z-index: 1;
  }
  .goosto .section-9 {
    padding: 0 4vw 123px;
    height: auto;
    gap: 50px;
  }
  .goosto .section-9 .divider4 {
    display: none;
  }
  .goosto .section-9 .frame-37042 {
    padding: 0;
    gap: 16px;
    max-width: 425px;
  }
  .goosto .section-9 .div5 {
    font-size: 24px;
  }
  .goosto .section-9 .div6 {
    font-size: 18px;
    max-width: 100%;
  }
  .goosto .section-9 .phone-images {
    gap: 50px;
    align-items: flex-end;
  }
  .goosto .section-9 .column-1 {
    padding: 77px 0 0;
    top: 0;
  }
  .goosto .section-9 .mobile-images,
  .goosto .section-9 .mobile-images2 {
    flex-direction: column;
    gap: 20px;
  }
  .goosto .section-9 .mobile-images2 picture:nth-of-type(1) {
    order: 2;
  }
  .goosto .section-9 .column-2 {
    padding: 0;
    height: auto;
  }
  .goosto .section-9 .image23 {
    width: 100%;
    max-width: 98.95%;
  }
  .goosto .section-9 .bgb-gradient {
    width: 51.5294117647vw;
    height: 51.5294117647vw;
    left: auto;
    right: 4vw;
    top: 67%;
  }
  .goosto .section-9 .bgb-gradient3 {
    width: 337px;
    height: 337px;
    left: 36%;
    top: auto;
    bottom: -6%;
  }
  .goosto .section-9 .image29 {
    width: 24vw;
    max-width: 102px;
    left: 4%;
    top: -6.4%;
  }
  .goosto .section-9 .image30 {
    width: 33.6470588235vw;
    max-width: 143px;
    left: 31%;
    top: -5%;
  }
  .goosto .section-9 .desktop_images {
    flex-direction: column;
  }
  .goosto .section-9 .column-22 {
    right: 0;
    gap: 80vw;
  }
  .goosto .section-9 .image26,
  .goosto .section-9 .image27 {
    width: 100%;
  }
  .goosto .section-9 .column-12 {
    position: absolute;
    left: -20%;
  }
  .goosto .section-9 .image24 {
    min-width: 92vw;
    max-width: 92vw;
  }
  .goosto .section-9 .image22 {
    width: 161.6470588235vw;
    left: -61.1764705882vw;
    bottom: 0;
    top: auto;
  }
  .goosto .divider-text {
    padding: 0 0 18px;
  }
  .goosto .typography-colors {
    font-size: 14px;
  }
  .goosto .div {
    font-size: 16px;
  }
  .goosto .running-line2 {
    border: 0;
    padding: 0;
    bottom: 68px;
  }
  .goosto .running-line2 .running_line_inner {
    font-size: 18px;
  }
  .goosto .running-line2 .running_line_inner div {
    margin-right: 4px;
  }
}
@media all and (max-width: 425px) {
  .goosto .section-1 {
    padding-bottom: 15.5294117647vw;
  }
  .goosto .section-1 .bg-text_text {
    font-size: calc(56px + 20 * (100vw - 360px) / 65);
  }
  .goosto .section-1 .website-ui-ux-design-development {
    font-size: calc(34px + 6 * (100vw - 360px) / 65);
  }
  .goosto .section-2 {
    margin-bottom: 21.1764705882vw;
    gap: 21.1764705882vw;
  }
  .goosto .section-2 .bg-gradient {
    width: 35.6611764706vw;
    height: 35.6611764706vw;
    border-radius: 16.2352941176vw;
  }
  .goosto .section-2 .image3 {
    width: 31.0588235294vw;
  }
  .goosto .section-2 .image4 {
    width: 15.0588235294vw;
  }
  .goosto .section-2 .image5 {
    width: 14.7135416667vw;
  }
  .goosto .section-2 .image6 {
    width: 16.8235294118vw;
  }
  .goosto .section-3 {
    padding: 0 4vw 11.7647058824vw;
    gap: 8.7058823529vw;
  }
  .goosto .section-5 {
    padding: 0 4vw 16.4705882353vw;
  }
  .goosto .section-6 {
    padding: 0 4vw 15.5294117647vw;
  }
  .goosto .section-6 .image17 {
    min-width: 135.7647058824vw;
  }
  .goosto .section-7 .let-s-begin-our-hookah-trip-together {
    font-size: calc(38px + 7.5 * (100vw - 360px) / 65);
  }
  .goosto .section-8 .black-bg {
    height: 41.1764705882vw;
  }
  .goosto .section-8 .image21 {
    margin-top: -10.5882352941vw;
  }
  .goosto .section-9 {
    padding: 0 4vw 28.9411764706vw;
  }
  .goosto .divider-text {
    padding: 0 0 4.2352941176vw;
  }
  .goosto .running-line2 {
    bottom: 16vw;
  }
}
