:root {
  --header-background: #3e004e;
  --footer-background: #3e004e;
  --body-background: #0d0835;
  --link-background: #f02884;
  --text-color: #fff;
}

html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

progress {
  vertical-align: baseline;
  display: inline-block;
}

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

strong {
  font-weight: bold;
}

h1 {
  margin: 0.67em 0;
  font-size: 2em;
}

img {
  border: 0;
}

svg:not(:root) {
  overflow: hidden;
}

input {
  color: inherit;
  font: inherit;
  margin: 0;
}

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

input {
  line-height: normal;
}

* {
  box-sizing: border-box;
}

html {
  height: 100%;
}

img {
  max-width: 100%;
  vertical-align: middle;
  display: inline-block;
}

p {
  margin-top: 0;
  margin-bottom: 20px;
  font-weight: 500;
  @media (max-width: 768px) {
    margin-bottom: 10px;
  }
}

ul,
ol,
li {
  padding: 0px;
  margin: 0px;
  list-style: none;
}

a {
  color: #fff;
  text-decoration: none;
  outline: none;
}

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

.text-uppercase {
  text-transform: uppercase;
}

* {
  box-sizing: border-box;
}

html {
  margin: 0;
  padding: 0;
  height: 100%;
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.2;
  color: var(--text-color);
  background: var(--body-background);
}

.wrapper {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.main {
  flex: 1 1 auto;
}

a {
  text-transform: none;
  margin: 0;
  padding: 0;
}

ul,
li {
  padding: 0;
  margin: 0;
  list-style: none;
}

.container {
  max-width: 1680px;
  padding: 0px 10px;
  width: 100%;
  margin: 0 auto;
}

.header {
  position: relative;
  z-index: 99999;
  background: var(--header-background);
  box-shadow: 0px 0px 10px #fff;
  width: 100%;
}

.header__wrapper {
  padding: 10px 0px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  @media (max-width: 425px) {
    gap: 5px;
  }
}

.header__logo {
  z-index: 999;
  color: #fff;
  object-fit: contain;
  font-size: 28px;
  transition: 0.3s ease;
  border-radius: 15px;
  @media (max-width: 450px) {
    word-break: break-all;
    text-align: center;
  }
}

.header__logo svg {
  width: 200px;

  @media (max-width: 500px) {
    width: 100px;
  }
}

.header__logo:hover {
  transform: translateY(-5px);
}

.header-menu .header-menu--footer {
  display: flex !important;
  position: static;
  transform: translateX(0%);
  opacity: 1;
  background-color: transparent;
}

.header-menu ul {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-direction: row;
}

.header-menu__item-link {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  text-transform: capitalize;
  transition: 0.3s ease;
  @media (max-width: 425px) {
    font-size: 15px;
  }
}

.header-menu__item-link-dop {
  color: #fff;
  background: var(--link-background);
  display: block;
  padding: 10px 20px;
  border: 1px solid #fff;
  border-radius: 10px;
  transition: 0.3s ease;
  @media (max-width: 550px) {
    padding: 5px 10px;
    font-size: 16px;
  }
  @media (max-width: 375px) {
    padding: 3px 5px;
    font-size: 14px;
  }
}

.eyihYpSdgHtTDZF_btn2 {
  animation: pulse2 2s infinite;
}

@keyframes pulse2 {
  0% {
    transform: scale(0.9);
  }

  70% {
    transform: scale(1.02);
  }

  100% {
    transform: scale(0.9);
  }
}

.header-menu__item-block {
  z-index: 999;
  display: flex;
  gap: 10px;
  @media (max-width: 425px) {
    gap: 5px;
    flex-direction: column;
  }
}

.header-menu__item {
  transition: 0.3s ease;
}

.header-toggler {
  display: none;
}

@media (max-width: 1200px) {
  .header-toggler {
    cursor: pointer;
    display: block;
    width: 30px;
    height: 20px;
    z-index: 99;
  }
  .header-toggler__icon {
    position: relative;
    width: 100%;
    height: 100%;
  }
  .header-menu {
    position: fixed;
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: center;
    left: 0;
    top: 0;
    opacity: 0;
    transform: translateX(100%);
    width: 100%;
    height: 100%;
    background-color: var(--header-background);
    transition: 0.3s ease-in-out;
  }

  .header-menu--open {
    opacity: 1;
    transform: translateX(0);
  }
  .header-menu ul {
    flex-direction: column;
  }
  .header-toggler__line {
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #fff;
  }
  .header-toggler__line-middle {
    top: 50%;
    transform: translateY(-50%);
  }
  .header-toggler__line-bottom {
    bottom: 0;
  }
  .header-toggler--open {
    .header-toggler__line {
      background-color: #fff;
    }
    .header-toggler__line-top {
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%) rotate(45deg);
    }
    .header-toggler__line-bottom {
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%) rotate(-45deg);
    }
    .header-toggler__line-middle {
      display: none;
    }
  }
}

.unscroll {
  overflow: hidden;
}

.WvvGzfvHgUwOoYu {
  width: 100%;
  max-width: 1670px;
  margin-left: auto;
  margin-right: auto;
}

.WvvGzfvHgUwOoYu img {
  height: 400px;
  width: 100%;
  object-fit: cover;
  margin: 5px 0px;
  @media (max-width: 425px) {
    height: 300px;
  }
}
.WoQdJdQWagzpbXF {
  margin-left: auto;
  margin-right: auto;
}

.oDGRqyEiuceWxym {
  width: 100%;
  max-width: 100%;
  background-color: transparent;
  padding: 5px;
  border-radius: 10px;
}

.TVXRumFXNOjQWme {
  width: 100%;
  max-width: 1670px;
  margin-left: auto;
  margin-right: auto;
}

.seOWEjXzUsLnOTh {
  margin: 10px;
}

/* .hdeaMntulNzzmcq {
  margin: 10px;
} */

.ydOCqOEVdNiRLIg {
  margin: 2rem;
}

.WaJkFyOatdqEfeG {
  margin: 4rem;
}

.RXiEaSpIiuYNLUQ {
  width: 100%;
  margin: 2rem;
}

.nFbNvqQDHdEKQsC {
  margin: 6rem;
}

.DOlPCympuDazvaf {
  padding: 2rem;
}

.pIRNoKpkIygRPWC {
  padding: 5rem;
}

.mgukMYNBJlgOMdx,
.mgukMYNBJlgOMdx.ydOCqOEVdNiRLIg,
.mgukMYNBJlgOMdx.nFbNvqQDHdEKQsC {
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
}

.itvImRvCffAgvqg,
.itvImRvCffAgvqg.RXiEaSpIiuYNLUQ,
.itvImRvCffAgvqg.WaJkFyOatdqEfeG,
.itvImRvCffAgvqg.nFbNvqQDHdEKQsC,
.itvImRvCffAgvqg.seOWEjXzUsLnOTh {
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
  width: 100%;
}

.egQECbHXKvPRlWF,
.egQECbHXKvPRlWF.DOlPCympuDazvaf {
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
}

.PGOTLGCSywROQlC,
.PGOTLGCSywROQlC.pIRNoKpkIygRPWC {
  padding-top: 0;
  padding-left: 0;
  padding-right: 0;
}

.VubJMoNqhfQqRog,
.VubJMoNqhfQqRog.pIRNoKpkIygRPWC {
  padding-left: 0;
  padding-right: 0;
}

.IYnoniyJNnsBTin {
  width: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 1.125rem;
  text-align: center;
  @media (max-width: 768px) {
    text-align: justify;
  }
}

/* .IYnoniyJNnsBTin ul {
  padding-top: 10px;
} */

.PPbYeXPCCxARcuw {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  margin: 0;
}

.kYgTcLeCgaeSMEF {
  font-size: 0.75rem;
}

.NuAbkOBJvdcneuN {
  color: #fff;
  text-align: center;
  background-color: #120e37;
  background: #d67d23;
  border: 1px solid #6a5eff;
  border-radius: 30px;
  padding: 0.75rem 1.5rem;
  transition: color 0.2s, background-color 0.2s;
}

.NuAbkOBJvdcneuN:hover {
  color: #020014;
  background-color: #6a5eff;
  background-image: linear-gradient(to top, #947eff, #7ce8ff);
}

.NuAbkOBJvdcneuN.hrodzurgWKSWEck {
  color: #fefefd;
  background-color: rgba(0, 0, 0, 0);
  background-image: none;
  border-style: none;
  padding: 0.25rem 0;
  line-height: 1;
  text-decoration: none;
}

.NuAbkOBJvdcneuN.hrodzurgWKSWEck:hover {
  color: #9fa5b3;
}

.NuAbkOBJvdcneuN.hrodzurgWKSWEck.ytrspaLWOTCNOhv {
  grid-column-gap: 0.5rem;
  grid-row-gap: 0.5rem;
  justify-content: flex-start;
}

.NuAbkOBJvdcneuN.ytrspaLWOTCNOhv {
  grid-column-gap: 0.75rem;
  grid-row-gap: 0.75rem;
  background-color: rgba(0, 0, 0, 0);
  justify-content: center;
  align-items: center;
  display: flex;
}

.NuAbkOBJvdcneuN.CHttYeiIQoYEHbt {
  color: #fff;
  background-color: rgba(0, 0, 0, 0);
  background-image: none;
  border-color: #947eff;
}

.NuAbkOBJvdcneuN.CHttYeiIQoYEHbt:hover {
  background-color: #947eff;
}

.NuAbkOBJvdcneuN.CHttYeiIQoYEHbt.ytrspaLWOTCNOhv {
  grid-column-gap: 0.5rem;
  grid-row-gap: 0.5rem;
  justify-content: center;
  text-decoration: none;
}

.NuAbkOBJvdcneuN.AypazVNRqGJyhFe {
  padding: 0.5rem 1.25rem;
}

.NuAbkOBJvdcneuN.qXwAPHYzJUFMdHm {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.GMSuqNqkgrtSljp {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
}

.IWhAcQbwJEgzqvb {
  font-size: 1rem;
  overflow: hidden;
}

.IwCtbytgcGFaAGu {
  font-weight: 700;
}

.etqoLPBrkisibIl {
  height: auto;
  min-height: 2.75rem;
  color: #e4e7ec;
  background-color: rgba(0, 0, 0, 0);
  border: 1px solid #303849;
  border-radius: 30px;
  margin-bottom: 0;
  padding: 0.5rem 0.75rem;
  font-size: 0.9rem;
  line-height: 1.6;
}

.etqoLPBrkisibIl:focus {
  color: #e4e7ec;
  background-color: rgba(0, 0, 0, 0);
  border-color: #9fa5b3;
}

.etqoLPBrkisibIl::-ms-input-placeholder {
  color: #c0c2cd;
}

.etqoLPBrkisibIl::placeholder {
  color: #c0c2cd;
}

.unshyaKvZHwndkm {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  display: flex;
}

.unshyaKvZHwndkm.ztVImZKpQVdBbos {
  justify-content: center;
}

.NZdldcFYseikyNy {
  color: #fff;
}

.XPCYHSTQsywNuFV {
  text-align: center;
}

.qrvwdMzvbFTXScQ {
  font-size: 0.875rem;
}

.WZXOBmcOuUNkXFf {
  padding-left: 3%;
  padding-right: 3%;
}

.WZXOBmcOuUNkXFf1 {
  padding-left: 0;
  padding-right: 0;
}

.TiqsNXbZdinxnwO {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.HrvTSLRYSlMPHqF {
  padding-top: 10px;
  padding-bottom: 10px;
}

.EAhzmkyEpNHtdWY {
  width: 100%;
  height: 1px;
  background-color: #1e232e;
}

.OyhHabPUzWhYwkl {
  background-color: #6a5eff;
  padding: 1.5rem;
}

.DjUfIOcGihShyxf {
  background-color: #580600;
  margin-top: 1.5rem;
  padding: 0.875rem 1rem;
}

.JkTJxAOwKveMzWs {
  text-align: center;
  -webkit-text-fill-color: transparent;
  background: #fff;
  -webkit-background-clip: text;
  background-clip: text;
  @media (max-width: 768px) {
    text-align: center;
  }
  @media (max-width: 425px) {
    font-size: 26px;
    line-height: 130%;
    text-align: center;
  }
}

.JkTJxAOwKveMzWs1 {
  text-align: center;
}

.cEausngfXqdbahL {
  width: 100%;
  height: auto;
  min-height: 4.5rem;
  background-color: rgba(0, 0, 0, 0);
  border-bottom: 1px rgba(0, 0, 0, 0);
  align-items: center;
  padding-left: 5%;
  padding-right: 5%;
  display: flex;
}

.BxEaDhOFFEkMUmZ {
  width: 100%;
  height: 100%;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 0.25fr 1fr 0.25fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  display: grid;
}

.SoqpwwpYsiqBEYi {
  padding-left: 0;
}

.ragWOnACMxLlZsz {
  justify-content: center;
  align-items: center;
  display: flex;
  position: static;
}

.jmWXEVttpJtFZnv {
  color: #fefefd;
  padding: 0.5rem 1rem;
}

.jmWXEVttpJtFZnv.rfydgqNmPHmlauI {
  color: #fefefd;
}

.JKOfIKMCNJPqdgT {
  color: #fefefd;
  padding: 0.5rem 2.5rem 0.5rem 1rem;
}

.OSQSZQWYuKvALsB {
  width: 1rem;
  height: 1rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: auto;
  margin-bottom: auto;
  margin-right: 1rem;
  display: flex;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: auto;
  right: 0%;
}

.GrKUHTvHBIKgvzY {
  color: #fefefd;
  padding: 0.5rem 1rem;
}

.GrKUHTvHBIKgvzY.rfydgqNmPHmlauI {
  color: #fefefd;
}

.KWNFlCGMLKAPwWr {
  grid-column-gap: 1rem;
  margin-left: 1rem;
  display: flex;
}

.RNDFQpAYqefKNcf {
  padding: 0;
}

.UogDPWAiBhosyXP {
  background-color: #000000b0;
  padding-top: 70px;
  position: relative;
  overflow: hidden;
  @media (max-width: 425px) {
    padding-top: 70px;
  }
}

.SYyqDjqiNRomVYh {
  z-index: 999;
  flex-direction: column;
  align-items: center;
  display: flex;
  position: relative;
}

.zmeavMuPucGebah {
  width: 100%;
  z-index: 99;
  background-color: #020014;
  border: 1px solid #1e232e;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.RzlfqZoBmhCokvS {
  width: 100%;
  height: 100%;
}

.fCTbZzxGxQUfHeU {
  overflow: hidden;
}

.kYcKMSkZssVhlCm {
  display: flex;
}

.fjtMuMuiJbEqgNy {
  grid-column-gap: 2rem;
  grid-row-gap: 1rem;
  white-space: nowrap;
  flex-wrap: wrap;
  grid-template-rows: auto;
  grid-template-columns: 12.5rem 12.5rem 12.5rem 12.5rem 12.5rem 12.5rem 12.5rem 12.5rem;
  grid-auto-columns: 1fr;
  justify-content: flex-end;
  align-items: center;
  justify-items: start;
  margin-right: 2rem;
  display: grid;
}

.GtMljHwECMLvcAv {
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.LFCCrYgOHvHvHbZ {
  width: 9rem;
  max-height: 3.5rem;
}

.trAuHpBEbJZSiJs {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.OWBaMsdqWAAwqJy {
  box-shadow: 0px 0px 5px #fff;
  width: 100%;
  background: #00000052;
  border-radius: 5px;
  flex-direction: column;
  align-items: center;
  padding: 5px;
}

.OWBaMsdqWAAwqJy p {
  margin-bottom: 5px;
}

.OWBaMsdqWAAwqJy ul {
  padding-top: 10px;
  text-align: center;
}

.EkbLedZqgrIpTPJ {
  width: 100%;
  position: relative;
}

.ekpKzqHJdVmlUSH {
  width: 100%;
  height: 100%;
}

.okjpmGmAwcwORAE {
  width: 1rem;
  height: 1rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.crlHOvGVxuUPyyc {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: grid;
}

.jSqgzzQJSMbBRaZ {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  display: grid;
}

.RWwIJjeCLFjoVee {
  display: flex;
}

.sPYgQlXaBCCGiau {
  flex: none;
  align-self: flex-start;
  margin-right: 1rem;
}

.fpmWDXUYxcIJtGd {
  width: 1.5rem;
  height: 1.5rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.vOuWGWDChSCGlPj {
  background-image: linear-gradient(#0f1c21, #1a1726);
  border-radius: 20px;
  justify-content: center;
  align-items: flex-end;
  display: flex;
}

.CgooywydEmvkIMv {
  border: 1px #1e232e;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.MGGsxifyPpDAMCf1 {
  display: grid;
  grid-template-columns: 1fr;
  @media (max-width: 768px) {
    grid-template-columns: 1fr;
  }
}

.MGGsxifyPpDAMCf {
  width: 100%;
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  align-items: stretch;
  justify-items: start;
  display: grid;
  @media (max-width: 768px) {
    grid-template-columns: 1fr;
  }
}

.QePGzldPlGZvEBo {
  grid-column-gap: 5rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: grid;
}

.gAmUsLvAbBNcyEF {
  font-weight: 600;
}

.pziDSCLUCmlOkSa {
  height: 100%;
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-self: stretch;
  align-items: stretch;
  display: flex;
}

.jjwnrwGbVAsLlDD {
  width: 100%;
  background-image: linear-gradient(#0f1c21, #1a1726);
  border: 1px rgba(0, 0, 0, 0);
  border-radius: 10px;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding: 2rem;
  display: flex;
}

.znXTlbigmCAIQsp {
  margin-bottom: 2rem;
}

.ghFTuluYGXIyFsC {
  max-height: 2rem;
}

.FZWpBicGblGvkkh {
  column-count: 3;
  column-gap: 2rem;
}

.rgDuqKzOaFnmFCn {
  width: 100%;
  background-image: linear-gradient(128deg, #0f1c21, #111b22 0%, #1a1726 71%);
  border: 1px #1e232e;
  border-radius: 5px;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2rem;
  padding: 2rem;
  display: inline-block;
}

.YTbnQgFidhrpvUH {
  text-align: left;
  align-items: center;
  display: flex;
}

.vjAUulvwfqgqpFc {
  margin-right: 1rem;
}

.LttCCZcPAoIBibU {
  width: 2rem;
  height: 2rem;
  min-height: 2rem;
  min-width: 2rem;
  object-fit: cover;
  border-radius: 100%;
}

.jLNZHNSbzYeOFPe {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 100%;
  grid-auto-columns: 100%;
  align-items: start;
  justify-items: stretch;
  display: grid;
}

.gqcAyYfKMIJOQnf {
  background-image: linear-gradient(255deg, #0f1c21, #1a1726);
  border: 1px solid #1e232e;
  border-radius: 5px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
}

.aCZviqFPilbcIim {
  cursor: pointer;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  display: flex;
}

.ZzPrmezcDZksYJW {
  width: 2rem;
  align-self: flex-start;
  margin-left: 1.5rem;
  display: flex;
}

.gkmeJHUMnySBrYp {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  overflow: hidden;
}

.sUCzHqRExQAlJHS {
  flex-direction: column;
  align-items: center;
}

.mpulgEgblXmqZmE {
  width: 100%;
  margin-bottom: 1.5rem;
}

.dZcKylCKjpBNzRC {
  width: 100%;
  border-radius: 10px;
  padding-top: 66%;
  position: relative;
  overflow: hidden;
}

.NmGtFCHqlyORssM {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 1px solid #1e232e;
  border-radius: 10px;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.SoKLAPaZgamRLCX {
  margin-bottom: 0.5rem;
  margin-right: 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
}

.SoKLAPaZgamRLCX.rfydgqNmPHmlauI {
  border-bottom: 2px solid #000;
}

.xDLGloNOILpxsKW {
  margin-bottom: 0.5rem;
  text-decoration: none;
  display: block;
}

.GeliscbIZoYWGxz {
  align-items: center;
  margin-top: 1.5rem;
  display: flex;
}

.BsrxNyOZSjUoNRY {
  margin-right: 1rem;
}

.PqAeYGmIQybQSso {
  width: 2rem;
  height: 2rem;
  min-height: 2rem;
  min-width: 2rem;
  object-fit: cover;
  border-radius: 100%;
}

.EhGtktfnymzDDFu {
  color: #9fa5b3;
  align-items: center;
  display: flex;
}

.LCaaJXaLARnLrQt {
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}

.HQYTNTZdfFiIAYo {
  background-image: linear-gradient(#0f1c21, #1a1726);
  position: relative;
  overflow: hidden;
}

.cGvAyYrhKYjrLpB {
  width: 100%;
  max-width: 64rem;
}

.LuOkvdCbwkJosUr {
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 5rem;
  display: flex;
}

.DWdcOXVRnSYKssI {
  max-width: 35rem;
  min-width: 25rem;
  margin-bottom: 0;
}

.HMltOhrKwhkCTgt {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr max-content;
  grid-auto-columns: 1fr;
  margin-bottom: 0.75rem;
  display: grid;
}

.FPUOeKwfBrIelGS {
  grid-column-gap: 2rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  align-items: start;
}

.YGfVfqUAuOllIxD {
  padding-left: 0;
}

.sderCWkTMuBQNbm {
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 100%;
  grid-auto-columns: 100%;
  align-items: flex-start;
  justify-items: start;
  display: flex;
}

.WaPTvhLPkSotkZE {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  font-size: 0.875rem;
  text-decoration: none;
}

.JXWrqNHwdUvFLpN {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.SxtiOVjPMfntGza {
  grid-column-gap: 1.5rem;
  grid-row-gap: 0rem;
  white-space: normal;
  grid-template-rows: auto;
  grid-template-columns: max-content;
  grid-auto-columns: max-content;
  grid-auto-flow: column;
  justify-content: center;
  display: grid;
}

.QhweEGLJMdtpCFK {
  font-size: 0.875rem;
}

.VGrjOmeXlrCRXhr {
  font-size: 0.875rem;
  text-decoration: underline;
}

.MAoLrkclrmGvjvb {
  grid-column-gap: 0.75rem;
  grid-row-gap: 0rem;
  white-space: normal;
  grid-template-rows: auto;
  grid-template-columns: max-content;
  grid-auto-columns: max-content;
  grid-auto-flow: column;
  align-items: start;
  justify-items: start;
  display: grid;
}

.OlZZntjmPnBxgeD {
  align-items: center;
  font-size: 14px;
  text-decoration: none;
  display: flex;
}

.sCxliFkgafonDMe {
  z-index: -1;
  position: absolute;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: auto;
}

.uvHkVRnKWuliSCb {
  width: 100%;
  justify-content: center;
  padding: 10px;
  display: flex;
  flex-direction: column;
}

.UsbFFrqRZlqWcSf {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: flex;
}

.UjVwHVselCdKNFy {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: stretch;
  display: grid;
}

.dyigKhextoVbLen {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.iCGxSfrRTJCJEFj {
  position: absolute;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: auto;
}

.qIyINuxNmxybVeQ {
  z-index: 99;
  position: relative;
}

.AjhrpolJMihzkfj {
  color: #9fa5b3;
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 2.5rem;
    line-height: 130%;
  }

  h2 {
    font-size: 2rem;
    line-height: 130%;
  }

  h3 {
    font-size: 1.5rem;
    line-height: 130%;
  }

  .WaJkFyOatdqEfeG {
    margin: 3.5rem;
  }

  .RXiEaSpIiuYNLUQ {
    margin: 1.5rem;
  }

  .nFbNvqQDHdEKQsC {
    margin: 5rem;
  }

  .pIRNoKpkIygRPWC {
    padding: 4.5rem;
  }

  .mgukMYNBJlgOMdx {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .itvImRvCffAgvqg {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .egQECbHXKvPRlWF {
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .PGOTLGCSywROQlC {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .VubJMoNqhfQqRog {
    padding-left: 0;
    padding-right: 0;
  }

  .GMSuqNqkgrtSljp {
    font-size: 1.75rem;
  }

  .TiqsNXbZdinxnwO {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .HrvTSLRYSlMPHqF {
    padding-top: 5px;
    padding-bottom: 5px;
  }

  .BxEaDhOFFEkMUmZ {
    grid-template-columns: 0.25fr 1fr;
    display: flex;
  }

  .ragWOnACMxLlZsz {
    -webkit-text-fill-color: inherit;
    background-color: rgba(0, 0, 0, 0);
    background-clip: border-box;
    border-bottom: 1px solid #000;
    justify-content: center;
    padding: 1rem 5% 2.5rem;
    display: flex;
    position: absolute;
    overflow: auto;
  }

  .ragWOnACMxLlZsz.oCkHirLnivcEQyK {
    height: 100dvh;
    background-color: #020014;
    padding-bottom: 6.5rem;
    transition: height 0.5s;
  }

  .jmWXEVttpJtFZnv {
    text-align: center;
    padding: 0.75rem 0;
    font-size: 1.125rem;
  }

  .silcshFFVdLaVlN {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 1.125rem;
    display: flex;
  }

  .JKOfIKMCNJPqdgT {
    align-items: center;
    margin-left: 0;
    margin-right: 0;
    padding: 0.75rem 2rem 0.75rem 0;
    display: flex;
  }

  .OSQSZQWYuKvALsB {
    margin-top: 0;
    margin-bottom: 0;
    margin-right: 0;
    top: auto;
    bottom: auto;
    left: auto;
    right: 0%;
  }

  .uhqtxOTWqOVEQsl {
    position: static;
    overflow: hidden;
  }

  .GrKUHTvHBIKgvzY {
    width: auto;
    text-align: center;
    padding: 0.75rem 0;
    font-size: 16px;
  }

  .KWNFlCGMLKAPwWr {
    align-items: center;
  }

  .RNDFQpAYqefKNcf {
    padding: 0;
  }

  .QHTObwHvgXEnNbZ {
    width: 48px;
    height: 48px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-right: -0.5rem;
    padding-bottom: 0;
    padding-right: 0;
    display: flex;
  }

  .FSCEagbxbOjMhzA {
    width: 24px;
    height: 2px;
    background-color: #fefefd;
    padding-bottom: 0;
    padding-right: 0;
  }

  .gfhSGOzWrQaIrSh {
    width: 24px;
    height: 2px;
    color: #fefefd;
    background-color: #fefefd;
    justify-content: center;
    align-items: center;
    margin-top: 6px;
    margin-bottom: 6px;
    padding-bottom: 0;
    padding-right: 0;
    display: flex;
  }

  .MkWKgExBOiHQudh {
    width: 4px;
    height: 0;
    padding-bottom: 0;
    padding-right: 0;
  }

  .FLqODBJgZTVCKYx {
    width: 24px;
    height: 2px;
    background-color: #fefefd;
    padding-bottom: 0;
    padding-right: 0;
  }

  .MGGsxifyPpDAMCf {
    grid-column-gap: 1rem;
    align-items: stretch;
  }

  .crlHOvGVxuUPyyc,
  .QePGzldPlGZvEBo {
    min-height: auto;
    grid-column-gap: 20px;
    grid-template-columns: 1fr;
    grid-auto-flow: row;
  }

  .pziDSCLUCmlOkSa {
    grid-template-columns: 1fr 1fr;
  }

  .FZWpBicGblGvkkh {
    column-count: 2;
  }

  .LuOkvdCbwkJosUr {
    justify-content: flex-start;
    margin-bottom: 4.5rem;
    display: block;
  }

  .eiudoWsWWCTDxzj {
    margin-bottom: 1.5rem;
  }

  .DWdcOXVRnSYKssI {
    min-width: auto;
  }

  .FPUOeKwfBrIelGS {
    grid-row-gap: 2rem;
    grid-template-columns: 1fr 1fr 1fr;
  }

  .JXWrqNHwdUvFLpN {
    flex-direction: column-reverse;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .MAoLrkclrmGvjvb {
    margin-bottom: 2rem;
  }

  .sCxliFkgafonDMe {
    z-index: 1;
    left: -18%;
  }
}

@media screen and (max-width: 767px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1rem;
  }

  .seOWEjXzUsLnOTh {
    margin: 0.75rem;
  }

  /* .hdeaMntulNzzmcq {
    margin: 1rem;
  } */

  .ydOCqOEVdNiRLIg {
    margin: 1.5rem;
  }

  .WaJkFyOatdqEfeG {
    margin: 2.5rem;
  }

  .RXiEaSpIiuYNLUQ {
    margin: 1rem;
  }

  .nFbNvqQDHdEKQsC {
    margin: 3.5rem;
  }

  .DOlPCympuDazvaf {
    padding: 1.5rem;
  }

  .pIRNoKpkIygRPWC {
    padding: 2rem;
  }

  .mgukMYNBJlgOMdx {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .itvImRvCffAgvqg {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .egQECbHXKvPRlWF {
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .PGOTLGCSywROQlC {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .VubJMoNqhfQqRog {
    padding-left: 0;
    padding-right: 0;
  }

  .IYnoniyJNnsBTin {
    font-size: 1rem;
    line-height: 130%;
  }

  .PPbYeXPCCxARcuw {
    font-size: 1.25rem;
  }

  .NuAbkOBJvdcneuN.qXwAPHYzJUFMdHm {
    padding: 0.25rem 1rem;
  }

  .GMSuqNqkgrtSljp {
    font-size: 1.5rem;
    line-height: 1.4;
  }

  .TiqsNXbZdinxnwO {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .HrvTSLRYSlMPHqF {
    padding-top: 5px;
    padding-bottom: 5px;
  }

  .cEausngfXqdbahL {
    min-height: 4rem;
  }

  .ragWOnACMxLlZsz.oCkHirLnivcEQyK {
    padding-bottom: 6rem;
  }

  .fjtMuMuiJbEqgNy {
    grid-column-gap: 1rem;
    grid-template-columns: 10rem 10rem 10rem 10rem 10rem 10rem 10rem 10rem;
    padding-top: 1rem;
  }

  .GtMljHwECMLvcAv {
    padding: 0.75rem 1rem;
  }

  .LFCCrYgOHvHvHbZ {
    max-height: 2rem;
  }

  .MGGsxifyPpDAMCf,
  .crlHOvGVxuUPyyc,
  .QePGzldPlGZvEBo {
    grid-row-gap: 1rem;
    grid-template-columns: 1fr;
  }

  .pziDSCLUCmlOkSa {
    grid-template-columns: 1fr;
  }

  .jjwnrwGbVAsLlDD {
    padding: 1.5rem;
  }

  .FZWpBicGblGvkkh {
    column-count: 1;
  }

  .rgDuqKzOaFnmFCn {
    padding: 1.5rem;
  }

  .YTbnQgFidhrpvUH {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
  }

  .vjAUulvwfqgqpFc {
    margin-bottom: 1rem;
    margin-right: 0;
  }

  .aCZviqFPilbcIim {
    padding: 1rem 1.25rem;
  }

  .ZzPrmezcDZksYJW {
    width: 1.75rem;
  }

  .gkmeJHUMnySBrYp {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .LuOkvdCbwkJosUr {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 2rem;
  }

  .FPUOeKwfBrIelGS {
    grid-row-gap: 2.5rem;
  }

  .JXWrqNHwdUvFLpN {
    flex-direction: column-reverse;
    align-items: flex-start;
    padding-bottom: 1rem;
  }

  .SxtiOVjPMfntGza {
    grid-column-gap: 0rem;
    grid-row-gap: 1rem;
    grid-auto-flow: row;
  }

  .QhweEGLJMdtpCFK {
    margin-top: 1rem;
  }

  .sCxliFkgafonDMe {
    display: none;
    left: -33%;
  }

  .UjVwHVselCdKNFy,
  .dyigKhextoVbLen {
    grid-template-columns: 1fr;
  }

  .iCGxSfrRTJCJEFj {
    display: none;
    left: -25%;
  }
}

@media screen and (max-width: 479px) {
  h1 {
    font-size: 2rem;
  }

  .mgukMYNBJlgOMdx {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .itvImRvCffAgvqg {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .egQECbHXKvPRlWF {
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .PGOTLGCSywROQlC {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .VubJMoNqhfQqRog {
    padding-left: 0;
    padding-right: 0;
  }

  .fjtMuMuiJbEqgNy {
    justify-content: center;
  }

  .GtMljHwECMLvcAv {
    justify-content: center;
    align-items: flex-start;
  }

  .MGGsxifyPpDAMCf,
  .crlHOvGVxuUPyyc,
  .QePGzldPlGZvEBo {
    grid-template-columns: 1fr;
  }

  .HMltOhrKwhkCTgt {
    grid-row-gap: 12px;
    flex-direction: column;
    grid-template-columns: 1fr;
  }

  .FPUOeKwfBrIelGS {
    grid-row-gap: 2.5rem;
    grid-template-columns: 1fr;
  }

  .sCxliFkgafonDMe {
    left: -49%;
  }

  .iCGxSfrRTJCJEFj {
    left: -36%;
  }
}

.pHvvJlPnTysnCtC {
  z-index: 99;
  max-width: 100rem;
  flex: 1;
  position: relative;
  padding: 0px;
  padding-left: 3%;
  padding-right: 3%;
  margin: 0 auto;
}

.PGuCNMkPzyGhUtb {
  z-index: 2;
  text-align: center;
  padding: 0px;
  position: relative;
  background-color: #000000a6;
  @media (max-width: 768px) {
    padding-top: 20px;
  }
}

.lApFTyukrrHImAh {
  width: 100%;
  margin: 0 auto;
  max-width: 1600px;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  background-color: #00000046;
}

.lApFTyukrrHImAh h2 {
  color: #fff;
  text-align: center;
}

.SVqszJHjKZslDGR {
  text-align: center;
  text-transform: capitalize;
  color: #fff;
  padding-top: 5px;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 40px;
  font-weight: 700;
  line-height: 130%;
}

.qantMkxoyIngPUh {
  justify-content: center;
  align-items: center;
  align-items: center;
  align-items: stretch;
  display: flex;
  flex-direction: row;
  gap: 20px;
  padding: 0px 10px;
  margin: 0 auto;
  @media (max-width: 767px) {
    gap: 10px;
  }
}

.qVutSnVJToZzjxs {
  align-self: center;
  max-width: 100%;
  text-align: center;
  margin: 0 auto;
  padding: 10px 0px 20px 0px;
  background-color: #000000b0;
}

.qVutSnVJToZzjxs.olYkRTbgpgRAUXf {
  margin-top: 70px;
}

.ZbRWZyRYpFIOFUo {
  width: 100%;
  text-transform: uppercase;
  color: #fff;
  background: #d67d23;
  border-radius: 8px;
  border: 1px solid #fff;
  justify-content: center;
  align-items: center;
  padding: 10px 30px;
  transition: all 0.4s;
  display: flex;
  position: relative;
  overflow: hidden;
  @media (max-width: 550px) {
    text-transform: capitalize;
  }
}

.ZbRWZyRYpFIOFUo:hover {
  transform: scale(1.05) translate(0, -4px);
  box-shadow: 0 4px 6px #000;
}

.jrwJidintXYwgHK {
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding-left: 40px;
  padding-right: 40px;
  display: flex;
  position: relative;
  overflow: visible;
}

.jrwJidintXYwgHK.RxMnszoRUmYlgSZ {
  padding: 0px 10px;
  overflow: visible;
  background-color: #000000a6;
}

.jrwJidintXYwgHK.olYkRTbgpgRAUXf {
  margin-top: 70px;
}

.jMMpGCaHBqCralt {
  text-align: center;
  padding-top: 0;
  /* padding-bottom: 10px; */
}

.jMMpGCaHBqCralt.olYkRTbgpgRAUXf {
  padding-top: 0;
}

.ZTFFrvsZQPQBvHe {
  grid-column-gap: 24px;
  perspective: 2000px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  margin-top: 0;
  display: flex;
  flex-direction: column;

  margin-bottom: 10px;
}

/* .ZTFFrvsZQPQBvHe.olYkRTbgpgRAUXf {
  margin-top: 50px;
} */

.VmCVaOXmXUykDJw {
  width: 100%;
  text-align: center;
  border-radius: 8px;
  flex-direction: column;
  align-items: center;
  padding: 5px;
  transition: box-shadow 0.4s, border 0.4s;
  display: flex;
  @media (max-width: 768px) {
    text-align: justify;
  }
  @media (max-width: 550px) {
    padding: 10px;
  }
}

.RVxXzaYbLpaPWgS {
  width: 50%;
  margin: 0 auto;
}

/* .VmCVaOXmXUykDJw:hover {
  border: 1px solid #f4f0ec;
  box-shadow: 0 0 20px 10px #fff;
} */

.kIvXtrdFsUDfaVq {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.7em;
  font-weight: 600;
  line-height: 1.5;
}

.KIXtqCtAOATTKgl {
  text-align: center;
  margin-top: 5px;
  margin-bottom: 0;
  font-size: 1em;
  line-height: 130%;
  @media (max-width: 768px) {
    text-align: justify;
  }
}

.ZdTiVcsiCRgSnps {
  z-index: -1;
  min-height: 100%;
  opacity: 0.3;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  display: flex;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
  overflow: hidden;
}

.ZdTiVcsiCRgSnps.EbUxFEASdyDIoiP {
  overflow: hidden;
}

.ylBnLEmqZIDuqFo {
  width: 550px;
  height: 550px;
  filter: blur(200px);
  flex-direction: column;
  justify-content: space-between;
  display: flex;
  position: absolute;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: auto;
}

.ylBnLEmqZIDuqFo.eUXOKTCdtKxJqKt {
  top: 35vh;
  left: -16%;
}

.ylBnLEmqZIDuqFo.YtHQSQeiQpegoAo {
  top: auto;
  bottom: 40vh;
  left: auto;
  right: -16%;
}

.SsYhRcCYuOduIZO {
  z-index: 3;
  width: 425px;
  height: 425px;
  background-color: #5628fa;
  border-radius: 50%;
  position: absolute;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: auto;
}

.iSCRckEXAdePDxB {
  z-index: 1;
  width: 550px;
  height: 550px;
  background-color: #5628fa;
  border-radius: 50%;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.ZSTEUQGxYFLwQGo {
  z-index: 2;
  width: 320px;
  height: 320px;
  background-color: #5628fa;
  border-radius: 50%;
  position: absolute;
  top: auto;
  bottom: 40px;
  left: auto;
  right: 0%;
}

.cPIXIBLwdTeHMQC {
  text-align: center;
  color: #fff;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 30px;
  font-weight: 600;
  line-height: 1.2;
}

@media screen and (max-width: 991px) {
  .SVqszJHjKZslDGR {
    max-width: none;
    font-size: 35px;
  }

  .jrwJidintXYwgHK.RxMnszoRUmYlgSZ {
    padding-bottom: 15px;
    overflow: hidden;
  }

  .jMMpGCaHBqCralt {
    flex-direction: column;
    align-items: center;
    /* padding-top: 10px; */
    display: flex;
  }

  .ZTFFrvsZQPQBvHe {
    grid-column-gap: 8px;
  }

  .ZTFFrvsZQPQBvHe.olYkRTbgpgRAUXf {
    max-width: 100%;
    grid-template-columns: 1fr;
  }

  .VmCVaOXmXUykDJw {
    width: 100%;
    padding-left: 16px;
    padding-right: 16px;
  }

  .ylBnLEmqZIDuqFo.eUXOKTCdtKxJqKt {
    left: -52%;
  }

  .ylBnLEmqZIDuqFo.YtHQSQeiQpegoAo {
    right: -49%;
  }
}

@media screen and (max-width: 767px) {
  .SVqszJHjKZslDGR {
    font-size: 27px;
  }

  .ZbRWZyRYpFIOFUo {
    padding-left: 0;
    padding-right: 0;
  }

  .ZbRWZyRYpFIOFUo1 {
    padding-left: 15px;
    padding-right: 15px;
  }

  .jrwJidintXYwgHK {
    padding-left: 20px;
    padding-right: 20px;
  }

  .ZTFFrvsZQPQBvHe {
    grid-template-columns: 1fr;
  }

  /* .ZTFFrvsZQPQBvHe.olYkRTbgpgRAUXf {
    margin-top: 40px;
  } */

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

  .cPIXIBLwdTeHMQC {
    font-size: 28px;
  }
}

@media screen and (max-width: 479px) {
  .SVqszJHjKZslDGR {
    font-size: 24px;
    text-align: center;
  }

  .qantMkxoyIngPUh {
    flex-direction: column;
  }

  .qVutSnVJToZzjxs {
    align-self: stretch;
  }

  .jrwJidintXYwgHK.RxMnszoRUmYlgSZ {
    padding-bottom: 10px;
  }

  .VmCVaOXmXUykDJw {
    text-align: left;
    align-items: flex-start;
    padding: 5px;
  }

  .ZdTiVcsiCRgSnps {
    display: none;
  }

  .cPIXIBLwdTeHMQC {
    font-size: 24px;
  }
}

.KtWemujZQdGMBRo {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  @media (max-width: 768px) {
    grid-template-columns: 1fr;
  }
}

.KtWemujZQdGMBRo img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  @media (max-width: 550px) {
    height: 200px;
  }
}

.oSjbLSGELHjrpqJ {
  width: 100%;
  padding-top: 15px;
}
.QOPiySAnMIRBfHT {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  margin-bottom: 15px;
}
.yfEPsfVWHHmhtUI {
  margin-bottom: 10px;
  font-size: 24px;
  text-decoration: underline;
}
.TtABPOOeAJvNnNi {
  text-align: center;
}

.WCHVYONDUKjXVtR {
  margin-bottom: 50px;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0px 10px;

  @media (max-width: 768px) {
    padding: 0px 5px;
  }
}
.RydBTkDQTZdJHov {
  text-align: center;
  font-size: 26px;
  font-weight: 600;
  margin: 0px;
  padding: 5px 0px;

  @media (max-width: 768px) {
    text-align: left;
    font-size: 24px;
  }
}
.pzyQGSrWHKKmLni {
  padding-top: 5px;
  padding-bottom: 5px;
  text-align: center;
  @media (max-width: 768px) {
    text-align: justify;
  }
}
.tAQGbOXwgZaLilv {
  margin-bottom: 10px;
  text-align: center;

  @media (max-width: 768px) {
    text-align: justify;
  }
}
.tAQGbOXwgZaLilv1 {
  padding-left: 0;
  margin-bottom: 10px;
}
.tAQGbOXwgZaLilv li {
  gap: 0;
  text-align: center;
  list-style-type: none;

  padding-top: 2px;
  padding-bottom: 2px;
  align-items: center;
  flex-direction: column;
  @media (max-width: 768px) {
    flex-direction: column;
    gap: 0;
    text-align: justify;
  }
}

.OFvTDMAJTRbOAVI {
  background-color: #000000a6;
}

.ZCyVoPGzQZFvzeP {
  padding: 5px 0px;
  text-align: center;
  height: 500px;
  @media (max-width: 768px) {
    height: 350px;
  }
  @media (max-width: 425px) {
    height: 100%;
  }
}

.ZCyVoPGzQZFvzeP img {
  height: 100%;
  width: fit-content;
  object-fit: contain;
}

.hull-block {
  position: relative;
  height: 100vh;
  @media (max-width: 1024px) {
    height: 70vh;
  }
  @media (max-width: 768px) {
    height: 50vh;
  }
  @media (max-width: 550px) {
    height: 30vh;
  }
}

.hull-block video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.hull-block .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #00000000;
  z-index: 0;
}

.hull-block .content {
  position: relative;
  z-index: 1;
}

/* Casino-inspired container block */
.WCHVYONDUKjXVtR {
  padding: 10px;
  border-radius: 10px;

  box-shadow: 0 0 20px rgba(255, 215, 0, 0.7),
    inset 0 0 10px rgba(255, 255, 255, 0.2);
  margin-bottom: 25px;
  border: 2px solid #ffd700;
  position: relative;
  overflow: hidden;
  animation: pulseGlow 3s ease-in-out infinite;
}

/* Animated glow effect for container */
@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.7),
      inset 0 0 10px rgba(255, 255, 255, 0.2);
  }
  50% {
    box-shadow: 0 0 30px rgba(255, 215, 0, 1),
      inset 0 0 15px rgba(255, 255, 255, 0.4);
  }
  100% {
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.7),
      inset 0 0 10px rgba(255, 255, 255, 0.2);
  }
}

/* Casino-style headings */
.JkTJxAOwKveMzWs,
.RydBTkDQTZdJHov {
  font-family: "Cinzel Decorative", "Georgia", serif;
  color: #ffd700;
  font-size: 3em;
  text-shadow: 0 0 10px #ff4500, 0 0 20px #ff4500, 2px 2px 5px #000;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  z-index: 1;
}

/* Decorative text */
.pzyQGSrWHKKmLni {
  font-family: "Oswald", "Poppins", sans-serif;
  font-weight: 700;
  color: #e6e6fa;
  font-size: 1.2em;
  line-height: 1.3;
  text-shadow: 0 0 8px #ff00ff, 0 0 12px #ff00ff;
  margin: 0;
  padding: 8px 15px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.5);
  letter-spacing: 1px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: inline-block;
}

.pzyQGSrWHKKmLni:hover {
  transform: scale(1.02);
  box-shadow: 0 0 15px #ff00ff;
}

/* Centered content block */
.eyihYpSdgHtTDZF {
  text-align: center;
  position: relative;
}

/* Casino-style button */
.eyihYpSdgHtTDZF_btn a {
  display: inline-block;
  color: #fff;
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 10px;
  border: 3px solid #ff4500;
  background: linear-gradient(45deg, #c71585, #ff4500);
  box-shadow: 0 0 10px rgba(255, 69, 0, 0.8);
  transition: all 0.3s ease;
  text-transform: uppercase;
  font-family: "Bebas Neue", sans-serif;
  font-weight: bold;
  font-size: 1.1em;
  margin: 15px 0;
  position: relative;
  overflow: hidden;
}

.eyihYpSdgHtTDZF_btn a:hover {
  background: linear-gradient(45deg, #ff4500, #c71585);
  box-shadow: 0 0 20px #ff4500, 0 0 30px #c71585;
  transform: translateY(-2px);
}

.eyihYpSdgHtTDZF_btn a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: left 0.4s ease;
}

.eyihYpSdgHtTDZF_btn a:hover::before {
  left: 100%;
}

.CEBSpgsitesACEO {
  text-align: center;
}

/* List styling for casino theme */
.CEBSpgsitesACEO ul li {
  text-align: center;
  color: #00ffcc;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 1.1em;
  text-shadow: 0 0 5px #00ffcc;
  margin: 10px 0;
  padding: 5px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 5px;
  transition: background 0.3s ease;
}

.CEBSpgsitesACEO ul li:hover {
  background: rgba(0, 255, 204, 0.2);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .JkTJxAOwKveMzWs,
  .RydBTkDQTZdJHov {
    font-size: 1.5em;
    text-shadow: 0 0 8px #ff4500, 1px 1px 3px #000;
  }
  .WCHVYONDUKjXVtR {
    padding: 10px;
    margin: 10px 0;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
  }
  .pzyQGSrWHKKmLni {
    font-size: 1em;
    padding: 5px 10px;
  }
  .eyihYpSdgHtTDZF_btn a {
    padding: 10px 20px;
    font-size: 1em;
  }
}

/* Import luxurious fonts */
@import url("https://fonts.googleapis.com/css2?family=Cinzel+Decorative:wght@700&family=Oswald:wght@700&family=Bebas+Neue&family=Roboto+Condensed:wght@400&display=swap");

/* Casino-inspired footer styling */
.footer {
  background: linear-gradient(180deg, #1a0b2e 0%, #2e1a47 100%);
  padding: 15px 0;
  border-top: 3px solid #ffd700;
  box-shadow: 0 -5px 15px rgba(255, 215, 0, 0.5);
  position: relative;
  overflow: hidden;
  font-family: "Roboto Condensed", sans-serif;
  color: #e6e6fa;
}

/* Footer navigation menu */
.header-menu__footer ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}

.header-menu__footer .header-menu__item {
  margin: 10px 15px;
}

.header-menu__item-link {
  text-align: center;
  color: #ffd700;
  text-decoration: none;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.3em;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 0 0 8px #ff4500;
  transition: all 0.3s ease;
  position: relative;
  padding: 5px 10px;
}

.header-menu__item-link:hover {
  color: #fff;
  text-shadow: 0 0 12px #ff4500, 0 0 20px #ff4500;
  transform: translateY(-2px);
}

.header-menu__item-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #ff4500;
  transition: width 0.3s ease;
}

.header-menu__item-link:hover::after {
  width: 100%;
}

.footer-picture {
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 600px;
  margin: 0 auto;
  gap: 15px;
  background-color: #c7c7c78f;
  padding: 10px;
  @media (max-width: 550px) {
    flex-direction: column;
    max-width: 300px;
    gap: 5px;
  }
}

.footer-picture img {
  max-height: 60px;
  filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.7));
  transition: transform 0.3s ease, filter 0.3s ease;
}

.footer-picture img:hover {
  transform: scale(1.1);
  filter: drop-shadow(0 0 15px rgba(255, 215, 0, 1));
}

/* Payment methods section */
.footer-pay {
  text-align: center;
  margin: 20px 0;
}

.footer-pay img {
  max-height: 50px;
  filter: drop-shadow(0 0 8px #00ffcc);
  transition: transform 0.3s ease;
}

.footer-pay img:hover {
  transform: scale(1.05);
}

/* Footer copyright text */
.footer-end {
  text-align: center;
  color: #00ffcc;
  font-family: "Oswald", sans-serif;
  font-size: 1.1em;
  text-shadow: 0 0 5px #00ffcc;
  padding: 10px 0;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 5px;
  margin: 0;
}

/* Animated background effect */
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle,
    rgba(255, 215, 0, 0.2) 0%,
    transparent 70%
  );
  opacity: 0.5;
  animation: pulseBackground 5s ease-in-out infinite;
}

@keyframes pulseBackground {
  0% {
    opacity: 0.5;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.1);
  }
  100% {
    opacity: 0.5;
    transform: scale(1);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .footer {
    padding: 20px 0;
  }

  .header-menu__footer ul {
    flex-direction: column;
    align-items: center;
  }

  .header-menu__footer .header-menu__item {
    margin: 8px 0;
  }

  .header-menu__footer .header-menu__item-link {
    font-size: 1.1em;
  }

  .footer-picture img {
    max-height: 50px;
  }

  .footer-pay img {
    max-height: 40px;
  }

  .footer-end {
    font-size: 1em;
    padding: 8px 0;
  }
}
