/* LEARN MORE BTN */
.learn-more {
  position: relative;
  display: inline-block;
  cursor: pointer;
  outline: none;
  border: 0;
  vertical-align: middle;
  text-decoration: none;
  background: transparent;
  padding: 0;
}

.learn-more {
  width: 12rem;
  height: auto;
}

.learn-more .circle {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: relative;
  display: block;
  margin: 0;
  width: 3rem;
  height: 3rem;
  background: #ffffff;
  border-radius: 1.625rem;
}

.learn-more .circle .icon {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  background: #fff;
}

.learn-more .circle .icon.arrow {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  left: 0.625rem;
  width: 1.125rem;
  height: 0.125rem;
  background: none;
}

.learn-more .circle .icon.arrow::before {
  position: absolute;
  content: "";
  top: -0.29rem;
  right: 0.0625rem;
  width: 0.625rem;
  height: 0.625rem;
  border-top: 0.125rem solid var(--theme-1);
  border-right: 0.125rem solid var(--theme-1);
  transform: rotate(45deg);
}

.learn-more .button-text {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.75rem 0;
  margin: 0 0 0 1.85rem;
  color: #ffffff;
  font-weight: 500;
  text-align: center;
  text-transform: uppercase;
}

.learn-more:hover .circle {
  width: 100%;
}

.learn-more:hover .circle .icon.arrow {
  background: #fff;
  transform: translate(1rem, 0);
}

.learn-more:hover .button-text {
  color: var(--theme-1);
  font-weight: 600;
}

/* PATTERN */
.pattern,
.pattern > div {
  position: relative;
}

.pattern::before,
.pattern::after {
  content: "";
  position: absolute;
  background-image: url(../asset/home/pattern.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: calc(759px * 0.5);
  height: calc(1080px * 0.5);
}

.pattern::before {
  top: 0;
  left: calc(-759px * 0.44);
}

.pattern::after {
  bottom: 0;
  right: calc(-759px * 0.44);
}

/* THEME BTN */
.theme-btn-1,
.theme-btn-2 {
  background-color: var(--theme-1);
  color: #ffffff;
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  transition: all 0.1s ease-in;
}

.theme-btn-1:hover,
.theme-btn-2:hover {
  gap: 1em;
}
.theme-btn-2 {
  background-color: var(--theme-2);
  color: #000000;
}

/* SWIPER */
.swiper-button-next,
.swiper-button-prev {
  color: #ffffff !important;
  margin: 12px !important;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 14px !important;
  background-color: var(--theme-1);
  opacity: 0.8;
  min-width: 40px;
  min-height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.swiper-pagination-bullet-active {
  background-color: var(--theme-2) !important;
}

/* WHITE BG ICON   */
.white-bg-icon {
  min-height: 50px;
  min-width: 50px;
  background-color: rgba(255, 255, 255, 0.171);
}

.theme-hyper {
  color: var(--theme-3);
  transition: all 0.3s ease-in;
}
.theme-hyper:hover {
  color: var(--theme-4);
}

.form-control:focus,
.form-select:focus,
.form-check-input {
  box-shadow: none !important;
  border-color: var(--theme-2) !important;
}

/* wave-up-down */
.wave-up-down {
  animation: waveMotion 3s infinite ease-in-out;
}

@keyframes waveMotion {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}

/* highlight-row */
.highlight-row {
  background-color: #fce4dc !important; 
}
