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

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

:active,
:focus {
  outline: 0;
}

a:active,
a:focus {
  outline: 0;
}

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

body,
html {
  height: 100%;
  width: 100%;
  font-size: 100%;
  line-height: 1;
  font-size: 14px;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}

button,
input,
textarea {
  font-family: inherit;
}

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

input,
textarea {
  -moz-appearance: none;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: inherit;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
  color: inherit;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: inherit;
}

input::-ms-input-placeholder,
textarea::-ms-input-placeholder {
  color: inherit;
}

input::placeholder,
textarea::placeholder {
  color: inherit;
}

button {
  cursor: pointer;
  background-color: transparent;
}

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

a {
  display: inline-block;
  color: inherit;
}

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

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
  vertical-align: top;
}

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

picture {
  display: block;
  width: 100%;
  height: 100%;
}

input::-webkit-inner-spin-button,
input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
}

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

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

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

:root {
  --font-main: "Roboto", sans-serif;
  --container-width: 1140px;
  --container-step: 20px;
  --container-step-tablet: 15px;
  --container-step-mobile: 16px;
  --container: calc(var(--container-width) + (var(--container-step) * 2));
  --background-page: #232323;
  --main: #000000;
  --black: #000000;
  --white: #ffffff;
  --orange: #ff5a1f;
  --gold: #f5a407;
  --gray: #e3dfdb;
  --box-shadow: 0 1px 1px 0 rgba(255, 90, 30, 0.01),
    0 2px 4px 0 rgba(255, 90, 30, 0.04), 0 5px 11px 0 rgba(255, 90, 30, 0.09),
    0 16px 35px 0 rgba(255, 90, 30, 0.3);
  --yellow: #ffef57;
  --white-020: rgba(255, 255, 255, 0.2);
  --gray-085: rgba(60, 60, 67, 0.85);
  --hover: #f5075e;
  --active: #e50000;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--container-step);
}

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

@media (max-width: 600px) {
  .container {
    padding: 0 var(--container-step-mobile);
  }
}

.rd-transfer {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.page {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  font-family: var(--font-main);
  min-height: 100vh;
  overflow: hidden;
  color: var(--main);
  background-color: var(--background-page);
}

.page_change .header {
  position: static;
}

.page_change .header__menu {
  background-color: transparent;
}

@media (max-width: 991px) {
  .page_change .header__menu {
    background-color: var(--orange);
  }
}

.page_change .nav__link_header {
  color: var(--black);
}

@media (max-width: 991px) {
  .page_change .nav__link_header {
    color: var(--white);
  }
}

.page_change .burger span {
  background-color: var(--black);
}

.main {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

.main:not(:last-child) {
  margin-bottom: 0;
}

@media (max-width: 600px) {
  .main:not(:last-child) {
    margin-bottom: 0;
  }
}

.main_no-margin:not(:last-child) {
  margin-bottom: 0;
}

.abg-6 {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  opacity: 0.2;
}

.abg-6 li {
  position: absolute;
  display: block;
  list-style: none;
  -webkit-animation: animationbg-6 3s ease-in-out infinite alternate;
  animation: animationbg-6 3s ease-in-out infinite alternate;
  background-image: linear-gradient(-18deg, #b73347 50%, rgba(0, 0, 0, 0) 50%);
  bottom: -15%;
  top: 0;
  left: -50%;
  right: -50%;
  opacity: 0.3;
}

.abg-6 li:nth-child(2) {
  animation-direction: alternate-reverse;
  -webkit-animation-duration: 4s;
  animation-duration: 4s;
}

.abg-6 li:nth-child(3) {
  -webkit-animation-duration: 5s;
  animation-duration: 5s;
}

@-webkit-keyframes animationbg-6 {
  0% {
    -webkit-transform: translateX(-10%);
    transform: translateX(-10%);
  }

  100% {
    -webkit-transform: translateX(20%);
    transform: translateX(20%);
  }
}

@keyframes animationbg-6 {
  0% {
    -webkit-transform: translateX(-10%);
    transform: translateX(-10%);
  }

  100% {
    -webkit-transform: translateX(20%);
    transform: translateX(20%);
  }
}

section {
  position: relative;
  z-index: 3;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  border: 0;
  clip: rect(0 0 0 0);
}

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

.circle::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  background-color: var(--white);
}

.tx-40 {
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: var(--white);
}

.tx-36 {
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: var(--white);
}

.tx-20 {
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: var(--white);
}

.tx-16 {
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: var(--white);
}

.tx-15 {
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: var(--white);
}

.tx-14 {
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: var(--white);
}

.tx-13 {
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: var(--white);
}

.tx-11 {
  font-size: 11px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: var(--white);
}

.box-shadow {
  -webkit-box-shadow: var(--box-shadow);
  box-shadow: var(--box-shadow);
}

.but {
  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: 5px;
  padding: 10px 24px;
  font-size: 20px;
  letter-spacing: -0.02em;
  line-height: 1;
  font-weight: 500;
  color: var(--white);
  background-color: var(--orange);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 372px;
  min-width: 292px;
  min-height: 44px;
  text-align: center;
  -webkit-transition: background-color 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out;
}

.but_yellow {
  font-size: 24px;
  background-color: var(--yellow);
  color: var(--black);
}

.but img,
.but svg {
  width: 24px;
  height: 24px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

@media (any-hover: hover) {
  .but:hover {
    background-color: var(--hover);
  }
}

.but:focus-visible {
  background-color: var(--hover);
}

.but:active {
  background-color: var(--active);
  -webkit-transition-duration: 0.1s;
  transition-duration: 0.1s;
}

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

.text-right {
  text-align: right;
}

.uppercase {
  text-transform: uppercase;
}

.mb-10 {
  margin-bottom: 10px;
}

.lowercase {
  text-transform: lowercase;
}

.line {
  text-decoration-line: underline;
}

.fw-100 {
  font-weight: 100;
}

.fw-200 {
  font-weight: 200;
}

.fw-300 {
  font-weight: 300;
}

.fw-400 {
  font-weight: 400;
}

.fw-500 {
  font-weight: 500;
}

.fw-600 {
  font-weight: 600;
}

.fw-700 {
  font-weight: 700;
}

.fw-800 {
  font-weight: 800;
}

.fw-900 {
  font-weight: 900;
}

.rd-upload img {
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}

.rd-load img {
  opacity: 1;
}

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

.link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}

@media (any-hover: hover) {
  .link:hover {
    color: var(--hover);
  }
}

.link:active {
  color: var(--active);
  -webkit-transition-duration: 0.1s;
  transition-duration: 0.1s;
}

.link img {
  width: 24px;
  height: 24px;
}

.link-btn {
  position: relative;
  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;
  max-width: 168px;
  width: 100%;
  gap: 10px;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: var(--white);
  min-height: 39px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  border-radius: 3px;
  border: 2px solid #ce1126;
  -webkit-transition: background 0.3s ease-in-out;
  transition: background 0.3s ease-in-out;
}

@media (any-hover: hover) {
  .link-btn:hover {
    background: var(--hover);
  }
}

.link-btn:active {
  background: var(--active);
  -webkit-transition-duration: 0.1s;
  transition-duration: 0.1s;
}

.back-1 {
  background: #fc9701 !important;
}

.back-2 {
  background: #be0000 !important;
}

.back-3 {
  background: #fe7401 !important;
}

.bestcainotop-header {
  margin-bottom: 10px;
  padding: 10px 0 10px 0;
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 5;
}

.bestcainotop-header__container {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.bestcainotop-header__home {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  opacity: 1;
  scale: 1;
  -webkit-transition: opacity 0.3s ease-in-out, scale 0.2s ease-in-out;
  transition: opacity 0.3s ease-in-out, scale 0.2s ease-in-out;
}

.bestcainotop-header__home img {
  max-width: 200px;
  width: 100%;
}

@media (any-hover: hover) {
  .bestcainotop-header__home:hover {
    opacity: 0.6;
    scale: 1.04;
  }
}

.bestcainotop-header__home:active {
  scale: 1.05;
  opacity: 0.4;
  -webkit-transition-duration: 0.1s;
  transition-duration: 0.1s;
}

@media (max-width: 991px) {
  .bestcainotop-header__menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    position: fixed;
    -webkit-box-pack: initial;
    -ms-flex-pack: initial;
    justify-content: initial;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--black);
    z-index: 100;
    padding: 100px 30px 30px 30px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    overflow: auto;
    -webkit-transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out,
      pointer-events 0.2s ease-in-out;
    transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out,
      pointer-events 0.2s ease-in-out;
  }
}

@media (max-width: 600px) {
  .bestcainotop-header__menu {
    padding: 80px 30px 30px 30px;
  }
}

.bestcainotop-header__menu.active {
  opacity: 1;
  visibility: visible;
  pointer-events: visible;
}

.bestcainotop-header__exit-menu {
  display: none;
  position: absolute;
  width: 30px;
  height: 30px;
  background-color: transparent;
}

@media (max-width: 991px) {
  .bestcainotop-header__exit-menu {
    display: block;
    top: 30px;
    left: 30px;
  }
}

@media (max-width: 600px) {
  .bestcainotop-header__exit-menu {
    top: 15px;
    left: 15px;
  }
}

.bestcainotop-header__exit-menu::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--white);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.bestcainotop-header__exit-menu::after {
  content: "";
  position: absolute;
  top: 12px;
  right: 0;
  width: 100%;
  height: 2px;
  background-color: var(--white);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.nav {
  width: 100%;
}

.nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 10px 32px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media (max-width: 991px) {
  .nav__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 50px;
    text-align: center;
  }
}

@media (max-width: 991px) {
  .nav__list_footer {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 10px 32px;
  }
}

.nav__link {
  border-bottom: 1px solid transparent;
  -webkit-transition: color 0.3s ease-in-out, border-color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out, border-color 0.3s ease-in-out;
}

@media (any-hover: hover) {
  .nav__link:hover {
    color: var(--hover);
    border-color: #ac2993;
  }
}

.nav__link:active {
  border-color: #ac2993;
  color: var(--active);
  -webkit-transition-duration: 0.1s;
  transition-duration: 0.1s;
}

.burger {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
  width: 22px;
  height: 14px;
  background-color: transparent;
}

@media (max-width: 991px) {
  .burger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.burger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--white);
  border-radius: 8px;
}

.bestcainotop-terms {
  padding: 20px 0 40px 0;
  position: relative;
}

.bestcainotop-terms__container {
  position: relative;
  z-index: 3;
}

.bestcainotop-terms h1 {
  padding-bottom: 10px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: var(--white);
}

@media (max-width: 991px) {
  .bestcainotop-terms h1 {
    font-size: 26px;
  }
}

@media (max-width: 600px) {
  .bestcainotop-terms h1 {
    font-size: 18px;
  }
}

.bestcainotop-terms h1:not(:last-child) {
  margin-bottom: 10px;
}

@media (max-width: 991px) {
  .bestcainotop-terms h1:not(:last-child) {
    margin-bottom: 10px;
  }
}

@media (max-width: 600px) {
  .bestcainotop-terms h1:not(:last-child) {
    margin-bottom: 10px;
  }
}

.bestcainotop-terms h2 {
  padding-bottom: 10px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: var(--white);
}

@media (max-width: 991px) {
  .bestcainotop-terms h2 {
    font-size: 23px;
  }
}

@media (max-width: 600px) {
  .bestcainotop-terms h2 {
    font-size: 14px;
  }
}

.bestcainotop-terms h2:not(:last-child) {
  margin-bottom: 10px;
}

@media (max-width: 991px) {
  .bestcainotop-terms h2:not(:last-child) {
    margin-bottom: 10px;
  }
}

@media (max-width: 600px) {
  .bestcainotop-terms h2:not(:last-child) {
    margin-bottom: 10px;
  }
}

.bestcainotop-terms p {
  font-size: 15px;
  line-height: 1.3;
  color: var(--white);
  font-weight: 400;
}

@media (max-width: 991px) {
  .bestcainotop-terms p {
    font-size: 18px;
  }
}

@media (max-width: 600px) {
  .bestcainotop-terms p {
    font-size: 12px;
  }
}

.bestcainotop-terms p:not(:last-child) {
  margin-bottom: 30px;
}

@media (max-width: 991px) {
  .bestcainotop-terms p:not(:last-child) {
    margin-bottom: 20px;
  }
}

@media (max-width: 600px) {
  .bestcainotop-terms p:not(:last-child) {
    margin-bottom: 15px;
  }
}

.bestcainotop-terms ul:not(:last-child) {
  margin-bottom: 10px;
}

@media (max-width: 991px) {
  .bestcainotop-terms ul:not(:last-child) {
    margin-bottom: 10px;
  }
}

@media (max-width: 600px) {
  .bestcainotop-terms ul:not(:last-child) {
    margin-bottom: 10px;
  }
}

.bestcainotop-terms li {
  font-size: 15px;
  line-height: 1.3;
  color: var(--white);
  font-weight: 400;
}

@media (max-width: 991px) {
  .bestcainotop-terms li {
    font-size: 16px;
  }
}

@media (max-width: 600px) {
  .bestcainotop-terms li {
    font-size: 12px;
  }
}

.bestcainotop-terms li:not(:last-child) {
  margin-bottom: 10px;
}

@media (max-width: 991px) {
  .bestcainotop-terms li:not(:last-child) {
    margin-bottom: 10px;
  }
}

@media (max-width: 600px) {
  .bestcainotop-terms li:not(:last-child) {
    margin-bottom: 10px;
  }
}

.bestcainotop-hero {
  margin-bottom: 25px;
}

@media (max-width: 600px) {
  .bestcainotop-hero {
    margin-bottom: 15px;
  }
}

.bestcainotop-hero__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.bestcainotop-hero__content {
  max-width: 692px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

@media (max-width: 991px) {
  .bestcainotop-hero__content {
    max-width: 100%;
  }
}

.bestcainotop-hero__img {
  max-width: 426px;
  width: 100%;
  height: 309px;
}

.bestcainotop-hero__img img {
  -o-object-fit: contain;
  object-fit: contain;
}

@media (max-width: 991px) {
  .bestcainotop-hero__img {
    display: none;
  }
}

.bestcainotop-hero__list-text {
  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;
}

@media (max-width: 600px) {
  .bestcainotop-hero__list-text {
    display: none;
  }
}

.bestcainotop-hero__item-text {
  position: relative;
  padding-left: 15px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.bestcainotop-hero__item-text::after {
  position: absolute;
  content: "";
  left: 5px;
  top: 6px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--white);
}

.bestcainotop-hero__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media (max-width: 600px) {
  .bestcainotop-hero__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

.bestcainotop-hero__item {
  padding: 5px 20px;
  border-radius: 100px;
  background: #1e59a0;
}

.bestcainotop-hero__item:nth-child(1) img {
  max-width: 36px;
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  height: 25px;
}

.bestcainotop-hero__item img {
  max-width: 24px;
  width: 100%;
  height: 24px;
}

.bestcainotop-hero__text-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.bestcainotop-hero__text {
  text-align: center;
}

@media (max-width: 600px) {
  .bestcainotop-hero__text {
    display: none;
  }
}

.bestcainotop-tops {
  margin-bottom: 30px;
}

@media (max-width: 600) {
  .bestcainotop-tops {
    margin-bottom: 20px;
  }
}

@media (max-width: 600px) {
  .bestcainotop-tops__container {
    padding: 0;
  }
}

.bestcainotop-tops__back {
  padding: 20px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
  border-radius: 10px;
  background: #353535;
}

@media (max-width: 768px) {
  .bestcainotop-tops__back {
    padding: 20px 0;
  }
}

.bestcainotop-tops__span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2px;
}

@media (max-width: 768px) {
  .bestcainotop-tops__span {
    padding-left: 16px;
  }
}

.bestcainotop-tops__date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.bestcainotop-tops__list {
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  max-width: 959px;
  width: 100%;
}

.bestcainotop-tops__item {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  border-radius: 10px;
  background: #232323;
  -webkit-transition: scale 0.3s ease-in-out;
  transition: scale 0.3s ease-in-out;
}

.bestcainotop-tops__item:hover {
  scale: 1.01;
}

.bestcainotop-tops__item:nth-child(1) {
  -webkit-animation: item 2s linear infinite;
  animation: item 2s linear infinite;
}

@-webkit-keyframes item {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(34, 0, 255, 0.86);
    box-shadow: 0 0 0 0 rgba(34, 0, 255, 0.86);
  }

  25% {
    -webkit-box-shadow: 0 1px 2px 1px rgba(34, 0, 255, 0.86);
    box-shadow: 0 1px 2px 1px rgba(34, 0, 255, 0.86);
  }

  50% {
    -webkit-box-shadow: 0 1px 3px 3px rgba(0, 34, 255, 0.86);
    box-shadow: 0 1px 3px 3px rgba(0, 34, 255, 0.86);
  }

  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(34, 0, 255, 0.86);
    box-shadow: 0 0 0 0 rgba(34, 0, 255, 0.86);
  }
}

@keyframes item {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(34, 0, 255, 0.86);
    box-shadow: 0 0 0 0 rgba(34, 0, 255, 0.86);
  }

  25% {
    -webkit-box-shadow: 0 1px 2px 1px rgba(34, 0, 255, 0.86);
    box-shadow: 0 1px 2px 1px rgba(34, 0, 255, 0.86);
  }

  50% {
    -webkit-box-shadow: 0 1px 3px 3px rgba(0, 34, 255, 0.86);
    box-shadow: 0 1px 3px 3px rgba(0, 34, 255, 0.86);
  }

  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(0, 34, 255, 0.86);
    box-shadow: 0 0 0 0 rgba(0, 34, 255, 0.86);
  }
}

.bestcainotop-tops__age {
  padding: 5px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  background: #ce1126;
}

.bestcainotop-tops__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}

.bestcainotop-tops__number {
  padding: 10px 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #ce1126;
}

@media (max-width: 991px) {
  .bestcainotop-tops__number {
    display: none;
  }
}

.bestcainotop-tops__content {
  max-width: 930px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}

@media (max-width: 991px) {
  .bestcainotop-tops__content {
    max-width: 100%;
  }
}

.bestcainotop-tops__left {
  max-width: 420px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media (max-width: 768px) {
  .bestcainotop-tops__left {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    max-width: none;
    width: 50%;
    gap: 0;
  }
}

.bestcainotop-tops__img {
  max-width: 165px;
  width: 100%;
  height: 124px;
}

@media (max-width: 768px) {
  .bestcainotop-tops__img {
    max-width: 100%;
  }
}

.bestcainotop-tops__bonus {
  padding: 10px 10px;
  max-width: 245px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media (max-width: 768px) {
  .bestcainotop-tops__bonus {
    max-width: 100%;
  }
}

.bestcainotop-tops__right {
  max-width: 500px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}

@media (max-width: 768px) {
  .bestcainotop-tops__right {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    max-width: none;
    width: 50%;
    gap: 0;
  }
}

.bestcainotop-tops__card-rating {
  padding: 10px 10px;
  max-width: 245px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-line-pack: center;
  align-content: center;
  text-align: center;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(./back-rating.webp);
}

@media (max-width: 768px) {
  .bestcainotop-tops__card-rating {
    max-width: 100%;
  }
}

.bestcainotop-tops__img-rating {
  max-width: 125px;
  width: 100%;
  height: 21px;
}

.bestcainotop-tops__img-rating img {
  -o-object-fit: cover;
  object-fit: cover;
}

.bestcainotop-tops__card-btn {
  padding: 10px 10px;
  max-width: 245px;
  width: 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;
}

@media (max-width: 768px) {
  .bestcainotop-tops__card-btn {
    padding: 10px 6px;
    max-width: 100%;
    min-height: 124px;
  }
}

.bestcainotop-tops__btn {
  position: relative;
  padding: 8px 10px;
  max-width: 186px;
  min-height: 44px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  overflow: hidden;
  border: 2px solid transparent;
}

.bestcainotop-tops__btn img {
  max-width: 24px;
  width: 100%;
  height: 24px;
}

.bestcainotop-tops__btn span:nth-child(5) {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 2px;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#171618),
    to(#ff3b3b)
  );
  background: linear-gradient(to right, #171618, #ff3b3b);
  -webkit-animation: animate1 2s linear infinite;
  animation: animate1 2s linear infinite;
}

.bestcainotop-tops__btn span:nth-child(2) {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 2px;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#171618),
    to(#ff3b3b)
  );
  background: linear-gradient(to bottom, #171618, #ff3b3b);
  -webkit-animation: animate2 2s linear infinite;
  animation: animate2 2s linear infinite;
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.bestcainotop-tops__btn span:nth-child(3) {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 2px;
  background: -webkit-gradient(
    linear,
    right top,
    left top,
    from(#171618),
    to(#ff3b3b)
  );
  background: linear-gradient(to left, #171618, #ff3b3b);
  -webkit-animation: animate3 2s linear infinite;
  animation: animate3 2s linear infinite;
}

.bestcainotop-tops__btn span:nth-child(4) {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 2px;
  background: -webkit-gradient(
    linear,
    left bottom,
    left top,
    from(#171618),
    to(#ff3b3b)
  );
  background: linear-gradient(to top, #171618, #ff3b3b);
  -webkit-animation: animate4 2s linear infinite;
  animation: animate4 2s linear infinite;
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

@media (max-width: 768px) {
  .bestcainotop-tops__btn {
    padding: 5px 5px;
  }
}

@media (max-width: 355px) {
  .bestcainotop-tops__btn {
    font-size: 12px;
    padding: 3px 4px;
  }
}

@-webkit-keyframes animate1 {
  0% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }

  100% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
}

@keyframes animate1 {
  0% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }

  100% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
}

@-webkit-keyframes animate2 {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }

  100% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
}

@keyframes animate2 {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }

  100% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
}

@-webkit-keyframes animate3 {
  0% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }

  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

@keyframes animate3 {
  0% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }

  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

@-webkit-keyframes animate4 {
  0% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }

  100% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
}

@keyframes animate4 {
  0% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }

  100% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
}

.bestcainotop-about {
  margin-bottom: 30px;
}

.bestcainotop-about__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  gap: 10px;
}

.bestcainotop-about__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 20px;
}

.bestcainotop-about__item {
  width: 49%;
  padding: 20px 20px;
  border-radius: 10px;
  background: #353535;
}

@media (max-width: 1039px) {
  .bestcainotop-about__item {
    width: 100%;
  }
}

.card-about {
  background: 0 0;
}

.card-about .bestcainotop-about__container {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.card-about .bestcainotop-about__content {
  max-width: 1240px;
}

.card-about .bestcainotop-about__img {
  max-width: 948px;
  height: 281px;
}

.card-about .bestcainotop-about__img img {
  -o-object-fit: cover;
  object-fit: cover;
}

.bestcainotop-footer {
  position: relative;
  padding: 40px 0 50px 0;
}

.bestcainotop-footer__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: 15px;
}

.bestcainotop-footer__age {
  max-width: 58px;
  width: 100%;
  height: 58px;
}

.bestcainotop-footer__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.bestcainotop-footer__card-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}

@media (max-width: 600px) {
  .bestcainotop-footer__card-text {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
  }
}

.bestcainotop-footer__card {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
}

@media (max-width: 600px) {
  .bestcainotop-footer__card {
    width: 100%;
  }
}

.bestcainotop-footer__list-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 40px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media (max-width: 600px) {
  .bestcainotop-footer__list-img {
    gap: 40px;
    -webkit-box-align: initial;
    -ms-flex-align: initial;
    align-items: initial;
  }
}

.bestcainotop-footer__item-img {
  width: 100%;
}

.bestcainotop-footer__item-img a {
  scale: 1;
  opacity: 1;
  -webkit-transition: scale 0.2s ease-in-out, opacity 0.3s ease-in-out;
  transition: scale 0.2s ease-in-out, opacity 0.3s ease-in-out;
}

@media (any-hover: hover) {
  .bestcainotop-footer__item-img a:hover {
    scale: 1.05;
    opacity: 0.7;
  }
}

.bestcainotop-footer__item-img a:active {
  scale: 1.07;
  opacity: 0.5;
  -webkit-transition-duration: 0.1s;
  transition-duration: 0.1s;
}

.bestcainotop-footer__item-img:nth-child(1) {
  max-width: 125px;
  height: 38px;
}

.bestcainotop-footer__item-img:nth-child(2) {
  max-width: 156px;
  height: 48px;
}

.bestcainotop-footer__item-img:nth-child(3) {
  max-width: 80px;
  height: 54px;
}

.bestcainotop-footer__item-img:nth-child(4) {
  max-width: 66px;
  height: 27px;
}

.bestcainotop-footer__item-img:nth-child(5) {
  max-width: 171px;
  height: 51px;
}

.bestcainotop-footer__item-img:nth-child(6) {
  max-width: 78px;
  height: 55px;
}
.bestcainotop-footer__item-img:nth-child(7) {
  max-width: 138px;
  height: 29px;
}
.bestcainotop-footer__item-img:nth-child(8) {
  max-width: 72px;
  height: 60px;
}
.bestcainotop-footer__item-img:nth-child(9) {
  max-width: 96px;
  height: 35px;
}

.bestcainotop-popup {
  position: fixed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 10;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4);
}

.bestcainotop-popup__close {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.bestcainotop-popup__body {
  overflow: auto;
  max-width: 453px;
  width: 100%;
  position: relative;
  z-index: 2;
  margin: auto;
  padding: 24px;
  text-align: center;
  background: #353535;
}

@media (max-width: 991px) {
  .bestcainotop-popup__body {
    width: 95%;
  }
}

.bestcainotop-popup__title {
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: var(--white);
}

.bestcainotop-popup__text {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: var(--white);
}

.bestcainotop-popup__button {
  max-width: 100%;
  min-height: 40px;
  min-width: 0;
  width: 100%;
  color: var(--white);
  margin: 0 auto;
  border: 0;
  border-radius: 5px;
  background: #1e59a0;
}

.bestcainotop-popup-card {
  position: fixed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  bottom: 0;
  right: 0;
  z-index: 10;
  overflow: auto;
}

.bestcainotop-popup-card.popup-disabled {
  display: none;
}

.bestcainotop-popup-card__close {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.bestcainotop-popup-card__body {
  overflow: auto;
  max-width: 405px;
  width: 100%;
  position: relative;
  z-index: 2;
  margin: auto;
  padding: 20px;
  background: #353535;
}

@media (max-width: 991px) {
  .bestcainotop-popup__body {
    width: 95%;
  }
}

.bestcainotop-card__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 9px;
}

@media (max-width: 600px) {
  .bestcainotop-card__card {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.bestcainotop-popup-card__title {
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: var(--white);
}

.bestcainotop-popup-card__text {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: var(--white);
}

.bestcainotop-popup-card__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 9px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

@media (max-width: 600px) {
  .bestcainotop-popup-card__card {
    -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;
  }
}

.bestcainotop-popup-card__btn {
  width: 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;
  min-height: 40px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  font-size: 17px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: var(--white);
  border-radius: 5px;
  background: #1e59a0;
  -webkit-transition: background 0.3s ease-in-out;
  transition: background 0.3s ease-in-out;
}

@media (any-hover: hover) {
  .bestcainotop-popup-card__btn:hover {
    background: var(--hover);
  }
}

.bestcainotop-popup-card__btn:active {
  background: var(--active);
  -webkit-transition-duration: 0.1s;
  transition-duration: 0.1s;
}

.bestcainotop-popup-card__link {
  width: 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;
  min-height: 40px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  font-size: 17px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: var(--white);
  border-radius: 5px;
  border: 2px solid #1e59a0;
  -webkit-transition: border-color 0.3s ease-in-out;
  transition: border-color 0.3s ease-in-out;
}

@media (any-hover: hover) {
  .bestcainotop-popup-card__link:hover {
    border-color: var(--hover);
  }
}

.bestcainotop-popup-card__link:active {
  border-color: var(--active);
  -webkit-transition-duration: 0.1s;
  transition-duration: 0.1s;
}

.padding section {
  padding-top: 75px;
}

.padding h1 {
  margin-bottom: 15px;
}
