@font-face {
  font-family: "Roboto";
  src: url(../fonts/Roboto-Regular.ttf);
  font-weight: 400;
}
@font-face {
  font-family: "Roboto";
  src: url(../fonts/Roboto-Bold.ttf);
  font-weight: 700;
}


body {
  margin: 0;
  padding: 0;
  font-family: "Figtree", "Arial", "Helvetica CY", "Nimbus Sans L", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.15;
  background-color: #303030;
  color: #fff;
  fill: #fff;
}

*,
::before,
::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.ul-style-none {
  padding: 0;
}
.ul-style-none li {
  padding: 0;
  list-style-type: none;
}

a {
  color: inherit;
  text-decoration: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

img {
  width: 100%;
  height: auto;
}

input:not([type=checkbox], [type=radio]),
input:not([type=checkbox], [type=radio]):focus,
textarea,
textarea:focus,
select,
select:focus {
  outline: none !important;
  -webkit-appearance: none;
}

.modal__bg {
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.3);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 80;
  display: none;
}

.modal {
  max-width: 450px;
  width: 100%;
  background-color: #fff;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  position: fixed;
  top: 50px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 90;
  display: none;
}
.modal.active, .modal__bg.active {
  display: block;
}
.modal-body {
  width: 100%;
  height: 100%;
  padding: 30px;
  position: relative;
}
.modal-title {
  font-size: 25px;
  margin-bottom: 30px;
  text-align: center;
}
.modal .close {
  position: absolute;
  top: 15px;
  right: 15px;
}

body.show-modal {
  overflow: hidden;
}

.close {
  width: 25px;
  height: 25px;
  cursor: pointer;
}
.close .inner {
  width: 100%;
  height: 100%;
  position: relative;
}
.close .inner::before, .close .inner::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #000;
  position: absolute;
  top: 50%;
  left: 0;
}
.close .inner::before {
  -webkit-transform: translateY(-50%) rotate(45deg);
  -ms-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
}
.close .inner::after {
  -webkit-transform: translateY(-50%) rotate(-45deg);
  -ms-transform: translateY(-50%) rotate(-45deg);
  transform: translateY(-50%) rotate(-45deg);
}

.menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.menu li {
  margin-right: 20px;
}
.menu li:last-child {
  margin-right: 0;
}
.menu a {
  padding: 5px;
}

.mobile-nav .menu {
  display: block;
}
.mobile-nav li {
  margin-right: 0;
  margin-bottom: 25px;
}

.mobile-wrap {
  max-width: 450px;
  width: 100%;
  height: 100vh;
  background-color: #000;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: fixed;
  top: 0;
  right: -100vw;
  z-index: 70;
}
.mobile-wrap.active {
  right: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.mobile-body {
  width: 100%;
  height: 100%;
  padding: 70px 15px 30px 30px;
  position: relative;
}
.mobile-body .close {
  position: absolute;
  top: 25px;
  right: 25px;
}
.mobile-body .close .inner::before,
.mobile-body .close .inner::after {
  background-color: #fff;
}
.mobile-nav .menu a {
  color: #fff;
}

.mobile-btn {
  width: 40px;
  height: 20px;
  cursor: pointer;
  position: relative;
}
.mobile-btn .inner, .mobile-btn::before, .mobile-btn::after {
  display: block;
  width: 100%;
  height: 1px;
  background-color: #fff;
  position: absolute;
  left: 0;
}
.mobile-btn .inner {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.mobile-btn::before {
  content: "";
  top: 0;
}
.mobile-btn::after {
  content: "";
  bottom: 0;
}

.tab {
  margin-bottom: 30px;
  border: 1px solid #F52454;
  border-radius: 10px;
  padding: 15px;
}
.tab-title {
  font-weight: 700;
  margin-top: 0;
}
.tab-title-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
}
.tab-icon {
  width: 20px;
  height: 20px;
}
.tab-icon svg {
  width: 100%;
  height: 100%;
  fill: inherit;
}
.tab-ans {
  line-height: 1.3;
  margin-top: 25px;
  display: block;
}
.tab.no-active .tab-ans {
  display: none;
}
.tab.no-active .tab-icon {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.header {
  background-color: #333E3C;
  position: sticky;
  width: 100%;
  top: 0;
  z-index: 10;
}
.header-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.slot-wrap {
  max-width: 1480px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

.header-row {
  padding: 10px 0;
}
.header .logo {
  width: 150px;
  height: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.header .logo img {
  max-width: 100%;
  width: auto;
  max-height: 100%;
  height: auto;
}
.header-btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.header-btns .btn:last-child {
  margin-left: 15px;
}
.header-btns .btn {
  margin-left: 15px;
}
.header-btns .btn:first-child {
  margin-left: 0;
}

.mobile-btn {
  display: none;
}

.btn {
  min-width: 160px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  line-height: 45px;
  color: #fff;
}


.btn:hover {
  opacity: 0.7;
}

.btn.btn-1 {
  background-color: #F52454;
}

.btn.btn-2 {
  background-color: #EEA924;
}

.btn.btn-3 {
  background-color: #0BA050;
}

h1,
h2,
h3 {
  text-align: center;
}

h1 {
  font-size: 35px;
}

h2 {
  font-size: 28px;
}

.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.row-item {
  width: 49%;
}

.first-screen {
  margin-top: 50px;
}
.first-screen-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.first-screen-btn {
  margin: 25px 0;
}

.section {
  margin-bottom: 50px;
}

.section a {
  color: #F52454;
}
.section a.btn {
  color: #fff;
}

.content-menu-row {
  padding: 15px;
  border: 2px solid #F52454;
  background-color: #333E3C;
  border-radius: 15px;
}
.content-menu .title__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
}
.content-menu .title__row .title__icon {
  width: 25px;
  height: 25px;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.content-menu .title__row .title__icon svg {
  width: 100%;
  height: 100%;
  fill: inherit;
}
.content-menu-title {
  font-size: 20px;
  font-weight: 700;
}
.content-menu-links {
  display: none;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 20px;
}
.content-menu.active .content-menu-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.content-menu.active .title__icon {
  -webkit-transform: rotate(0);
  -ms-transform: rotate(0);
  transform: rotate(0);
}
.content-menu-link {
  border: 1px solid #F52454;
  border-radius: 5px;
  padding: 5px 10px;
  font-size: 16px;
  font-weight: 700;
  margin-right: 15px;
  margin-bottom: 15px;
}
.content-menu-link:last-child {
  margin-right: 0;
}
.content-menu-link:hover {
  color: #F52454;
}

.characteristics-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 30px;
}
.characteristics .content__item {
  width: 49%;
}

img.radius {
  border-radius: 10px;
}

.table {
  width: 100%;
  border: 2px solid #F52454;
  border-collapse: collapse;
}
.table td {
  width: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3137254902);
  padding: 10px 15px;
}
.table .table-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 700;
}
.table .table-row img {
  width: 30px;
  margin-right: 10px;
}

.screenshorts-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
}
.screenshorts-item {
  width: 16.6666%;
  padding: 0 2.5px;
  margin-bottom: 5px;
}
.screenshorts-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.screenshorts-item:last-child {
  margin-right: 0;
}

.section-desc {
  margin-bottom: 30px;
}

.features-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.features-item {
  width: 49%;
  margin-bottom: 30px;
}
.features-item .inner {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #333E3C;
  border: 2px solid #F52454;
  border-radius: 10px;
  overflow: hidden;
}
.features-item .item__img {
  max-width: 220px;
  min-width: 220px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.features-item .item__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.features-item .item__content {
  padding: 10px 15px;
}
.features-item .item__title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}
.features-item:nth-child(5) {
  width: 100%;
}

.slot-rules-item {
  margin-bottom: 25px;
}
.slot-rules-item h3.item__title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
  text-align: center;
}
.slot-rules-item .item__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.slot-rules-item .item__side {
  width: 49%;
}
.slot-rules-item .item__img img {
  border-radius: 10px;
}
.slot-rules-item:nth-child(even) .item__row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.slot-return-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.slot-return-item {
  width: 49%;
}

.slot-steps-item {
  border-radius: 10px;
  background-color: #333E3C;
  overflow: hidden;
  margin-bottom: 25px;
}
.slot-steps-item .item__num {
  padding: 15px;
  background-color: #F52454;
  font-size: 18px;
  font-weight: 700;
}
.slot-steps-item .item__row {
  padding: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.slot-steps-item .item__side {
  width: 49%;
}
.slot-steps-item .item__title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 5px;
}
.slot-steps-item .item__arrow {
  padding: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.slot-steps-item .item__arrow svg {
  width: 25px;
  height: 25px;
  fill: inherit;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.slot-app-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.slot-app:nth-child(even) .slot-app-row {
  flex-direction: row-reverse;
}
.slot-app-side {
  width: 49%;
}

.pros-and-cons-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.pros-and-cons .side {
  width: 49%;
  padding: 15px;
  background-color: #333E3C;
}
.pros-and-cons .side-title {
  padding: 15px;
  font-size: 20px;
  margin-top: 0;
}
.pros-and-cons .side-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  margin-bottom: 15px;
  font-weight: 700;
}
.pros-and-cons .side-item::before {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 22px;
  width: 30px;
  height: 30px;
  border-radius: 4px;
  color: inherit;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.pros-and-cons .pros .side-title {
  background-color: #F52454;
}
.pros-and-cons .cons .side-title {
  background-color: #0BA050;
}
.pros-and-cons .side-item-before {
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 22px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  margin-right: 10px;
}
.pros-and-cons .pros .side-item-before {
  background-color: #F52454;
}
/*.pros-and-cons .pros .side-item::before {*/
/*  content: "+";*/
/*  background-color: #F52454;*/
/*}*/
.pros-and-cons .cons .side-item-before {
  background-color: #0BA050;
}
/*.pros-and-cons .cons .side-item::before {*/
/*  content: "-";*/
/*  background-color: #0BA050;*/
/*}*/

.footer {
  background-color: #333E3C;
  padding: 30px 0;
  margin-top: 100px;
}
.footer .slot-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  align-items: center;
}
.footer .logo {
  max-width: 330px;
  display: block;
}
.footer .copyright {
  margin-bottom: 15px;
  font-size: 13px;
}
.footer .dmca img {
  width: auto;
}
.footer .gordon-mody {
  max-width: 200px;
  width: 100%;
}
.go-to-top {
  width: 50px;
  height: 50px;
  background-color: #F52555;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  justify-content: center;
  align-items: center;
  position: fixed;
  right: 10px;
  bottom: 30px;
  z-index: 2;
  display: none;
}
.go-to-top.active {
  display: flex;
}
.go-to-top svg {
  width: 25px;
  height: 25px;
  fill: inherit;
}
.error404 .error-wrap {
  min-height: 50vh;
}

.lang-switcher {
  position: relative;
}
.lang-switcher-current li:not(.current-lang) {
  display: none;
}
.lang-switcher li {
  list-style-type: none;
}
.lang-switcher li:last-child {
  margin-right: 0;
}
.lang-switcher li img {
  width: 25px !important;
  height: 17px !important;
}
.lang-switcher-list {
  padding: 0 15px;
  box-shadow: 0 0 10px rgba(0,0,0,0.25);
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%);
  display: none;
}
.lang-switcher-list li {
  margin-bottom: 10px;
}
.lang-switcher:hover .lang-switcher-list {
  display: block;
}
.mobile-wrap .lang-switcher ul {
  display: flex;
}
.mobile-wrap .lang-switcher ul li {
  margin-right: 15px;
}
.lang-switcher.desktop-switcher {
  margin-left: 25px;
}
.footer-links {
  display: flex;
  align-items: center;
}
.footer-links-item {
  margin-right: 10px;
}
.footer-links-item:last-child {
  margin-right: 0;
}
.footer-links-item.telegram {
  width: 40px;
}
.content-section .slot-wrap {
  max-width: 1000px;
  line-height: 1.5;
}





/* Adaptive */
@media (max-width: 1200px) {
  .header-btns .btn {
    min-width: 120px;
    line-height: 35px;
  }
  .features-row {
    display: block;
  }
  .features-item {
    width: 100%;
    margin-bottom: 15px;
  }
}
/* 1200 end */
@media (max-width: 1000px) {
  .header .nav {
    display: none;
  }
  .header-row {
    padding-bottom: 35px;
    position: relative;
  }
  .header-btns {
    position: absolute;
    bottom: 10px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  .mobile-btn {
    display: block;
  }
  .lang-switcher.desktop-switcher {
    display: none;
  }
  .row {
    display: block !important;
  }
  .row-item {
    width: 100% !important;
    margin-bottom: 25px;
  }
  .row-item img {
    max-width: 600px;
    margin: 0 auto;
    display: block;
  }
  .footer .slot-wrap {
    display: block;
  }
  .footer .logo {
    display: block;
    margin: 0 auto 30px;
  }
  .footer .copyright {
    text-align: center;
  }
  .footer-links {
    justify-content: center;
    margin-bottom: 30px;
  }
  .footer .gordon-mody {
    margin: 0 auto;
  }
}
/* 1000 end */
@media (max-width: 800px) {
  .screenshorts {
    overflow-x: auto;
  }
  .screenshorts-row {
    width: 760px;
  }
}
/* 800 end */
@media (max-width: 600px) {
  .features-item .inner {
    display: block;
  }
  .features-item .item__img {
    max-width: 150px;
    min-width: 150px;
    margin: 0 auto 20px;
  }
  .features-item .item__title,
  .features-item .item__text {
    text-align: center;
  }
  .tab {
    margin-bottom: 15px;
  }
}
@media (max-width: 450px) {
  .table .table-row img {
    width: 20px;
  }
  .table td {
    padding: 10px;
  }
}
/* 450 end */