:root {
  --primary-color: #8b5cf6;
  --secondary-color: #ec4899;
  --tertiary-color: #f59e0b;
  --quaternary-color: #10b981;
  --dark-bg: #1f2937;
  --light-bg: #f3f4f6;
  --text-dark: #111827;
  --text-light: #ffffff;
  --text-gray: #6b7280;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);
  --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.25);
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Roboto", sans-serif;
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
  background-color: var(--light-bg);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Archivo Black", sans-serif;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3.5rem;
}

h2 {
  font-size: 2.75rem;
}

h3 {
  font-size: 2rem;
}

h4 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1.25rem;
  color: var(--text-dark);
  font-weight: 400;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all var(--transition-normal);
}

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

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

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--secondary-color) 50%,
    var(--tertiary-color) 100%
  );
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
}

#main-header {
  background-image: linear-gradient(
    to right,
    #581c87 0%,
    #be185d 50%,
    #ea580c 100%
  );
}

header.scroll-sluj {
  padding: 0.5rem 0;
  box-shadow: var(--shadow-lg);
}

nav {
  padding: 0.5rem 0;
}

.logo-p1jm a {
  font-family: "Archivo Black", sans-serif;
  font-size: 1.75rem;
  color: var(--text-light);
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all var(--transition-normal);
}

.logo-p1jm a:hover {
  transform: scale(1.05);
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.nav-link {
  color: var(--text-light);
  font-weight: 500;
  padding: 0.5rem 1rem;
  position: relative;
  white-space: nowrap;
  transition: all var(--transition-normal);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--tertiary-color);
  transition: all var(--transition-normal);
  transform: translateX(-50%);
}

.nav-link:hover::after {
  width: 80%;
}

.nav-link:hover {
  color: var(--tertiary-color);
  transform: translateY(-2px);
}

#mobile-menu-btn {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

#mobile-menu {
  display: none;
  flex-direction: column;
  width: 100%;
}

#mobile-menu.active {
  display: flex;
}

.fonarc-i6n5 {
  font-family: "Archivo Black", sans-serif;
}

.fonrob-0x85 {
  font-family: "Roboto", sans-serif;
}

.lanswi-6nw5 {
  background-color: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 8px;
  padding: 0.35rem 1.6rem 0.35rem 0.6rem;
  font-family: "Roboto", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  outline: none;
  transition: all var(--transition-normal);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w-8vvv.org-w1nk/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%23ffffff' d='M0 0l5 6 5-6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.55rem center;
}

.lanswi-6nw5:hover {
  background-color: rgba(255, 255, 255, 0.28);
  border-color: rgba(255, 255, 255, 0.7);
}

.lanswi-6nw5:focus {
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.25);
}

.lanswi-6nw5 option {
  color: #111827;
  background: #ffffff;
  font-weight: 500;
}

.laswmo-xqig {
  margin-top: 0.75rem;
  width: 100%;
}

.maicon-4w30 {
  margin-top: 80px;
}

.secpad-m9ju {
  padding: 6rem 0;
  position: relative;
}

.sectit-vwjl {
  position: relative;
  display: inline-block;
  margin-bottom: 3rem;
  animation: titleSlideIn 0.8s ease-out;
}

.sectit-vwjl::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60%;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--secondary-color),
    var(--tertiary-color)
  );
  border-radius: 2px;
}

.hersec-zdai {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  overflow: hidden;
}

.hersec-zdai::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(139, 92, 246, 0.7) 0%,
    rgba(236, 72, 153, 0.7) 50%,
    rgba(245, 158, 11, 0.6) 100%
  );
  z-index: 1;
}

.hersec-zdai .container {
  position: relative;
  z-index: 2;
}

.hertit-oa8n {
  color: var(--text-light);
  animation: heroTitleFade 1.2s ease-out;
  text-shadow: 4px 4px 12px rgba(0, 0, 0, 0.8);
  margin-bottom: 1.5rem;
}

.hersub-pi5n {
  color: var(--text-light);
  animation: heroSubtitleFade 1.4s ease-out;
  text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.7);
  margin-bottom: 2rem;
}

.hersec-zdai p {
  color: var(--text-light);
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
  font-size: 1.1rem;
  animation: heroParagraphFade 1.6s ease-out;
}

.hersha-u96z {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.shape-14kt {
  position: absolute;
  opacity: 0.1;
  animation: floatShape 20s infinite ease-in-out;
}

.shape-e3ak {
  width: 300px;
  height: 300px;
  background: var(--text-light);
  border-radius: 50%;
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}

.shape-i0fw {
  width: 200px;
  height: 200px;
  background: var(--text-light);
  transform: rotate(45deg);
  bottom: 15%;
  right: 10%;
  animation-delay: 5s;
}

.shape-z9s7 {
  width: 150px;
  height: 150px;
  background: var(--text-light);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  top: 50%;
  right: 5%;
  animation-delay: 10s;
}

.btn,
button[type="submit"],
.ctabut-pp2s,
.probtn-57ec {
  display: inline-block;
  padding: 0.875rem 2.5rem;
  font-weight: 700;
  font-size: 1rem;
  text-align: center;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all var(--transition-normal);
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: var(--text-light);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before,
button[type="submit"]::before,
.ctabut-pp2s::before,
.probtn-57ec::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    var(--secondary-color),
    var(--tertiary-color)
  );
  transition: all var(--transition-normal);
  z-index: -1;
}

.btn:hover::before,
button[type="submit"]:hover::before,
.ctabut-pp2s:hover::before,
.probtn-57ec:hover::before {
  left: 0;
}

.btn:hover,
button[type="submit"]:hover,
.ctabut-pp2s:hover,
.probtn-57ec:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl);
}

.btn:active,
button[type="submit"]:active,
.ctabut-pp2s:active,
.probtn-57ec:active {
  transform: translateY(-1px);
}

.card,
.procar-qlt5,
.teamem-xjh4,
.parcar-c7r2,
.rescar-y9do,
.testim-ikt7 {
  background: var(--text-light);
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 100%;
}

.card:hover,
.procar-qlt5:hover,
.teamem-xjh4:hover,
.parcar-c7r2:hover,
.rescar-y9do:hover {
  transform: translateY(-10px) rotate(1deg);
  box-shadow: var(--shadow-xl);
}

.card-image,
.imacon-a3nq {
  width: 100%;
  height: 300px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f0f0f0;
}

.card-image img,
.imacon-a3nq img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all var(--transition-slow);
}

.card:hover .card-image img,
.card:hover .imacon-a3nq img {
  transform: scale(1.1);
}

.card-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex-grow: 1;
}

.card-content h3 {
  margin-bottom: 0.75rem;
  color: var(--text-dark);
}

.card-content p {
  color: var(--text-gray);
  margin-bottom: 1rem;
}

.progri-wd30,
.teagri-4sfm,
.parlog-3l8p,
.resgri-nu57 {
  display: grid;
  gap: 2rem;
  margin-top: 3rem;
}

.stawid-ofe8 {
  background: var(--text-light);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: all var(--transition-normal);
}

.stawid-ofe8:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: var(--shadow-lg);
}

.viscon-q12m,
.inncon-lmsa,
.carcon-65uh,
.miscon-5g3c {
  animation: fadeInLeft 0.8s ease-out;
}

.visima-m01u img,
.innima-00qh img,
.carima-x0n3 img {
  animation: fadeInRight 0.8s ease-out;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
}

.stagri-fwhi {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

footer {
  background: linear-gradient(
    135deg,
    #1f2937 0%,
    var(--primary-color) 50%,
    var(--secondary-color) 100%
  );
  color: var(--text-light);
  padding: 3rem 0 1.5rem;
}

.foogri-188m {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

.foobot-r6uw {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 2rem;
  text-align: center;
  color: #9ca3af;
}

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

@media (max-width: 480px) {
  .foogri-188m {
    grid-template-columns: 1fr;
  }
}

footer h3,
footer h4 {
  color: var(--text-light);
  margin-bottom: 1rem;
}

footer a {
  color: #d1d5db;
  transition: all var(--transition-normal);
}

footer a:hover {
  color: var(--tertiary-color);
  transform: translateX(5px);
  display: inline-block;
}

footer ul {
  list-style: none;
}

footer ul li {
  margin-bottom: 0.5rem;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition-normal);
}

.modal.active {
  opacity: 1;
  pointer-events: all;
}

.modal-content {
  background: var(--text-light);
  border-radius: 16px;
  padding: 2.5rem;
  max-width: 600px;
  width: 90%;
  position: relative;
  transform: scale(0.8);
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-xl);
}

.modal.active .modal-content {
  transform: scale(1);
}

#modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: transparent;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: var(--text-gray);
  transition: all var(--transition-fast);
}

#modal-close:hover {
  color: var(--text-dark);
  transform: rotate(90deg);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text-dark);
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea,
select {
  width: 100%;
  padding: 0.875rem 1.25rem;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 1rem;
  font-family: "Roboto", sans-serif;
  transition: all var(--transition-normal);
  background: var(--text-light);
  color: var(--text-dark);
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

textarea {
  resize: vertical;
  min-height: 120px;
}

.page-header {
  background:
    linear-gradient(135deg, rgba(139, 92, 246, 0.9), rgba(236, 72, 153, 0.9)),
    url("image/page-header-bg.jpg-140m");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 8rem 0 4rem;
  text-align: center;
  color: var(--text-light);
  margin-top: 80px;
}

.page-header h1 {
  color: var(--text-light);
  text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.7);
  margin-bottom: 1rem;
}

.page-header p {
  color: var(--text-light);
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
  font-size: 1.25rem;
}

.page-content {
  padding: 4rem 0;
}

.consec-5o8u {
  background: var(--text-light);
  border-radius: 12px;
  padding: 3rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-md);
}

.consec-5o8u h2 {
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 3px solid var(--primary-color);
}

.consec-5o8u h3 {
  color: var(--text-dark);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.consec-5o8u p {
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.consec-5o8u ul,
.consec-5o8u ol {
  margin-left: 2rem;
  margin-bottom: 1.5rem;
  color: var(--text-gray);
}

.consec-5o8u ul {
  list-style: disc;
}

.consec-5o8u ol {
  list-style: decimal;
}

.consec-5o8u li {
  margin-bottom: 0.75rem;
  line-height: 1.7;
}

.sucpag-tw2h {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #e0f2fe 0%, #dbeafe 50%, #e0e7ff 100%);
  padding: 2rem;
}

.succon-t9wo {
  background: var(--text-light);
  border-radius: 16px;
  padding: 3rem;
  text-align: center;
  box-shadow: var(--shadow-xl);
  max-width: 600px;
  margin: 0 auto;
  animation: successPopIn 0.6s ease-out;
}

.sucico-jlzv {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--quaternary-color), #34d399);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  animation: successIconPulse 1.5s infinite;
}

.sucico-jlzv svg {
  width: 50px;
  height: 50px;
  color: var(--text-light);
}

.abopag-rxe8,
.conpag-1m8h,
.terpag-rdwh,
.pripag-tkl9 {
  padding-top: 100px;
}

.coninf-otgl {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.conite-08c0 {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.conico-62t8 {
  width: 48px;
  height: 48px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.conico-62t8 svg {
  width: 24px;
  height: 24px;
  color: var(--text-light);
}

.reamor-ihre {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all var(--transition-normal);
  position: relative;
}

.reamor-ihre::after {
  content: "→";
  transition: all var(--transition-normal);
}

.reamor-ihre:hover {
  color: var(--secondary-color);
  gap: 0.75rem;
}

.reamor-ihre:hover::after {
  transform: translateX(5px);
}

@keyframes heroTitleFade {
  0% {
    opacity: 0;
    transform: translateY(-30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroSubtitleFade {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroParagraphFade {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatShape {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(20px, 20px) rotate(90deg);
  }
  50% {
    transform: translate(0, 40px) rotate(180deg);
  }
  75% {
    transform: translate(-20px, 20px) rotate(270deg);
  }
}

@keyframes titleSlideIn {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-40px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(40px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes successPopIn {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes successIconPulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

@keyframes cardFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@media (max-width: 1024px) {
  .progri-wd30,
  .teagri-4sfm {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 768px) {
  #mobile-menu-btn {
    display: block;
  }

  .hertit-oa8n {
    font-size: 2.5rem;
  }

  .hersub-pi5n {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  h3 {
    font-size: 1.5rem;
  }

  .secpad-m9ju {
    padding: 4rem 0;
  }

  .progri-wd30,
  .teagri-4sfm,
  .parlog-3l8p,
  .resgri-nu57 {
    grid-template-columns: 1fr;
  }

  .stagri-fwhi {
    grid-template-columns: 1fr;
  }

  .consec-5o8u {
    padding: 2rem;
  }

  .page-header {
    padding: 6rem 0 3rem;
  }

  .succon-t9wo {
    padding: 2rem;
  }
}

@media (max-width: 480px) {
  .hertit-oa8n {
    font-size: 2rem;
  }

  .hersub-pi5n {
    font-size: 1.25rem;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .btn,
  button[type="submit"],
  .ctabut-pp2s,
  .probtn-57ec {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }

  .secpad-m9ju {
    padding: 3rem 0;
  }

  .consec-5o8u {
    padding: 1.5rem;
  }
}

.parsec-lr2y {
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.graove-l975 {
  position: relative;
}

.graove-l975::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(139, 92, 246, 0.8),
    rgba(236, 72, 153, 0.7)
  );
  z-index: 1;
}

.graove-l975 > * {
  position: relative;
  z-index: 2;
}

.asygri-l11f {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.asygri-l11f .card:nth-child(odd) {
  transform: translateY(-20px);
}

.asygri-l11f .card:nth-child(even) {
  transform: translateY(20px);
}

.retbor-l10v {
  border: 4px solid var(--primary-color);
  position: relative;
}

.retbor-l10v::before {
  content: "";
  position: absolute;
  top: -8px;
  left: -8px;
  right: -8px;
  bottom: -8px;
  border: 2px solid var(--secondary-color);
  pointer-events: none;
}

.scrfad-s7qj {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.scrfad-s7qj.visibl-8u0l {
  opacity: 1;
  transform: translateY(0);
}

.tetbg-3zv9 {
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  );
}

.tetbg-5sie {
  background: linear-gradient(
    135deg,
    var(--tertiary-color) 0%,
    var(--quaternary-color) 100%
  );
}

.tetbg-4p0a {
  background: linear-gradient(
    135deg,
    var(--secondary-color) 0%,
    var(--tertiary-color) 100%
  );
}

.tetbg-oz6j {
  background: linear-gradient(
    135deg,
    var(--quaternary-color) 0%,
    var(--primary-color) 100%
  );
}

::selection {
  background: var(--primary-color);
  color: var(--text-light);
}

::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: #f3f4f6;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(
    180deg,
    var(--primary-color),
    var(--secondary-color)
  );
  border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(
    180deg,
    var(--secondary-color),
    var(--tertiary-color)
  );
}
html,
body {
  overflow-x: hidden;
}
/* _qf_safety_net */
.button,
.btn,
button,
[class*="btn-"],
[class^="btn"] {
  justify-content: center;
  align-items: center;
  text-align: center;
}
a.button,
a.btn {
  display: inline-flex;
}
[class*="parbg"],
[class*="parallax-bg"],
.hero-background {
  background-color: #1a1a1a;
}
[data-aos] {
  will-change: opacity, transform;
}
