:root {
  --anun-yellow: #f7b817;
  --anun-black: #0a0a0a;
  --anun-muted: #6f6f6f;
  --anun-container: 1440px;
  --anun-gutter: 50px;
  --anun-header-height: 114px;
  --anun-title-font:
    "Merriweather Sans", "BlinkMacSystemFont", -apple-system, "Roboto",
    "Lucida Sans";
  --anun-body-font: "Questrial", Arial, "Helvetica Neue", sans-serif;
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body.anun-static {
  margin: 0;
  background: #fff;
  color: var(--anun-black);
  font-family: var(--anun-body-font);
  font-size: 14px;
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
h1,
h2 {
  font-family: var(--anun-title-font);
}
#wrapper {
  overflow-x: hidden;
}
.anun-static a {
  color: inherit;
  text-decoration: none;
}
.anun-static img {
  display: block;
  max-width: 100%;
  height: auto;
}
.anun-static h1,
.anun-static h2,
.anun-static h3,
.anun-static h4,
.anun-static h5,
.anun-static h6 {
  font-family: var(--anun-title-font);
  font-weight: 600;
  line-height: 1.18;
  margin: 0 0 16px;
  letter-spacing: 0;
}

.header-spacer {
  display: block;
  height: var(--anun-header-height);
}
.static-container {
  max-width: var(--anun-container);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--anun-gutter);
  padding-right: var(--anun-gutter);
}
.static-header {
  height: var(--anun-header-height);
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}
.static-navbar {
  height: var(--anun-header-height);
  padding: 0;
  display: flex;
  align-items: center;
  gap: 28px;
}
.static-logo {
  display: inline-flex;
  align-items: center;
  padding: 0;
  margin: 0;
  line-height: 0;
}
.static-logo img {
  height: 30px;
  width: auto;
}
.static-nav-scroll {
  margin-left: auto;
  overflow: visible;
}
.static-header .navbar-nav {
  gap: 28px;
}
.static-header .nav-link {
  color: #111;
  font-size: 14px;
  padding: 20px 0;
  font-weight: 400;
  white-space: nowrap;
  line-height: 1;
}
.static-header .nav-link.active,
.static-header .nav-link:hover {
  color: var(--anun-yellow);
}
.static-search-button {
  width: 16px;
  height: 16px;
  border: 0;
  background: transparent;
  position: relative;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  color: #111;
  flex: 0 0 auto;
}
.static-search-button:before,
.static-search-button:after {
  display: none;
}
.static-search-button svg {
  display: block;
  width: 16px;
  height: 16px;
  fill: currentColor;
}
.static-search-button span {
  display: none;
}
.static-search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.34);
  color: #fff;
  animation: static-search-backdrop-in 0.24s ease both;
}
.static-search-panel {
  position: relative;
  height: min(62vh, 560px);
  min-height: 470px;
  padding: 74px var(--anun-gutter) 72px;
  background: #080808;
  transform-origin: top;
  animation: static-search-slide-in 0.42s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.static-search-logo {
  position: absolute;
  top: 76px;
  left: var(--anun-gutter);
  display: inline-flex;
  align-items: center;
  line-height: 0;
}
.static-search-logo img {
  width: 86px;
  height: auto;
}
.static-search-close {
  position: absolute;
  top: 80px;
  right: var(--anun-gutter);
  width: 24px;
  height: 24px;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
}
.static-search-close:before,
.static-search-close:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 26px;
  height: 1px;
  background: rgba(255, 255, 255, 0.78);
  transform-origin: center;
}
.static-search-close:before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.static-search-close:after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.static-search-form {
  position: absolute;
  left: var(--anun-gutter);
  right: var(--anun-gutter);
  bottom: 132px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 56px;
  align-items: center;
  border-bottom: 2px solid var(--anun-yellow);
  animation: static-search-content-in 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.08s
    both;
}
.static-search-form input {
  width: 100%;
  height: 84px;
  border: 0;
  outline: 0;
  background: transparent;
  color: #fff;
  font-family: var(--anun-body-font);
  font-size: clamp(34px, 3.1vw, 58px);
  font-weight: 400;
  line-height: 1;
  padding: 0 20px 0 0;
}
.static-search-form input::placeholder {
  color: rgba(255, 255, 255, 0.36);
  opacity: 1;
}
.static-search-form button {
  width: 56px;
  height: 56px;
  border: 0;
  background: transparent;
  color: #fff;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.static-search-form button svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}
@keyframes static-search-backdrop-in {
  from {
    background: rgba(0, 0, 0, 0);
  }
  to {
    background: rgba(0, 0, 0, 0.34);
  }
}
@keyframes static-search-slide-in {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes static-search-content-in {
  from {
    opacity: 0;
    transform: translateY(-22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.static-section {
  position: relative;
}
.static-section > .container-fluid {
  position: relative;
  z-index: 1;
}
.static-section-full {
  overflow: hidden;
}
.static-inner-row {
  margin-left: 0;
  margin-right: 0;
  --bs-gutter-y: 0;
}
.static-hero-row {
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  color: #fff;
}
.static-hero-row:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    var(--static-hero-overlay-start, rgba(0, 0, 0, 0.58)),
    var(--static-hero-overlay-end, rgba(0, 0, 0, 0.18))
  );
  z-index: 0;
}
.static-hero-row .static-light-column,
.static-hero-row .static-light-column h1,
.static-hero-row .static-light-column h2,
.static-hero-row .static-light-column h3,
.static-hero-row .static-light-column h4,
.static-hero-row .static-light-column h5,
.static-hero-row .static-light-column h6,
.static-hero-row .static-light-column p {
  color: #fff;
}
.static-column-inner:empty {
  min-height: 1px;
}
.static-text {
  text-align: inherit;
  margin-bottom: 28px;
  font-size: 14px;
  line-height: 1.45;
  color: #555;
}
.static-text h1,
.static-text h2,
.static-text h3,
.static-text h4,
.static-text h5,
.static-text h6 {
  color: var(--anun-black);
}
.static-text h1 {
  font-size: 60px;
}
.static-text h2 {
  font-size: 24px;
  line-height: 1.24;
  margin-bottom: 14px;
  font-weight: 600;
}
.static-text h3 {
  font-size: 28px;
  font-weight: 500;
}
.static-text h4 {
  font-size: 19px;
}
.static-text h5 {
  font-size: 18px;
}
.static-text p {
  font-size: 14px;
  line-height: 1.45;
  color: #555;
  margin: 0 0 12px;
}
.static-light-column .static-text,
.static-light-column .static-text p {
  color: rgba(255, 255, 255, 0.88);
}
.static-spacer {
  display: block;
}
.static-separator {
  border: 0;
  border-top: 1px solid #e6e6e6;
  margin: 40px 0;
  opacity: 1;
}
.static-slide-title h1 {
  font-size: 42px;
  line-height: 1.05;
  margin-bottom: 18px;
}
.static-button {
  height: 42px;
  min-width: 132px;
  border-radius: 0;
  padding: 4px 22px;
  font-size: 12px;
  font-weight: 700;
  line-height: 34px;
  color: #fff !important;
  border-radius: 3px;
}
.static-portfolio-slider {
  position: relative;
  height: calc(100vh - 90px);
  min-height: 620px;
  overflow: hidden;
  background: #111;
}
.static-portfolio-track,
.static-portfolio-slide {
  height: 100%;
}
.static-portfolio-slide {
  position: absolute;
  inset: 0;
  display: none;
  color: #fff;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.static-portfolio-slide.is-active {
  display: block;
}
.static-portfolio-slide:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.03));
  z-index: 1;
}
.static-portfolio-slide .static-container {
  position: relative;
  z-index: 2;
}
.static-portfolio-slide h1 {
  font-size: 58px;
  line-height: 1.15;
  max-width: 560px;
  margin: 0;
  color: #fff;
  font-weight: 500;
}
.static-portfolio-slide h1 a {
  color: #fff;
}
.static-slider-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 42px;
  z-index: 4;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.static-slider-dot {
  width: 160px;
  min-height: 35px;
  padding-top: 13px;
  border-top: 2px solid rgba(255, 255, 255, 0.62);
  color: rgba(255, 255, 255, 0.62);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  cursor: pointer;
}
.static-slider-dot.is-active {
  border-top-color: var(--anun-yellow);
  color: #fff;
}
.static-product-carousel {
  --product-shift: 0px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  gap: 62px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scrollbar-width: none;
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 8px 0 8px;
}
.static-product-carousel::-webkit-scrollbar,
.static-content-carousel::-webkit-scrollbar {
  display: none;
}
.static-product-card {
  position: relative;
  text-align: center;
  background: #fff;
}
.static-product-card-carousel {
  flex: 0 0 160px;
  width: 160px;
  opacity: 1;
  filter: none;
  transform: translateX(var(--product-shift));
  transition:
    transform 0.35s ease,
    opacity 0.22s ease,
    filter 0.22s ease;
}
.static-product-carousel.is-product-instant .static-product-card-carousel {
  transition:
    opacity 0.22s ease,
    filter 0.22s ease;
}
.static-product-card-carousel.is-product-side {
  opacity: 0.2;
  filter: none;
  pointer-events: none;
}
.static-product-image {
  height: 150px;
  margin: 0 0 22px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.static-product-image a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.static-product-image img {
  max-height: 200px;
  max-width: 220px;
  width: auto;
  height: auto;
  object-fit: contain;
  margin: 0 auto;
}
.static-product-card h3 {
  font-size: 14px;
  line-height: 1;
  min-height: 32px;
  margin: 0 0 5px;
  font-weight: 400;
}
.static-product-card h3 a {
  color: #222;
}
.static-product-actions {
  height: 25px;
  overflow: hidden;
  font-size: 14px;
  line-height: 25px;
}
.static-product-price,
.static-product-readmore {
  display: block;
  height: 25px;
  line-height: 25px;
  transition: transform 0.22s ease;
}
.static-product-price {
  color: #8a8a8a;
}
.static-product-readmore {
  color: #111;
  font-size: 14px;
  font-weight: 400;
  text-transform: none;
}
.static-product-card:hover .static-product-price,
.static-product-card:hover .static-product-readmore {
  transform: translateY(-25px);
}
.static-product-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 40px 0 26px;
}
.static-product-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.2);
  cursor: pointer;
}
.static-product-dots .is-active {
  background: #000;
}
.static-product-grid .static-product-card {
  padding: 0 0 22px;
}
.static-product-grid .static-product-image {
  height: 240px;
}
.static-product-grid .static-product-image img {
  max-height: 240px;
  max-width: 100%;
}
.static-content-carousel {
  display: flex;
  flex-wrap: nowrap;
  gap: 28px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scrollbar-width: none;
  max-width: none;
  margin-left: auto;
  margin-right: auto;
}
.static-fancy-carousel {
  align-items: stretch;
  margin-left: 0;
  margin-right: 0;
}
.static-fancy-box {
  position: relative;
  flex: 0 0 calc(25% - 21px);
  min-height: 450px;
  min-width: 240px;
  overflow: hidden;
  background: #222;
  color: #fff;
}
.static-fancy-box:after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    55deg,
    rgba(242, 32, 66, 0),
    rgba(247, 184, 23, 0.9)
  );
  opacity: 0;
  transition: opacity 0.25s ease;
}
.static-fancy-box:hover:after {
  opacity: 1;
}
.static-fancy-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-position: center;
  background-size: cover;
  transition: transform 0.35s ease;
}
.static-fancy-link {
  position: absolute;
  inset: 0;
  z-index: 4;
}
.static-fancy-link:before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 30px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 50%;
  transform: translateX(-50%);
  transition:
    border-color 0.2s ease,
    background-color 0.2s ease;
}
.static-fancy-link:after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 47px;
  width: 8px;
  height: 8px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: translateX(-65%) rotate(45deg);
}
.static-fancy-link:hover:before {
  border-color: #fff;
  background-color: rgba(255, 255, 255, 0.08);
}
.static-fancy-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  text-align: left;
  padding: 10%;
  color: #fff;
}
.static-fancy-align-center .static-fancy-content {
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 28px;
}
.static-fancy-content h1,
.static-fancy-content h2,
.static-fancy-content h3,
.static-fancy-content h4,
.static-fancy-content h5,
.static-fancy-content h6,
.static-fancy-content p {
  color: #fff;
  margin-bottom: 0;
}
.static-fancy-content h4 {
  font-size: 21px;
  font-weight: 600;
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.28);
}
.static-fancy-content h5 {
  font-size: 18px;
  line-height: 1.18;
  font-weight: 600;
}
.static-fancy-content h6 {
  font-size: 12px;
  line-height: 1;
  margin-bottom: 18px;
  font-weight: 600;
}
.static-fancy-box:hover .static-fancy-bg {
  transform: scale(1.04);
}
.static-team-row {
  width: 100%;
}
.static-team-member {
  margin-bottom: 30px;
  color: #111;
}
.static-team-member img {
  width: 100%;
  filter: grayscale(100%);
}
.static-team-member h6 {
  font-size: 20px;
  line-height: 1.15;
  font-weight: 400;
  margin: 25px 0 0;
  color: #111;
}
.static-team-member p {
  font-size: 14px;
  line-height: 1.35;
  margin: 0;
  color: rgba(0, 0, 0, 0.4);
}
.static-client-carousel {
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  min-height: 88px;
  margin-top: 4px;
  margin-bottom: 10px;
}
.static-client-logo {
  flex: 0 0 165px;
  min-height: 78px;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.static-client-logo a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.static-client-logo img {
  max-width: 155px;
  max-height: 75px;
  object-fit: contain;
}
.static-content-dots {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin: 22px 0 18px;
}
.static-content-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #d5d5d5;
  cursor: pointer;
}
.static-content-dots .is-active {
  background: #111;
}
.static-image img {
  width: 100%;
  height: auto;
}
.static-portfolio-grid {
  max-width: var(--anun-container);
  margin-left: auto;
  margin-right: auto;
  --bs-gutter-x: 0;
  --bs-gutter-y: 0;
}
.static-portfolio-grid > [class*="col-"] {
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  margin-top: var(--bs-gutter-y);
}
.static-portfolio-mini-padding {
  max-width: calc(var(--anun-container) + 10px);
  --bs-gutter-x: 10px;
  --bs-gutter-y: 10px;
}
.static-portfolio-card {
  aspect-ratio: 3/2;
  position: relative;
  overflow: hidden;
  background: #111;
  color: #111;
}
.static-portfolio-card > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s ease;
}
.static-portfolio-link {
  position: absolute;
  inset: 0;
  z-index: 3;
}
.static-portfolio-style2 .static-portfolio-content {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  width: 50%;
  padding: 10%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  background: #fff;
  color: #111;
  transform: translateX(100%);
  transition: transform 0.25s ease;
}
.static-portfolio-style2 .static-portfolio-content h6 {
  font-size: 20px;
  line-height: 1.15;
  font-weight: 500;
  color: #111;
  margin: 0 0 5px;
}
.static-portfolio-style2 .static-portfolio-heading span {
  display: block;
  font-size: 13px;
  line-height: 1.35;
  color: #555;
}
.static-portfolio-style2 .static-portfolio-read-more {
  font-size: 14px;
  line-height: 1.2;
  font-weight: 400;
  color: #111;
  text-transform: none;
}
.static-portfolio-style2 .static-portfolio-card:hover > img {
  transform: translateX(-10%);
}
.static-portfolio-style2
  .static-portfolio-card:hover
  .static-portfolio-content {
  transform: translateX(0);
}
.static-portfolio-style1 .static-portfolio-content {
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: 10%;
  z-index: 2;
  color: #fff;
}
.static-portfolio-style1 .static-portfolio-card:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.62));
  opacity: 0;
  transition: opacity 0.25s ease;
}
.static-portfolio-style1 .static-portfolio-card:hover:after {
  opacity: 1;
}
.static-posts {
  max-width: var(--anun-container);
  margin-left: auto;
  margin-right: auto;
}
.static-post-card {
  margin-bottom: 40px;
}
.static-post-gallery {
  position: relative;
  overflow: hidden;
  border-radius: 3px;
  margin: 0 0 30px;
  background: #f5f5f5;
}
.static-post-gallery a {
  display: block;
  position: relative;
}
.static-post-gallery img {
  width: 100%;
  height: auto;
  border-radius: 3px;
  transition: transform 0.25s ease;
}
.static-post-overlay {
  position: absolute;
  inset: 0;
  border-radius: 3px;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.25s ease;
}
.static-post-overlay svg {
  width: 50px;
  height: auto;
  fill: #fff;
  opacity: 0;
  transform: translateX(-30px) scale(0.85);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}
.static-post-card:hover .static-post-gallery img {
  transform: scale(1.05);
}
.static-post-card:hover .static-post-overlay {
  opacity: 1;
}
.static-post-card:hover .static-post-overlay svg {
  opacity: 1;
  transform: translateX(0) scale(1);
}
.static-post-category {
  font-size: 10px;
  line-height: 1.2;
  font-weight: 500;
  color: #777;
  text-transform: uppercase;
  margin: 0 0 14px;
  display: none;
}
.static-post-title h3 {
  font-size: 18px;
  line-height: 1.18;
  font-weight: 500;
  margin: 0 0 10px;
}
.static-post-title a {
  display: block;
  color: #111;
}
.static-post-title a:hover {
  text-decoration: underline;
}
.static-post-content p {
  font-size: 14px;
  font-weight: 400;
  color: #555;
  margin: 0;
  line-height: 1.2em !important;
}
p,
.post-detail .post-content {
  font-size: 12px;
  line-height: 1.2em !important;
}
.static-post-date {
  font-size: 12px;
  line-height: 1.35;
  color: #777;
  margin-top: 28px;
  display: none;
}
.page-id-202 .static-section {
  padding: 36px 0 84px;
}
.page-id-202 .static-section > .static-container > .row {
  --bs-gutter-x: 0;
  --bs-gutter-y: 0;
}
.page-id-202 .static-section > .static-container > .row > .col-12 {
  padding-left: 0;
  padding-right: 0;
}
.page-id-202 .static-posts {
  --bs-gutter-x: 42px;
  --bs-gutter-y: 70px;
  max-width: none;
  margin-left: calc(var(--bs-gutter-x) * -0.5);
  margin-right: calc(var(--bs-gutter-x) * -0.5);
}
.page-id-202 .static-post-card {
  margin-bottom: 0;
}
.page-id-202 .static-post-gallery {
  margin-bottom: 32px;
}
.page-id-202 .static-post-gallery img {
  aspect-ratio: 519/363;
  object-fit: cover;
}
.page-id-202 .static-post-category {
  font-size: 10px;
  font-weight: 500;
  color: #666;
  letter-spacing: 0;
  margin-bottom: 15px;
}
.page-id-202 .static-post-title h3 {
  font-size: 19px;
  line-height: 1.08;
  font-weight: 600;
  margin-bottom: 10px;
}
.page-id-202 .static-post-content p {
  font-size: 14px;
  line-height: 1.45;
  color: #555;
  font-weight: 400;
}
.page-id-202 .static-post-date {
  font-size: 12px;
  color: #777;
  margin-top: 28px;
}
.page-id-725 .static-projects-page {
  padding: 64px 0 80px;
  background: #fff;
}
.page-id-725 .static-projects-container {
  width: 100%;
  max-width: var(--anun-container);
  margin: 0 auto;
  padding-left: var(--anun-gutter);
  padding-right: var(--anun-gutter);
}
.page-id-725 .static-projects-container .static-portfolio-grid {
  max-width: none;
  --bs-gutter-x: 40px;
  --bs-gutter-y: 40px;
  margin-left: calc(var(--bs-gutter-x) * -0.5) !important;
  margin-right: calc(var(--bs-gutter-x) * -0.5) !important;
}
.page-id-725 .static-portfolio-card {
  aspect-ratio: auto;
  background: #fff;
}
.page-id-725 .static-portfolio-card > img {
  width: 100%;
  height: auto;
  object-fit: initial;
}
.page-hero.simple {
  min-height: 280px;
  background: #f7f7f7;
  display: flex;
  align-items: flex-end;
  padding: 80px 20px 45px;
}
.page-hero.simple > div {
  width: 100%;
  max-width: var(--anun-container);
  margin: 0 auto;
}
.page-hero.simple h1 {
  font-size: 42px;
  margin-bottom: 10px;
}
.page-id-435 .page-hero.simple,
.page-id-110 .page-hero.simple {
  padding-left: 0;
  padding-right: 0;
}
.page-id-435 .page-hero.simple > div,
.page-id-110 .page-hero.simple > div,
.page-id-435 .content-section > .section-inner,
.page-id-110 .content-section > .section-inner {
  width: 100%;
  max-width: var(--anun-container);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--anun-gutter);
  padding-right: var(--anun-gutter);
}
.page-id-435 .content-section,
.page-id-110 .content-section {
  padding-top: 38px;
  padding-bottom: 76px;
}
.utility-panel,
.contact-layout,
.checkout-layout,
.account-layout,
.product-detail,
.detail-page {
  max-width: var(--anun-container);
  margin: 70px auto;
  padding: 0 20px;
}
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 45px;
}
.product-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.product-gallery img:first-child {
  grid-column: 1/-1;
}
.product-gallery img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: contain;
  background: #f6f6f6;
}
.product-info .price {
  font-size: 24px;
  font-weight: 700;
  color: #111;
}
.static-single-product {
  background: #fff;
}
.static-product-detail-main {
  display: grid;
  grid-template-columns: minmax(0, 740px) minmax(360px, 430px);
  column-gap: 72px;
  align-items: start;
  min-height: 772px;
  padding-top: 126px;
  padding-bottom: 0;
}
.static-single-product-gallery {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  min-width: 0;
}
.static-single-product-gallery img {
  width: 560px;
  height: 560px;
  object-fit: contain;
  margin: 26px auto 0;
  transform: translateX(121px);
}
.static-single-product-summary {
  padding-top: 28px;
  max-width: 430px;
}
.static-product-breadcrumb {
  font-size: 9px;
  line-height: 1.2;
  color: #a0a0a0;
  text-transform: uppercase;
  margin: 0 0 39px;
  font-weight: 500;
}
.static-single-product-summary h1 {
  font-size: 18px;
  line-height: 1.2;
  font-weight: 600;
  color: #4b4b4b;
  margin: 0 0 15px;
}
.static-single-product-price {
  font-size: 24px;
  line-height: 1.1;
  font-weight: 400;
  color: #111;
  margin: 0 0 32px;
}
.static-single-product-excerpt {
  font-size: 15px;
  line-height: 1.32;
  font-weight: 400;
  color: #696969;
  margin: 0 0 49px;
}
.static-single-product-meta {
  display: flex;
  flex-wrap: wrap;
  column-gap: 26px;
  row-gap: 2px;
  font-size: 12px;
  line-height: 1.55;
  color: #555;
}
.static-single-product-meta span {
  display: inline-block;
}
.static-single-product-meta em {
  font-style: normal;
  color: #9a9a9a;
}
.static-product-tabs {
  max-width: 760px;
  margin: 0 auto 78px;
  padding: 0 20px;
}
.static-product-tab-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 34px;
  margin: 0 0 50px;
}
.static-product-tab-nav button {
  appearance: none;
  border: 0;
  border-bottom: 1px solid transparent;
  background: transparent;
  color: #9a9a9a;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 400;
  padding: 0 0 7px;
  text-transform: none;
  letter-spacing: 0;
  min-height: 0;
}
.static-product-tab-nav button.is-active {
  color: #555;
  border-bottom-color: #555;
}
.static-product-tab-panel {
  font-size: 12px;
  line-height: 1.24;
  font-weight: 400;
  color: #555;
}
.static-product-tab-panel p {
  margin: 0;
}
.static-product-tab-panel ins {
  color: #555;
  text-decoration: underline;
}
.static-product-related-section {
  padding-top: 0;
  padding-bottom: 44px;
}
.static-product-related-section h2 {
  text-align: center;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 600;
  color: #4b4b4b;
  margin: 0 0 154px;
}
.single-product .static-product-related-section .static-product-grid {
  --bs-gutter-x: 42px;
  --bs-gutter-y: 0;
}
.single-product .static-product-related-section .static-product-card {
  padding-bottom: 0;
}
.single-product .static-product-related-section .static-product-image {
  height: 240px;
  margin-bottom: 29px;
}
.single-product .static-product-related-section .static-product-image img {
  max-height: 240px;
  max-width: 260px;
}
.contact-layout,
.checkout-layout,
.account-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
}
.form-panel,
.order-summary,
.contact-form {
  border: 1px solid #e7e7e7;
  padding: 32px;
  background: #fff;
}
.form-panel label,
.contact-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
  font-weight: 700;
}
.form-panel input,
.form-panel textarea,
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #ccc;
  padding: 12px;
  font: inherit;
}
.order-summary p {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #eee;
  padding: 12px 0;
}
.account-layout aside {
  display: flex;
  flex-direction: column;
  border: 1px solid #e7e7e7;
}
.account-layout aside a {
  padding: 16px 20px;
  border-bottom: 1px solid #eee;
}
.detail-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 42px;
  padding: 100px clamp(18px, 4vw, 56px) 60px;
  max-width: 1280px;
  margin: 0 auto;
}
.detail-hero.full {
  max-width: none;
  min-height: 78vh;
  color: #fff;
  position: relative;
  display: flex;
  align-items: flex-end;
}
.detail-hero.full img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}
.detail-hero.full:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.12));
  z-index: -1;
}
.detail-hero:not(.full) img {
  width: 100%;
  max-height: 620px;
  object-fit: cover;
}
.detail-content {
  max-width: 820px;
  margin: 0 auto 90px;
  padding: 0 20px;
  font-size: 18px;
}
.single-post .header-spacer {
  display: none;
}
.single-post .static-header {
  position: absolute;
  background: transparent;
}
.single-post .static-logo img {
  filter: brightness(0) invert(1);
}
.single-post .static-header .nav-link,
.single-post .static-header .nav-link.active,
.single-post .static-header .nav-link:hover {
  color: #fff;
}
.single-post .static-search-button {
  color: #fff;
}
.static-single-hero {
  height: 500px;
  min-height: 500px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center 48%;
  background-repeat: no-repeat;
  color: #fff;
  text-align: center;
}
.static-single-hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.22);
  z-index: 0;
}
.static-single-hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 780px;
  padding: 78px 20px 0;
}
.static-single-category {
  font-size: 10px;
  line-height: 1.2;
  font-weight: 400;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 18px;
}
.static-single-hero h1 {
  font-size: 46px;
  line-height: 1.07;
  font-weight: 500;
  color: #fff;
  margin: 0 auto 27px;
  max-width: 760px;
}
.static-single-meta {
  font-size: 9px;
  line-height: 1.2;
  font-weight: 500;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
}
.static-single-body {
  max-width: 760px;
  margin: 80px auto 76px;
  padding: 0 20px;
  color: #555;
  font-size: 12px;
  line-height: 1.26;
  font-weight: 400;
}
.static-single-body p {
  margin: 0 0 44px;
}
.static-single-caption {
  margin: 62px 0 60px;
  text-align: center;
  color: #555;
}
.static-single-missing-image {
  width: 100%;
  height: 510px;
  border: 1px solid #cfcfcf;
  background: #fff;
  position: relative;
}
.static-single-missing-image:before {
  content: "";
  position: absolute;
  left: 8px;
  top: 8px;
  width: 14px;
  height: 12px;
  border: 1px solid #9fb7cc;
  background: #f7fafc;
}
.static-single-caption figcaption {
  font-size: 11px;
  line-height: 1.35;
  margin-top: 18px;
  color: #666;
  text-align: center;
}
.static-single-body h3 {
  font-size: 28px;
  line-height: 1.16;
  font-weight: 600;
  color: #444;
  margin: 0 0 23px;
}
.static-single-body blockquote {
  font-size: 12px;
  line-height: 1.35;
  color: #555;
  text-align: center;
  margin: 58px auto 55px;
  max-width: 620px;
  padding: 0;
  border: 0;
}
.static-single-tags {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin: 75px 0 0;
  padding-bottom: 48px;
  border-bottom: 1px solid #e8e8e8;
}
.static-single-tags a {
  min-width: 74px;
  height: 38px;
  border: 1px solid #e0e0e0;
  border-radius: 99px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  color: #999;
  font-size: 11px;
  line-height: 38px;
  background: #fff;
}
.static-related-news {
  background: #f6f6f6;
  padding: 84px 0 96px;
}
.static-single-narrow {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 20px;
}
.static-related-news h2,
.static-reply-section h2 {
  font-size: 22px;
  line-height: 1.18;
  font-weight: 500;
  color: #555;
  margin: 0 0 28px;
}
.static-related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 44px;
}
.static-related-card img {
  width: 100%;
  aspect-ratio: 1.46;
  object-fit: cover;
  margin-bottom: 18px;
}
.static-related-card h3 {
  font-size: 12px;
  line-height: 1.18;
  font-weight: 600;
  color: #111;
  margin: 0;
}
.static-reply-section {
  background: #fff;
  padding: 92px 0 122px;
}
.static-reply-section p {
  font-size: 10px;
  line-height: 1.3;
  color: #777;
  margin: 0 0 28px;
}
.static-reply-section textarea {
  display: block;
  width: 100%;
  height: 165px;
  border: 1px solid #ddd;
  border-radius: 2px;
  resize: vertical;
  padding: 18px 20px;
  font: inherit;
  font-size: 12px;
  line-height: 1.4;
  color: #555;
  margin: 0 0 40px;
}
.static-reply-section textarea::placeholder {
  color: #b9b9b9;
}
.static-reply-section button {
  display: block;
  width: 100%;
  height: 44px;
  border: 0;
  background: var(--anun-yellow);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  line-height: 44px;
  padding: 0;
  text-align: center;
}
.static-footer {
  margin-top: 0;
  background: transparent;
  color: #ddd;
  padding: 0;
}
.static-footer-main {
  background: #111;
  padding: 60px 0;
}
.static-footer-row {
  min-height: 84px;
}
.static-footer-logo {
  width: 120px;
  height: auto;
  margin-bottom: 22px;
}
.static-footer-main p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 1.45;
  margin: 0;
}
.static-subfooter {
  background: var(--anun-yellow);
  color: #000;
  padding: 20px 0;
}
.static-subfooter p {
  font-size: 13px;
  line-height: 1.2;
  color: #000;
  margin: 0;
}
@media (min-width: 992px) {
  .col-lg-fifth {
    flex: 0 0 auto;
    width: 20%;
  }
}
@media (max-width: 1100px) {
  :root {
    --anun-gutter: 28px;
    --anun-header-height: 126px;
  }
  .static-header {
    height: auto;
    min-height: 78px;
  }
  .static-navbar {
    height: auto;
    min-height: 78px;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 0;
    flex-wrap: wrap;
  }
  .static-nav-scroll {
    order: 3;
    width: 100%;
    overflow: auto;
  }
  .static-header .navbar-nav {
    gap: 20px;
    min-width: max-content;
  }
  .static-header .nav-link {
    line-height: 1.3;
  }
  .static-search-button {
    margin-left: auto;
  }
  .static-search-panel {
    padding-left: 28px;
    padding-right: 28px;
  }
  .static-search-logo,
  .static-search-form {
    left: 28px;
  }
  .static-search-close,
  .static-search-form {
    right: 28px;
  }
  .static-portfolio-slider {
    height: 70vh;
    min-height: 480px;
  }
  .static-portfolio-slide h1 {
    font-size: 34px;
  }
  .static-product-carousel {
    justify-content: flex-start;
    gap: 32px;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    overflow-x: auto;
    padding-bottom: 12px;
  }
  .static-content-carousel {
    overflow: auto;
  }
  .static-fancy-box {
    flex-basis: 280px;
  }
  .page-id-725 .static-projects-container {
    width: 100%;
  }
  .static-product-detail-main {
    grid-template-columns: 1fr;
    min-height: 0;
    padding-top: 60px;
    row-gap: 35px;
  }
  .static-single-product-summary {
    max-width: 620px;
    padding-top: 0;
  }
  .static-single-product-gallery img {
    width: min(560px, 100%);
    height: auto;
    margin-top: 0;
    transform: none;
  }
  .static-product-tabs {
    margin-top: 40px;
  }
}
@media (max-width: 767px) {
  :root {
    --anun-gutter: 18px;
    --anun-header-height: 126px;
  }
  .static-search-panel {
    height: 440px;
    min-height: 440px;
    padding: 52px 18px 54px;
  }
  .static-search-logo {
    top: 54px;
    left: 18px;
  }
  .static-search-logo img {
    width: 74px;
  }
  .static-search-close {
    top: 56px;
    right: 18px;
  }
  .static-search-form {
    left: 18px;
    right: 18px;
    bottom: 96px;
    grid-template-columns: minmax(0, 1fr) 42px;
  }
  .static-search-form input {
    height: 66px;
    font-size: 32px;
  }
  .static-search-form button {
    width: 42px;
    height: 42px;
  }
  .static-search-form button svg {
    width: 22px;
    height: 22px;
  }
  .static-text h1,
  .static-slide-title h1 {
    font-size: 40px;
  }
  .static-text h2 {
    font-size: 22px;
  }
  .static-slider-dots {
    display: none;
  }
  .static-portfolio-slider {
    height: 68vh;
    min-height: 430px;
  }
  .static-product-card-carousel {
    flex-basis: 155px;
    width: 155px;
  }
  .static-product-image {
    height: 135px;
  }
  .static-product-image img {
    max-height: 135px;
    max-width: 155px;
  }
  .static-fancy-carousel {
    margin-left: 0;
    margin-right: 0;
    gap: 18px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }
  .static-fancy-box {
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    height: 430px;
    scroll-snap-align: start;
  }
  .static-client-carousel {
    justify-content: flex-start;
    gap: 26px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 4px;
  }
  .static-client-logo {
    flex: 0 0 145px;
    width: 145px;
    scroll-snap-align: start;
  }
  .static-client-logo img {
    max-width: 135px;
    max-height: 48px;
  }
  .static-content-dots {
    margin-top: 16px;
  }
  .static-portfolio-grid {
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .static-portfolio-grid > [class*="col-"] {
    padding-left: calc(var(--bs-gutter-x) * 0.5) !important;
    padding-right: calc(var(--bs-gutter-x) * 0.5) !important;
  }
  .static-portfolio-card {
    height: 230px;
  }
  .page-id-725 .static-projects-page {
    padding-top: 42px;
    padding-bottom: 56px;
  }
  .page-id-725 .static-projects-container {
    width: 100%;
  }
  .page-id-725 .static-projects-container .static-portfolio-grid {
    --bs-gutter-x: 0;
    --bs-gutter-y: 28px;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .page-id-725 .static-portfolio-card {
    height: auto;
  }
  .static-product-detail-main {
    padding-top: 42px;
  }
  .static-single-product-summary h1 {
    font-size: 24px;
  }
  .static-single-product-excerpt {
    font-size: 14px;
  }
  .static-product-tab-nav {
    gap: 18px;
    overflow: auto;
    justify-content: flex-start;
  }
  .static-product-related-section h2 {
    margin-bottom: 38px;
  }
  .product-detail,
  .contact-layout,
  .checkout-layout,
  .account-layout,
  .detail-hero {
    display: grid;
    grid-template-columns: 1fr;
  }
}
