*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: "Arial", sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

ul, ol {
  list-style: none;
}

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

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
  border: none;
  outline: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

h1, h2, h3, h4, h5, h6 {
  margin-bottom: 1rem;
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: 2.5rem;
}

@media screen and (min-width: 768px) {
  h1 {
    font-size: 3rem;
  }
}
h2 {
  font-size: 2rem;
}

@media screen and (min-width: 768px) {
  h2 {
    font-size: 2.5rem;
  }
}
h3 {
  font-size: 1.75rem;
}

@media screen and (min-width: 768px) {
  h3 {
    font-size: 2rem;
  }
}
h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.6;
}

p.lead {
  font-size: 1.125rem;
  font-weight: 300;
}

a {
  color: #D1FC51;
  transition: color 0.3s ease;
}

a:hover {
  color: rgb(188.1, 226.8, 72.9);
}

ul, ol {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

small {
  font-size: 80%;
}

strong {
  font-weight: 700;
}

.btn {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  border-radius: 0.25rem;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn--sm {
  padding: 0.25rem 1rem;
  font-size: 0.875rem;
}

.btn--lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

.btn--primary {
  background-color: #D1FC51;
  color: white;
  border: none;
}

.btn--primary:hover {
  background-color: rgb(188.1, 226.8, 72.9);
}

.btn--secondary {
  background-color: #6c757d;
  color: white;
  border: none;
}

.btn--secondary:hover {
  background-color: rgb(97.2, 105.3, 112.5);
}

.btn--success {
  background-color: #28a745;
  color: white;
  border: none;
}

.btn--success:hover {
  background-color: rgb(36, 150.3, 62.1);
}

.btn--danger {
  background-color: #dc3545;
  color: white;
  border: none;
}

.btn--danger:hover {
  background-color: rgb(198, 47.7, 62.1);
}

.btn--warning {
  background-color: #ffc107;
  color: #212A2B;
  border: none;
}

.btn--warning:hover {
  background-color: rgb(229.5, 173.7, 6.3);
}

.btn--dark {
  background-color: transparent;
  color: #fff;
  border: none;
}

.btn--dark:hover {
  background-color: rgba(0, 0, 0, 0.1);
}

.btn--transparent {
  background-color: #212A2B;
  color: #212A2B;
  border: none;
}

.btn--transparent:hover {
  background-color: rgb(29.7, 37.8, 38.7);
}

.btn--outline {
  background: transparent;
  border: 1px solid currentColor;
}

.btn--outline.btn--primary {
  color: #D1FC51;
}

.btn--outline.btn--primary a {
  color: #212A2B;
}

.btn--outline.btn--primary:hover {
  background: #D1FC51;
  color: black;
}

.btn--outline.btn--secondary {
  color: #6c757d;
}

.btn--outline.btn--secondary:hover {
  background: transparent;
  color: white;
}

.btn--outline.btn--dark {
  color: #6c757d;
  border: solid 1px white;
}

.btn--outline.btn--dark:hover {
  background: #6c757d;
  color: #6c757d;
}

.btn--outline.btn--transparent {
  color: #6c757d;
}

.btn--outline.btn--transparent:hover {
  background: #212A2B;
  color: white;
}

.btn:disabled, .btn--disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.btn-group {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 0.5rem;
}

.card {
  background: white;
  border-radius: 0.25rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  overflow: hidden;
}

.card__header {
  padding: 1rem;
  border-bottom: 1px solid #dee2e6;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.card__header h3 {
  margin-bottom: 0;
}

.card__body {
  padding: 1rem;
}

.card__body p:last-child {
  margin-bottom: 0;
}

.card__footer {
  padding: 1rem;
  border-top: 1px solid #dee2e6;
  background: #F5F5F5;
}

.card__image {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}

.card--hover {
  transition: all 0.3s ease;
}

.card--hover:hover {
  transform: translateY(-5px);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.2);
}

.card--border {
  border: 1px solid #dee2e6;
  box-shadow: none;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

@media screen and (min-width: 768px) {
  .card--horizontal {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: stretch;
  }
  .card--horizontal .card__image {
    width: 40%;
    height: auto;
  }
  .card--horizontal .card__content {
    width: 60%;
  }
}
.form__group {
  margin-bottom: 1rem;
}

.form__label {
  display: block;
  margin-bottom: 0.25rem;
  font-weight: 600;
}

.form__input {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid #dee2e6;
  border-radius: 0.25rem;
  background-color: white;
  transition: all 0.3s ease;
}

.form__input:focus {
  border-color: #D1FC51;
  box-shadow: 0 0 0 2px rgba(209, 252, 81, 0.25);
}

.form__input--error {
  border-color: #dc3545;
}

.form__input--error:focus {
  box-shadow: 0 0 0 2px rgba(220, 53, 69, 0.25);
}

.form__input::-moz-placeholder {
  color: rgb(137.4, 144.6, 151);
}

.form__input::placeholder {
  color: rgb(137.4, 144.6, 151);
}

.form__error {
  color: #dc3545;
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

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

.form__select select {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid #dee2e6;
  border-radius: 0.25rem;
  background-color: white;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.form__select select:focus {
  border-color: #D1FC51;
}

.form__select::after {
  content: "";
  position: absolute;
  right: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #6c757d;
  pointer-events: none;
}

.form__checkbox, .form__radio {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  cursor: pointer;
}

.form__checkbox input, .form__radio input {
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.form__textarea {
  width: 100%;
  min-height: 100px;
  padding: 0.5rem;
  border: 1px solid #dee2e6;
  border-radius: 0.25rem;
  resize: vertical;
  transition: all 0.3s ease;
}

.form__textarea:focus {
  border-color: #D1FC51;
}

.form__inline-group {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-end;
  gap: 1rem;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1rem 0;
  z-index: 1000;
  transition: transform 0.3s ease;
}

.header.scroll-down {
  transform: translateY(-100%);
}

.header.scroll-up {
  transform: translateY(0);
}

.header__container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  background-color: #212A2B;
  border-radius: 10px;
  height: 70px;
  position: relative;
}

@media (max-width: 768px) {
  .header__container {
    margin: 0 1rem;
    justify-content: flex-start;
    gap: 0.5rem;
  }
}
.header__logo {
  z-index: 2;
}

@media (max-width: 768px) {
  .header__logo__logo {
    margin-right: 0;
  }
}
.header__logo img {
  height: 35px;
  width: auto;
}

.header__nav {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
}

@media (max-width: 768px) {
  .header__nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(15, 20, 21, 0.98);
    padding: 120px 1rem 1rem;
    -webkit-backdrop-filter: blur(8px);
            backdrop-filter: blur(8px);
  }
  .header__nav.is-active {
    display: flex;
  }
}
.header__nav-content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  width: 100%;
}

@media (max-width: 768px) {
  .header__nav-content {
    flex-direction: column;
    width: 100%;
    text-align: center;
    transform: translateY(-20px);
    opacity: 0;
    transition: all 0.3s ease;
  }
  .is-active .header__nav-content {
    transform: translateY(0);
    opacity: 1;
  }
}
.header__links {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
}

@media (max-width: 768px) {
  .header__links {
    flex-direction: column;
    width: 100%;
  }
}
.header__link {
  color: white;
  font-weight: 500;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

.header__link:hover, .header__link.is-active {
  color: #D1FC51;
}

@media (max-width: 768px) {
  .header__link {
    font-size: 1.5rem;
    padding: 1rem;
  }
}
.header__buttons {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

@media (max-width: 768px) {
  .header__buttons {
    flex-direction: column;
    width: 100%;
    margin-top: 2rem;
  }
  .header__buttons .btn {
    width: 100%;
    text-align: center;
    padding: 1rem;
  }
}
.header__actions {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  gap: 1rem;
  z-index: 2;
}

@media (max-width: 768px) {
  .header__actions {
    display: none;
  }
}
.header__menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 2;
  transition: transform 0.3s ease;
}

@media (max-width: 768px) {
  .header__menu-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 45px;
  }
  .header__menu-toggle img {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
  }
}
.header__menu-toggle.is-active img {
  transform: rotate(90deg);
}

.header__menu-toggle:hover {
  transform: scale(1.1);
}

.header__menu-toggle:active {
  transform: scale(0.95);
}

.header__mobile-join {
  display: none;
  text-decoration: none;
  color: #000000;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  z-index: 2;
  background-color: #D1FC51;
}

@media (max-width: 768px) {
  .header__mobile-join {
    display: block;
    margin-right: auto;
    margin-left: 1rem;
  }
}
.header__mobile-join:hover {
  opacity: 0.9;
}

.header__mobile-join:active {
  transform: scale(0.95);
}

body.menu-open {
  overflow: hidden;
}

.footer {
  background-color: #000000;
  color: white;
  padding: 2rem 1rem;
}

.footer__container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (min-width: 1024px) {
  .footer__container {
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
}
.footer__newsletter {
  width: 100%;
  max-width: 500px;
  margin-bottom: 2rem;
  order: 1;
}

@media (min-width: 1024px) {
  .footer__newsletter {
    margin-bottom: 0;
    margin-right: 2rem;
    order: 0;
  }
}
.footer__newsletter h3 {
  font-size: 1rem;
  margin-bottom: 1rem;
  text-align: left;
}

.footer__newsletter form {
  display: flex;
}

@media (max-width: 768px) {
  .footer__newsletter form {
    flex-direction: row;
  }
}
.footer__newsletter input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-top-left-radius: 15px;
  border-bottom-left-radius: 15px;
  background: #F4F6F6;
  color: #344346;
}

.footer__newsletter input::-moz-placeholder {
  color: #344346;
}

.footer__newsletter input::placeholder {
  color: #344346;
}

@media (max-width: 768px) {
  .footer__newsletter input {
    flex-direction: column;
  }
}
.footer__newsletter button {
  padding: 0.75rem 1.5rem;
  background: #6C2BD9;
  color: white;
  border: none;
  border-top-right-radius: 15px;
  border-bottom-right-radius: 15px;
  cursor: pointer;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .footer__newsletter button {
    flex-direction: column;
  }
}
.footer__newsletter button:hover {
  background: rgb(97.2, 38.7, 195.3);
}

.footer__logo {
  margin: 2rem 0;
}

.footer__logo img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

@media (max-width: 768px) {
  .footer__logo {
    order: 2;
  }
}
.footer__nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.footer__nav a {
  color: white;
  text-decoration: none;
  font-size: 1rem;
  transition: opacity 0.3s ease;
}

.footer__nav a:hover {
  opacity: 0.7;
}

@media (max-width: 768px) {
  .footer__nav {
    order: 3;
  }
}
@media (min-width: 1024px) {
  .footer__nav {
    flex-direction: row;
    gap: 2rem;
  }
}
@media (max-width: 768px) {
  .footer {
    background-color: #0F1415;
    padding: 24px 20px;
    display: flex;
  }
  .footer__container {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer__newsletter {
    width: 100%;
    margin-bottom: 32px;
    order: 1;
  }
  .footer__newsletter h3 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 16px;
  }
  .footer__newsletter form {
    display: flex;
    gap: 8px;
    background: white;
    border-radius: 14px;
  }
  .footer__newsletter input {
    flex: 1;
    padding: 12px;
    border: none;
    background: transparent;
    color: #333;
    font-size: 14px;
    border-radius: 0;
  }
  .footer__newsletter input::-moz-placeholder {
    color: #666;
  }
  .footer__newsletter input::placeholder {
    color: #666;
  }
  .footer__newsletter input:focus {
    outline: none;
  }
  .footer__newsletter button {
    padding: 12px 20px;
    background: #7B3FEF;
    border: none;
    border-top-right-radius: 14px;
    border-bottom-right-radius: 14px;
    color: white;
    font-weight: 500;
    font-size: 14px;
    white-space: nowrap;
  }
  .footer__newsletter button:hover {
    opacity: 0.9;
  }
  .footer__logo {
    margin: 32px 0;
    order: 2;
  }
  .footer__logo img {
    width: 80px;
    height: 80px;
  }
  .footer__nav {
    order: 3;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    align-items: flex-start;
  }
  .footer__nav a {
    color: white;
    text-decoration: none;
    font-size: 14px;
  }
  .footer__nav a:hover {
    opacity: 0.8;
  }
}
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -1rem;
}

.row--center {
  align-items: center;
}

.row--start {
  align-items: flex-start;
}

.row--end {
  align-items: flex-end;
}

.row--justify-center {
  justify-content: center;
}

.row--justify-between {
  justify-content: space-between;
}

.row--justify-around {
  justify-content: space-around;
}

.col-1 {
  width: 8.3333333333%;
  padding: 0 1rem;
}

.col-2 {
  width: 16.6666666667%;
  padding: 0 1rem;
}

.col-3 {
  width: 25%;
  padding: 0 1rem;
}

.col-4 {
  width: 33.3333333333%;
  padding: 0 1rem;
}

.col-5 {
  width: 41.6666666667%;
  padding: 0 1rem;
}

.col-6 {
  width: 50%;
  padding: 0 1rem;
}

.col-7 {
  width: 58.3333333333%;
  padding: 0 1rem;
}

.col-8 {
  width: 66.6666666667%;
  padding: 0 1rem;
}

.col-9 {
  width: 75%;
  padding: 0 1rem;
}

.col-10 {
  width: 83.3333333333%;
  padding: 0 1rem;
}

.col-11 {
  width: 91.6666666667%;
  padding: 0 1rem;
}

.col-12 {
  width: 100%;
  padding: 0 1rem;
}

@media (min-width: 576px) {
  .col-sm-1 {
    width: 8.3333333333%;
    padding: 0 1rem;
  }
  .col-sm-2 {
    width: 16.6666666667%;
    padding: 0 1rem;
  }
  .col-sm-3 {
    width: 25%;
    padding: 0 1rem;
  }
  .col-sm-4 {
    width: 33.3333333333%;
    padding: 0 1rem;
  }
  .col-sm-5 {
    width: 41.6666666667%;
    padding: 0 1rem;
  }
  .col-sm-6 {
    width: 50%;
    padding: 0 1rem;
  }
  .col-sm-7 {
    width: 58.3333333333%;
    padding: 0 1rem;
  }
  .col-sm-8 {
    width: 66.6666666667%;
    padding: 0 1rem;
  }
  .col-sm-9 {
    width: 75%;
    padding: 0 1rem;
  }
  .col-sm-10 {
    width: 83.3333333333%;
    padding: 0 1rem;
  }
  .col-sm-11 {
    width: 91.6666666667%;
    padding: 0 1rem;
  }
  .col-sm-12 {
    width: 100%;
    padding: 0 1rem;
  }
}
@media (min-width: 768px) {
  .col-md-1 {
    width: 8.3333333333%;
    padding: 0 1rem;
  }
  .col-md-2 {
    width: 16.6666666667%;
    padding: 0 1rem;
  }
  .col-md-3 {
    width: 25%;
    padding: 0 1rem;
  }
  .col-md-4 {
    width: 33.3333333333%;
    padding: 0 1rem;
  }
  .col-md-5 {
    width: 41.6666666667%;
    padding: 0 1rem;
  }
  .col-md-6 {
    width: 50%;
    padding: 0 1rem;
  }
  .col-md-7 {
    width: 58.3333333333%;
    padding: 0 1rem;
  }
  .col-md-8 {
    width: 66.6666666667%;
    padding: 0 1rem;
  }
  .col-md-9 {
    width: 75%;
    padding: 0 1rem;
  }
  .col-md-10 {
    width: 83.3333333333%;
    padding: 0 1rem;
  }
  .col-md-11 {
    width: 91.6666666667%;
    padding: 0 1rem;
  }
  .col-md-12 {
    width: 100%;
    padding: 0 1rem;
  }
}
@media (min-width: 992px) {
  .col-lg-1 {
    width: 8.3333333333%;
    padding: 0 1rem;
  }
  .col-lg-2 {
    width: 16.6666666667%;
    padding: 0 1rem;
  }
  .col-lg-3 {
    width: 25%;
    padding: 0 1rem;
  }
  .col-lg-4 {
    width: 33.3333333333%;
    padding: 0 1rem;
  }
  .col-lg-5 {
    width: 41.6666666667%;
    padding: 0 1rem;
  }
  .col-lg-6 {
    width: 50%;
    padding: 0 1rem;
  }
  .col-lg-7 {
    width: 58.3333333333%;
    padding: 0 1rem;
  }
  .col-lg-8 {
    width: 66.6666666667%;
    padding: 0 1rem;
  }
  .col-lg-9 {
    width: 75%;
    padding: 0 1rem;
  }
  .col-lg-10 {
    width: 83.3333333333%;
    padding: 0 1rem;
  }
  .col-lg-11 {
    width: 91.6666666667%;
    padding: 0 1rem;
  }
  .col-lg-12 {
    width: 100%;
    padding: 0 1rem;
  }
}
@media (min-width: 1200px) {
  .col-xl-1 {
    width: 8.3333333333%;
    padding: 0 1rem;
  }
  .col-xl-2 {
    width: 16.6666666667%;
    padding: 0 1rem;
  }
  .col-xl-3 {
    width: 25%;
    padding: 0 1rem;
  }
  .col-xl-4 {
    width: 33.3333333333%;
    padding: 0 1rem;
  }
  .col-xl-5 {
    width: 41.6666666667%;
    padding: 0 1rem;
  }
  .col-xl-6 {
    width: 50%;
    padding: 0 1rem;
  }
  .col-xl-7 {
    width: 58.3333333333%;
    padding: 0 1rem;
  }
  .col-xl-8 {
    width: 66.6666666667%;
    padding: 0 1rem;
  }
  .col-xl-9 {
    width: 75%;
    padding: 0 1rem;
  }
  .col-xl-10 {
    width: 83.3333333333%;
    padding: 0 1rem;
  }
  .col-xl-11 {
    width: 91.6666666667%;
    padding: 0 1rem;
  }
  .col-xl-12 {
    width: 100%;
    padding: 0 1rem;
  }
}
.grid {
  display: grid;
  gap: 1rem;
}

.grid--2 {
  grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 768px) {
  .grid--2 {
    grid-template-columns: 1fr;
  }
}
.grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 992px) {
  .grid--3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .grid--3 {
    grid-template-columns: 1fr;
  }
}
.grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 992px) {
  .grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .grid--4 {
    grid-template-columns: 1fr;
  }
}
.grid--auto-fit {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background-color: #212A2B;
}

@media (max-width: 768px) {
  .hero {
    height: 457px;
    min-height: 457px !important;
  }
}
.hero__container {
  position: relative;
  width: 100%;
  min-height: 1300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 768px) {
  .hero__container {
    min-height: 700px;
    background: #0f1515;
  }
}
.hero__image-wrapper {
  position: absolute;
  inset: 0;
}

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

@media (max-width: 768px) {
  .hero__image {
    padding-top: 80px;
    height: 65%;
  }
}
.ticker-container {
  background: linear-gradient(90deg, #000000 0%, #1a1a1a 100%);
  padding: 1rem 0;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.ticker {
  position: relative;
  overflow: hidden;
}

.ticker__wrapper {
  display: flex;
  animation: ticker 30s linear infinite;
}

.ticker__wrapper:hover {
  animation-play-state: paused;
}

.ticker__item {
  flex-shrink: 0;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

@media (max-width: 768px) {
  .ticker__item img {
    width: 80px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .ticker__item img {
    width: 100px;
  }
}
@media (min-width: 1025px) {
  .ticker__item img {
    width: 120px;
  }
}
@keyframes ticker {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@media (max-width: 768px) {
  .ticker__wrapper {
    animation-duration: 20s;
  }
}
@media (min-width: 1025px) {
  .ticker__wrapper {
    animation-duration: 40s;
  }
}
@media (prefers-reduced-motion: reduce) {
  .ticker__wrapper {
    animation: none;
    justify-content: space-around;
  }
}
.features {
  position: relative;
  padding: 2rem 0;
  overflow: hidden;
  background-color: #F5F5F5;
  border-radius: 15px;
}

.features__container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.feature-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-radius: 0.25rem;
  overflow: hidden;
  position: relative;
}

.feature-card__content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 1.5rem;
  text-align: center;
}

.feature-card__title {
  font-size: 1.5rem;
  color: #000000;
  margin: 0;
}

.feature-card__description1 {
  color: black;
  margin: 0;
}

.feature-card__description2 {
  color: white;
  margin: 0;
}

.feature-card__image {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.feature-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 768px) {
  .feature-card__image img {
    -o-object-fit: contain;
       object-fit: contain;
  }
}
.feature-card__icons {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  gap: 1rem;
}

.feature-card__icons img {
  width: 32px;
  height: 32px;
  filter: brightness(0) invert(1);
  opacity: 0.8;
}

@media screen and (min-width: 768px) {
  .feature-card {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
    gap: 2rem;
  }
  .feature-card__content, .feature-card__image {
    flex: 1;
  }
  .feature-card__content {
    text-align: left;
    padding: 2rem;
  }
  .feature-card__image {
    height: auto;
  }
  .feature-card__title {
    font-size: 1.75rem;
  }
  .feature-card--reverse {
    flex-direction: row-reverse;
  }
}
@media screen and (min-width: 992px) {
  .feature-card__title {
    font-size: 2rem;
  }
  .feature-card__content {
    padding: 3rem;
  }
}
.feature-card--highlight {
  background: rgba(139, 92, 246, 0.05);
  border: 1px solid rgba(139, 92, 246, 0.1);
}

.feature-card--highlight .feature-card__title {
  color: white;
}

.blur-effect {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.3;
  z-index: -1;
}

.blur-effect--primary {
  background: #000000;
}

.blur-effect--purple {
  background: #8B5CF6;
}

@media screen and (min-width: 768px) {
  .blur-effect {
    opacity: 0.2;
  }
}
.desktop-unete {
  display: none;
}

@media screen and (min-width: 768px) {
  .desktop-unete {
    display: inline-block;
    color: black !important;
  }
}
.mobile-unete {
  display: inline-block;
  width: 100%;
  margin-top: 1rem;
  color: black !important;
}

@media screen and (min-width: 768px) {
  .mobile-unete {
    display: none;
  }
}
.talent-search {
  position: relative;
  padding: 2rem 0;
  overflow: hidden;
  background-color: #2F3323;
  height: 100%;
  border-radius: 15px;
}

@media (max-width: 768px) {
  .talent-search {
    background-color: #0F1415;
  }
  .talent-search .feature-card__content {
    order: 1;
  }
  .talent-search .feature-card__image {
    order: 2;
  }
  .talent-search .feature-card div:last-child {
    order: 3;
    padding: 0 1rem;
  }
}
.talent-search__container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.talent-search__container .feature-card .feature-card__title {
  color: white;
}

.feature-card__image {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.feature-card__image .desktop-image,
.feature-card__image .mobile-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.feature-card__image .mobile-image {
  display: none;
}

@media (max-width: 768px) {
  .feature-card__image .desktop-image {
    display: none;
  }
  .feature-card__image .mobile-image {
    display: block;
  }
}
.profiles {
  padding: 6rem 0;
  background-color: #f8f9fa;
}

.profiles__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.profiles__header {
  text-align: center;
  margin-bottom: 3rem;
}

.profiles .profiles-swiper {
  padding: 1rem 2rem 3rem;
}

.profiles .profiles-swiper .swiper-slide {
  height: auto;
}

.profiles .profiles-swiper__next, .profiles .profiles-swiper__prev {
  color: #222;
}

.profiles .profiles-swiper__next::after, .profiles .profiles-swiper__prev::after {
  font-size: 1.5rem;
}

.profiles .profiles-swiper__next:hover, .profiles .profiles-swiper__prev:hover {
  color: #007bff;
}

.profiles .profiles-swiper__pagination {
  bottom: 0;
}

.profiles .profiles-swiper__pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: #ccc;
  opacity: 1;
}

.profiles .profiles-swiper__pagination .swiper-pagination-bullet-active {
  background: #007bff;
}

@media (max-width: 576px) {
  .profiles .profiles-swiper {
    padding: 1rem 1rem 2.5rem;
  }
  .profiles .profiles-swiper__next, .profiles .profiles-swiper__prev {
    display: none;
  }
}
.profile-card {
  background: rgb(249, 251, 251);
  background: linear-gradient(0deg, rgb(249, 251, 251) 12%, rgb(217, 217, 217) 98%);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  padding: 10px;
}

.profile-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.profile-card__image {
  position: relative;
  padding-top: 75%;
  overflow: hidden;
  background: #f5f5f5;
  border-radius: 15px;
}

.profile-card__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
  border-radius: 15px;
}

.profile-card__image:hover img {
  transform: scale(1.05);
}

.profile-card__content {
  padding: 1.75rem;
  text-align: left;
}

.profile-card__name {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #222;
}

.profile-card__role {
  color: #666;
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
}

.profile-card__tags {
  display: flex;
  justify-content: left;
  flex-wrap: wrap;
  gap: 0.625rem;
}

.profile-card__tags .tag {
  background: #f3f4f6;
  padding: 0.375rem 0.875rem;
  border-radius: 20px;
  font-size: 0.875rem;
  color: #444;
  transition: all 0.2s ease;
}

.profile-card__tags .tag:hover {
  background: #e5e7eb;
  color: #222;
}

@media (max-width: 1024px) {
  .profiles {
    padding: 5rem 0;
  }
  .profiles__container {
    padding: 0 1.5rem;
  }
  .profile-card__content {
    padding: 1.5rem;
  }
}
@media (max-width: 768px) {
  .profiles {
    padding: 4rem 0;
  }
  .profiles__container {
    padding: 0 1rem;
  }
  .profiles__header {
    margin-bottom: 2rem;
  }
  .profiles__header .section-title {
    font-size: 1.75rem;
    line-height: 1.3;
  }
  .profiles__header .section-subtitle {
    font-size: 1rem;
    line-height: 1.5;
  }
  .profile-card__content {
    padding: 1.25rem;
  }
  .profile-card__name {
    font-size: 1.125rem;
  }
  .profile-card__role {
    font-size: 0.875rem;
    margin-bottom: 1rem;
  }
  .profile-card__tags {
    gap: 0.5rem;
  }
  .profile-card__tags .tag {
    padding: 0.25rem 0.75rem;
    font-size: 0.8125rem;
  }
}
.about-section {
  padding: 6rem 0;
}

.about-section__title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  text-align: center;
}

.about-section__content {
  max-width: 800px;
  margin: 0 auto;
}

.about-section__content p {
  font-size: 1.125rem;
  line-height: 1.7;
  color: #4a5568;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.success-stories {
  padding: 5rem 0;
  background-color: #F5F5F5;
  margin-top: 4rem;
  position: relative;
  overflow: hidden;
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.8) 0%, #F5F5F5 100%);
}

.success-stories:before {
  content: "";
  position: absolute;
  top: -50px;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #F5F5F5 100%);
  z-index: 1;
}

.success-stories__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 2;
}

.success-stories__header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
  animation: fadeIn 0.8s ease-out;
}

.success-stories__header .section-title {
  font-size: 2.25rem;
  margin-bottom: 1rem;
  color: #212A2B;
  line-height: 1.2;
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.success-stories__header .section-title:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 30%;
  right: 30%;
  height: 3px;
  background: #D1FC51;
  border-radius: 3px;
}

@media (max-width: 576px) {
  .success-stories__header .section-title {
    font-size: 1.75rem;
  }
}
.success-stories__header .section-subtitle {
  font-size: 1.125rem;
  color: #6c757d;
  max-width: 600px;
  margin: 1rem auto 0;
  line-height: 1.6;
}

@media (max-width: 576px) {
  .success-stories__header .section-subtitle {
    font-size: 1rem;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.success-stories .testimonials-swiper {
  padding: 1.5rem 2.5rem 5rem;
  max-width: 1200px;
  margin: 0 auto;
  overflow: visible;
  position: relative;
}

.success-stories .testimonials-swiper.swiper-container-loop {
  overflow: hidden;
}

.success-stories .testimonials-swiper .swiper-slide {
  transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.5s ease;
  opacity: 1;
  transform: scale(1.03);
  filter: blur(0);
}

.success-stories .testimonials-swiper .swiper-slide-active {
  opacity: 1;
  transform: scale(1.03);
  filter: blur(0);
  z-index: 2;
}

.success-stories .testimonials-swiper .swiper-slide-duplicate {
  pointer-events: auto;
}

.success-stories .testimonials-swiper .swiper-wrapper {
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}

.success-stories .testimonials-swiper .swiper-slide {
  height: auto;
  flex-shrink: 0;
  transition-property: transform;
  display: flex;
}

.success-stories .testimonials-swiper__next, .success-stories .testimonials-swiper__prev {
  color: #212A2B;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.success-stories .testimonials-swiper__next::after, .success-stories .testimonials-swiper__prev::after {
  font-size: 1.6rem;
}

.success-stories .testimonials-swiper__next:hover, .success-stories .testimonials-swiper__prev:hover {
  color: #D1FC51;
  background-color: #FFFFFF;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15), 0 0 0 2px rgba(209, 252, 81, 0.2);
  transform: translateY(-50%) scale(1.05);
}

@media (max-width: 576px) {
  .success-stories .testimonials-swiper__next, .success-stories .testimonials-swiper__prev {
    display: flex;
  }
}
.success-stories .testimonials-swiper__next {
  right: 10px;
}

.success-stories .testimonials-swiper__prev {
  left: 10px;
}

.success-stories .testimonials-swiper__pagination {
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
  display: none;
  justify-content: center;
  gap: 10px;
  padding-bottom: 5px;
}

.success-stories .testimonials-swiper__pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #6c757d;
  opacity: 0.4;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.success-stories .testimonials-swiper__pagination .swiper-pagination-bullet-active {
  background: #D1FC51;
  opacity: 1;
  transform: scale(1.4);
  box-shadow: 0 0 0 2px rgba(209, 252, 81, 0.3), 0 2px 5px rgba(0, 0, 0, 0.15);
}

@media (max-width: 576px) {
  .success-stories .testimonials-swiper {
    padding: 1rem 1rem 2.5rem;
  }
}
.quote-card {
  width: 100%;
  height: 100%;
  padding: 2rem;
  background: #FFFFFF;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12), 0 4px 8px rgba(0, 0, 0, 0.06);
  transition: all 0.4s ease;
  margin: 0.5rem 0;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.quote-card:hover {
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15), 0 5px 15px rgba(0, 0, 0, 0.08);
  transform: translateY(-8px);
  border-color: rgba(209, 252, 81, 0.1);
}

.quote-card__rating {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.quote-card__rating .star {
  color: #ffc107;
  font-size: 1.625rem;
  line-height: 1;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.quote-card__rating img.rating-star {
  width: 32px;
  height: 32px;
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.2));
  transition: all 0.3s ease;
  animation: starPulse 3s infinite alternate;
}

@keyframes starPulse {
  0% {
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.2));
  }
  100% {
    filter: drop-shadow(0 4px 12px rgba(209, 252, 81, 0.7));
  }
}
.quote-card__rating img.rating-star:hover {
  transform: scale(1.2) rotate(5deg);
}

.quote-card__text {
  text-align: center;
  font-size: 1.25rem;
  line-height: 1.6;
  color: #212A2B;
  margin-bottom: 2rem;
  font-style: italic;
  position: relative;
  flex-grow: 1;
  letter-spacing: 0.01em;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.8);
}

.quote-card__text::before {
  content: '"';
  position: absolute;
  left: -20px;
  top: -20px;
  font-size: 4.375rem;
  color: #D1FC51;
  opacity: 0.25;
  font-family: serif;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.quote-card__text::after {
  content: '"';
  position: absolute;
  right: -20px;
  bottom: -40px;
  font-size: 4.375rem;
  color: #D1FC51;
  opacity: 0.25;
  font-family: serif;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.quote-card__author {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: auto;
  position: relative;
  padding-top: 1rem;
}

.quote-card__author:before {
  content: "";
  position: absolute;
  top: 0;
  left: 20%;
  right: 20%;
  height: 2px;
  background: linear-gradient(to right, rgba(209, 252, 81, 0), rgba(209, 252, 81, 0.3), rgba(209, 252, 81, 0));
  border-radius: 2px;
}

.quote-card__author img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  border: 4px solid #FFFFFF;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(209, 252, 81, 0.1);
  transition: all 0.3s ease;
}

.quote-card__author img:hover {
  transform: scale(1.08) rotate(3deg);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2), 0 0 0 2px rgba(209, 252, 81, 0.2);
}

.quote-card__author .author-info {
  text-align: left;
}

.quote-card__author .author-info h4 {
  margin: 0;
  font-size: 1.25rem;
  color: #212A2B;
  font-weight: 700;
  margin-bottom: 5px;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.8);
}

.quote-card__author .author-info p {
  margin: 0;
  font-size: 0.9375rem;
  color: #212A2B;
  font-style: italic;
  font-weight: 500;
}

@media (max-width: 576px) {
  .quote-card {
    padding: 1.5rem;
    min-height: 340px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .quote-card__rating .star {
    font-size: 1.375rem;
  }
  .quote-card__rating img.rating-star {
    width: 26px;
    height: 26px;
  }
  .quote-card__text {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
  }
  .quote-card__text::before, .quote-card__text::after {
    font-size: 2.25rem;
  }
  .quote-card__author {
    padding-top: 0.5rem;
  }
  .quote-card__author img {
    width: 56px;
    height: 56px;
    border-width: 3px;
  }
  .quote-card__author .author-info h4 {
    font-size: 1.125rem;
    color: black;
  }
  .quote-card__author .author-info p {
    font-size: 0.875rem;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(209, 252, 81, 0.7);
  }
  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 10px rgba(209, 252, 81, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(209, 252, 81, 0);
  }
}
body.subscription-success-page {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  background-color: #F5F5F5;
  color: #333333;
  min-height: 100vh;
}

.subscription-success {
  display: flex;
  min-height: 100vh;
  overflow: hidden;
}

.subscription-success__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  text-align: center;
  position: relative;
}

.subscription-success .success-card {
  background: #FFFFFF;
  border-radius: 16px;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  padding: 1.5rem 2rem;
  max-width: 500px;
  width: 100%;
  position: relative;
  z-index: 2;
  animation: fadeInUp 0.8s ease-out;
}

.subscription-success .success-icon {
  width: 80px;
  height: 80px;
  background-color: #D1FC51;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 1.5rem;
  animation: pulse 2s infinite;
}

.subscription-success .success-icon svg {
  color: #212A2B;
  width: 40px;
  height: 40px;
}

.subscription-success .success-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #212A2B;
}

.subscription-success .success-message {
  font-size: 1.1rem;
  line-height: 1.5;
  margin-bottom: 2rem;
  color: #666;
}

.subscription-success .success-details {
  background-color: rgba(209, 252, 81, 0.2);
  border-radius: 0.25rem;
  padding: 1rem;
  margin-bottom: 2rem;
}

.subscription-success .success-details p {
  margin: 0.5rem 0;
  font-size: 0.95rem;
}

.subscription-success .btn {
  display: inline-block;
  background-color: #D1FC51;
  color: #212A2B;
  font-weight: 600;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  text-align: center;
  margin: 0.5rem;
}

.subscription-success .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.subscription-success .btn--secondary {
  background-color: transparent;
  border: 2px solid #D1FC51;
}

.subscription-success .decoration {
  position: absolute;
  border-radius: 50%;
  z-index: 1;
}

.subscription-success .decoration--1 {
  width: 200px;
  height: 200px;
  background-color: rgba(209, 252, 81, 0.3);
  top: 10%;
  right: -50px;
}

.subscription-success .decoration--2 {
  width: 150px;
  height: 150px;
  background-color: rgba(93, 63, 211, 0.2);
  bottom: 10%;
  left: -50px;
}

@media (max-width: 767.98px) {
  .subscription-success__content {
    padding: 1.5rem;
  }
  .subscription-success .success-card {
    padding: 1.5rem 1rem;
  }
  .subscription-success .success-title {
    font-size: 1.8rem;
  }
}
