:root {
  --main-color: #11366b;
  --main-color-dark: #031838;
  --yellow: #ffd200;
  --text: #fff;
  --orange-gradient: linear-gradient(0deg,#e73d00,#ffbf00);
}

body {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 1em;
  background: var(--main-color);
  margin: 0;
  padding: 0;
}

.container {
  max-width: 1200px;
  display: block;
  margin: 0 auto;
}
@media (width < 1023px) {
  .container {
    padding: 0 15px;
  }
}

h1 {
  color: #ffd200;
}

h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin: 10px 0;
  background: linear-gradient(90deg, #f7971e, #ffd200);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 0.03em;
}

h3 {
  font-size: 1.6rem;
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 15px;
  color: #ffd200;
}

p {
  margin-bottom: 18px;
  font-size: 1rem;
  color: #e0e0e0;
}

ul {
  margin-left: 20px;
  margin-bottom: 25px;
  list-style-type: disc;
  color: #f0f0f0;
}
@media (width < 768px) {
  ul {
    margin-left: 0;
    padding: 0;
    padding-left: 20px;
  }
}
ul li {
  margin-bottom: 12px;
  font-size: 1rem;
}
ul li strong {
  color: #ffd200;
}

@media (max-width: 600px) {
  h2 {
    font-size: 1.2rem;
    line-height: normal;
  }
  h3 {
    font-size: 1.3rem;
  }
}
.area-text {
  color: #f0f0f0;
  line-height: 1.6;
}
.area-text p {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.btn {
  background: #ff124c;
  color: #FFF;
  padding: 12px 26px;
  border-radius: 8px;
  border: none;
  font-weight: 700;
  cursor: pointer;
}
.btn:hover {
  opacity: 0.6;
  transition: 0.2s ease;
}
.btn-dark {
  background: #ff124c;
  color: #FFF;
  padding: 12px 26px;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
}
.btn-dark:hover {
  opacity: 0.6;
  transition: 0.2s ease;
}

.header-live {
  padding: 20px 0;
  background: var(--main-color-dark);
}
.header-live .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-live__nav {
  display: flex;
  align-items: center;
  gap: 10px;
}
.header-live__logo {
  display: flex;
  align-items: center;
  gap: 20px;
  color: #FFF;
  text-decoration: none;
  font-weight: 700;
  font-family: Arial;
}

.live-magic-slider {
  margin: 20px 0;
}
.live-magic-slider h2 {
  font-size: 24px;
  margin: 0;
  margin-bottom: 15px;
}
.live-magic-slider__item {
  position: relative;
}
.live-magic-slider__item img {
  width: 100%;
}
.live-magic-slider__item:hover .content {
  opacity: 1;
  transition: 0.5s ease;
}
.live-magic-slider__item .content {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
}
.live-magic-slider__item .content .image-circle {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #0b57d0;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.live-magic-slider__item .content .image-circle img {
  width: 28px;
}
.live-magic-slider__item .content div {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  color: #FFF;
  bottom: 20px;
}
.live-magic-slider__wrapper + button {
  margin: 20px auto;
  display: table;
}

.box-image-wrapper {
  background: linear-gradient(85deg, #834bfb 0%, #2D34C4 100%);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 0 40px;
  border-radius: 20px;
  text-align: center;
}
@media (width < 768px) {
  .box-image-wrapper {
    grid-template-columns: 1fr;
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.box-image-wrapper img {
  max-width: 450px;
  width: 100%;
}
.box-image-wrapper .item {
  display: grid;
  justify-items: center;
}
.box-image-wrapper .item .title {
  font-size: 18px;
  color: #fff;
}
.box-image-wrapper .item p {
  font-size: 37px;
  color: #fff;
  font-weight: 700;
  margin: 20px 0;
}
.box-image-wrapper .item button {
  border: 0;
  padding: 20px 40px;
  font-size: 21px;
  font-weight: 700;
}

footer {
  background: var(--main-color-dark);
  padding: 40px 0;
  margin-top: 50px;
  color: #fff;
}

@media (width < 768px) {
  .container {
    text-align: center;
  }
}

.footer__nav {
  margin-bottom: 20px;
}
.footer__nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (width < 520px) {
  .footer__nav .container {
    flex-direction: column;
  }
}
.footer__nav .container a {
  color: #FFF;
}
.footer__nav .container ul {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 0;
  padding: 0;
}
@media (width < 768px) {
  .footer__nav .container ul {
    display: grid;
    text-align: center;
    justify-items: center;
    margin-top: 30px;
  }
}
.footer__nav .container ul li {
  list-style: none;
}

.payment-method {
  margin: 50px 0;
}
.payment-method-slider .swiper-slide {
  align-items: center;
}
.payment-method-slider img {
  width: 55%;
  object-position: center;
  object-fit: contain;
  margin: 0 auto;
}
.payment-method-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  box-shadow: inset 0 0 370px 20px rgba(255, 255, 255, 0.168627451);
  padding: 10px;
}
@media (width < 768px) {
  .payment-method-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.payment-method-grid .items {
  background: #242424;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 16/9;
}
@media (width < 768px) {
  .payment-method-grid .items:last-child {
    grid-column: 1/-1;
    aspect-ratio: unset;
    padding: 10px 0;
  }
}
.payment-method-grid-7 {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  background: var(--color-primary-light);
}
.payment-method-grid-7 img {
  width: 60%;
  object-fit: contain;
}
.payment-method-grid-7 .items {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
}
.payment-method-grid-7 .items:nth-child(even) {
  background: var(--color-primary-dark);
}

.default-block-faq {
  margin: 50px 0;
  color: #FFF;
}
.default-block-faq h2 {
  margin-bottom: 30px;
}
.default-block-faq-grid {
  display: grid;
}
.default-block-faq-item {
  position: relative;
  padding-left: 30px;
  padding-bottom: 20px;
  padding-top: 20px;
}
.default-block-faq-item::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #FFF;
  opacity: 0.5;
}
.default-block-faq-item::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 1px;
  background: #fff;
  left: 8px;
  top: 0;
  opacity: 0.5;
}
.default-block-faq-item .title {
  font-size: 21px;
  margin-bottom: 20px;
  position: relative;
}
.default-block-faq-item .content {
  line-height: 1.6;
  hyphens: auto;
}

/*# sourceMappingURL=scss.css.map */
