@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

ul {
  list-style-type: none;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol,
div {
  margin: 0;
  padding: 0;
}

button {
  cursor: pointer;
  border: none;
  font-family: inherit;
}

html {
  font-family: "Poppins", sans-serif;
  font-size: 10px;
  color: #303030;
  scroll-behavior: smooth;
  background-color: #f4f7ff;
}

body {
  position: relative;
}

main {
  padding-top: 110px;
}
@media screen and (max-width: 980px) {
  main {
    padding-top: 90px;
  }
}
@media screen and (max-width: 767px) {
  main {
    padding-top: 70px;
  }
}

section {
  scroll-margin-top: 120px;
}

picture {
  display: block;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  min-height: 100px;
  background: -webkit-gradient(linear, left top, right top, from(#4169e1), color-stop(55%, #274bc4), to(#10216f));
  background: linear-gradient(90deg, #4169e1 0%, #274bc4 55%, #10216f 100%);
  border-bottom: 4px solid #ffd700;
  -webkit-box-shadow: 0 8px 32px rgba(65, 105, 225, 0.28);
          box-shadow: 0 8px 32px rgba(65, 105, 225, 0.28);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 980px) {
  .header {
    min-height: 90px;
  }
}
@media screen and (max-width: 767px) {
  .header {
    min-height: 70px;
  }
}
.header__logo {
  height: 110px;
  max-width: 320px;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.04));
          filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.04));
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (max-width: 980px) {
  .header__logo {
    height: 90px;
  }
}
@media screen and (max-width: 767px) {
  .header__logo {
    height: 70px;
  }
}
.header__logo:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.header__wrap {
  gap: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .header__wrap {
    gap: 20px;
  }
}
.header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  -webkit-box-flex: 0;
      -ms-flex: 0;
          flex: 0;
  margin-left: auto;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
@media screen and (max-width: 980px) {
  .header__nav {
    left: 0;
    top: 92px;
    width: 100%;
    overflow: auto;
    padding-inline: 4%;
    position: absolute;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: calc(100vh - 70px);
    -webkit-transform: translateX(200%);
            transform: translateX(200%);
    -webkit-box-shadow: 0 0 20px 5px rgba(0, 0, 0, 0.3);
            box-shadow: 0 0 20px 5px rgba(0, 0, 0, 0.3);
    background: -webkit-gradient(linear, left top, right top, from(#4169e1), color-stop(55%, #274bc4), to(#10216f));
    background: linear-gradient(90deg, #4169e1 0%, #274bc4 55%, #10216f 100%);
  }
}
@media screen and (max-width: 767px) {
  .header__nav {
    top: 72px;
  }
}
@media screen and (max-width: 980px) {
  .header__nav.active {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.header__dropdown {
  position: relative;
}
@media screen and (max-width: 980px) {
  .header__dropdown {
    width: 100%;
  }
}
@media screen and (max-width: 980px) {
  .header__dropdown:first-child {
    margin-top: 30px;
  }
}
@media screen and (max-width: 980px) {
  .header__dropdown:last-child {
    margin-bottom: 30px;
  }
}
.header__dropdown:hover .header__dropdown-text {
  color: #ffd700;
  background: rgba(255, 255, 255, 0.12);
}
@media screen and (max-width: 980px) {
  .header__dropdown:hover .header__dropdown-text {
    color: #fff;
    background: transparent;
  }
}
.header__dropdown:hover .header__dropdown-text .arrow {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
@media screen and (max-width: 980px) {
  .header__dropdown:hover .header__dropdown-text .arrow {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
}
.header__dropdown:hover .header__dropdown-menu {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
@media screen and (max-width: 980px) {
  .header__dropdown:hover .header__dropdown-menu {
    -webkit-transform: unset;
            transform: unset;
  }
}
.header__dropdown-text {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  padding: 11px 16px;
  border-radius: 9px;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  white-space: nowrap;
}
@media screen and (max-width: 980px) {
  .header__dropdown-text {
    padding-inline: 0;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.header__dropdown-text .arrow {
  font-size: 9px;
  -webkit-transition: -webkit-transform 0.25s ease;
  transition: -webkit-transform 0.25s ease;
  transition: transform 0.25s ease;
  transition: transform 0.25s ease, -webkit-transform 0.25s ease;
}
@media screen and (max-width: 980px) {
  .header__dropdown-text.active .arrow {
    -webkit-transform: rotate(180deg) !important;
            transform: rotate(180deg) !important;
  }
}
.header__dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  min-width: 230px;
  padding: 9px;
  border-radius: 14px;
  background: linear-gradient(160deg, #0f247c 0%, #173bb8 100%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  -webkit-box-shadow: 0 16px 48px rgba(0, 0, 0, 0.42);
          box-shadow: 0 16px 48px rgba(0, 0, 0, 0.42);
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
@media screen and (max-width: 980px) {
  .header__dropdown-menu {
    left: unset;
    top: unset;
    opacity: 1;
    max-height: 0;
    overflow: hidden;
    -webkit-transform: unset;
            transform: unset;
    visibility: visible;
    position: relative;
    -webkit-box-shadow: none;
            box-shadow: none;
    border-radius: 0;
    border: none;
    padding: 0;
    background: transparent;
  }
}
.header__dm-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 9px;
  color: rgba(255, 255, 255, 0.86);
  text-decoration: none;
  font-size: 13px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
@media screen and (max-width: 980px) {
  .header__dm-link {
    border-radius: 0;
    padding-left: 20px;
    margin-left: 10px;
    border-left: 2px solid #fff;
  }
}
.header__dm-link .menu-icon {
  width: 18px;
  color: #ffd700;
}
.header__dm-link:hover {
  padding-left: 15px;
  background-color: #4169e1;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .header__dm-link:hover {
    padding-left: 25px;
  }
}
.header__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
}
@media screen and (max-width: 980px) {
  .header__buttons {
    margin-left: auto;
  }
}
@media screen and (max-width: 767px) {
  .header__buttons {
    gap: 8px;
  }
}
.header__button {
  border: none;
  border-radius: 25px;
  padding: 12px 26px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1em;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .header__button {
    font-size: 12px;
    padding: 10px 20px;
  }
}
.header__button--login {
  background: rgba(255, 255, 255, 0.12);
  border: 2px solid rgba(255, 255, 255, 0.65);
  color: white;
}
.header__button--login:hover {
  -webkit-box-shadow: 0 0 10px 2px rgba(255, 255, 255, 0.5);
          box-shadow: 0 0 10px 2px rgba(255, 255, 255, 0.5);
}
.header__button--register {
  border: 2px solid transparent;
  background: -webkit-gradient(linear, left top, right top, from(#5cb800), to(#56ae00));
  background: linear-gradient(90deg, #5cb800 0%, #56ae00 100%);
  color: #fff;
}
.header__button--register:hover {
  -webkit-box-shadow: 0 0 10px 2px rgba(92, 184, 0, 0.5);
          box-shadow: 0 0 10px 2px rgba(92, 184, 0, 0.5);
}
.header__menubar {
  display: none;
}
@media screen and (max-width: 980px) {
  .header__menubar {
    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;
    width: 40px;
    height: 25px;
    position: relative;
  }
}
@media screen and (max-width: 767px) {
  .header__menubar {
    width: 30px;
  }
}
.header__menubar::before, .header__menubar::after {
  content: "";
  width: 100%;
  height: 4px;
  position: absolute;
  border-radius: 3px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background-color: #fff;
}
.header__menubar::before {
  margin-top: -18px;
}
.header__menubar::after {
  margin-top: 18px;
}
@media screen and (max-width: 980px) {
  .header__menubar.active::before {
    margin-top: 0;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
}
@media screen and (max-width: 980px) {
  .header__menubar.active::after {
    margin-top: 0;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
}
@media screen and (max-width: 980px) {
  .header__menubar.active .header__menubar-line {
    background-color: transparent;
  }
}
@media screen and (max-width: 980px) {
  .header__menubar-line {
    width: 100%;
    height: 4px;
    border-radius: 3px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    background-color: #fff;
  }
}

.image {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.image--100 {
  height: 100%;
}
.image--auto {
  width: auto;
}
.image--contain {
  -o-object-fit: contain;
     object-fit: contain;
}

.max-width {
  width: 100%;
  padding: 0 4%;
  margin: 0 auto;
  max-width: calc(1200px + 8%);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .max-width {
    max-width: 100%;
  }
}

.title {
  font-size: 4rem;
  position: relative;
  font-weight: 700;
  padding-bottom: 7px;
  line-height: 1.2em;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .title {
    font-size: 30px;
    margin-bottom: 30px;
  }
}
.title::before {
  bottom: 0;
  content: "";
  height: 3px;
  width: 150px;
  position: absolute;
  border-radius: 5px;
  background-color: #ffd700;
}
.title--big {
  font-size: 5rem;
  padding-bottom: 14px;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .title--big {
    font-size: 3.5rem;
  }
}

.scroll {
  bottom: 30px;
  width: 70px;
  height: 70px;
  z-index: 10;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-transform: translateY(200%);
          transform: translateY(200%);
  position: sticky;
  margin-block: -70px 20px;
  margin-inline: auto 40px;
}
@media screen and (max-width: 767px) {
  .scroll {
    width: 40px;
    height: 40px;
    margin-inline: auto 4%;
  }
}
.scroll__wrap {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #fff;
  font-size: 2.5rem;
  border-radius: 50%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.1);
  background: -webkit-gradient(linear, left top, right top, from(#5f7ff0), color-stop(55%, #3f5fe0), to(#2a45b8));
  background: linear-gradient(90deg, #5f7ff0 0%, #3f5fe0 55%, #2a45b8 100%);
}
@media screen and (max-width: 767px) {
  .scroll__wrap {
    font-size: 20px;
  }
}
.scroll__wrap:hover {
  -webkit-box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.4);
          box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.4);
}
.scroll.show {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.text {
  font-size: 1.8rem;
  line-height: 1.5em;
}
@media screen and (max-width: 767px) {
  .text {
    font-size: 16px;
  }
}

.button {
  width: 100%;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 270px;
  cursor: pointer;
  color: #10216f;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  border-radius: 10px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-box-shadow: 0 0 20px 5px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 20px 5px rgba(0, 0, 0, 0.1);
  background: linear-gradient(135deg, #ffd700 0%, #ffb300 50%, #ffd700 75%);
  background-size: 200% 200%;
}
@media screen and (max-width: 767px) {
  .button {
    height: 40px;
    font-size: 16px;
  }
}
.button--big {
  max-width: 350px;
}
.button:hover {
  background-position: right;
  -webkit-box-shadow: 0 0 20px 5px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 20px 5px rgba(0, 0, 0, 0.2);
}

.footer {
  color: #fff;
  padding-block: 40px 0;
  border-top: 4px solid #ffd700;
  background: -webkit-gradient(linear, left top, right top, from(#4169e1), color-stop(55%, #274bc4), to(#10216f));
  background: linear-gradient(90deg, #4169e1 0%, #274bc4 55%, #10216f 100%);
}
@media screen and (max-width: 767px) {
  .footer {
    padding-top: 0;
  }
}
.footer__wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 767px) {
  .footer__wrap {
    grid-template-columns: repeat(1, 1fr);
    margin-bottom: 30px;
  }
}
.footer__nav {
  gap: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media screen and (max-width: 900px) {
  .footer__nav {
    gap: 15px;
  }
}
@media screen and (max-width: 767px) {
  .footer__nav {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.footer__nav-link {
  height: 50px;
  width: auto;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  border-radius: 5px;
}
.footer__nav-link:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}
.footer__logo {
  max-width: 170px;
}
@media screen and (max-width: 767px) {
  .footer__logo {
    margin-inline: auto;
  }
}
.footer__copyright {
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  font-weight: 500;
  text-align: center;
  padding-block: 10px;
  margin-top: 30px;
  border-top: 1px solid #fff;
}
.footer__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  grid-area: 2/1/3/3;
}
@media screen and (max-width: 900px) {
  .footer__social {
    margin-top: 50px;
  }
}
@media screen and (max-width: 767px) {
  .footer__social {
    grid-area: unset;
  }
}
.footer__social-wrap {
  gap: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.footer__social-label {
  font-size: 1.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.footer__social-link {
  width: 40px;
  height: 40px;
  margin-top: 30px;
  font-size: 1.6rem;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.footer__social-link:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.footer__social-link:nth-child(1) {
  background: #1877f2;
  color: var(--white);
}
.footer__social-link:nth-child(2) {
  background: #4267b2;
  color: var(--white);
}
.footer__social-link:nth-child(3) {
  background: radial-gradient(circle at 30% 30%, #feda75, #d62976, #962fbf);
  color: var(--white);
}
.footer__social-link:nth-child(4) {
  background: #000;
  color: var(--white);
}
.footer__social-link:nth-child(5) {
  background: #08c;
  color: var(--white);
}

.top__mv {
  overflow: hidden;
  background: url("../assets/images/mv_bg.jpg") no-repeat right/cover;
}
@media screen and (max-width: 1375px) {
  .top__mv-content .title {
    max-width: 60%;
  }
}
@media screen and (max-width: 980px) {
  .top__mv-content .title {
    font-size: 4rem;
    max-width: 60%;
  }
}
@media screen and (max-width: 767px) {
  .top__mv-content .title {
    font-size: 25px;
  }
}
.top__mv-wrap {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #fff;
  padding-block: 100px;
}
@media screen and (max-width: 767px) {
  .top__mv-wrap {
    padding-block: 50px;
  }
}
.top__mv-image {
  top: 50%;
  right: -15%;
  width: 500px;
  height: 500px;
  display: block;
  position: absolute;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 1600px) {
  .top__mv-image {
    right: -10%;
  }
}
@media screen and (max-width: 1375px) {
  .top__mv-image {
    top: 75px;
    right: 10%;
    width: 300px;
    height: 300px;
    -webkit-transform: unset;
            transform: unset;
  }
}
@media screen and (max-width: 980px) {
  .top__mv-image {
    top: 80px;
    right: 0;
    width: 250px;
    height: 250px;
  }
}
@media screen and (max-width: 767px) {
  .top__mv-image {
    top: 25px;
    right: 10%;
    width: 150px;
    height: 150px;
  }
}
@media screen and (max-width: 550px) {
  .top__mv-image {
    right: 0;
  }
}
@media screen and (max-width: 450px) {
  .top__mv-image {
    top: 50px;
  }
}
.top__mv-text {
  font-size: 1.5rem;
  max-width: 900px;
}
@media screen and (max-width: 1375px) {
  .top__mv-text {
    max-width: 100%;
  }
}
.top__mv-text a {
  color: #ffd700;
}
.top__mv-btn {
  gap: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 20px;
}
@media screen and (max-width: 1200px) {
  .top__mv-btn {
    -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;
  }
}
.top__mv-highlights {
  gap: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 20px;
  font-size: 1.4rem;
}
@media screen and (max-width: 1300px) {
  .top__mv-highlights {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.top__mv-highlights span {
  padding: 5px 10px;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.12);
  -webkit-box-shadow: 0 0 20px 5px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 20px 5px rgba(0, 0, 0, 0.1);
}
.top__mv-highlights .check {
  padding: 0;
  border-radius: 0;
  background-color: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #5cb800;
  margin-right: 5px;
  display: inline-block;
}
.top__nav {
  padding-block: 40px 80px;
}
@media screen and (max-width: 767px) {
  .top__nav {
    padding-block: 40px;
  }
}
.top__nav-wrap {
  overflow: hidden;
  border-radius: 10px;
  -webkit-box-shadow: 0 0 20px 5px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 20px 5px rgba(0, 0, 0, 0.2);
}
.top__nav-header {
  cursor: pointer;
  text-align: center;
  font-size: 2rem;
  position: relative;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: #fff;
  padding: 10px 20px;
  background-color: #10216f;
}
@media screen and (max-width: 767px) {
  .top__nav-header {
    font-size: 18px;
    padding: 7px 17px;
  }
}
.top__nav-header::before {
  right: 20px;
  content: "☰";
  position: absolute;
}
.top__nav-content {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background-color: #fff;
}
.top__nav-content-wrap {
  padding: 30px;
  -webkit-column-count: 3;
     -moz-column-count: 3;
          column-count: 3;
}
@media screen and (max-width: 767px) {
  .top__nav-content-wrap {
    padding: 15px;
  }
}
@media screen and (max-width: 650px) {
  .top__nav-content-wrap {
    -webkit-column-count: 2;
       -moz-column-count: 2;
            column-count: 2;
  }
}
.top__nav-content-wrap li {
  padding: 13px 20px;
  font-size: 1.6rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .top__nav-content-wrap li {
    font-size: 15px;
    padding: 6px 10px;
  }
}
.top__nav-content-wrap li:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: #ffd700;
}
.top__overview-table-wrap {
  margin-top: 40px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #ece7e7;
  -webkit-box-shadow: 0 0 20px 5px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 20px 5px rgba(0, 0, 0, 0.1);
}
.top__overview-table {
  width: 100%;
  color: #fff;
  border-collapse: collapse;
}
.top__overview-table tr {
  background: -webkit-gradient(linear, left top, right top, from(#4169e1), color-stop(55%, #274bc4), to(#10216f));
  background: linear-gradient(90deg, #4169e1 0%, #274bc4 55%, #10216f 100%);
}
.top__overview-table tr:nth-child(even) {
  background: -webkit-gradient(linear, left top, right top, from(#5f7ff0), color-stop(55%, #3f5fe0), to(#2a45b8));
  background: linear-gradient(90deg, #5f7ff0 0%, #3f5fe0 55%, #2a45b8 100%);
}
.top__overview-table tr :first-child {
  font-weight: 700;
  border-right: 1px solid #ece7e7;
}
.top__overview-table tr:last-child td {
  border-bottom: none !important;
}
.top__overview-table td {
  font-size: 1.6rem;
  padding: 10px 20px;
  border-bottom: 1px solid #ece7e7;
}
@media screen and (max-width: 767px) {
  .top__overview-table td {
    font-size: 14px;
  }
}
.top__comparison {
  padding-block: 80px 20px;
}
.top__comparison-content {
  margin-top: 40px;
  overflow: auto;
  border-radius: 10px;
  border: 1px solid #ece7e7;
  -webkit-box-shadow: 0 0 20px 5px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 20px 5px rgba(0, 0, 0, 0.1);
}
.top__comparison-content table {
  color: #fff;
  font-size: 1.6rem;
  width: 100%;
  border-collapse: collapse;
}
@media screen and (max-width: 767px) {
  .top__comparison-content table {
    font-size: 14px;
  }
}
.top__comparison-content tr {
  background: -webkit-gradient(linear, left top, right top, from(#4169e1), color-stop(55%, #274bc4), to(#10216f));
  background: linear-gradient(90deg, #4169e1 0%, #274bc4 55%, #10216f 100%);
}
.top__comparison-content tr:nth-child(even) {
  background: -webkit-gradient(linear, left top, right top, from(#5f7ff0), color-stop(55%, #3f5fe0), to(#2a45b8));
  background: linear-gradient(90deg, #5f7ff0 0%, #3f5fe0 55%, #2a45b8 100%);
}
.top__comparison-content tr:not(:last-child) td {
  border-bottom: 1px solid #ece7e7;
}
.top__comparison-content tr:first-child {
  color: #ffd95a;
  font-size: 1.8rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .top__comparison-content tr:first-child {
    font-size: 16px;
  }
}
.top__comparison-content td {
  width: 200px;
  padding: 20px;
}
@media screen and (max-width: 767px) {
  .top__comparison-content td {
    padding: 5px;
  }
}
.top__comparison-content td:not(:last-child) {
  border-right: 1px solid #ece7e7;
}
.top__trust {
  padding-block: 100px;
}
@media screen and (max-width: 767px) {
  .top__trust {
    padding-block: 50px;
  }
}
.top__trust-wrap {
  gap: 20px;
  display: grid;
  margin-top: 40px;
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 767px) {
  .top__trust-wrap {
    grid-template-columns: repeat(1, 1fr);
  }
}
.top__trust-content {
  background-color: white;
  padding: 20px;
  border-radius: 20px;
  border: 2px solid #10216f;
}
.top__trust-title {
  font-size: 2.2rem;
  margin-bottom: 15px;
  text-align: center;
  color: #10216f;
}
.top__bonuses {
  padding-block: 50px;
}
.top__bonus-banner {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: auto;
  margin-block: 40px;
}
.top__bonus-get {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto 40px;
  padding-block: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 400px;
  border-radius: 10px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border: 2px solid #10216f;
  background-color: #fff;
  -webkit-box-shadow: 0 0 20px 5px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 20px 5px rgba(0, 0, 0, 0.1);
}
.top__bonus-get span {
  font-size: 1.2rem;
  margin-top: 10px;
}
.top__bonus-table {
  overflow: hidden;
  color: #fff;
  border-radius: 20px;
  margin-block: 40px;
  border: 1px solid #ece7e7;
  -webkit-box-shadow: 0 0 20px 5px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 20px 5px rgba(0, 0, 0, 0.1);
}
.top__bonus-table table {
  width: 100%;
  border-collapse: collapse;
}
.top__bonus-table table td {
  padding: 20px;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .top__bonus-table table td {
    width: 50%;
    padding: 10px;
    font-size: 15px;
  }
}
.top__bonus-table table td:first-child {
  width: 250px;
  border-right: 1px solid #ece7e7;
}
.top__bonus-table table tr {
  background: -webkit-gradient(linear, left top, right top, from(#4169e1), color-stop(55%, #274bc4), to(#10216f));
  background: linear-gradient(90deg, #4169e1 0%, #274bc4 55%, #10216f 100%);
}
.top__bonus-table table tr:nth-child(even) {
  background: -webkit-gradient(linear, left top, right top, from(#5f7ff0), color-stop(55%, #3f5fe0), to(#2a45b8));
  background: linear-gradient(90deg, #5f7ff0 0%, #3f5fe0 55%, #2a45b8 100%);
}
.top__bonus-table table tr:not(:last-child) td {
  border-bottom: 1px solid #ece7e7;
}
.top__how--deposit {
  margin-top: 100px;
}
.top__how--login {
  margin-block: 0 100px;
}
.top__how-content {
  padding: 40px;
  border-radius: 20px;
  color: #fff;
  border: 1px solid #ece7e7;
  background: -webkit-gradient(linear, left top, right top, from(#5f7ff0), color-stop(55%, #3f5fe0), to(#2a45b8));
  background: linear-gradient(90deg, #5f7ff0 0%, #3f5fe0 55%, #2a45b8 100%);
}
@media screen and (max-width: 767px) {
  .top__how-content {
    padding: 20px;
  }
}
.top__how-content--place {
  margin-bottom: 30px;
  scroll-margin-top: 100px;
}
.top__how-content--regulation {
  margin-top: 40px;
  scroll-margin-top: 100px;
}
.top__how-title {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .top__how-title {
    font-size: 25px;
  }
}
.top__how-steps {
  padding-top: 40px;
  margin-top: 40px;
  counter-reset: step;
  border-top: 3px solid #ece7e7;
}
.top__how-step {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 150px;
  position: relative;
  counter-increment: step;
  padding-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .top__how-step {
    gap: 20px;
    padding-left: 60px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.top__how-step::before {
  top: 0;
  left: 55px;
  z-index: 1;
  content: counter(step);
  width: 40px;
  height: 40px;
  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: 2rem;
  font-weight: 700;
  color: #fff;
  border-radius: 7px;
  position: absolute;
  background-color: #274bc4;
  -webkit-box-shadow: 0 0 20px 5px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 20px 5px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 767px) {
  .top__how-step::before {
    left: 0;
  }
}
.top__how-step::after {
  right: 0;
  left: 150px;
  bottom: 14px;
  height: 2px;
  content: "";
  position: absolute;
  background-color: #ece7e7;
}
@media screen and (max-width: 767px) {
  .top__how-step::after {
    left: 60px;
  }
}
.top__how-step:last-child .top__how-step-text::after {
  content: none;
}
.top__how-step-text {
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 1.6rem;
  font-weight: 500;
  padding-right: 80px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .top__how-step-text {
    width: 100%;
    font-size: 16px;
    padding-right: 0;
  }
}
.top__how-step-text::after {
  top: 0;
  bottom: -40px;
  left: -77px;
  content: "";
  width: 5px;
  position: absolute;
  background-color: #ece7e7;
}
@media screen and (max-width: 767px) {
  .top__how-step-text::after {
    content: none;
  }
}
.top__how-step-list {
  margin-left: 25px;
  margin-block: 20px;
  list-style-type: disc;
}
.top__how-step-image {
  width: 50%;
  min-width: 40%;
}
@media screen and (max-width: 767px) {
  .top__how-step-image {
    width: 100%;
  }
}
.top__how-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-block: 50px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.top__how-others {
  gap: 2%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .top__how-others {
    gap: 40px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.top__how-other {
  width: 49%;
  background-color: white;
  padding: 20px;
  border-radius: 20px;
  border: 2px solid #10216f;
}
@media screen and (max-width: 767px) {
  .top__how-other {
    width: 100%;
  }
}
.top__how-other-title {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 20px;
  color: #10216f;
}
.top__how-other-steps {
  margin-bottom: 40px;
  counter-reset: other-step;
}
.top__how-other-step {
  gap: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.6rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  counter-increment: other-step;
}
.top__how-other-step::before {
  min-width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.6rem;
  border-radius: 5px;
  color: #fff;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  content: counter(other-step);
  background-color: #274bc4;
}
.top__how-other-step:not(:last-child) {
  margin-bottom: 10px;
}
.top__how-other-text {
  min-height: 210px;
  font-size: 1.6rem;
  margin-bottom: 40px;
}
.top__login {
  padding-block: 60px;
}
.top__login-text {
  display: block;
  margin-bottom: 20px;
}
.top__video {
  padding-bottom: 60px;
}
.top__video-wrap {
  width: 100%;
  max-width: 660px;
  height: 400px;
  margin-inline: auto;
}
.top__payment {
  padding-top: 100px;
}
@media screen and (max-width: 767px) {
  .top__payment {
    padding-top: 60px;
  }
}
.top__payment-method {
  gap: 2%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  .top__payment-method {
    gap: 30px;
    margin-top: 25px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.top__payment-method-title {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .top__payment-method-title {
    font-size: 18px;
  }
}
.top__payment-table {
  width: 100%;
  margin-top: 20px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #ece7e7;
}
.top__payment-table table {
  width: 100%;
  color: #fff;
  font-size: 1.8rem;
  border-collapse: collapse;
}
@media screen and (max-width: 767px) {
  .top__payment-table table {
    font-size: 16px;
  }
}
.top__payment-table tr {
  background: -webkit-gradient(linear, left top, right top, from(#5f7ff0), color-stop(55%, #3f5fe0), to(#2a45b8));
  background: linear-gradient(90deg, #5f7ff0 0%, #3f5fe0 55%, #2a45b8 100%);
}
.top__payment-table tr:first-child {
  font-size: 2rem;
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.05em;
  background: -webkit-gradient(linear, left top, right top, from(#4169e1), color-stop(55%, #274bc4), to(#10216f));
  background: linear-gradient(90deg, #4169e1 0%, #274bc4 55%, #10216f 100%);
}
@media screen and (max-width: 767px) {
  .top__payment-table tr:first-child {
    font-size: 18px;
  }
}
.top__payment-table tr:not(:last-child) {
  border-bottom: 1px solid #f4f7ff;
}
.top__payment-table td {
  padding: 10px;
}
.top__payment-table td:first-child {
  border-right: 1px solid #f4f7ff;
}
.top__types {
  padding-block: 60px;
}
.top__types-col-2 {
  gap: 50px;
  display: grid;
  margin-block: 40px;
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 767px) {
  .top__types-col-2 {
    gap: 10px;
    grid-template-columns: repeat(1, 1fr);
  }
}
.top__types-col-3 {
  gap: 30px;
  display: grid;
  margin-block: 40px;
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 767px) {
  .top__types-col-3 {
    gap: 10px;
    grid-template-columns: repeat(1, 1fr);
  }
}
.top__types-col-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 20px;
}
.top__types-col-text {
  font-size: 1.6rem;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .top__types-col-text {
    font-size: 14px;
  }
}
.top__types-col-list {
  padding-left: 30px;
  margin-top: 20px;
  list-style-type: disc;
}
.top__types-col-list li {
  font-size: 1.6rem;
}
.top__types-col-image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  position: relative;
}
.top__types-col-image::before {
  left: 0;
  bottom: 0;
  content: "";
  width: 100%;
  height: 5px;
  position: absolute;
  background-color: #ffd700;
}
.top__place-steps {
  margin-top: 40px;
  counter-reset: counter-place;
}
.top__place-steps--regulations .top__place-step {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.top__place-steps--regulations .top__place-step span {
  display: block;
}
.top__place-step {
  gap: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.6rem;
  position: relative;
  counter-increment: counter-place;
}
.top__place-step::before {
  z-index: 1;
  min-width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 2rem;
  font-weight: 700;
  border-radius: 7px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  content: counter(counter-place);
  background-color: #274bc4;
  -webkit-box-shadow: 0 0 20px 5px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 20px 5px rgba(0, 0, 0, 0.1);
}
.top__place-step::after {
  top: 35px;
  left: 18px;
  content: "";
  width: 5px;
  height: 100%;
  position: absolute;
  background-color: #ece7e7;
}
.top__place-step:not(:last-child) {
  margin-bottom: 20px;
}
.top__place-step:last-child::after {
  content: none;
}
.top__lottery {
  gap: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .top__lottery {
    gap: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.top__lottery-wrap {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.top__exchange {
  padding-block: 60px;
}
.top__casino {
  padding-top: 100px;
}
@media screen and (max-width: 767px) {
  .top__casino {
    padding-top: 50px;
  }
}
.top__casino-label {
  display: block;
  font-size: 3rem;
  font-weight: 700;
  margin-block: 0 20px;
}
.top__casino-list {
  margin-top: 30px;
  -webkit-column-count: 2;
     -moz-column-count: 2;
          column-count: 2;
}
.top__casino-item {
  margin-left: 40px;
  font-size: 1.6rem;
  list-style-type: disc;
}
.top__casino-item:not(:last-child) {
  margin-bottom: 5px;
}
.top__casino-types {
  gap: 50px;
  display: grid;
  margin-top: 60px;
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 767px) {
  .top__casino-types {
    gap: 10px;
    grid-template-columns: repeat(1, 1fr);
  }
}
.top__casino-type-label {
  text-align: center;
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .top__casino-type-label {
    font-size: 18px;
  }
}
.top__casino-type-img {
  margin-block: 30px;
  position: relative;
}
.top__casino-type-img::before {
  left: 0;
  bottom: 0;
  content: "";
  width: 100%;
  height: 5px;
  position: absolute;
  background-color: #ffd700;
}
.top__apps {
  padding-block: 60px;
}
.top__apps-types {
  margin-block: 60px;
}
.top__apps-types-label {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 30px;
  display: block;
}
.top__apps-types-image {
  width: 600px;
  margin-inline: auto;
  position: relative;
}
@media screen and (max-width: 767px) {
  .top__apps-types-image {
    width: 100%;
    max-width: 400px;
  }
}
.top__apps-types-image::before {
  left: 0;
  bottom: 0;
  content: "";
  width: 100%;
  height: 5px;
  position: absolute;
  background-color: #ffd700;
}
.top__apps-types-text {
  font-size: 1.8rem;
  margin-block: 20px;
}
.top__apps-requirements-label {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  margin-block: 60px 30px;
}
.top__apps-requirements-table {
  width: 100%;
  overflow: hidden;
  font-size: 1.8rem;
  color: #fff;
  border-radius: 10px;
  margin-top: 40px;
  border: 1px solid #ece7e7;
}
@media screen and (max-width: 767px) {
  .top__apps-requirements-table {
    font-size: 16px;
  }
}
.top__apps-requirements-table table {
  width: 100%;
  font-size: 1.8rem;
  border-collapse: collapse;
}
@media screen and (max-width: 767px) {
  .top__apps-requirements-table table {
    font-size: 16px;
  }
}
.top__apps-requirements-table table tr {
  background: -webkit-gradient(linear, left top, right top, from(#4169e1), color-stop(55%, #274bc4), to(#10216f));
  background: linear-gradient(90deg, #4169e1 0%, #274bc4 55%, #10216f 100%);
}
.top__apps-requirements-table table tr:nth-child(even) {
  background: -webkit-gradient(linear, left top, right top, from(#5f7ff0), color-stop(55%, #3f5fe0), to(#2a45b8));
  background: linear-gradient(90deg, #5f7ff0 0%, #3f5fe0 55%, #2a45b8 100%);
}
.top__apps-requirements-table table tr:not(:last-child) td {
  border-bottom: 1px solid #ece7e7;
}
.top__apps-requirements-table table td {
  padding: 20px;
}
@media screen and (max-width: 767px) {
  .top__apps-requirements-table table td {
    padding: 10px;
  }
}
.top__apps-requirements-table table td:first-child {
  border-right: 1px solid #ece7e7;
}
.top__usability-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
.top__usability-item {
  width: 267px;
  margin-right: 45px;
  padding: 20px;
  border-radius: 10px;
  background: -webkit-gradient(linear, left top, right top, from(#5f7ff0), color-stop(55%, #3f5fe0), to(#2a45b8));
  background: linear-gradient(90deg, #5f7ff0 0%, #3f5fe0 55%, #2a45b8 100%);
}
@media screen and (max-width: 767px) {
  .top__usability-item {
    width: 100%;
  }
}
.top__usability-image {
  height: 450px;
  border-bottom: 5px solid #ffd700;
}
.top__usability-text {
  font-size: 2rem;
  letter-spacing: 0.05em;
  text-align: center;
  display: block;
  margin-top: 20px;
  color: #fff;
  font-weight: 700;
}
.top__usability-splide {
  margin-bottom: 100px;
}
.top__usability-splide .splide__arrows {
  bottom: -70px;
  gap: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  position: absolute;
  left: 50%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.top__usability-splide .splide__arrow {
  border-radius: 10px;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
          justify-content: center;
  opacity: 0.7;
  padding: 0;
  position: relative;
  top: unset;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  width: 40px;
  height: 40px;
  z-index: 1;
  background-color: #0031ff;
}
.top__usability-splide .splide__arrow svg {
  fill: #fff;
}
.top__usability-splide .splide__arrow--prev {
  left: unset;
}
.top__usability-splide .splide__arrow--next {
  right: unset;
}
.top__usability-other {
  font-size: 1.6rem;
  margin-left: 40px;
  margin-top: 40px;
  list-style-type: disc;
}
.top__regulation {
  padding-block: 100px;
}
.top__regulation-label {
  font-size: 2.5rem;
  margin-bottom: 10px;
  font-weight: 700;
}
.top__cs-label {
  font-weight: 700;
  font-size: 2.3rem;
  display: block;
  margin-bottom: 10px;
}
.top__cs-wrap {
  margin-top: 30px;
}
.top__cs-content {
  margin-bottom: 30px;
}
.top__faq-item {
  padding: 20px 50px;
  color: #fff;
  border-radius: 20px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background: -webkit-gradient(linear, left top, right top, from(#5f7ff0), color-stop(55%, #3f5fe0), to(#2a45b8));
  background: linear-gradient(90deg, #5f7ff0 0%, #3f5fe0 55%, #2a45b8 100%);
  background-size: 200% 200%;
}
@media screen and (max-width: 767px) {
  .top__faq-item {
    padding: 15px 25px;
  }
}
.top__faq-item:not(:last-child) {
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .top__faq-item:not(:last-child) {
    margin-bottom: 15px;
  }
}
.top__faq-item:hover {
  background-position: right;
}
.top__faq-header {
  gap: 10px;
  cursor: pointer;
  font-size: 2.2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .top__faq-header {
    font-size: 18px;
  }
}
.top__faq-header::after {
  content: "▼";
  font-size: 1.6rem;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.top__faq-header.active::after {
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}
.top__faq-content {
  max-height: 0;
  overflow: hidden;
  font-size: 1.8rem;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .top__faq-content {
    font-size: 16px;
  }
}
.top__faq-content span {
  display: block;
}
.top__faq-steps {
  counter-reset: faq;
  margin-top: 20px;
}
.top__faq-step {
  gap: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  counter-increment: faq;
}
.top__faq-step::before {
  content: counter(faq);
  z-index: 1;
  min-width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 2rem;
  font-weight: 700;
  border-radius: 7px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #274bc4;
  -webkit-box-shadow: 0 0 20px 5px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 20px 5px rgba(0, 0, 0, 0.1);
}
.top__faq-step:not(:last-child) {
  margin-bottom: 15px;
}
.top__faq-step-text {
  display: block;
  padding-top: 15px;
}
.top__comments {
  color: #fff;
  padding-block: 60px;
}
@media screen and (max-width: 767px) {
  .top__comments {
    padding-bottom: 95px;
  }
}
.top__comments-wrap {
  padding: 40px;
  border-radius: 20px;
  background: -webkit-gradient(linear, left top, right top, from(#5f7ff0), color-stop(55%, #3f5fe0), to(#2a45b8));
  background: linear-gradient(90deg, #5f7ff0 0%, #3f5fe0 55%, #2a45b8 100%);
}
@media screen and (max-width: 767px) {
  .top__comments-wrap {
    padding: 20px;
  }
}
.top__comments-textarea {
  width: 70%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 767px) {
  .top__comments-textarea {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.top__comments-textarea textarea {
  width: 100%;
  resize: none;
  padding: 20px;
  height: 100%;
  border-radius: 10px;
  border: 1px solid #ece7e7;
  font-size: 1.6rem;
  font-family: inherit;
}
.top__comments-form {
  gap: 2%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .top__comments-form {
    gap: 10px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.top__comments-details {
  width: 28%;
  gap: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 767px) {
  .top__comments-details {
    width: 100%;
  }
}
.top__comments-details input {
  width: 100%;
  height: 50px;
  padding: 20px;
  font-size: 1.6rem;
  font-family: inherit;
  border-radius: 10px;
  border: 1px solid #ece7e7;
}
.top__comments-details button {
  max-width: 100%;
  margin-inline: auto;
}
.top__rating {
  gap: 5px;
  margin-top: 5px;
  margin-left: 5px;
  direction: rtl;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.top__rating input {
  display: none;
}
.top__rating input:checked ~ label {
  color: #ffd700;
}
.top__rating label {
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
@media screen and (max-width: 767px) {
  .top__rating label {
    font-size: 20px;
  }
}
.top__rating label::before {
  content: "★";
}
.top__rating label:hover, .top__rating label:hover ~ label {
  color: #ffd700;
}
.top__comments-list {
  margin-top: 30px;
}
.top__comments-content {
  gap: 2%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .top__comments-content {
    gap: 10px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.top__comments-content:not(:last-child) {
  margin-bottom: 40px;
}
.top__comments-posts {
  gap: 20px;
  width: 75%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 767px) {
  .top__comments-posts {
    width: 100%;
  }
}
.top__comments-rate {
  width: 23%;
  gap: 20px;
  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: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media screen and (max-width: 767px) {
  .top__comments-rate {
    gap: 5px;
    width: 100%;
  }
}
.top__comments-name {
  font-size: 2.5rem;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: #ffd700;
  text-underline-offset: 5px;
}
.top__comments-text {
  font-size: 1.6rem;
}
.top__comments-date {
  font-size: 1.5rem;
}
@media screen and (max-width: 767px) {
  .top__comments-date {
    font-size: 14px;
  }
}
.top__comments-rated {
  font-size: 3rem;
  font-weight: 700;
  color: #ffd700;
}
@media screen and (max-width: 980px) {
  .top__comments-rated {
    font-size: 2rem;
  }
}
.top__modal {
  inset: 0;
  z-index: 1000;
  position: fixed;
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .top__modal {
    padding-inline: 4%;
  }
}
.top__modal.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.top__modal-backdrop {
  inset: 0;
  position: absolute;
  background: rgba(0, 0, 0, 0.5);
}
.top__modal-wrap {
  z-index: 1;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  border-radius: 30px;
  border: 2px solid #ffd700;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  background: -webkit-gradient(linear, left top, right top, from(#4169e1), color-stop(55%, #274bc4), to(#10216f));
  background: linear-gradient(90deg, #4169e1 0%, #274bc4 55%, #10216f 100%);
}
@media screen and (max-width: 767px) {
  .top__modal-wrap {
    width: 70%;
  }
}
.top__modal-wrap:hover .top__modal-button-hov {
  opacity: 1;
  -webkit-transform: translate(-50%, -50%) scale(1.1);
          transform: translate(-50%, -50%) scale(1.1);
}
.top__modal-close {
  top: -10px;
  right: 20px;
  z-index: 20;
  margin-top: 30px;
  position: absolute;
}
.top__modal-close button {
  width: 40px;
  height: 40px;
  font-size: 2rem;
  border-radius: 50%;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  -webkit-box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.3);
}
@media screen and (max-width: 767px) {
  .top__modal-close button {
    width: 30px;
    height: 30px;
  }
}
.top__modal-close button:hover {
  -webkit-box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.7);
          box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.7);
}
.top__modal-button-hov {
  top: 46.5%;
  left: 50%;
  width: 270px;
  opacity: 0;
  position: absolute;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .top__modal-button-hov {
    display: none;
  }
}
.top__category-title {
  font-size: 3.4rem;
  margin-block: 50px 20px;
}
@media screen and (max-width: 767px) {
  .top__category-title {
    font-size: 25px;
  }
}
.top__cs {
  padding-bottom: 40px;
}

.overflow {
  overflow: hidden;
}

.pc {
  display: block;
}
@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp {
    display: block;
  }
}

.bold {
  font-weight: 700;
}