@font-face {
  font-family: "Mull-med";
  src: url("https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459WlhyyTh89Y.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Mull-reg";
  src: url("https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459WlhyyTh89Y.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Mull-bold";
  src: url("https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459WlhyyTh89Y.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
html, body {
  height: 100%;
  width: 100%;
  font-size: 18px;
}

body {
  font-family: "Mull-reg", Arial, sans-serif;
  -webkit-font-snoothing: antialiased;
  -moz-osx-font-snoothing: grayscale;
  color: #000;
  line-height: 1.42;
  font-size: 1rem;
}

ul {
  margin: 0;
  padding: 0;
}

ul li {
  list-style: none;
}

button {
  display: flex;
  border: none;
  background: transparent;
  cursor: pointer;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
  font-weight: normal;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

* {
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: #000;
}

@media screen and (max-width: 480px) {
  section {
    margin-top: 70px !important;
  }
}

.wrapper {
  overflow: hidden;
  width: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}

.maincontent {
  height: 100%;
  transition: transform 1s;
}

.container {
  max-width: 52.2222222222rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 95%;
}
@media screen and (max-width: 480px) {
  .container {
    width: 90%;
  }
}

.title {
  text-align: center;
  font-size: 1.6666666667rem;
}

.subtitle {
  font-family: "Mull-bold";
  font-size: 0.9444444444rem;
}

.text {
  font-size: 0.8333333333rem;
  color: #898989;
}

.terms p a {
  color: #64A0FF;
}

/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
.hamburger {
  padding: 15px 15px;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
}
.hamburger:hover {
  opacity: 0.7;
}
.hamburger.is-active:hover {
  opacity: 0.7;
}
.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
  background-color: #64A0FF;
}

.hamburger-box {
  width: 33px;
  height: 18px;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -1px;
}
.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
  width: 33px;
  height: 2px;
  background-color: #64A0FF;
  border-radius: 4px;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}
.hamburger-inner::before, .hamburger-inner::after {
  content: "";
  display: block;
}
.hamburger-inner::before {
  top: -8px;
}
.hamburger-inner::after {
  bottom: -8px;
}

/*
 * Spin
 */
.hamburger--spin .hamburger-inner {
  transition-duration: 0.22s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spin .hamburger-inner::before {
  transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
}
.hamburger--spin .hamburger-inner::after {
  transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spin.is-active .hamburger-inner {
  transform: rotate(225deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--spin.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
}
.hamburger--spin.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
  transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.not-found {
  padding-top: 70px;
}

.not-found__content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.not-found__title {
  margin-top: 20px;
}

.not-found__text {
  text-align: center;
}

.not-found__link {
  display: flex;
  justify-content: center;
  margin-top: 40px;
  text-align: center;
  color: #64A0FF;
}

.awards {
  padding-top: 3.8888888889rem;
}

.awards__list {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  justify-content: center;
}

.awards__item {
  margin-top: 2.2222222222rem;
  width: 25%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 480px) {
  .awards__item {
    width: 30%;
  }
}

.awards__image {
  max-width: 80%;
}
.awards__image img {
  width: 100%;
}

.awards__pic {
  width: 100%;
}

.benefits {
  margin-top: 3.8888888889rem;
}

.benefits__list {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 480px) {
  .benefits__list {
    flex-direction: column;
  }
}

.benefits__item {
  width: 23%;
}
@media screen and (max-width: 480px) {
  .benefits__item {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 40px;
  }
}
.benefits__item:nth-child(1) .benefits__title {
  width: 70%;
}
.benefits__item:nth-child(1) .benefits__icon-pic {
  width: 65.1px;
  height: 60px;
}
.benefits__item:nth-child(2) .benefits__icon-pic {
  width: 51px;
  height: 60px;
}
.benefits__item:nth-child(3) .benefits__icon-pic {
  width: 60px;
  height: 53px;
}
.benefits__item:nth-child(4) .benefits__icon-pic {
  width: 69px;
  height: 60px;
}

.benefits__title {
  font-family: "Mull-bold";
  font-size: 0.9444444444rem;
  margin-top: 0.8888888889rem;
}

.benefits__desc {
  margin-top: 1.0555555556rem;
  font-size: 0.8333333333rem;
  color: #898989;
}

.footer {
  margin-top: 3.8888888889rem;
  font-size: 0.7777777778rem;
  line-height: 26px;
  background-color: #E5E5E5;
}

.container--footer {
  padding: 3.8888888889rem 0;
}

.footer__logo {
  width: 7.2222222222rem;
}

.footer__main {
  margin-top: 2.2222222222rem;
  display: flex;
  align-items: flex-start;
  width: 100%;
}
@media screen and (max-width: 480px) {
  .footer__main {
    flex-direction: column;
  }
}

.footer__icon-pic {
  width: 126px;
  height: 39px;
}

.footer__main-text {
  width: 100%;
  margin-left: 4.4444444444rem;
}
@media screen and (max-width: 768px) {
  .footer__main-text {
    margin-left: 1.1111111111rem;
  }
}
@media screen and (max-width: 480px) {
  .footer__main-text {
    margin-left: 0;
  }
}

.footer__nav {
  width: 100%;
}

.footer__nav-list {
  display: flex;
  width: 100%;
  justify-content: space-between;
}
.footer__nav-item {
  display: flex;
  flex-direction: column;
}

.footer__copy {
  margin-top: 1.1111111111rem;
}

.functions {
  padding-top: 3.8888888889rem;
}

.functions__title {
  text-align: center;
  font-size: 1.6666666667rem;
}

.functions__content {
  margin-top: 2.2222222222rem;
}

.functions__content-top {
  display: flex;
}
@media screen and (max-width: 480px) {
  .functions__content-top {
    flex-direction: column;
  }
}

.functions__content-list {
  width: 50%;
}
@media screen and (max-width: 480px) {
  .functions__content-list {
    width: 100%;
  }
}

.functions__content-top .functions__content-item {
  padding-right: 0.5555555556rem;
  margin-bottom: 2.7777777778rem;
}
.functions__content-top .functions__content-item:nth-child(1) .functions__icon-pic {
  height: 31px;
  width: 38px;
}
.functions__content-top .functions__content-item:nth-child(2) .functions__icon-pic {
  width: 53px;
  height: 20px;
}

.functions__item-title {
  font-family: "Mull-bold";
  font-size: 0.9444444444rem;
  margin-top: 0.5555555556rem;
}

.functions__item-desc {
  margin-top: 0.5555555556rem;
  font-size: 0.8333333333rem;
  color: #898989;
}

.functions__content-top-media {
  width: 50%;
  background-color: #E5E5E5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
}
@media screen and (max-width: 480px) {
  .functions__content-top-media {
    width: 100%;
  }
}

.functions__content-top-screenshot {
  width: 83%;
}
.functions__content-top-screenshot img {
  width: 100%;
}

.functions__content-top-video {
  width: 83%;
}

.functions__content-bottom {
  display: flex;
}
@media screen and (max-width: 480px) {
  .functions__content-bottom {
    flex-direction: column;
    margin-top: 2.7777777778rem;
  }
}

.functions__content-list--first .functions__content-item {
  padding-right: 0.5555555556rem;
  margin-bottom: 2.7777777778rem;
}
.functions__content-list--first .functions__content-item:nth-child(1) .functions__icon-pic {
  width: 32px;
  height: 43px;
}
.functions__content-list--first .functions__content-item:nth-child(2) .functions__icon-pic {
  width: 39px;
  height: 36px;
}
.functions__content-list--first .functions__content-item:nth-child(3) .functions__icon-pic {
  width: 40px;
  height: 32px;
}

.functions__content-list--last {
  margin-top: 2.2222222222rem;
}
@media screen and (max-width: 480px) {
  .functions__content-list--last {
    margin-top: 0;
  }
}
.functions__content-list--last .functions__content-item {
  padding-right: 10px;
  margin-bottom: 50px;
}
.functions__content-list--last .functions__content-item:nth-child(1) .functions__icon-pic {
  width: 41px;
  height: 41px;
}
.functions__content-list--last .functions__content-item:nth-child(2) .functions__icon-pic {
  width: 40px;
  height: 40px;
}
.functions__content-list--last .functions__content-item:nth-child(3) .functions__icon-pic {
  width: 40px;
  height: 32px;
}
.functions__content-list--last .functions__content-item:nth-child(4) .functions__icon-pic {
  width: 40px;
  height: 32px;
}

.functions__buttons-wrap {
  display: flex;
  justify-content: center;
  width: 100%;
  padding-bottom: 4.4444444444rem;
}
@media screen and (max-width: 480px) {
  .functions__buttons-wrap .hero__btns {
    width: 100%;
  }
}

.hamburger {
  display: none;
  position: absolute;
  right: 0;
  outline: none;
}
@media screen and (max-width: 480px) {
  .hamburger {
    display: inline-block;
  }
}
.hamburger.is-active {
  position: relative;
  z-index: 11;
  position: absolute;
  right: 0;
}

.container--header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 42px 0;
}
@media screen and (max-width: 480px) {
  .container--header {
    padding: 0;
    height: 70px;
    align-items: center;
  }
}

@media screen and (max-width: 480px) {
  .header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 12;
    background: rgba(255, 255, 255, 0.95);
  }
}

.header__logo {
  width: 7.2222222222rem;
}
@media screen and (max-width: 480px) {
  .header__logo.disabled {
    display: none;
  }
}

.header__logo-icon {
  width: 100%;
}

.header__logo-pic {
  height: 38px;
  width: 126px;
}

.header__content {
  display: flex;
  align-items: center;
  position: relative;
}
@media screen and (max-width: 480px) {
  .header__content {
    width: 100%;
  }
}

@media screen and (max-width: 480px) {
  .header__dashboard-btn {
    position: relative;
    left: 150%;
    transition: left 0.3s;
  }
  .header__dashboard-btn.active {
    display: block;
    z-index: 13;
    left: 0;
  }
}

.header__dashboard-btn-link {
  display: flex;
  align-items: center;
}

.header__dashboard-pic {
  width: 18px;
  height: 22px;
}

.header__dashboard-text {
  font-family: "Mull-med";
  font-size: 0.8333333333rem;
  color: #272727;
  margin-left: 15px;
}

.header__lang-dropdown-sel-flag {
  display: flex;
  align-items: center;
}

.header__lang-drop-flag-icon {
  width: 34px;
  height: 34px;
}

.header__lang {
  margin-left: 70px;
  font-family: "Mull-med";
  font-size: 14px;
}
.header__lang .header__lang-dropdown-select {
  display: flex;
  align-items: center;
  background-color: transparent;
  border-color: transparent;
  color: #272727;
}

.header__lang-drop-icon {
  width: 14px;
  height: 7px;
}

.header__lang-dropdown-menu {
  display: none;
}

#first-screen {
  background: linear-gradient(126.8deg, #ffffff 17.86%, rgba(255, 255, 255, 0) 77.61%), #f8f8f8;
}

.hero {
  padding: 3.8888888889rem 0;
}
@media screen and (max-width: 480px) {
  .hero {
    background: #fff;
  }
}

.hero__wrap {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
@media screen and (max-width: 480px) {
  .hero__wrap {
    flex-direction: column-reverse;
  }
}

.hero__text-content {
  width: 45%;
}
@media screen and (max-width: 480px) {
  .hero__text-content {
    width: 100%;
  }
}

.hero__title {
  font-size: 2.3333333333rem;
}
@media screen and (max-width: 480px) {
  .hero__title {
    text-align: center;
  }
}

.hero__usage-description {
  margin-top: 16px;
  font-size: 0.7777777778rem;
  color: #898989;
}
@media screen and (max-width: 480px) {
  .hero__usage-description {
    text-align: center;
  }
}

.hero__description {
  margin-top: 37px;
  font-size: 0.9444444444rem;
}
@media screen and (max-width: 480px) {
  .hero__description {
    text-align: center;
  }
}

.hero__btns {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 480px) {
  .hero__btns {
    flex-direction: column;
  }
}

.hero__btn {
  box-shadow: 0px 4px 4px rgba(100, 160, 255, 0.25);
  border-radius: 6px;
  color: #FFFFFF;
  font-size: 15px;
  font-family: "Mull-med";
  padding: 1.1111111111rem 1.9444444444rem;
  transition: background-color 0.3s;
}
@media screen and (max-width: 768px) {
  .hero__btn {
    padding: 0.8333333333rem 0.8333333333rem;
  }
}
@media screen and (max-width: 480px) {
  .hero__btn {
    padding: 1.1111111111rem 1.9444444444rem;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.hero__btn:hover {
  background-color: #61BD29;
}

.hero__buy-btn {
  position: relative;
}
@media screen and (max-width: 480px) {
  .hero__buy-btn {
    margin-top: 10px;
  }
}

.hero__btn--download {
  background-color: #64A0FF;
}

.hero__btn--buy {
  background-color: #61BD29;
  display: flex;
  align-items: center;
}

.hero__buy-button-icon {
  width: 15px;
}
.hero__buy-button-icon img {
  width: 100%;
}

.hero__buy-button-text {
  margin-left: 5px;
}

.hero__discount-text {
  position: absolute;
  font-size: 15px;
  bottom: -130%;
}
@media screen and (max-width: 480px) {
  .hero__discount-text {
    left: 50%;
    transform: translateX(-50%);
  }
}
.hero__discount-text span {
  font-family: "Mull-med";
  font-weight: 900;
  text-transform: uppercase;
}

.hero__discount-arrow {
  position: absolute;
  bottom: 7px;
  right: -30px;
}

.hero__visual-content {
  width: 50%;
}
@media screen and (max-width: 480px) {
  .hero__visual-content {
    width: 100%;
  }
}

@media screen and (max-width: 480px) {
  .hero__image {
    width: 100%;
  }
  .hero__image img {
    width: 100%;
  }
}

.hero__platforms-list {
  display: flex;
  margin-top: 3.8888888889rem;
  width: 100%;
  justify-content: space-around;
}
@media screen and (max-width: 480px) {
  .hero__platforms-list {
    display: none;
  }
}

.hero__platforms-list-duble {
  display: none;
}
@media screen and (max-width: 480px) {
  .hero__platforms-list-duble {
    display: flex;
    justify-content: space-around;
    margin-top: 3.8888888889rem;
    width: 100%;
  }
}

.hero__platforms-item {
  display: flex;
  font-size: 0.8333333333rem;
}
@media screen and (max-width: 480px) {
  .hero__platforms-item {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}

.hero__platforms-icon {
  height: 40px;
  width: 40px;
}
.hero__platforms-icon.hero__platforms-icon--web {
  width: 70px;
}

.hero__platforms-pic {
  width: 100%;
  height: 100%;
}

.hero__platforms-text {
  margin-left: 8px;
  width: 45%;
}
@media screen and (max-width: 480px) {
  .hero__platforms-text {
    margin-left: 0;
    margin-top: 20px;
    text-align: center;
  }
}
.hero__platforms-text a {
  color: #64A0FF;
}

.how {
  padding-top: 3.8888888889rem;
}

.how__desc {
  margin-top: 2.2222222222rem;
  font-size: 15px;
  color: #898989;
}

.how__list {
  margin-top: 2.2222222222rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 480px) {
  .how__list {
    flex-direction: column;
  }
}

.how__item {
  position: relative;
  width: 25%;
  display: flex;
  align-items: center;
  font-size: 0.8333333333rem;
}
@media screen and (max-width: 768px) {
  .how__item {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
}
@media screen and (max-width: 480px) {
  .how__item {
    flex-direction: column;
    width: 100%;
    margin-bottom: 60px;
  }
}
.how__item:after {
  content: "";
  position: absolute;
  width: 24px;
  height: 8px;
  right: -45px;
  background: url("../../img/icon/arrow-right.png") center center no-repeat;
}
@media screen and (max-width: 768px) {
  .how__item:after {
    right: -50px;
  }
}
@media screen and (max-width: 480px) {
  .how__item:after {
    bottom: -30px;
    left: 50%;
    /* transform: rotate(45deg); */
    transform: translateX(-50%) rotate(90deg);
  }
}
.how__item:nth-child(1) .how__icon-pic {
  width: 62px;
  height: 60px;
}
.how__item:nth-child(2) .how__icon-pic {
  width: 61px;
  height: 55px;
}
.how__item:nth-child(3):after {
  display: none;
}
.how__item:nth-child(3) .how__icon-pic {
  width: 58px;
  height: 52px;
}
.how__item:nth-child(4) .how__icon-pic {
  width: 66px;
  height: 56px;
}

.how__text {
  margin-left: 0.8333333333rem;
}
@media screen and (max-width: 768px) {
  .how__text {
    max-width: 100px;
  }
}

.how__video {
  margin-top: 3.8888888889rem;
  width: 100%;
  height: 30rem;
}
@media screen and (max-width: 480px) {
  .how__video {
    height: 320px;
  }
}

.menu {
  background-color: #424B53;
  padding: 22px 0;
}
@media screen and (max-width: 480px) {
  .menu {
    padding: 0;
  }
}

.menu__list {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 480px) {
  .menu__list {
    position: fixed;
    top: 0;
    height: 100vh;
    left: 150%;
    transform: translateX(-50%);
    background: #fff;
    width: 100%;
    align-items: flex-start;
    transition: left 0.3s;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 25% 10px;
  }
  .menu__list.active {
    left: 50%;
  }
}

@media screen and (max-width: 480px) {
  .menu__item {
    margin-bottom: 20px;
  }
}

.menu__item-link {
  font-family: "Mull-med";
  font-size: 15px;
  color: #FFFFFF;
}
@media screen and (max-width: 480px) {
  .menu__item-link {
    color: #272727;
    font-size: 14px;
  }
}

.navigation-ancors-wrap {
  min-height: 70px;
}

.navigation-ancors {
  border-top: 1px solid #E8E8E8;
  border-bottom: 1px solid #E8E8E8;
  height: 3.8888888889rem;
}
@media screen and (max-width: 480px) {
  .navigation-ancors {
    border: none;
    height: unset;
  }
}
.navigation-ancors .container--navigation-ancors {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
@media screen and (max-width: 480px) {
  .navigation-ancors .container--navigation-ancors {
    position: fixed;
    top: 0;
    height: 100vh;
    left: 150%;
    transform: translateX(-50%);
    background: #fff;
    width: 100%;
    align-items: flex-start;
    transition: left 0.3s;
    overflow: hidden;
  }
  .navigation-ancors .container--navigation-ancors.active {
    left: 50%;
  }
}
.navigation-ancors .hero__btn {
  padding: 10px 15px;
}
@media screen and (max-width: 480px) {
  .navigation-ancors .hero__buy-btn {
    display: none;
  }
}
.navigation-ancors .hero__buy-btn {
  opacity: 0;
  right: -100%;
  display: flex;
  position: relative;
  font-size: 0.7222222222rem;
  transition: right 0.3s, opacity 0.3s;
  width: 35%;
  justify-content: flex-end;
  align-items: center;
}
.navigation-ancors .hero__discount-text {
  position: relative;
  margin-right: 0.5555555556rem;
  font-size: 10px;
}
.navigation-ancors .hero__discount-arrow {
  position: absolute;
  bottom: -15px;
  right: -20px;
}
.navigation-ancors .navigation-ancors__list {
  justify-content: space-between;
  width: 100%;
  height: 3.8888888889rem;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 480px) {
  .navigation-ancors .navigation-ancors__list {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin-top: 100px;
    height: unset;
  }
}
.navigation-ancors .navigation-ancors__item {
  margin-right: 0;
}
.navigation-ancors .hero__discount-text {
  position: relative;
  top: 0;
}
.navigation-ancors.fixed {
  position: fixed;
  z-index: 10;
  top: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
}
.navigation-ancors.fixed .hero__btn {
  opacity: 1;
  right: 0;
}

.navigation-ancors__item {
  margin-right: 2.7777777778rem;
  display: flex;
  align-items: center;
  height: 100%;
}
@media screen and (max-width: 480px) {
  .navigation-ancors__item {
    height: unset;
    padding: 20px 40px;
  }
}
.navigation-ancors__item .hero__btn {
  position: relative;
  right: -3000px;
  transition: right 0.3s, background-color 0.3s;
}

.navigation-ancors__link {
  font-family: "Mull-med";
  font-size: 0.8333333333rem;
}
@media screen and (max-width: 768px) {
  .navigation-ancors__link {
    font-size: 0.6666666667rem;
  }
}
@media screen and (max-width: 480px) {
  .navigation-ancors__link {
    font-size: 20px;
  }
}

.screenshots {
  margin-top: 3.8888888889rem;
  padding: 2.7777777778rem 0;
  background-color: #E5E5E5;
}
.screenshots .owl-stage {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .screenshots {
    padding: 0 0;
  }
}
@media screen and (max-width: 480px) {
  .screenshots {
    padding: 0;
  }
  .screenshots .owl-nav {
    position: absolute;
    display: flex;
    justify-content: space-between;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
  }
  .screenshots .owl-nav span {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
  }
}

@media screen and (max-width: 480px) {
  .screenshots__item {
    width: 100%;
  }
}

.specifications {
  padding-top: 3.8888888889rem;
}

.specifications__table {
  margin-top: 2.2222222222rem;
  width: 100%;
  border-collapse: collapse;
  font-size: 0.8333333333rem;
}
.specifications__table td, .specifications__table th {
  border: 1px solid #E5E5E5;
  padding: 20px;
}
.specifications__table td {
  position: relative;
  display: block;
  padding-left: 40%;
}
@media screen and (max-width: 480px) {
  .specifications__table td {
    padding-left: 0;
    text-align: center;
  }
}
.specifications__table td::before {
  content: attr(data-label);
  position: absolute;
  left: 20px;
}
@media screen and (max-width: 480px) {
  .specifications__table td::before {
    position: static;
    display: block;
    font-family: "Mull-bold";
  }
}
.specifications__table thead {
  display: none;
}

.specifications__btns {
  margin-top: 3.3333333333rem;
  padding-bottom: 4.4444444444rem;
}
.specifications__btns .hero__btns {
  justify-content: center;
}
.specifications__btns .hero__btns .hero__btn--buy {
  margin-left: 20px;
}
@media screen and (max-width: 480px) {
  .specifications__btns .hero__btns .hero__btn--buy {
    margin-left: 0;
  }
}

.support {
  padding-top: 70px;
}

.container--support {
  align-items: center;
}

.support__form {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  width: 40%;
}
@media screen and (max-width: 768px) {
  .support__form {
    width: 70%;
  }
}
@media screen and (max-width: 480px) {
  .support__form {
    width: 100%;
  }
}
.support__form.disabled {
  display: none;
}

.support__email {
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 5px;
  border: 1px solid #E5E5E5;
  outline: none;
}

.support__message {
  outline: none;
  border-radius: 5px;
  border: 1px solid #E5E5E5;
  padding: 10px;
  margin-bottom: 10px;
  resize: vertical;
}

.support__btn {
  box-shadow: 0px 4px 4px rgba(100, 160, 255, 0.25);
  border-radius: 6px;
  color: #FFFFFF;
  font-size: 15px;
  font-family: "Mull-med";
  padding: 1.1111111111rem 1.9444444444rem;
  background: #64A0FF;
  display: flex;
  justify-content: center;
  transition: background-color 0.3s;
}
.support__btn:hover {
  background-color: #61BD29;
}

.support__success {
  display: none;
  color: #61BD29;
  text-align: center;
}
.support__success.active {
  display: block;
}

.support__error {
  display: none;
  color: red;
  text-align: center;
}
.support__error.active {
  display: block;
}

.why {
  margin-top: 3.8888888889rem;
}

.why__content {
  margin-top: 2.2222222222rem;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 480px) {
  .why__content {
    flex-direction: column;
  }
}

.why__item {
  width: 48%;
}
@media screen and (max-width: 480px) {
  .why__item {
    width: 100%;
    margin-top: 1.1111111111rem;
  }
}

.why__item-text {
  margin-top: 1.1111111111rem;
}