/*
 * fairplay Global Styles
 * Dark premium sportsbook theme
 *
 * 1. Global / Utilities
 * 2. Header
 * 3. Mobile Menu
 * 4. Hero Block
 * 5. What Is Block
 * 6. Journey Block
 * 7. Features Block
 * 8. FAQ Block
 * 9. CTA Block
 * 10. Payment Block
 * 11. Footer Block
 * 12. WhatsApp Sticky
 * 13. Buttons
 * 14. Author Block
 */

/* ========================================
   1. Global / Utilities
   ======================================== */

html {
  scroll-behavior: smooth;
}

body {
  color: var(--color-white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--color-white);
}

.glass-card {
  background: rgba(50, 57, 98, 0.4);
  backdrop-filter: blur(1em);
  -webkit-backdrop-filter: blur(1em);
  border: 0.0625em solid rgba(255, 255, 255, 0.08);
  border-radius: var(--border-radius--large);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.glass-card:hover {
  transform: translateY(-0.25em);
  box-shadow: 0 1em 2.5em rgba(9, 24, 70, 0.4);
}

/* ========================================
   2. Header (Sticky)
   ======================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-card-dark);
  backdrop-filter: blur(1em);
  -webkit-backdrop-filter: blur(1em);
  border-bottom: 0.0625em solid rgba(255, 255, 255, 0.06);
  transition: background 0.3s ease;
}

.nav_container {
  padding: 0 var(--padding-global--padding-global);
}

.nav_content {
  max-width: var(--container--large);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

.site-branding {
  flex-shrink: 0;
}

.site-branding img,
.site-branding svg {
  height: 2em;
  width: auto;
}

.custom-logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav_menu-list {
  display: flex;
  align-items: center;
  gap: var(--column-gap--medium);
}

.main-navigation ul {
  display: flex;
  gap: 1.5em;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

.main-navigation a {
  color: var(--color-light);
  text-decoration: none;
  font-size: var(--font-size--small);
  font-weight: var(--font-weight--medium);
  transition: color 0.2s ease;
  display: flex;
  align-items: center;
  gap: 0.25em;
}

.main-navigation a:hover {
  color: var(--color-secondary);
}

.nav_cta-btn-wrapper .btn-theme {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  background: var(--button-gradient);
  color: var(--color-black);
  padding: 0.625em 1.5em;
  border-radius: 2em;
  font-weight: var(--font-weight--semibold);
  font-size: var(--font-size--small);
  text-decoration: none;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.nav_cta-btn-wrapper .btn-theme:hover {
  transform: translateY(-0.125em);
  box-shadow: 0 0.5em 1.5em rgba(213, 254, 6, 0.3);
}

.ods-burger {
  display: none;
  cursor: pointer;
}

.ods-burger svg {
  width: 1.5em;
  height: 1.5em;
}

.ods-burger path {
  fill: var(--color-white);
}

a {
  transition: all 0.4s ease;
}

.btn-theme,
.wa-button a {
  display: inline-block;
  padding: 0.75em 2em;
  border-radius: var(--border-radius--small);
  background-color: var(--color-secondary);
  color: var(--color-primary);
  font-weight: 600;
  border: 1px solid var(--color-secondary);
  text-decoration: none;
}

.btn-theme:hover,
.wa-button a:hover {
  background-color: transparent;
  color: var(--color-secondary);
}

@media screen and (max-width: 991px) {
  .main-navigation {
    display: none;
  }
  .ods-burger {
    display: flex;
    align-items: center;
  }
}

/* ========================================
   3. Mobile Menu
   ======================================== */

.ods-mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-mobile-menu);
  z-index: 200;
  transform: translateX(100%);
  transition: transform 0.35s ease;
}

.ods-mobile-menu.is--active {
  transform: translateX(0);
}

.ods-mobile-menu-items {
  padding: 2em var(--padding-global--padding-global);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.ods-mobile-menu-close {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 2em;
  cursor: pointer;
}

.close-menu svg {
  width: 1.5em;
  height: 1.5em;
}

.close-menu path {
  fill: var(--color-white);
}

.ods-mobile-menu-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.ods-mobile-menu-nav li {
  border-bottom: 0.0625em solid rgba(255, 255, 255, 0.1);
}

.ods-mobile-menu-nav a {
  display: block;
  padding: 1em 0;
  color: var(--color-white);
  text-decoration: none;
  font-size: 1.25em;
  font-weight: var(--font-weight--medium);
}

.btn-theme,
.wa-button a {
  text-align: center;
  color: var(--color-main);
}

/* ========================================
   4. Hero Block
   ======================================== */

.hero-block {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-block__slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-block__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.hero-block__slide.is-active {
  opacity: 1;
}

.hero-block__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: var(--color-black);
  opacity: 0.65;
}

.hero-block__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: 5em;
  padding-bottom: 5em;
}

.hero-block__inner {
  max-width: 45em;
  margin: 0 auto;
  text-align: center;
}

.hero-block h1 {
  color: var(--color-white);
  margin-bottom: 0.5em;
  line-height: 1.05;
  font-size: 4em;
}

.hero-block__desc {
  color: var(--color-light);
  font-size: 1.125em;
  line-height: 1.5;
  margin-bottom: 2em;
  opacity: 0.9;
}

@media only screen and (max-width: 767px) {
  .hero-block__content {
    padding-top: 3em;
    padding-bottom: 3em;
  }
  .hero-block h1 {
    font-size: 2.6em;
  }

  .hero-block {
    min-height: auto;
  }
}

/* ========================================
   5. What Is Block
   ======================================== */

.what-is {
  padding-top: var(--section-padding);
  padding-bottom: var(--section-padding);
}

.what-is__header h2 {
  color: var(--color-black);
  margin-bottom: 0.5em;
}

.what-is__header p,
.what-is__header li {
  color: var(--color-black);
  opacity: 1;
  font-size: 1.125em;
  line-height: 1.5;
}

.what-is__header ul {
  margin: 2em 0 0 0;
  background-color: var(--color-light);
  border-radius: var(--border-radius--medium);
  padding: 1em;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}
.what-is__header li {
  color: var(--color-dark);
  font-size: 1.25em;
  padding-left: 15px;
  position: relative;
}

.what-is__header li::before {
  content: "";
  width: 10px;
  height: 3px;
  border-radius: 1px;
  display: inline-block;
  background-color: var(--color-dark);
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.what-is__wrap {
  display: flex;
  gap: 3em;
}

.what-is__header,
.what-is__image {
  flex: 1;
}

.what-is__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--border-radius--medium);
}

@media only screen and (max-width: 767px) {
  .what-is__wrap {
    flex-direction: column;
    gap: 2em;
  }
}

/* ========================================
   6. Journey Block
   ======================================== */

.journey {
  padding-top: var(--section-padding);
  padding-bottom: var(--section-padding);
  background: var(--color-dark);
}

.journey__header {
  text-align: left;
  margin: 0 auto 3em;
}

.journey__header h2 {
  color: var(--color-white);
  margin-bottom: 0.5em;
}

.journey__header p {
  color: var(--color-light);
  opacity: 0.8;
  font-size: 1.125em;
  line-height: 1.5;
}

.journey__steps {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2em;
}

.journey__step {
  display: flex;
  gap: 1.5em;
  align-items: flex-start;
  position: relative;
  z-index: 2;
}

.journey__step-num {
  flex-shrink: 0;
  width: 3em;
  height: 3em;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    var(--color-accent),
    var(--color-secondary)
  );
  border-radius: var(--border-radius--large);
  font-family: "Chakra Petch", sans-serif;
  font-weight: var(--font-weight--bold);
  font-size: 1.25em;
  color: var(--color-primary);
}

.journey__step-body {
  padding-top: 0.25em;
}

.journey__step-body h3 {
  font-size: var(--font-size--h6);
  color: var(--color-white);
  margin-bottom: 0.375em;
}

.journey__step-body p {
  color: var(--color-light);
  opacity: 0.75;
  line-height: 1.5;
}

.journey__step:not(:last-child) {
  position: relative;
  padding-bottom: 1em;
}

.journey__steps {
  position: relative;
  z-index: 2;
}
.journey__steps::after {
  content: "";
  position: absolute;
  left: calc(1.5em + 0.125em * 3);
  top: 0;
  bottom: 0;
  height: calc(100% - 3em);
  width: 0.125em;
  background: linear-gradient(to bottom, var(--color-accent), transparent);
  z-index: 1;
}

@media screen and (max-width: 479px) {
  .journey__step-num {
    width: 2.5em;
    height: 2.5em;
    font-size: 1em;
  }
  .journey__step:not(:last-child)::after {
    left: 1.25em;
    top: 3em;
  }

  .journey__steps::after {
    left: calc(1.25em);
  }
}

/* ========================================
   7. Features Block
   ======================================== */

.features {
  padding-top: var(--section-padding);
  padding-bottom: var(--section-padding);
  background: var(--color-primary);
}

.features__cards {
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap);
  justify-content: center;
}

.features__card {
  width: calc(33.33% - var(--gap) / 1.5);
  border-radius: var(--border-radius--large);
  padding: 2.5em 2em;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.features__cards--4 .features__card {
  width: calc(25% - var(--gap) / 1.33);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-top: 0.25em solid var(--color-primary);
  transition: all 0.4s ease;
}

.features__cards--4 .features__card h3 {
  margin-bottom: 0;
}

.features__cards--4 .features__card:hover {
  border-color: var(--color-card-dark);
}

.features__card:hover {
  transform: translateY(-0.25em);
}

.features__text {
  margin-bottom: 3em;
  text-align: center;
}

.features__text h2 {
  color: var(--color-black);
  margin-bottom: 0.5em;
}
.features__text p {
  color: var(--color-black);
  opacity: 0.8;
  font-size: 1.125em;
  line-height: 1.5;
}

.features__text > * {
  color: var(--color-black);
}

.features__text.white-style > * {
  color: var(--color-white);
}

.features__cards--4 .features__card-icon {
  background-color: var(--color-card-dark);
  padding: 1em;
  border-radius: var(--border-radius--small);
  width: 4em;
  height: 4em;
}

.security__cards {
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap);
  margin-top: 3em;
}

.security__card {
  width: calc(25% - var(--gap) / 1.33);
  text-align: center;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  gap: 1em;
}

.security__card h3 {
  margin: 0;
  font-size: 1.3em;
}
.security__card-icon {
  background-color: var(--color-card-dark);
  padding: 0.75em;
  border-radius: var(--border-radius--small);
  width: 3em;
  height: 3em;
}

/* Style 1: Dark */
.features__card--style-1 {
  background: var(--color-card-dark);
  border: 0.0625em solid rgba(255, 255, 255, 0.08);
  color: var(--color-white);
}

.features__card--style-1 h3 {
  color: var(--color-white);
}

.features__card--style-1:hover {
  box-shadow: 0 0.75em 2em rgba(9, 24, 70, 0.5);
}

/* Style 2: Accent / Neon */
.features__card--style-2 {
  background: var(--color-secondary);
  color: var(--color-black);
}

.features__card--style-2 h3 {
  color: var(--color-card-dark);
}

.features__card--style-2 p {
  color: var(--color-black);
}

.features__card--style-2 li {
  color: var(--color-black);
}

.features__card--style-2 .features__list--check svg {
  color: var(--color-primary);
}

.features__card--style-2:hover {
  box-shadow: 0 0.75em 2em rgba(211, 255, 6, 0.3);
}

/* Style 3: Gradient */
.features__card--style-3 {
  background: linear-gradient(
    135deg,
    var(--color-gradient-start),
    var(--color-card-dark)
  );
  border: 0.0625em solid rgba(255, 255, 255, 0.1);
  color: var(--color-white);
}

.features__card--style-3 h3 {
  color: var(--color-white);
}

.features__card--style-3:hover {
  box-shadow: 0 0.75em 2em rgba(50, 57, 98, 0.5);
}

.features__card-icon {
  width: 3em;
  height: 3em;
  margin-bottom: 1.25em;
}

.features__card-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.features__card h3 {
  font-size: var(--font-size--h5);
  margin-bottom: 0.5em;
}

.features__card > p {
  opacity: 0.85;
  line-height: 1.5;
  margin-bottom: 0em;
  font-size: 1em;
  margin-bottom: 0;
}

.features__link {
  margin-top: 3em;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Checklist */
.features__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.features__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5em;
  margin-bottom: 0.625em;
  line-height: 1.4;
  color: inherit;
  font-size: var(--font-size--small);
}

.features__list--check svg {
  flex-shrink: 0;
  width: 1em;
  height: 1em;
  margin-top: 0.15em;
  color: var(--color-accent);
}

.features__list--num {
  counter-reset: feat-list;
  padding-left: 0;
}

.features__list--num li {
  counter-increment: feat-list;
}

.features__list--num li::before {
  content: counter(feat-list) ".";
  font-weight: var(--font-weight--bold);
  flex-shrink: 0;
  min-width: 1.25em;
}

.features__list + .features__list {
  margin-top: 1em;
  padding-top: 1em;
  border-top: 0.0625em solid rgba(255, 255, 255, 0.1);
}

.features__card--style-2 .features__list + .features__list {
  border-color: rgba(0, 0, 0, 0.15);
}

@media screen and (max-width: 991px) {
  .features__cards {
    margin: 0 auto;
  }

  .features__card {
    flex: 1 1 auto;
    width: calc(50% - var(--gap) / 2);
  }

  .security__card,
  .features__cards--4 .features__card {
    width: calc(50% - var(--gap) / 2);
  }

  .security__cards {
    gap: 3em var(--gap);
  }
}

@media screen and (max-width: 600px) {
  .features__card {
    width: 100%;
  }
}

@media only screen and (max-width: 575px) {
  .features__cards--4 .features__card {
    width: 100%;
  }
}

/* ========================================
   8. FAQ Block
   ======================================== */

.faq {
  padding-top: var(--section-padding);
  padding-bottom: var(--section-padding);
  background: var(--color-dark);
}

.faq__header {
  text-align: center;
  margin-bottom: 3em;
}

.faq__header h2 {
  color: var(--color-white);
}

.our-faq__item {
  border-bottom: 0.0625em solid rgba(255, 255, 255, 0.08);
}

.our-faq__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1em;
  padding: 1.25em 0;
  cursor: pointer;
  transition: color 0.2s ease;
}

.our-faq__top:hover {
  color: var(--color-accent);
}

.our-faq__top h3 {
  font-size: 1.4em;
  font-weight: var(--font-weight--medium);
  color: inherit;
  margin: 0;
  line-height: 1.3;
}

.our-faq__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5em;
  height: 2.5em;
  border-radius: var(--border-radius--small);
  background: rgba(255, 255, 255, 0.06);
  transition:
    transform 0.3s ease,
    background 0.3s ease;
}

.our-faq__icon svg {
  width: 1em;
  height: 1em;
  color: var(--color-light);
  transition: color 0.3s ease;
}

.our-faq__item--active .our-faq__icon {
  background: var(--color-accent);
}

.our-faq__item--active .our-faq__icon svg {
  transform: rotate(180deg);
  color: var(--color-black);
}

.our-faq__bottom {
  padding-bottom: 1.25em;
}

.our-faq__answer {
  color: var(--color-black);
  background-color: rgba(255, 255, 255, 1);
  border-radius: var(--border-radius--medium);
  padding: 1.5em;
  line-height: 1.6;
  font-size: var(--font-size--small);
}

.our-faq__answer p {
  line-height: 1.6;
  margin: 0;
}

.our-faq__answer p:not(:last-of-type) {
  margin-bottom: 1em;
}

/* ========================================
   9. CTA Block
   ======================================== */

.trust-block {
  padding-top: var(--section-padding);
  padding-bottom: var(--section-padding);
  background: var(--color-card-dark);
  position: relative;
  overflow: hidden;
}

.trust-block__inner h2 {
  color: var(--color-white);
  margin-bottom: 0.5em;
}

.trust-block__inner > p {
  color: var(--color-dark);
  opacity: 0.85;
  font-size: 1.125em;
  line-height: 1.5;
  margin-bottom: 2em;
}

.trust__text {
  padding: 2em;
  background-color: rgba(255, 255, 255, 0.75);
  color: var(--color-dark);
  margin-top: 3em;
  border-radius: var(--border-radius--medium);
}

.trust__text > * {
  color: var(--color-dark);
}

.trust__text :where(h2,h3,h4,h5) {
	font-size: 2em;
	margin-bottom: 12px;
}
.trust__text p {
	font-size: 1.25em;
	margin-top: 0;
	margin-bottom: 2em;
}

/* ========================================
   10. Payment Block
   ======================================== */

.payment {
  padding-top: 2em;
  padding-bottom: 2em;
  background: var(--color-card-dark);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.payment__wrap {
  display: flex;
  align-items: center;
  gap: 3.5em;
}

.payment__header {
  text-align: center;
  margin-bottom: 0em;
  white-space: nowrap;
}

.payment__header h2 {
  color: var(--color-white);
  font-size: 1em;
}

.payment__marquee {
  overflow: hidden;
  mask-image: linear-gradient(
    to right,
    transparent,
    black 10%,
    black 90%,
    transparent
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    black 10%,
    black 90%,
    transparent
  );
}

.payment__track {
  display: flex;
  gap: 1em;
  animation: marquee 25s linear infinite;
  width: max-content;
}

.payment__logo {
  flex-shrink: 0;
  width: 7em;
  height: 3.5em;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--border-radius--small);
  padding: 0.5em 1em;
  border: 0.0625em solid rgba(255, 255, 255, 0.06);
}

.payment__logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.payment__logo:hover img {
  opacity: 1;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media only screen and (max-width: 767px) {
  .payment {
    padding-top: 1.5em;
    padding-bottom: 1.5em;
  }
  .payment__wrap {
    flex-direction: column;
    gap: 1em;
    align-items: center;
  }
  .payment__header h2 {
    font-size: 1.25em;
    margin-bottom: 0;
  }
}

/* ========================================
   11. Footer Block
   ======================================== */

.footer-block {
  padding-top: 3em;
  padding-bottom: 2em;
  background: var(--color-black);
  border-top: 0.0625em solid rgba(255, 255, 255, 0.06);
}

.footer-block__top {
  display: flex;
  justify-content: space-between;
  gap: var(--column-gap--large);
  margin-bottom: 2.5em;
}

.footer-block__brand {
  max-width: 20em;
}

.footer-block__logo {
  margin-bottom: 1em;
}

.footer-block__logo img {
  height: 2.5em;
  width: auto;
}

.footer-block__desc {
  color: var(--color-light);
  opacity: 0.65;
  font-size: var(--font-size--small);
  line-height: 1.6;
}

.footer-block__menus {
  display: flex;
  gap: var(--column-gap--large);
}

.footer-block__nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1.5em;
}

.footer-block__nav a {
  color: var(--color-light);
  opacity: 0.7;
  text-decoration: none;
  font-size: var(--font-size--small);
  transition:
    color 0.2s ease,
    opacity 0.2s ease;
}

.footer-block__nav a:hover {
  color: var(--color-accent);
  opacity: 1;
}

.footer-block__policies {
  display: flex;
  flex-wrap: wrap;
  gap: 1em 2em;
  padding-bottom: 1.5em;
  margin-bottom: 1.5em;
  border-bottom: 0.0625em solid rgba(255, 255, 255, 0.06);
}

.footer-block__policies a {
  color: var(--color-light);
  opacity: 0.6;
  font-size: var(--font-size--small);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.footer-block__policies a:hover {
  opacity: 1;
  color: var(--color-accent);
}

.footer-block__disclaimer {
  margin-bottom: 1.5em;
}

.footer-block__disclaimer p {
  color: var(--color-light);
  opacity: 0.45;
  font-size: 0.75em;
  line-height: 1.6;
}

.footer-block__copy {
  text-align: center;
}

.footer-block__copy p {
  color: var(--color-light);
  opacity: 0.4;
  font-size: 0.75em;
}

@media screen and (max-width: 767px) {
  .footer-block__top {
    flex-direction: column;
    gap: 2em;
  }
  .footer-block__brand {
    max-width: 100%;
  }
  .footer-block__nav ul {
    flex-direction: column;
    gap: 0.75em;
  }
}

/* ========================================
   12. WhatsApp Sticky Button
   ======================================== */

.whatsapp-sticky {
  position: fixed;
  bottom: 1.5em;
  right: 1.5em;
  z-index: 99;
}

@media only screen and (max-width: 767px) {
  .whatsapp-sticky {
    bottom: 12px;
    right: 12px;
  }
}

.whatsapp-sticky a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5em;
  height: 3.5em;
  background: #25d366;
  border-radius: 50%;
  color: var(--color-white);
  text-decoration: none;
  box-shadow: 0 0.25em 1em rgba(37, 211, 102, 0.4);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.whatsapp-sticky a:hover {
  transform: scale(1.1);
  box-shadow: 0 0.5em 1.5em rgba(37, 211, 102, 0.5);
}

.whatsapp-sticky svg {
  width: 1.75em;
  height: 1.75em;
}

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

/* ========================================
   13. Buttons
   ======================================== */

.btn-wa {
  display: inline-flex;
  align-items: center;
  color: var(--color-white);
  font-weight: var(--font-weight--semibold);
  font-size: 1em;
  cursor: pointer;
  gap: 0.625em;
  background: linear-gradient(
    45deg,
    var(--color-secondary),
    var(--color-accent),
    var(--color-main),
    var(--color-main),
    var(--color-accent)
  );
  background-size: 300% 100%;
  padding: 0.875em 2em;
  border-radius: var(--border-radius--small);
  text-decoration: none;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  border-width: initial;
  border-style: none;
  border-color: initial;
  border-image: initial;
  animation: wa-gradient 2s ease infinite;
}

@keyframes wa-gradient {
  0% {
    background-position: 0% 50%;
    box-shadow: 0 -0.5em 1.5em rgba(37, 211, 102, 0);
  }
  50% {
    background-position: 100% 50%;
    box-shadow: 0 -0.5em 1.5em rgba(37, 211, 102, 0.3);
  }
  100% {
    background-position: 0% 50%;
    box-shadow: 0 0.5em 1.5em rgba(37, 211, 102, 0.5);
  }
}

.btn-wa.btn-wa--xl {
  font-size: 1.25em;
}

.btn-wa:hover {
  transform: translateY(-0.125em);
  box-shadow: 0 0.5em 1.5em rgba(37, 211, 102, 0.35);
  color: var(--color-white);
}

.btn-wa svg {
  width: 1.25em;
  height: 1.25em;
  flex-shrink: 0;
}

.btn-wa--lg {
  font-size: 1.25em;
  padding: 1em 2.5em;
}

.btn-wa--lg svg {
  width: 1.5em;
  height: 1.5em;
}

/* ========================================
   Hide default theme footer when
   footer block is used
   ======================================== */

.site-footer {
  background-color: var(--color-card-dark);
  text-align: center;
}

.site-footer__logo {
  display: flex;
  justify-content: flex-start;
  text-align: left;
  flex-direction: column;
  gap: 0.2em;
  width: calc(35% - 3em / 1.5);
}

.site-footer__logo img {
  display: block;
  width: 100%;
  max-width: 12em;
}

.site-footer__content {
  display: flex;
  flex-wrap: wrap;
  gap: 3em;
  padding-top: 4em;

  padding-bottom: 4em;
}

.site-footer_nav {
  text-align: left;
  width: calc(35% - 3em / 1.5);
}

.site-footer_wa {
  width: calc(30% - 3em / 1.5);
  text-align: left;
}

.site-footer_nav ul {
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.site-footer_nav ul a {
  text-decoration: none;
  color: var(--color-white);
}

.site-footer_wa p {
  margin-top: 0;
}

.site-footer_wa a {
  width: 100%;
  text-align: center;
  justify-content: center;
}

#footer-menu {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 1em;
}

.site-footer__copyright {
  padding-top: 1.5em;
  padding-bottom: 1.5em;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
}

.site-footer__copyright p {
  margin: 0;
}

@media only screen and (max-width: 767px) {
  .site-footer__logo,
  .site-footer_nav {
    width: calc(50% - 3em / 2);
  }
  .site-footer_wa {
    width: 100%;
  }

  .site-footer__logo p {
    margin-bottom: 0;
  }
}

@media only screen and (max-width: 575px) {
  .site-footer__logo,
  .site-footer_nav,
  .site-footer_wa {
    width: 100%;
  }
}

/* Contact */

.contact {
  padding-top: 4em;
  padding-bottom: 4em;
}

.contact__content {
  max-width: 54em;
  margin: 0 auto;
}

.contact__title {
  text-align: center;
  margin-bottom: 4em;
  color: var(--color-black);
}

.contact__title > * {
  color: var(--color-black);
}

.form-inner {
  width: 100%;
  margin-bottom: 1.5em;
}

.form-inner p {
  margin: 0;
}

.form-inner input,
.form-inner textarea {
  width: 100%;
  padding: 0.75em 1em;
  border: 1px solid var(--color-gray);
  border-radius: var(--border-radius--medium);
  font-size: 1em;
  outline: none;
}

.form-inner label {
  display: inline-block;
  width: 100%;
  font-weight: 600;
  color: var(--color-main);
  margin-bottom: 0.5em;
  font-size: 1em;
}

.wpcf7-not-valid-tip {
  margin-top: 0.25em;
  font-size: 0.75em;
}

button.btn-theme {
  outline: none;
  cursor: pointer;
  display: flex;
  margin: 0 auto;
}

.wpcf7 form .wpcf7-response-output {
  padding: 0.8em 1em !important;
  text-align: center;
  border-radius: 6px;
  color: var(--color-black);
}

@media only screen and (max-width: 575px) {
  .toc__dropdown .toc-inner {
    flex-direction: column;
    gap: 12px;
  }
}

/*404*/

.error-404.not-found {
  background-color: var(--color-white);
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.not-found__wrap {
  max-width: 41em;
  width: 100%;
  text-align: center;
  margin: 0 auto;
}

.not-found__back {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  align-items: center;
}

.not-found__text {
  margin-bottom: 2em;
}

.not-found__text h1 {
  font-size: 13.8em;
  line-height: 0.7em;
  margin-bottom: 0.1em;
  color: var(--color-black);
}

.not-found__text p {
  font-size: 1.2em;
  margin-top: 0.2em;
  color: var(--color-black);
}

.not-found__text h2 {
  color: var(--color-black);
}

.not-found .btn-link {
  color: var(--color-black);
}

.not-found .btn-link svg {
  filter: invert(1) brightness(9999);
}

@media only screen and (max-width: 767px) {
  .not-found__text h1 {
    font-size: 10em;
  }
}

.page-title {
  background-color: var(--color-main);
  padding-top: 3em;
  padding-bottom: 3em;
  margin-bottom: 3em;
}

.page-title h1 {
  color: var(--color-light);
}

.page-content {
  padding-bottom: 5em;
}
.page-content :where(h1, h2, h3, h4, h5, h6, p, ul, ol, li) {
  color: var(--color-dark) !important;
}

.page-content-box {
  background-color: var(--color-light);
  border-radius: var(--border-radius--medium);
  padding: 1.25em;
}

/* ========================================
   14. Author Block
   ======================================== */

.author-block {
  padding-top: 3em;
  padding-bottom: 3em;
  background: var(--color-white);
}

.author-block__inner {
  display: flex;
  gap: 1em;
  padding: 1em;
  border-radius: var(--border-radius--medium);
  border: 1px solid var(--color-card-dark);
  position: relative;
}

.author-block__inner::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-color: var(--color-card-dark);
  opacity: 0.1;
}

.author-block__avatar {
  flex-shrink: 0;
  width: 10em;
  height: 10em;
  border-radius: 50%;
  overflow: hidden;
  border: 0.125em solid var(--color-secondary);
  position: relative;
  z-index: 2;
}

.author-block__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-block__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.35em;
  font-size: var(--font-size--small);
  color: var(--color-dark);
  position: relative;
  z-index: 2;
}

.author-position {
  background-color: var(--color-secondary);
  border-radius: var(--border-radius--medium);
  color: var(--color-main);
  font-size: 1em;
  padding: 0.4em 1em;
  text-transform: capitalize;
  display: inline-block;
}

.author-block__label {
  opacity: 0.6;
}

.author-block__name {
  font-weight: var(--font-weight--semibold);
  color: var(--color-primary);
}

.author-block__sep {
  opacity: 0.3;
  margin: 0 0.25em;
}

.author-block__date {
  font-weight: var(--font-weight--medium);
  color: var(--color-dark);
}

.author-block__link {
  display: block;
  width: 100%;
  margin-bottom: 0em;
}

@media only screen and (max-width: 479px) {
  .btn-wa.btn-wa--xl {
    font-size: 1.15em;
    padding: 0.85em;
  }
  .author-block__inner {
    flex-direction: column;
  }
  .author-block__link {
    margin-bottom: 1em;
  }
}

/*Responsible*/

.responsible {
  background-color: var(--color-white);
  padding-top: 3em;
  padding-bottom: 3em;
  background: linear-gradient(
    to bottom,
    var(--color-light) 0%,
    rgba(255, 255, 255, 0) 100%
  );
}

.responsible h2 {
  text-align: center;
  margin-bottom: 0;
  color: var(--color-dark);
}

.responsible-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2em;
}

.responsible-box {
  background-color: rgba(0, 0, 0, 0.1);
  border: 1px solid var(--color-accent);
  border-radius: var(--border-radius--medium);
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 1em;
  transition: all 0.3s ease;
}

.responsible-box:hover {
  background-color: var(--color-accent);
}

.responsible-box img {
  max-width: 6em;
}

.responsible-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2em 2em;
  align-items: center;
}

.responsible h2 {
  max-width: 9em;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 0.5em;
}

.red-18 {
  border-radius: 50%;
  width: 1.75em;
  height: 1.75em;
  border: 0.15em solid #c52121;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  line-height: 1;
  font-size: 0.75em;
  padding: 1.25em;
  color: #c52121;
  position: relative;
}

@media only screen and (max-width: 991px) {
  .responsible-wrap {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .responsible-list {
    gap: 1em;
  }
}

@media only screen and (max-width: 575px) {
  .responsible h2 {
    flex-direction: column;
  }
  .responsible-box img {
    max-width: 4em;
  }
}
