:root {
  --bulma-primary-h: 25deg;
  --bulma-primary-l: 42%;
  --hero-background-color-gradient: linear-gradient(150deg, #ee680a 15%, #f8dd68 65%, #58b2fb 85%);
}

[data-theme="dark"] {
  --hero-background-color-gradient: linear-gradient(150deg, #bb5005 15%, #c8ad34 65%, #2268a2 85%);
}

[data-theme="dark"] .box {
  --bulma-box-shadow: 0 0 1em -0.25em hsla(0deg, 0%, 100%, 0.1), 0 0px 0 1px hsla(0deg, 0%, 100%, 0.02);
}

[data-theme="dark"] .card {
  --bulma-card-shadow: 0 0 1em -0.25em hsla(0deg, 0%, 100%, 0.1), 0 0px 0 1px hsla(0deg, 0%, 100%, 0.02);
}

@font-face {
  font-family: "RethinkSans";
  src: url("../fonts/RethinkSans/RethinkSans-VariableFont_wght.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
}

@font-face {
  font-family: "Anton";
  src: url("../fonts/Anton/Anton-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "BNazanin-Regular";
  src: url("../fonts/BNazanin/BNazanin-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "BNazanin-Bold";
  src: url("../fonts/BNazanin/BNazanin-Bold.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Titr";
  src: url("../fonts/Titr/Titr-Bold.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

html[dir="rtl"] .icon-rotate-rtl {
  transform: translateX(0) rotate(180deg);
}

body {
  overflow-x: hidden;
  overflow-y: hidden;
  margin: 0;
  font-family: "RethinkSans", "BNazanin-Regular", sans-serif;
}

.set-font-family-title {
  font-family: "Anton", "Titr";
}

.header {
  padding-inline: 2rem;
}

.navbar-title {
  display: inline-flex;
  flex-basis: 18rem;
  align-items: center;
  column-gap: .75rem;
  padding-inline-end: 1rem;
}

.navbar-title img {
  height: 1.5rem;
  width: auto;
}

.navbar-title span {
  font-weight: 700;
}

.hero {
  position: relative;
  display: flex;
  background-color: #e6dcd0;
  background-image: url('../images/housetalk-hero-background.png');
  background-position: bottom right;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero-body {
  max-width: 50%;
  text-align: start;
}

.hero-image {
  display: none;
}

@media screen and (max-width: 1024px) {
  .hero {
    background-image: none;
    background-color: #e0d6ca;
  }

  .hero-body {
    max-width: 100%;
    text-align: center;
  }

  .hero-image {
    display: block;
  }

}

.top-0 {
  top: 0;
}

.top-1 {
  top: 1rem;
}

.bottom-0 {
  bottom: 0;
}

.bottom-1 {
  bottom: 1rem;
}

.background-gradient-1 {
  background: linear-gradient(150deg, #ee680a 10%, #f8dd68 50%, #58b2fb 90%);
  border-radius: 0.8rem 0.8rem 0 0;
  height: 500px;
}

.background-gradient-2 {
  background: linear-gradient(-150deg, #ee680a 10%, #f8dd68 50%, #58b2fb 90%);
  border-radius: 0.8rem 0.8rem 0 0;
  height: 250px;
}

.primary-background-color {
  background-color: #e6dcd0;
}

.set-radius-small img {
  border-radius: 0.5rem;
}

.set-radius-normal img {
  border-radius: 0.75rem;
}

.set-radius-large img {
  border-radius: 1rem;
}

.stats {
  padding: 2rem;
  margin: 0.25rem 0;
}

.section-slide {
  box-sizing: border-box;
  display: flex;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.section-slide-content {
  display: flex;
  flex-direction: column;
  height: auto;
  overflow: hidden;
}

.container-fluid {
  width: 100%;
  padding-right: 0;
  padding-left: 0;
  margin-right: auto;
  margin-left: auto;
}

.horizontal-gallery-strip,
.horizontal-gallery-wrapper {
  display: flex;
  flex-wrap: nowrap;
  will-change: transform;
  position: relative;
}

.project-wrap {
  width: 40vw;
  padding: 2rem;
  box-sizing: content-box;
}

@media screen and (max-width: 828px) {
  .project-wrap {
    width: 60vw;
    padding: 1rem;
    box-sizing: content-box;
  }
}

.project-wrap img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}

.carousel-wrap {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
}

.carousel-viewport {
  overflow: hidden;
  border-radius: 1.5rem;
}

.carousel-track {
  display: flex;
  will-change: transform;
}

.carousel-slide {
  min-width: 100%;
  padding: 0.5rem;
  box-sizing: border-box;
}

.slide-card {
  min-height: 320px;
  border-radius: 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 2rem;
  box-shadow: 0 1rem 2rem rgba(10, 10, 10, 0.12);
}

@media (max-width: 768px) {
  .carousel-wrap {
    grid-template-columns: 1fr;
  }

  .carousel-btn {
    display: none;
  }
}

.accordion {
  overflow: hidden;
  margin: 0 auto;
  padding: 0;
}

.accordion-item+.accordion-item {
  border-top: 1px solid #edf0f5;
}

.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 1.25rem;
  border: 0;
}

.accordion-icon {
  display: grid;
  flex: 0 0 auto;
}

.accordion-item.is-active .accordion-icon {
  transform: rotate(180deg);
}

.accordion-panel {
  height: 0;
  overflow: hidden;
}

.accordion-content {
  padding: 1.25rem 1.25rem;
}

.tabs ul {
  margin-inline-start: 0;
}

.tab-panel {
  display: none;
  opacity: 0;
  transform: translateY(8px);
}

.tab-panel.is-active {
  display: block;
  animation: fadeUp 0.35s ease forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}