@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%);
}

.plugin-page .page-head {
  padding: 105px 0 0;
}
.plugin-page .page-head .inner {
  max-width: 1283px;
  width: 100%;
  margin: 0 auto;
  padding-bottom: 55px;
  border-bottom: 1px solid #000;
}
.plugin-page .page-head .title {
  position: relative;
  margin-bottom: 45px;
}
.plugin-page .page-head .title h1 {
  color: #000;
  text-align: right;
  font-size: 105px;
  font-weight: 900;
  line-height: 97.5%;
}
.plugin-page .page-head .title h1 strong {
  position: relative;
}
.plugin-page .page-head .title h1 strong::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -32px;
  bottom: -7px;
  right: -24px;
  border-radius: 4px;
  background: linear-gradient(131deg, #EBFF01, #8FFF01, #EBFF01, #8FFF01, #EBFF01);
  -webkit-animation: gradient 10s ease infinite;
          animation: gradient 10s ease infinite;
  background-size: 300%;
  z-index: -1;
  transform: rotate(-0.9deg);
}
.plugin-page .page-head .title .subtitle {
  position: absolute;
  top: 162px;
  left: 140px;
  color: #000;
  text-align: right;
  font-size: 24px;
  font-weight: 400;
  line-height: 104%;
  max-width: 200px;
}
.plugin-page .page-head .title .subtitle::before {
  content: "";
  position: absolute;
  width: 55px;
  height: 57px;
  top: -15px;
  left: 6px;
  background: url(https://qa.wemake.co.il/mod/plugin/img/cursor_star.png) no-repeat center;
}
.plugin-page .page-head .text {
  color: #000;
  text-align: right;
  font-size: 20px;
  font-weight: 400;
  line-height: 140%;
  max-width: 737px;
  width: 100%;
}
.plugin-page .about-plugin {
  direction: ltr;
  padding-top: 25px;
  position: relative;
  margin-bottom: 45px;
}
.plugin-page .about-plugin .inner {
  max-width: 1286px;
  width: 100%;
  margin: 0 auto;
}
.plugin-page .about-plugin .top-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 105px;
}
.plugin-page .about-plugin .button-download {
  border-radius: 60px;
  background: #116FFF;
  width: 235px;
  padding: 20px 38px;
  color: #fff;
  text-align: right;
  font-size: 24px;
  font-weight: 400;
  line-height: 104%;
  display: block;
  box-sizing: border-box;
  transition: all 0.3s linear;
}
.plugin-page .about-plugin .button-download:hover {
  background: #0759cb;
}
.plugin-page .about-plugin .downloads {
  display: flex;
  align-items: center;
}
.plugin-page .about-plugin .downloads_count {
  display: flex;
  align-items: center;
  position: relative;
}
.plugin-page .about-plugin .downloads_count p {
  color: #000;
  text-align: right;
  font-size: 64px;
  font-weight: 700;
}
.plugin-page .about-plugin .downloads_count .stars {
  display: flex;
  flex-direction: column;
  color: #000;
  text-align: right;
  font-size: 28px;
  font-weight: 400;
  position: relative;
  margin-top: 20px;
  margin-right: 15px;
}
.plugin-page .about-plugin .downloads_count .stars::before {
  content: "";
  position: absolute;
  width: 80px;
  height: 15px;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: url(https://qa.wemake.co.il/mod/plugin/img/stars.png) no-repeat center;
  display: block;
}
.plugin-page .about-plugin .downloads_count::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 41px;
  top: 50%;
  transform: translateY(-50%);
  right: -40px;
  background: #848484;
}
.plugin-page .about-plugin .wordpress {
  display: flex;
  align-items: center;
  margin-left: 77px;
}
.plugin-page .about-plugin .wordpress p {
  max-width: 138px;
  color: #000;
  text-align: right;
  font-size: 24px;
  font-weight: 400;
  line-height: 91%;
}
.plugin-page .about-plugin .about-plugin_content {
  border-radius: 12px;
  background: #FBFBFB;
  padding: 19px 10px 38px;
  position: relative;
}
.plugin-page .about-plugin .picture-section {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.plugin-page .about-plugin .about_plugin_pic1 {
  position: relative;
  top: -155px;
  left: 35px;
  height: 438px;
  max-width: 350px;
  z-index: 1;
}
.plugin-page .about-plugin .about_plugin_pic2 {
  position: relative;
  left: -64px;
  height: 434px;
  max-width: 399px;
}
.plugin-page .about-plugin .content-section {
  position: absolute;
  bottom: 78px;
  left: 58px;
  text-align: left;
}
.plugin-page .about-plugin .content-section::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 7px;
  top: 50px;
  left: 30px;
  background: url(https://qa.wemake.co.il/mod/plugin/img/access_after.svg) no-repeat center;
}
.plugin-page .about-plugin .content-section::after {
  content: "";
  position: absolute;
  width: 225px;
  height: 190px;
  top: -112px;
  right: -40px;
  background: url(https://qa.wemake.co.il/mod/plugin/img/access_star.svg) no-repeat center;
}
.plugin-page .about-plugin .content-section .p1 {
  color: #343434;
  font-size: 31px;
  font-weight: 700;
  line-height: 85.5%;
  margin-bottom: 45px;
}
.plugin-page .about-plugin .content-section .p1 strong {
  color: #116FFF;
}
.plugin-page .about-plugin .content-section .p2 {
  color: #000;
  font-size: 31px;
  font-weight: 400;
  line-height: 95%;
}
.plugin-page .about-plugin .figure {
  content: "";
  position: absolute;
  width: 841px;
  height: 300px;
  bottom: 34px;
  right: 0;
  background: url(https://qa.wemake.co.il/mod/plugin/img/figure2.png) no-repeat center;
  z-index: 1;
}
.plugin-page .about-plugin .cursor {
  content: "";
  position: absolute;
  width: 37px;
  height: 40px;
  top: -10px;
  left: calc(50% - 5px);
  background: url(https://qa.wemake.co.il/mod/plugin/img/cursor_star.png) no-repeat center;
  background-size: contain;
}
.plugin-page .possibilities {
  direction: ltr;
  margin-bottom: 150px;
}
.plugin-page .possibilities .inner {
  max-width: 1286px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
.plugin-page .image-section_possibilities {
  max-width: 399px;
  min-width: 399px;
  width: 31%;
  margin-right: 42px;
}
.plugin-page .content-section_possibilities {
  padding-top: 85px;
  width: 100%;
}
.plugin-page .content-section_possibilities .subtitle {
  color: #000;
  text-align: right;
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 7px;
}
.plugin-page .content-section_possibilities .title {
  color: #1F1F1F;
  text-align: right;
  font-size: 42px;
  font-weight: 900;
  margin-bottom: 45px;
}
.plugin-page .content-section_possibilities .middle-section {
  display: flex;
  justify-content: space-between;
  margin-bottom: 45px;
}
.plugin-page .content-section_possibilities .middle-section_content {
  max-width: 503px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.plugin-page .content-section_possibilities .subtitle2 {
  color: #000;
  text-align: right;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 1px;
}
.plugin-page .content-section_possibilities .title2 {
  color: #1F1F1F;
  text-align: right;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 28px;
}
.plugin-page .content-section_possibilities .text {
  color: #575757;
  text-align: right;
  font-size: 20px;
  font-weight: 400;
  line-height: 144%;
  max-width: 480px;
  direction: rtl;
}
.plugin-page .content-section_possibilities .text strong {
  color: #116FFF;
}
.plugin-page .content-section_possibilities .middle-section_img {
  max-width: 222px;
  position: relative;
}
.plugin-page .content-section_possibilities .middle-section_img::after {
  content: "";
  position: absolute;
  width: 90px;
  height: 35px;
  left: 0;
  bottom: -25px;
  background: url(https://qa.wemake.co.il/mod/plugin/img/arrow.svg) no-repeat center;
  background-size: contain;
}
.plugin-page .content-section_possibilities .switcher {
  padding: 8px 25px 8px 48px;
  border-radius: 82px;
  border: 0.526px solid #333;
  color: #1F1F1F;
  text-align: right;
  font-size: 18px;
  font-weight: 700;
  line-height: 99.5%;
  margin: 5px 0 15px;
  position: relative;
}
.plugin-page .content-section_possibilities .switcher::before {
  content: "";
  position: absolute;
  width: 40px;
  height: 40px;
  top: 50%;
  left: 6px;
  transform: translateY(-50%);
  background: #FDD736;
  border-radius: 50%;
}
.plugin-page .content-section_possibilities .accessible {
  display: flex;
  justify-content: center;
}
.plugin-page .content-section_possibilities .accessible .icon {
  width: 80px;
  height: 80px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.plugin-page .content-section_possibilities .accessible .icon1 {
  margin-right: 7px;
  background: #FDD736;
}
.plugin-page .content-section_possibilities .accessible .icon2 {
  border: 0.5px solid #000;
}
.plugin-page .content-section_possibilities .bottom-section {
  display: flex;
  justify-content: space-between;
}
.plugin-page .content-section_possibilities .block {
  max-width: 392px;
  width: 100%;
  position: relative;
}
.plugin-page .content-section_possibilities .block-text {
  position: absolute;
  top: 22px;
  right: 49px;
}
.plugin-page .content-section_possibilities .block-text_1 {
  color: #1F1F1F;
  text-align: right;
  font-size: 20px;
  font-weight: 700;
}
.plugin-page .content-section_possibilities .block-text_2 {
  color: #1F1F1F;
  text-align: right;
  font-size: 18px;
  font-weight: 400;
}
.plugin-page .content-section_possibilities .block-wordpress {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  max-width: 328px;
  min-width: 328px;
  width: 100%;
  height: auto;
  border-radius: 8px;
  background: #F3F3F3;
  padding: 16px;
}
.plugin-page .content-section_possibilities .block-wordpress .col1 {
  max-width: 212px;
  margin-right: 21px;
}
.plugin-page .content-section_possibilities .block-wordpress .col1 .row {
  color: #343434;
  text-align: right;
  font-size: 20px;
  font-weight: 700;
  position: relative;
  margin-right: 16px;
  margin-top: 7px;
}
.plugin-page .content-section_possibilities .block-wordpress .col1 .row strong {
  color: #116FFF;
  position: relative;
}
.plugin-page .content-section_possibilities .block-wordpress .col1 .row strong::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 4px;
  top: 16px;
  left: 17px;
  background: url(https://qa.wemake.co.il/mod/plugin/img/access_after.svg) no-repeat center;
  background-size: contain;
}
.plugin-page .content-section_possibilities .block-wordpress .col1 .row::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  top: 50%;
  right: -20px;
  transform: translateY(-50%);
  background: url(https://qa.wemake.co.il/mod/plugin/img/check.svg) no-repeat center;
  background-size: contain;
}
.plugin-page .content-section_possibilities .block-wordpress .col1 p {
  color: #32373C;
  text-align: right;
  font-size: 20.5px;
  font-weight: 400;
}
.plugin-page .about-plugin2 {
  direction: ltr;
  margin-bottom: 190px;
}
.plugin-page .about-plugin2 .inner {
  max-width: 1656px;
  width: 100%;
  margin: 0 auto 100px;
  border-radius: 28px;
  background: #116FFF;
  display: flex;
  padding: 54px 220px 94px;
}
.plugin-page .about-plugin2 .about-plugin2_content {
  max-width: 724px;
  margin-right: 29px;
}
.plugin-page .about-plugin2 .heading {
  margin-bottom: 40px;
}
.plugin-page .about-plugin2 .heading .subtitle {
  color: #FFF;
  text-align: right;
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 17px;
}
.plugin-page .about-plugin2 .heading .title {
  color: #FFF;
  text-align: right;
  font-size: 42px;
  font-weight: 900;
  margin-bottom: 15px;
}
.plugin-page .about-plugin2 .heading .text {
  color: #FFF;
  text-align: right;
  font-size: 20px;
  font-weight: 400;
  line-height: 140%;
}
.plugin-page .about-plugin2 .features {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  margin-right: -7px;
}
.plugin-page .about-plugin2 .feature {
  padding: 20px;
  border-radius: 90px;
  background: #FFF;
  box-shadow: 5px 4px 37px 0px rgba(0, 0, 0, 0.15);
  color: #000;
  text-align: right;
  font-size: 24px;
  font-weight: 400;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.plugin-page .about-plugin2 .feature .feature-icons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 95px;
}
.plugin-page .about-plugin2 .feature .feature-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #F9F9F9;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 5px;
}
.plugin-page .about-plugin2 .feature .feature-icon:not(:last-of-type) {
  margin-right: 5px;
}
.plugin-page .about-plugin2 .feature .feature-icon img {
  width: 20px;
}
.plugin-page .about-plugin2 .feature.feature1 {
  width: calc(55% - 6.5px);
  max-width: 365px;
  margin-right: 13px;
  margin-bottom: 16px;
}
.plugin-page .about-plugin2 .feature.feature2 {
  width: calc(45% - 6.5px);
  max-width: 325px;
  margin-bottom: 16px;
}
.plugin-page .about-plugin2 .feature.feature2 .feature-icons {
  width: 89px;
}
.plugin-page .about-plugin2 .feature.feature3 {
  width: calc(45% - 6.5px);
  max-width: 325px;
  margin-right: 13px;
}
.plugin-page .about-plugin2 .feature.feature4 {
  width: calc(55% - 6.5px);
  max-width: 365px;
}
.plugin-page .about-plugin2 .about-plugin2_img {
  max-width: 412px;
  width: 100%;
  position: relative;
}
.plugin-page .about-plugin2 .features_pic {
  position: absolute;
  top: -180px;
  left: 0;
}
.plugin-page .about-plugin2 .accessible-icon {
  width: 95px;
  height: 95px;
  border-radius: 10px;
  background: #FDD736;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: -103px;
  right: -90px;
}
.plugin-page .about-plugin2 .accessible-icon img {
  width: 55px;
}
.plugin-page .cross-browser {
  margin-bottom: 50px;
}
.plugin-page .cross-browser h2 {
  color: #1F1F1F;
  text-align: center;
  font-family: SimplerPro_Extended;
  font-size: 45px;
  font-weight: 900;
  margin-bottom: 10px;
}
.plugin-page .cross-browser .text {
  color: #505050;
  text-align: center;
  font-size: 20px;
  font-weight: 400;
  line-height: 140%;
  max-width: 472px;
  width: 100%;
  margin: 0 auto 35px;
}
.plugin-page .cross-browser .browsers-icons {
  display: flex;
  justify-content: space-around;
  max-width: 565px;
  width: 100%;
  margin: 0 auto 36px;
  direction: ltr;
}
.plugin-page .cross-browser .browsers-icons .browser-icon {
  padding: 0 35px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.plugin-page .cross-browser .browsers-icons .browser-icon_pic {
  margin-bottom: 31px;
  width: 57px;
}
.plugin-page .cross-browser .browsers-icons p {
  color: #505050;
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  line-height: 104%;
}
.plugin-page .cross-browser .laptop img {
  display: block;
  margin: 0 auto;
}
.plugin-page .get_plugin {
  margin-bottom: 51px;
}
.plugin-page .get_plugin .inner {
  max-width: 1656px;
  width: 100%;
  margin: 0 auto;
  min-height: 476px;
  background: url(https://qa.wemake.co.il/mod/plugin/img/bg.png) no-repeat center;
  padding: 46px 0 68px;
}
.plugin-page .get_plugin h2 {
  color: #1F1F1F;
  text-align: center;
  font-family: SimplerPro_Extended;
  font-size: 45px;
  font-weight: 900;
  line-height: 216.5%;
  max-width: 646px;
  width: 100%;
  margin: 0 auto;
}
.plugin-page .get_plugin .text {
  color: #505050;
  text-align: center;
  font-size: 20px;
  font-weight: 400;
  line-height: 140%;
  max-width: 646px;
  width: 100%;
  margin: 0 auto 45px;
}
.plugin-page .get_plugin .form {
  max-width: 665px;
  width: 100%;
  margin: 0 auto;
}
.plugin-page .get_plugin .form p {
  text-align: center;
  color: #505050;
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 16px;
}
.plugin-page .get_plugin .checkbox p {
  cursor: pointer;
  position: relative;
  text-align: right;
  display: inline-block;
  letter-spacing: 1px;
  font-size: 14px;
}
.plugin-page .get_plugin .checkbox p label {
  cursor: pointer;
}
.plugin-page .get_plugin .form-input {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.plugin-page .get_plugin .st-form .field {
  padding-top: 0;
  margin-bottom: 0;
}
.plugin-page .get_plugin .st-form .field input:not([type=submit]) {
  width: 393px;
  height: 65px;
  border-radius: 7px;
  border: 1px solid #BCBCBC;
  background: #FFF;
  padding-right: 20px;
}
.plugin-page .get_plugin .st-form .field .fl-label {
  cursor: pointer;
  color: #868686;
  font-size: 20px;
  font-weight: 400;
  line-height: 129%;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  z-index: 1;
}
.plugin-page .get_plugin .st-form .field p {
  margin: 0;
}
.plugin-page .get_plugin .st-form .field.focused .fl-label {
  top: 16px;
}
.plugin-page .get_plugin .button-wr p {
  margin: 0;
}
.plugin-page .get_plugin .button {
  width: 266px;
  height: 65px;
  border-radius: 7px;
  background: linear-gradient(265deg, #0235FF 0%, #116FFF 100%);
  color: #FFF;
  text-align: center;
  font-size: 20px;
  font-weight: 400;
  line-height: 129%;
}
.plugin-page .get_plugin .button p {
  margin: 0;
}
.plugin-page .get_plugin .st-button.-hover1:before {
  background: #fff;
}
.plugin-page .get_plugin .st-button.-hover1:hover {
  color: #000;
}
.plugin-page .get_plugin .st-button.-hover1:hover .send {
  background: url(https://qa.wemake.co.il/mod/plugin/img/send_black.svg) no-repeat center;
  background-size: contain;
  transition: 1s;
}
.plugin-page .get_plugin .st-button.-hover1 .send {
  width: 23px;
  height: 23px;
  background: url(https://qa.wemake.co.il/mod/plugin/img/send.svg) no-repeat center;
  background-size: contain;
  margin-top: 5px;
  margin-right: 10px;
}
.plugin-page .get_plugin .checkbox-wr {
  max-width: 390px;
  margin-top: 8px;
  color: #7E7E7E;
  text-align: right;
  font-size: 18px;
  font-weight: 400;
  line-height: 110%;
}
.plugin-page .get_plugin .checkbox:before {
  width: 15px;
  height: 15px;
  border-radius: 4px;
  border: 1px solid #BCBCBC;
  background: #FFF;
}
.plugin-page .get_plugin .checkbox::after {
  width: 7px;
  height: 7px;
  border-radius: 1px;
  background: #116FFF;
  margin: 4px 4px 0 0;
}
.plugin-page .marq-wr.-style1 {
  height: 61.5px;
}
.plugin-page .marq-wr.-style1 .marq {
  font-size: 31px;
  line-height: 111.5%;
}

@-webkit-keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@media (max-width: 768px) {
  .plugin-page .inner {
    padding: 0 4%;
  }
  .plugin-page .page-head {
    padding: 65px 0 0;
  }
  .plugin-page .page-head .inner {
    padding-bottom: 23px;
  }
  .plugin-page .page-head .title {
    margin-bottom: 70px;
  }
  .plugin-page .page-head .title h1 {
    font-size: 32px;
  }
  .plugin-page .page-head .title h1 strong::before {
    top: -1px;
    left: -6px;
    bottom: -1px;
    right: -2px;
  }
  .plugin-page .page-head .title .subtitle {
    font-size: 14px;
    max-width: 89px;
    top: 40px;
    left: 30px;
  }
  .plugin-page .page-head .title .subtitle::before {
    width: 35px;
    height: 37px;
    top: -10px;
    left: -28px;
    background-size: contain;
  }
  .plugin-page .page-head .text {
    font-size: 18px;
  }
  .plugin-page .about-plugin {
    padding-top: 14px;
  }
  .plugin-page .about-plugin .figure {
    display: none;
  }
  .plugin-page .about-plugin .cursor {
    display: none;
  }
  .plugin-page .about-plugin .top-row {
    margin-bottom: 89px;
    flex-direction: column-reverse;
    align-items: center;
  }
  .plugin-page .about-plugin .top-row_left {
    width: 100%;
    margin-top: 18px;
  }
  .plugin-page .about-plugin .top-row_right {
    margin: 0 auto;
  }
  .plugin-page .about-plugin .button-download {
    width: 100%;
    padding: 22px 38px;
    font-size: 20px;
    text-align: center;
    background: #116FFF;
    color: #fff;
    border-color: transparent;
  }
  .plugin-page .about-plugin .button-download::before {
    display: none;
  }
  .plugin-page .about-plugin .downloads_count::after {
    right: -20px;
  }
  .plugin-page .about-plugin .downloads_count .stars {
    font-size: 20px;
    margin-top: 15px;
  }
  .plugin-page .about-plugin .downloads_count .stars::before {
    width: 57px;
    height: 10.5px;
    top: -13px;
    background-size: contain;
  }
  .plugin-page .about-plugin .downloads_count p {
    font-size: 46px;
  }
  .plugin-page .about-plugin .wordpress {
    margin-left: 30px;
  }
  .plugin-page .about-plugin .wordpress p {
    max-width: 106px;
    font-size: 18px;
    margin-right: 6px;
  }
  .plugin-page .about-plugin .about-plugin_content {
    padding: 19px 10px 56px;
  }
  .plugin-page .about-plugin .about_plugin_pic1 {
    top: -28px;
    left: 22px;
    height: 308px;
  }
  .plugin-page .about-plugin .about_plugin_pic1 img {
    min-width: 250px;
  }
  .plugin-page .about-plugin .about_plugin_pic2 {
    height: 234px;
    left: auto;
    right: 50px;
    top: 110px;
  }
  .plugin-page .about-plugin .about_plugin_pic2 img {
    min-width: 215px;
  }
  .plugin-page .about-plugin .content-section {
    top: 45px;
    bottom: auto;
    right: 18px;
    left: auto;
  }
  .plugin-page .about-plugin .content-section::before {
    width: 8px;
    height: 4px;
    top: 25px;
    left: 14px;
    background-size: contain;
  }
  .plugin-page .about-plugin .content-section::after {
    width: 150px;
    height: 120px;
    top: -115px;
    right: -55px;
    background-size: contain;
  }
  .plugin-page .about-plugin .content-section .p1 {
    margin-bottom: 11px;
    font-size: 16px;
  }
  .plugin-page .about-plugin .content-section .p2 {
    font-size: 16px;
  }
  .plugin-page .possibilities {
    margin-bottom: 40px;
  }
  .plugin-page .content-section_possibilities {
    padding-top: 33px;
  }
  .plugin-page .content-section_possibilities .subtitle {
    font-size: 14px;
    text-align: center;
    margin-bottom: 3px;
  }
  .plugin-page .content-section_possibilities .title {
    font-size: 16px;
    text-align: center;
    margin-bottom: 25px;
  }
  .plugin-page .content-section_possibilities .middle-section_content {
    align-items: center;
    margin: 0 auto 20px;
  }
  .plugin-page .content-section_possibilities .subtitle2 {
    font-size: 14px;
    text-align: center;
    margin-bottom: 8px;
  }
  .plugin-page .content-section_possibilities .title2 {
    font-size: 21px;
    text-align: center;
    margin-bottom: 0;
  }
  .plugin-page .content-section_possibilities .text {
    text-align: center;
    font-size: 16px;
    line-height: 148%;
    max-width: 370px;
  }
  .plugin-page .content-section_possibilities .middle-section {
    flex-direction: column;
    margin-bottom: 14px;
  }
  .plugin-page .content-section_possibilities .middle-section_img {
    order: 3;
    max-width: 100%;
  }
  .plugin-page .content-section_possibilities .middle-section_img::after {
    display: none;
  }
  .plugin-page .content-section_possibilities .image-section_possibilities.mobile- {
    max-width: 188px;
    min-width: 188px;
    width: 100%;
    margin: 0 auto 37px;
  }
  .plugin-page .content-section_possibilities .accessible {
    justify-content: space-between;
    max-width: 361px;
    width: 100%;
    margin: 0 auto;
  }
  .plugin-page .content-section_possibilities .accessible .icon {
    width: 55px;
    height: 55px;
    margin-right: 0;
  }
  .plugin-page .content-section_possibilities .accessible .icon1 {
    order: 3;
  }
  .plugin-page .content-section_possibilities .accessible .icon2 {
    order: 1;
    border: 0.344px solid #000;
  }
  .plugin-page .content-section_possibilities .accessible .switcher {
    padding: 4px 10px 4px 57px;
    border: 0.362px solid #333;
    line-height: 44px;
    margin: 0;
  }
  .plugin-page .content-section_possibilities .accessible .switcher::before {
    width: 42px;
    height: 43px;
    left: 4px;
  }
  .plugin-page .content-section_possibilities .accessible .switcher1 {
    order: 2;
    margin: 0 2px;
  }
  .plugin-page .content-section_possibilities .accessible .switcher1::before {
    background: #000;
  }
  .plugin-page .content-section_possibilities .accessible .switcher2 {
    order: 4;
    margin-left: 2px;
  }
  .plugin-page .content-section_possibilities .accessible .accessible_icon2 {
    width: 19px;
  }
  .plugin-page .content-section_possibilities .bottom-section {
    flex-direction: column;
    max-width: 361px;
    width: 100%;
    margin: 0 auto;
  }
  .plugin-page .content-section_possibilities .block {
    margin-bottom: 8px;
  }
  .plugin-page .content-section_possibilities .block-text {
    top: 20px;
  }
  .plugin-page .content-section_possibilities .block-text_1 {
    font-size: 18px;
  }
  .plugin-page .content-section_possibilities .block-text_2 {
    font-size: 14px;
    margin-top: -2px;
  }
  .plugin-page .content-section_possibilities .block-wordpress {
    max-width: 100%;
    min-width: 100%;
    padding: 17px 20px;
  }
  .plugin-page .content-section_possibilities .block-wordpress .col1 {
    max-width: 234px;
  }
  .plugin-page .content-section_possibilities .block-wordpress .col1 p {
    font-size: 22px;
  }
  .plugin-page .content-section_possibilities .block-wordpress .col1 .row {
    font-size: 22px;
    margin-right: 30px;
  }
  .plugin-page .content-section_possibilities .block-wordpress .col1 .row::after {
    width: 18px;
    height: 18px;
    right: -25px;
  }
  .plugin-page .content-section_possibilities .block-wordpress .col2 {
    width: 57px;
  }
  .plugin-page .content-section_possibilities .block-wordpress .col2 img {
    width: 100%;
  }
  .plugin-page .about-plugin2 {
    margin-bottom: 55px;
  }
  .plugin-page .about-plugin2 .inner {
    border-radius: 15px;
    padding: 38px 0 29px;
    margin: 0 auto;
  }
  .plugin-page .about-plugin2 .about-plugin2_content {
    margin: 0 auto;
  }
  .plugin-page .about-plugin2 .features_pic {
    position: relative;
    top: 0;
  }
  .plugin-page .about-plugin2 .heading {
    margin-bottom: 0px;
  }
  .plugin-page .about-plugin2 .heading .subtitle {
    font-size: 14px;
    text-align: center;
    margin-bottom: 5px;
  }
  .plugin-page .about-plugin2 .heading .title {
    font-size: 16px;
    text-align: center;
    margin-bottom: 13px;
  }
  .plugin-page .about-plugin2 .heading .text {
    font-size: 14px;
    text-align: center;
    max-width: 376px;
    width: 100%;
    margin: 0 auto;
  }
  .plugin-page .about-plugin2 .about-plugin2_img {
    max-width: 100%;
  }
  .plugin-page .about-plugin2 .about-plugin2_img img {
    margin: 0 auto;
    display: block;
  }
  .plugin-page .about-plugin2 .accessible-icon {
    display: none;
  }
  .plugin-page .about-plugin2 .features {
    padding: 0 4%;
    justify-content: space-between;
    margin-right: 0;
    margin-top: -2px;
  }
  .plugin-page .about-plugin2 .features .feature {
    font-size: 14px;
    padding: 9px 13px 9px 5px;
  }
  .plugin-page .about-plugin2 .features .feature.feature2 .feature-icons {
    width: 59px;
  }
  .plugin-page .about-plugin2 .features .feature1,
.plugin-page .about-plugin2 .features .feature2,
.plugin-page .about-plugin2 .features .feature3,
.plugin-page .about-plugin2 .features .feature4 {
    width: calc(50% - 2px);
    margin-right: 0;
  }
  .plugin-page .about-plugin2 .features .feature1,
.plugin-page .about-plugin2 .features .feature2 {
    margin-bottom: 5px;
  }
  .plugin-page .about-plugin2 .features .feature-icons {
    width: 59px;
  }
  .plugin-page .about-plugin2 .features .feature-icon {
    width: 28px;
    height: 28px;
  }
  .plugin-page .about-plugin2 .features .feature-icon:not(:last-of-type) {
    margin-right: 3px;
  }
  .plugin-page .about-plugin2 .features .feature-icon img {
    width: 13.5px;
  }
  .plugin-page .cross-browser {
    margin-bottom: 32px;
  }
  .plugin-page .cross-browser h2 {
    font-size: 24px;
  }
  .plugin-page .cross-browser .text {
    font-size: 16px;
    margin: 0 auto 17px;
  }
  .plugin-page .cross-browser .browsers-icons {
    max-width: 350px;
  }
  .plugin-page .cross-browser .browsers-icons .browser-icon {
    padding: 0 13.5px;
  }
  .plugin-page .cross-browser .browsers-icons .browser-icon_pic {
    width: 42px;
    margin-bottom: 14px;
  }
  .plugin-page .get_plugin {
    padding: 0 4%;
    margin-bottom: 48px;
  }
  .plugin-page .get_plugin .inner {
    border-radius: 12px;
    background: #F8FAFF;
    padding: 14px 7px 0;
    min-height: auto;
  }
  .plugin-page .get_plugin h2 {
    font-size: 32px;
    margin-bottom: -5px;
  }
  .plugin-page .get_plugin .text {
    font-size: 16px;
    line-height: 148%;
    margin: 0 auto 28px;
  }
  .plugin-page .get_plugin .form p {
    font-size: 16px;
    margin-bottom: 5px;
  }
  .plugin-page .get_plugin .checkbox p {
    font-size: 14px;
  }
  .plugin-page .get_plugin .form-input {
    flex-direction: column;
  }
  .plugin-page .get_plugin .st-form .field {
    width: 100%;
    margin-bottom: 5px;
  }
  .plugin-page .get_plugin .st-form .field input:not([type=submit]) {
    width: 100%;
  }
  .plugin-page .get_plugin .st-form .field .fl-label {
    font-size: 16px;
    right: 50%;
    transform: translate(50%, -50%);
  }
  .plugin-page .get_plugin .button-wr {
    width: 100%;
  }
  .plugin-page .get_plugin .button {
    width: 100%;
  }
  .plugin-page .get_plugin .checkbox-wr {
    margin-top: 10px;
  }
  .plugin-page .marq-wr.-style1 {
    height: 34px;
  }
  .plugin-page .marq-wr.-style1 .marq {
    font-size: 14px;
  }
}
@media (max-width: 425px) {
  .plugin-page .page-head .title h1 {
    font-size: 7.5294117647vw;
  }
  .plugin-page .about-plugin .downloads_count .stars {
    font-size: 4.7058823529vw;
  }
  .plugin-page .about-plugin .downloads_count p {
    font-size: 10.8235294118vw;
  }
  .plugin-page .about-plugin .wordpress p {
    font-size: 4.2352941176vw;
  }
  .plugin-page .about-plugin .about_plugin_pic1 img {
    min-width: 58.8235294118vw;
  }
  .plugin-page .about-plugin .about_plugin_pic2 img {
    min-width: 50.5882352941vw;
  }
  .plugin-page .about-plugin .content-section .p1,
.plugin-page .about-plugin .content-section .p2 {
    font-size: 3.7647058824vw;
  }
  .plugin-page .about-plugin .content-section::after {
    right: -12.9411764706vw;
  }
  .plugin-page .get_plugin h2 {
    font-size: 7.5294117647vw;
  }
  .plugin-page .content-section_possibilities .accessible .icon {
    width: 12.9411764706vw;
    height: 12.9411764706vw;
    min-width: 12.9411764706vw;
    min-height: 12.9411764706vw;
  }
  .plugin-page .content-section_possibilities .accessible .accessible_icon1 {
    width: 8.2352941176vw;
  }
  .plugin-page .content-section_possibilities .accessible .switcher {
    height: 12.2352941176vw;
    line-height: 10.3529411765vw;
  }
  .plugin-page .content-section_possibilities .accessible .switcher::before {
    width: 9.8823529412vw;
    height: 9.8823529412vw;
  }
  .plugin-page .content-section_possibilities .block-wordpress .col1 p {
    font-size: 5.1764705882vw;
  }
  .plugin-page .about-plugin2 .features .feature {
    font-size: 3.2941176471vw;
    padding: 2.1176470588vw 3.0588235294vw 2.1176470588vw 1.1764705882vw;
  }
  .plugin-page .about-plugin2 .features .feature.feature2 .feature-icons {
    width: 13.8823529412vw;
  }
  .plugin-page .about-plugin2 .features .feature-icons {
    width: 13.8823529412vw;
  }
  .plugin-page .about-plugin2 .features .feature-icon {
    width: 6.5882352941vw;
    height: 6.5882352941vw;
  }
  .plugin-page .about-plugin2 .features .feature-icon img {
    width: 3.1764705882vw;
  }
}
@media (min-width: 1921px) {
  .plugin-page .about-plugin .figure {
    right: -1%;
    width: 45vw;
    background-size: 100%;
  }
}
@media (max-width: 1920px) and (min-width: 769px) {
  .plugin-page .page-head .title h1 {
    font-size: 5.46875vw;
  }
  .plugin-page .page-head .title h1 strong::before {
    top: -0.1041666667vw;
    left: -1.6666666667vw;
    bottom: -0.3645833333vw;
    right: -1.25vw;
  }
  .plugin-page .page-head .title .subtitle {
    top: 8.4375vw;
    left: 7.2916666667vw;
  }
  .plugin-page .about-plugin .downloads_count p {
    font-size: 3.3333333333vw;
  }
  .plugin-page .about-plugin .figure {
    width: 36.71875vw;
  }
  .plugin-page .content-section_possibilities .title {
    font-size: 2.1875vw;
  }
  .plugin-page .content-section_possibilities .title2 {
    font-size: 2.1875vw;
  }
  .plugin-page .about-plugin2 .heading .title {
    font-size: 2.1875vw;
  }
  .plugin-page .about-plugin2 .inner {
    padding: 54px 11.4583333333vw 94px;
  }
}
@media (max-width: 1600px) and (min-width: 1280px) {
  .plugin-page .about-plugin2 .feature {
    padding: 1.25vw;
    font-size: 1.5vw;
  }
  .plugin-page .about-plugin2 .feature .feature-icons {
    width: 5.9375vw;
  }
  .plugin-page .about-plugin2 .feature.feature2 .feature-icons {
    width: 5.5625vw;
  }
  .plugin-page .about-plugin2 .feature .feature-icon {
    width: 2.625vw;
    height: 2.625vw;
  }
  .plugin-page .about-plugin2 .feature .feature-icon img {
    width: 1.25vw;
  }
}
@media (max-width: 1450px) and (min-width: 769px) {
  .plugin-page .about-plugin2 .feature.feature1, .plugin-page .about-plugin2 .feature.feature4 {
    width: calc(55% - 13px);
  }
  .plugin-page .marq-wr.-style1 {
    height: 4.2068965517vw;
  }
  .plugin-page .marq-wr.-style1 .marq {
    font-size: 2.1379310345vw;
  }
}
@media (max-width: 1280px) and (min-width: 769px) {
  .plugin-page .about-plugin2 .feature {
    padding: 1.5625vw;
    font-size: 1.875vw;
  }
  .plugin-page .about-plugin2 .feature.feature1, .plugin-page .about-plugin2 .feature.feature2, .plugin-page .about-plugin2 .feature.feature3, .plugin-page .about-plugin2 .feature.feature4 {
    width: 100%;
    max-width: 100%;
    margin: 0 auto 10px;
  }
  .plugin-page .about-plugin2 .feature .feature-icons {
    width: 7.421875vw;
  }
  .plugin-page .about-plugin2 .feature.feature2 .feature-icons {
    width: 6.953125vw;
  }
  .plugin-page .about-plugin2 .feature .feature-icon {
    width: 3.28125vw;
    height: 3.28125vw;
  }
  .plugin-page .about-plugin2 .feature .feature-icon img {
    width: 1.5625vw;
  }
}
@media (max-width: 1280px) and (min-width: 769px) {
  .plugin-page .about-plugin .top-row {
    margin-bottom: 155px;
  }
  .plugin-page .about-plugin .content-section {
    left: 10px;
  }
  .plugin-page .about-plugin .content-section .p1,
.plugin-page .about-plugin .content-section .p2 {
    font-size: 2.421875vw;
  }
  .plugin-page .about-plugin .content-section::after {
    width: 110px;
    height: 80px;
    background-size: contain;
    top: -60px;
    right: calc(50% - 20px);
  }
  .plugin-page .possibilities .inner {
    align-items: center;
  }
  .plugin-page .content-section_possibilities {
    padding-top: 0;
  }
  .plugin-page .content-section_possibilities .block {
    margin-bottom: 10px;
  }
  .plugin-page .content-section_possibilities .bottom-section {
    flex-direction: column;
    align-items: flex-end;
  }
  .plugin-page .image-section_possibilities {
    min-width: 31%;
  }
  .plugin-page .about-plugin2 .features_pic {
    top: -100px;
  }
}
@media (max-width: 1024px) and (min-width: 769px) {
  .plugin-page .about-plugin2 .accessible-icon {
    width: 7.32421875vw;
    height: 7.32421875vw;
    top: -90px;
    right: -60px;
  }
  .plugin-page .about-plugin2 .accessible_icon1 {
    width: 3.41796875vw;
  }
  .plugin-page .content-section_possibilities .switcher {
    font-size: 1.7578125vw;
  }
}
@media (max-width: 900px) and (min-width: 769px) {
  .plugin-page .about-plugin .content-section {
    bottom: 10px;
  }
}
@media (max-width: 769px) and (min-width: 426px) {
  .plugin-page .about-plugin .about_plugin_pic1 img {
    height: 370px;
  }
  .plugin-page .about-plugin .about_plugin_pic2 img {
    height: 234px;
  }
}
@media (max-width: 400px) {
  .plugin-page .about-plugin2 .features .feature1,
.plugin-page .about-plugin2 .features .feature2,
.plugin-page .about-plugin2 .features .feature3,
.plugin-page .about-plugin2 .features .feature4 {
    width: 100%;
    max-width: 100%;
    margin-bottom: 5px;
  }
}
@media (max-width: 380px) {
  .plugin-page .page-head .title .subtitle {
    top: calc(100% + 15px);
  }
  .plugin-page .about-plugin .content-section {
    right: 5px;
  }
  .plugin-page .cross-browser .browsers-icons .browser-icon {
    padding: 0 5px;
  }
}

.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;
  }
}
