html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, pre,
a, abbr, address, big, blockquote, cite, code,
del, dfn, em, img, ins, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li, form, label, input, fieldset, legend, caption,
article, aside, canvas, details, embed,
figure, figcaption, footer, header,
menu, main, nav, output, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  border: none;
  outline: none;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, main, menu, nav, section {
  display: block;
}

html,
body {
  height: 100%;
  width: 100%;
}

body {
  line-height: 1;
  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
   -ms-text-size-adjust: none;
       text-size-adjust: none;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

ol, ul, nav, menu {
  list-style: none;
}

img, video, canvas {
  max-width: 100%;
  height: auto;
}

img {
  vertical-align: bottom;
}

a, button {
  cursor: pointer;
  margin: 0;
  padding: 0;
}

a:hover, button:hover {
  cursor: pointer;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  border: none;
  background: transparent;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

th, td {
  vertical-align: middle;
}

iframe {
  width: 100%;
}

/* Inter  */
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-VariableFont_slnt,wght.woff2") format("woff2 supports variations"), url("../fonts/Inter-VariableFont_slnt,wght.woff2") format("woff2-variations");
  font-display: swap;
  font-weight: 100 700;
  font-stretch: 85% 100%;
}
/* =========================== all */
body {
  font-family: "Inter", sans-serif;
  color: #171719;
  background: #fff;
  line-height: 1.5;
}

.body_scroll {
  overflow: hidden;
}

/* heading */
.h1, .h2 {
  font-weight: 700;
}

.h1 {
  font-size: 38px;
  line-height: 44px;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .h1 {
    font-size: 30px;
    line-height: 36px;
    margin-bottom: 20px;
  }
}

.h2 {
  font-size: 30px;
  line-height: 36px;
  margin-bottom: 25px;
}
@media screen and (max-width: 768px) {
  .h2 {
    font-size: 26px;
    line-height: 32px;
    margin-bottom: 20px;
  }
}

.h3 {
  font-weight: 600;
  font-size: 26px;
  line-height: 32px;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .h3 {
    font-size: 24px;
    line-height: 30px;
  }
}

.heading {
  font-size: 16px;
  font-weight: 700;
  line-height: 22px;
  margin-bottom: 20px;
}

.title {
  font-size: 14px;
  font-weight: 600;
  line-height: 17px;
}

.section {
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .section {
    margin-bottom: 30px;
  }
}

/* content */
a, p {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}

p {
  color: rgba(23, 23, 25, 0.8);
  margin-bottom: 30px;
}

.text p:last-child, .text ul:last-child, .text ol:last-child {
  margin-bottom: 0;
}

.time {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  font-weight: 400;
  line-height: 17px;
}

a:not([class]) {
  text-decoration: underline;
}
a:not([class]):hover {
  color: #0EBE5F;
}

.link {
  display: inline-block;
  position: relative;
  font-size: 16px;
  font-weight: 600;
  line-height: 22px;
  padding-right: 27px;
}
.link::before {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  background: center center/cover no-repeat;
  background-image: url("../img/sprite.svg#sprite--arrow-small-right");
  right: 0;
  top: calc(50% - 10px);
}

.icon-check {
  position: relative;
}
.icon-check::before {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  background: center center/cover no-repeat;
  background-image: url("../img/sprite.svg#sprite--checkmark");
}

b, strong {
  font-weight: 600;
}

i, em {
  font-style: italic;
}

/* list */
ol:not([class]), ul:not([class]) {
  margin-bottom: 20px;
}
ol:not([class]) li, ul:not([class]) li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  position: relative;
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
}
ol:not([class]) li:not(:last-child), ul:not([class]) li:not(:last-child) {
  margin-bottom: 20px;
}

ol:not([class]) {
  counter-reset: number;
}
ol:not([class]) li::before {
  counter-increment: number;
  content: counter(number) ".";
  font-weight: 700;
}

ul:not([class]) li::before {
  content: "";
  width: 8px;
  min-width: 8px;
  height: 8px;
  border-radius: 2px;
  background: #0F0E0E;
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -ms-flex-item-align: start;
      align-self: start;
  margin-top: 7px;
}

.check-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.check-list li:not(:last-child) {
  margin-bottom: 10px;
}
.check-list li::before {
  content: "";
  width: 16px;
  height: 12px;
  background: center center/cover no-repeat;
  background-image: url("../img/sprite.svg#sprite--check");
  margin-right: 7px;
}

.arrow_green li, .arrow_red li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
}
.arrow_green li:not(:last-child), .arrow_red li:not(:last-child) {
  margin-bottom: 20px;
}
.arrow_green li::before, .arrow_red li::before {
  content: "";
  min-width: 7px;
  -ms-flex-item-align: start;
      align-self: start;
  margin-right: 20px;
  margin-top: 5px;
}

.arrow_green li::before {
  width: 7px;
  height: 11px;
  background: center center/cover no-repeat;
  background-image: url("../img/sprite.svg#sprite--arr-green");
}

.arrow_red li::before {
  width: 7px;
  height: 11px;
  background: center center/cover no-repeat;
  background-image: url("../img/sprite.svg#sprite--arr-red");
}

.side {
  border-radius: 10px;
  border: 1px solid #E7E7E7;
  gap: 30px;
  padding: 30px;
  margin-bottom: 20px;
}
.side__item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 768px) {
  .side {
    padding: 20px;
  }
  .side__item {
    min-width: 100%;
  }
}

summary {
  list-style: none;
}
summary::marker {
  display: none;
}
summary::-webkit-details-marker {
  display: none;
  color: transparent;
}

/* img */
img {
  display: block;
  margin: 0 auto;
}

.img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 20px;
  background: #1A1A1A;
  padding: 5px;
}
.img img {
  max-width: calc(100% - 10px);
  width: auto;
}

figure {
  margin-bottom: 20px;
}

/* transition */
* {
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

/* btn */
button {
  display: inline-block;
  cursor: pointer;
  font-family: "Inter";
}

.btn {
  display: inline-block;
  width: 220px;
  height: 52px;
  line-height: 52px;
  border-radius: 26px;
  font-size: 18px;
  font-weight: 700;
  color: #0F0E0E;
  background: #20F381;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  overflow: hidden;
  font-size: 14px;
  text-transform: uppercase;
}
.btn:hover {
  background: #89F8BC;
}

/* code */
.form-code {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 29px;
  line-height: 29px;
  cursor: pointer;
}
.form-code-bg {
  background: #F3F3F3;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  padding: 5px;
}
.form-code-btn {
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  width: 95px;
  height: 29px;
  line-height: 29px;
  border-radius: 5px;
  background: #0EBE5F;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}
.form-code-no {
  width: 137px;
}

.embed {
  position: relative;
  z-index: -1;
  width: 134px;
  border: none;
  text-align: right;
}

/* flexbox */
.flexbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

/* gridbox */
.gridbox {
  display: grid;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

/* block */
.overly {
  display: none;
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 14, 14, 0.4);
}

/* rating */
.rating {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 7px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.rating-circle {
  width: 34px;
  height: 34px;
  border-radius: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}
.rating-circle_good {
  background: #00C472;
}
.rating-circle_normal {
  background: #FFC700;
}
.rating-circle_bad {
  background: #E64749;
}
.rating-title {
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  color: #3C3F47;
}

/* scroll vertical */
.scroll {
  overflow-y: auto;
  -ms-scroll-chaining: none;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
  scrollbar-width: thin;
  scrollbar-color: #DCDFE9 transparent;
}

.scroll::-webkit-scrollbar {
  width: 4px;
  height: 50%;
}

.scroll::-webkit-scrollbar-track {
  background-color: transparent;
}

.scroll::-webkit-scrollbar-thumb {
  background-color: #DCDFE9;
  border-radius: 5px;
  min-height: 50%;
  min-width: 4px;
}

.scroll::-webkit-scrollbar-thumb:hover {
  background-color: #DCDFE9;
}

.scroll::-webkit-scrollbar-thumb:active {
  background-color: #DCDFE9;
}

/* scroll horizontal */
.scroll_horizontal {
  overflow-x: auto;
  -ms-scroll-chaining: none;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
  scrollbar-width: thin;
  scrollbar-color: #DCDFE9 transparent;
}

.scroll_horizontal::-webkit-scrollbar {
  width: 50%;
  height: 4px;
}

.scroll_horizontal::-webkit-scrollbar-track {
  background-color: transparent;
}

.scroll_horizontal::-webkit-scrollbar-thumb {
  background-color: #DCDFE9;
  border-radius: 5px;
  min-width: 50%;
  min-height: 4px;
}

.scroll_horizontal::-webkit-scrollbar-thumb:hover {
  background-color: #DCDFE9;
}

.scroll_horizontal::-webkit-scrollbar-thumb:active {
  background-color: #DCDFE9;
}

/* table */
.table_scroll {
  -webkit-box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  margin-bottom: 20px;
}
.table_scroll table {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .table_scroll.scroll {
    width: calc(100% + 20px);
    border-radius: 10px 0 0 10px;
    margin-right: -20px;
  }
  .table_scroll.scroll table {
    min-width: 500px;
    border-radius: 10px 0 0 10px;
  }
}

table {
  border-radius: 10px;
  border-collapse: separate;
  background: #fff;
  overflow: hidden;
  margin-bottom: 20px;
}
table th, table td {
  text-align: left;
  font-size: 14px;
  line-height: 22px;
  padding: 10px 20px;
}
table th {
  vertical-align: middle;
  background: #0F0E0E;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
}
table th:not(:last-child) {
  border-right: 1px solid #363535;
}
table td {
  vertical-align: top;
  font-weight: 500;
}
table td:not(:last-child) {
  border-right: 1px solid #E7E7E7;
}
table tr:not(:last-child) td {
  border-bottom: 1px solid #E7E7E7;
}
table a, table ul li, table ol li {
  font-weight: 500;
  font-size: 14px;
  line-height: 22px;
}

/* blockquote */
.blockquote {
  position: relative;
  border-radius: 10px;
  background: #F9F9F9;
  padding: 25px 20px;
  padding-left: 64px;
  margin-bottom: 20px;
}
.blockquote p, .blockquote a {
  font-weight: 600;
  color: #171719;
}
.blockquote p:last-child {
  margin-bottom: 0;
}
.blockquote::before {
  position: absolute;
  content: "";
  width: 24px;
  height: 24px;
  background: center center/cover no-repeat;
  background-image: url("../img/sprite.svg#sprite--quote");
  left: 20px;
  top: 35px;
}
@media screen and (max-width: 768px) {
  .blockquote {
    padding: 20px;
    padding-top: 64px;
  }
  .blockquote::before {
    left: 20px;
    top: 20px;
  }
}

/* swiper */
.swiper-wrapper {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.swiper-slide {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

/* container */
.container {
  max-width: 1180px;
  padding: 0 20px;
  margin: 0 auto;
}
.container_thin {
  max-width: 1040px;
  padding: 0 20px;
  margin: 0 auto;
}

/* header */
.header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 101;
}
.header .container {
  position: relative;
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px;
}
.header .container::after {
  position: absolute;
  content: "";
  background: #2A2A2A;
  height: 1px;
  width: calc(100% - 40px);
  bottom: 0;
  left: 20px;
}
@media screen and (min-width: 993px) {
  .header .navigation {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    gap: 25px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .header .menu {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
@media screen and (max-width: 992px) {
  .header .navigation-mobile {
    position: fixed;
    z-index: 1;
    width: 0;
    top: 65px;
    bottom: 0;
    right: 0;
    background: #0F0E0E;
    text-align: center;
    padding: 50px 0 20px;
  }
  .header .navigation-mobile.open {
    width: 320px;
    padding: 50px 20px 20px;
  }
  .header .menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 450px) {
  .header .navigation-mobile.open {
    width: 100%;
  }
}

/* menu */
.menu {
  gap: 30px;
}
.menu-link {
  font-size: 14px;
  font-weight: 500;
  line-height: 17px;
  color: #CFCFCF;
}
.menu-link:hover {
  color: #fff;
}
@media screen and (max-width: 992px) {
  .menu-link {
    font-size: 16px;
    line-height: 22px;
  }
}

/* hamburger */
.hamburger {
  position: relative;
  z-index: 2;
  display: none;
  width: 24px;
  height: 24px;
  cursor: pointer;
  -webkit-transition-property: opacity, -webkit-filter;
  transition-property: opacity, -webkit-filter;
  -o-transition-property: opacity, filter;
  transition-property: opacity, filter;
  transition-property: opacity, filter, -webkit-filter;
  margin-left: auto;
}
.hamburger:hover {
  opacity: 0.7;
}
.hamburger-box {
  position: relative;
  display: block;
  width: 24px;
  height: 18px;
}
.hamburger-inner {
  position: absolute;
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 1.5px;
  -webkit-transition-duration: 0.22s;
       -o-transition-duration: 0.22s;
          transition-duration: 0.22s;
  -webkit-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
       -o-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
          transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  top: calc(50% - 1px);
  right: 0;
  background: #fff;
}
.hamburger-inner::before, .hamburger-inner::after {
  position: absolute;
  content: "";
  display: block;
  left: -6px;
  width: 18px;
  height: 2px;
  border-radius: 1.5px;
  background: #fff;
}
.hamburger-inner::before {
  -webkit-transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
  -o-transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
  transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
  top: 8px;
}
.hamburger-inner::after {
  -webkit-transition: bottom 0.1s 0.25s ease-in, -webkit-transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.1s 0.25s ease-in, -webkit-transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -o-transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  bottom: 8px;
}
.hamburger.is_active .hamburger-inner {
  width: 24px;
  -webkit-transform: rotate(225deg);
      -ms-transform: rotate(225deg);
          transform: rotate(225deg);
  -webkit-transition-delay: 0.12s;
       -o-transition-delay: 0.12s;
          transition-delay: 0.12s;
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
       -o-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
          transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger.is_active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  -webkit-transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
  -o-transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
  transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
}
.hamburger.is_active .hamburger-inner::after {
  bottom: 0;
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
  -webkit-transition: bottom 0.1s ease-out, -webkit-transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.1s ease-out, -webkit-transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
  left: 0;
  width: 24px;
}
@media screen and (max-width: 992px) {
  .hamburger {
    display: block;
  }
}

/* footer */
.footer {
  background: #0F0E0E;
  text-align: center;
  border-radius: 40px 40px 0 0;
  padding: 40px 0;
}

.copy {
  font-size: 14px;
  font-weight: 400;
  line-height: 17px;
  color: rgba(255, 255, 255, 0.8);
}

/* banner */
.banner {
  display: none;
  position: fixed;
  z-index: 105;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  -webkit-box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.1);
  background: #fff;
  padding: 10px 0;
}
.banner.open {
  display: block;
}
.banner .card {
  -webkit-box-shadow: none;
          box-shadow: none;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  padding: 0;
}
.banner .card .img {
  width: 140px;
  height: 50px;
  border-radius: 10px;
}
.banner .card .img img {
  max-height: 40px;
}
.banner .card-text {
  width: 140px;
  min-width: 140px;
}
.banner .card-bonus-text {
  margin-bottom: 0;
}
.banner .card-title {
  margin-bottom: 5px;
}
@media screen and (max-width: 992px) {
  .banner .form_hidden {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .banner .card {
    gap: 10px;
  }
  .banner .card .img {
    width: 50px;
    min-width: 50px;
    height: 50px;
  }
  .banner .card .img img {
    max-height: 40px;
  }
  .banner .card-title {
    font-size: 10px;
    line-height: 12px;
  }
  .banner .card-text {
    width: 110px;
    min-width: 110px;
  }
  .banner .card-bonus-text {
    font-size: 14px;
    line-height: 17px;
  }
  .banner .card .form-link {
    width: auto;
  }
  .banner .card .form-code {
    height: 25px;
  }
  .banner .card .form-code-btn {
    height: 25px;
    width: 74px;
    font-size: 12px;
    line-height: 25px;
  }
  .banner .card .embed {
    width: 103px;
    font-size: 12px;
    height: 25px;
  }
}
@media screen and (max-width: 500px) {
  .banner .card-bonus {
    min-width: auto;
  }
}

/* promo */
.promo {
  border-radius: 0 0 40px 40px;
  background: #0F0E0E;
  color: #fff;
  padding: 92px 0 40px;
  margin-bottom: 40px;
}
.promo p {
  color: #fff;
  font-size: 14px;
  line-height: 20px;
}
.promo .feature {
  margin-bottom: 20px;
}
.promo_bottom {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
.promo-update {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px 15px;
}
.promo-update .promo-author {
  margin-top: 0;
}
.promo-update .time-time {
  font-weight: 600;
  color: #fff;
}
.promo-author {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  margin-top: 20px;
}
.promo-author-title {
  font-size: 14px;
  font-weight: 500;
  line-height: 17px;
  color: rgba(255, 255, 255, 0.8);
}
.promo-author-img {
  width: 30px;
  height: 30px;
  border-radius: 100%;
  overflow: hidden;
}
.promo-author-img img {
  width: 30px;
  height: 30px;
  -o-object-fit: cover;
     object-fit: cover;
}
.promo-author-link {
  font-size: 14px;
  font-weight: 600;
  line-height: 17px;
  color: #fff;
}
.promo-author-link:hover {
  text-decoration: underline;
}
@media screen and (max-width: 992px) {
  .promo_bottom {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .promo_bottom .secured {
    min-width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .promo-author, .promo-update {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .promo-update .promo-author {
    min-width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .promo .h1 {
    text-align: center;
  }
}

/* luxury */
.luxury {
  gap: 15px 30px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 30px;
}
.luxury .img {
  width: 198px;
  min-width: 198px;
  height: 198px;
}
.luxury .img img {
  max-height: 178px;
}
.luxury .text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.luxury .text p {
  font-size: 14px;
  line-height: 17px;
  color: rgba(255, 255, 255, 0.8);
}
.luxury .text p:not(:last-child) {
  margin-bottom: 20px;
}
.luxury-bonus {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 427px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(4, 224, 131, 0)), to(rgba(4, 224, 131, 0.3)));
  background: -o-linear-gradient(top, rgba(4, 224, 131, 0) 0%, rgba(4, 224, 131, 0.3) 100%);
  background: linear-gradient(180deg, rgba(4, 224, 131, 0) 0%, rgba(4, 224, 131, 0.3) 100%);
  border-radius: 0 0 20px 20px;
  padding: 25px;
}
.luxury-bonus-text {
  position: relative;
  padding-left: 50px;
  margin-bottom: 15px;
}
.luxury-bonus-img {
  position: absolute;
  width: 40px;
  height: 40px;
  left: 0;
  top: calc(50% - 20px);
}
.luxury-bonus-img img {
  width: 40px;
  height: 40px;
}
.luxury-bonus-title {
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 500;
  line-height: 15px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2px;
}
.luxury-bonus-bonus {
  font-size: 22px;
  font-weight: 700;
  line-height: 27px;
}
.luxury .payment {
  margin-bottom: 15px;
}
.luxury .btn {
  width: 100%;
}
@media screen and (max-width: 992px) {
  .luxury {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .luxury .text {
    min-width: 100%;
  }
  .luxury-bonus-title {
    font-size: 10px;
    line-height: 12px;
  }
  .luxury-bonus-bonus {
    font-size: 18px;
    line-height: 22px;
  }
}
@media screen and (max-width: 500px) {
  .luxury .img {
    width: 100%;
    height: 110px;
  }
  .luxury .img img {
    max-height: 100px;
  }
  .luxury .text {
    text-align: center;
  }
}

/* payment */
.payment {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.payment-list {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 5px;
}
.payment__item {
  width: 26px;
  height: 26px;
}
.payment__item img {
  width: 26px;
  height: 26px;
  border-radius: 100%;
}

/* feature */
.feature {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px 30px;
}
.feature__item {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.feature__item img {
  margin: 0;
}
.feature-title, .feature-descr {
  font-size: 14px;
  font-weight: 600;
  line-height: 17px;
}
.feature-body {
  gap: 5px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  .feature__item {
    width: calc(50% - 15px);
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .feature-body {
    min-width: 100%;
  }
}
@media screen and (max-width: 500px) {
  .feature__item {
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .feature-body {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

/* game */
.game .title {
  margin-bottom: 20px;
}
.game.gridbox {
  grid-template-columns: repeat(auto-fit, minmax(140px, 140px));
  grid-gap: 20px;
  margin-bottom: 20px;
}
.game-swiper {
  margin-bottom: 40px;
}
.game__item {
  position: relative;
  width: 140px;
  min-width: 140px;
  height: 188px;
  border-radius: 10px;
  cursor: pointer;
  overflow: hidden;
}
.game__item img {
  position: absolute;
  width: 140px;
  height: 188px;
  border-radius: 10px;
  inset: 0;
}
.game__item::before {
  position: absolute;
  z-index: 1;
  content: "";
  width: 100%;
  height: 100%;
  inset: 0;
  background: rgba(15, 14, 14, 0.8);
  opacity: 0;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.game__item:hover::before {
  opacity: 1;
}
.game__item:hover .game-btn {
  opacity: 1;
}
.game-btn {
  position: absolute;
  z-index: 1;
  opacity: 0;
  width: 44px;
  height: 44px;
  background: center center/cover no-repeat;
  background-image: url("../img/sprite.svg#sprite--btn");
  top: calc(50% - 22px);
  left: calc(50% - 22px);
}
@media screen and (max-width: 1180px) {
  .game-swiper {
    min-width: calc(100% + 20px);
    margin-right: -20px;
  }
}
@media screen and (max-width: 992px) {
  .game.gridbox {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (max-width: 450px) {
  .game.gridbox {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  }
  .game.gridbox .game__item {
    width: 100%;
    min-width: auto;
  }
  .game.gridbox .game__item img {
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

/* secured */
.secured {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 20px;
}
.secured-list {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

/* card */
.offer {
  margin-bottom: 20px;
}

.card {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  border-radius: 15px;
  -webkit-box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.1);
  padding: 25px;
}
.card.open .card-body {
  max-height: 1000px;
  padding-top: 20px;
}
.card.open .card-btn::before {
  -webkit-transform: rotate(-180deg);
      -ms-transform: rotate(-180deg);
          transform: rotate(-180deg);
}
.card_top {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  border-bottom: 1px solid #E7E7E7;
  padding-bottom: 20px;
}
.card_bottom {
  gap: 15px;
  padding-top: 20px;
}
.card-licensed {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 11px;
}
.card-licensed-img {
  width: 20px;
  min-width: 20px;
  height: 20px;
  border-radius: 100%;
}
.card-licensed-img img {
  width: 20px;
  height: 20px;
  -o-object-fit: cover;
     object-fit: cover;
}
.card-licensed-title {
  font-size: 14px;
  font-weight: 500;
  line-height: 17px;
  color: #3C3F47;
}
.card-licensed .icon-check::before {
  bottom: 0;
  right: 0;
}
.card .img {
  width: 150px;
  min-width: 150px;
  height: 111px;
  border-radius: 10px;
}
.card .img img {
  max-height: 91px;
}
.card:not(:last-child) {
  margin-bottom: 15px;
}
.card-bonus {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.card-bonus-text {
  font-size: 22px;
  font-weight: 700;
  line-height: 27px;
  margin-bottom: 10px;
}
.card-title {
  font-size: 12px;
  font-weight: 500;
  line-height: 15px;
  color: #8E8E8E;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.card-text {
  min-width: 220px;
  width: 220px;
}
.card-feature {
  min-width: 200px;
  width: 200px;
}
.card-feature__item {
  position: relative;
  font-size: 14px;
  font-weight: 600;
  line-height: 17px;
  padding-left: 28px;
}
.card-feature__item:not(:last-child) {
  margin-bottom: 7px;
}
.card-feature__item::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
}
.card-feature-rate::before {
  width: 18px;
  height: 18px;
  background: center center/cover no-repeat;
  background-image: url("../img/sprite.svg#sprite--trophy");
}
.card-feature-payout::before {
  width: 18px;
  height: 18px;
  background: center center/cover no-repeat;
  background-image: url("../img/sprite.svg#sprite--bolt");
}
.card-feature-payment::before {
  width: 18px;
  height: 18px;
  background: center center/cover no-repeat;
  background-image: url("../img/sprite.svg#sprite--credit-card");
}
.card-btn {
  position: relative;
  font-size: 14px;
  font-weight: 600;
  line-height: 23px;
  padding-right: 17px;
  margin-left: auto;
}
.card-btn::before {
  position: absolute;
  content: "";
  width: 10px;
  height: 6px;
  background: center center/cover no-repeat;
  background-image: url("../img/sprite.svg#sprite--arr-card");
  right: 0;
  top: calc(50% - 3px);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.card-body {
  gap: 10px;
  max-height: 0;
  overflow: hidden;
  padding-top: 0;
}
.card-body__item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 280px;
  border-radius: 15px;
  background: #F9F9F9;
  padding: 15px;
}
.card-body .heading {
  margin-bottom: 10px;
}
.card-info {
  font-size: 14px;
  line-height: 21px;
}
.card-info:not(:last-child) {
  margin-bottom: 15px;
}
.card-info__item, .card-info-term, .card-info-descr {
  font-size: 14px;
  line-height: 17px;
}
.card-info__item:not(:last-child) {
  margin-bottom: 10px;
}
.card-logos {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 9px;
}
.card-logos-img {
  width: 32px;
  height: 32px;
  border-radius: 100%;
  overflow: hidden;
}
.card-logos-img img {
  width: 32px;
  height: 32px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .card-text {
    min-width: 100%;
    width: 100%;
  }
  .card .btn, .card .form-link {
    width: 100%;
  }
  .card_bottom {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .card-licensed {
    min-width: 100%;
  }
  .card-btn {
    margin-left: 0;
  }
}
@media screen and (max-width: 500px) {
  .card .img {
    width: 100%;
    height: 111px;
  }
  .card .img img {
    max-height: 101px;
  }
  .card-bonus {
    min-width: 100%;
  }
}

/* characteristic */
.characteristic {
  gap: 30px;
  border-radius: 10px;
  background: #F9F9F9;
  padding: 30px;
  margin-bottom: 20px;
}
.characteristic__item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.characteristic__item ul {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .characteristic {
    padding: 20px;
  }
  .characteristic__item {
    min-width: 100%;
  }
}

/* information */
.information__item {
  gap: 10px;
}
.information__item:not(:last-child) {
  margin-bottom: 20px;
}
.information-dt {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 7px;
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  color: #505256;
}
.information-dt img {
  width: 20px;
  min-width: 20px;
  height: 20px;
}
.information-dd {
  text-align: right;
  font-size: 16px;
  font-weight: 600;
  line-height: 22px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 500px) {
  .information-dd {
    min-width: 100%;
    text-align: left;
  }
}

/* developers */
.developers {
  border-radius: 10px;
  border: 1px solid #E7E7E7;
  padding: 30px;
  margin-bottom: 20px;
}
.developers-list {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 15px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.developers__item {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 7px;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  color: #3C3F47;
}
.developers__item img {
  width: 32px;
  min-width: 32px;
  height: 32px;
  border-radius: 100%;
}
@media screen and (max-width: 768px) {
  .developers {
    padding: 20px;
  }
}

/* mobile */
.mobile {
  position: relative;
  border-radius: 10px;
  background: #F9F9F9;
  gap: 0 30px;
  padding: 30px;
  margin-bottom: 20px;
}
.mobile::after {
  position: absolute;
  content: "";
  width: 1px;
  height: calc(100% - 60px);
  top: 30px;
  left: calc(50% - 0.5px);
  background: #E7E7E7;
}
.mobile__item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 440px;
}
.mobile-body {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.mobile-descr {
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  color: #505256;
}
@media screen and (max-width: 768px) {
  .mobile::after {
    display: none;
  }
  .mobile__item {
    max-width: 100%;
    min-width: 100%;
  }
  .mobile__item:not(:last-child) {
    border-bottom: 1px solid #E7E7E7;
    padding-bottom: 30px;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 500px) {
  .mobile {
    text-align: center;
  }
  .mobile-body {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .mobile-descr {
    min-width: 100%;
  }
}

.app-link {
  width: 142px;
  height: 41px;
}
.app-link img {
  width: 142px;
  height: 41px;
}

/* faq */
.faq {
  counter-reset: number;
}
.faq__item {
  overflow: hidden;
  border-radius: 10px;
  background: #F9F9F9;
  padding: 20px;
}
.faq__item:not(:last-child) {
  margin-bottom: 20px;
}
.faq__item .heading {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  position: relative;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  list-style: none;
  cursor: pointer;
  margin-bottom: 0;
}
.faq__item .heading::before {
  counter-increment: number;
  content: counter(number);
  -ms-flex-item-align: start;
      align-self: start;
  margin-right: 20px;
}
.faq__item .heading::after {
  content: "+";
  font-weight: 400;
  font-size: 30px;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  -o-transition: transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  margin-left: auto;
}
.faq__item .text {
  padding-left: 30px;
}
.faq__item .text p {
  color: #171719;
}
.faq__item .text p:first-child {
  padding-top: 10px;
}
.faq__item[open] .heading::after {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

/* tablecontent */
.tablecontent {
  overflow: hidden;
  border-radius: 10px;
  background: #F9F9F9;
  padding: 20px;
  margin-bottom: 25px;
}
.tablecontent .heading {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  position: relative;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  list-style: none;
  cursor: pointer;
  margin-bottom: 0;
}
.tablecontent .heading::after {
  content: "+";
  font-weight: 400;
  font-size: 30px;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  -o-transition: transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  margin-left: auto;
}
.tablecontent-list {
  counter-reset: number;
  max-height: 0;
  overflow: hidden;
  padding-top: 0;
}
.tablecontent__item {
  position: relative;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  padding-left: 29px;
}
.tablecontent__item::before {
  position: absolute;
  counter-increment: number;
  content: counter(number);
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  text-align: center;
  line-height: 22px;
  font-weight: 700;
}
.tablecontent__item:not(:last-child) {
  margin-bottom: 12px;
}
.tablecontent-link {
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
}
.tablecontent-link:hover {
  color: #0EBE5F;
}
.tablecontent.open .tablecontent-list {
  max-height: 1000px;
  padding-top: 20px;
}
.tablecontent.open .heading::after {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media screen and (max-width: 768px) {
  .tablecontent {
    padding: 15px;
    margin-bottom: 20px;
  }
}

/* author */
.author {
  background: #FFF2DC;
  border-radius: 10px;
  padding: 25px 20px;
  margin-bottom: 20px;
}
.author .heading {
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  font-weight: 600;
  margin-bottom: 10px;
}
.author .heading img {
  width: 30px;
  min-width: 30px;
  height: 30px;
}
.author p {
  color: #171719;
}

/* best */
.best {
  margin-bottom: 20px;
}
.best__item {
  position: relative;
  border-radius: 10px;
  background: #F9F9F9;
  padding: 20px;
  padding-left: 62px;
}
.best__item .heading {
  margin-bottom: 10px;
}
.best__item .heading img {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 22px;
  height: 22px;
}
.best__item p {
  color: #171719;
}
.best__item:not(:last-child) {
  margin-bottom: 20px;
}

/* bonus */
.bonus {
  margin-bottom: 20px;
}
.bonus__item {
  border-radius: 10px;
  border: 1px solid #E7E7E7;
  padding: 20px;
}
.bonus__item:not(:last-child) {
  margin-bottom: 20px;
}
.bonus__item .heading {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 10px;
  margin-bottom: 10px;
}
.bonus__item .heading img {
  width: 32px;
  min-width: 32px;
  height: 32px;
}
.bonus__item p {
  color: #171719;
}

/* laws */
.laws {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-gap: 20px;
  margin-bottom: 20px;
}
.laws__item {
  border-radius: 10px;
  background: #F9F9F9;
  text-align: center;
  padding: 20px;
}
.laws__item .heading {
  margin-bottom: 10px;
}
.laws__item p {
  font-size: 14px;
  line-height: 20px;
  color: #171719;
}
.laws-img {
  display: block;
  width: 100%;
  height: 122px;
  border-radius: 10px;
  margin-bottom: 10px;
}
.laws-img img {
  width: 244px;
  height: 122px;
  border-radius: 10px;
}
/*# sourceMappingURL=../sourcemaps/style.css.map */
