@charset "UTF-8";

/* Reset and base styles  */

* {
  padding: 0px;
  margin: 0px;
  border: none;
}

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

/* Links */

a,
a:link,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

/* Common */

aside,
nav,
footer,
header,
section,
main {
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-size: inherit;
  font-weight: inherit;
}

ul,
ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

address {
  font-style: normal;
}

/* Form */

input,
textarea,
button,
select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background-color: transparent;
}

input::-ms-clear {
  display: none;
}

button,
input[type="submit"] {
  display: inline-block;
  -webkit-box-shadow: none;
  box-shadow: none;
  background-color: transparent;
  background: none;
  cursor: pointer;
}

input:focus,
input:active,
button:focus,
button:active {
  outline: none;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

label {
  cursor: pointer;
}

legend {
  display: block;
}

@font-face {
  font-family: "geologica";
  font-display: swap;
  src: url("/ch1SFr__fonts/ch1SFr__geologica-bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "geologica";
  font-display: swap;
  src: url("/ch1SFr__fonts/ch1SFr__geologica-semibold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "geologica";
  font-display: swap;
  src: url("/ch1SFr__fonts/ch1SFr__geologica-medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "geologica";
  font-display: swap;
  src: url("/ch1SFr__fonts/ch1SFr__geologica-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}

:root {
  --container-width: 1440px;
  --container-padding: 120px;
  --container-padding-tablet: 16px;
  --section-padding-block: 20px;
  --section-padding-block-mobile: 20px;
  --background: linear-gradient(330deg, #568ec7 55.92%, #18508b 78.93%);
  --font-color: #fff;
  --font-size: clamp(0.875rem, 0.8317307692rem + 0.1923076923vw, 1rem);
  --font-family: Geologica, sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  --btn-font-size: 1rem;
  --btn-font-weight: 700;
  --btn-padding: 1.013em 1em 0.8em 1em;
  --btn-bg: #d13e00;
  --btn-bg-hover: var(--btn-bg);
  --btn-color: #ffffff;
  --btn-color-hover: var(--btn-color);
  --btn-radius: 0.9rem;
  --btn-transition: all 0.2s ease-in-out;
  --btn-shadow:
    inset 100px 0px 70px 0px #fc9d4a, 0 0 14px 0 rgba(73, 150, 240, 0.4);
  --btn-shadow-hover:
    inset 40px 0px 70px 0px #fc9d4a, 0 0 14px 0 rgba(73, 150, 240, 0.4);
  --main-color: #2a74d6;
  --color-white: #182e66;
}

h1,
.ch1SFr__h1,
h2,
.ch1SFr__h2,
h3,
.ch1SFr__h3 {
  font-weight: normal;
  overflow-wrap: break-word;
  word-break: break-word;
  line-height: 0.9;
  font-weight: 600;
}

h3,
.ch1SFr__h3 {
  /* color: #fff; */
  font-family: Geologica;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

h1,
.ch1SFr__h1 {
  font-size: clamp(1.25rem, 0.8822115385rem + 1.6346153846vw, 2.3125rem);
}

h2,
.ch1SFr__h2 {
  font-size: clamp(1.375rem, 1.0721153846rem + 1.3461538462vw, 2.25rem);
  color: #182e66;
  font-family: Geologica;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

h3,
.ch1SFr__h3 {
  font-size: clamp(1.125rem, 0.8653846154rem + 1.1538461538vw, 1.875rem);
  color: #ef681c;
  font-family: Geologica;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.ch1SFr__h3 {
  /* color: #fff; */
  font-family: Geologica;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

html {
  scroll-behavior: smooth;
  background: var(--background);
  scrollbar-gutter: stable;
}

body {
  background: var(--background);
  color: var(--font-color);
  font-family: var(--font-family);
  font-size: var(--font-size);
  font-weight: 500;
  line-height: 1;
}

html,
body {
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

strong {
  font-weight: 700;
}

a {
  -webkit-transition: var(--btn-transition);
  transition: var(--btn-transition);
  color: inherit;
}

img {
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
}

.ch1SFr__no-scroll {
  overflow: hidden;
}

.ch1SFr__visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  white-space: nowrap;
  clip-path: inset(100%);
  clip: rect(0 0 0 0);
  overflow: hidden;
}

.ch1SFr__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.ch1SFr__items .ch1SFr__item {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.ch1SFr__terms .ch1SFr__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
}

.ch1SFr__terms li,
.ch1SFr__ul-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.ch1SFr__terms li:before,
.ch1SFr__ul-list li:before {
  content: "•";
  margin-inline: 8px;
}

.ch1SFr__main {
  padding-block: 10px;
}

.ch1SFr__main section,
.ch1SFr__main .ch1SFr__section {
  padding-block: var(--section-padding-block);
}

button,
.btn {
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: pointer;
  -webkit-transition: var(--btn-transition);
  transition: var(--btn-transition);
}

.btn {
  border-radius: 16px;
  border: 1px solid #92db64;
  background: linear-gradient(90deg, #92db64 0%, #51d200 100%);
  box-shadow: 0 0 14px 0 rgba(73, 150, 240, 0.4);
  color: #fff;
  text-align: center;
  leading-trim: both;
  text-edge: cap;
  font-family: Geologica;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  min-width: 132px;
  min-height: 47px;
}

.btn:active {
  -webkit-transform: translateY(2px);
  -ms-transform: translateY(2px);
  transform: translateY(2px);
}

.ch1SFr__center {
  text-align: center;
}

.ch1SFr__center .btn {
  margin-inline: auto;
}

.ch1SFr__bg {
  background-image:
    linear-gradient(
      253deg,
      rgba(125, 203, 249, 0.3) 7.45%,
      rgba(208, 234, 253, 0.3) 98.82%
    ),
    url("/ch1SFr__img/ch1SFr__banner.webp");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
.ch1SFr__avif .ch1SFr__bg {
  background-image:
    linear-gradient(
      253deg,
      rgba(125, 203, 249, 0.3) 7.45%,
      rgba(208, 234, 253, 0.3) 98.82%
    ),
    url("/ch1SFr__img/ch1SFr__banner.webp");
}

.ch1SFr__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
  max-width: var(--container-width);
  width: 100%;
}

.ch1SFr__modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(3px);
  background: rgba(0, 0, 0, 0.8);
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 999;
  overflow-y: auto;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding-block: 20px;
}

.ch1SFr__modal-content {
  background: var(--background);
  padding: 2rem 1rem;
  position: relative;
  max-width: 420px;
  width: 90%;
  -webkit-animation: fadeIn 0.45s cubic-bezier(0.01, 0.8, 0.03, 1);
  animation: fadeIn 0.45s cubic-bezier(0.01, 0.8, 0.03, 1);
  text-align: center;
  margin-block: auto;
}

.ch1SFr__modal-content .btn {
  margin-inline: auto;
  width: 100%;
  padding-inline: 0;
}

.ch1SFr__modal-content h2 {
  text-align: center;
}

.ch1SFr__close {
  position: absolute;
  top: 0;
  right: 1rem;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 1;
}

body.ch1SFr__modal-open {
  overflow: hidden;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(-80px);
    transform: translateY(-80px);
  }

  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(-80px);
    transform: translateY(-80px);
  }

  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

.ch1SFr__checkbox-container {
  margin-top: 20px;
  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;
}

.ch1SFr__checkbox-container input[type="checkbox"] {
  margin-right: 10px;
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
}

.ch1SFr__checkbox-container label {
  cursor: pointer;
  font-size: 12px;
}

.ch1SFr__item.ch1SFr__wrapper,
.ch1SFr__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 30px;
  padding: 36px;
  border-radius: 18px;
  background: #f6f6f6;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.12);
  cursor: default;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  will-change: transform;
}

.ch1SFr__wrapper p,
.ch1SFr__wrapper li {
  color: #182e66;
  font-family: Geologica;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.ch1SFr__item.ch1SFr__wrapper--blue,
.ch1SFr__wrapper--blue {
  border-radius: 18px;
  background: #182e66;
  color: #fff !important;
}

.ch1SFr__wrapper--blue h3 {
  color: #fff !important;
}
.ch1SFr__wrapper--blue p {
  color: #fff !important;
}
.ch1SFr__item.ch1SFr__wrapper--blue h1,
.ch1SFr__item.ch1SFr__wrapper--blue .ch1SFr__h1,
.ch1SFr__item.ch1SFr__wrapper--blue h2,
.ch1SFr__item.ch1SFr__wrapper--blue .ch1SFr__h2,
.ch1SFr__item.ch1SFr__wrapper--blue h3,
.ch1SFr__wrapper--blue h1,
.ch1SFr__wrapper--blue .ch1SFr__h1,
.ch1SFr__wrapper--blue h2,
.ch1SFr__wrapper--blue .ch1SFr__h2 {
  /* color: var(--color-white); */
}

.ch1SFr__item.ch1SFr__wrapper--blue h3,
.ch1SFr__item.ch1SFr__wrapper--blue .ch1SFr__h3,
.ch1SFr__wrapper--blue h3,
.ch1SFr__wrapper--blue .ch1SFr__h3 {
  -webkit-text-fill-color: initial;
  background: none;
}

/* Blocks */

.ch1SFr__banner {
  padding-block: 10px;
}

.ch1SFr__banner .ch1SFr__container {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.ch1SFr__banner .ch1SFr__descrr {
  display: flex;
  padding: 10px 24px;
  justify-content: center;
  align-items: center;
  gap: 10px;

  border-radius: 16px;
  border: 1px solid #a3e37b;
  background: #a3e37b !important;
  background-color: #a3e37b !important;

  font-size: 12px;
  margin-bottom: -4px;
  color: #28358d;
  font-family: Geologica;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.ch1SFr__banner .ch1SFr__inner,
.ch1SFr__banner .ch1SFr__advantages {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px 20px;
}

.ch1SFr__banner .ch1SFr__inner {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.ch1SFr__banner .ch1SFr__wrap-grid {
  display: grid;
  grid-template-columns: 134px minmax(0, 590px) 134px;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: end;
  gap: 16px;
  width: 100%;
}

.ch1SFr__banner .ch1SFr__wrap-grid::before,
.ch1SFr__banner .ch1SFr__wrap-grid::after {
  content: "";
  width: 203px;
  height: 203px;
  background-image: url("/ch1SFr__img/ch1SFr__banner.svg");
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
}

.ch1SFr__banner .ch1SFr__advantages {
  font-size: clamp(0.5625rem, 0.4543269231rem + 0.4807692308vw, 0.875rem);
}

.ch1SFr__banner .ch1SFr__advantages li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
}

.ch1SFr__banner .ch1SFr__advantages li::before {
  content: "";
  width: 24px;
  aspect-ratio: 1;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  background-image: url("/ch1SFr__img/ch1SFr__icon-check.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  margin-top: -4px;
}

.ch1SFr__footer {
  margin-top: auto;
  padding-block: 50px;
  background: #2b2f38;
  font-size: 12px;
  color: #e8e8e8;
}

.ch1SFr__footer a:hover {
  opacity: 0.6;
}

.ch1SFr__footer .ch1SFr__link {
  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;
  gap: 30px 40px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  text-transform: uppercase;
}

.ch1SFr__footer .ch1SFr__age {
  width: 40px;
  aspect-ratio: 1;
  cursor: default;
  background-image: url("/ch1SFr__img/ch1SFr__21-plus.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  margin-inline: auto;
}

.ch1SFr__footer .ch1SFr__regulations a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: left;
  gap: 20px 60px;
  font-size: 19px;
  line-height: 1.2;
}

.ch1SFr__footer .ch1SFr__regulations a img {
  width: 100%;
  height: 100%;
  max-width: 171px;
}

.ch1SFr__header {
  padding-block: 18px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(43, 47, 56, 0.01);
  backdrop-filter: blur(7px);
  position: relative;
  z-index: 999;
}

.ch1SFr__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;
}

.ch1SFr__header .ch1SFr__nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 60px;
  -moz-column-gap: 60px;
  column-gap: 60px;
}

.ch1SFr__header a:hover {
  opacity: 0.7;
}

.ch1SFr__logo {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 9px;
  text-transform: uppercase;
  line-height: 0.8;
}

.ch1SFr__logo img {
  width: 38px;
  aspect-ratio: 1.357/1;
  -o-object-fit: contain;
  object-fit: contain;
}

.ch1SFr__mobile-nav {
  position: fixed;
  top: -100%;
  width: 100%;
  height: 100%;
  z-index: 99;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-top: 40px;
  padding-bottom: 40px;
  background: #000;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.ch1SFr__mobile-nav--open {
  top: 0;
}

.ch1SFr__mobile-nav {
  color: #fff;
}

.ch1SFr__mobile-nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  row-gap: 20px;
  font-size: 28px;
  text-align: center;
}

/* Nav Icon */

.ch1SFr__mobile-nav-btn {
  --time: 0.1s;
  --width: 36px;
  --height: 30px;
  --line-height: 3px;
  --spacing: 5px;
  --color: var(--font-color);
  --radius: 4px;
  /* Fixed height and width */
  /* height: var(--height); */
  /* width: var(--width); */
  /* Dynamic height and width */
  height: calc(var(--line-height) * 2 + var(--spacing) * 3);
  width: var(--width);
  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;
}

.ch1SFr__nav-icon {
  position: relative;
  width: var(--width);
  height: var(--line-height);
  background-color: var(--color);
  border-radius: var(--radius);
}

.ch1SFr__nav-icon::before,
.ch1SFr__nav-icon::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  width: var(--width);
  height: var(--line-height);
  border-radius: var(--radius);
  background-color: var(--color);
  -webkit-transition:
    top var(--time) linear var(--time),
    -webkit-transform var(--time) ease-in;
  transition:
    top var(--time) linear var(--time),
    -webkit-transform var(--time) ease-in;
  transition:
    transform var(--time) ease-in,
    top var(--time) linear var(--time);
  transition:
    transform var(--time) ease-in,
    top var(--time) linear var(--time),
    -webkit-transform var(--time) ease-in;
}

.ch1SFr__nav-icon::before {
  /* top: calc(var(--line-height) * -2); */
  top: calc(-1 * (var(--line-height) + var(--spacing)));
}

.ch1SFr__nav-icon::after {
  /* top: calc(var(--line-height) * 2); */
  top: calc(var(--line-height) + var(--spacing));
}

.ch1SFr__nav-icon.ch1SFr__nav-icon--active {
  background-color: transparent;
}

.ch1SFr__nav-icon.ch1SFr__nav-icon--active::before,
.ch1SFr__nav-icon.ch1SFr__nav-icon--active::after {
  top: 0;
  -webkit-transition:
    top var(--time) linear,
    -webkit-transform var(--time) ease-in var(--time);
  transition:
    top var(--time) linear,
    -webkit-transform var(--time) ease-in var(--time);
  transition:
    top var(--time) linear,
    transform var(--time) ease-in var(--time);
  transition:
    top var(--time) linear,
    transform var(--time) ease-in var(--time),
    -webkit-transform var(--time) ease-in var(--time);
  background-color: #fff;
}

.ch1SFr__nav-icon.ch1SFr__nav-icon--active::before {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.ch1SFr__nav-icon.ch1SFr__nav-icon--active::after {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

/* Layout */

.ch1SFr__mobile-nav-btn {
  z-index: 999;
  display: none;
}

.ch1SFr__text .ch1SFr__container {
  gap: 10px;
}

.ch1SFr__text ol {
  list-style: none;
}

.ch1SFr__text .ch1SFr__time {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px;
  margin-block: -12px;

  color: #182e66;
  font-family: Geologica;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.ch1SFr__text .ch1SFr__time::before {
  content: "";
  width: 50px;
  aspect-ratio: 1;
  background-image: url("/ch1SFr__img/ch1SFr__icon-time.webp");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.ch1SFr__avif .ch1SFr__text .ch1SFr__time::before {
  background-image: url("/ch1SFr__img/ch1SFr__icon-time.webp");
}

.ch1SFr__top {
  color: var(--color-white);
}

/* .ch1SFr__top li:nth-of-type(2) .ch1SFr__stars li:nth-last-child(1) img,
.ch1SFr__top li:nth-of-type(4) .ch1SFr__stars li:nth-last-child(2) img,
.ch1SFr__top li:nth-of-type(6) .ch1SFr__stars li:nth-last-child(3) img,
.ch1SFr__top li:nth-of-type(8) .ch1SFr__stars li:nth-last-child(4) img,
.ch1SFr__top li:nth-of-type(10) .ch1SFr__stars li:nth-last-child(5) img {
  content: url(/ch1SFr__img/ch1SFr__icon-star-50.svg);
} */

/* .ch1SFr__top li:nth-of-type(3) .ch1SFr__stars li:nth-last-child(1) img,
.ch1SFr__top li:nth-of-type(4) .ch1SFr__stars li:nth-last-child(1) img,
.ch1SFr__top li:nth-of-type(5) .ch1SFr__stars li:nth-last-child(-n + 2) img,
.ch1SFr__top li:nth-of-type(6) .ch1SFr__stars li:nth-last-child(-n + 2) img,
.ch1SFr__top li:nth-of-type(7) .ch1SFr__stars li:nth-last-child(-n + 3) img,
.ch1SFr__top li:nth-of-type(8) .ch1SFr__stars li:nth-last-child(-n + 3) img,
.ch1SFr__top li:nth-of-type(9) .ch1SFr__stars li:nth-last-child(-n + 4) img,
.ch1SFr__top li:nth-of-type(10) .ch1SFr__stars li:nth-last-child(-n + 4) img {
  content: url(/ch1SFr__img/ch1SFr__icon-star-0.svg);
} */

.ch1SFr__top .ch1SFr__top-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 15px;
}

.ch1SFr__btn_show_more {
  opacity: 0;
}

.ch1SFr__top .ch1SFr__article {
  border-radius: 12px;
  background: #f6f6f6;
  box-shadow: 0 0 14px 0 #4996f0;
  display: grid;
  grid-template-columns: minmax(0, 258px) minmax(0, 400px) 122px minmax(
      0,
      262px
    );
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  justify-items: center;
  /* -webkit-box-pack: justify; */
  /* -ms-flex-pack: justify; */
  /* justify-content: space-between; */
  gap: 16px;
  position: relative;
  /* padding: 17px 24px; */
  margin-inline: auto;
  width: 100%;
  min-height: 140px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  will-change: transform;
  padding: 0;
  padding-right: 24px;
}

.ch1SFr__top .ch1SFr__label {
  position: absolute;
  top: 0;
  left: 16px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  border-radius: 100px;
  background: #e7e7e7;
  box-shadow: 0 0 4px 0 rgba(255, 255, 255, 0.5);
  padding: 6px 20px;
  color: #182e66;
  font-family: Geologica;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  font-size: clamp(0.625rem, 0.5384615385rem + 0.3846153846vw, 0.875rem);
}

.ch1SFr__top .ch1SFr__img-container,
.ch1SFr__top .ch1SFr__bonus-container,
.ch1SFr__top .btn-container,
.ch1SFr__top .ch1SFr__rating {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}

.ch1SFr__top .ch1SFr__img-container {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
}

.ch1SFr__top .ch1SFr__img-container img {
  width: 100%;
  height: 70px;
  max-width: 205px;
  -o-object-fit: contain;
  object-fit: contain;
}

.ch1SFr__top .ch1SFr__rating span {
  font-size: clamp(1.375rem, 0.9423076923rem + 1.9230769231vw, 2.625rem);
  margin-bottom: -5px;
}

.ch1SFr__top .ch1SFr__stars,
.ch1SFr__top .ch1SFr__pay {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4px;
  width: 100%;
}

.ch1SFr__top .ch1SFr__pay {
  -webkit-box-pack: space-evenly;
  -ms-flex-pack: space-evenly;
  justify-content: space-evenly;
}

.ch1SFr__top .ch1SFr__pay img {
  width: 20px;
  aspect-ratio: 1;
}

.ch1SFr__top .ch1SFr__stars {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.ch1SFr__top .ch1SFr__stars img {
  width: 22px;
  aspect-ratio: 1;
}

.ch1SFr__top .ch1SFr__bonus-container,
.ch1SFr__top .btn-container {
  width: 100%;
}

.ch1SFr__bonus-container {
}

.ch1SFr__top .ch1SFr__bonus {
  font-size: clamp(0.75rem, 0.5769230769rem + 0.7692307692vw, 1.25rem);
  color: #182e66;
  text-align: center;
  font-family: Geologica;
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 20px */
  background: #f6f6f6;
}

.ch1SFr__top .btn {
  width: 100%;
  position: relative;
  position: relative;
  z-index: 0;
}

.ch1SFr__top .btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  outline: 6px solid #92db64;
  -webkit-animation: pulse 3.6s ease-out infinite;
  animation: pulse 3.6s ease-out infinite;
  z-index: -1;
  will-change: transform;
  pointer-events: none;
}

.ch1SFr__top .ch1SFr__license {
  font-size: clamp(0.5rem, 0.4134615385rem + 0.3846153846vw, 0.75rem);
}

.ch1SFr__top .ch1SFr__online {
  width: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 4px;
  font-size: clamp(0.75rem, 0.6634615385rem + 0.3846153846vw, 1rem);
  border-radius: 60px 60px 0 60px;
  padding: 4px;
  border: 1px solid #449aff;
}

.ch1SFr__top .ch1SFr__online::before,
.ch1SFr__top .ch1SFr__online::after {
  content: "";
  aspect-ratio: 1;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-top: 0px;
}

.ch1SFr__top .ch1SFr__online::before {
  width: 16px;
  background-image: url("/ch1SFr__img/ch1SFr__icon-people.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.ch1SFr__top .ch1SFr__online::after {
  content: "" !important;
  display: inline-block;
  width: 6px;
  height: 6px;
  background-color: #00b200;
  border-radius: 50%;
  vertical-align: text-bottom;
}

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0.5;
  }

  40% {
    -webkit-transform: scale(1.05, 1.25);
    transform: scale(1.05, 1.25);
    opacity: 0;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
}

@keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0.5;
  }

  40% {
    -webkit-transform: scale(1.05, 1.25);
    transform: scale(1.05, 1.25);
    opacity: 0;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
}

.ch1SFr__top .image_article {
  background: #182e66;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px 0 0 12px;
}

@media (min-width: 820px) {
  .ch1SFr__top .ch1SFr__stars {
    margin-top: -8px;
  }
}

@media (max-width: 1220px) {
  .ch1SFr__container {
    padding: 0 var(--container-padding-tablet);
  }

  .ch1SFr__header {
    padding-block: 12px 8px;
  }

  .ch1SFr__header__nav {
    display: none;
  }

  .ch1SFr__logo span {
    display: none;
  }

  .ch1SFr__mobile-nav-btn {
    display: block;
  }

  .ch1SFr__top .ch1SFr__article {
    max-width: 981px;
  }
  .ch1SFr__banner .ch1SFr__wrap-grid::before,
  .ch1SFr__banner .ch1SFr__wrap-grid::after {
    display: none;
  }
  .ch1SFr__banner .ch1SFr__wrap-grid {
    grid-template-columns: 1fr;
    margin-bottom: -10px;
  }
}

@media (max-width: 820px) {
  h1,
  .ch1SFr__h1 {
    text-wrap: balance;
  }

  .ch1SFr__btn_show_more {
    display: flex !important;
    opacity: 1;
    color: #fff !important;
    text-align: center;
    font-family: Geologica;
    font-size: 8px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    align-self: center;
  }

  .ch1SFr__items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .ch1SFr__main section,
  .ch1SFr__main .ch1SFr__section {
    padding-block: var(--section-padding-block-mobile);
  }

  .btn {
    width: 100%;
    margin-inline: auto;
    max-width: 420px;
    padding: 0.813em 1em 0.5em 1em;
    min-height: 39px;
  }

  .ch1SFr__modal-content {
    padding: 12px;
  }

  .ch1SFr__item.ch1SFr__wrapper,
  .ch1SFr__wrapper {
    padding: 36px 16px;
  }

  .ch1SFr__banner .ch1SFr__descr {
    display: none;
  }

  .ch1SFr__banner .ch1SFr__inner,
  .ch1SFr__banner .ch1SFr__advantages {
    gap: 10px;
  }

  .ch1SFr__banner .ch1SFr__inner p,
  .ch1SFr__banner .ch1SFr__advantages p {
    display: none;
  }

  .ch1SFr__banner .ch1SFr__advantages li {
    gap: 3px;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }

  .ch1SFr__banner .ch1SFr__advantages li::before {
    width: 14px;
  }

  .ch1SFr__footer .ch1SFr__regulations a {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .ch1SFr__text .ch1SFr__time {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
  }

  /* ========== НОВАЯ МОБИЛЬНАЯ ВЕРСТКА 820px ========== */
  .ch1SFr__top .ch1SFr__top-list {
    gap: 20px;
  }

  .ch1SFr__top .ch1SFr__article {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 0;
    margin-bottom: 0;
    max-width: 500px;
    min-height: auto;
    box-shadow: 0 0 14px 0 var(--main-color);
    padding: 0 !important;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
  }

  /* Блок 1: Картинка + Рейтинг (левая колонка) */
  .ch1SFr__top .image_article {
    grid-column: 1;
    grid-row: 1 / 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 15px 10px;
    background: #182e66;
    border-radius: 12px 0 0 12px;
    gap: 10px;
  }

  .ch1SFr__top .ch1SFr__img-container {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .ch1SFr__top .ch1SFr__img-container img {
    max-width: 140px;
    height: auto;
  }

  .ch1SFr__top .ch1SFr__rating {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 5px;
    color: #fff;
    text-align: center;
    font-weight: 500;
    padding: 0;
    position: absolute;
    bottom: 15px;
    left: 0;
    width: 50%;
    align-items: center;
    justify-content: center;
    align-self: center !important;
  }

  .ch1SFr__top .ch1SFr__rating span {
    font-size: 1.5rem;
    margin-bottom: 0;
  }

  .ch1SFr__top .ch1SFr__stars {
    width: auto;
    justify-content: center;
    gap: 2px;
  }

  .ch1SFr__top .ch1SFr__stars img {
    width: 16px !important;
    height: 16px !important;
  }

  .ch1SFr__top .ch1SFr__license {
    display: none;
  }

  /* Блок 2: Бонус + Кнопка + Платёжки (правая колонка) */
  .ch1SFr__top .ch1SFr__bonus-container {
    grid-column: 2;
    grid-row: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 15px 10px 10px 10px;
    background: #f6f6f6;
    gap: 8px;
  }

  .ch1SFr__top .ch1SFr__bonus {
    text-align: center;
    font-size: 0.85rem;
    line-height: 1.3;
    color: #182e66 !important;
  }

  .ch1SFr__top .ch1SFr__online {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 4px;
    position: static;
    border-radius: 12px;
    border: 1px solid #449aff;
    padding: 5px 8px 3px 8px;
    background: #fff;
    font-size: 0.75rem;
  }

  .ch1SFr__top .ch1SFr__online::before {
    content: "" !important;
    display: block;
    width: 14px;
    height: 14px;
    background-image: url("/ch1SFr__img/ch1SFr__icon-people.svg");
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
  }

  .ch1SFr__top .ch1SFr__online::after {
    content: "" !important;
    display: inline-block;
    width: 6px;
    height: 6px;
    background-color: #00b200;
    border-radius: 50%;
    vertical-align: text-bottom;
  }

  .ch1SFr__top .ch1SFr__online span:last-child {
    display: none !important;
  }

  .ch1SFr__top .btn-container {
    grid-column: 2;
    grid-row: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 10px 10px 15px 10px;
    background: #f6f6f6;
    gap: 8px;
  }

  .ch1SFr__top .btn-container .btn {
    width: 100%;
    max-width: none;
    font-size: 0.9rem;
    padding: 12px 10px 10px 10px;
    min-height: 42px;
  }

  .ch1SFr__top .ch1SFr__pay {
    justify-content: center;
    gap: 8px;
  }

  .ch1SFr__top .ch1SFr__pay img {
    width: 20px;
    height: 20px;
  }

  /* Лейбл */
  .ch1SFr__top .ch1SFr__label {
    position: absolute;
    top: 0;
    left: 0;
    transform: none;
    border-radius: 12px 0 12px 0;
    padding: 5px 12px;
    font-size: 0.7rem;
    z-index: 2;
  }

  /* ========== ЦВЕТА КАРТОЧЕК ========== */
  /* Первые 3 карточки - тёмно-синий фон */
  .ch1SFr__top .ch1SFr__article:nth-of-type(-n + 3) .image_article {
    background: #182e66;
  }
  .ch1SFr__top .ch1SFr__article:nth-of-type(-n + 3) .ch1SFr__bonus-container,
  .ch1SFr__top .ch1SFr__article:nth-of-type(-n + 3) .btn-container {
    background: #182e66;
  }
  .ch1SFr__top .ch1SFr__article:nth-of-type(-n + 3) .ch1SFr__bonus {
    color: #fff !important;
  }

  /* Карточки 4-8 - белый фон */
  .ch1SFr__top
    .ch1SFr__article:nth-of-type(n + 4):nth-last-of-type(n + 4)
    .image_article {
    background: #182e66;
  }
  .ch1SFr__top
    .ch1SFr__article:nth-of-type(n + 4):nth-last-of-type(n + 4)
    .ch1SFr__bonus-container,
  .ch1SFr__top
    .ch1SFr__article:nth-of-type(n + 4):nth-last-of-type(n + 4)
    .btn-container {
    background: #fff;
  }
  .ch1SFr__top
    .ch1SFr__article:nth-of-type(n + 4):nth-last-of-type(n + 4)
    .ch1SFr__bonus {
    color: #182e66 !important;
  }

  /* Последние 3 карточки - серый фон */
  .ch1SFr__top .ch1SFr__article:nth-last-of-type(-n + 3) .image_article {
    background: #182e66;
  }
  .ch1SFr__top
    .ch1SFr__article:nth-last-of-type(-n + 3)
    .ch1SFr__bonus-container,
  .ch1SFr__top .ch1SFr__article:nth-last-of-type(-n + 3) .btn-container {
    background: #f6f6f6;
  }
  .ch1SFr__top .ch1SFr__article:nth-last-of-type(-n + 3) .ch1SFr__bonus {
    color: #182e66 !important;
    margin-top: 15px;
  }

  /* Скрытие лишних элементов списка на мобильной версии */
  .ch1SFr__top .ch1SFr__top-list li:nth-child(n + 4) {
    display: none;
  }

  /* Показать скрытые элементы при активном классе */
  .ch1SFr__top .ch1SFr__top-list.show-all li {
    display: block;
  }

  /* Стильизация кнопки "Показать ещё" */
  .ch1SFr__btn_show_more {
    margin-top: 15px;
    padding: 12px 20px;
    font-size: 0.9rem;
    cursor: pointer;
  }

  /* Скрыть кнопку, когда все элементы показаны */
  .ch1SFr__top .ch1SFr__top-list.show-all ~ .ch1SFr__btn_show_more {
    display: none !important;
  }
}

@media (hover: hover) and (pointer: fine) {
  .btn:hover,
  .btn:focus-visible {
    color: var(--btn-color-hover);
    background-color: var(--btn-bg-hover);
    -webkit-box-shadow: var(--btn-shadow-hover);
    box-shadow: var(--btn-shadow-hover);
  }
}

@media (hover: hover) {
  .ch1SFr__top .ch1SFr__article:hover {
    -webkit-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    transform: translateY(-2px);
    -webkit-box-shadow: 0 4px 14px 0 var(--main-color);
    box-shadow: 0 4px 14px 0 var(--main-color);
  }
}
