:root {
  --bg: #1d1d1e;
  --innerBg: #2b2b31;
  --innerBlackBg: #11111d;
  --innerBlackLighterBg: #161412;

  --yellow: #ffc278;
  --purple: #8f60ff;
  --orange: #ff7d34;
  --green: #3cff73;
  --accent: #ff7d34;
  --orangeLight: #fdf0ea;
  --lightOrange: #fdf0ea;

  --textMain: #fcfdfe;
  --textP: #75767f;
  --textPLighter: #aaaab4;
  --textBtn: #151516;
  --brad: 12px;

  --button-gradient: linear-gradient(
    90deg,
    #dd6b6b 0%,
    #ffbf60 50%,
    #ff7434 100%
  );
  --button-gradient-hover: linear-gradient(
    90deg,
    #64aee7 0%,
    #12cba3 50%,
    #868bff 100%
  );

  /* --button-gradient: linear-gradient(
    90deg,
    #5B5EA3 0%,
    #64aee7 50%,
    #12cba3 100%
  );
  --button-gradient-hover: linear-gradient(
    90deg,
    #64aee7 0%,
    #12cba3 50%,
    #868bff 100%
  ); */
}

*,
*::after,
*::before {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  border: none;
}
* {
  position: relative;
}
html {
  position: relative;
  overflow-x: hidden !important;
  scroll-behavior: smooth;
}
body {
  /* overflow: hidden; */
}
@media (max-width: 968px) {
  body {
    overflow: hidden;
  }
}
body,
html {
  display: block;
  box-sizing: border-box;
  font-size: 18px;
  font-smooth: always;
  -webkit-font-smoothing: antialiased;
  background-color: var(--bg);
  color: var(--textMain);
}
h2 > * {
  display: inline-block;
  vertical-align: middle;
}
body::-webkit-scrollbar {
  width: 12px;
}
body::-webkit-scrollbar-track {
  background: transparent;
}
body::-webkit-scrollbar-thumb {
  background-color: var(--accent);
  border-radius: var(--brad);
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
ul,
li {
  padding: 0;
  list-style: none;
  marker: none;
}
.liCircle li {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
}
.liCircle li:not(:last-child) {
  margin-bottom: 16px;
}
.liCircle li > * {
  display: inline-block;
  vertical-align: middle;
}
.liCircle li::before {
  /* transform: translateY(3px); */
  display: inline-block;
  margin-right: 16px;
  font-size: 24px;
  content: 'â€¢';
  color: var(--textP);
}
.liCircleColor li::before {
  color: var(--purple);
}
.bannerRad {
  border-radius: var(--brad);
  overflow: hidden;
  aspect-ratio: 2/1;
}

a::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 1px;
  background-color: currentColor;
  bottom: -2px;
  left: 0;
  transition: all 0.4s cubic-bezier(0.075, 0.82, 0.165, 1);
}
a:hover::after {
  width: 100%;
}
a:has(img, div)::after {
  content: none;
}

h1,
h2,
h3,
h4,
h5 {
  font-weight: 400;
  font-family: 'Poppins', sans-serif;
  color: var(--m3C);
  line-height: 130%;
}
h1 {
  font-size: 84px;
  margin-bottom: 40px;
}
h2 {
  font-size: 52px;
}
h3 {
  font-size: 32px;
}
p,
a {
  font-family: 'poppins', sans-serif;
  font-weight: 500;
  color: var(--textP);
  font-size: 18px;
  position: relative;
}
p {
  font-size: 18px;
}

p,
a {
  line-height: 180%;
}
p > * {
  display: inline-block;
}
section {
  margin-bottom: 100px;
}
section h3,
section h2 {
  margin-bottom: 32px;
}
section p {
  margin-bottom: 32px;
}

.width60 {
  max-width: 60%;
}
.width50 {
  max-width: 50%;
}
.width40 {
  max-width: 40%;
}
section:not(.noWrap),
.wrapper {
  max-width: 1340px;
  margin-left: auto;
  margin-right: auto;
  height: 100%;
  width: 100%;
}

@media (max-width: 1340px) {
  section:not(.noWrap),
  .wrapper {
    max-width: 95%;
  }
}
@media (max-width: 768px) {
  section:not(.noWrap),
  .wrapper {
    max-width: 88%;
  }
  .liCircle li:not(:last-child) {
    margin-bottom: 2.5vw;
  }
  .liCircle li::before {
    margin-right: 2vw;
    font-size: 4vw;
  }
  .stars {
    width: 4vw;
    height: 4vw;
  }
  .width60 {
    max-width: 100%;
  }
  .width40 {
    max-width: 100%;
  }
  .width50 {
    max-width: 100%;
  }
  .padding {
    padding: 0 14px;
  }

  h1 {
    font-size: 42px;
    margin-bottom: 24px;
  }
  h2 {
    font-size: 32px;
  }
  h3 {
    font-size: 24px;
  }
}
