:root {
  --font-base: "Montserrat";
  --text-primary: #111111;
  --text-secondary: #333333;
  --text-muted: #858585;
  --text-disabled: #b3b3b3;
  --text-highlight: #c2000b;
  --text-black: #000000;
  --text-white: #ffffff;
  --theme-brand: #F4B714;
  --theme-brand-light: #F1D675;
  --theme-accent: #c2000b;
  --theme-highlight: #FFC300;
  --theme-gradient-vertical: linear-gradient(0deg, var(--theme-primary), var(--theme-secondary));
  --theme-gradient-horizontal: linear-gradient(90deg, var(--theme-primary), var(--theme-secondary));
  --theme-gradient-reverse: linear-gradient(270deg, var(--theme-primary), var(--theme-secondary));
  --theme-gradient-inverted: linear-gradient(180deg, var(--theme-primary), var(--theme-secondary));
  --button-primary: var(--theme-brand);
}

/* Fullpage */
.fp-section {
  padding: 0;
  margin: 0;
}
.fp-section .will-animation\:fade-up, .fp-section .will-animation\:fade-left, .fp-section .will-animation\:fade-right {
  opacity: 0;
}
.fp-section .will-animation\:delay-0\.5 {
  animation-delay: 0.5s !important;
}
.fp-section .will-animation\:delay-1 {
  animation-delay: 1s !important;
}
.fp-section .will-animation\:delay-1\.5 {
  animation-delay: 1.5s !important;
}
.fp-section .will-animation\:delay-2 {
  animation-delay: 2s !important;
}
.fp-section .will-animation\:delay-2\.5 {
  animation-delay: 2.5s !important;
}
.fp-section .will-animation\:delay-3 {
  animation-delay: 3s !important;
}
.fp-section.active .will-animation\:fade-up {
  animation: fadeUp 1s ease-out forwards;
}
.fp-section.active .will-animation\:fade-left {
  animation: fadeLeft 1s ease-out forwards;
}
.fp-section.active .will-animation\:fade-right {
  animation: fadeRight 1s ease-out forwards;
}
@keyframes fadeUp {
  0% {
    opacity: 0;
    visibility: hidden;
    transform: translateY(60px);
  }
  30% {
    opacity: 1;
    visibility: visible;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeLeft {
  0% {
    opacity: 0;
    visibility: hidden;
    transform: translateX(-60px);
  }
  30% {
    opacity: 1;
    visibility: visible;
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeRight {
  0% {
    opacity: 0;
    visibility: hidden;
    transform: translateX(60px);
  }
  30% {
    opacity: 1;
    visibility: visible;
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Home */
.home__header.has-decor, .home__header:has(.has-decor) {
  isolation: isolate;
  position: relative;
}
.home__header.has-decor,
.home__header .has-decor {
  isolation: isolate;
  position: relative;
  display: table;
}
.home__header.has-decor:before, .home__header.has-decor:after,
.home__header .has-decor:before,
.home__header .has-decor:after {
  position: absolute;
  z-index: -1;
  width: var(--decor-w, var(--decor-sz));
  height: var(--decor-h, var(--decor-sz));
  pointer-events: none;
}
.home__header.has-decor\:center-y:before, .home__header.has-decor\:center-y:after,
.home__header .has-decor\:center-y:before,
.home__header .has-decor\:center-y:after {
  top: calc(50% - var(--decor-h, var(--decor-sz)) / 2);
}
.home__header.has-decor\:center-x:before, .home__header.has-decor\:center-x:after,
.home__header .has-decor\:center-x:before,
.home__header .has-decor\:center-x:after {
  left: calc(50% - var(--decor-w, var(--decor-sz)) / 2);
}
.home__header.has-decor\:vertical,
.home__header .has-decor\:vertical {
  padding: var(--pd-y, 0) var(--pd-x, 0);
}
.home__header.has-decor\:vertical:before,
.home__header .has-decor\:vertical:before {
  top: 0;
}
.home__header.has-decor\:vertical:after,
.home__header .has-decor\:vertical:after {
  bottom: 0;
}
.home__header.has-decor\:horizontal,
.home__header .has-decor\:horizontal {
  padding: var(--pd-y, 0) var(--pd-x, 0);
}
.home__header.has-decor\:horizontal:before,
.home__header .has-decor\:horizontal:before {
  left: 0;
}
.home__header.has-decor\:horizontal:after,
.home__header .has-decor\:horizontal:after {
  right: 0;
}
.home__header.has-decor\:top,
.home__header .has-decor\:top {
  padding-top: var(--pd-t, 0);
}
.home__header.has-decor\:top:before, .home__header.has-decor\:top:after,
.home__header .has-decor\:top:before,
.home__header .has-decor\:top:after {
  top: 0;
}
.home__header.has-decor\:right,
.home__header .has-decor\:right {
  padding-right: var(--pd-r, 0);
}
.home__header.has-decor\:right:before, .home__header.has-decor\:right:after,
.home__header .has-decor\:right:before,
.home__header .has-decor\:right:after {
  right: 0;
}
.home__header.has-decor\:bottom,
.home__header .has-decor\:bottom {
  padding-bottom: var(--pd-b, 0);
}
.home__header.has-decor\:bottom:before, .home__header.has-decor\:bottom:after,
.home__header .has-decor\:bottom:before,
.home__header .has-decor\:bottom:after {
  bottom: 0;
}
.home__header.has-decor\:left,
.home__header .has-decor\:left {
  padding-left: var(--pd-l, 0);
}
.home__header.has-decor\:left:before, .home__header.has-decor\:left:after,
.home__header .has-decor\:left:before,
.home__header .has-decor\:left:after {
  left: 0;
}
.home__header.has-decor\:line,
.home__header .has-decor\:line {
  --pd-b: 0.75rem;
}
.home__header.has-decor\:line:after,
.home__header .has-decor\:line:after {
  --decor-w: 80px;
  --decor-h: 2px;
  content: "";
  background-color: var(--theme-highlight);
}
.home__header.text-center .gradient-text, .home__header.text-center.has-decor,
.home__header.text-center .has-decor {
  margin-right: auto;
  margin-left: auto;
}

.home__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--gap, 0.5rem);
  width: var(--block-w, 175px);
  height: var(--block-h, 52px);
  border-radius: var(--block-rad, 0);
  background-color: var(--block-bgc-normal, var(--theme-highlight));
  transition: all 0.3s ease-out;
}
.home__btn span {
  font-size: clamp(15px, 14.7157px + 0.0669vw, 16px);
  color: var(--block-clr-normal, var(--text-primary));
  transition: all 0.3s ease-out;
}
.home__btn span:not([class*=fa-]) {
  font-weight: 500;
  text-transform: capitalize;
}
.home__btn:hover {
  background-color: var(--block-bgc-hover, var(--theme-brand-light));
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.5019607843);
}
.home__btn:hover span {
  color: var(--block-clr-hover, var(--text-primary));
}
.home__btn:hover span:not([class*=fa-]) {
  letter-spacing: 1px;
}
.home__btn:hover span[class*=fa-] {
  animation: arrowBounceRight 0.7s linear infinite;
}

/* Swiper */
.swiper-button-next, .swiper-button-prev {
  --swiper-navigation-size: 14px;
  --swiper-navigation-color: var(--text-white);
  opacity: 1;
  top: calc(50% - var(--swiper-button-height, var(--swiper-button-size, 32px)) / 2);
  width: var(--swiper-button-width, var(--swiper-button-size, 32px));
  height: var(--swiper-button-height, var(--swiper-button-size, 32px));
  background-color: rgba(241, 241, 241, 0.7490196078);
  transition: all 0.3s ease-out;
}
.swiper-button-next:after, .swiper-button-prev:after {
  font-weight: 700;
  transition: all 0.3s ease-out;
}
.swiper-button-next:hover, .swiper-button-prev:hover {
  background-color: var(--theme-brand);
}
.swiper-button-next:hover:after, .swiper-button-prev:hover:after {
  color: var(--text-white);
}

.swiper-customize {
  isolation: isolate;
  position: relative;
}
.swiper-customize .swiper {
  position: unset;
}
.swiper-customize .swiper-customize-button {
  border-radius: 0;
  box-shadow: none;
}
.swiper-customize .swiper-customize-button:after {
  display: none;
}

.custom-swiper-pagination {
  position: unset;
  margin-top: 1rem;
}
.custom-swiper-pagination .swiper-pagination-bullet {
  opacity: 1;
  width: 10px;
  height: 10px;
  border: 1px solid #bebebe;
  background-color: transparent;
}
.custom-swiper-pagination .swiper-pagination-bullet-active {
  border-color: var(--theme-brand);
  background-color: var(--theme-brand);
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 1.25rem;
  margin-bottom: 0;
}
.pagination .page-item .page-link {
  color: var(--text-primary);
  cursor: pointer;
}
.pagination .page-item.active .page-link {
  color: #fff;
  border-color: var(--theme-brand);
  background-color: var(--theme-brand);
}

/* Marquee */
.marquee {
  overflow: hidden;
  width: 100%;
}
.marquee__track, .marquee__group {
  display: flex;
}
.marquee__track {
  width: -moz-max-content;
  width: max-content;
  margin-right: var(--gap, 1ch);
  animation: marquee linear infinite;
}
.marquee__group {
  gap: var(--gap, 1ch);
  white-space: nowrap;
}

/* Social */
.social__list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.social__photo {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Search Block */
.search-block {
  --icon-w: 40px;
  overflow: hidden;
  border-radius: 0.5rem;
  background-color: #fff;
}
.search-block .search__inner {
  display: flex;
  height: 36px;
}
.search-block .search__button {
  font-size: 16px;
  color: var(--text-primary);
  display: flex;
  justify-content: center;
  align-items: center;
  width: var(--icon-w);
  background: none;
}
.search-block .search__input {
  font-size: 14px;
  text-indent: 1ch;
  color: var(--text-primary);
  width: calc(100% - var(--icon-w));
  background: none;
  box-shadow: none;
}
.search-block .search__input::placeholder {
  /* autoprefixer: off */
  color: var(--text-secondary);
}

/* Search Toggle */
.search-toggle {
  --icon-w: 40px;
  position: relative;
}
.search-toggle .search__icon {
  font-size: 18px;
  color: var(--text-primary);
  display: flex;
  justify-content: center;
  align-items: center;
  width: var(--search-sz, 32px);
  height: var(--search-sz, 32px);
  border-radius: var(--search-rad, 0.25rem);
  cursor: pointer;
}
.search-toggle .search__icon.active {
  color: #fff;
  background: var(--theme-brand);
}
.search-toggle .search__icon.active > span {
  font-size: 24px;
}
.search-toggle .search__icon.active + .search__grid {
  opacity: 1;
  visibility: visible;
}
.search-toggle .search__grid {
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: calc(100% + 1rem);
  right: 0;
  z-index: 1010;
  display: flex;
  width: 0;
  height: 48px;
  border: 1px solid var(--theme-brand);
  border-radius: 100rem;
  background: #fff;
}
.search-toggle .search__grid .search__button {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  font-size: 18px;
  color: var(--theme-brand);
  width: var(--icon-w);
  background: none;
}
.search-toggle .search__grid .search__input {
  font-size: 14px;
  text-indent: 1ch;
  color: var(--text-primary);
  width: calc(100% - var(--icon-w));
  box-shadow: none;
  padding: 0.25rem 0.5rem;
}
.search-toggle .search__grid input::placeholder {
  /* autoprefixer: off */
  color: var(--text-secondary);
}

/* Product */
.product__item-inner:hover .product__name a {
  color: var(--text-highlight);
}
.product__info {
  margin-top: 0.625rem;
}
.product__name a {
  --line-clamp: 1;
  font-weight: 700;
  font-size: 16px;
  text-transform: capitalize;
}
.product__price--text {
  font-size: 14px;
  color: var(--text-secondary);
}
.product__price--new {
  font-weight: 700;
  font-size: 16px;
  color: var(--theme-brand);
}
.product__price--old {
  font-size: 13px;
  text-decoration: line-through;
  color: var(--text-muted);
  padding-left: 0.5ch;
}
.product__price--per {
  color: var(--text-white);
  position: absolute;
  top: 15px;
  right: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 25px;
  background: var(--theme-brand);
  padding-left: 5px;
  pointer-events: none;
}
.product__price--per:before, .product__price--per:after {
  content: "";
  position: absolute;
}
.product__price--per:before {
  --triangle-h: 12.5px;
  --triangle-w: 9px;
  top: 0;
  left: calc(-1 * var(--triangle-w));
  border-bottom: var(--triangle-h) solid transparent;
}
.product__price--per:after {
  --dot-sz: 6px;
  top: calc(50% - var(--dot-sz) / 2);
  left: 0px;
  width: var(--dot-sz);
  height: var(--dot-sz);
  border-radius: 50%;
  background: #fff;
}

/* Product Template */
.product-template {
  --aside-w: 300px;
}
.product-template__body {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 1.5rem;
}
.product-template__left {
  width: var(--aside-w);
}
.product-template__right {
  flex: 1;
}
.product-template__aside {
  position: sticky;
  top: calc(var(--nav-offset) + 1.5rem);
}

/* Product Detail */
.product-detail__tags {
  margin: 1rem 0;
}
.product-detail__tags-list {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.product-detail__tags-item a {
  font-weight: 500;
  font-size: 14px;
  display: block;
  border-radius: 0.25rem;
  background-color: rgba(163, 10, 16, 0.2509803922);
  padding: 0.25rem 0.5rem 0.125rem;
  transition: all 0.3s ease-out;
}
.product-detail__tags-item a:hover {
  color: var(--text-white);
  background-color: #A30A10;
}
.product-detail__group {
  flex-wrap: wrap;
  gap: 0.5rem;
}
.product-detail__btn {
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  color: var(--text-white);
  height: 45px;
  border-radius: 0.375rem;
  padding: 0rem 1.5rem;
  transition: all 0.3s ease-out;
}
.product-detail__btn--add {
  background-color: #0086c9;
}
.product-detail__btn--add:hover {
  background-color: rgb(0, 154.6, 231.9);
  box-shadow: 0px 2px 10px 0px #0086c9;
}
.product-detail__btn--buy {
  background-color: #f21515;
}
.product-detail__btn--buy:hover {
  background-color: rgb(243.3, 44.4, 44.4);
  box-shadow: 0px 2px 10px 0px #f21515;
}

/* Album */
.album__item-inner:hover .album__name a {
  color: var(--text-highlight);
}
.album__info {
  margin-top: 0.625rem;
}
.album__name {
  margin-bottom: 0;
}
.album__name a {
  font-weight: 700;
  font-size: clamp(16px, 15.7157px + 0.0669vw, 17px);
  text-transform: capitalize;
  color: var(--text-white);
}

/* News */
.news__item-inner:hover .news__name a {
  color: var(--text-highlight);
}
.news__info {
  margin-top: 0.625rem;
}
.news__date {
  text-transform: capitalize;
  margin-bottom: 0.5rem;
}
.news__name {
  margin-bottom: 0.25rem;
}
.news__name a {
  --line-clamp: 2;
  font-weight: 700;
  font-size: 16px;
}
.news__desc {
  font-size: 14px;
  line-height: 1.75em;
  margin-bottom: 0;
}

/* News Detail */
.news-detail {
  --aside-w: 300px;
}
.news-detail__inner {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 1.25rem;
}
.news-detail__left {
  flex: 1;
}
.news-detail__right {
  width: var(--aside-w);
}

/* News Related */
.news-related {
  position: sticky;
  top: calc(var(--nav-offset) + 1.5rem);
}
.news-related__list {
  display: grid;
  grid-gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.news-related__item:first-child .news-related__item-inner {
  flex-direction: column;
}
.news-related__item:not(:first-child) .news-related__photo {
  width: 45%;
}
.news-related__item:not(:first-child) .news-related__info {
  flex: 1;
}
.news-related__item:not(:first-child) .news-related__desc {
  --line-clamp: 2;
}
.news-related__item-inner {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
.news-related__item-inner:hover .news-related__name a {
  color: var(--text-highlight);
}
.news-related__name {
  margin-bottom: 0.25rem;
}
.news-related__name a {
  --line-clamp: 2;
  font-weight: 700;
  font-size: 15px;
  text-transform: capitalize;
}
.news-related__desc {
  font-size: 14px;
  color: var(--text-secondary);
}
.news-related__desc * {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Video */
.video__list.flex-container {
  --columns: 3;
  --space-x: 0.5rem;
  --space-y: calc(var(--space-x) * 2);
}
.video__item {
  cursor: pointer;
}
.video__photo {
  overflow: hidden;
  border-radius: 0.625rem;
}
.video__photo.play-icon {
  position: relative;
}
.video__photo.play-icon:after {
  --decor-w: 50px;
  --decor-h: 35px;
  content: "";
  position: absolute;
  top: calc(50% - var(--decor-h, var(--decor-sz)) / 2);
  left: calc(50% - var(--decor-w, var(--decor-sz)) / 2);
  z-index: 10;
  width: var(--decor-w, var(--decor-sz));
  height: var(--decor-h, var(--decor-sz));
  background: url(../images/play.png) center/contain no-repeat;
  pointer-events: none;
  transition: all 0.3s ease-out;
}
.video__photo.play-icon:hover:after {
  opacity: 0;
  transform: scale(1.25);
}
.video__photo.play-icon:hover .video__photo-inner {
  filter: brightness(1);
}
.video__photo.play-icon .video__photo-inner {
  filter: brightness(0.5);
  transition: all 0.3s ease-out;
}
.video__info {
  margin-top: 0.625rem;
}
.video__name {
  font-weight: 700;
  font-size: clamp(15px, 14.7157px + 0.0669vw, 16px);
  margin-bottom: 0;
}

/* Slideshow */
.slideshow {
  position: relative;
}
.slideshow.fp-table .slideshow__list {
  height: 100%;
}
.slideshow.fp-table .slideshow__list .swiper,
.slideshow.fp-table .slideshow__list img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}

/* Service */
.service__list.flex-container {
  --columns: 2;
  --space-x: 0.75rem;
  --space-y: calc(var(--space-x) * 2);
}
.service__item-inner {
  position: relative;
}
.service__item-inner:hover .service__name a {
  color: var(--theme-brand);
}
.service__photo-inner {
  overflow: hidden;
}
.service__info {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: flex;
  align-items: flex-end;
  background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0) 75%);
  padding: 1.875rem;
}
.service__info-inner {
  width: 100%;
}
.service__name {
  margin-bottom: 1rem;
}
.service__name a {
  --line-clamp: 1;
  font-weight: 700;
  font-size: clamp(20px, 17.7258px + 0.5351vw, 28px);
  color: var(--text-white);
}
.service__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.375rem;
  width: 135px;
  line-height: 42px;
  border: 1px solid white;
  border-radius: 100rem;
  transition: all 0.3s ease-out;
}
.service__btn span {
  color: var(--text-white);
  transition: all 0.3s ease-out;
}
.service__btn:hover {
  border-color: var(--theme-brand);
  background-color: var(--theme-brand);
}
.service__btn:hover span {
  color: var(--text-black);
}
.service__btn:hover span:nth-of-type(1) {
  letter-spacing: 1px;
}
.service__btn:hover span:nth-of-type(2) {
  animation: arrowBounceRight 0.7s linear infinite;
}

/* Process Project */
.process-project {
  overflow: hidden;
  isolation: isolate;
  position: relative;
  background: linear-gradient(90deg, #242424, #474747);
}
.process-project:before {
  opacity: 0.05;
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: url(../images/3d-box-pattern.png) top left/auto repeat;
  pointer-events: none;
}
.process-project:has(.process, .project-featured) .process {
  margin-bottom: clamp(30px, -135px + 15vw, 60px);
}

/* Process */
.process {
  padding-bottom: 0.5rem;
}
.process__list {
  display: flex;
  justify-content: center;
  gap: 0px clamp(20px, -26.8571px + 4.5759vw, 61px);
  list-style: none;
  padding: 0;
  margin: 0;
}
.process__item {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 12px;
}
.process__item:nth-child(1) {
  aspect-ratio: 289/98;
  max-width: 289px;
  height: 98px;
  background: url(../images/process-bg-1.png) center left/contain no-repeat;
  padding-left: 50px;
}
.process__item:nth-child(2) {
  aspect-ratio: 286/99;
  max-width: 286px;
  height: 99px;
  background: url(../images/process-bg-2.png) center left/contain no-repeat;
  padding-left: 80px;
}
.process__item:nth-child(3) {
  aspect-ratio: 278/99;
  max-width: 278px;
  height: 99px;
  background: url(../images/process-bg-3.png) center left/contain no-repeat;
  padding-left: 70px;
}
.process__item:nth-child(4) {
  aspect-ratio: 262/97;
  max-width: 262px;
  height: 97px;
  background: url(../images/process-bg-4.png) center left/contain no-repeat;
  padding-left: 80px;
}
.process__name {
  color: var(--text-white);
  text-align: center;
  margin-bottom: 0;
}
.process__name span {
  font-size: clamp(16px, 14.8629px + 0.2676vw, 20px);
  display: block;
}
.process__name span:nth-of-type(1) {
  font-weight: 600;
  text-transform: capitalize;
}
.process__name span:nth-of-type(2) {
  font-weight: 800;
  text-transform: uppercase;
}

/* Project */
.project__list.flex-container {
  --columns: 3;
  --space-x: 0.5rem;
  --space-y: calc(var(--space-x) * 2);
}
.project__item-inner {
  overflow: hidden;
  position: relative;
}
.project__item-inner:hover .project__info {
  opacity: 1;
  top: 0;
}
.project__info {
  opacity: 0;
  overflow: hidden;
  position: absolute;
  inset: 0;
  top: 100%;
  z-index: 10;
  pointer-events: none;
  display: flex;
  align-items: flex-end;
  background-color: rgba(255, 178, 0, 0.8);
  padding: 1.25rem;
  transition: all 0.3s ease-out;
}
.project__info-inner {
  width: 100%;
}
.project__name {
  margin-bottom: 0.25rem;
}
.project__name a {
  --line-clamp: 2;
  font-weight: 700;
  font-size: clamp(16px, 15.4314px + 0.1338vw, 18px);
  text-transform: capitalize;
}
.project__desc {
  font-size: clamp(14px, 13.7157px + 0.0669vw, 15px);
  margin-bottom: 0;
}

/* Project Featured */
.project-featured {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.project-featured__header {
  flex: 1;
}
.project-featured__body {
  width: 88.6153846154%;
  margin-right: calc(-1 * var(--rest-vw));
}
.project-featured__title {
  margin-bottom: 1rem;
}
.project-featured__desc {
  line-height: 2em;
  color: var(--text-white);
}
.project-featured__btn {
  --block-w: 150px;
}

/* Newsletter */
.newsletter {
  --gap: 0.75rem;
}
.newsletter__form > *:not(:last-child) {
  margin-bottom: var(--gap);
}
.newsletter__list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--gap);
}
.newsletter__list .newsletter__item:not(.none-flex) {
  flex: 1;
}
.newsletter__item input::placeholder, .newsletter__item input:focus,
.newsletter__item textarea::placeholder,
.newsletter__item textarea:focus,
.newsletter__item select::placeholder,
.newsletter__item select:focus, .newsletter__item input,
.newsletter__item textarea,
.newsletter__item select {
  /* autoprefixer: off */
  font-size: 15px;
  background: transparent;
}
.newsletter__item input,
.newsletter__item textarea,
.newsletter__item select {
  width: 100%;
  color: var(--text-white);
  border: none;
  border-bottom: 1px solid var(--text-white);
  border-radius: 0;
  box-shadow: none !important;
  outline: none !important;
}
.newsletter__item input::placeholder, .newsletter__item input:focus,
.newsletter__item textarea::placeholder,
.newsletter__item textarea:focus,
.newsletter__item select::placeholder,
.newsletter__item select:focus {
  /* autoprefixer: off */
  color: var(--text-white);
}
.newsletter__item input:-moz-placeholder, .newsletter__item textarea:-moz-placeholder, .newsletter__item select:-moz-placeholder {
  padding-left: 0;
}
.newsletter__item input:placeholder-shown,
.newsletter__item textarea:placeholder-shown,
.newsletter__item select:placeholder-shown {
  padding-left: 0;
}
.newsletter__item input,
.newsletter__item select {
  height: 52px;
}
.newsletter__item textarea {
  height: 84px !important;
  padding-top: 0.75rem;
}
.newsletter__item select {
  -webkit-appearance: base-select;
     -moz-appearance: base-select;
          appearance: base-select;
  align-items: center;
  padding: 0.375rem 0.75rem;
}
.newsletter__item select::picker-icon {
  transition: 0.4s rotate;
}
.newsletter__item select:open::picker-icon {
  rotate: 180deg;
}
.newsletter__item button {
  display: block;
  width: 100%;
  height: 50px;
  border-radius: 0;
  background: var(--theme-brand);
  transition: all 0.3s ease-out;
  margin-left: auto;
}
.newsletter__item button::placeholder, .newsletter__item button:focus {
  /* autoprefixer: off */
  box-shadow: none !important;
}
.newsletter__item button span {
  color: var(--text-primary);
}
.newsletter__item button span:nth-of-type(1) {
  font-weight: 600;
  font-size: 16px;
  text-transform: capitalize;
}
.newsletter__item button span:nth-of-type(2) {
  font-size: 18px;
}
.newsletter__item button:hover, .newsletter__item button:focus-within {
  letter-spacing: 2px;
  color: var(--text-white);
  box-shadow: 0px 2px 8px 0px var(--theme-brand);
}
.newsletter__item.is-button {
  margin-top: clamp(12px, -324px + 28vw, 40px);
}

/* Footer */
.footer-group {
  font-weight: 500;
  color: var(--text-white);
}
.footer__inner {
  --wrap: 1679px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap-reverse;
  gap: 8px 0;
  background-color: rgba(0, 0, 0, 0.9019607843);
  padding: 20px;
}
.footer__left {
  width: 28.9810860281%;
}
.footer__right {
  width: 69.7376449054%;
  padding: 0px clamp(0px, -185.5072px + 18.1159vw, 50px);
}
.footer__article {
  font-size: 15px;
}
.footer__article-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 120px;
}
.footer__article-item:nth-child(1) {
  width: 38.3141762452%;
}
.footer__article-item:nth-child(2) {
  width: 39.2720306513%;
}
.footer__title {
  position: relative;
  font-weight: 700;
  font-size: clamp(23px, 21.5786px + 0.3344vw, 28px);
  text-transform: capitalize;
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
}
.footer__title:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 36px;
  height: 2px;
  background: var(--text-white);
  pointer-events: none;
}
.footer__name {
  font-weight: 700;
  font-size: clamp(22px, 21.4314px + 0.1338vw, 24px);
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.footer__nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer__nav-item::marker {
  font-size: 12px;
}
.footer__nav-item:not(:last-child) {
  margin-bottom: 1rem;
}
.footer__nav-name.hvr-underline {
  --line-clr: var(--text-white);
}
.footer__nav-name:hover {
  color: var(--text-white);
}
.footer__social {
  margin-top: 2rem;
}
.footer__social .social__list {
  gap: 0.75rem;
}
.footer__map {
  --iframe-h: 560px;
}
.footer__fanpage {
  overflow: hidden;
}
.footer__powered {
  font-size: 14px;
  border-top: 1px solid var(--text-white);
  padding: 1.5rem 0 1.25rem;
}
.footer__powered:has(.footer__statistic) .footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
}
.footer__copyright, .footer__statistic {
  text-align: center;
}
.footer__copyright span:nth-of-type(1) {
  text-transform: uppercase;
  color: var(--theme-brand);
}
.footer__copyright span:nth-of-type(2), .footer__copyright span:nth-of-type(3) {
  display: inline-block;
}
.footer__copyright a {
  color: var(--theme-brand);
}
.footer__copyright a:hover {
  text-decoration: underline;
}
.footer__statistic span:not(:last-of-type) {
  padding-right: 0.75ch;
}

/* Cart Fix */
.cart-fixed {
  color: #fff;
  position: fixed;
  right: 20px;
  bottom: 100px;
  z-index: 999;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--button-primary);
  transition: all 0.3s ease-out;
}
.cart-fixed i {
  font-size: 20px;
}
.cart-fixed span {
  font-size: 12px;
  position: absolute;
  top: 0;
  right: -5px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--theme-brand);
}

/* Scroll to top */
.scroll-to-top {
  --block-sz: 50px;
  opacity: 0;
  visibility: hidden;
  position: fixed;
  right: 20px;
  bottom: -100px;
  z-index: 999;
  display: flex;
  justify-content: center;
  align-items: center;
  width: var(--block-sz);
  height: var(--block-sz);
  border: 2px solid var(--button-primary);
  border-radius: 50%;
  background-color: #fff;
  transition: all 0.3s ease-out;
}
.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
  bottom: 50px;
}
.scroll-to-top.is-bottom, .scroll-to-top:hover {
  background: var(--button-primary);
}
.scroll-to-top span {
  position: absolute;
  left: 32%;
  width: 36%;
  height: 2px;
}
.scroll-to-top span:nth-of-type(1) {
  top: 42%;
}
.scroll-to-top span:nth-of-type(2) {
  transform: scale(0.6);
  top: 55%;
}
.scroll-to-top span:after, .scroll-to-top span:before {
  content: "";
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  background-color: var(--button-primary);
  transition: all 0.3s ease-out;
}
.scroll-to-top span:before {
  left: 0;
  transform: skewY(-35deg);
}
.scroll-to-top span:after {
  right: 0;
  transform: skewY(35deg);
}

.scroll-to-top.is-bottom span:before,
.scroll-to-top.is-bottom span:after,
.scroll-to-top:hover span:before,
.scroll-to-top:hover span:after {
  background-color: #fff;
}

.scroll-to-top:hover span:nth-child(1) {
  animation: floatingArrow 0.7s ease-out 0s infinite normal forwards;
}
.scroll-to-top:hover span:nth-child(2) {
  animation: floatingArrow 0.7s ease-out 0.3s infinite normal forwards;
}