body {
  font-family: "Poppins", sans-serif !important;
}

/* ******************************************************************** */
/* BUTTON */

.btn-wrapper {
  padding: 0.75rem 2.5rem;
  gap: 0.625rem;
  color: #fff;
  border: 1px solid #fff;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  background: transparent;
  transition: all 0.3s ease;
  overflow: hidden;
}

.btn-wrapper span {
  font-weight: 500;
  position: relative;
  z-index: 2;
}

.btn-wrapper:hover {
  border-color: transparent;
}

.btn-wrapper::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  background: linear-gradient(90deg, #fff 50%, transparent 50%) top / 200% 1px
      no-repeat,
    linear-gradient(180deg, #fff 50%, transparent 50%) right / 1px 200%
      no-repeat,
    linear-gradient(270deg, #fff 50%, transparent 50%) bottom / 200% 1px
      no-repeat,
    linear-gradient(0deg, #fff 50%, transparent 50%) left / 1px 200% no-repeat;
  opacity: 0;
  z-index: 1;
}

.btn-wrapper:hover::before {
  opacity: 1;
  animation: borderRun 1.2s ease-in-out forwards;
}

@keyframes borderRun {
  0% {
    background-position: 100% 0, 0 100%, 0% 100%, 100% 0;
  }
  25% {
    background-position: 0% 0, 0 100%, 0% 100%, 100% 0;
  }
  50% {
    background-position: 0% 0, 0 0%, 0% 100%, 100% 0;
  }
  75% {
    background-position: 0% 0, 0 0%, 100% 100%, 100% 0;
  }
  100% {
    background-position: 0% 0, 0 0%, 100% 100%, 100% 100%;
  }
}

.btn-wrapper:hover svg {
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}

svg {
  transition: transform 0.3s ease;
}

/* ******************************************************************** */
/* HERO */
.hero {
  position: relative;
  height: 100vh;   /* fallback */
  height: 100dvh;   /* fallback */
  overflow: hidden;
}

.hero .row {
  height: 100%;
  
}

.hero .col-12 {
  position: relative;
  overflow: hidden;
}

.hero .col-12::after {
  content: "";
  position: absolute;
  inset: 0;
  background: inherit;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right center;
  transform: scale(1);
  z-index: 0;
  animation: pulseZoom 6s ease-in-out infinite;
}

.hero .col-12:hover::after {
  animation-play-state: paused;
}

.hero .col-12::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.hero .col-12:hover::before {
  animation-play-state: paused;
}

.hero .col-12 a {
  text-decoration: none;
  color: #fff;
}

.hero .col-12 .background-overlay {
  position: relative;
  z-index: 2;
  gap: 18rem;
}

.logo {
  padding-top: 4rem;
}

.logo img {
  width: 13.9rem;
  height: 2.74344rem;
}

.content-box {
  gap: 2rem;
  max-width: 31.25rem;
  color: #fff;
}

.content-box .text-box h1 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 2.5rem;
}

.content-box .text-box p {
  font-size: 1rem;
  margin-bottom: 0;
}

.col-12.right {
  position: relative;
}

.blue-can {
  position: absolute;
  top: -150px;
  right: -150px;
  width: 25%;
  transform: translateX(-50%) rotate(-15deg);
  animation: dropIn 2s ease-out forwards;
  animation-delay: 0s;
  z-index: 0;
  opacity: 0;
  height: auto;
}

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

@keyframes dropIn {
  from {
    transform: translate(0vw, -100vh) rotate(0deg);
    opacity: 0;
  }
  to {
    transform: translate(-37vw, 40vh) rotate(0deg);
    opacity: 1;
  }
}
