/* utility container */

.u-container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1480px;
  height: 100%;
  margin: 0 auto;
  padding: 0 var(--container-padding);
  display: flex;
  flex-wrap: wrap;
}

.u-container.is-small {
  max-width: 560px;
}

@media(max-width: 1025px) {
  .u-container,
  .u-container.is-small {
    max-width: 480px;
  }
}

/* utility flex */

.u-flex {
  display: flex;
  flex-wrap: wrap;
}

.u-flex-nowrap {
  flex-wrap: nowrap;
}

.u-flex-horizontal-space-between {
  justify-content: space-between;
}

.u-flex-horizontal-center {
  justify-content: center;
}

.u-flex-horizontal-end {
  justify-content: flex-end;
}

.u-flex-vertical-center {
  align-items: center;
}

.u-flex-vertical-start {
  align-items: flex-start;
}

.u-flex-vertical-end {
  align-items: flex-end;
}

.u-flex-direction-column {
  flex-direction: column;
}

.u-flex-gap-6 {
  gap: 6px;
}

.u-flex-gap-8 {
  gap: 6px;
}

.u-flex-gap-20 {
  gap: 20px;
}

.u-flex-gap-40 {
  gap: 40px;
}

.u-flex-gap-80 {
  gap: 80px;
}

/* utility margin */

.u-m-0a {
  margin: 0 auto;
}

.u-mr-0 {
  margin-right: 0;
  margin-left: auto;
}

.u-mb-6 {
  margin-bottom: 8px;
}

.u-mb-10 {
  margin-bottom: 10px;
}

.u-mb-20 {
  margin-bottom: 20px;
}

.u-mb-60 {
  margin-bottom: 60px;
}

.u-mb-120 {
  margin-bottom: 120px;
}

.u-mt-16 {
  margin-top: 16px;
}

/* utility padding */

.u-py-8 {
  padding-top: 8px;
  padding-bottom: 8px;
}

.u-py-20 {
  padding-top: 20px;
  padding-bottom: 20px;
}

.u-py-40 {
  padding-top: 40px;
  padding-bottom: 40px;
}

.u-py-60 {
  padding-top: 60px;
  padding-bottom: 60px;
}

.u-py-120 {
  padding-top: 120px;
  padding-bottom: 120px;
}

.u-py-180 {
  padding-top: 180px;
  padding-bottom: 180px;
}

@media (max-width: 1025px) {
  .u-py-180 {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}

/* utility width */

.u-width-100 {
  width: 100%;
}

.u-width-50 {
  width: 48%;
}

.u-width-40 {
  width: 40%;
}

.u-width-30 {
  width: 30%;
}

.u-max-width-600 {
  width: 100%;
  max-width: 600px;
}

@media (max-width: 1025px) {
  .u-width-30,
  .u-width-40,
  .u-width-50 {
    width: 100%;
  }
}

/* utility button */

.u-btn {
  width: fit-content;
  height: fit-content;
  font-size: 12px;
  line-height: 100%;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-align: center;
  text-transform: uppercase;
  border-radius: 30px;
  border: 2px solid var(--dark-color);
  transition: all 0.2s ease-in-out;
  padding: 18px 32px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
}

.u-btn:hover {
  opacity: 0.8;
}

.u-btn.is-primary {
  color: var(--white-color);
  background: var(--dark-color);
}

.u-btn.is-secondary {
  color: var(--dark-color);
  background-color: var(--white-color);
}

.u-btn.is-secondary:hover {
  opacity: 1;
  color: var(--white-color);
  background-color: var(--dark-color);
}

.u-btn.is-small {
  font-size: 9px;
  border-width: 1px;
  padding: 8px 16px;  
}

.u-btn.is-minimal {
  color: var(--dark-color);
  background-color: transparent;
  border: transparent;
  padding: 0;
  font-weight: 600;
}

/* utility opacity */

.u-opacity-0 {
  opacity: 0;
}

/* utility desktop and movile visibility */

.u-mobile-visible {
  display: none;
}

.u-desktop-visible {
  display: flex;
}

@media(max-width: 1025px) {
  .u-mobile-visible {
    display: flex;
  }

  .u-desktop-visible {
    display: none;
  }
}

/* utility display */

.u-display-none {
  display: none;
}

/* utility heading */

.u-heading-1 {
  font-size: 68px;
  line-height: 100%;
  font-weight: 500;
  font-family: 'Titillium Web', Arial, sans-serif;
}

.u-heading-2 {
  font-size: 34px;
  line-height: 100%;
  font-weight: 500;
  font-family: 'Titillium Web', Arial, sans-serif;
}

@media (max-width: 1025px) {
  .u-heading-1 {
    font-size: 48px;
  }
}

/* utility font */

.u-font-uppercase {
  text-transform: uppercase;
}

.u-font-center {
  text-align: center;
}

.u-font-lighter {
  opacity: 0.4;
}

.u-font-medium {
  font-weight: 500;
}

.u-font-semibold {
  font-weight: 600;
}

.u-font-small {
  font-size: 80%;
  line-height: 150%;
}

/* utility burger */

.u-burger {
  display: block;
  width: 22px;
  height: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.u-burger__line {
  display: block;
  height: 2px;
  width: 100%;
  border-radius: 10px;
}

.u-burger__line:nth-child(1) {
  transform-origin: 0% 0%;
  transition: transform 0.4s ease-in-out;
}

.u-burger__line:nth-child(2) {
  transition: transform 0.2s ease-in-out;
}

.u-burger__line:nth-child(3) {
  transform-origin: 0% 100%;
  transition: transform 0.4s ease-in-out;
}

.u-burger.is-close .u-burger__line:nth-child(1) {
  transform: rotate(45deg);
}

.u-burger.is-close .u-burger__line:nth-child(2) {
  transform: scaleY(0);
}

.u-burger.is-close .u-burger__line:nth-child(3) {
  transform: rotate(-45deg);
}

/* utlity fade-in */

.u-fade-in {
  opacity: 0;
  animation: fadeIn 0.2s ease-in forwards;
  animation-delay: 0s; 
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* utility colors */

.u-color-dark-theme {
  background-color: var(--dark-color);
  color: var(--white-color);
}

/* utility marquee */

.u-marquee {
  width: 100%;
  overflow: hidden;
}

.u-marquee__container {
  position: relative;
  display: flex;
  width: 100%;
  justify-content: space-between;
}

.u-marquee__list {
  animation-name: marquee;
  animation-duration: 20s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  flex-shrink: 0;
}

.u-marquee__list li {
  width: fit-content;
  display: inline-block;
  list-style: none;
  padding-right: 60px;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

/* utility visual full screen */

.u-visual-full {
  height: 100vh;
  width: 100vw;
  -o-object-fit: cover;
  object-fit: cover;
  object-position: center;
}

/* utility blend-mode-difference */

.u-blend-mode-difference {
  mix-blend-mode: difference;
}

.u-blend-mode-difference * {
  color: white !important;
}

/* pin sections */

.u-pin__heading {
  z-index: 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}

.u-pin__body {
  z-index: 2;
  position: relative;
  overflow: hidden;
  background: var(--white-color);
  min-height: 100vh;
  margin-top: 90vh;
  margin-bottom: 360px;
}

.u-pin__body.is-250 {
  margin-top: 250vh;
}

.u-pin__footing {
  z-index: 1;
  position: fixed;
  top: auto;
  left: 0;
  bottom: 0;
}

@media (max-width: 1025px) {
  .u-pin__body {
    margin-bottom: 100vh;
  }
}

/* utility decoration */

/* .u-decoration-shape {
  width: 1280px;
  height: 1280px;
  filter: blur(25px);
  z-index: 0;
  position: absolute;
  cursor: default;
  top: -480px;
  left: -680px;
  transform: rotate(0deg);
  animation: floatAnimation 10s ease infinite;  
}

@keyframes floatAnimation {
  0% {
    transform: rotate(0deg) translate(0px, 0px);
  }
  25% {
    transform: rotate(60deg) translate(60px, -45px);
  }
  50% {
    transform: rotate(90deg) translate(45px, 75px);
  }
  75% {
    transform: rotate(60deg) translate(-60px, -60px);
  }
  100% {
    transform: rotate(0deg) translate(0px, 0px);
  }
}

@media (max-width: 1025px) {
  .u-decoration-shape {
    width: 680px;
    height: 680px;
    top: -300px;
    left: -200px;
  }
} */
