p,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

.h-full {
  height: 100%;
}

/* Flex Property */
.flex {
  display: flex;
}

.inline-flex {
  display: inline-flex;
}

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

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

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

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

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

.flex-wrap {
  flex-wrap: wrap;
}

.flex-col {
  flex-direction: column;
}

.flex-1 {
  flex: 1;
}

.gap-1 {
  gap: 0.25rem;
}
.gap-2 {
  gap: 0.5rem;
}
.gap-3 {
  gap: 0.75rem;
}
.gap-4 {
  gap: 1rem;
}
.gap-5 {
  gap: 1.25rem;
}
.gap-6 {
  gap: 1.5rem;
}
.gap-8 {
  gap: 2rem;
}
.gap-10 {
  gap: 2.5rem;
}
.gap-12 {
  gap: 3rem;
}

/* Text Property */
.text-center {
  text-align: center;
}

.text-xs {
  font-size: 0.75rem;
  line-height: 1.3;
}

.text-sm {
  font-size: 0.875rem;
  line-height: 1.4;
}

.text-base {
  font-size: 1rem;
  line-height: 1.5;
}

.text-lg {
  font-size: 1.125rem;
  line-height: 1.6;
}

.text-xl {
  font-size: 1.25rem;
  line-height: 1.7;
}

.text-2xl {
  font-size: 1.5rem;
  line-height: 1.8;
}

.text-gray {
  color: var(--gray-text);
}

.text-purple {
  color: #8000ff;
}

.text-yellow {
  color: rgb(254 189 105);
}

.font-light {
  font-weight: 200;
}

.font-medium {
  font-weight: 500;
}

.font-semibold {
  font-weight: 600;
}

.font-bold {
  font-weight: 700;
}

/* Spacing Property */
.mb-1 {
  margin-bottom: 0.25rem;
}
.mb-2 {
  margin-bottom: 0.5rem;
}
.mb-3 {
  margin-bottom: 0.75rem;
}
.mb-4 {
  margin-bottom: 1rem;
}
.mb-5 {
  margin-bottom: 1.25rem;
}
.mb-6 {
  margin-bottom: 1.5rem;
}
.mb-8 {
  margin-bottom: 2rem;
}
.mb-10 {
  margin-bottom: 2.5rem;
}
.mr-auto {
  margin-right: auto;
}
.mx-auto {
  margin-right: auto;
  margin-left: auto;
}
.mt-auto {
  margin-top: auto;
}
.md-flex-row {
  flex-direction: row;
}

.gradient-title {
  --purple: rgba(128, 0, 128, 0.6);
  --green: rgba(0, 128, 0, 0.5);
  --cyan: rgba(0, 255, 255, 0.7);
  color: transparent;
  background: var(--purple-yellow-grad);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  -moz-text-fill-color: transparent;
  -moz-background-clip: text;
}

.gradient-text {
  color: transparent;
  background: linear-gradient(to left, rgba(var(--purple-2)), rgba(var(--red)));
  -webkit-background-clip: text;
}

/* start hero section */
.heroSection {
  min-height: calc(100lvh - 4rem);
  scroll-snap-type: y mandatory;
  display: flex;
  /* justify-content: center; */
  align-items: center;
}
.heroSection > div {
  padding-top: 5rem;
  padding-bottom: 5rem;
  scroll-snap-align: start;
  perspective: 50rem;
}
/* .heroSection::before {
  content: "";
  position: absolute;
  top: 0;
  left: 5rem;
  width: 0.0625rem;
  height: 100%;
  background-color: var(--skin-color);
  /* transform: rotate3d(0.05, 1, 1, 45deg); */
/* transform: rotate3d(0, 1, 0.5, 3.142rad); */
/* transform-origin: bottom right 60px; 
} */

/* .heroSection::after {
  content: "";
  position: absolute;
  top: 0;
  right: 5rem;
  width: 0.0625rem;
  height: 100%;
  background-color: var(--skin-color);
  /* transform: perspective(1000px) rotate3d(2, -1, -1, -0.2turn); 
} */

/* end hero section */

.container {
  padding-left: 2rem;
  padding-right: 2rem;
}

@media (max-width: 768px) {
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }
  .heroSection > div::before,
  .heroSection > div::after {
    display: none;
  }
  .md-flex-row {
    flex-direction: column;
  }
  .md-hide {
    display: none;
  }
}

@media screen and (max-width: 1024px) {
  .lg-hide {
    display: none;
  }
  .lg-col-center {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
  }
}

.bounce {
  animation: bouncing 1s infinite;
}

@keyframes bouncing {
  0%,
  100% {
    transform: translateY(-50%);
    animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
  }
  50% {
    transform: none;
    animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
  }
}
