@font-face {
  font-family: "Cift cift 400";
  src: url('../fonts/cift-cift-400.otf') format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --floral-white: #f6f5ed;
  --black: black;
  --spring-green: #09f557;
  --white: white;
  --royal-blue: #275eea;
  --gold: #fc0;
  --medium-orchid: #c14af2;
  --chocolate: #e26b31;
  --turquoise: #4af2dc;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.w-backgroundvideo-backgroundvideoplaypausebutton:focus-visible {
  outline-offset: 2px;
  border-radius: 50%;
  outline: 2px solid #3b79c3;
}

.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

body {
  background-color: var(--floral-white);
  color: #333;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4em;
}

h1 {
  color: var(--black);
  margin-top: 0;
  margin-bottom: 10px;
  font-family: "Cift cift 400", sans-serif;
  font-size: 84px;
  font-weight: 400;
  line-height: 1.4em;
}

h2 {
  color: var(--black);
  margin-top: 0;
  margin-bottom: 10px;
  font-family: "Cift cift 400", sans-serif;
  font-size: 72px;
  font-weight: 400;
  line-height: 1.4em;
}

h3 {
  color: var(--black);
  margin-top: 0;
  margin-bottom: 10px;
  font-family: "Cift cift 400", sans-serif;
  font-size: 60px;
  font-weight: 400;
  line-height: 1.4em;
}

h4 {
  color: var(--black);
  margin-top: 0;
  margin-bottom: 10px;
  font-family: "Cift cift 400", sans-serif;
  font-size: 48px;
  font-weight: 400;
  line-height: 1.4em;
}

h5 {
  color: var(--black);
  margin-top: 0;
  margin-bottom: 10px;
  font-family: "Cift cift 400", sans-serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.4em;
}

h6 {
  color: var(--black);
  margin-top: 0;
  margin-bottom: 10px;
  font-family: "Cift cift 400", sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.4em;
}

p {
  margin-bottom: 10px;
}

a {
  color: var(--black);
  text-decoration: underline;
}

a:hover {
  text-decoration: none;
}

ul, ol {
  margin-top: 0;
  margin-bottom: 10px;
  padding-left: 20px;
}

li {
  margin-bottom: 10px;
}

img {
  max-width: 100%;
  display: inline-block;
}

label {
  margin-bottom: 5px;
  font-weight: bold;
  display: block;
}

blockquote {
  border-left: 5px solid var(--spring-green);
  margin-bottom: 10px;
  padding: 10px 20px;
  font-size: 18px;
  line-height: 22px;
}

figure {
  margin-bottom: 10px;
}

.checkbox {
  border-color: #000;
  width: auto;
  min-width: 20px;
  height: auto;
  min-height: 20px;
}

.checkbox.w--redirected-checked {
  border-width: 0;
  border-color: var(--black);
  background-color: var(--black);
  background-image: url('../images/check-white.svg');
  background-position: 50%;
  background-size: auto;
  border-radius: 0;
}

.checkbox.w--redirected-focus {
  box-shadow: none;
  border-color: #e7ded8;
  transition: background-color .3s ease-in-out;
}

.heading-h2 {
  color: var(--black);
  margin-bottom: 10px;
  font-family: "Cift cift 400", sans-serif;
  font-size: 72px;
  font-weight: 400;
  line-height: 1.3em;
}

.style-guide-content {
  flex-wrap: wrap;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: flex;
}

.success-message {
  background-color: var(--spring-green);
  color: var(--black);
  padding: 20px 10px;
  font-size: 18px;
}

.divider {
  background-color: #000;
  height: 2px;
  margin-top: 40px;
}

.checkbox-label {
  padding-left: 6px;
}

.section-title {
  margin-bottom: 50px;
}

.error-message {
  color: #fff;
  text-align: center;
  background-color: #e92222;
  padding: 20px 10px;
  font-size: 18px;
}

.form-input {
  border: 1px solid var(--white);
  color: #004b1a;
  background-color: #fff;
  border-radius: 0;
  height: 60px;
  margin-bottom: 10px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6em;
  transition: border-color .3s ease-in-out;
}

.form-input:focus {
  border-color: var(--spring-green);
}

.form-input::placeholder {
  color: #000;
}

.form-input.form-textarea {
  height: 100px;
}

.form-input.form-textarea:focus {
  color: #000;
}

.button {
  color: #fff;
  text-align: center;
  background-color: #000;
  padding: 12px 40px;
  font-size: 18px;
  transition: all .3s ease-in-out;
}

.button:hover {
  background-color: #000;
  text-decoration: none;
  box-shadow: 7px 7px 30px #00000080;
}

.button.event-button {
  width: 100%;
}

.heading-h3 {
  color: var(--black);
  margin-bottom: 10px;
  font-family: "Cift cift 400", sans-serif;
  font-size: 60px;
  font-weight: 400;
  line-height: 1.3em;
}

.heading-h4 {
  color: var(--black);
  margin-bottom: 10px;
  font-family: "Cift cift 400", sans-serif;
  font-size: 48px;
  font-weight: 400;
  line-height: 1.3em;
}

.guide-item {
  text-align: center;
  padding-bottom: 20px;
  padding-right: 16px;
}

.radio-button-field {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.heading-h5 {
  color: var(--black);
  margin-bottom: 10px;
  font-family: "Cift cift 400", sans-serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.3em;
}

.container-medium {
  max-width: 1200px;
  padding-left: 30px;
  padding-right: 30px;
}

.lead-text {
  font-size: 18px;
  line-height: 1.4em;
}

.input-group {
  align-items: center;
  margin-bottom: 20px;
}

.style-guide-title {
  margin-top: 30px;
  margin-bottom: 30px;
}

.radio-button {
  border-color: #000;
  width: auto;
  min-width: 20px;
  height: auto;
  min-height: 20px;
  transition: border .3s ease-in-out;
}

.radio-button.w--redirected-checked {
  border-width: 5px;
  border-color: var(--black);
  background-color: #fff;
}

.radio-button.w--redirected-focus {
  box-shadow: none;
}

.radio-button-label {
  padding-left: 6px;
}

.heading-h6 {
  color: var(--black);
  margin-bottom: 10px;
  font-family: "Cift cift 400", sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.3em;
}

.checkbox-field {
  align-items: center;
  margin-bottom: 20px;
  display: flex;
}

.section-style-guide {
  padding-left: 0;
  padding-right: 0;
}

.color-box {
  width: 150px;
  height: 150px;
}

.form-select {
  border: 1px solid var(--white);
  background-color: #fff;
  width: 100%;
  height: 60px;
  margin-bottom: 20px;
  padding-left: 20px;
  padding-right: 20px;
  transition: border-color .3s ease-in-out;
}

.form-select:focus {
  color: #000;
  border-color: #03cd69;
}

.spacing-small {
  margin-top: 30px;
  margin-bottom: 30px;
}

.spring-green {
  background-color: var(--spring-green);
}

.royal-blue {
  background-color: var(--royal-blue);
}

.gold {
  background-color: var(--gold);
}

.medium-orchid {
  background-color: var(--medium-orchid);
}

.chocolate {
  background-color: var(--chocolate);
}

.turquoise {
  background-color: var(--turquoise);
}

.black {
  background-color: var(--black);
}

.white {
  background-color: var(--white);
}

.navbar {
  background-color: #0000;
  flex-direction: column;
  align-items: center;
  padding: 50px;
  display: flex;
}

.nav-menu {
  display: flex;
}

.nav-link {
  text-transform: uppercase;
  font-family: Inter, sans-serif;
  font-size: 18px;
  font-weight: 700;
}

.nav-link.w--current {
  color: var(--black);
}

.nav-link.last {
  margin-right: 0;
  padding-right: 0;
}

.nav-link.first {
  margin-left: 0;
  padding-left: 0;
}

.decoration {
  position: absolute;
}

.decoration.shape-1 {
  z-index: -1;
  width: 400px;
  height: 500px;
  inset: -100px auto auto 0;
}

.decoration.shape-2 {
  z-index: -1;
  width: 500px;
  height: 300px;
  inset: -100px 0 auto auto;
}

.decoration.shape-3 {
  z-index: -1;
  width: 600px;
  height: 600px;
  inset: -100px 0 auto auto;
}

.decoration.shape-4 {
  z-index: -2;
  inset: 20% auto auto 500px;
}

.decoration.blur-1 {
  z-index: -1;
  background-color: var(--spring-green);
  filter: blur(80px);
  width: 80px;
  height: 400px;
  inset: auto 0% 0% auto;
}

.decoration.blur-2 {
  z-index: -1;
  background-color: var(--turquoise);
  filter: blur(100px);
  width: 100px;
  height: 500px;
  top: -400px;
  left: -100%;
  right: auto;
}

.decoration.blur-3 {
  z-index: -1;
  background-color: var(--medium-orchid);
  filter: blur(100px);
  width: 100px;
  height: 600px;
  inset: auto auto 22% 0%;
}

.decoration.blur-4 {
  z-index: -1;
  background-color: var(--spring-green);
  filter: blur(70px);
  width: 600px;
  height: 150px;
  right: auto;
}

.decoration.blur-5 {
  z-index: -1;
  background-color: var(--gold);
  filter: blur(70px);
  width: 600px;
  height: 150px;
  left: 600px;
  right: auto;
}

.decoration.blur-6 {
  z-index: -1;
  background-color: var(--medium-orchid);
  filter: blur(70px);
  width: 800px;
  height: 150px;
  right: 0;
}

.decoration.shape-8 {
  z-index: -2;
  inset: -10% 0% 0% -10%;
}

.decoration.blur-1-left {
  z-index: -1;
  filter: blur(80px);
  background-color: #e31c23;
  width: 80px;
  height: 400px;
  inset: auto 95% 0% auto;
}

.shape-1 {
  background-color: var(--spring-green);
  filter: blur(70px);
  border-radius: 100%;
  width: 700px;
  height: 900px;
}

.shape-2 {
  background-color: var(--gold);
  filter: blur(70px);
  border-radius: 100%;
  width: 100%;
  height: 600px;
}

.shape-3 {
  background-color: var(--medium-orchid);
  filter: blur(70px);
  border-radius: 100%;
  width: 100%;
  height: 700px;
}

.shape-4 {
  background-color: var(--royal-blue);
  filter: blur(70px);
  border-radius: 100%;
  width: 900px;
  height: 600px;
}

.project-section {
  position: relative;
  overflow: hidden;
}

.container-full {
  max-width: 100%;
  padding-left: 50px;
  padding-right: 50px;
}

.about-section {
  position: relative;
}

.section-spacing {
  padding-top: 160px;
  padding-bottom: 160px;
}

.container {
  max-width: 1330px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 30px;
  padding-right: 30px;
}

.container.margin-top-and-bottom-20 {
  margin-top: 20px;
  margin-bottom: 20px;
}

.grid-about {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  grid-template-rows: auto;
  align-items: center;
}

.about-image-wrap {
  position: relative;
}

.about-image {
  z-index: 1;
  border-radius: 400px;
  position: relative;
}

.grid-about-stat {
  grid-template-rows: auto;
  margin-top: 100px;
  margin-bottom: 100px;
}

.about-stat-item {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  display: flex;
}

.about-stat-item.two {
  margin-top: 80px;
}

.about-stat-content {
  text-align: left;
}

.section-spacing-top {
  padding-top: 160px;
}

.project-status {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  margin-top: 0;
  font-size: 20px;
  display: flex;
}

.project-image-wrap {
  margin-bottom: 40px;
  position: relative;
}

.project-image {
  z-index: 1;
  position: relative;
}

.project-link {
  text-decoration: none;
}

.project-image-blur {
  filter: blur(30px);
  position: absolute;
  inset: 0%;
  transform: scale(1.05);
}

.exhibition-section {
  position: relative;
}

.section-spacing-bottom {
  padding-bottom: 160px;
}

.text-center {
  text-align: center;
}

.exhibition-item {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  border-bottom: 1px solid #000;
  grid-template-rows: auto;
  grid-template-columns: 1.25fr .75fr 1fr .5fr;
  grid-auto-columns: 1fr;
  padding-top: 30px;
  padding-bottom: 20px;
  display: grid;
}

.exhibition-title {
  z-index: 1;
  text-transform: none;
  font-size: 18px;
  position: relative;
}

.exhibition-sold-out {
  text-decoration: line-through;
}

.button-link {
  color: var(--black);
}

.exhibition-head {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  border-bottom: 1px solid #000;
  grid-template-rows: auto;
  grid-template-columns: 1.25fr .75fr 1fr .5fr;
  grid-auto-columns: 1fr;
  padding-top: 15px;
  padding-bottom: 5px;
  display: grid;
}

.insta-wrap {
  text-align: center;
  height: 70vh;
  position: relative;
}

.insta-image-item {
  width: 200px;
  position: absolute;
}

.insta-image-item.three {
  width: 360px;
  inset: 0% 12% auto auto;
}

.insta-image-item.one {
  inset: 0% auto auto 6%;
}

.insta-image-item.two {
  inset: 5% auto auto 35%;
}

.insta-image-item.five {
  width: 270px;
  inset: auto 34% -20% auto;
}

.insta-image-item.four {
  width: 360px;
  inset: auto auto 0% 10%;
}

.insta-image-item.six {
  width: 350px;
  inset: auto 0% 8% auto;
}

.insta-title {
  padding-top: 25%;
}

.footer {
  padding-top: 160px;
  padding-bottom: 160px;
  position: relative;
  overflow: hidden;
}

.footer-menu-item {
  flex-direction: column;
  justify-content: flex-start;
  display: flex;
}

.footer-menu-item.text-right {
  align-items: flex-end;
}

.footer-link {
  margin-top: 0;
  margin-bottom: 10px;
  text-decoration: none;
}

.footer-link:hover {
  text-decoration: underline;
}

.exhibition-title-wrap {
  position: relative;
}

.exhibition-image {
  opacity: 0;
  height: 200px;
  position: absolute;
  inset: -80px 0 0% auto;
}

.about-image-blur {
  filter: blur(50px);
  border-radius: 400px;
  position: absolute;
  inset: 0%;
  transform: scale(1.05);
}

.insta-decoration {
  z-index: -1;
  opacity: .8;
  filter: blur(100px);
  display: flex;
  position: absolute;
  inset: 40% 0% 0% 20%;
}

.insta-blur-1 {
  background-color: #feda75;
  width: 150px;
  height: 200px;
}

.insta-blur-2 {
  background-color: #fa7e1e;
  width: 150px;
  height: 200px;
}

.insta-blur-3 {
  background-color: #d62976;
  width: 150px;
  height: 200px;
}

.insta-blur-4 {
  background-color: #962fbf;
  width: 150px;
  height: 200px;
}

.insta-blur-5 {
  background-color: #4f5bd5;
  width: 150px;
  height: 200px;
}

.grid-project {
  grid-column-gap: 100px;
  grid-row-gap: 100px;
  align-items: center;
}

.project-collection-list-wrapper {
  padding-left: 30px;
}

.project-collection-list-wrapper.three {
  margin-top: -90px;
}

.work-button {
  position: relative;
}

.button-link-big {
  color: var(--black);
  font-family: "Cift cift 400", sans-serif;
  font-size: 50px;
  font-weight: 400;
  line-height: 1.5em;
  position: relative;
}

.nav-menu-big {
  background-color: #0000;
}

.nav-icon-wrap {
  text-transform: uppercase;
  justify-content: flex-end;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 24px;
  font-weight: 500;
  text-decoration: none;
  display: flex;
  position: relative;
}

.nav-icon {
  margin-left: 10px;
}

.nav-icon-close {
  height: 18px;
  margin-left: 10px;
  display: none;
}

.nav-button, .nav-button.w--open {
  background-color: #0000;
}

.gallery-3 {
  width: 400px;
  position: absolute;
  inset: auto 48% 22% auto;
}

.gallery-1 {
  width: 600px;
}

.gallery-4 {
  width: 500px;
  position: absolute;
  inset: auto 167px 0% auto;
}

.gallery-2 {
  width: 400px;
}

.gallery-5 {
  width: 240px;
  position: absolute;
  inset: 0% 0% 0% auto;
}

.gallery-section {
  position: relative;
}

.nav-link-big {
  text-transform: uppercase;
  padding-top: 10px;
  padding-bottom: 10px;
  font-family: "Cift cift 400", sans-serif;
  font-size: 24px;
  font-weight: 400;
}

.nav-link-big:hover {
  text-decoration: underline;
}

.nav-link-big.w--current {
  color: var(--black);
  text-decoration: underline;
}

.brand-big {
  justify-content: space-between;
  align-items: center;
  padding-left: 0;
  display: block;
}

.navbar-wrap-big {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 20px 50px;
  position: fixed;
  top: 0;
}

.navbar-big {
  background-color: #0000;
  height: 40vh;
  position: relative;
}

.artist-item {
  text-decoration: none;
}

.grid-artist {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.artist-image-wrap {
  margin-bottom: 25px;
  position: relative;
  overflow: hidden;
}

.shape-5 {
  background-image: url('../images/about-5.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  border-radius: 20px;
  width: 50px;
  height: 40px;
  display: inline-block;
  position: relative;
  top: 15px;
}

.shape-6 {
  background-image: url('../images/testimonial.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  border-radius: 20%;
  width: 50px;
  height: 40px;
  margin-right: 10px;
  display: inline-block;
  position: relative;
  top: 6px;
}

.shape-7 {
  background-image: url('../images/insta-01.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  border-radius: 20px;
  width: 50px;
  height: 50px;
  display: inline-block;
  position: relative;
  top: 15px;
}

.grid-about-simple {
  grid-column-gap: 90px;
  grid-row-gap: 90px;
  grid-template-rows: auto;
  grid-template-columns: 1.5fr 1fr;
  align-items: center;
}

.about-content-wrap {
  text-align: center;
}

.signature {
  height: 60px;
  margin-top: 20px;
}

.grid-product {
  grid-column-gap: 50px;
  grid-row-gap: 100px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.product-image-wrap {
  margin-bottom: 30px;
  position: relative;
}

.product-image-blur {
  z-index: -1;
  filter: blur(50px);
  position: absolute;
  inset: 0%;
  transform: scale(1.05);
}

.product-price-wrap {
  display: flex;
}

.product-price {
  padding-right: 10px;
  font-weight: 700;
}

.product-price-compare {
  font-size: 14px;
  text-decoration: line-through;
}

.product-title {
  text-decoration: none;
}

.product-image-hover {
  position: absolute;
  inset: 0%;
}

.about-image-square {
  z-index: 1;
  position: relative;
}

.client-section {
  overflow: hidden;
}

.star-image {
  height: 30px;
  margin-bottom: 30px;
}

.testimonial-slider {
  background-color: #0000;
  height: auto;
}

.testimonial-client-name {
  margin-top: auto;
}

.testimonial-item {
  text-align: center;
  flex-direction: column;
  align-items: center;
  width: 70%;
  margin-left: auto;
  margin-right: auto;
}

.arrow-icon {
  width: 60px;
}

.testimonial-content {
  padding-top: 20px;
  padding-bottom: 10px;
  font-size: 24px;
  line-height: 1.4em;
}

.right-arrow {
  opacity: .2;
  justify-content: center;
  align-items: center;
  transition: opacity .3s ease-in-out;
  display: flex;
  inset: 0% 0% 0% auto;
}

.right-arrow:hover {
  opacity: 1;
}

.left-arrow {
  opacity: .2;
  justify-content: center;
  align-items: center;
  transition: opacity .3s ease-in-out;
  display: flex;
  inset: 0% auto 0% 0%;
  overflow: hidden;
}

.left-arrow:hover {
  opacity: 1;
}

.testimonial-client {
  border-radius: 70px;
}

.hide {
  display: none;
}

.grid-event {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  text-align: left;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.event-item {
  text-decoration: none;
}

.event-image-wrap {
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
}

.event-dates {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  margin-bottom: 10px;
  display: flex;
}

.organizer-event-item {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  margin-bottom: 10px;
  display: flex;
}

.navbar-simple {
  background-color: #0000;
  padding-top: 10px;
  padding-bottom: 10px;
}

.grid-navbar {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: grid;
}

.logo {
  height: 40px;
}

.nav-link-simple {
  font-size: 20px;
  font-weight: 700;
}

.nav-link-simple:hover {
  text-decoration: underline;
}

.nav-link-simple.w--current {
  color: var(--black);
  text-decoration: underline;
}

.hero-personal {
  padding-top: 150px;
  padding-bottom: 110px;
}

.hero-personal-wrap {
  position: relative;
}

.hero-image-item {
  width: 200px;
  position: absolute;
}

.hero-image-item.three {
  width: 180px;
  inset: 0% 12% auto auto;
}

.hero-image-item.two {
  inset: 5% auto auto 35%;
}

.hero-image-item.one {
  inset: -133px auto auto 0;
}

.hero-image-item.two {
  z-index: -1;
  inset: -96px 22% auto auto;
}

.hero-image-item.three {
  z-index: -1;
  inset: 0% 0 auto auto;
}

.hero-image-item.four {
  inset: auto 560px -123px auto;
}

.hero-image-item.blur-1 {
  z-index: -1;
  background-color: var(--spring-green);
  filter: blur(80px);
  width: 300px;
  height: 200px;
  inset: auto auto -40px 60px;
}

.hero-image-item.blur-2 {
  z-index: -1;
  background-color: var(--gold);
  filter: blur(80px);
  width: 400px;
  height: 300px;
  inset: auto auto -40px -224px;
}

.hero-image {
  border-radius: 10px;
  height: 120px;
}

.hero-image-two {
  border-radius: 80px;
  height: 250px;
}

.hero-image-three {
  border-radius: 100%;
  height: 200px;
}

.hero-image-four {
  border-radius: 10px;
  width: 100%;
  height: 250px;
}

.grid-about-info {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  margin-top: 50px;
  margin-bottom: 50px;
}

.about-title {
  margin-bottom: 30px;
}

.about-info-title {
  margin-bottom: 20px;
}

.award-item {
  border-bottom: 1px solid #000;
  justify-content: space-between;
  padding-top: 30px;
  padding-bottom: 30px;
  display: flex;
  position: relative;
}

.award-title {
  z-index: 1;
  text-transform: none;
  position: relative;
}

.award-image {
  opacity: 0;
  position: absolute;
  inset: -80px 0 0% auto;
}

.grid-testimonial {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  grid-template-rows: auto;
  grid-template-columns: .75fr 1fr;
}

.testimonial-content-wrap {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.testimonial-author-name {
  margin-top: auto;
}

.testimonial-quote {
  height: 50px;
}

.grid-footer-simple {
  grid-column-gap: 100px;
  grid-row-gap: 100px;
  grid-template-rows: auto;
  grid-template-columns: .75fr 1fr .75fr;
  align-items: center;
}

.hero-shop {
  padding-top: 100px;
  padding-bottom: 160px;
}

.grid-hero-shop {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
}

.hero-shop-image-3 {
  border-radius: 150px;
  position: relative;
  bottom: 24px;
}

.hero-shop-image-4 {
  border-radius: 100%;
}

.hero-shop-image-1 {
  border-radius: 100% 100% 0% 0;
}

.hero-shop-image-2 {
  border-radius: 150px;
  position: relative;
  top: 37px;
}

.hero-shop-title {
  max-width: 60%;
  margin-top: 60px;
  font-size: 50px;
}

.grid-navbar-shop {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: .75fr 1.75fr .5fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: grid;
}

.cart-button {
  background-color: #0000;
}

.cart {
  color: var(--black);
  font-weight: 700;
}

.cart-quantity {
  background-color: var(--black);
  color: var(--white);
}

.hero-shop-item-blur-1 {
  z-index: -1;
  background-color: var(--gold);
  filter: blur(90px);
  width: 500px;
  height: 500px;
  position: absolute;
  inset: 12% auto auto 0%;
}

.hero-shop-item-blur-2 {
  z-index: -1;
  background-color: var(--royal-blue);
  filter: blur(90px);
  width: 800px;
  height: 300px;
  position: absolute;
  inset: auto 0% 11% auto;
}

.grid-shop-about {
  grid-column-gap: 70px;
  grid-row-gap: 70px;
  grid-template-rows: auto;
  align-items: start;
}

.shop-about-content {
  max-width: 90%;
}

.shop-about-description {
  margin-top: 20px;
  margin-bottom: 40px;
}

.shop-about-image-wrap {
  text-align: center;
  margin-top: 60px;
  margin-right: -80px;
}

.shop-about-image {
  border-radius: 50%;
}

.marquee-wrapper {
  margin-top: 80px;
  display: flex;
}

.marquee-text {
  flex: none;
  align-items: center;
  display: flex;
}

.marquee-item {
  flex: none;
  align-items: center;
  margin-right: 100px;
  display: flex;
}

.client-logo {
  height: 80px;
}

.grid-blog {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.blog-item {
  text-decoration: none;
}

.blog-image-wrap {
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
}

.blog-date {
  margin-bottom: 10px;
}

.hero-inner {
  padding-top: 90px;
  padding-bottom: 70px;
}

.grid-contact {
  grid-column-gap: 100px;
  grid-row-gap: 100px;
  grid-template-rows: auto;
}

.contact-address {
  margin-top: 40px;
}

.google-map {
  z-index: 0;
}

.map {
  height: 600px;
}

.form-block {
  margin-bottom: 0;
}

.accordion-wrap {
  border-bottom: 1px solid #000;
  padding-top: 20px;
  padding-bottom: 10px;
}

.accordion-heading {
  cursor: pointer;
  justify-content: space-between;
  display: flex;
}

.accordion-icon {
  width: 14px;
}

.accordion-content {
  padding-top: 10px;
  overflow: hidden;
}

.accordion-title {
  margin-bottom: 0;
}

.faq-wrap {
  margin-bottom: 80px;
}

.faq-wrap.last {
  margin-bottom: 0;
}

.grid-about-page {
  grid-column-gap: 120px;
  grid-row-gap: 120px;
  grid-template-rows: auto;
  align-items: start;
}

.about-page-section {
  position: relative;
}

.blog-detail-author {
  align-items: center;
  display: flex;
}

.blog-detail-author.w--current {
  text-decoration: none;
}

.blog-detail-author-image {
  object-fit: cover;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  margin-right: 10px;
}

.blog-detail-image {
  margin-bottom: 30px;
}

.blog-detail-date {
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 400;
}

.blog-detail-author-name {
  font-size: 18px;
  text-decoration: none;
}

.blog-detail-meta {
  align-items: center;
  margin-top: 30px;
  margin-bottom: 40px;
  display: flex;
}

.grid-event-detail {
  grid-column-gap: 100px;
  grid-row-gap: 100px;
  grid-template-rows: auto;
  grid-template-columns: 1.75fr 1fr;
}

.event-date {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  display: flex;
}

.event-date-wrap, .location-wrap {
  margin-bottom: 30px;
}

.event-map {
  height: 200px;
  margin-top: 20px;
}

.event-website {
  text-decoration: none;
}

.category-wrap, .organizer-wrap {
  margin-bottom: 30px;
}

.event-website-wrap {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  margin-bottom: 10px;
  display: flex;
}

.event-cost {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  font-size: 22px;
  display: flex;
}

.grid-artist-detail {
  grid-column-gap: 100px;
  grid-row-gap: 100px;
  grid-template-rows: auto;
  margin-bottom: 100px;
}

.artist-location {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  margin-top: 30px;
  display: flex;
}

.artist-remark {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  margin-top: 10px;
  display: flex;
}

.artist-body {
  margin-top: 30px;
}

.grid-project-detail {
  grid-column-gap: 100px;
  grid-row-gap: 100px;
  grid-template-rows: auto;
}

.project-body {
  margin-top: 20px;
  margin-bottom: 20px;
}

.enquire-call {
  margin-top: 10px;
  text-decoration: none;
}

.contact-number {
  margin-bottom: 0;
}

.project-enquire {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  align-items: center;
  display: flex;
}

.product-detail-section {
  position: relative;
}

.grid-product-detail {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  grid-template-rows: auto;
}

.menu-detail-price-wrap {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  align-items: center;
  display: flex;
}

.menu-detail-price {
  margin-bottom: 0;
}

.add-to-cart {
  margin-top: 10px;
}

.form-select-light {
  color: #004b1a;
  background-color: #0000;
  border: 1px solid #004b1a;
  border-radius: 5px;
  width: 100%;
  height: 42px;
  padding-left: 20px;
  padding-right: 20px;
}

.form-select-light:focus {
  color: #000;
  border-color: #004b1a;
}

.product-action {
  background-color: var(--white);
  justify-content: space-between;
  align-items: stretch;
  height: 70px;
  padding: 10px;
  display: flex;
}

.quantity {
  background-color: var(--black);
  width: 70px;
  height: auto;
  color: var(--white);
  margin-bottom: 0;
  padding-top: 12px;
  padding-bottom: 12px;
}

.quantity:focus {
  border-color: #68513f;
}

.product-info {
  margin-bottom: 20px;
}

.product-overview {
  margin-top: 50px;
}

.product-detail-sticky {
  position: sticky;
  top: 50px;
}

.grid-related-product {
  grid-column-gap: 100px;
  grid-row-gap: 100px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.shop-page-category-wrap {
  justify-content: center;
  align-items: center;
  display: flex;
}

.shop-category-title {
  margin-bottom: 0;
  font-family: Inter, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4em;
}

.collection-list-category {
  justify-content: center;
  align-items: center;
  height: 100%;
  display: flex;
}

.shop-category-link {
  margin-left: 5px;
  margin-right: 5px;
  padding: 6px 15px;
  font-weight: 700;
  text-decoration: none;
}

.shop-category-link:hover {
  text-decoration: none;
}

.shop-category-link.w--current {
  background-color: var(--black);
  color: var(--white);
  text-decoration: none;
}

.shop-page-title {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: .5fr;
  grid-auto-columns: 1fr;
  margin-bottom: 40px;
  display: grid;
}

.grid-project-page {
  grid-column-gap: 200px;
  grid-row-gap: 200px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.grid-footer {
  grid-column-gap: 200px;
  grid-row-gap: 200px;
  grid-template-rows: auto;
  grid-template-columns: .75fr 1fr;
}

.subscribe-form {
  margin-top: 80px;
}

.copyright {
  margin-top: 70px;
  margin-bottom: 0;
}

.grid-footer-menu {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  justify-items: start;
}

.footer-title {
  margin-bottom: 30px;
}

.footer-social-icon {
  height: 20px;
}

.footer-social {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.lightbox-video-popup {
  text-align: center;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  inset: 0%;
}

.video-popup {
  display: flex;
  position: relative;
}

.video-popup-icon {
  background-color: var(--white);
  border-radius: 50%;
  width: 100px;
  height: 100px;
  padding: 4px;
}

.footer-social-inline {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
  display: flex;
}

.checkout-form {
  background-color: #0000;
  padding: 0;
}

.block-title {
  margin-bottom: 0;
}

.block-header {
  background-color: #0000;
  border-color: #0003;
  padding-top: 10px;
  padding-bottom: 10px;
}

.block-content {
  background-color: #0000;
  border-bottom-color: #0003;
  border-left-color: #0003;
  border-right-color: #0003;
}

.paypal-checkout-form {
  background-color: #0000;
  padding: 0;
}

.shipping-method {
  background-color: #0000;
  border-bottom-color: #0003;
}

.shipping-method-list {
  border-left-color: #0003;
  border-right-color: #0003;
}

.order-confirmation {
  background-color: #0000;
  padding: 0;
}

.utility-page-wrap {
  z-index: 1;
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  padding: 40px 20px;
  display: flex;
  position: relative;
}

.utility-page-content {
  text-align: center;
  flex-direction: column;
  width: 650px;
  padding: 60px 40px;
  display: flex;
}

.utility-page-form {
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.utility-page-icon {
  height: 200px;
  margin-bottom: 40px;
}

._404-content {
  margin-bottom: 40px;
}

.empty-state {
  background-color: var(--white);
  text-align: center;
  padding-top: 20px;
  padding-bottom: 20px;
  font-weight: 700;
}

.empty-state.small {
  padding-top: 5px;
  padding-bottom: 5px;
}

.heading-xxl {
  color: var(--black);
  margin-bottom: 10px;
  font-family: "Cift cift 400", sans-serif;
  font-size: 150px;
  font-weight: 400;
  line-height: 1.2em;
}

.heading-xl {
  color: var(--black);
  margin-bottom: 10px;
  font-family: "Cift cift 400", sans-serif;
  font-size: 120px;
  font-weight: 400;
  line-height: 1.2em;
}

.heading-lg {
  color: var(--black);
  margin-bottom: 10px;
  font-family: "Cift cift 400", sans-serif;
  font-size: 100px;
  font-weight: 400;
  line-height: 1.2em;
}

.heading-h1 {
  color: var(--black);
  margin-bottom: 10px;
  font-family: "Cift cift 400", sans-serif;
  font-size: 84px;
  font-weight: 400;
  line-height: 1.3em;
}

.instructions-section, .licenses-section {
  padding-left: 0;
  padding-right: 0;
}

.changelog {
  line-height: 1.8em;
}

.changelog-version {
  background-color: #fff;
  margin-right: 10px;
  padding: 5px 10px;
}

.button-link-blur {
  z-index: -1;
  background-color: var(--spring-green);
  filter: blur(30px);
  width: 50px;
  height: 50px;
  position: absolute;
  inset: 0%;
}

.gallery-video {
  width: 400px;
  height: 500px;
}

.navbar-shop {
  background-color: #0000;
  padding-top: 20px;
  padding-bottom: 20px;
}

.nav-link-shop {
  padding-left: 15px;
  padding-right: 15px;
  font-size: 20px;
  font-weight: 700;
}

.nav-link-shop:hover {
  text-decoration: underline;
}

.nav-link-shop.w--current {
  color: var(--black);
  text-decoration: underline;
}

.event-detail-title {
  margin-bottom: 30px;
}

.copyright-center {
  text-align: center;
  margin-top: 70px;
  margin-bottom: 0;
}

.grid-gallery {
  grid-column-gap: 100px;
  grid-row-gap: 100px;
  grid-template-columns: 1fr 1fr 1fr;
}

.grid-artist-page {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.artist-social {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  align-items: center;
  margin-top: 20px;
  display: flex;
}

.artist-social-link {
  margin-top: 0;
  margin-bottom: 10px;
  text-decoration: none;
}

.artist-social-link:hover {
  text-decoration: underline;
}

.artist-social-icon {
  height: 20px;
}

.shape-9 {
  background-color: var(--chocolate);
  filter: blur(70px);
  width: 100%;
  height: 400px;
}

.hero-decoration-wrap {
  min-height: 150%;
  position: absolute;
  inset: 0%;
  overflow: hidden;
}

.text-right {
  text-align: right;
}

.gallery-lightbox-link {
  overflow: hidden;
}

.hero-personal-position {
  text-align: right;
  margin-top: -30px;
}

.left-arrow-bottom {
  opacity: .2;
  margin-bottom: 10px;
  transition: opacity .3s ease-in-out;
  inset: auto 0% 0% auto;
}

.left-arrow-bottom:hover {
  opacity: 1;
}

.right-arrow-bottom {
  opacity: .2;
  margin-bottom: 10px;
  transition: opacity .3s ease-in-out;
  inset: auto 100px 0% auto;
}

.right-arrow-bottom:hover {
  opacity: 1;
}

.menu-detail-price-compare {
  opacity: .5;
  margin-bottom: 0;
  font-size: 16px;
  text-decoration: line-through;
}

.project-deatil-size {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  margin-top: 20px;
  font-size: 20px;
  display: flex;
}

.bg-pattern {
  z-index: -1;
  mix-blend-mode: multiply;
  background-image: url('../images/pattern-body.png');
  background-position: 0 0;
  background-size: auto;
  width: 100%;
  height: 100%;
  position: fixed;
  inset: 0%;
}

.floral-white {
  background-color: var(--floral-white);
}

.logo-big-brand {
  color: var(--black);
  margin-bottom: 10px;
  font-family: "Cift cift 400", sans-serif;
  font-size: 130px;
  font-weight: 400;
  line-height: 1.2em;
}

.footer-title-brand {
  margin-bottom: 30px;
  text-decoration: none;
}

.footer-title-brand:focus {
  text-decoration: none;
}

.grid {
  grid-template-columns: 1fr;
}

._3-columns-grid {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

.contribution-block {
  background-color: var(--white);
  border-radius: 20px;
  flex-direction: column;
  align-items: center;
  height: 420px;
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
}

.grid-2 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

.contribution-heading {
  margin-top: 10px;
  font-size: 39px;
}

.contribution-image {
  width: 300px;
}

.contribution-image.patreon {
  margin-top: 65px;
  margin-bottom: 65px;
}

.contribution-image.oc {
  width: 280px;
  max-width: 50%;
  margin-top: 65px;
  margin-bottom: 65px;
}

.iphone-bg-video {
  width: 360px;
  height: 638px;
}

.right-bigger-grid {
  grid-template-rows: auto auto;
  grid-template-columns: minmax(200px, 1fr) minmax(564px, 1fr);
}

.left-bigger-grid {
  grid-template-rows: auto;
  grid-template-columns: 3.5fr 2.75fr;
}

.get-involved-image {
  width: 450px;
  height: 600px;
}

.html-embed {
  justify-content: center;
  display: flex;
}

.div-block {
  object-fit: contain;
  display: block;
  overflow: hidden;
}

.link-block {
  width: 100%;
  margin-top: 10px;
  margin-bottom: 10px;
}

.link-block-2 {
  width: 100%;
}

.heading {
  font-family: "Cift cift 400", sans-serif;
}

.mission-text {
  text-align: left;
  margin-top: 20px;
  margin-bottom: 20px;
  padding-top: 5px;
  padding-bottom: 5px;
}

.mission-link {
  text-align: left;
  display: inline-block;
}

.mission-content {
  text-align: left;
}

@media screen and (min-width: 1280px) {
  .form-input {
    color: var(--black);
  }

  .decoration.shape-1 {
    width: 700px;
    height: 900px;
    left: -80px;
  }

  .decoration.shape-2 {
    width: 700px;
    height: 600px;
    left: 500px;
  }

  .decoration.shape-3 {
    width: 800px;
    height: 700px;
  }

  .container-full {
    padding-left: 100px;
    padding-right: 100px;
  }

  .grid-about {
    grid-column-gap: 120px;
    grid-row-gap: 120px;
  }

  .grid-project {
    grid-column-gap: 150px;
    grid-row-gap: 150px;
  }

  .project-collection-list-wrapper {
    padding-left: 100px;
  }

  .grid-product {
    grid-column-gap: 200px;
    grid-row-gap: 200px;
  }

  .hero-image-item.one {
    left: -210px;
  }

  .hero-image-item.three {
    right: -130px;
  }

  .grid-about-info {
    grid-column-gap: 70px;
    grid-row-gap: 70px;
  }

  .grid-testimonial {
    grid-column-gap: 100px;
    grid-row-gap: 100px;
  }

  .shop-about-content {
    max-width: 70%;
  }

  .shop-about-image-wrap {
    text-align: center;
  }

  .grid-product-detail {
    grid-column-gap: 100px;
    grid-row-gap: 100px;
  }

  .shop-page-title {
    grid-template-columns: .5fr 1fr;
  }

  .gallery-lightbox-link {
    position: relative;
    overflow: hidden;
  }
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 70px;
  }

  h2 {
    font-size: 58px;
  }

  h3 {
    font-size: 48px;
  }

  h4 {
    font-size: 38px;
  }

  p {
    line-height: 1.4em;
  }

  .heading-h2 {
    font-size: 58px;
  }

  .section-title {
    margin-bottom: 40px;
  }

  .heading-h3 {
    font-size: 48px;
  }

  .heading-h4 {
    font-size: 38px;
  }

  .guide-item {
    margin-bottom: 30px;
  }

  .container-medium {
    padding-left: 20px;
    padding-right: 20px;
  }

  .section-style-guide {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .navbar {
    flex-direction: row;
    align-items: center;
    padding: 10px 30px;
  }

  .nav-menu {
    background-color: var(--black);
    margin-top: 0;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .nav-link {
    color: var(--white);
  }

  .nav-link.first {
    color: var(--white);
    padding-left: 20px;
  }

  .decoration.shape-1 {
    width: 400px;
    height: 600px;
  }

  .decoration.shape-2 {
    left: 0;
  }

  .decoration.shape-3 {
    width: 300px;
  }

  .shape-1, .shape-2 {
    width: 400px;
    height: 500px;
  }

  .shape-3 {
    width: 100%;
    height: 300px;
  }

  .shape-4 {
    width: 700px;
    height: 300px;
  }

  .container-full {
    padding-left: 30px;
    padding-right: 30px;
  }

  .section-spacing {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .grid-about {
    grid-column-gap: 50px;
    grid-row-gap: 50px;
    grid-template-columns: 1fr;
  }

  .grid-about-stat {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    margin-top: 30px;
    margin-bottom: 30px;
  }

  .about-stat-item.two {
    margin-top: 0;
  }

  .section-spacing-top {
    padding-top: 100px;
  }

  .section-spacing-bottom {
    padding-bottom: 100px;
  }

  .exhibition-title {
    font-size: 22px;
  }

  .insta-wrap {
    height: auto;
  }

  .insta-image-item {
    display: none;
  }

  .instagram-section.section-spacing-bottom {
    padding-bottom: 0;
  }

  .insta-title {
    padding-top: 0%;
  }

  .footer {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .footer-menu-item.text-right {
    text-align: right;
  }

  .grid-project {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }

  .project-collection-list-wrapper {
    padding-left: 0;
  }

  .logo-big {
    height: 30px;
  }

  .nav-menu-big {
    background-color: #fff;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .gallery-3, .gallery-1, .gallery-4, .gallery-2, .gallery-5 {
    display: none;
  }

  .nav-link-big {
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .navbar-wrap-big {
    flex-direction: row;
    padding: 0 30px;
    display: flex;
    position: static;
  }

  .navbar-big {
    width: 100%;
    height: auto;
  }

  .grid-artist {
    grid-template-columns: 1fr 1fr;
  }

  .shape-7 {
    top: 0;
  }

  .grid-about-simple {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    grid-template-columns: 1.5fr;
  }

  .grid-product {
    grid-column-gap: 30px;
    grid-row-gap: 50px;
  }

  .testimonial-item {
    width: 100%;
  }

  .right-arrow, .left-arrow {
    display: none;
  }

  .grid-event {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }

  .event-dates {
    flex-wrap: wrap;
  }

  .logo {
    height: 30px;
  }

  .nav-link-simple {
    color: var(--white);
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .nav-link-simple.w--current {
    color: var(--white);
  }

  .hero-personal {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .hero-image-item {
    display: none;
  }

  .hero-image-item.blur-1 {
    z-index: -1;
    display: block;
  }

  .hero-image-item.blur-2 {
    display: block;
  }

  .award-title {
    font-size: 22px;
  }

  .grid-testimonial {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }

  .hero-shop {
    padding-bottom: 100px;
  }

  .hero-shop-title {
    max-width: 100%;
  }

  .grid-navbar-shop {
    grid-template-columns: .75fr 1.75fr .25fr;
  }

  .grid-shop-about {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }

  .shop-about-content {
    max-width: 100%;
  }

  .grid-blog, .grid-contact {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }

  .map {
    height: 300px;
  }

  .grid-about-page {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    grid-template-columns: 1fr;
  }

  .blog-single-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .grid-event-detail {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }

  .grid-artist-detail {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    margin-bottom: 70px;
  }

  .artist-location {
    flex-wrap: wrap;
  }

  .grid-project-detail {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }

  .project-enquire {
    flex-direction: column;
    align-items: flex-start;
  }

  .grid-product-detail, .grid-related-product {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }

  .shop-page-category-wrap {
    flex-wrap: wrap;
  }

  .shop-category-title {
    margin-bottom: 0;
  }

  .shop-page-title {
    grid-template-columns: 1fr;
  }

  .grid-project-page {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }

  .grid-footer {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
  }

  .heading-xxl {
    font-size: 110px;
  }

  .heading-xl {
    font-size: 90px;
  }

  .heading-lg {
    font-size: 80px;
  }

  .heading-h1 {
    font-size: 70px;
  }

  .instructions-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .licenses-section, .changelog-section {
    padding: 40px 20px;
  }

  .navbar-shop {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .nav-link-shop {
    color: var(--white);
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .nav-link-shop.w--current {
    color: var(--white);
  }

  .grid-gallery, .grid-artist-page {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }

  .menu-button {
    background-color: var(--black);
    color: var(--white);
    text-align: center;
    margin-left: auto;
    padding: 12px;
  }

  .menu-button.w--open {
    background-color: var(--black);
  }

  .logo-big-fixed {
    height: 30px;
  }

  .brand {
    left: auto;
  }

  .brand.w--current {
    margin-right: auto;
  }

  .hero-personal-position {
    margin-top: 0;
  }

  .logo-big-brand {
    font-size: 145px;
  }

  .contribution-block {
    max-height: 40vh;
    padding-left: 1em;
    padding-right: 1em;
  }

  .contribution-heading {
    font-size: 22px;
  }

  .right-bigger-grid {
    position: static;
  }

  .container-2 {
    display: block;
  }
}

@media screen and (max-width: 767px) {
  h1 {
    font-size: 52px;
  }

  h2 {
    font-size: 42px;
  }

  h3 {
    font-size: 36px;
  }

  h4 {
    font-size: 30px;
  }

  h5 {
    font-size: 26px;
  }

  h6 {
    font-size: 20px;
  }

  .heading-h2 {
    font-size: 42px;
  }

  .section-title {
    margin-bottom: 30px;
  }

  .heading-h3 {
    font-size: 36px;
  }

  .heading-h4 {
    font-size: 30px;
  }

  .heading-h5 {
    font-size: 26px;
  }

  .heading-h6 {
    font-size: 20px;
  }

  .navbar {
    padding-left: 20px;
    padding-right: 20px;
  }

  .nav-menu {
    margin-top: 0;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .nav-link {
    color: var(--white);
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .nav-link.w--current {
    color: var(--white);
  }

  .decoration.shape-1 {
    width: 300px;
    height: 400px;
  }

  .decoration.shape-2 {
    width: 300px;
  }

  .decoration.shape-3 {
    width: 300px;
    height: 400px;
  }

  .container-full {
    padding-left: 20px;
    padding-right: 20px;
  }

  .section-spacing {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .section-spacing-top {
    padding-top: 80px;
  }

  .section-spacing-bottom {
    padding-bottom: 80px;
  }

  .exhibition-item {
    grid-template-columns: 1.25fr .75fr;
  }

  .exhibition-title {
    font-size: 18px;
  }

  .footer {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .footer-menu-item {
    align-items: flex-start;
  }

  .nav-button {
    padding: 10px 0;
  }

  .navbar-wrap-big {
    padding-left: 20px;
    padding-right: 20px;
  }

  .shape-5 {
    top: 0;
  }

  .grid-product {
    grid-template-columns: 1fr;
  }

  .grid-event {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    grid-template-columns: 1fr;
  }

  .hero-personal {
    padding-top: 80px;
    padding-bottom: 30px;
  }

  .hero-image-item.blur-1 {
    left: auto;
    right: 0;
  }

  .hero-image-item.blur-2 {
    width: 300px;
    left: 0;
  }

  .grid-about-info {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    margin-top: 30px;
    margin-bottom: 30px;
  }

  .award-item {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-wrap: wrap;
  }

  .award-title {
    margin-bottom: 0;
    font-size: 18px;
  }

  .grid-testimonial {
    grid-template-columns: 1.5fr;
  }

  .grid-footer-simple {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }

  .hero-shop {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .hero-shop-item-blur-1 {
    width: 300px;
    height: 300px;
  }

  .hero-shop-item-blur-2 {
    width: 300px;
    height: 200px;
  }

  .grid-shop-about {
    grid-template-columns: 1fr;
  }

  .shop-about-image-wrap {
    margin-right: 0;
  }

  .grid-blog {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
    grid-template-columns: 1fr;
  }

  .hero-inner {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .grid-contact {
    grid-template-columns: 1fr;
  }

  .blog-detail-title {
    font-size: 60px;
  }

  .grid-event-detail {
    grid-template-columns: 1.75fr;
  }

  .grid-artist-detail {
    grid-template-columns: 1fr;
    margin-bottom: 60px;
  }

  .grid-project-detail, .grid-product-detail, .grid-related-product {
    grid-template-columns: 1fr;
  }

  .collection-list-category {
    flex-wrap: wrap;
    align-content: center;
    align-items: center;
    height: 100%;
  }

  .shop-category-link {
    margin-bottom: 0;
    padding-left: 10px;
    padding-right: 10px;
  }

  .grid-footer {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    grid-template-columns: 2.25fr;
  }

  .subscribe-form, .copyright {
    margin-top: 30px;
  }

  .video-popup-icon {
    width: 60px;
    height: 60px;
  }

  .footer-social-inline {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
  }

  .utility-page-wrap {
    height: 100%;
  }

  .utility-page-content {
    padding: 0;
  }

  .heading-xxl {
    font-size: 80px;
  }

  .heading-xl {
    font-size: 70px;
  }

  .heading-lg {
    font-size: 62px;
  }

  .heading-h1 {
    font-size: 52px;
  }

  .grid-artist-page {
    grid-template-columns: 1fr;
  }

  .brand {
    margin-right: auto;
    padding-left: 0;
  }

  .logo-big-brand {
    font-size: 105px;
  }

  .contribution-image {
    max-width: 50%;
  }

  .contribution-image.patreon {
    margin-bottom: 20px;
  }

  .contribution-image.oc {
    max-width: 25%;
    margin-bottom: 40px;
  }
}

@media screen and (max-width: 479px) {
  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 32px;
  }

  h4 {
    font-size: 28px;
  }

  h5 {
    font-size: 22px;
  }

  h6 {
    font-size: 18px;
  }

  .heading-h2 {
    font-size: 36px;
  }

  .heading-h3 {
    font-size: 32px;
  }

  .heading-h4 {
    font-size: 28px;
  }

  .heading-h5 {
    font-size: 22px;
  }

  .container-medium {
    padding-left: 20px;
    padding-right: 20px;
  }

  .input-group {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 0;
  }

  .heading-h6 {
    font-size: 18px;
  }

  .decoration.shape-3 {
    width: 200px;
  }

  .decoration.blur-3 {
    z-index: -1;
  }

  .shape-1 {
    width: 100px;
    height: 300px;
  }

  .shape-2 {
    width: 200px;
    height: 300px;
  }

  .shape-3 {
    width: 100%;
    height: 100px;
  }

  .shape-4 {
    width: 400px;
    height: 100px;
  }

  .section-spacing {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .grid-about-stat {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  .section-spacing-top {
    padding-top: 70px;
  }

  .project-status {
    margin-top: 10px;
  }

  .project-image-wrap {
    margin-bottom: 15px;
  }

  .section-spacing-bottom {
    padding-bottom: 70px;
  }

  .exhibition-item {
    grid-template-columns: 1.25fr;
  }

  .footer {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .footer-menu-item.text-right {
    align-items: flex-start;
  }

  .grid-project {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  .project-collection-list-wrapper.three {
    margin-top: 0;
  }

  .nav-menu-text {
    font-size: 18px;
  }

  .logo-big {
    height: 20px;
  }

  .grid-artist {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    grid-template-columns: 1fr;
  }

  .shape-5, .shape-7 {
    top: 0;
  }

  .client-section.section-spacing-bottom {
    padding-bottom: 40px;
  }

  .testimonial-slider {
    bottom: 30%;
  }

  .logo {
    padding-left: 0;
  }

  .hero-personal {
    padding-top: 40px;
    padding-bottom: 0;
  }

  .grid-about-info {
    grid-template-columns: 1fr;
  }

  .award-item {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .award-title {
    font-size: 14px;
  }

  .grid-footer-simple {
    grid-template-columns: 1.5fr;
  }

  .grid-hero-shop {
    grid-template-columns: 1fr 1fr;
  }

  .hero-shop-title {
    margin-top: 30px;
  }

  .grid-navbar-shop {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    grid-template-columns: 1fr .25fr .25fr;
  }

  .marquee-wrapper {
    margin-top: 20px;
  }

  .hero-inner {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .accordion-title {
    padding-right: 20px;
  }

  .blog-detail-author {
    margin-bottom: 10px;
    display: flex;
  }

  .blog-detail-title {
    font-size: 45px;
  }

  .blog-detail-meta {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 30px;
  }

  .grid-artist-detail {
    margin-bottom: 40px;
  }

  .shop-page-category-wrap, .collection-list-category {
    justify-content: flex-start;
  }

  .shop-category-link {
    margin-bottom: 0;
    margin-left: 0;
  }

  .grid-project-page {
    grid-template-columns: 1fr;
  }

  .grid-footer-menu {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    grid-template-columns: 1fr;
  }

  .footer-social {
    flex-direction: row;
    align-items: flex-start;
  }

  .video-popup-icon {
    width: 40px;
    height: 40px;
  }

  .heading-xxl {
    font-size: 50px;
  }

  .heading-xl {
    font-size: 44px;
  }

  .heading-lg {
    font-size: 42px;
  }

  .heading-h1 {
    font-size: 40px;
  }

  .grid-gallery {
    grid-template-columns: 1fr;
  }

  .artist-social {
    flex-direction: row;
    align-items: flex-start;
  }

  .left-arrow-bottom {
    position: relative;
    top: 30px;
    right: -50px;
  }

  .right-arrow-bottom {
    position: relative;
    top: -10px;
    right: 50px;
  }

  .project-deatil-size {
    margin-top: 10px;
  }

  .logo-big-brand {
    font-size: 44px;
  }

  .contribution-heading {
    margin-top: 10px;
  }

  .contribution-image {
    max-width: 100%;
  }

  .contribution-image.oc {
    max-width: 50%;
  }

  .link-block {
    text-align: center;
  }
}

#w-node-c39d2f69-c51c-f379-c01e-f954327bd430-327bd42d, #w-node-c39d2f69-c51c-f379-c01e-f954327bd446-327bd42d, #w-node-_4354045f-b897-ddd0-b71f-c7d69558d353-87c72197, #w-node-_9a39473d-1304-68b3-aded-dfe038bd802d-87c72197, #w-node-_4e3bfb92-c587-fca5-c157-915baad538ea-87c72197, #w-node-d11987a0-4b0a-7131-e942-ce9534175a89-87c72197, #w-node-_9af8901e-c057-faf9-143c-1f7f9d0935c9-87c72197, #w-node-_84269d22-3b71-84e2-6201-fdd6b5119bb3-87c72197, #w-node-_0ce6f584-b93b-2d60-b1fe-6110408bcc46-87c72197, #w-node-fcaf6018-c11f-6b6c-4c46-b5dd70200830-87c72197, #w-node-d6dfe133-6a7b-f1e6-b73a-a23c1430fc1f-87c72197, #w-node-dd14e646-ddf9-1bd5-a6f0-be6d0b7de949-87c72197, #w-node-fe05d052-3129-4dbc-9b74-bb78d56af59d-87c72197 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}


@font-face {
  font-family: 'Cift cift 400';
  src: url('../fonts/cift-cift-400.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}