@font-face {
  font-family: "Fa brands 400 (old)";
  src: url('../fonts/fa-brands-400.ttf') format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Fa solid 900";
  src: url('../fonts/fa-solid-900.ttf') format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Fa 400";
  src: url('../fonts/fa-regular-400.ttf') format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Fa Brands 400 (6.4.2)";
  src: url('../fonts/fa-brands-400.ttf') format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --black: black;
  --primary-green:#002A14;
  --white: white;
  --paragraph-gray: #e2e2e2;
  --primary: #D7C49E;
  --white-10: #ffffff1a;
  --text-dark: #0e0e0e;
  --primary-red: red;
  --white-50: #ffffff80;
  --white-15: #ffffff26;
  --transparent: #0000000d;
  --white-5: #ffffff0d;
  --black-10: #0000001a;
  --light-gray: #f8f8f8;
  --primary-light: #eef4f8;
  --tab-gray: #f0f0f0;
  --gray: #e9e9e9;
  --dark-gray: #afafaf;
  --dark-gray-50: #afafaf80;
}

.w-pagination-wrapper {
  flex-wrap: wrap;
  margin-top: 45px;
  justify-content: center;
  display: flex;
}

.w-pagination-previous {
  color: #333;
  background-color: #fafafa;
  border: 1px solid #ccc;
  border-radius: 2px;
  margin-left: 10px;
  margin-right: 10px;
  padding: 9px 20px;
  font-size: 14px;
  display: block;
}

.w-pagination-previous-icon {
  margin-right: 4px;
}

.w-pagination-next {
  color: #333;
  background-color: #fafafa;
  border: 1px solid #ccc;
  border-radius: 2px;
  margin-left: 10px;
  margin-right: 10px;
  padding: 9px 20px;
  font-size: 14px;
  display: block;
}

.w-pagination-next-icon {
  margin-left: 4px;
}

.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;
}

body {
  background-color: var(--primary-green);
  color: var(--white);
  font-family: IBM Plex Mono, sans-serif;
  font-size: 16px;
  line-height: 1em;
}

h1 {
  color: var(--primary);
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Space Grotesk, sans-serif;
  font-size: 85px;
  font-weight: 500;
  line-height: 1.2em;
}

h2 {
  color: var(--primary);
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Space Grotesk, sans-serif;
  font-size: 55px;
  font-weight: 500;
  line-height: 1.2em;
}

h3 {
  color: var(--primary);
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Space Grotesk, sans-serif;
  font-size: 34px;
  font-weight: 500;
  line-height: 1.4em;
}

h4 {
  color: var(--primary);
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Space Grotesk, sans-serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.4em;
}

h5 {
  color: var(--primary);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Space Grotesk, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.4em;
}

h6 {
  color: var(--white);
  letter-spacing: .15em;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Space Grotesk, sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.5em;
}

p {
  color: var(--paragraph-gray);
  letter-spacing: -.03em;
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 300;
  line-height: 1.5em;
}

a {
  color: var(--primary);
  letter-spacing: .1em;
  text-transform: uppercase;
  align-items: center;
  font-family: Space Grotesk, sans-serif;
  font-size: 16px;
  line-height: 1.2em;
  text-decoration: none;
  transition: all .35s;
  display: inline-block;
}

a:hover {
  color: var(--primary);
}

ul {
  grid-row-gap: 15px;
  background-color: var(--paragraph-gray);
  color: var(--white);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  flex-direction: column;
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 20px;
  display: flex;
}

li {
  align-items: center;
  line-height: 1.4em;
}

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

label {
  margin-bottom: 10px;
  display: block;
}

blockquote {
  border: 1px solid var(--white-10);
  background-color: var(--text-dark);
  text-align: center;
  letter-spacing: -.03em;
  margin-top: 40px;
  margin-bottom: 40px;
  padding: 40px;
  font-family: Space Grotesk, sans-serif;
  font-size: 27px;
  font-weight: 300;
  line-height: 1.5;
}

figure {
  margin-bottom: 10px;
}

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

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

.section.no-space {
  z-index: 25;
  padding-top: 0;
  padding-bottom: 0;
}

.section.upcominh-events {
  z-index: 45;
  margin-bottom: 80px;
  padding-top: 80px;
  padding-bottom: 0;
}

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

.base-container {
  z-index: 15;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
}

.base-container.full-width {
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}

.base-container.medium.no-paddings-team, .base-container.medium.licensing {
  padding-left: 0;
  padding-right: 0;
}

.base-container.large {
  max-width: 1800px;
}

.grid-system-wrapper {
  flex-direction: column;
  width: 100%;
  display: flex;
}

.grid-system {
  border-top: 1px solid var(--white-10);
  background-color: var(--black);
  justify-content: space-between;
  width: 80%;
  display: flex;
}

.grid-description {
  border-right: 1px solid var(--white-10);
  border-bottom: 1px solid var(--white-10);
  justify-content: center;
  align-items: center;
  width: 19%;
  margin-top: 0;
  margin-bottom: 0;
  padding: 20px 10px;
  display: flex;
}

.grid-description.first-description {
  border-right: 1px solid var(--white-10);
  border-bottom: 1px solid var(--white-10);
  border-left: 1px solid var(--white-10);
  text-align: center;
  width: 24%;
}

.grid-description.last-description {
  border-right-style: solid;
  border-right-width: 1px;
}

.spacing-wrapper-mobile {
  width: 70%;
  margin-top: 30px;
  position: relative;
}

.typography-wrapper {
  margin-top: 30px;
}

.spacing-columns {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  justify-content: space-between;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.bottom-style-spacing-desktop {
  font-weight: 700;
  position: absolute;
  inset: auto 0% 10% auto;
}

.top-style-spacing-desktop {
  font-weight: 700;
  position: absolute;
  top: 8%;
  bottom: auto;
  right: 0;
}

.spacing-wrapper {
  width: 100%;
  margin-top: 30px;
  position: relative;
}

.middle-style-spacing-desktop {
  font-weight: 700;
  position: absolute;
  inset: 33% 0% auto auto;
}

.primary-style-guide {
  background-color: var(--primary);
  width: 75px;
  height: 75px;
  box-shadow: 0 0 15px #0000001a;
}

.gray-style-guide {
  background-color: var(--paragraph-gray);
  width: 75px;
  height: 75px;
}

.color-wrapper {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.colors-wrapper {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.black-style-guide {
  border: 1px solid var(--white-10);
  background-color: var(--black);
  width: 75px;
  height: 75px;
}

.colors-container {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  justify-content: flex-start;
  display: flex;
}

.color-container {
  grid-column-gap: 30px;
  grid-row-gap: 15px;
  flex-wrap: wrap;
  justify-content: flex-start;
  display: flex;
}

.primary-light-style-guide {
  background-color: var(--primary-red);
  width: 75px;
  height: 75px;
  box-shadow: 0 0 15px #0000001a;
}

.headings-typography-wrapper {
  flex-flow: wrap;
  width: 47%;
  display: flex;
}

.headings-typography-wrapper.last-child {
  margin-bottom: 0;
  margin-right: 0;
}

.headers-wrapper {
  width: 100%;
  margin-top: 10px;
  padding-top: 10px;
  padding-bottom: 10px;
}

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

.h2-tablet, .h1-mobile {
  font-size: 55px;
}

.h2-mobile {
  font-size: 45px;
}

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

.primary-button {
  border: 2px solid var(--white);
  background-color: var(--white);
  color: var(--black);
  text-align: center;
  letter-spacing: .08em;
  text-transform: uppercase;
  justify-content: center;
  min-width: 160px;
  height: 54px;
  padding: 18px 24px;
  font-size: 14px;
  font-weight: 600;
  transition: all .35s;
  display: flex;
}

.primary-button:hover {
  background-color: var(--black);
  color: var(--white);
}

.primary-button.pagination {
  border-radius: 0;
  margin-top: 60px;
}

.style-guide-div {
  width: 100%;
}

.top-style-spacing-mobile {
  font-weight: 700;
  position: absolute;
  top: 5%;
  right: 0;
}

.middlr-style-spacing-mobile {
  font-weight: 700;
  position: absolute;
  top: 29%;
  right: 0;
}

.bottom-style-spacing-mobile {
  font-weight: 700;
  position: absolute;
  bottom: 7%;
  right: 0;
}

.link-wrapper {
  width: 50%;
  margin-top: 10px;
  margin-bottom: 0;
}

.licensing-title-wrapper {
  border-bottom: 1px #5e5e5e80;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
}

.licensing-images-wrapper {
  z-index: 5;
  width: 100%;
  padding-top: 40px;
  position: relative;
}

.licensing-grid {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  border-bottom: 1px #5e5e5e80;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  width: 100%;
  padding-bottom: 60px;
  padding-left: 15px;
  padding-right: 15px;
}

.licensing-grid.last-child {
  border-bottom-style: none;
  padding-bottom: 0;
}

.licensing-image {
  object-fit: cover;
  width: 100%;
  height: 320px;
}

.licensing-title {
  width: 100%;
  padding-bottom: 40px;
  padding-left: 15px;
  padding-right: 15px;
}

.licensing-image-link {
  width: 100%;
  height: 100%;
  transition-duration: .45s;
}

.licensing-image-link:hover {
  opacity: .65;
}

.license-link {
  letter-spacing: .15em;
  font-size: 14px;
  font-weight: 300;
}

.license-link:hover {
  color: var(--primary);
}

.licensing-heading {
  margin-bottom: 20px;
}

.licensing-icon-link-wrapper {
  margin-right: 25px;
  transition: none;
}

.icon-style-guide {
  color: var(--white);
  font-family: "Fa Brands 400 (6.4.2)", sans-serif;
  font-size: 24px;
  line-height: 1.5em;
  transition: all .45s;
}

.icon-style-guide:hover {
  color: var(--primary);
}

.icon-style-guide.dribble {
  font-family: "Fa solid 900", sans-serif;
}

.licensing-fonts-wrapper {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  align-items: center;
  width: 100%;
  margin-top: 20px;
  display: flex;
}

.licensing-icon-link {
  margin-bottom: 20px;
}

.licensing-paragraph {
  width: 50%;
}

.licensing-font-title {
  letter-spacing: .11em;
  font-size: 16px;
  font-weight: 300;
}

.licensing-icons-wrapper {
  margin-top: 30px;
  margin-bottom: 20px;
}

.utility-page-wrap {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin-bottom: 40px;
  padding-top: 40px;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
}

.utility-page-content {
  z-index: 55;
  text-align: center;
  flex-direction: column;
  width: 370px;
  margin-bottom: 0;
  display: flex;
  position: relative;
}

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

.password-image {
  object-fit: cover;
  max-width: none;
  height: 100px;
  margin-bottom: 40px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.password-title-wrapper {
  margin-bottom: 40px;
}

.changelog-title {
  margin-bottom: 20px;
}

.footer-bottom-wrapper {
  grid-row-gap: 5px;
  flex-flow: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
}

.footer-rights {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  color: var(--paragraph-gray);
  text-align: center;
  font-size: 14px;
  line-height: 1.4em;
  display: flex;
}

.footer-copyright {
  grid-column-gap: 5px;
  grid-row-gap: 0px;
  color: var(--paragraph-gray);
  text-align: center;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  line-height: 1.4em;
  display: flex;
}

.footer-copyright-link {
  color: #fff;
  letter-spacing: 0;
  text-transform: none;
  font-family: IBM Plex Mono, sans-serif;
  font-size: 14px;
  line-height: 1.4em;
  text-decoration: none;
  display: inline-block;
}

.footer-copyright-link:hover {
  color: var(--white-50);
}

.section-title-wrapper {
  text-align: center;
  width: 70%;
  margin-bottom: 60px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}

.style-guide-button-wrapper {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-direction: column;
  align-items: flex-start;
  width: 47%;
  display: flex;
}

.text-button-icon {
  font-family: "Fa solid 900", sans-serif;
  font-size: 13px;
  line-height: 1;
}

.paragraph-large {
  font-size: 18px;
}

.mb-30 {
  margin-bottom: 30px;
}

.link-with-icon {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  display: flex;
}

.link-with-icon:hover {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
}

.without-top-spacing {
  padding-top: 0;
}

.search-result-wrapper {
  width: 100%;
  margin-top: 40px;
}

.dark-gray-style-guide {
  border: 1px solid var(--white-10);
  background-color: var(--text-dark);
  width: 75px;
  height: 75px;
}

.headings-container {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.button-wrapper {
  align-items: center;
  display: flex;
}

.service-list-item {
  position: relative;
}

.style-guide-content-wrapper {
  display: flex;
}

.slide-3 {
  max-height: 580px;
}

.about-3-tab-link {
  color: var(--white);
  background-color: #0000;
  flex-direction: column;
  align-items: center;
  width: 33.33%;
  margin-bottom: -12px;
  padding-top: 20px;
  padding-bottom: 4px;
  font-size: 19px;
  line-height: 32px;
  transition: all .3s;
  display: flex;
  position: relative;
}

.about-3-tab-link.w--current {
  color: var(--white);
  background-color: #0000;
  padding-top: 20px;
  padding-bottom: 4px;
  font-size: 24px;
}

.portfolio-grid-collection-item {
  width: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 30px #00000014;
}

.portfolio-masonry-image-wrapper {
  position: relative;
}

.landing-inner-page-image-wrapper {
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  display: flex;
  position: relative;
}

.landing-inner-page-overlay {
  z-index: 1;
  background-color: #0003;
  position: absolute;
  inset: 0%;
}

.secondary-button {
  border: 1px solid var(--white);
  color: var(--white);
  letter-spacing: .08em;
  background-color: #0000;
  justify-content: center;
  min-width: 160px;
  height: 54px;
  padding: 18px 24px;
  font-family: Space Grotesk, sans-serif;
  font-size: 14px;
  font-weight: 600;
  transition: all .35s;
  display: flex;
}

.secondary-button:hover {
  background-color: var(--white);
  color: var(--black);
}

.secondary-button.pagination {
  border-radius: 0;
  margin-top: 60px;
}

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

.blog-section-title {
  text-align: center;
  margin-bottom: 60px;
  padding-left: 15px;
  padding-right: 15px;
}

.map-wrapper {
  position: relative;
}

.map-wrapper.home-page {
  width: 100%;
  margin-bottom: 60px;
}

.contacts-wrapper-grid {
  grid-column-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  padding-left: 30px;
  padding-right: 30px;
}

.section-title-center {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 780px;
  margin-bottom: 60px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.courses-collection {
  width: 100%;
}

.home-4-testimonials-wrapper, .testimonials-wrapper-2 {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  align-items: stretch;
  width: 100%;
  margin-top: 10px;
  display: flex;
}

.top-banner-button-wrapper {
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  margin-top: 38px;
  display: flex;
  position: relative;
}

.about-img {
  object-fit: cover;
  position: absolute;
}

.about-img._1 {
  z-index: 2;
  width: 350px;
  inset: 0% 0% auto 12%;
}

.about-img._5 {
  z-index: 4;
  width: 350px;
  inset: 60% 0% auto 24%;
}

.about-img._3 {
  z-index: 1;
  width: 300px;
  inset: 19% 4% 0% auto;
}

.about-img._4 {
  z-index: 5;
  width: 220px;
  inset: 47% 30% 0% 50%;
}

.about-img._2 {
  z-index: 3;
  width: 300px;
  inset: 31% auto 0% 2%;
}

.subtitle {
  border-bottom: 2px solid #80808026;
  margin-bottom: 30px;
  margin-right: 0;
  padding-bottom: 4px;
  display: inline-block;
}

.our-services-wrap {
  grid-row-gap: 20px;
  flex-direction: column;
  align-items: center;
  width: 33.33%;
  display: flex;
}

.central-alignment-heaading {
  text-align: center;
  margin-bottom: 75px;
}

.heading-wrapper {
  margin-top: 40px;
  margin-bottom: 30px;
}

.content-wrapper {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 190px;
  display: flex;
}

.content {
  border-radius: 5px;
  margin-bottom: 30px;
  margin-left: 15px;
  margin-right: 15px;
}

.industries-block-wrapper {
  background-color: #0000;
  border-radius: 12px;
  flex-direction: column;
  justify-content: space-around;
  width: 100%;
  max-width: 35vw;
  padding-bottom: 30px;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  position: relative;
}

.industries-block-wrapper:hover {
  box-shadow: 0 10px 20px #14173326;
}

.home-9-team-item {
  text-align: center;
  flex-direction: column;
  align-items: center;
  width: 31%;
  position: relative;
}

.about-4-team-slide {
  width: 23%;
  margin-right: 30px;
}

.about-6-projects-item {
  text-align: center;
  object-fit: cover;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 370px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.section-with-blue-bg {
  background-color: var(--primary);
  justify-content: center;
  display: flex;
}

.search {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  flex-direction: row;
  width: 100%;
  margin-top: 24px;
  margin-bottom: 0;
  display: flex;
}

.subtitle-2 {
  color: #fc8e44;
  border-bottom: 2px solid #80808026;
  margin-bottom: 30px;
  margin-right: 0;
  padding-bottom: 4px;
  display: inline-block;
}

.dropdown-nav-link {
  color: #999;
  margin-left: -20px;
  padding: 5px 0;
  font-family: Poppins;
  transition: color .2s;
  display: flex;
}

.dropdown-nav-link:hover, .dropdown-nav-link.w--current {
  color: #004ae2;
}

.gallery-image-link {
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
  overflow: hidden;
}

.home-19-gallery-img-link {
  justify-content: center;
  display: flex;
  position: relative;
  overflow: hidden;
}

.rich-text-style h2 {
  margin-bottom: 15px;
}

.rich-text-style h3, .rich-text-style h4, .rich-text-style h5, .rich-text-style h6 {
  margin-top: 30px;
  margin-bottom: 15px;
}

.rich-text-style ul {
  margin-top: 15px;
  margin-bottom: 30px;
}

.rich-text-style img {
  margin-top: 0;
  margin-bottom: 0;
}

.rich-text-style h1 {
  margin-bottom: 15px;
}

.rich-text-style figure {
  margin-top: 40px;
  margin-bottom: 40px;
}

.home-banner-left-arrow {
  align-items: center;
  height: 40px;
  display: flex;
  inset: 0% auto 0% 2%;
}

.home-23-team-item {
  width: 33%;
}

.center-title {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.style-guide-tab-content-wrapper {
  grid-row-gap: 60px;
  flex-direction: column;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
}

.tabs-style-guide {
  width: 100%;
}

.spacing-system-image-2 {
  filter: grayscale();
  max-width: 80%;
}

.main-style-guide-body-wrapper {
  width: 47%;
  margin-right: 40px;
}

.style-guide-tab-link {
  border: 1px solid var(--white-10);
  background-color: var(--black);
  color: var(--white);
  letter-spacing: .08em;
  text-transform: uppercase;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 60px;
  padding: 15px 20px;
  font-size: 14px;
  display: flex;
}

.style-guide-tab-link:hover {
  opacity: .6;
  color: var(--white);
}

.style-guide-tab-link.w--current {
  border-color: var(--white-15);
  background-color: var(--text-dark);
  color: #fff;
}

.style-guide-tabs-menu {
  grid-column-gap: .4rem;
  grid-row-gap: .4rem;
  border-left: 1px solid var(--black);
  justify-content: space-between;
  margin-bottom: 80px;
  padding-left: .4rem;
  padding-right: .4rem;
  display: flex;
}

.spacing-title {
  margin-top: 0;
  margin-bottom: 0;
}

.grid-title {
  border-right: 1px solid var(--white-10);
  border-left: 1px none var(--white-10);
  background-color: var(--text-dark);
  color: #fff;
  justify-content: center;
  align-items: center;
  width: 19%;
  margin-top: 0;
  margin-bottom: 0;
  padding: 20px 10px;
  display: flex;
}

.grid-title.first-grid {
  border-left-style: solid;
  border-left-color: var(--white-10);
  width: 24%;
  height: 100%;
  margin-top: 0;
}

.spasing-system-image-mobile-2 {
  filter: grayscale();
  max-width: 70%;
}

.landing-inner-page-image {
  border: 1px solid var(--white-10);
  object-fit: cover;
  object-position: 50% 0%;
  width: 100%;
}

.landing-inner-page-image.banner {
  box-shadow: 0 6px 20px #00000014;
}

.landing-banner-screens {
  z-index: 15;
  width: 100%;
  margin-bottom: -60px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.landing-inner-page-item {
  text-align: center;
  background-color: #0000;
  width: 100%;
}

.landing-paragraph-style {
  text-align: center;
  margin-top: 25px;
  margin-bottom: 0;
  font-size: 15px;
}

.section-landing-customers {
  padding-top: 60px;
  overflow: hidden;
}

.landing-customers-content-left {
  grid-row-gap: 30px;
  text-align: left;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 46%;
  padding-right: 20px;
  display: flex;
}

.landing-customers-content-right {
  grid-column-gap: 20px;
  grid-row-gap: 40px;
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  width: 54%;
  display: grid;
}

.landing-section-heading-white {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 45px;
}

.landing-customers-icon-wrapper {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 80%;
  display: flex;
}

.landing-icon-style {
  opacity: 1;
  filter: invert();
  height: 40px;
}

.paragraph-benefits-lp {
  width: 90%;
}

.landing-customers-layout {
  justify-content: space-between;
  width: 100%;
  display: flex;
}

.landing-section-title {
  width: 100%;
  margin: 0 auto;
}

.landing-inner-page-icon {
  z-index: 10;
  border: 1px solid var(--white-10);
  background-color: var(--text-dark);
  color: #fff;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  font-family: "Fa solid 900", sans-serif;
  font-size: 28px;
  display: flex;
  position: absolute;
  transform: rotate(-30deg);
}

.section-ttile-description {
  text-align: center;
  width: 100%;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
}

.landing-inner-page-title {
  letter-spacing: .18em;
  font-family: IBM Plex Mono, sans-serif;
  font-size: 16px;
  font-weight: 300;
}

.section-banner {
  padding-top: 80px;
  padding-bottom: 80px;
  position: relative;
}

.section-banner.landing-banner {
  z-index: 15;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding-top: 160px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.footer-rights-wrapper {
  grid-column-gap: 5px;
  grid-row-gap: 0px;
  flex-wrap: wrap;
  display: flex;
}

.h2-style-guide-title {
  margin-top: 0;
  margin-bottom: 0;
}

.spacing-flex-wrap {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  flex-direction: column;
  display: flex;
}

.sg-title {
  margin-top: 0;
  margin-bottom: 0;
}

.sg-title.mb-15 {
  margin-bottom: 15px;
}

.sg-title.mb-30 {
  margin-bottom: 30px;
}

.flex-small-sg-con {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.color-sg-par {
  margin-top: 0;
  margin-bottom: 0;
}

.flex-body-wrap {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 47%;
  display: flex;
}

.style-guide-body-wrap {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  display: flex;
}

.btn-flex-wrap {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  flex-flow: wrap;
  display: flex;
}

.licensing-footer-link {
  color: var(--paragraph-gray);
  letter-spacing: 0;
  text-transform: capitalize;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  font-family: IBM Plex Mono, sans-serif;
  font-size: 14px;
  line-height: 1.4em;
  display: flex;
}

.licensing-footer-link:hover {
  color: var(--white-50);
}

.license-link-wrapper {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  justify-content: flex-start;
  align-items: center;
  margin-left: auto;
  display: flex;
}

.banner-01 {
  z-index: 5;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  height: auto;
  min-height: 780px;
  display: grid;
  position: relative;
}

.photo-banner {
  width: 100%;
  height: 130%;
  position: absolute;
  inset: 0%;
  overflow: hidden;
}

.hero-image {
  background-image: url('../images/Banner-Image_1Banner Image.webp');
  background-position: 50%;
  background-size: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

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

.banner-title-wrap {
  z-index: 15;
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
}

.banner-content {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  flex-flow: column;
  justify-content: flex-end;
  align-items: stretch;
  width: 100%;
  height: 100%;
  padding-top: 140px;
  padding-bottom: 80px;
  display: flex;
  position: relative;
}

.dark-png-01 {
  z-index: 20;
  object-fit: cover;
  width: 100%;
  height: auto;
  position: relative;
}

.gradient-content {
  z-index: -5;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.png-con-01 {
  z-index: 5;
  position: absolute;
  inset: 0% 0% auto;
}

.fixed-grid {
  z-index: 10;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 15px 1fr 1fr 1fr 15px;
  grid-auto-columns: 1fr;
  width: 100%;
  max-width: 1230px;
  height: 100vh;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  position: fixed;
  inset: 0%;
  overflow: hidden;
}

.vert-line {
  z-index: 15;
  background-color: var(--white-10);
  width: 1px;
  height: 100%;
  position: relative;
}

.dark-overlay {
  z-index: 2;
  background-image: linear-gradient(180deg, #000000b3 5%, var(--transparent) 25%), linear-gradient(180deg, var(--transparent) 60%, var(--black) 89%);
  position: absolute;
  inset: 0%;
}

.gradient-banner-bottom {
  z-index: 5;
  position: absolute;
  inset: -200px 0% 0%;
}

.gradient-banner-bottom.footer-small {
  top: -280px;
}

.header-list-wrap {
  width: 100%;
}

.tablet-menu-5 {
  display: none;
}

.full-width-nav-link {
  color: #fff;
  justify-content: flex-start;
  width: 100%;
  margin-left: -10px;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 14px;
  font-weight: 300;
  transition-duration: .45s;
  display: flex;
}

.full-width-nav-link:hover {
  color: var(--primary);
  margin-left: 0;
}

.full-width-nav-link.w--current {
  color: var(--white);
  margin-left: 0;
  font-weight: 500;
}

.full-width-nav-link.w--current:hover {
  opacity: 1;
  color: var(--primary);
}

.nav-dropdown-small-icon {
  margin: auto 0;
  font-size: 12px;
  font-weight: 600;
  display: none;
  position: relative;
}

.btn-left {
  z-index: 5;
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  border: 2px solid var(--primary);
  background-color: var(--primary);
  justify-content: center;
  align-items: center;
  min-height: 54px;
  padding-left: 24px;
  padding-right: 24px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.border-wrap-4 {
  z-index: 1;
  grid-column-gap: 34px;
  grid-row-gap: 34px;
  display: flex;
  position: relative;
}

.nav-text-wrap {
  justify-content: flex-start;
  align-items: center;
  display: flex;
  position: relative;
  overflow: hidden;
}

.nav-btn-wrap {
  flex: none;
  justify-content: center;
  align-items: center;
  display: flex;
}

.nav-line {
  z-index: 2;
  opacity: 1;
  background-color: #ffffff1a;
  width: 100%;
  height: 1px;
  display: none;
  position: absolute;
  inset: auto auto 0% 0%;
}

.logo-link-mobile {
  padding-left: 0;
  display: none;
}

.megamenu-dropdown-wrapper-3 {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1.1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: stretch;
  display: grid;
}

.burger-nav {
  justify-content: center;
  align-items: center;
  min-width: 140px;
  height: auto;
  min-height: 74px;
  padding: 15px;
  display: none;
  position: relative;
}

.nav-bg-cover {
  z-index: 1;
  background-color: var(--primary-green);
  opacity: 0;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  width: 100%;
  height: 100%;
  display: flex;
  position: absolute;
  inset: 0%;
}

.btn-title-text {
  color: var(--black);
  letter-spacing: .08em;
  text-transform: uppercase;
  width: 100%;
  height: 100%;
  font-family: Space Grotesk, sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2em;
}

.btn-title-text.hover-white {
  color: var(--primary);
}

.btn-title-text.large-text {
  letter-spacing: .05em;
  font-family: IBM Plex Mono, sans-serif;
  font-size: 16px;
  font-weight: 600;
}

.btn-title-text.large-text.white {
  color: var(--primary);
}

.nav-dropdown-list-item-2 {
  z-index: 5;
  border: 1px solid var(--white-15);
  background-color: var(--black);
  border-radius: 0;
  width: 200px;
  margin-top: -1px;
  padding: 15px 20px;
}

.nav-dropdown-list-item-2.w--open {
  z-index: 100;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.nav-dropdown-list-item-2.megamenu {
  width: 740px;
  left: -355px;
}

.nav-dropdown-list-item-2.megamenu.w--open {
  width: 650px;
  left: -377px;
}

.hero-nav-dropdown {
  z-index: 50;
  font-size: 14px;
  line-height: 1.2em;
}

.nav-line-white-2 {
  color: #fff;
  background-color: #fff;
  width: 42px;
  height: 2px;
  margin-bottom: 3px;
}

.hero-nav-con {
  position: relative;
  overflow: hidden;
}

.brand-wrapper {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.nav-intro-item {
  color: var(--primary);
  letter-spacing: .12em;
  text-transform: uppercase;
  padding-left: 0;
  font-family: Space Grotesk, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5em;
}

.nav-menu-wrap {
  text-align: right;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
}

.nav-dropdown-link-span {
  background-image: url('../images/arrowUp-1.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: auto 95%;
  width: 12px;
  height: 14px;
  margin-right: 8px;
  display: inline-block;
}

.nav-dropdown-link-wrapper-3 {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
  display: flex;
  position: relative;
  overflow: hidden;
}

.header-collection-list {
  width: 100%;
}

.dropdown-header-item-2 {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  background-color: #0000;
  justify-content: center;
  align-items: stretch;
  height: 80px;
  padding: 18px 0;
  transition: all .5s;
  display: flex;
}

.dropdown-header-item-2.w--open:hover {
  color: #a8a4a4;
  text-decoration: none;
}

.header-link-item {
  background-color: #0000;
  align-items: center;
  height: 80px;
  margin-top: 0;
  margin-bottom: 0;
  padding: 18px 0;
  transition: all .5s;
  display: flex;
  position: relative;
}

.header-link-item.w--open:hover {
  color: #a8a4a4;
  text-decoration: none;
}

.icon-top {
  width: auto;
  max-width: none;
  height: 14px;
  transform: none;
}

.icon-top.large {
  height: 24px;
}

.icon-top.large-rotate {
  height: 24px;
  transform: rotate(-45deg);
}

.icon-top.large-rotate-black {
  height: 34px;
  transform: rotate(-45deg);
}

.line-white-2 {
  color: #fff;
  background-color: #fff;
  width: 42px;
  height: 2px;
  margin-bottom: 3px;
}

.button-icon {
  justify-content: center;
  align-items: center;
  padding: 2px;
  display: flex;
}

.button-icon.button-icon-bottom {
  position: absolute;
  bottom: -100%;
  left: -100%;
}

.navigation-fixed-menu {
  z-index: 2147483647;
  background-color: #0000;
  justify-content: space-between;
  align-items: center;
  height: auto;
  display: flex;
  position: fixed;
  inset: 0% 0% auto;
  overflow: visible;
}

.brand-logo {
  padding-left: 0;
  position: relative;
}

.brand-logo:hover {
  opacity: 1;
}

.brand-logo.w--current {
  transition-property: opacity;
}

.brand-logo.w--current:hover {
  opacity: 1;
}

.nav-clip.bottom {
  position: absolute;
}

.header-coll-item {
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  display: flex;
}

.clip-intro {
  z-index: 10;
  flex-direction: column;
  display: flex;
  position: relative;
  overflow: hidden;
}

.clip-intro.banner-arrow {
  align-self: center;
  align-items: center;
  position: absolute;
  inset: auto auto 34px;
}

.logo-project {
  width: auto;
  height: 50px;
}

.nav-menu-shadow-overlay-5 {
  align-items: center;
  display: flex;
}

.menu-item-wrapper {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: auto 1fr auto;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  place-items: center stretch;
  width: 100%;
  display: grid;
}

.megamenu-dropdown-wrap-2 {
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
}

.dropdown-menu {
  z-index: 0;
  justify-content: space-between;
  align-items: center;
  display: flex;
  position: relative;
}

.icon-wrap {
  justify-content: center;
  align-items: center;
  display: flex;
}

.btn-banner-text.button-text-bottom {
  position: absolute;
  bottom: -100%;
}

.full-nav-hero-container {
  z-index: 2;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 30px;
  padding-right: 30px;
  display: flex;
  position: relative;
}

.button-transparent {
  z-index: 20;
  grid-column-gap: 0px;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  color: #fff;
  text-align: center;
  letter-spacing: .2em;
  text-transform: uppercase;
  justify-content: center;
  height: auto;
  padding: 0;
  font-size: 12px;
  line-height: 1em;
  transition: all .45s;
  display: flex;
  position: relative;
  overflow: hidden;
}

.button-transparent.large {
  width: 100%;
}

.button-transparent.tablet-show {
  justify-content: flex-start;
  align-items: center;
  margin-top: 20px;
  display: none;
}

.vert-line-01 {
  background-image: linear-gradient(0deg, var(--white-50), var(--transparent));
  width: 1px;
  height: 20vh;
}

.vert-line-02 {
  z-index: 100;
  background-image: linear-gradient(0deg, var(--white-50), var(--transparent));
  width: 1px;
  height: 20vh;
}

.vert-line-03 {
  background-image: linear-gradient(0deg, var(--white-50), var(--transparent));
  width: 1px;
  height: 20vh;
}

.vert-line-04 {
  z-index: 15;
  background-image: linear-gradient(0deg, var(--white-50), var(--transparent));
  width: 1px;
  height: 20vh;
}

.loop-line-con {
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.full-large-con {
  padding-left: 15px;
  padding-right: 15px;
}

.masonry-project-grid {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex-wrap: wrap;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: start;
  width: 100%;
  padding-bottom: 80px;
  display: grid;
}

.full-portfolio-spacing-con {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex-flow: column;
  padding-left: 40px;
  padding-right: 40px;
  display: flex;
  position: relative;
}

.collection-masonry-item {
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
  position: relative;
  overflow: hidden;
}

.collection-masonry-item:nth-child(odd) {
  margin-bottom: -80px;
}

.collection-masonry-item:nth-child(2n) {
  margin-top: 80px;
  margin-bottom: -80px;
}

.masonry-project-grid-bottom {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex-wrap: wrap;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1.5fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: start;
  width: 100%;
  padding-bottom: 80px;
  display: grid;
}

.masonry-project-grid-bottom.small-gap {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
}

.masonry-project-grid-bottom.news-gap {
  grid-column-gap: 30px;
  grid-row-gap: 120px;
  grid-template-columns: 1fr 1.3fr 1fr;
  align-items: start;
}

.masonry-project-wrapper {
  z-index: 85;
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  flex-flow: column;
  width: 100%;
  padding-bottom: 1px;
  display: flex;
  position: relative;
}

.row-masonry {
  margin-top: -80px;
}

.masonry-collection-list-wrapper {
  z-index: 10;
  position: relative;
}

.par-hidden-2 {
  color: #0000;
  margin-top: 0;
  margin-bottom: 0;
  display: none;
  position: absolute;
}

.hover-link-animation {
  position: relative;
  overflow: hidden;
}

.skew-background-wrapper {
  z-index: 1;
  position: absolute;
  inset: 0%;
  overflow: hidden;
}

.current-blog-link {
  z-index: 10;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.project-card {
  background-color: var(--primary);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  color: #fff;
  flex-flow: column;
  grid-template-rows: 1fr;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  min-height: 300px;
  padding: 6px;
  text-decoration: none;
  display: grid;
  position: relative;
  overflow: hidden;
}

.project-background {
  z-index: 2;
  background-image: url('../images/velvet-hour.jpg');
  background-position: 50% 25%;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  inset: 0%;
  overflow: hidden;
}

.project-background-one {
  z-index: 2;
  background-image: url('../images/someones/dance1.webp');
  background-position: 50% 25%;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  inset: 0%;
  overflow: hidden;
}
.project-background-two {
  z-index: 2;
  background-image: url('../images/someones/live-dance-1.webp');
  background-position: 50% 25%;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  inset: 0%;
  overflow: hidden;
}
.project-background-three {
  z-index: 2;
  background-image: url('../images/someones/sherlyn1.jpg');
  background-position: 50% 25%;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  inset: 0%;
  overflow: hidden;
}

.project-background-four {
  z-index: 2;
  background-image: url('../images/events/future-queen-two.webp');
  background-position: 50% 25%;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  inset: 0%;
  overflow: hidden;
}

.project-background-five {
  z-index: 2;
  background-image: url('../images/events/a-new-burlesque-two.webp');
  background-position: 50% 25%;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  inset: 0%;
  overflow: hidden;
}

.overlay-blog {
  background-color: #0e0e0e26;
  background-image: linear-gradient(#0e0e0e05 40%, #0e0e0e59);
  position: absolute;
  inset: 0%;
}

.masonry-category {
  color: var(--black);
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 400;
}

.masonry-category:hover {
  color: var(--primary);
}

.paralax-wrap {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.hover-fill {
  background-color: #ffffff1a;
  width: 100%;
  height: 100%;
}

.project-name {
  background-color: var(--primary);
  z-index: 15;
  grid-column-gap: 24px;
  grid-row-gap: 12px;
  flex-flow: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  place-items: center;
  padding: 20px 15px;
  display: flex;
  position: relative;
}

.hover-line {
  width: 100%;
  height: 1px;
  display: none;
  position: absolute;
  inset: auto auto 0% 0%;
  overflow: hidden;
}

.hover-line.top {
  inset: 0% auto auto 0%;
}

.hover-line.bottom {
  inset: auto auto 0% 0%;
}

.horizontal-fill-line {
  background-color: var(--black);
  width: 40px;
  height: 1px;
  position: relative;
  overflow: hidden;
}

.clip-link-container {
  z-index: 10;
  flex-direction: column;
  display: flex;
  position: relative;
  overflow: hidden;
}

.clip-link-container.bottom {
  position: absolute;
}

.skew-background {
  background-image: url('../images/velvet-hour-bg.jpg');
  background-position: 50% 25%;
  background-size: cover;
  position: absolute;
  inset: 0%;
}

.skew-background-one {
  background-image: url('../images/someones/dance2.webp');
  background-position: 50% 25%;
  background-size: cover;
  position: absolute;
  inset: 0%;
}
.skew-background-two {
  background-image: url('../images/someones/live-dance-2.webp');
  background-position: 50% 25%;
  background-size: cover;
  position: absolute;
  inset: 0%;
}
.skew-background-three {
  background-image: url('../images/someones/sherlyn2.jpg');
  background-position: 50% 25%;
  background-size: cover;
  position: absolute;
  inset: 0%;
}

.skew-background-four {
  background-image: url('../images/events/future-queen-one.webp');
  background-position: 50% 25%;
  background-size: cover;
  position: absolute;
  inset: 0%;
}

.skew-background-five {
  background-image: url('../images/events/a-new-burlesque-one.webp');
  background-position: 50% 25%;
  background-size: cover;
  position: absolute;
  inset: 0%;
}

.skew-background.top-image {
  background-position: 50% 5%;
}

.masonry-title {
  color: var(--black);
  text-align: center;
  letter-spacing: -.03em;
  text-transform: capitalize;
  font-size: 30px;
}

.masonry-title:hover {
  color: var(--primary);
}

.project-background-wrapper {
  z-index: 2;
  position: absolute;
  inset: 0%;
  overflow: hidden;
}

.masonry-info-top {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
  grid-template-columns: 80px auto 80px;
  grid-auto-columns: 1fr;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  display: grid;
}

.masonry-data-text {
  color: var(--black);
  letter-spacing: .1em;
  text-transform: uppercase;
  font-family: Space Grotesk, sans-serif;
  font-size: 14px;
  line-height: 1.2em;
}

.top-scroll-cover {
  z-index: 70;
  background-color: var(--white);
  width: 100%;
  height: 0%;
  position: absolute;
  inset: 0% 0% auto;
}

.top-title-space {
  z-index: 90;
  margin-bottom: 60px;
  position: relative;
}

.content-centered {
  grid-column-gap: 140px;
  grid-row-gap: 140px;
  text-align: center;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.top-par-wdth {
  width: 55%;
}

.clip-section {
  z-index: 8;
  position: relative;
  overflow: hidden;
}

.clip-section.bottom {
  z-index: 45;
}

.top-banner-001 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
  position: relative;
}

.banner-01-content {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  flex-flow: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  height: 100%;
  padding-bottom: 80px;
  display: grid;
  position: relative;
}

.three-grid {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.three-grid.wiht-gap {
  grid-template-columns: 15px 1fr 1fr 1fr 15px;
}

.three-grid.wdth {
  grid-template-columns: 15px 1fr 1fr 1fr 15px;
  max-width: 1230px;
  margin-left: auto;
  margin-right: auto;
}

.three-grid.banner-02, .three-grid.banner-event-02 {
  max-width: 1230px;
}

.large-btn-wrapper {
  justify-content: space-between;
  align-items: flex-end;
  padding: 110px 15px 15px;
  display: flex;
}

.btn-cover {
  background-color: var(--black);
  width: 100%;
  height: 100%;
  display: none;
  position: absolute;
  inset: 0% auto 0% 0%;
}

.btn-large {
  z-index: 5;
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  border: 2px solid var(--primary);
  background-color: var(--primary);
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100px;
  min-height: 54px;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.clip-bottom-line {
  width: 100%;
  height: 2px;
  position: absolute;
  inset: 0% auto auto 0%;
  overflow: hidden;
}

.nav-bottom-line {
  z-index: 1;
  background-color: var(--white);
  width: 100px;
  height: 2px;
  position: absolute;
  inset: auto 0% 0%;
}

.ticket-png {
  object-fit: cover;
  width: auto;
  max-width: none;
  height: 100px;
}

.button-banner-wrap {
  grid-column-gap: 2px;
  grid-row-gap: 2px;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  display: flex;
}

.banner-info {
  flex-flow: column;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  height: 100%;
  display: flex;
}

.top-column {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  position: relative;
}

.event-name {
  text-transform: none;
  font-family: IBM Plex Mono, sans-serif;
  font-size: 14px;
}

.event-name.color-white, .event-name.color-white-small {
  color: var(--white);
}

.event-date {
  letter-spacing: 0;
}

.event-coll {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 40px;
  padding-bottom: 40px;
  display: flex;
  position: relative;
}

.info-event {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.event-small-title {
  letter-spacing: .1em;
  font-weight: 500;
}

.info-details {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.benefit-title {
  font-size: 120px;
  line-height: 1em;
}

.benefit-subtitle {
  color: var(--white);
}

.initial-text {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 12px;
  padding-right: 12px;
  display: flex;
}

.horizontal-print {
  object-fit: cover;
  object-position: 50% 100%;
  width: 100%;
  max-width: none;
  height: 15px;
  margin-top: -1px;
  display: block;
}

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

.video-section {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  height: auto;
  min-height: 700px;
  display: grid;
  position: relative;
  overflow: hidden;
}

.video-section.get-tickets-banner {
  padding-top: 140px;
}

.video-bg {
  z-index: 5;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.video-intro-content {
  z-index: 35;
  padding-bottom: 80px;
  position: relative;
}

.space-wrapper {
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  margin-top: 24px;
  margin-bottom: 40px;
  display: flex;
}

.top-service-info {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.our-services-list {
  width: 100%;
  position: relative;
}

.large-container {
  z-index: 45;
  width: 100%;
  max-width: 1230px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.white-con {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-color: var(--white);
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  padding: 30px;
  display: grid;
  position: relative;
}

.category-event-wrapper {
  width: 100%;
  height: 100%;
}

.event-category-list {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  height: 100%;
  display: grid;
}

.event-category-info {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.event-category-info.margin-small {
  margin-top: 6px;
}

.category-title {
  color: var(--black);
  line-height: 1em;
}

.category-title.hover-color {
  color: var(--primary);
}

.category-event-item {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-flow: column;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  height: 100%;
  display: flex;
}

.photo-category-wrapper {
  position: relative;
  overflow: hidden;
}

.main-footer {
  flex-flow: column;
  justify-content: flex-end;
  align-items: center;
  padding-top: 80px;
  padding-bottom: 40px;
  display: flex;
  position: relative;
}

.property-category-list-wrapper {
  width: 100%;
  position: relative;
}

.property-category-list {
  width: 100%;
}

.property-item-category {
  width: 100%;
  height: 100%;
  padding-top: 60px;
  padding-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.property-item-category:first-child {
  border-radius: .4rem .4rem 0 0;
  overflow: hidden;
}

.bottom-line {
  z-index: 3;
  background-color: var(--white-10);
  width: 100%;
  height: 1px;
  position: absolute;
  inset: auto auto 0% 0%;
}

.item-hover-cover {
  z-index: -2;
  background-color: #ffffff0d;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: auto 0% 0%;
}

.top-line {
  background-color: var(--white-10);
  width: 100%;
  height: 1px;
  position: absolute;
  inset: 0% auto auto 0%;
}

.clip-intro-text {
  position: relative;
  overflow: hidden;
}

.clip-intro-text.bottom-text {
  position: absolute;
}

.clip-intro-text.bottom {
  position: absolute;
  inset: auto 0% -100%;
}

.grid-category-item {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: .3fr 1.25fr .7fr;
  grid-auto-columns: 1fr;
  align-items: start;
  padding-left: 15px;
  padding-right: 15px;
  display: grid;
}

.par-hidden {
  display: none;
}

.hover-clip-text {
  z-index: 10;
  position: relative;
  overflow: hidden;
}

.link-category-item {
  z-index: 25;
  position: absolute;
  inset: 0%;
}

.small-banner-video {
  z-index: 1;
  width: 100%;
  height: 100%;
}

.top-banner-image {
  object-fit: cover;
  border-radius: 3px;
  width: 100%;
  height: 100%;
}

.clip-loader-wrap {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.image-04-size {
  z-index: 2;
  aspect-ratio: 2 / 3;
  border-radius: 3px;
  width: 140px;
  height: 160px;
  position: relative;
  bottom: -5px;
  right: 40px;
  overflow: hidden;
}

.grid-images {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  height: 90%;
  display: grid;
  position: absolute;
  inset: 0% 0% auto;
}

.image-ov {
  z-index: 5;
  background-color: #0003;
  position: absolute;
  inset: 0%;
}

.image-ov.light {
  background-color: #0000001a;
}

.video-info-wrap {
  justify-content: space-between;
  align-items: stretch;
  padding-top: 280px;
  padding-bottom: 100px;
  display: flex;
}

.small-banner-title {
  width: 90%;
}

.small-banner-title.news-title, .small-banner-title.rental-info {
  width: 102%;
}

.hero-banner-description {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.preloader {
  z-index: 90;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  height: 100%;
  display: none;
  position: absolute;
  inset: 0%;
}

.full-container {
  z-index: 15;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
}

.full-container.footer-con {
  justify-content: center;
  align-items: center;
  margin-bottom: -65px;
  display: flex;
}

.slow-cover {
  z-index: 20;
  background-color: transparent;
  border-radius: 3px;
  width: 100%;
  height: 100%;
  display: none;
  position: absolute;
  inset: 0%;
}

.banner-intro-wrap {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  text-align: center;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 55%;
  margin-left: auto;
  margin-right: auto;
  padding-top: 60px;
  padding-bottom: 60px;
  display: flex;
}

.preloader-row-reverce {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.primary-link-button {
  grid-column-gap: 1px;
  grid-row-gap: 1px;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  letter-spacing: .5px;
  text-transform: none;
  background-color: #fff;
  border: 1px solid #ffffff26;
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  display: flex;
  position: relative;
  overflow: hidden;
}

.primary-link-button:hover {
  background-color: #ffffff0d;
}

.video-dark-overlay {
  z-index: 5;
  background-color: #00000040;
  background-image: linear-gradient(315deg, #00000070 17%, var(--transparent));
  position: absolute;
  inset: 0%;
}

.banner-top-part {
  z-index: 15;
  grid-column-gap: 100px;
  grid-row-gap: 100px;
  flex-flow: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-end;
  place-items: center stretch;
  width: 100%;
  min-height: 740px;
  padding-bottom: 140px;
  display: flex;
  position: relative;
}

.banner-001 {
  z-index: 15;
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
  position: relative;
}

.underline-main-link {
  z-index: 15;
  grid-column-gap: 48px;
  grid-row-gap: 16px;
  border-bottom: 1px solid #ffffff26;
  grid-template-rows: auto;
  grid-template-columns: 1fr auto;
  grid-auto-columns: 1fr;
  align-items: center;
  padding-bottom: 8px;
  display: grid;
  position: relative;
}

.underline-main-link:hover {
  color: #fff;
}

.preloader-cover-002 {
  z-index: 15;
  background-color: #000;
  width: 100%;
  height: 100%;
  position: relative;
}

.image-06-size {
  z-index: 1;
  aspect-ratio: 3 / 2;
  border-radius: 3px;
  width: 180px;
  height: 130px;
  position: relative;
  top: -76px;
  left: 105px;
  overflow: hidden;
}

.fast-cover {
  z-index: 20;
  background-color: #000;
  border-radius: 3px;
  width: 100%;
  height: 100%;
  display: none;
  position: absolute;
  inset: 0%;
}

.intro-text {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  text-align: center;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.image-01-size {
  z-index: 2;
  aspect-ratio: 2 / 3;
  border-radius: 3px;
  width: 140px;
  height: 160px;
  position: relative;
  left: 40px;
  overflow: hidden;
}

.image-05-size {
  z-index: 1;
  aspect-ratio: 3 / 2;
  border-radius: 3px;
  width: 130px;
  height: 90px;
  position: relative;
  bottom: 36px;
  right: -55px;
  overflow: hidden;
}

.image-03-size {
  aspect-ratio: 3 / 2;
  border-radius: 3px;
  width: 180px;
  height: 130px;
  position: relative;
  top: 95px;
  left: -40px;
  overflow: hidden;
}

.large-video-bg {
  z-index: 15;
  justify-content: flex-end;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  padding: 15px;
  display: flex;
  position: absolute;
  inset: 0%;
  overflow: hidden;
}

.image-02-size {
  z-index: 1;
  aspect-ratio: 3 / 2;
  border-radius: 3px;
  width: 180px;
  height: 130px;
  position: relative;
  top: -111px;
  left: -80px;
  overflow: hidden;
}

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

.banner-bottom-part {
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  min-height: 100vh;
  display: grid;
  position: relative;
  overflow: hidden;
}

.preloader-cover-001 {
  z-index: 15;
  background-color: #000;
  width: 100%;
  height: 100%;
  position: relative;
}

.vert-print-01 {
  object-fit: cover;
  object-position: 0% 0%;
  width: 26.5px;
  max-width: none;
  height: 101%;
  position: absolute;
  inset: 0% auto 0% 0%;
}

.hero-flex-con {
  flex-flow: row;
  justify-content: space-between;
  padding-left: 26px;
  padding-right: 26px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.vert-print-02 {
  object-fit: cover;
  object-position: 0% 0%;
  transform-style: preserve-3d;
  width: 26.5px;
  max-width: none;
  height: 101%;
  position: absolute;
  inset: 0% 0% 0% auto;
  transform: rotateX(0)rotateY(180deg)rotateZ(0);
}

.banner-hot-events {
  position: relative;
}

.date-intro-wrap, .event-intro-time {
  grid-column-gap: 2px;
  grid-row-gap: 2px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.spacing-intro {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.banner-event-grid {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.three-col-grid {
  z-index: 10;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 15px 1fr 1fr 1fr 15px;
  grid-auto-columns: 1fr;
  width: 100%;
  max-width: 1230px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  position: absolute;
  inset: 0% 0% auto;
  overflow: hidden;
}

.three-col-grid.banner-animation {
  z-index: 15;
}

.hover-item {
  position: absolute;
  inset: 0%;
  overflow: hidden;
}

.hover-cover {
  background-color: var(--white-5);
  justify-content: flex-end;
  align-items: flex-start;
  display: flex;
  position: absolute;
  inset: 0%;
  overflow: hidden;
}

.white-right-container {
  background-color: var(--white);
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  display: flex;
}

.img-icon {
  object-fit: cover;
  width: auto;
  height: 30px;
}

.bottom-line-10 {
  z-index: 3;
  background-color: var(--white-10);
  width: 100%;
  height: 1px;
  position: absolute;
  inset: auto auto 0% 0%;
}

.footer-top-content {
  z-index: 25;
  flex-flow: column;
  width: 100%;
  padding-bottom: 20px;
  display: flex;
  position: relative;
}

.left-intro-flex {
  z-index: 15;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 20px;
  display: flex;
  position: relative;
}

.upcoming-event-wrap {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr .98fr;
  grid-auto-columns: 1fr;
  align-items: start;
  width: 100%;
  height: 100%;
  padding-left: 15px;
  display: grid;
}

.intro-event {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  flex-flow: column;
  display: flex;
}

.dual-grid {
  grid-column-gap: 0px;
  grid-row-gap: 80px;
  grid-template-rows: auto auto;
  grid-template-columns: .3fr 1fr;
  grid-auto-columns: 1fr;
  height: 100%;
  display: grid;
}

.centered-info {
  z-index: 15;
  text-align: right;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-end;
  display: flex;
  position: relative;
}

.image-07-size {
  aspect-ratio: 3 / 2;
  border-radius: 3px;
  width: 180px;
  height: 130px;
  position: relative;
  top: 100px;
  left: -40px;
  overflow: hidden;
}

.image-08-size {
  z-index: 1;
  aspect-ratio: 3 / 2;
  border-radius: 3px;
  width: 130px;
  height: 90px;
  position: relative;
  bottom: -90px;
  right: -55px;
  overflow: hidden;
}

.rights-con {
  width: 100%;
  padding-top: 30px;
  padding-bottom: 30px;
  position: relative;
}

.footer-link-content {
  justify-content: space-between;
  align-items: flex-end;
  display: flex;
  position: relative;
}

.counter-wrapper {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  color: var(--transparent);
  -webkit-text-stroke-width: 1px;
  flex-flow: column;
  font-family: IBM Plex Mono, sans-serif;
  display: flex;
}

.performances-streamed {
  color: var(--white);
  font-family: IBM Plex Mono, sans-serif;
  font-size: 70px;
}

.counter-description {
  color: var(--paragraph-gray);
  font-size: 15px;
  font-weight: 200;
}

.height-video-bg {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: auto 0% 0%;
}

.submit-btn {
  z-index: 15;
  background-color: var(--white);
  color: #000;
  border: 1px solid #ffffff26;
  border-radius: 0;
  width: 100px;
  height: 48px;
  padding: 0;
  font-family: "Fa solid 900", sans-serif;
  font-size: 20px;
  font-weight: 400;
  position: relative;
}

.contact-field-wrapper {
  grid-column-gap: 18px;
  grid-row-gap: 12px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
  position: relative;
}

.success-message-content {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  letter-spacing: -.03em;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  place-content: center;
  align-items: center;
  padding: 15px;
  font-family: IBM Plex Mono, sans-serif;
  font-weight: 300;
  line-height: 1.5em;
  display: flex;
}

.success-message-content.comming-soon {
  text-align: left;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  padding: 0;
}

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

.hero-form {
  grid-column-gap: 16px;
  grid-row-gap: 36px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  padding: 0;
}

.submit-hero-btn {
  padding: 6px;
  position: relative;
  overflow: hidden;
}

.form-hero-input {
  border: 1px solid var(--white-10);
  background-color: var(--black);
  color: #fff;
  border-radius: 0;
  min-height: 60px;
  margin-bottom: 0;
  padding: 16px 15px 16px 18px;
  font-size: 16px;
  font-weight: 400;
  transition: all .5s cubic-bezier(.25, .46, .45, .94);
}

.form-hero-input:focus {
  border-color: #fff;
  padding-left: 24px;
}

.form-hero-input::placeholder {
  color: #ffffff80;
  font-size: 16px;
  font-weight: 300;
}

.success-message-con {
  background-color: var(--transparent);
  padding: 0;
  overflow: hidden;
}

.hero-form-block {
  background-color: #fff0;
  width: 100%;
  margin-bottom: 0;
  padding: 0;
}

.error-state {
  color: #fff;
  text-align: center;
  letter-spacing: -.03em;
  word-break: normal;
  background-color: #fff0;
  margin-top: 24px;
  padding: 0;
  font-weight: 300;
  line-height: 1.5em;
}

.error-state.coming-soon {
  text-align: left;
  width: 100%;
  font-size: 15px;
}

.message-form {
  width: 75%;
}

.right-intro-flex {
  text-align: right;
  justify-content: flex-end;
  align-items: flex-end;
  padding-right: 15px;
  display: flex;
}

.grid-column {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding: 30px 15px;
  display: flex;
}

.grid-column.top-align {
  justify-content: flex-start;
  align-items: center;
}

.link-text {
  font-family: IBM Plex Mono, sans-serif;
}

.link-text.large-size {
  font-size: 18px;
}

.link-text.small-size-hover {
  color: var(--primary);
}

.link-text.very-small-size {
  font-size: 14px;
}

.brackets-space {
  grid-column-gap: 2px;
  grid-row-gap: 2px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.brackets-space.full-wdth {
  justify-content: space-between;
  width: 100%;
}

.link-item.full-width, .link-footer-wrap {
  width: 100%;
}

.large-photo {
  background-image: url(../images/book-the-stage/the-stage.jpg);
  background-position: 50%;
  background-size: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.white-link-con {
  z-index: 25;
  background-color: var(--white);
  justify-content: center;
  align-items: center;
  width: 130px;
  height: 130px;
  display: flex;
  position: relative;
}

.con-with-print {
  z-index: 25;
  flex-flow: column;
  padding-bottom: 14px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.horizontal-print-02 {
  object-fit: cover;
  object-position: 50% 100%;
  width: 100%;
  max-width: none;
  height: 15px;
  margin-top: -1px;
  display: block;
  position: absolute;
  inset: auto 0% 0%;
}

.space-par-wrap {
  justify-content: flex-start;
  align-items: center;
  width: 93%;
  margin-top: 24px;
  display: flex;
}

.rental-pricing-wrapper {
  z-index: 15;
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  color: var(--transparent);
  text-align: left;
  -webkit-text-stroke-width: 1px;
  flex-flow: column;
  font-family: IBM Plex Mono, sans-serif;
  display: flex;
  position: relative;
}

.rent-stage-info {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-end;
  display: flex;
}

.span-description {
  letter-spacing: -.03em;
  text-transform: lowercase;
  font-size: 30px;
  display: inline-flex;
}

.black-small-text {
  color: var(--black);
  text-transform: none;
  font-family: IBM Plex Mono, sans-serif;
  font-size: 14px;
}

.flex-intro {
  grid-column-gap: 2px;
  grid-row-gap: 2px;
  justify-content: space-between;
  width: 100%;
  display: flex;
}

.category-intro-wrap {
  justify-content: space-between;
  width: 100%;
  display: flex;
}

.event-category-card {
  background-color: var(--white);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  color: #fff;
  flex-flow: column;
  grid-template-rows: 1fr;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  min-height: 300px;
  text-decoration: none;
  display: grid;
  position: relative;
  overflow: hidden;
}

.current-event-category {
  z-index: 10;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.text-rental-link {
  color: #ffffffa6;
  letter-spacing: 0;
  font-size: 55px;
}

.text-rental-link:hover {
  color: var(--white);
}

.scramble-word {
  text-align: center;
  white-space: nowrap;
  font-size: 18rem;
  font-weight: 700;
  line-height: .8em;
}

.rental-price {
  color: var(--white);
  font-family: IBM Plex Mono, sans-serif;
  font-size: 70px;
  line-height: .9em;
}

.horizontal-tablet-print {
  object-fit: cover;
  object-position: 50% 100%;
  width: 100%;
  max-width: none;
  height: 15px;
  margin-top: -1px;
  display: none;
  position: absolute;
  inset: auto 0% 0%;
}

.hover-link-wrapper {
  display: none;
}

.nav-btn-tablet {
  flex: none;
  justify-content: center;
  align-items: center;
  display: none;
}

.event-item-card {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-flow: column;
  width: 100%;
  height: 100%;
  display: flex;
}

.large-rental-section {
  z-index: 85;
  position: relative;
}

.button-main-wrapper {
  grid-column-gap: 2px;
  grid-row-gap: 2px;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  display: flex;
}

.inner-small-banner {
  justify-content: center;
  align-items: center;
  height: auto;
  min-height: 350px;
  padding-top: 120px;
  padding-bottom: 60px;
  display: flex;
  position: relative;
}

.inner-banner-title {
  text-align: center;
}

.inner-banner-title.event-category {
  font-size: 120px;
}

.center-title-align {
  text-align: center;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
}

.banner--02 {
  justify-content: space-between;
  align-items: stretch;
  display: flex;
  position: relative;
}

.video-banner {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.video-banner-overlay {
  z-index: 5;
  background-color: #00000059;
  background-image: linear-gradient(180deg, var(--transparent) 50%, var(--primary-green));
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.title {
  color: var(--white);
  letter-spacing: -.05em;
  font-family: Space Grotesk, sans-serif;
  font-size: 90px;
  font-weight: 600;
}

.banner-02-content {
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  height: auto;
  min-height: 800px;
  padding-top: 140px;
  padding-bottom: 80px;
  display: flex;
}

.rotate-image {
  z-index: 3;
  transform-style: preserve-3d;
  border-radius: 3px;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
  overflow: hidden;
  transform: rotate(180deg)translate3d(0, 0, -1px);
}

.rotate-image.back {
  z-index: 4;
  transform-style: preserve-3d;
  transform: none;
}

.bottom-space-section {
  z-index: 15;
  justify-content: space-between;
  align-items: stretch;
  height: auto;
  display: flex;
  position: relative;
  overflow: hidden;
}

.our-story-grig {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex: 1;
  grid-template-rows: auto;
  grid-template-columns: 1fr .75fr;
  grid-auto-columns: 1fr;
  height: 0%;
  padding: 40px 25px 40px 40px;
  display: grid;
}

.right-grid-content {
  background-color: var(--primary);
  border-radius: 0;
  width: 100%;
  max-width: 400px;
  padding: 20px;
}

.large-photo-wrapper {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
  overflow: hidden;
}

.photo-overlay {
  background-color: #00000040;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.image-cover-3 {
  z-index: 1;
  object-fit: cover;
  object-position: 50% 25%;
  background-color: #000;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.image-small-preloader {
  z-index: 25;
  background-color: #000;
  width: 100%;
  height: 100%;
  display: none;
  position: absolute;
  inset: 0%;
}

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

.spin-inside-02 {
  z-index: 5;
  aspect-ratio: 10 / 9;
  flex-flow: column;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
  overflow: visible;
}

.story-top {
  z-index: 15;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr .5fr;
  grid-auto-columns: 1fr;
  align-items: flex-start;
  display: flex;
  position: relative;
}

.story-subtitle {
  color: var(--black);
}

.story-content {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  flex-flow: column;
  display: flex;
}

.story-bottom {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  flex-flow: column;
  display: flex;
}

.spin-intro {
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  max-width: 16rem;
  height: 100%;
  display: flex;
}

.spin-outside {
  perspective: 200vw;
  width: 100%;
}

.large-1800-base-container {
  z-index: 15;
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  max-width: 1800px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
  position: relative;
}

.large-subscribe-content {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
  overflow: hidden;
}

.spin-wrap {
  perspective: 200vw;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  height: 100%;
  display: flex;
}

.event-banner-title {
  letter-spacing: -.03em;
  white-space: nowrap;
  word-break: normal;
  margin-left: auto;
  margin-right: auto;
  font-size: 8.7rem;
  font-weight: 600;
  color: #D7C49E;
}

.unique-event-collection {
  width: 100%;
  height: 100%;
}

.unique-event-banner-grid {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  height: 100%;
  display: grid;
}

.unique-event-item {
  width: 100%;
  height: 100%;
  position: relative;
}

.unique-event-content {
  grid-column-gap: 0px;
  grid-row-gap: 60px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  height: 100%;
  display: grid;
}

.large-event-text-wrapper {
  text-align: center;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
  position: relative;
}

.content-bottom {
  flex-flow: column;
  display: flex;
}

.content-bottom.large-intro-gap {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
}

.content-top {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.long-description {
  text-transform: none;
  width: 100%;
  font-size: 45px;
  font-weight: 300;
}

.bold-number {
  font-size: 150px;
}

.top-description {
  width: 60%;
}

.about-scroll-grid {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.about-img-wrap {
  border-radius: 3px;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.section-2 {
  z-index: 15;
  padding-top: 80px;
  padding-bottom: 80px;
  position: relative;
}

.section-2.without-bottom-spacing {
  padding-bottom: 0;
}

.bold-number-wrapper {
  flex-flow: column;
  display: flex;
}

.hero-intro-img {
  background-image: url('../images/3-1_13-1.webp');
  background-position: 50%;
  background-size: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.hero-intro-img.img-3 {
  background-image: none;
  background-size: auto;
  overflow: hidden;
}

.hero-intro-img.img-1 {
  background-image: url('../images/7_17.webp');
  background-position: 50% 15%;
}

.hero-intro-img.img-4 {
  background-image: url('../images/2-1_12-1.webp');
  background-position: 50% 15%;
}

.hero-intro-img.img-2 {
  background-image: url('../images/1-1_11-1.webp');
}

.parallax-image-ov {
  z-index: 5;
  background-color: #00000059;
  position: absolute;
  inset: 0%;
}

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

.full-grid.about {
  z-index: 20;
  position: relative;
}

.large-text-content {
  grid-column-gap: 100px;
  grid-row-gap: 100px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 80%;
  margin-left: 15px;
  display: flex;
}

.intro-image {
  width: 15rem;
  height: 12rem;
  position: relative;
}

.intro-image.intro-img-3 {
  bottom: 100px;
}

.intro-image.intro-img-2 {
  bottom: 79px;
  left: 63px;
}

.project-grid {
  grid-column-gap: .4rem;
  grid-row-gap: .4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.tabs-menu-style {
  grid-column-gap: .4rem;
  grid-row-gap: .4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-end;
  align-items: flex-start;
  padding-left: .4rem;
  padding-right: .4rem;
  display: grid;
}

.project-list-wrapper {
  width: 100%;
}

.clip-text-2 {
  position: relative;
  overflow: hidden;
}

.clip-text-2.bottom, .clip-text-2.bottom-text {
  position: absolute;
}

.services-tabs {
  flex-flow: column;
  display: flex;
}

.project-tabs-content {
  padding-top: .4rem;
}

.gray-grid-con {
  grid-column-gap: .4rem;
  grid-row-gap: .4rem;
  flex-flow: column;
  display: flex;
  position: relative;
  overflow: hidden;
}

.centered-title-wrap {
  text-align: center;
  justify-content: center;
  align-items: center;
  width: 98%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.gray-shade {
  z-index: 5;
  border: 1px solid var(--white-10);
  background-color: var(--text-dark);
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  background-image: linear-gradient(#ffffff03, #ffffff03);
  position: absolute;
  inset: 0%;
}

.project-tab-link {
  z-index: 15;
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  background-color: var(--black);
  opacity: .6;
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  color: var(--primary);
  text-align: center;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  height: auto;
  min-height: 70px;
  padding: 24px 15px;
  display: flex;
  overflow: hidden;
}

.project-tab-link:hover {
  opacity: 1;
  color: #fff;
}

.project-tab-link.w--current {
  opacity: 1;
  color: #fff;
  background-color: #0000;
}

.top-project-info-fill {
  border-style: solid none;
  border-width: 1px;
  border-color: var(--white-10);
  justify-content: center;
  align-items: center;
  height: auto;
  padding-top: 100px;
  padding-bottom: 80px;
  display: flex;
}

.main-service-link {
  letter-spacing: 0;
  text-transform: none;
  width: 100%;
  height: 100%;
  position: relative;
}

.main-service-link:hover {
  color: #fff;
}

.left-intro-project {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1.1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.team-photo-item {
  justify-content: space-between;
  align-items: stretch;
  padding-bottom: 14px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.project-intro-space {
  grid-column-gap: 70px;
  grid-row-gap: 70px;
  flex-flow: column;
  justify-content: space-between;
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
}

.expert-item {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  border-style: solid none;
  border-width: 1px;
  border-color: var(--white-10);
  letter-spacing: 0;
  text-transform: none;
  grid-template-rows: auto;
  grid-template-columns: 1.5fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  min-height: 5rem;
  padding: 20px;
  font-size: 16px;
}

.expert-item:hover {
  color: #fff;
}

.expert-item.project-intro-item {
  min-height: auto;
  padding-top: 40px;
  padding-bottom: 40px;
  position: relative;
}

.service-window {
  z-index: 15;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-color: var(--primary);
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  height: 100%;
  padding: 6px;
  display: grid;
  position: relative;
}

.numerical-advantage {
  font-size: 70px;
}

.clip-title-hover {
  z-index: 10;
  position: relative;
  overflow: hidden;
}

.service-image-wrap {
  min-height: 260px;
  position: relative;
  overflow: hidden;
}

.clip-title {
  position: relative;
  overflow: hidden;
}

.clip-title.bottom-title {
  position: absolute;
}

.service-title {
  margin-top: 0;
  margin-bottom: 0;
  transition: all .35s;
}

.service-title:hover {
  color: var(--primary);
}

.right-intro-team {
  text-align: center;
  flex-flow: column;
  justify-content: flex-end;
  align-items: center;
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
}

.project-wdth {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.project-grid-item {
  grid-column-gap: 30px;
  grid-row-gap: 15px;
  grid-template-rows: auto;
  grid-template-columns: 2fr .6fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: flex-end;
  display: grid;
}

.primary-link-button-2 {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  background-color: #e6f048;
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  height: 50px;
  padding: 6px 6px 6px 15px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.item-intro-space {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-right: 20px;
  display: flex;
}

.hide {
  display: none;
}

.slide-photo {
  object-fit: cover;
  object-position: 10% 50%;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.five-project-grid {
  z-index: 10;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 15px 1fr 1fr 1fr 15px;
  grid-auto-columns: 1fr;
  width: 100%;
  max-width: 1230px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  position: relative;
}

.five-project-grid.news-grid {
  place-items: start stretch;
}

.five-project-grid.subtitle-space {
  place-items: start stretch;
  padding-bottom: 24px;
}

.five-project-grid.subtitle-space.hide {
  display: none;
}

.event-date-large {
  letter-spacing: 0;
  font-size: 86px;
}

.event-par-details {
  width: 90%;
}

.center-intro {
  padding-left: 24px;
  padding-right: 24px;
}

.event-intro-details {
  grid-column-gap: 2px;
  grid-row-gap: 2px;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.section-scroll-images {
  z-index: 15;
  padding-top: 10px;
  padding-bottom: 80px;
  position: relative;
}

.section-scroll-images.margin-top {
  z-index: 45;
  padding-top: 80px;
}

.parallax-video {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.about-event {
  color: var(--white);
  font-family: Space Grotesk, sans-serif;
  font-size: 20px;
}

.left-intro {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.horizontal-print-03 {
  object-fit: cover;
  object-position: 50% 100%;
  width: 100%;
  max-width: none;
  height: 15px;
  margin-top: -1px;
  display: block;
  position: absolute;
  inset: auto 0% 0%;
}

.horizontal-print-03.print-contact {
  height: 18px;
}

.subscribe-container {
  margin-left: auto;
  padding-bottom: 14px;
  position: relative;
  overflow: hidden;
}

.subscribe-title {
  color: var(--black);
}

.subscribe-description {
  color: var(--black);
  width: 100%;
}

.subscribe-description.wdth-contact {
  margin-left: auto;
  margin-right: auto;
}

.small-intro-text {
  color: var(--black);
  letter-spacing: -.03em;
  text-transform: none;
  font-family: IBM Plex Mono, sans-serif;
  font-size: 14px;
}

.small-intro-text.text-hover {
  color: var(--primary);
}

.text-intro-wrapper {
  grid-column-gap: 2px;
  grid-row-gap: 2px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.contact-fields {
  grid-column-gap: 0px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.form-2 {
  grid-column-gap: 16px;
  grid-row-gap: 12px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  align-items: end;
  padding: 0;
  display: grid;
}

.contact-field-wrap {
  grid-column-gap: 18px;
  grid-row-gap: 12px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.form-input-dark {
  background-color: var(--white);
  color: var(--black);
  letter-spacing: -.03em;
  border: 1px solid #0e0e0e33;
  border-radius: 0;
  height: 54px;
  margin-bottom: 0;
  padding: 8px 18px;
  font-size: 16px;
  font-weight: 400;
  transition: all .5s cubic-bezier(.25, .46, .45, .94);
}

.form-input-dark:focus {
  border-color: var(--black);
  padding-left: 24px;
}

.form-input-dark::placeholder {
  color: #00000059;
  font-size: 16px;
  font-weight: 300;
}

.form-input-dark.message {
  height: auto;
  min-height: 120px;
  padding-top: 16px;
}

.success-message-con-2 {
  background-color: #ffffff05;
  border: 1px solid #ffffff26;
  border-radius: 12px;
  flex: 1;
  height: 100%;
  padding: 0;
  overflow: hidden;
}

.thank-you-title {
  color: var(--black);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 30px;
}

.flex-field {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  display: flex;
}

.hero-subscribe-form {
  background-color: #d8c8e400;
  flex-flow: column;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  height: auto;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
  display: flex;
}

.form-btn-black {
  border: 2px solid var(--white);
  background-color: var(--black);
  color: var(--white);
  text-align: center;
  letter-spacing: .08em;
  text-transform: uppercase;
  justify-content: center;
  align-items: center;
  min-width: 160px;
  height: 54px;
  padding: 18px 24px;
  font-size: 14px;
  font-weight: 500;
  transition: all .35s;
  display: flex;
}

.form-btn-black:hover {
  background-color: var(--white);
  color: var(--black);
}

.form-btn-black.black-border-color {
  border-color: var(--black);
}

.top-intro-column {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
  position: relative;
}

.subscribe-video {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.bottom-scroll-line {
  z-index: 3;
  background-color: #ffffff26;
  width: 100%;
  height: 1px;
  position: absolute;
  inset: auto auto 0% 0%;
}

.white-dot {
  /* background-image: url('../images/arrowUp_1.svg'); */
  background-position: 50%;
  background-size: cover;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 120px;
  height: 120px;
  padding: 0;
  display: flex;
  position: relative;
  transform: rotate(-45deg);
}

.loop-section {
  padding-top: 80px;
  padding-bottom: 90px;
  position: relative;
}

.top-scroll-line {
  z-index: 3;
  background-color: #ffffff26;
  width: 100%;
  height: 1px;
  position: absolute;
  inset: 0% auto auto 0%;
}

.full-title-wrap {
  position: sticky;
  top: 220px;
}

.full-title-wrap.contact-us {
  z-index: 7;
}

.large-loop-strip {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
  position: relative;
  overflow: hidden;
}

.hero-strip {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  justify-content: flex-start;
  align-items: center;
  width: auto;
  display: flex;
}

.loop-strip {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  flex-flow: row;
  flex: none;
  justify-content: flex-start;
  align-items: center;
  display: flex;
  position: relative;
}

.slide-heading {
  letter-spacing: .04em;
  text-transform: capitalize;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 80px;
}

.slide-heading.xl {
  color: --primary;
  text-transform: uppercase;
  font-size: 10rem;
  font-weight: 600;
  line-height: 1.2em;
}

.sticky-section {
  z-index: 25;
  padding-top: 80px;
  padding-bottom: 80px;
  position: relative;
}

.sticky-section.top-banner {
  padding-bottom: 0;
}

.dot-icon {
  width: auto;
  max-width: none;
  height: 35px;
  display: none;
}

.leading-actors-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
  position: relative;
}

.leading-actors-wrapper.botton-padding {
  padding-bottom: 40px;
}

.social-icon-2 {
  color: var(--white);
  margin-top: 0;
  margin-bottom: 0;
  font-family: "Fa Brands 400 (6.4.2)", sans-serif;
  font-size: 16px;
  line-height: 1em;
}

.socials-button {
  z-index: 10;
  background-color: var(--white);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  cursor: pointer;
  border-radius: 0%;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  transition: all .45s;
  display: flex;
  position: relative;
}

.team-ov {
  z-index: 25;
  background-color: #0000001a;
  justify-content: flex-end;
  align-items: flex-end;
  padding: 15px;
  display: flex;
  position: absolute;
  inset: 0%;
}

.member-job {
  color: var(--black);
  letter-spacing: .15em;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 400;
  display: inline-block;
}

.button-link-3 {
  border: 2px solid var(--white);
  background-color: var(--white-5);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  text-align: center;
  border-radius: 0%;
  justify-content: center;
  align-items: center;
  width: 29px;
  height: 29px;
  margin-bottom: 7.5px;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
  line-height: 1em;
  display: flex;
}

.button-link-3:hover {
  background-color: var(--primary);
  line-height: 1em;
}

.member-name {
  color: var(--black);
  letter-spacing: .015em;
  margin-top: 0;
  font-weight: 500;
}

.member-name.hover-title {
  color: var(--black);
}

.background-photo {
  z-index: 1;
  background-image: url('../images/actor-one.jpg');
  background-position: 50% 0;
  background-size: cover;
  position: absolute;
  inset: 0%;
  overflow: visible;
}

.background-photo-one {
  z-index: 1;
  background-image: url('../images/someones/drama.jpg');
  background-position: 50% 0;
  background-size: cover;
  position: absolute;
  inset: 0%;
  overflow: visible;
}
.background-photo-two {
  z-index: 1;
  background-image: url('../images/someones/opera.webp');
  background-position: 50% 0;
  background-size: cover;
  position: absolute;
  inset: 0%;
  overflow: visible;
}
.background-photo-three {
  z-index: 1;
  background-image: url('../images/someones/concert.jpg');
  background-position: 50% 0;
  background-size: cover;
  position: absolute;
  inset: 0%;
  overflow: visible;
}
.background-photo-four {
  z-index: 1;
  background-image: url('../images/someones/cabaret.jpg');
  background-position: 50% 0;
  background-size: cover;
  position: absolute;
  inset: 0%;
  overflow: visible;
}

.par-hidden-3 {
  display: none;
}

.team-hero-item {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  background-color: var(--primary);
  flex-direction: column;
  grid-template-rows: 1fr auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  padding: 6px;
  display: grid;
}

.member-info-item {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  flex-flow: column;
  align-items: flex-start;
  padding-bottom: 12px;
  padding-left: 10px;
  display: flex;
}

.button-line-2 {
  background-color: var(--black);
  border-radius: 100px;
  width: 2px;
  height: 14px;
  position: absolute;
}

.team-background-wrapper {
  z-index: 2;
  justify-content: space-between;
  align-items: stretch;
  display: flex;
  position: absolute;
  inset: 0%;
  overflow: hidden;
}

.team-image {
  z-index: 10;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.artist-link {
  letter-spacing: 0;
  text-transform: none;
}

.team-hero-link {
  z-index: 15;
  position: absolute;
  inset: 0%;
}

.button-link-2 {
  border: 2px solid var(--white);
  background-color: var(--white-5);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  border-radius: 0%;
  justify-content: center;
  align-items: center;
  width: 29px;
  height: 29px;
  margin-bottom: 7.5px;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
  line-height: 1em;
  display: flex;
}

.button-link-2:hover {
  background-color: var(--primary);
}

.button-wrapper-2 {
  z-index: 35;
  flex-flow: column;
  align-items: center;
  display: flex;
  position: relative;
}

.button-line-1 {
  background-color: var(--black);
  border-radius: 100px;
  width: 14px;
  height: 2px;
}

.btn-link-1 {
  border: 2px solid var(--white);
  background-color: var(--white-5);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  color: #fff;
  border-radius: 0%;
  justify-content: center;
  align-items: center;
  width: 29px;
  height: 29px;
  margin-bottom: 7.5px;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
  line-height: 1em;
  display: flex;
}

.btn-link-1:hover {
  background-color: var(--primary);
}

.height-photo-container {
  height: 350px;
  position: relative;
  inset: 0%;
  overflow: hidden;
}

.height-photo-container.small-card {
  height: 240px;
}

.team-item-top {
  flex-direction: column;
  display: flex;
  position: relative;
  overflow: hidden;
}

.actors-card {
  flex-flow: column;
  padding-bottom: 14px;
  display: flex;
  position: relative;
}

.actors-card.card-02 {
  width: 80%;
  margin-top: -80px;
  margin-left: auto;
}

.actors-card.card-03 {
  width: 115%;
}

.actors-card.card-04 {
  margin-top: 100px;
  left: -50%;
}

.actors-card.card-05 {
  width: 80%;
  margin-top: 60px;
  left: -50%;
}

.actors-card.card-06 {
  margin-top: -100px;
}

.actors-card.details {
  width: 100%;
  max-width: 380px;
}

.left-text-content {
  flex-flow: column;
  justify-content: space-between;
  padding-top: 30px;
  padding-left: 15px;
  padding-right: 30px;
  display: flex;
}

.right-text-conteny {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-left: 30px;
  display: flex;
}

.bold-subtitle {
  width: 100%;
}

.no-shrink-button {
  flex: none;
}

.lightbox-video {
  width: 100%;
  height: 100%;
}

.lightbox-container {
  z-index: 15;
  width: 100%;
  height: 150px;
  position: relative;
  overflow: hidden;
}

.lightbox-container.full-height {
  height: 100%;
}

.video-intro-height {
  z-index: 15;
  width: 85%;
  height: auto;
  padding-bottom: 14px;
  position: relative;
  overflow: hidden;
}

.history-description {
  text-transform: none;
  width: 100%;
  font-size: 45px;
  font-weight: 300;
}

.bold-history-number {
  font-size: 150px;
}

.gradient-banner-top {
  z-index: -100;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: -80px 0% auto;
}

.video-overlay {
  justify-content: flex-end;
  align-items: flex-start;
  padding: 6px;
  display: flex;
  position: absolute;
  inset: 0%;
}

.date-news {
  color: var(--black);
  letter-spacing: .01em;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.5em;
}

.portfolio-ov {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.background-wrap {
  position: absolute;
  inset: 0%;
  overflow: hidden;
}

.blog-publication {
  grid-column-gap: 2px;
  grid-row-gap: 2px;
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.news-overlay {
  z-index: 1;
  background-color: #00000026;
  position: absolute;
  inset: 0%;
}

.blog-long-title {
  color: var(--black);
  letter-spacing: -.03em;
  text-transform: none;
  width: 83%;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 30px;
  line-height: 1.25em;
  transition: all .35s;
}

.blog-long-title:hover {
  color: var(--black);
}

.underline-hover-fill {
  background-color: var(--black);
  width: 100%;
  height: 100%;
}

.bg-blog-link {
  z-index: 10;
  color: #fff;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 12px;
  font-size: 12px;
  display: flex;
  position: absolute;
  inset: 0%;
  overflow: hidden;
}

.bg-blog-link:hover {
  opacity: 1;
}

.news-top-info-2 {
  z-index: 15;
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  text-transform: capitalize;
  border-bottom: 1px solid #00000026;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  margin-left: 10px;
  margin-right: 10px;
  padding-top: 15px;
  padding-bottom: 25px;
  display: grid;
  position: relative;
}

.blog-category {
  color: var(--black);
  letter-spacing: .02em;
  font-family: IBM Plex Mono, sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.5em;
}

.blog-category:hover {
  color: var(--primary);
}

.blog-hero-image {
  justify-content: center;
  align-items: center;
  height: 350px;
  padding: 24px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.par-hidden-4 {
  display: none;
}

.blog-bottom-caterory {
  grid-column-gap: 2px;
  grid-row-gap: 2px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.bottom-portfolio-link-2 {
  grid-column-gap: 24px;
  grid-row-gap: 12px;
  justify-content: space-between;
  padding-left: 10px;
  padding-right: 10px;
  display: flex;
}

.news-card {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  height: auto;
  padding-bottom: 14px;
  display: grid;
  position: relative;
  overflow: hidden;
}

.scroll-cover {
  z-index: 90;
  background-color: var(--white);
  height: 100%;
  position: absolute;
  inset: -105% 0% 0%;
}

.clip-blog-wrap {
  position: relative;
  overflow: hidden;
}

.background-blog {
  background-image: url('../images/blogs/blogone.jpg');
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  inset: 0%;
}

.background-blog-two {
  background-image: url('../images/blogs/blogtwo.jpg');
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  inset: 0%;
}

.background-blog-three {
  background-image: url('../images/blogs/blog-three.jpg');
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  inset: 0%;
}

.background-blog-four {
  background-image: url('../images/blogs/blogfour.jpg');
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  inset: 0%;
}
.underline-hover-wrapper {
  height: 1px;
  display: flex;
  position: absolute;
  inset: auto 0% -1px;
  overflow: hidden;
}

.latest-news-list {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.latest-news-list-wrapper {
  width: 100%;
  position: relative;
}

.news-intro-item {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  background-color: var(--primary);
  color: #000;
  grid-template-rows: auto 1fr;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  height: auto;
  padding: 6px 6px 24px;
  text-decoration: none;
  display: grid;
  position: relative;
  overflow: hidden;
}

.icon-hidden {
  display: none;
}

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

.blog-intro-left {
  width: 85%;
}

.full-hero-container {
  z-index: 15;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
}

.parallax-image-02 {
  z-index: 1;
  aspect-ratio: 3 / 2;
  border-radius: 3px;
  width: 130px;
  height: 80px;
  position: relative;
  top: -70px;
  overflow: hidden;
}

.lagre-title {
  z-index: 5;
  text-align: center;
  white-space: nowrap;
  font-size: 7.7rem;
  position: relative;
}

.image-light-ov {
  z-index: 5;
  background-color: #00000026;
  position: absolute;
  inset: 0%;
}

.project-info {
  z-index: 15;
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  text-align: center;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 64%;
  display: flex;
  position: relative;
}

.project-wrapper {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
  position: relative;
}

.clip-arrow-4 {
  justify-content: center;
  align-items: center;
  padding-left: 4px;
  padding-right: 4px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.clip-arrow-4.left {
  position: absolute;
  inset: 0% auto 0% -100%;
}

.clip-arrow-4.right {
  position: absolute;
  inset: 0% -100% 0% auto;
}

.parallax-image-03 {
  z-index: 1;
  aspect-ratio: 3 / 2;
  border-radius: 3px;
  width: 160px;
  height: 180px;
  position: relative;
  top: -100px;
  overflow: hidden;
}

.primary-link-button-3 {
  grid-column-gap: 1px;
  grid-row-gap: 1px;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  letter-spacing: .5px;
  text-transform: none;
  background-color: #fff;
  border: 1px solid #ffffff26;
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  display: flex;
  position: relative;
  overflow: hidden;
}

.primary-link-button-3:hover {
  background-color: #ffffff0d;
}

.parallax-image-01 {
  z-index: 1;
  aspect-ratio: 3 / 2;
  border-radius: 3px;
  width: 180px;
  height: 130px;
  position: relative;
  top: -100px;
  left: -80px;
  overflow: hidden;
}

.parallax-image-grid {
  z-index: 10;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  height: 100%;
  display: grid;
  position: absolute;
  inset: 0%;
}

.parallax-image-grid.bottom {
  z-index: 1;
}

.logo-bottom-con {
  z-index: 55;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  padding-bottom: 100px;
  display: flex;
  position: relative;
}

.large-logo-project {
  width: auto;
  max-width: none;
  height: 80px;
}

.brand-logo-footer {
  position: relative;
}

.brand-logo-footer:hover {
  opacity: 1;
}

.brand-logo-footer.w--current {
  transition-property: opacity;
}

.brand-logo-footer.w--current:hover {
  opacity: 1;
}

.social-intro-link {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
}

.circle-link {
  border: 1px solid var(--white-15);
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  padding: 6px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.icon-circle {
  z-index: 12;
  object-fit: cover;
  height: 40px;
  position: relative;
}

.icon-circle.small-size {
  height: 35px;
}

.footer-hero-content {
  z-index: 25;
  flex-flow: column;
  width: 100%;
  display: flex;
  position: relative;
}

.news-main-con {
  padding-left: 15px;
  padding-right: 15px;
}

.video-intro-small {
  z-index: 15;
  background-color: var(--primary);
  flex-flow: column;
  width: 100%;
  height: 100%;
  padding: 6px;
  display: flex;
  position: relative;
}

.video-description {
  grid-column-gap: 2px;
  grid-row-gap: 2px;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  padding-bottom: 6px;
  display: flex;
}

.video-time-details {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  display: flex;
}

.horizontal-print-04 {
  object-fit: cover;
  object-position: 50% 100%;
  width: 100%;
  max-width: none;
  height: 15px;
  margin-top: -1px;
  display: block;
  position: absolute;
  inset: auto 0% 0%;
}

.banner-hover-cover {
  z-index: 5;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  inset: 0%;
}

.event-circle-link {
  border: 1px solid var(--white-10);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  background-color: #0000000d;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.circle-cover {
  background-color: var(--text-dark);
  background-image: linear-gradient(#ffffff03, #ffffff03);
  border-radius: 100%;
  position: absolute;
  inset: 0%;
}

.top-info-event {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  text-align: left;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.left-info-details {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.link-intro-container {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.icon-play {
  height: 50px;
}

.success-left {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  color: var(--black);
  text-align: left;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-bottom: 10px;
  font-weight: 300;
  display: flex;
}

.error-state-black {
  color: var(--black);
  text-align: left;
  letter-spacing: -.03em;
  word-break: normal;
  background-color: #fff0;
  width: 100%;
  margin-top: 24px;
  padding: 0;
  font-weight: 300;
  line-height: 1.6em;
}

.full-clip-section {
  width: 100%;
  padding-top: 60px;
  position: relative;
  overflow: hidden;
}

.full-clip-section.contact {
  z-index: 8;
  padding-bottom: 80px;
}

.primary-white {
  background-color: var(--white);
  width: 75px;
  height: 75px;
}

.flex-par-wrap {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 47%;
  display: flex;
}

.sg-quote {
  margin-top: 0;
  margin-bottom: 0;
}

.project-left-info {
  padding: 40px;
}

.featured-left {
  z-index: 10;
  justify-content: space-between;
  align-items: flex-start;
  min-width: 25rem;
  max-width: 25rem;
  padding-bottom: 14px;
  display: flex;
  position: relative;
}

.small-slider {
  background-color: #fff0;
  width: 100%;
  height: 100%;
  padding-bottom: 4.5rem;
}

.home-about {
  z-index: 35;
  padding-top: 80px;
  padding-bottom: 80px;
  position: relative;
}

.arrow-intro-wrap {
  z-index: 15;
  background-color: var(--white);
  border: 1px solid #0000001a;
  border-radius: .4rem;
  justify-content: center;
  align-items: center;
  width: 3rem;
  height: 2rem;
  padding: 2px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.small-arrow-text {
  color: var(--black);
  letter-spacing: .8px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.25em;
}

.about-intro-text {
  width: 85%;
}

.dark-photo-ov {
  background-image: linear-gradient(#00000080, #00000080);
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.rotating-strip {
  align-items: center;
  padding-top: 30px;
  padding-bottom: 20px;
  display: flex;
}

.featured-work-content-2 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  background-color: var(--white);
  flex-direction: column;
  grid-template-rows: 1fr auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  height: auto;
  padding: 12px;
}

.large-photo-03 {
  z-index: 1;
  background-image: url('../images/Banner-2_2Banner-2.webp');
  background-position: 50%;
  background-size: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.text-strip {
  grid-column-gap: 5vw;
  grid-row-gap: 5vw;
  white-space: nowrap;
  align-items: center;
  padding-right: 5vw;
  display: flex;
}

.clip-photo-wrap {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
  overflow: hidden;
}

.project-slide {
  width: 100%;
  height: 100%;
}

.studio-intro {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr auto 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
  display: grid;
  overflow: visible;
}

.studio-intro.large {
  grid-template-columns: 1fr minmax(auto, 9fr) 1fr;
}

.studio-intro.rental-info {
  z-index: 15;
  grid-template-columns: 1fr minmax(auto, 9fr) 1fr;
  position: relative;
}

.project-arrow-left {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  background-color: var(--white);
  border: 1px solid #0000000d;
  border-radius: .4rem 0 0 .4rem;
  grid-template-rows: auto;
  grid-template-columns: auto 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  width: 50%;
  height: 4.5rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  display: grid;
  inset: auto auto 0% 0%;
}

.photo-section {
  z-index: 15;
  justify-content: flex-end;
  align-items: flex-end;
  min-height: 550px;
  padding-top: 80px;
  padding-bottom: 80px;
  display: flex;
  position: relative;
}

.about-image {
  border-radius: .3rem;
  width: 10rem;
  margin-left: -7rem;
  margin-right: -7rem;
  position: relative;
  overflow: hidden;
}

.about-image.rental-img-01 {
  margin-top: 60px;
}

.project-small-intro-item {
  width: 100%;
}

.project-arrow-right {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  background-color: var(--white);
  border: 1px solid #0000000d;
  border-left-style: none;
  border-radius: 0 .4rem .4rem 0;
  grid-template-rows: auto;
  grid-template-columns: 1fr auto;
  grid-auto-columns: 1fr;
  align-items: center;
  width: 50%;
  height: 4.5rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  display: grid;
  inset: auto 0% 0% auto;
}

.star-medium {
  width: 60px;
  max-width: none;
}

.home-about-intro {
  z-index: 25;
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  text-align: center;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-top: 60px;
  padding-bottom: 60px;
  display: flex;
  position: relative;
}

.home-about-intro.intro-rental {
  width: 112%;
  padding-top: 40px;
  padding-bottom: 40px;
}

.large-photo-02 {
  z-index: 2;
  background-image: url('../images/News-6_1News-6.webp');
  background-position: 50%;
  background-size: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.small-service-arrow {
  width: auto;
  max-width: none;
  height: 14px;
}

.about-height {
  padding-top: 80%;
}

.arrow-hover-cover {
  background-color: #0000000d;
  width: 100%;
  position: absolute;
  inset: 0% auto 0% 0%;
}

.featured-grid {
  z-index: 15;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr auto;
  grid-auto-columns: 1fr;
  justify-content: end;
  justify-items: end;
  width: 100%;
  height: 100%;
  display: grid;
  position: relative;
  overflow: hidden;
}

.image-cover {
  object-fit: cover;
  object-position: 50% 15%;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.large-photo-2 {
  z-index: 3;
  background-image: url('../images/News-5_1News-5.webp');
  background-position: 50%;
  background-size: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.clip-hover-title {
  z-index: 15;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.strip-base {
  border: 1px solid var(--white-10);
  background-color: var(--black);
  border-radius: 8px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
  overflow: hidden;
}

.dark-img-overlay {
  background-color: #0000001a;
  position: absolute;
  inset: 0%;
}

.about-intro-stack {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.slider-nav {
  display: none;
}

.project-mask {
  width: 100%;
  height: 100%;
}

.strip-section {
  z-index: 15;
  padding-bottom: .625rem;
  padding-left: .625rem;
  padding-right: .625rem;
  position: relative;
}

.heading-strip {
  font-size: 5rem;
}

.image-ov-3 {
  z-index: 5;
  background-color: #0000001a;
  position: absolute;
  inset: 0%;
}

.tag-wrapper {
  z-index: 15;
  grid-column-gap: 3px;
  grid-row-gap: 3px;
  justify-content: flex-start;
  align-items: flex-start;
  width: auto;
  display: flex;
  position: relative;
}

.current-project {
  position: absolute;
  inset: 0%;
}

.intro-tag {
  border: 1px solid var(--black-10);
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  height: 32px;
  padding: 3px 12px;
  display: flex;
}

.intro-tag.category:hover {
  background-color: var(--light-gray);
  border-color: #0000008c;
}

.featured-project {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  grid-template-rows: 1fr auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  place-items: start stretch;
  height: 100%;
  display: grid;
  position: relative;
}

.project-intro {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-bottom: 40px;
  display: flex;
}

.clip-text-wrap {
  position: relative;
  overflow: hidden;
}

.project-small-tag {
  color: var(--black);
  letter-spacing: -.01em;
  text-transform: capitalize;
  font-size: 16px;
}

.project-top {
  z-index: 15;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr .5fr;
  grid-auto-columns: 1fr;
  place-items: start stretch;
  display: grid;
  position: relative;
}

.cover-image {
  border: 1px solid var(--black-10);
  background-color: var(--black-10);
  border-radius: 3px;
}

.long-project-title {
  color: var(--black);
  font-size: 32px;
  line-height: 1.2em;
}

.image-cover-4 {
  object-fit: cover;
  object-position: 50% 0%;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.image-cover-4.hhh {
  display: none;
}

.home-gallery-height {
  padding: 87% 0% 0%;
}

.banner-title-wdth {
  width: 85%;
}

.hero-gallery {
  grid-column-gap: 4vw;
  grid-row-gap: 4vw;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  height: 120%;
  margin-left: -3vw;
  margin-right: -3vw;
  display: grid;
  position: absolute;
  inset: auto 0%;
}

.banner-02-description {
  font-size: 18px;
}

.banner-02 {
  padding-top: 80px;
  position: relative;
}

.home-hero-intro {
  z-index: 15;
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  pointer-events: auto;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 80px 15px 125px;
  display: flex;
  position: relative;
}

.hero-top-outline {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  pointer-events: auto;
  flex-direction: row;
  flex: 1;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: stretch;
  min-height: 635px;
  display: grid;
  position: relative;
}

.hero-scroll-trigger {
  height: 100vh;
  position: absolute;
  inset: auto 0% -100vh;
}

.banner-02-title {
  letter-spacing: -.03em;
  text-transform: uppercase;
  font-size: 100px;
}

.home-hero-text {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  text-align: center;
  flex-flow: column;
  width: 100%;
  max-width: 32rem;
  display: flex;
}

.hero-gallery-item {
  pointer-events: auto;
  border-radius: .3em;
  width: 18vw;
  position: relative;
  overflow: hidden;
}

.hero-gallery-item.one {
  margin-top: 40px;
  margin-left: 10px;
}

.hero-gallery-item.three {
  top: -60px;
}

.hero-gallery-item.three-event {
  display: none;
  top: -60px;
}

.top-banner-line {
  position: absolute;
  inset: 80px 0% auto;
}

.gradient-top-banner {
  z-index: 5;
  height: 100%;
  position: absolute;
  inset: -160px 0% auto;
}

.gradient-top-banner.reverce {
  transform-style: preserve-3d;
  transform: rotateX(0)rotateY(180deg)rotateZ(0);
}

.gradient-top-banner.review {
  top: -1080px;
}

.gradient-top-banner.blog {
  inset: 0%;
}

.gradient-top-banner.news {
  top: -90px;
}

.gradient-top-banner.licensing {
  top: -1375px;
}

.gradient-top-banner.landing {
  inset: -376px 0% 0%;
}

.png-con-02 {
  z-index: 5;
  justify-content: center;
  align-items: flex-end;
  display: flex;
  position: absolute;
  inset: 0%;
}

.large-grad-png {
  z-index: 20;
  object-fit: cover;
  width: 100%;
  height: auto;
  position: relative;
  transform: rotate(180deg);
}

.large-grad-png.news {
  top: 20px;
}

.gradient-overlay {
  z-index: 25;
  background-color: #00000026;
  position: absolute;
  inset: 0%;
}

.light-overlay {
  z-index: 5;
  background-color: #00000026;
  position: absolute;
  inset: 0%;
}

.top-banner-subtitle {
  padding-bottom: 30px;
}

.banner-03-subtitle {
  color: var(--white);
  letter-spacing: .01em;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 300;
}

.coll-news-list, .news-collection-list-2, .news-item {
  width: 100%;
  height: 100%;
  position: relative;
}

.news-coll-wrap {
  border-top: 1px solid var(--white-10);
  width: 100%;
}

.recent-articles {
  letter-spacing: .15em;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.5em;
}

.small-container-wdth {
  width: 100%;
  margin-top: -60px;
  margin-left: auto;
  margin-right: auto;
}

.small-container-wdth.margin-0 {
  margin-top: 0;
}

.arrow-blog-circle {
  z-index: 40;
  border: 1px solid #ffffff26;
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.article-title-wrap {
  z-index: 40;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
}

.article-title-wrap.rental-benefits {
  flex-flow: column;
  justify-content: space-between;
  height: 100%;
  display: flex;
}

.article-title-wdth {
  width: 100%;
}

.hover-clip-text-2 {
  position: relative;
  overflow: hidden;
}

.slash-text {
  font-size: 14px;
}

.hero-news-item-wrap {
  width: 100%;
  height: 100%;
  position: relative;
}

.article-meta {
  z-index: 40;
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
  position: relative;
}

.article-title {
  text-transform: none;
}

.clip-text-slowly {
  position: relative;
  overflow: hidden;
}

.clip-text-slowly.bottom-text {
  position: absolute;
}

.news-link {
  z-index: 60;
  grid-column-gap: 1rem;
  grid-row-gap: 1.5rem;
  letter-spacing: 0;
  text-transform: none;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  place-items: start stretch;
  width: 100%;
  height: 100%;
  padding-top: 40px;
  padding-bottom: 40px;
  font-size: 16px;
  font-weight: 200;
  display: grid;
  position: relative;
}

.news-link:hover {
  background-color: var(--white-5);
  color: #fff;
}

.tiny-text-size {
  letter-spacing: .15em;
  text-transform: uppercase;
  font-family: IBM Plex Mono, sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.5em;
}

.top-clip-line {
  z-index: 2;
  background-color: var(--white-10);
  width: 100%;
  height: 1px;
  position: absolute;
  inset: auto auto 0% 0%;
  overflow: hidden;
}

.white-line {
  background-color: var(--white);
  width: 100%;
  height: 1px;
  position: absolute;
  inset: 0% auto auto 0%;
}

.overlay-2 {
  z-index: 5;
  background-color: #0000004d;
  position: absolute;
  inset: 0%;
}

.image-fill-2 {
  z-index: 2;
  object-fit: cover;
  object-position: 50% 50%;
  width: 100%;
  min-width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.review-content {
  z-index: 15;
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  flex-direction: column;
  width: 100%;
  max-width: 35rem;
  padding-bottom: 14px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.hover-arrow-2 {
  padding-left: 4px;
  padding-right: 4px;
}

.hover-arrow-2.right {
  position: absolute;
  inset: 0% -100% 0% auto;
}

.hover-arrow-2.left {
  position: absolute;
  inset: 0% auto 0% -100%;
}

.testimonial-small-slide {
  height: 100%;
  position: static;
}

.testimonial-mask {
  position: static;
  overflow: visible;
}

.testimonial-ava-ov {
  z-index: 5;
  position: absolute;
  inset: 0%;
}

.testimonials-hero-text {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.testimonial-ava {
  object-fit: cover;
  background-image: url('../images/6_26.webp');
  background-position: 50% 20%;
  background-size: cover;
  width: 100%;
  height: 100%;
  position: absolute;
}

.testimonial-ava.ava-3 {
  background-image: url('../images/1_31.webp');
  background-position: 50% 0;
}

.testimonial-ava.ava-2 {
  background-image: url('../images/6-2_16-2.webp');
  background-position: 100% 0;
}

.icon-tiny-arrow {
  justify-content: center;
  align-items: center;
  width: auto;
  max-width: none;
  height: .9rem;
  display: flex;
  overflow: hidden;
}

.text-size-small {
  color: var(--black);
  font-size: .975rem;
  line-height: 1.35;
}

.our-tourist {
  opacity: .7;
  color: var(--text-dark);
  letter-spacing: .02em;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 400;
}

.into-view {
  justify-content: flex-start;
  align-items: center;
  height: 100%;
  display: flex;
}

.testimonial-small-slider {
  z-index: 100;
  background-color: var(--white);
  width: 100%;
  height: auto;
  padding-right: 0;
  position: relative;
}

.testimonial-credit {
  grid-column-gap: 1.2rem;
  grid-row-gap: 1.2rem;
  grid-template-rows: auto;
  grid-template-columns: auto 1fr;
  grid-auto-columns: 1fr;
  align-content: center;
  align-self: center;
  place-items: center stretch;
  display: grid;
}

.testimonial-slide-arrow-icon {
  border-style: solid none none;
  border-width: 1px;
  border-color: var(--black-10);
  background-color: #fff0;
  justify-content: center;
  align-items: center;
  width: 50%;
  height: auto;
  display: flex;
  inset: auto auto 0% 0%;
}

.testimonial-slide-arrow-icon.right-arrow {
  border-left-style: solid;
  border-radius: 0;
  inset: auto 0% 0% auto;
}

.into-view-wrapper {
  width: 100%;
}

.home-large-review {
  z-index: 60;
  border-radius: 0;
  justify-content: center;
  align-items: flex-end;
  min-height: 80vh;
  padding-top: 20rem;
  padding-bottom: 14rem;
  display: flex;
  position: relative;
  overflow: hidden;
}

.number-size-large {
  color: var(--black);
  letter-spacing: -.05em;
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 1px;
  padding-right: 1px;
  font-size: 24px;
  font-weight: 200;
  line-height: 1.5;
}

.slider-arrow-2 {
  grid-column-gap: .5rem;
  grid-row-gap: .25rem;
  cursor: pointer;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  display: flex;
}

.clip-3 {
  position: relative;
  overflow: hidden;
}

.testimonial-slider-avatar {
  border-radius: 100%;
  justify-content: space-between;
  width: 60px;
  height: 60px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.testimonial-slide-nav {
  font-size: .5rem;
  display: none;
}

.review-name-2 {
  color: var(--black);
  letter-spacing: -.03em;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.4;
}

.section-review {
  z-index: 15;
  position: relative;
}

.review-banner-bkg {
  position: absolute;
  inset: 0%;
  overflow: hidden;
}

.testimonial-slide-content-2 {
  grid-column-gap: 2.8rem;
  grid-row-gap: 2.8rem;
  text-align: center;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 2.5rem 2.5rem 8rem;
  display: flex;
}

.testimonial-name-wrapper-2 {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.small-intro-space {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  justify-content: flex-start;
  align-items: center;
  margin-top: 10px;
  padding-left: 30px;
  padding-right: 20px;
  display: flex;
}

.small-news-img {
  border-radius: .1rem;
  width: 100%;
  height: 100%;
  min-height: 180px;
  position: relative;
  overflow: hidden;
}

.news-photo {
  z-index: 1;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-size: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.news-photo.photo-001 {
  background-image: url('../images/Banner-1-3_1Banner-1-3.webp');
}

.news-photo.photo-002 {
  background-image: url('../images/Banner-1_2Banner-1.webp');
}

.news-photo.photo-003 {
  background-image: url('../images/News-5_1News-5.webp');
}

.news-photo.photo-004 {
  background-image: url('../images/techs/tech1.jpg');
}

.news-photo.photo-005 {
  background-image: url('../images/techs/tech2.jpg');
}

.news-photo.photo-006 {
  background-image: url('../images/techs/tech3.jpg');
}

.bold-span-text {
  font-weight: 400;
}

.full-grid-container {
  z-index: 15;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1230px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
}

.small-subtitle-wrap {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.news-relative-wrap {
  padding-right: 18px;
  position: relative;
  overflow: hidden;
}

.vert-print-04 {
  object-fit: cover;
  object-position: 0% 0%;
  transform-style: preserve-3d;
  width: 18px;
  max-width: none;
  height: 101%;
  position: absolute;
  inset: 0% 0% 0% auto;
  transform: rotateX(0)rotateY(180deg)rotateZ(0);
}

.white-news-wrap {
  background-color: var(--primary);
  padding: 6px;
  position: relative;
  overflow: hidden;
}

.blog-light-ov {
  z-index: 5;
  opacity: 0;
  background-color: #0006;
  justify-content: flex-end;
  align-items: flex-end;
  width: 100%;
  height: 100%;
  padding: 6px;
  display: flex;
  position: absolute;
  inset: 0%;
}

.blog-light-ov.light {
  background-color: #0003;
}

.blog-arrow {
  transform-style: preserve-3d;
  height: 35px;
  transform: rotateX(180deg)rotateY(0)rotateZ(0);
}

.intro-article {
  padding-left: 35px;
  padding-right: 15px;
}

.top-article-subtitle {
  padding-left: 30px;
}

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

.light-news-overlay {
  background-color: #0000000d;
  width: 100%;
  height: 100%;
  position: absolute;
}

.banner-link {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: row;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  width: 39%;
  margin-left: auto;
  margin-right: auto;
  display: grid;
}

.banner-link.small-width {
  width: 35%;
}

.banner-link.medium-width {
  width: 38%;
}

.clip-large-arrow {
  position: relative;
  overflow: hidden;
}

.clip-large-arrow.left {
  position: absolute;
  inset: 0% 105% 0% auto;
}

.banner-flex-link {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
  position: relative;
}

.chanloge-center-text {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 40px;
  display: flex;
}

.form-input {
  border: 1px solid var(--white-10);
  background-color: var(--black);
  color: #fff;
  border-radius: 0;
  min-height: 54px;
  margin-bottom: 0;
  padding: 16px 15px 16px 18px;
  font-size: 16px;
  font-weight: 400;
  transition: all .5s cubic-bezier(.25, .46, .45, .94);
}

.form-input:focus {
  border-color: #fff;
  padding-left: 24px;
}

.form-input::placeholder {
  color: #ffffff80;
  font-size: 16px;
  font-weight: 300;
}

.form-input.mb-15 {
  margin-bottom: 12px;
}

.intro-pass {
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 18px;
  font-size: 16px;
  font-weight: 300;
}

.form-btn-white {
  border: 2px solid var(--white);
  background-color: var(--white);
  color: var(--black);
  text-align: center;
  letter-spacing: .08em;
  text-transform: uppercase;
  justify-content: center;
  align-items: center;
  min-width: 160px;
  height: 54px;
  padding: 18px 24px;
  font-size: 14px;
  font-weight: 600;
  transition: all .35s;
  display: flex;
}

.form-btn-white:hover {
  background-color: var(--black);
  color: var(--white);
}

.search-section {
  padding-top: 180px;
  padding-left: 15px;
  padding-right: 15px;
}

.search-result-list {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.search-link {
  line-height: 1.5em;
}

.search-slug {
  margin-top: 12px;
  margin-bottom: 8px;
  font-family: Space Grotesk, sans-serif;
  font-size: 15px;
  font-weight: 300;
}

._404-content {
  z-index: 100;
  padding-left: 30px;
  padding-right: 30px;
  position: relative;
}

._404-wrapper {
  z-index: 10;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  padding-top: 60px;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
  position: relative;
}

._404-text {
  text-align: center;
  width: 100%;
  margin-top: 20px;
  margin-bottom: 40px;
}

._404-content-wrapper-2 {
  z-index: 100;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 700px;
  display: flex;
  position: relative;
}

._404-logo-wrapper-2 {
  z-index: 100;
  justify-content: center;
  display: flex;
  position: absolute;
  inset: 40px 0% auto;
}

.clip-group-section {
  z-index: 45;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.error-404-text {
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 50px;
}

._404-title {
  z-index: 100;
  color: #fff;
  margin-top: 0;
  margin-bottom: 40px;
  font-size: 150px;
  font-weight: 600;
  line-height: 1em;
}

.loop-intro-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.loop-image-list-left {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  column-count: 2;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  align-self: center;
  column-gap: 1.5rem;
  width: 100%;
  height: 100%;
  margin-top: -60%;
  display: grid;
}

.loop-container {
  grid-column-gap: 60px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  width: 100%;
  display: flex;
}

.coming-soon-wrapper-2 {
  flex-direction: column;
  align-items: flex-start;
  max-width: 690px;
  display: flex;
}

.loop-image-list {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  height: 100%;
  display: grid;
}

.coming-soon-container {
  z-index: 45;
  width: 100%;
  max-width: 1230px;
  height: 100vh;
  margin-left: auto;
  margin-right: auto;
  padding-left: 30px;
  padding-right: 30px;
  position: relative;
  overflow: hidden;
}

.coming-soon-title {
  width: 100%;
  margin-top: 60px;
  margin-bottom: 0;
  font-size: 44px;
}

.image-content-right {
  grid-column-gap: 1rem;
  align-items: center;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.images-layout {
  grid-column-gap: 1rem;
  width: 100%;
  display: flex;
  position: relative;
  overflow: hidden;
}

.loop-image-wrapper {
  width: 100%;
  padding-top: 150%;
  position: relative;
  overflow: hidden;
}

.coming-soon-text {
  width: 85%;
  margin-top: 20px;
  margin-bottom: 40px;
}

.coming-soon-overlay {
  z-index: 1;
  background-color: #00000026;
  position: absolute;
  inset: 0%;
}

.loop-image-list-right {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  height: 100%;
  display: grid;
}

.loop-section-2 {
  z-index: 10;
  width: 100%;
  position: relative;
}

.hero-form-coming-soon-2 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
}

.image-ov-4 {
  position: absolute;
  inset: 0%;
}

.about-info-width {
  width: 70%;
}

.left-about-info {
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.spin-about {
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  max-width: 16rem;
  height: 100%;
  display: flex;
}

.spin-about.news {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: flex;
}

.image-cover-5 {
  z-index: 10;
  object-fit: cover;
  object-position: 50% 0%;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.image-cover-5.hhh {
  display: none;
}

.about-banner-info {
  color: var(--white);
  font-size: 18px;
}

.about-us-hero-banner {
  padding-top: 180px;
  padding-bottom: 40px;
  position: relative;
}

.white-span {
  color: #fff;
}

.about-info-banner {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  flex-flow: column;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
}

.about-top-info {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 200px;
  grid-auto-columns: 1fr;
  display: grid;
}

.about-top-info.news {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-columns: 1fr 1fr 1fr;
}

.heading-strip-large {
  font-size: 8rem;
}

.about-top-content {
  flex-flow: column;
  justify-content: space-between;
  min-height: 730px;
  display: flex;
  position: relative;
}

.large-photo-banner {
  z-index: 3;
  background-image: url('../images/Banner-1-3_1Banner-1-3.webp');
  background-position: 50%;
  background-size: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.large-photo-banner.faq-photo {
  background-image: url('../images/faq/faq_main.webp');
}

.large-photo-banner.thespo-studio-photo {
  background-image: url('../images/technical-specs/technical-specs-main.jpg');
}

.top-line-2 {
  z-index: 3;
  background-color: var(--white-10);
  width: 100%;
  height: 1px;
  position: absolute;
  inset: 0% auto auto 0%;
}

.bottom-line-2 {
  z-index: 3;
  background-color: var(--white-10);
  width: 100%;
  height: 1px;
  position: absolute;
  inset: auto auto 0% 0%;
}

.advantages-description {
  color: #fff;
  text-align: center;
  width: 100%;
}

.large-intro-benefits {
  z-index: 15;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  background-color: #0000001a;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
  display: grid;
  position: relative;
}

.large-advantages-item {
  z-index: 20;
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  border-right: 1px solid var(--white-10);
  text-align: left;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding: 50px 15px;
  display: flex;
  position: relative;
}

.large-advantages-item.last-item {
  border-right-style: none;
}

.advantages-title {
  margin-top: 0;
  margin-bottom: 0;
}

.padding-section {
  z-index: 15;
  padding-left: .625rem;
  padding-right: .625rem;
  position: relative;
}

.border-wrapper {
  z-index: 55;
  border: 1px solid var(--white-10);
  background-color: var(--black);
  border-radius: 8px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
  position: relative;
  overflow: hidden;
}

.content-spacing {
  width: 100%;
  min-height: 50vh;
  padding: 80px 15px;
}

.clip-line-top {
  width: 100%;
  height: 2px;
  position: absolute;
  inset: 0% 0% auto;
  overflow: hidden;
}

.text-small {
  color: #fff;
  justify-content: center;
  align-items: center;
  font-weight: 300;
}

.clip-line-bottom {
  width: 100%;
  height: 2px;
  position: absolute;
  inset: auto 0% 0%;
  overflow: hidden;
}

.icon-size-tiny {
  height: 14px;
  transform: rotate(45deg);
}

.subtitle-text {
  text-transform: capitalize;
  font-size: 18px;
  font-weight: 300;
}

.faq-grid-item {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-flow: column;
  width: 100%;
  display: flex;
}

.studio-service-text {
  max-width: 18rem;
}

.faq-dropdown-down {
  grid-column-gap: 3px;
  grid-row-gap: 3px;
  cursor: pointer;
  background-color: #fff0;
  border-radius: 8px;
  flex-flow: column;
  width: 100%;
  transition: all .35s;
  overflow: visible;
}

.faq-dropdown-down:hover {
  background-color: #ffffff0d;
}

.service-tab-icon {
  border: 2px solid var(--primary);
  background-color: var(--primary);
  justify-content: center;
  align-items: center;
  width: 3rem;
  height: 3rem;
  display: flex;
}

.top-line-3 {
  background-color: var(--white-10);
  width: 100%;
  height: 1px;
  position: absolute;
  inset: 0% auto auto 0%;
}

.service-tab-grid {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  border-top: 1px #e6e6e6;
  grid-template-rows: auto;
  grid-template-columns: .25fr 1fr 1fr auto;
  grid-auto-columns: 1fr;
  align-items: center;
  width: 100%;
  display: grid;
}

.par-answer-faq-dark {
  width: 100%;
  max-width: 850px;
  line-height: 1.6em;
}

.faq-content {
  width: 100%;
}

.icon-extra-small {
  height: 26px;
  transform: rotate(-45deg);
}

.section-label {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  align-items: center;
  padding-bottom: 1.25rem;
  padding-left: 24px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.faq-hero-title {
  font-size: 47px;
  line-height: 1.2;
}

.faq-dropdown-list {
  border-style: solid;
  border-width: 1px;
  border-color: var(--white-10) var(--white-10) var(--white-5) var(--white-5);
  background-color: var(--transparent);
  margin: -1px;
  display: block;
  position: relative;
}

.faq-dropdown-list.last {
  border-top-style: none;
  border-bottom-color: var(--white-10);
}

.bottom-line-3 {
  background-color: var(--white-10);
  width: 100%;
  height: 1px;
  position: absolute;
  inset: auto auto 0% 0%;
}

.faq-text {
  color: var(--white);
  white-space: pre-wrap;
  font-size: 18px;
}

.service-tab-top-2 {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  cursor: pointer;
  grid-template-rows: auto;
  grid-template-columns: 1fr auto;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.faq-answer {
  background-color: var(--text-dark);
  padding: 20px 64px 40px 24px;
  position: relative;
}

.faq-toggle {
  z-index: 2;
  width: 100%;
  padding: 60px 24px;
  transition: all .45s;
}

.initial-text-wrapper {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.large-about-photo {
  z-index: 55;
  justify-content: flex-end;
  align-items: flex-end;
  min-height: 650px;
  padding-top: 80px;
  display: flex;
  position: relative;
}

.rental-grig {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex: 1;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  height: 0%;
  margin-bottom: -100px;
  padding-top: 220px;
  padding-left: 24px;
  padding-right: 24px;
  display: grid;
}

.subscribe-rental-container {
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 14px;
  position: relative;
  overflow: hidden;
}

.rental-video-section {
  z-index: 15;
  justify-content: space-between;
  align-items: stretch;
  height: auto;
  padding-bottom: 100px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.video-wrapper {
  width: 100%;
  height: auto;
  position: absolute;
  inset: 0 0% 100px;
  overflow: hidden;
}

.png-con-03 {
  z-index: 5;
  transform-style: preserve-3d;
  justify-content: center;
  align-items: flex-end;
  display: flex;
  position: absolute;
  inset: 0%;
  transform: rotateX(0)rotateY(180deg)rotateZ(0);
}

.light-photo-overlay {
  background-color: #0000004d;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.star-large {
  width: 84px;
  max-width: none;
}

.about-banner-subtitle {
  color: var(--white);
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 16px;
}

.banner-event-01 {
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}

.our-virtual-services {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  flex-flow: column;
  width: 100%;
  display: flex;
}

.case-sticky-item {
  width: 100%;
  position: sticky;
  top: 80px;
}

.serv-collection-list-wrapper {
  width: 100%;
  height: 100%;
}

.serv-photo-wrap {
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  height: 100%;
  min-height: 750px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.hero-serv-image {
  z-index: 10;
  background-position: 50%;
  background-size: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.hero-serv-image-one{
  background-image: url('../images/curtains-down/one.avif');
}

.hero-serv-image-two {
  background-image: url('../images/curtains-down/two.jpg');
}

.hero-serv-image-three {
  background-image: url('../images/curtains-down/three.jpg');
}

.hero-serv-image-four {
  background-image: url('../images/curtains-down/four.jpg');
}

.hero-serv-image-five {
  background-image: url('../images/curtains-down/five.jpg');
}

.scroll-overlay {
  background-color: #00000040;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.project-info-wrap {
  z-index: 5;
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-flow: column;
  align-items: center;
  padding-top: 60px;
  padding-bottom: 60px;
  display: flex;
  position: relative;
}

.service-info-con {
  z-index: 15;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 24px;
  display: flex;
  position: relative;
}

.link-serv-details {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: absolute;
  inset: 0%;
}

.link-serv-details:hover {
  color: #fff;
}

.event-banner-02 {
  padding-top: 140px;
  padding-bottom: 1px;
  position: relative;
}

.event-01-hero-con {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  pointer-events: auto;
  flex-direction: row;
  flex: 1;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: stretch;
  min-height: 570px;
  display: grid;
  position: relative;
}

.small-video {
  object-position: 50% 0%;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.small-video.hhh {
  display: none;
}

.all-events {
  z-index: 45;
  padding-bottom: 80px;
  position: relative;
}

.all-events.without-bottom-spacing {
  padding-bottom: 0;
}

.all-events.no-space {
  z-index: 45;
  padding-top: 0;
  padding-bottom: 0;
}

.details-body {
  grid-column-gap: 16px;
  grid-row-gap: 48px;
  flex: 1;
  grid-template-rows: auto 1fr;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
}

.tablet-clip-wrap {
  z-index: 8;
}

.latest-events-2 {
  grid-column-gap: 16px;
  grid-row-gap: 36px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.hero-rich-text-style h2 {
  margin-bottom: 15px;
}

.hero-rich-text-style h3, .hero-rich-text-style h4, .hero-rich-text-style h5, .hero-rich-text-style h6 {
  margin-top: 30px;
  margin-bottom: 15px;
}

.hero-rich-text-style ul {
  margin-top: 15px;
  margin-bottom: 30px;
}

.hero-rich-text-style figure {
  margin-top: 40px;
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
}

.grid-group-wrapper {
  z-index: 10;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 30px minmax(auto, 1215px) 30px;
  grid-auto-rows: 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  max-width: 1230px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  position: relative;
}

.details-card {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  padding: 0;
  display: flex;
  position: sticky;
  top: 90px;
  overflow: hidden;
}

.section-details {
  z-index: 45;
  padding-top: 80px;
  padding-bottom: 80px;
  position: relative;
}

.section-details.event-details {
  z-index: 8;
  padding-top: 20px;
  padding-bottom: 0;
}

.content-details {
  grid-column-gap: 50px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr .9fr;
  grid-auto-columns: 1fr;
  place-content: start space-between;
  display: grid;
}

.quick-link-item-2 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-color: #141414;
  border: 1px solid #ffffff0d;
  border-radius: 6px;
  grid-template-rows: auto;
  grid-template-columns: 1fr auto;
  grid-auto-columns: 1fr;
  padding: 18px;
  text-decoration: none;
  transition: all .5s cubic-bezier(.25, .46, .45, .94);
  display: grid;
}

.quick-link-item-2:hover {
  color: #ffffff80;
  padding-left: 24px;
}

.performances-title {
  color: var(--white);
  font-family: IBM Plex Mono, sans-serif;
  font-size: 70px;
}

.event-hero-intro {
  z-index: 15;
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  pointer-events: auto;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 80px 15px 100px;
  display: flex;
  position: relative;
}

.event-02-banner {
  justify-content: center;
  align-items: center;
  height: auto;
  min-height: 500px;
  padding-top: 140px;
  padding-bottom: 100px;
  display: flex;
}

.event-banner-title-large {
  letter-spacing: -.03em;
  white-space: nowrap;
  word-break: normal;
  margin-left: auto;
  margin-right: auto;
  font-size: 10.8rem;
  font-weight: 600;
}

.event-02-content {
  flex-flow: column;
  display: flex;
}

.event-par-wdth {
  width: 60%;
  padding-left: 15px;
  padding-right: 15px;
}

.event-03-content {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  text-align: center;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.form-event-detail {
  width: 100%;
  padding-bottom: 14px;
  position: relative;
  overflow: hidden;
}

.event-form {
  background-color: var(--primary);
  border-radius: 0;
  width: 100%;
  max-width: 100%;
  padding: 20px;
}

.event-details-banner {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-size: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.subscribe-title-details {
  color: var(--black);
}

.intro-banner {
  flex-flow: column;
  justify-content: flex-end;
  min-height: 600px;
  display: flex;
  position: relative;
}

.rating-star-item {
  background-image: linear-gradient(135deg, #ff7f20 42%, var(--primary-red) 98%);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  font-family: "Fa solid 900", sans-serif;
  font-size: 14px;
}

.rating-star-item.empty-star {
  font-family: "Fa 400", sans-serif;
}

.hero-feedback {
  line-height: 1.6em;
}

.fashionistas-photo-wrap {
  border: 1px solid #ffffff1a;
  border-radius: 100%;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.job-position-2 {
  color: var(--primary-light);
  font-size: 15px;
  font-weight: 300;
}

.fashionistas-personal-info {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.stories-item {
  border: 1px solid var(--white-10);
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  background-color: #0000001a;
  align-items: flex-start;
  padding: 24px 12px;
  position: relative;
}

.name-person {
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.review-wrap {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-flow: column;
  justify-content: space-between;
  align-items: stretch;
  display: flex;
}

.customer-info {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.column-stories {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: auto;
  align-content: start;
  align-items: start;
  display: grid;
}

.client-photo {
  background-image: url('../images/1_31.webp');
  background-position: 50% 0;
  background-size: cover;
  border-radius: 100%;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.client-photo.avatar-photo---03 {
  background-image: url('../images/6-2_16-2.webp');
  background-position: 50% 0;
}

.client-photo.avatar-photo---07 {
  background-image: url('../images/1_61.webp');
  background-position: 50% 0;
}

.client-photo.avatar-photo---10 {
  background-image: url('../images/2-1_12-1.webp');
}

.client-photo.avatar-photo---17 {
  background-image: url('../images/3-2_13-2.webp');
  background-position: 50%;
}

.client-photo.avatar-photo---15 {
  background-image: url('../images/7_17.webp');
  background-position: 50% 0;
}

.client-photo.avatar-photo---02 {
  background-image: url('../images/6_26.webp');
}

.client-photo.avatar-photo---04 {
  background-image: url('../images/4_14.webp');
}

.client-photo.avatar-photo---11 {
  background-image: url('../images/5_25.webp');
  background-position: 50% 0;
}

.client-photo.avatar-photo---08 {
  background-image: url('../images/6_16.webp');
  background-position: 50% 15%;
}

.client-photo.avatar-photo---05 {
  background-image: url('../images/5-1_15-1.webp');
}

.client-photo.avatar-photo---16 {
  background-image: url('../images/3_23.webp');
  background-position: 50% 0;
}

.carsy-stories {
  z-index: 15;
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
  position: relative;
}

.feedback-info {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.rating-wrap-2 {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.container-review {
  z-index: 30;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  padding-left: 15px;
  padding-right: 15px;
  display: grid;
  position: relative;
}

.mobile-show {
  display: none;
}

.section-blog-details {
  border-top: 1px solid var(--white-10);
  background-color: var(--text-dark);
  border-bottom: 1px solid #ffffff26;
  justify-content: center;
  align-items: stretch;
  height: 500px;
  padding-top: 160px;
  padding-bottom: 160px;
  display: flex;
  position: relative;
}

.blog-details-background-image {
  background-image: url(../images/News-5_1News-5.webp);
  background-position: 50% 25%;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  inset: 0%;
}

.blog-details-background-image-one {
  background-image: url(../images/blogs/blogone.jpg);
  background-position: 50% 25%;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  inset: 0%;
}

.blog-details-background-image-two {
  background-image: url(../images/blogs/blogtwo.jpg);
  background-position: 50% 25%;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  inset: 0%;
}

.blog-details-background-image-three {
  background-image: url(../images/blogs/blog-three.jpg);
  background-position: 50% 25%;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  inset: 0%;
}
.blog-details-background-image-four {
  background-image: url(../images/blogs/blogfour.jpg);
  background-position: 50% 25%;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  inset: 0%;
}

.content-blog-details-wrap {
  z-index: 100;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
  display: flex;
  position: relative;
}

.date-line {
  background-color: #fff;
  width: 40px;
  height: 1px;
}

.link-hover-fill-2 {
  background-color: var(--text-dark);
  border-radius: 100%;
  display: none;
  position: absolute;
  inset: 0%;
}

.submit-btn-2 {
  z-index: 15;
  color: #000;
  background-color: #fff;
  border: 1px solid #ffffff26;
  border-radius: 100px;
  width: 80px;
  height: 40px;
  padding: 0;
  font-family: "Fa solid 900", sans-serif;
  font-size: 20px;
  font-weight: 400;
  position: relative;
}

.bottom-slider-arrow-portfolio {
  border-style: solid solid none none;
  border-width: 1px;
  border-color: var(--white-10);
  color: #fff;
  justify-content: center;
  align-items: center;
  width: 50%;
  height: 80px;
  display: flex;
  top: auto;
  bottom: 0;
}

.bottom-slider-arrow-portfolio:hover {
  color: #ffffff80;
}

.bottom-slider-arrow-portfolio.right {
  border-right-style: none;
}

.blog-arrow-2 {
  z-index: 100;
  filter: invert();
  height: 30px;
  position: relative;
  transform: rotate(45deg);
}

.project-pagination-wrapper-2 {
  z-index: 100;
  align-items: stretch;
  display: flex;
  position: relative;
}

.about-project {
  z-index: 15;
  position: relative;
}

.date-wrap {
  z-index: 100;
  grid-column-gap: 20px;
  align-items: center;
  display: flex;
  position: relative;
}

.slider-arrow-icon-left {
  width: 12px;
  height: 12px;
}

.intro-con {
  grid-column-gap: 14px;
  grid-row-gap: 14px;
  text-align: center;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
  position: relative;
}

.prev-portfolio {
  margin-left: 20px;
}

.title-blog-container {
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: flex;
}

.intro-con-title {
  margin-bottom: 10px;
  font-size: 16px;
}

.blog-content {
  grid-column-gap: 180px;
  grid-row-gap: 12px;
  flex-direction: column;
  grid-template-rows: 1fr;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  place-items: flex-start start;
  width: 95%;
  min-height: 450px;
  padding-top: 160px;
  padding-bottom: 80px;
  display: flex;
}

.next-portfolio {
  margin-right: 20px;
}

.bottom-line-4 {
  background-color: var(--white-10);
  width: 100%;
  height: 1px;
  position: absolute;
  inset: auto auto 0% 0%;
}

.clip-group-container {
  z-index: 40;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.hero-nav-dropdown-2 {
  font-size: 14px;
  line-height: 1.2em;
}

.background-blog-wrapper-2 {
  z-index: 1;
  border-radius: .4rem;
  justify-content: center;
  align-items: center;
  margin: .625rem;
  display: flex;
  position: absolute;
  inset: 0%;
  overflow: hidden;
}

.service-details-title {
  width: 100%;
  margin-top: 40px;
  margin-bottom: 20px;
  font-size: 75px;
}

.slider-arrow-icon-right {
  width: 12px;
  height: 12px;
}

.footer-link-item {
  padding-left: 1px;
  padding-right: 1px;
  position: relative;
  overflow: hidden;
}

.scroll-blog-circle-2 {
  z-index: 100;
  border: 1px solid var(--white-10);
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 140px;
  height: 140px;
  display: flex;
  position: relative;
}

.scroll-blog-circle-2:hover {
  opacity: 1;
}

.news-paragraph {
  width: 75%;
  margin-top: 0;
  margin-bottom: 0;
}

.intro-clip-wrap {
  justify-content: center;
  align-items: center;
  display: flex;
}

.news-overlay-2 {
  background-color: #0000000d;
  position: absolute;
  inset: 0%;
}

.scroll-blog-link {
  z-index: 100;
  background-color: #000;
  border: 1px #8c9fac33;
  border-radius: 100%;
  margin-bottom: -70px;
  padding: 6px;
  position: absolute;
  inset: auto 40px 0% auto;
  overflow: hidden;
}

.header-link-item-2 {
  background-color: #0000;
  align-items: center;
  margin-top: 0;
  margin-bottom: 0;
  padding: 22px 0;
  transition: all .5s;
  display: flex;
}

.header-link-item-2.w--open:hover {
  color: #a8a4a4;
  text-decoration: none;
}

.section-portfolio-details {
  z-index: 15;
  padding-top: 80px;
  padding-bottom: 80px;
  position: relative;
}

.circle-link-wrapper {
  margin: -48px;
  padding: 48px;
}

.blog-template-wrap {
  width: 100%;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}

.blog-template-wrap.banner {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  max-width: 100%;
  padding-left: 15px;
  display: flex;
}

.services-template-wrap {
  z-index: 55;
  width: 100%;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.relative-con {
  position: relative;
}

.contact-form {
  width: 100%;
  padding-bottom: 17px;
  position: relative;
  overflow: hidden;
}

.contact-grid {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: .5fr 1fr .5fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
  position: relative;
}

.contact-info-details {
  flex-flow: column;
  width: 550px;
  max-width: 100%;
  display: flex;
}

.top-contact-wrap {
  background-color: var(--primary);
  padding: 6px;
  position: relative;
}

.video-item-height {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  min-height: 280px;
  display: grid;
  position: relative;
  overflow: hidden;
}

.contact-video {
  z-index: 5;
  width: 100%;
  height: 100%;
}

.contact-top {
  z-index: 15;
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  text-align: center;
  flex-flow: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr .5fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: center;
  display: flex;
  position: relative;
}

.contacts-intro-link {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.bottom-contact {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  text-align: center;
  flex-flow: column;
  display: flex;
}

.contact-full-fields {
  grid-column-gap: 0px;
  grid-row-gap: 12px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.success-center {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  color: var(--black);
  text-align: center;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  padding-bottom: 10px;
  font-weight: 300;
  display: flex;
}

.error-center-state {
  color: var(--black);
  text-align: center;
  letter-spacing: -.03em;
  word-break: normal;
  background-color: #fff0;
  width: 100%;
  margin-top: 24px;
  padding: 0;
  font-weight: 300;
  line-height: 1.6em;
}

.contact-title-details {
  color: var(--black);
}

.rental-listing {
  text-align: left;
}

.hero-rental-title {
  text-transform: none;
  font-size: 30px;
}

.rental-intro-top {
  padding-bottom: 30px;
}

.home-rental {
  z-index: 35;
  justify-content: center;
  align-items: center;
  height: auto;
  min-height: 730px;
  padding-top: 80px;
  padding-bottom: 80px;
  display: flex;
  position: relative;
}

.blog-banner-title-large {
  letter-spacing: -.03em;
  white-space: nowrap;
  word-break: normal;
  margin-left: auto;
  margin-right: auto;
  font-size: 10rem;
  font-weight: 600;
}

.blog-01-banner {
  justify-content: center;
  align-items: center;
  height: auto;
  min-height: 500px;
  padding-top: 140px;
  padding-bottom: 80px;
  display: flex;
  position: relative;
}

.all-news-list {
  padding-top: 60px;
  padding-left: 15px;
  padding-right: 15px;
}

.latest-news-list-wrap {
  width: 100%;
  position: relative;
}

.blog-post-section {
  z-index: 15;
  position: relative;
}

.news-clip-title {
  z-index: 10;
  width: 125%;
  position: relative;
  overflow: hidden;
}

.main-news-link {
  letter-spacing: 0;
  text-transform: none;
  width: 100%;
  height: 100%;
  position: relative;
}

.main-news-link:hover {
  background-color: var(--white-5);
  color: #fff;
}

.hero-news-item {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  border-style: solid none;
  border-width: 1px;
  border-color: var(--white-10);
  letter-spacing: 0;
  text-transform: none;
  grid-template-rows: auto;
  grid-template-columns: 1.5fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  min-height: 5rem;
  padding: 60px 20px;
  font-size: 16px;
}

.hero-news-item:hover {
  color: #fff;
}

.small-banner-blog {
  flex-flow: column;
  justify-content: space-between;
  display: flex;
  position: relative;
}

.news-hero-banner {
  height: auto;
  min-height: 680px;
  padding-top: 200px;
  padding-bottom: 80px;
  position: relative;
}

.blog-info-width {
  width: 90%;
}

.small-blog-title {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 32px;
  transition: all .35s;
}

.small-blog-title:hover {
  color: var(--primary);
}

.banner-blog-link {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: row;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  place-items: start stretch;
  height: 40px;
  margin-top: -40px;
  display: grid;
}

.left-news-info {
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.blog-title-03 {
  width: 95%;
  margin-left: auto;
  margin-right: auto;
}

.news-03-content {
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
}

.news-03-banner {
  z-index: 15;
  padding-top: 160px;
  position: relative;
}

.masonry-title-news {
  color: var(--black);
  text-align: center;
  letter-spacing: -.03em;
  text-transform: capitalize;
  font-size: 20px;
}

.masonry-title-news:hover {
  color: var(--primary);
}

.blog-wdth-title {
  width: 95%;
  position: relative;
  overflow: hidden;
}

.row-masonry-news {
  margin-top: -80px;
}

.blog-card {
  background-color: var(--white);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  color: #fff;
  flex-flow: column;
  grid-template-rows: 1fr;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  min-height: 300px;
  padding: 6px;
  text-decoration: none;
  display: grid;
  position: relative;
  overflow: hidden;
}

.category-list-wrapper {
  padding-left: 15px;
  padding-right: 15px;
}

.category-banner-title {
  letter-spacing: -.03em;
  white-space: nowrap;
  word-break: normal;
  margin-left: auto;
  margin-right: auto;
  font-size: 11rem;
  font-weight: 600;
}

.blog-category-banner {
  justify-content: center;
  align-items: center;
  height: auto;
  min-height: 500px;
  padding-top: 140px;
  padding-bottom: 80px;
  display: flex;
  position: relative;
}

.small-news-space {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.news-rich-text h2 {
  margin-bottom: 15px;
}

.news-rich-text h3, .news-rich-text h4, .news-rich-text h5, .news-rich-text h6 {
  margin-top: 30px;
  margin-bottom: 15px;
}

.news-rich-text ul {
  margin-top: 15px;
  margin-bottom: 30px;
}

.news-rich-text figure {
  margin-top: 40px;
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
}

.bottom-line-blog {
  background-color: var(--white-10);
  width: 100%;
  height: 1px;
  position: absolute;
  inset: auto auto 0% 0%;
}

.left-banner-title {
  width: 85%;
}

.left-banner-intro {
  z-index: 15;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 20px;
  display: flex;
  position: relative;
}

.space-tickets-wrapper {
  justify-content: flex-start;
  align-items: center;
  width: 43%;
  margin-top: 24px;
  margin-bottom: 40px;
  display: flex;
}

.height-video-banner {
  width: 100%;
  height: 96%;
  position: absolute;
  inset: auto 0% 0%;
}

.project-collection-item-2 {
  width: 100%;
}

.project-collection-item-2:nth-child(odd) {
  margin-top: 60px;
  margin-bottom: 80px;
}

.tab-dot {
  z-index: 10;
  background-color: var(--black);
  border-radius: 100px;
  width: 7px;
  height: 7px;
  position: relative;
}

.events-indicator-fill {
  background-color: var(--black);
  border-radius: 100px;
  width: 25%;
  height: 100%;
}

.vacations-tabs-wrapper-2 {
  width: 100%;
  position: relative;
}

.vacations-tabs-2 {
  z-index: 30;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.history-tab-link {
  color: #00000080;
  background-color: #fff0;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
  padding: 0 20px 40px;
  font-family: IBM Plex Mono, sans-serif;
  font-size: 14px;
  transition: all .45s cubic-bezier(.25, .46, .45, .94);
  display: flex;
  position: absolute;
  inset: auto 0% 0%;
}

.history-tab-link:hover {
  color: #000000b3;
}

.history-tab-link.w--current {
  color: var(--black);
  background-color: #fff0;
}

.tab-outline-circle {
  border: 1px solid var(--tab-gray);
  background-color: #fff;
  border-radius: 100%;
  display: flex;
  position: absolute;
  inset: 0%;
}

.vacations-tabs-content-2 {
  width: 100%;
  overflow: visible;
}

.events-indicator {
  background-color: var(--light-gray);
  border-radius: 100px;
  height: 2px;
  position: absolute;
  inset: 60px 0% auto;
  overflow: hidden;
}

.tab-circle {
  z-index: 20;
  justify-content: center;
  align-items: center;
  width: 42px;
  height: 42px;
  display: flex;
  position: absolute;
  inset: auto auto -21px;
}

.vacations-tab-menu-2 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  border-top: 1px #e6e6f3;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  height: 60px;
  margin-bottom: 72px;
  display: grid;
}

.history-video-banner {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: auto 0% 0%;
}

.video-history-banner {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  place-items: start stretch;
  height: auto;
  min-height: 700px;
  display: grid;
  position: relative;
  overflow: hidden;
}

.video-full-bg {
  z-index: 5;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.history-hero-intro {
  z-index: 15;
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  pointer-events: auto;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 200px 15px 0;
  display: flex;
  position: relative;
}

.dark-video-ov {
  z-index: 1;
  background-color: #0000008c;
  position: absolute;
  inset: 0%;
}

.timeline-content {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: .8fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.timeline-right {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: column;
  justify-content: center;
  align-items: stretch;
  padding-top: 40px;
  padding-bottom: 40px;
  display: flex;
}

.right-photo-height {
  height: 100%;
  min-height: 400px;
  position: relative;
  overflow: hidden;
}

.image-overlay {
  z-index: 2;
  background-color: #0000001a;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.history-dark-title {
  color: var(--black);
  font-size: 38px;
}

.dark-paragraph {
  color: var(--black);
}

.time-line-photo {
  background-image: url('../images/Banner-2_1Banner-2.webp');
  background-position: 50%;
  background-size: cover;
  width: 100%;
  height: 100%;
  position: relative;
}

.time-line-photo.photo-002 {
  background-image: url('../images/News-5_1News-5.webp');
}

.time-line-photo.photo-003 {
  background-image: url('../images/1_31.webp');
  background-position: 50% 20%;
}

.time-line-photo.photo-004 {
  background-image: url('../images/Photo-6-1_1Photo-6-1.webp');
}

.time-line-photo.photo-005 {
  background-image: url('../images/6_16.webp');
  background-position: 50% 35%;
}

.time-line-photo.photo-006 {
  background-image: url('../images/9_19.webp');
  background-position: 50% 20%;
}

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

.history-intro {
  z-index: 15;
  background-color: var(--white);
  flex-flow: column;
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
}

.team-detail-content {
  grid-column-gap: 180px;
  grid-row-gap: 12px;
  flex-direction: column;
  grid-template-rows: 1fr;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  place-items: center start;
  width: 100%;
  padding-top: 160px;
  padding-bottom: 60px;
  display: flex;
}

.team-detail-banner {
  margin-bottom: -350px;
}

.actors-detail-info {
  text-align: center;
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.actors-overlay {
  background-color: #00000040;
  position: absolute;
  inset: 0%;
}

.actor-photo-bg {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-size: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.section-team-details {
  border-top: 1px solid var(--white-10);
  background-color: var(--primary);
  border-bottom: 1px solid #ffffff26;
  justify-content: center;
  align-items: stretch;
  height: 500px;
  padding-top: 160px;
  padding-bottom: 160px;
  display: flex;
  position: relative;
}

.background-team-wrap {
  z-index: 1;
  justify-content: center;
  align-items: center;
  margin: 6px;
  display: flex;
  position: absolute;
  inset: 0%;
  overflow: hidden;
}

.actor-quote {
  color: var(--black);
  text-align: center;
  letter-spacing: -.05em;
  text-transform: none;
  width: 90%;
  font-family: IBM Plex Mono, sans-serif;
  font-size: 20px;
  font-style: italic;
}

.space-wrap-actor-events {
  padding-top: 80px;
  padding-left: 30px;
  padding-right: 30px;
}

.team-intro-paragraph {
  width: 64%;
  margin-top: 0;
  margin-bottom: 0;
}

.member-info-quote {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  padding-bottom: 12px;
  display: flex;
}

.height-photo-details {
  height: 350px;
  position: relative;
  inset: 0%;
  overflow: hidden;
}

.actor-details-title {
  width: 100%;
  margin-top: 40px;
  margin-bottom: 20px;
  font-size: 75px;
}

.top-paragraph-wdth {
  width: 55%;
}

.licensing-video {
  width: 100%;
  height: 320px;
}

.licensing-space {
  padding-left: 15px;
  padding-right: 15px;
}

.license-par {
  width: 100%;
}

.link-licensing {
  letter-spacing: -.03em;
  text-transform: none;
  font-family: IBM Plex Mono, sans-serif;
  line-height: 1.5em;
}

.licensing-font {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 50%;
  display: flex;
}

.top-license-par, .wdth-content {
  width: 80%;
}

.flex-space {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  flex-flow: column;
  display: flex;
}

.h2-guide-title {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.h2-guide-title.with-space {
  margin-bottom: 20px;
}

.list {
  list-style-type: disc;
}

.par-spacing {
  margin-top: 20px;
  margin-bottom: 15px;
}

.icon-span {
  font-size: 35px;
  line-height: 1em;
}

.icon-span.small {
  font-size: 25px;
}

.icon-span.extra-small {
  font-size: 13px;
}

.bold-span-par {
  color: var(--white);
  font-weight: 500;
}

.intro-photos {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 40px;
  display: grid;
}

.intro-photos.bottom-space {
  margin-bottom: 40px;
}

.guide-lighbox {
  border: 1px solid var(--white-10);
  border-radius: 3px;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.guide-lighbox:hover {
  color: var(--white);
}

.guide-lighbox.height-01 {
  height: 220px;
}

.guide-photo {
  object-fit: cover;
  object-position: 0% 0%;
  border-radius: 3px;
  width: 100%;
  height: 100%;
}

.guide-photo.photo-02 {
  object-position: 0% 55%;
}

.guide-ov {
  z-index: 2;
  background-color: #0003;
  border-radius: 3px;
  justify-content: flex-end;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  display: flex;
  position: absolute;
  inset: 0%;
}

.icon-ov {
  background-color: var(--black);
  border-radius: 0 0 0 3px;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  display: flex;
}

.eye-icon {
  font-family: "Fa solid 900", sans-serif;
}

.listing-title {
  margin-top: 20px;
  margin-bottom: 15px;
  font-family: Space Grotesk, sans-serif;
}

.code-span {
  background-color: var(--white-10);
  color: var(--white);
  border-radius: 6px;
  justify-content: center;
  align-items: center;
  margin-top: 2px;
  margin-bottom: 2px;
  padding: 2px 8px;
  font-weight: 500;
  display: inline-flex;
}

.animation-intro-guide {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  flex-flow: column;
  display: flex;
}

.lightbox-intro {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: column;
  display: flex;
}

.main-content {
  width: 100%;
}

.landing-hero-title {
  width: 100%;
  font-size: 65px;
}

.lp-subtitle {
  letter-spacing: .15em;
}

.top-landing-title {
  z-index: 15;
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  text-align: center;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 80px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 30px;
  padding-right: 30px;
  display: flex;
  position: relative;
}

.banner-photo {
  width: 100%;
}

.cta-landing-title {
  font-size: 65px;
}

.cta-flex-wrap {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  text-align: center;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
}

.landing-grid {
  grid-column-gap: 30px;
  grid-row-gap: 60px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  padding-left: 15px;
  padding-right: 15px;
  display: grid;
}

@media screen and (min-width: 1280px) {
  h1 {
    font-size: 100px;
  }

  h2 {
    font-size: 60px;
  }

  .section {
    padding-top: 130px;
    padding-bottom: 130px;
  }

  .section.upcominh-events {
    margin-bottom: 130px;
    padding-top: 130px;
  }

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

  .base-container.medium.no-paddings-team {
    padding-left: 15px;
    padding-right: 15px;
  }

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

  .headings-typography-wrapper {
    width: 48%;
  }

  .licensing-fonts-wrapper {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
  }

  .licensing-paragraph {
    width: 45%;
  }

  .utility-page-content {
    width: 450px;
  }

  .section-title-wrapper {
    width: 60%;
  }

  .without-top-spacing {
    padding-top: 0;
  }

  .search-result-wrapper {
    margin-top: 60px;
  }

  .testimonials {
    padding-top: 130px;
    padding-bottom: 130px;
  }

  .blog-section-title {
    margin-bottom: 70px;
  }

  .map-wrapper {
    padding-right: 70px;
  }

  .section-title-center {
    margin-bottom: 70px;
  }

  .about-img._3 {
    width: 340px;
  }

  .about-img._4 {
    width: 280px;
  }

  .about-img._2 {
    width: 340px;
  }

  .industries-block-wrapper {
    position: relative;
  }

  .section-with-blue-bg {
    padding-left: 40px;
    padding-right: 40px;
  }

  .center-title {
    padding-right: 140px;
  }

  .style-guide-tab-content-wrapper {
    padding-left: 0;
    padding-right: 0;
  }

  .main-style-guide-body-wrapper {
    margin-right: 60px;
  }

  .landing-banner-screens {
    margin-bottom: -80px;
  }

  .landing-inner-page-item.home-screen {
    max-width: none;
  }

  .landing-paragraph-style {
    font-size: 16px;
  }

  .section-landing-customers {
    padding-top: 100px;
  }

  .landing-customers-content-left {
    padding-right: 100px;
  }

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

  .section-banner.landing-banner {
    background-image: none;
    padding-top: 160px;
  }

  .style-guide-body-wrap {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
  }

  .banner-title-wrap {
    width: 90%;
    padding-left: 0;
    padding-right: 0;
  }

  .gradient-banner-bottom {
    top: -350px;
  }

  .gradient-banner-bottom.footer-small {
    top: -300px;
  }

  .border-wrap-4 {
    grid-column-gap: 50px;
    grid-row-gap: 50px;
  }

  .burger-nav {
    min-width: 160px;
  }

  .btn-title-text.large-text {
    font-size: 18px;
  }

  .nav-dropdown-list-item-2.w--open {
    left: auto;
  }

  .nav-dropdown-list-item-2.megamenu.w--open {
    left: -279px;
  }

  .full-nav-hero-container {
    padding-left: 15px;
    padding-right: 15px;
  }

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

  .full-portfolio-spacing-con {
    padding-left: 60px;
    padding-right: 60px;
  }

  .masonry-project-grid-bottom {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
  }

  .masonry-project-grid-bottom.small-gap {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }

  .masonry-project-grid-bottom.news-gap {
    grid-column-gap: 50px;
    grid-row-gap: 140px;
  }

  .masonry-project-wrapper {
    grid-column-gap: 100px;
    grid-row-gap: 100px;
  }

  .project-card {
    min-height: 350px;
  }

  .masonry-info-top {
    grid-template-columns: 100px auto 100px;
  }

  .top-title-space {
    margin-bottom: 80px;
  }

  .top-par-wdth {
    width: 45%;
  }

  .three-grid.wiht-gap {
    grid-template-columns: 0 1fr 1fr 1fr 0;
  }

  .three-grid.banner-02, .three-grid.banner-event-02 {
    grid-template-columns: 15px 1fr 1fr 1fr 15px;
    width: auto;
    margin-left: -30px;
    margin-right: -30px;
  }

  .large-btn-wrapper {
    padding-right: 0;
  }

  .button-banner-wrap {
    grid-column-gap: 3px;
    grid-row-gap: 3px;
  }

  .benefit-title {
    font-size: 135px;
  }

  .initial-text {
    padding-left: 15px;
    padding-right: 15px;
  }

  .video-section {
    min-height: 800px;
  }

  .video-section.get-tickets-banner {
    min-height: 730px;
  }

  .video-intro-content {
    padding-bottom: 230px;
  }

  .main-footer {
    padding-top: 130px;
  }

  .property-item-category {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .grid-category-item {
    padding-left: 0;
    padding-right: 0;
  }

  .image-04-size {
    width: 160px;
    height: 180px;
    bottom: 11px;
  }

  .small-banner-title {
    font-size: 32px;
  }

  .hero-banner-description {
    width: 75%;
  }

  .full-container.footer-con {
    margin-bottom: -70px;
  }

  .banner-001 {
    grid-column-gap: 130px;
    grid-row-gap: 130px;
  }

  .image-06-size {
    top: -104px;
    left: 171px;
  }

  .image-01-size {
    width: 160px;
    height: 180px;
    top: -41px;
  }

  .image-05-size {
    width: 150px;
    height: 110px;
    bottom: 51px;
    right: -73px;
  }

  .image-03-size {
    width: 160px;
    height: 110px;
    left: -76px;
  }

  .large-video-bg {
    padding: 40px;
  }

  .image-02-size {
    width: 200px;
    height: 150px;
    top: -140px;
  }

  .vert-print-01 {
    width: 27.5px;
  }

  .hero-flex-con {
    margin-top: -100px;
  }

  .vert-print-02 {
    width: 27.5px;
    min-height: 100%;
    max-height: 100%;
  }

  .upcoming-event-wrap {
    grid-column-gap: 100px;
    grid-row-gap: 100px;
    grid-template-columns: 1fr 1fr;
    padding-left: 0;
  }

  .image-07-size {
    left: -76px;
  }

  .image-08-size {
    width: 140px;
    height: 100px;
    right: -73px;
  }

  .rights-con {
    padding-top: 40px;
    padding-bottom: 40px;
  }

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

  .performances-streamed {
    font-size: 77px;
  }

  .counter-description {
    font-size: 16px;
  }

  .height-video-bg {
    height: 88%;
  }

  .message-form {
    width: 80%;
  }

  .right-intro-flex {
    padding-right: 0;
  }

  .grid-column {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .footer-cta {
    font-size: 45px;
  }

  .link-text.very-small-size {
    font-size: 16px;
  }

  .space-par-wrap {
    width: 73%;
  }

  .event-category-card {
    min-height: 350px;
  }

  .text-rental-link {
    font-size: 60px;
  }

  .scramble-word {
    font-size: 23rem;
  }

  .rental-price {
    font-size: 77px;
  }

  .button-main-wrapper {
    grid-column-gap: 3px;
    grid-row-gap: 3px;
  }

  .inner-small-banner {
    min-height: 400px;
  }

  .inner-banner-title.event-category {
    font-size: 140px;
  }

  .title {
    font-size: 100px;
  }

  .our-story-grig {
    grid-template-columns: .8fr 1fr;
    padding: 60px 45px 60px 60px;
  }

  .right-grid-content {
    max-width: 440px;
    padding: 24px;
  }

  .story-top {
    grid-template-columns: 1fr .7fr;
  }

  .event-banner-title {
    font-size: 10.5rem;
  }

  .long-description {
    font-size: 50px;
  }

  .top-description {
    width: 50%;
  }

  .section-2 {
    padding-top: 130px;
    padding-bottom: 130px;
  }

  .full-grid {
    grid-row-gap: 70px;
  }

  .large-text-content {
    grid-column-gap: 130px;
    grid-row-gap: 130px;
    margin-left: 0;
  }

  .intro-image {
    width: 18rem;
    height: 15rem;
  }

  .centered-title-wrap {
    width: 100%;
  }

  .top-project-info-fill {
    padding-top: 200px;
    padding-bottom: 100px;
  }

  .left-intro-project {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
    grid-template-columns: 1.3fr 1fr;
  }

  .expert-item.project-intro-item {
    padding: 60px 40px;
  }

  .numerical-advantage {
    font-size: 84px;
  }

  .service-image-wrap {
    min-height: 320px;
  }

  .service-title {
    font-size: 42px;
  }

  .service-title.small-event-title {
    font-size: 38px;
  }

  .item-intro-space {
    grid-column-gap: 100px;
    grid-row-gap: 100px;
    padding-right: 30px;
  }

  .hide {
    display: none;
  }

  .event-par-details {
    width: 70%;
  }

  .section-scroll-images {
    padding-top: 50px;
    padding-bottom: 20px;
  }

  .section-scroll-images.margin-top {
    padding-top: 150px;
  }

  .subscribe-description.wdth-contact {
    width: 95%;
  }

  .contact-fields {
    grid-row-gap: 32px;
  }

  .large-event-title {
    font-size: 68px;
  }

  .top-intro-column {
    padding-left: 0;
    padding-right: 0;
  }

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

  .sticky-section {
    padding-top: 130px;
    padding-bottom: 130px;
  }

  .member-name {
    font-size: 22px;
  }

  .height-photo-container {
    height: 400px;
  }

  .height-photo-container.small-card {
    height: 260px;
  }

  .actors-card.details {
    max-width: 420px;
  }

  .left-text-content {
    padding-left: 0;
  }

  .right-text-conteny {
    padding-left: 60px;
  }

  .video-intro-height {
    width: 60%;
  }

  .history-description {
    font-size: 50px;
  }

  .gradient-banner-top {
    top: -120px;
  }

  .blog-long-title {
    font-size: 35px;
  }

  .blog-hero-image {
    height: 380px;
  }

  .blog-subtitle {
    padding-left: 0;
  }

  .blog-title {
    font-size: 68px;
  }

  .parallax-image-02 {
    width: 180px;
    height: 130px;
    top: -40px;
  }

  .lagre-title {
    font-size: 9.65rem;
  }

  .project-info {
    width: 53%;
  }

  .parallax-image-03 {
    width: 200px;
    height: 220px;
    top: -140px;
    left: -25px;
  }

  .parallax-image-01 {
    width: 200px;
    height: 150px;
    top: -70px;
  }

  .social-intro-link {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }

  .news-main-con {
    padding-left: 0;
    padding-right: 0;
  }

  .error-state-black {
    width: 90%;
  }

  .project-left-info {
    padding: 80px;
  }

  .home-about {
    padding-top: 130px;
  }

  .about-intro-text {
    width: 75%;
  }

  .about-intro-text.rental-par {
    width: 65%;
  }

  .photo-section {
    min-height: 700px;
    padding-top: 130px;
    padding-bottom: 130px;
  }

  .about-image.rental-img-01 {
    margin-top: 90px;
  }

  .star-medium {
    width: 55px;
  }

  .smal-h2-title {
    font-size: 65px;
  }

  .heading-strip {
    font-size: 7rem;
  }

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

  .banner-title-wdth {
    width: 80%;
  }

  .hero-top-outline {
    min-height: 700px;
  }

  .banner-02-title {
    font-size: 110px;
  }

  .hero-gallery-item.three, .hero-gallery-item.three-event {
    top: -30px;
  }

  .gradient-top-banner {
    top: -100px;
  }

  .gradient-top-banner.review {
    top: -1120px;
  }

  .gradient-top-banner.news {
    top: -30px;
  }

  .gradient-top-banner.landing {
    top: -460px;
  }

  .large-grad-png.news {
    top: 60px;
  }

  .banner-03-subtitle {
    font-size: 16px;
  }

  .small-container-wdth {
    margin-top: -100px;
  }

  .article-title-wrap {
    padding-left: 30px;
    padding-right: 24px;
  }

  .number-size-large {
    font-size: 24px;
  }

  .small-intro-space {
    padding-left: 80px;
  }

  .small-news-img {
    min-height: 200px;
  }

  .vert-print-04 {
    min-height: 100%;
    max-height: 100%;
  }

  .intro-article {
    padding-left: 60px;
    padding-right: 45px;
  }

  .top-article-subtitle {
    padding-left: 80px;
  }

  .blog-intro-top {
    padding-bottom: 60px;
  }

  .banner-link {
    width: 38%;
  }

  .banner-link.small-width {
    width: 32%;
  }

  .banner-link.medium-width {
    width: 40%;
  }

  .search-section {
    padding-left: 10px;
    padding-right: 10px;
  }

  .search-result-list {
    grid-column-gap: 80px;
    grid-template-columns: 1fr 1fr;
  }

  ._404-content-wrapper-2 {
    max-width: 750px;
  }

  .loop-container {
    grid-column-gap: 80px;
  }

  .coming-soon-container {
    max-width: 1230px;
    padding-left: 50px;
  }

  .coming-soon-title {
    width: 100%;
    font-size: 52px;
  }

  .coming-soon-text {
    width: 85%;
  }

  .hero-form-coming-soon-2 {
    width: 98%;
  }

  .about-info-width {
    width: 68%;
  }

  .spin-about.news {
    margin-left: 20px;
  }

  .about-us-hero-banner {
    flex-flow: column;
    justify-content: space-between;
  }

  .about-info-banner {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
    padding-left: 0;
    padding-right: 0;
  }

  .heading-strip-large {
    font-size: 10rem;
  }

  .large-intro-benefits {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
  }

  .large-advantages-item {
    justify-content: center;
    align-items: center;
  }

  .advantages-title.large-title-benefit {
    font-size: 75px;
  }

  .content-spacing {
    padding: 150px 40px 130px;
  }

  .par-answer-faq-dark {
    max-width: 950px;
    font-size: 18px;
  }

  .faq-hero-title {
    font-size: 55px;
  }

  .faq-text {
    font-size: 20px;
  }

  .faq-answer {
    padding-right: 70px;
  }

  .faq-toggle {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .large-about-photo {
    min-height: 700px;
    padding-top: 130px;
  }

  .star-large {
    width: 100px;
  }

  .serv-photo-wrap {
    min-height: 800px;
  }

  .project-info-wrap {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .all-events {
    padding-bottom: 130px;
  }

  .section-details {
    padding-top: 130px;
    padding-bottom: 130px;
  }

  .section-details.event-details {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    padding-top: 50px;
    display: grid;
  }

  .content-details {
    grid-column-gap: 100px;
    grid-template-columns: 1fr .8fr;
  }

  .performances-title {
    font-size: 77px;
  }

  .event-02-banner {
    min-height: 540px;
  }

  .event-banner-title-large {
    font-size: 13rem;
  }

  .event-par-wdth {
    width: 45%;
  }

  .event-form {
    padding: 24px;
  }

  .intro-banner {
    min-height: 680px;
  }

  .fashionistas-photo-wrap {
    width: 60px;
    height: 60px;
  }

  .stories-item {
    padding: 30px 20px;
  }

  .review-wrap {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }

  .customer-info {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .section-blog-details {
    height: 650px;
  }

  .blog-content {
    padding-top: 180px;
  }

  .service-details-title {
    margin-top: 60px;
    font-size: 90px;
  }

  .news-paragraph {
    width: 66%;
  }

  .scroll-blog-link {
    right: 0;
  }

  .section-portfolio-details {
    padding-top: 100px;
    padding-bottom: 130px;
  }

  .blog-template-wrap.banner {
    padding-left: 0;
  }

  .contact-info-details {
    width: 600px;
  }

  .video-item-height {
    min-height: 300px;
  }

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

  .contact-full-fields {
    grid-row-gap: 32px;
  }

  .error-center-state {
    width: 90%;
  }

  .contact-title-details {
    font-size: 36px;
  }

  .hero-rental-title {
    font-size: 32px;
  }

  .rental-intro-top {
    padding-bottom: 40px;
  }

  .home-rental {
    padding-top: 100px;
  }

  .blog-banner-title-large {
    font-size: 12rem;
  }

  .blog-01-banner {
    min-height: 540px;
  }

  .all-news-list {
    padding-top: 80px;
  }

  .news-clip-title {
    width: 122%;
  }

  .hero-news-item {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .news-hero-banner {
    flex-flow: column;
    justify-content: space-between;
    padding-top: 220px;
  }

  .small-blog-title {
    font-size: 34px;
  }

  .banner-blog-link {
    height: 60px;
    margin-top: -60px;
  }

  .blog-title-03 {
    font-size: 106px;
  }

  .news-03-banner {
    padding-top: 180px;
  }

  .masonry-title-news {
    font-size: 24px;
  }

  .blog-wdth-title {
    width: 90%;
  }

  .blog-card {
    min-height: 350px;
  }

  .category-banner-title {
    font-size: 13.4rem;
  }

  .blog-category-banner {
    min-height: 540px;
  }

  .space-tickets-wrapper {
    width: 38%;
  }

  .history-hero-intro {
    padding-top: 160px;
    padding-bottom: 200px;
  }

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

  .history-dark-title {
    font-size: 47px;
  }

  .team-detail-content {
    padding-bottom: 80px;
  }

  .team-detail-banner {
    margin-bottom: -400px;
  }

  .section-team-details {
    height: 650px;
  }

  .actor-quote {
    width: 85%;
  }

  .space-wrap-actor-events {
    padding-top: 130px;
  }

  .team-intro-paragraph {
    width: 54%;
  }

  .height-photo-details {
    height: 400px;
  }

  .actor-details-title {
    margin-top: 60px;
    font-size: 90px;
  }

  .top-paragraph-wdth {
    width: 45%;
  }

  .top-license-par {
    width: 67%;
  }

  .wdth-content {
    width: 70%;
  }

  .wdth-content.small-wdth {
    width: 67%;
  }

  .guide-lighbox.height-01 {
    height: 240px;
  }

  .landing-hero-title {
    width: 96%;
    font-size: 80px;
  }

  .top-landing-title {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    margin-bottom: 100px;
  }

  .cta-landing-title {
    font-size: 70px;
  }

  .cta-flex-wrap {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
  }
}

@media screen and (min-width: 1440px) {
  blockquote {
    padding: 50px 60px;
  }

  .base-container {
    max-width: 1360px;
  }

  .base-container.medium.no-paddings-team {
    padding-left: 15px;
    padding-right: 15px;
  }

  .licensing-fonts-wrapper {
    grid-column-gap: 80px;
    grid-row-gap: 80px;
  }

  .utility-page-content {
    width: 400px;
  }

  .section-title-wrapper {
    width: 50%;
  }

  .about-img._1 {
    width: 380px;
  }

  .about-img._3 {
    width: 400px;
  }

  .about-img._4 {
    width: 300px;
  }

  .about-img._2 {
    width: 390px;
  }

  .our-services-wrap {
    align-items: center;
  }

  .section-with-blue-bg {
    padding-left: 100px;
    padding-right: 100px;
  }

  .landing-section-heading-white {
    font-size: 55px;
  }

  .paragraph-benefits-lp {
    width: 80%;
  }

  .section-banner.landing-banner {
    background-image: none;
  }

  .banner-title-wrap {
    width: 80%;
  }

  .fixed-grid {
    max-width: 1400px;
  }

  .gradient-banner-bottom.footer-small {
    top: -400px;
  }

  .border-wrap-4 {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
  }

  .nav-dropdown-list-item-2.megamenu.w--open {
    left: -199px;
  }

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

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

  .full-portfolio-spacing-con {
    padding-left: 80px;
    padding-right: 80px;
  }

  .collection-masonry-item:nth-child(odd) {
    margin-bottom: -100px;
  }

  .collection-masonry-item:nth-child(2n) {
    margin-top: 100px;
    margin-bottom: -100px;
  }

  .masonry-project-grid-bottom {
    grid-column-gap: 120px;
    grid-row-gap: 120px;
  }

  .masonry-project-grid-bottom.small-gap {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
  }

  .masonry-project-grid-bottom.news-gap {
    grid-row-gap: 160px;
  }

  .row-masonry-top, .row-masonry {
    margin-top: -100px;
  }

  .top-par-wdth {
    width: 40%;
  }

  .three-grid.wdth, .three-grid.banner-02, .three-grid.banner-event-02 {
    max-width: 1400px;
  }

  .btn-large, .ticket-png {
    height: 120px;
  }

  .benefit-title {
    font-size: 145px;
  }

  .initial-text {
    width: 90%;
  }

  .horizontal-print {
    height: 17px;
  }

  .video-section {
    min-height: 850px;
  }

  .video-bg {
    margin-top: 60px;
  }

  .large-container {
    max-width: 1400px;
  }

  .image-04-size {
    width: 180px;
    height: 200px;
    bottom: 17px;
  }

  .small-banner-title {
    font-size: 37px;
  }

  .hero-banner-description {
    width: 65%;
  }

  .full-container.footer-con {
    margin-bottom: -75px;
  }

  .image-06-size {
    width: 220px;
    height: 150px;
    top: -137px;
    left: 48px;
  }

  .image-01-size {
    top: -66px;
    left: 90px;
  }

  .image-05-size {
    bottom: 76px;
    right: -69px;
  }

  .image-03-size {
    width: 140px;
    height: 90px;
    top: 98px;
    left: -105px;
  }

  .image-02-size {
    top: -166px;
  }

  .three-col-grid {
    max-width: 1400px;
  }

  .image-07-size {
    left: -105px;
  }

  .image-08-size {
    right: -69px;
  }

  .performances-streamed {
    font-size: 85px;
  }

  .height-video-bg {
    height: 100%;
  }

  .footer-cta {
    font-size: 52px;
  }

  .space-par-wrap {
    width: 80%;
  }

  .text-rental-link {
    font-size: 70px;
  }

  .scramble-word {
    font-size: 25.5rem;
  }

  .rental-price {
    font-size: 85px;
  }

  .rental-title-text {
    font-size: 70px;
  }

  .inner-small-banner {
    min-height: 420px;
  }

  .inner-banner-title.event-category {
    font-size: 160px;
  }

  .our-story-grig {
    grid-template-columns: .9fr 1fr;
  }

  .large-1800-base-container {
    max-width: 1360px;
  }

  .event-banner-title {
    font-size: 12rem;
  }

  .long-description {
    width: 90%;
  }

  .top-description {
    width: 46%;
  }

  .large-text-content {
    width: 76%;
  }

  .intro-image {
    width: 20rem;
    height: 16rem;
  }

  .centered-title-wrap {
    width: 93%;
  }

  .numerical-advantage {
    font-size: 90px;
  }

  .service-image-wrap {
    min-height: 380px;
  }

  .service-title {
    font-size: 46px;
  }

  .service-title.small-event-title {
    font-size: 44px;
  }

  .item-intro-space {
    padding-right: 50px;
  }

  .five-project-grid {
    max-width: 1400px;
  }

  .event-par-details {
    width: 60%;
  }

  .horizontal-print-03.print-contact {
    height: 22px;
  }

  .subscribe-description.wdth-contact {
    width: 85%;
  }

  .large-event-title {
    font-size: 72px;
  }

  .slide-heading.xl {
    font-size: 10.5rem;
  }

  .height-photo-container {
    height: 450px;
  }

  .height-photo-container.small-card {
    height: 300px;
  }

  .actors-card.details {
    max-width: 460px;
  }

  .right-text-conteny {
    padding-left: 100px;
  }

  .video-intro-height {
    width: 55%;
  }

  .blog-long-title {
    width: 74%;
    font-size: 38px;
  }

  .blog-hero-image {
    height: 420px;
  }

  .news-card {
    padding-bottom: 18px;
  }

  .blog-title {
    font-size: 72px;
  }

  .blog-intro-left {
    width: 80%;
  }

  .parallax-image-02 {
    width: 180px;
    height: 130px;
    top: -30px;
  }

  .lagre-title {
    font-size: 11.01rem;
  }

  .project-info {
    width: 50%;
  }

  .parallax-image-03 {
    width: 200px;
    height: 230px;
    top: -130px;
  }

  .parallax-image-01 {
    width: 240px;
    height: 180px;
    top: -50px;
    left: -44px;
  }

  .horizontal-print-04 {
    height: 20px;
  }

  .about-intro-text {
    width: 70%;
  }

  .about-intro-text.rental-par {
    width: 62%;
  }

  .studio-intro.large, .studio-intro.rental-info {
    grid-template-columns: 1fr minmax(auto, 6fr) 1fr;
  }

  .photo-section {
    min-height: 750px;
  }

  .about-image {
    margin-left: -6rem;
    margin-right: -6rem;
  }

  .banner-title-wdth {
    width: 75%;
  }

  .banner-02-title {
    font-size: 120px;
  }

  .hero-gallery-item.three, .hero-gallery-item.three-event {
    top: 0;
  }

  .gradient-top-banner.review {
    top: -1200px;
  }

  .gradient-top-banner.news {
    top: 0;
  }

  .gradient-top-banner.landing {
    top: -497px;
  }

  .large-grad-png.news {
    top: 100px;
  }

  .article-title-wrap {
    padding-left: 60px;
    padding-right: 60px;
  }

  .small-intro-space {
    padding-left: 100px;
  }

  .full-grid-container {
    max-width: 1400px;
  }

  .intro-article {
    padding-left: 80px;
    padding-right: 65px;
  }

  .top-article-subtitle {
    padding-left: 100px;
  }

  .banner-link.medium-width {
    width: 38%;
  }

  .search-section {
    padding-left: 0;
    padding-right: 0;
  }

  .error-404-text {
    font-size: 45px;
  }

  ._404-title {
    font-size: 140px;
  }

  .coming-soon-container {
    max-width: 1400px;
    padding-left: 60px;
  }

  .coming-soon-title {
    font-size: 60px;
  }

  .coming-soon-text {
    width: 75%;
  }

  .hero-form-coming-soon-2 {
    width: 98%;
  }

  .about-info-width {
    width: 58%;
  }

  .advantages-title.large-title-benefit {
    font-size: 85px;
  }

  .content-spacing {
    padding-left: 60px;
    padding-right: 60px;
  }

  .par-answer-faq-dark {
    max-width: 1050px;
  }

  .faq-hero-title {
    font-size: 65px;
  }

  .faq-answer {
    padding-right: 75px;
  }

  .large-about-photo {
    min-height: 750px;
  }

  .grid-group-wrapper {
    grid-template-columns: 30px minmax(auto, 1370px) 30px;
    justify-content: center;
    max-width: 1400px;
  }

  .content-details {
    grid-template-columns: 1fr .6fr;
  }

  .performances-title {
    font-size: 85px;
  }

  .event-02-banner {
    min-height: 560px;
  }

  .event-banner-title-large {
    font-size: 14.5rem;
  }

  .event-par-wdth {
    width: 40%;
  }

  .hero-feedback {
    font-size: 18px;
  }

  .fashionistas-photo-wrap {
    width: 75px;
    height: 75px;
  }

  .stories-item {
    padding-left: 30px;
    padding-right: 30px;
  }

  .service-details-title {
    font-size: 100px;
  }

  .news-paragraph {
    width: 75%;
  }

  .contact-form {
    padding-bottom: 21px;
  }

  .contact-info-details {
    width: 650px;
  }

  .video-item-height {
    min-height: 320px;
  }

  .contact-title-details {
    font-size: 40px;
  }

  .blog-banner-title-large {
    font-size: 13rem;
  }

  .blog-01-banner {
    min-height: 560px;
  }

  .news-clip-title {
    width: 120%;
  }

  .news-hero-banner {
    padding-top: 240px;
  }

  .small-blog-title {
    font-size: 38px;
  }

  .banner-blog-link {
    height: 80px;
    margin-top: -80px;
  }

  .masonry-title-news {
    font-size: 26px;
  }

  .blog-wdth-title {
    width: 85%;
  }

  .row-masonry-news {
    margin-top: -100px;
  }

  .category-banner-title {
    font-size: 15.3rem;
  }

  .blog-category-banner {
    min-height: 560px;
  }

  .height-video-banner {
    height: 100%;
  }

  .video-history-banner {
    min-height: 740px;
  }

  .timeline-right {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .history-dark-title {
    font-size: 55px;
  }

  .dual-grid-con {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .team-detail-banner {
    margin-bottom: -435px;
  }

  .actor-quote {
    width: 80%;
  }

  .space-wrap-actor-events {
    padding-bottom: 22px;
  }

  .team-intro-paragraph {
    width: 53%;
  }

  .height-photo-details {
    height: 450px;
  }

  .actor-details-title {
    font-size: 100px;
  }

  .top-paragraph-wdth {
    width: 40%;
  }

  .license-par {
    width: 88%;
  }

  .top-license-par {
    width: 58%;
  }

  .wdth-content, .wdth-content.small-wdth {
    width: 60%;
  }

  .landing-hero-title {
    width: 95%;
    font-size: 90px;
  }

  .cta-flex-wrap {
    width: 80%;
  }
}

@media screen and (min-width: 1920px) {
  .base-container.medium {
    max-width: 1600px;
  }

  .section-title-wrapper {
    width: 40%;
  }

  .about-img._1 {
    width: 420px;
    left: 16%;
  }

  .about-img._3 {
    width: 430px;
    top: 20%;
    left: 54%;
  }

  .about-img._4 {
    left: 48%;
  }

  .section-with-blue-bg {
    padding-left: 180px;
    padding-right: 180px;
  }

  .landing-banner-screens {
    margin-bottom: -100px;
  }

  .section-landing-customers {
    padding-top: 130px;
  }

  .landing-customers-content-right {
    grid-row-gap: 50px;
  }

  .section-banner {
    padding-top: 130px;
    padding-bottom: 130px;
  }

  .section-banner.landing-banner {
    background-image: none;
    padding-top: 200px;
  }

  .banner-01 {
    min-height: 900px;
  }

  .photo-banner {
    height: 140%;
  }

  .banner-title-wrap {
    width: 90%;
  }

  .fixed-grid {
    max-width: 1630px;
  }

  .gradient-banner-bottom {
    top: -450px;
  }

  .gradient-banner-bottom.footer-small {
    top: -470px;
  }

  .border-wrap-4 {
    grid-column-gap: 80px;
    grid-row-gap: 80px;
  }

  .nav-dropdown-list-item-2.megamenu.w--open {
    left: auto;
  }

  .full-large-con {
    padding-left: 60px;
    padding-right: 60px;
  }

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

  .full-portfolio-spacing-con {
    padding-left: 140px;
    padding-right: 140px;
  }

  .masonry-project-grid-bottom {
    grid-column-gap: 130px;
    grid-row-gap: 130px;
    grid-template-columns: 1fr 1.35fr 1fr;
  }

  .masonry-project-wrapper {
    grid-column-gap: 130px;
    grid-row-gap: 130px;
  }

  .project-card {
    min-height: 450px;
  }

  .three-grid.wdth, .three-grid.banner-02, .three-grid.banner-event-02 {
    max-width: 1630px;
  }

  .btn-large, .ticket-png {
    height: 140px;
  }

  .initial-text {
    width: 100%;
  }

  .horizontal-print {
    height: 20px;
  }

  .video-section {
    min-height: 900px;
  }

  .space-wrapper {
    width: 90%;
  }

  .left-title-text {
    font-size: 84px;
  }

  .large-container {
    max-width: 1630px;
  }

  .image-04-size {
    width: 220px;
    height: 260px;
    bottom: 24px;
    right: 270px;
  }

  .small-banner-title {
    width: 100%;
    font-size: 40px;
  }

  .small-banner-title.news-title, .small-banner-title.rental-info {
    width: 110%;
  }

  .full-container.footer-con {
    margin-bottom: -90px;
  }

  .banner-top-part {
    min-height: 900px;
  }

  .image-06-size {
    width: 260px;
    height: 190px;
    top: -178px;
    left: 185px;
  }

  .image-01-size {
    width: 210px;
    height: 240px;
    top: -80px;
    left: 140px;
  }

  .image-05-size {
    width: 180px;
    height: 130px;
    bottom: 117px;
    right: 88px;
  }

  .image-03-size {
    width: 190px;
    height: 140px;
    top: 135px;
    left: -85px;
  }

  .image-02-size {
    width: 260px;
    height: 190px;
    top: -215px;
    left: -90px;
  }

  .three-col-grid {
    max-width: 1630px;
  }

  .image-07-size {
    width: 220px;
    height: 160px;
    top: 135px;
    left: -85px;
  }

  .image-08-size {
    width: 180px;
    height: 130px;
    bottom: -109px;
    right: 172px;
  }

  .performances-streamed {
    font-size: 104px;
  }

  .message-form {
    width: 85%;
  }

  .footer-cta {
    font-size: 55px;
  }

  .space-par-wrap {
    width: 74%;
  }

  .event-category-card {
    min-height: 450px;
  }

  .rental-description {
    font-size: 18px;
  }

  .text-rental-link {
    font-size: 84px;
  }

  .large-about-text {
    font-size: 70px;
  }

  .scramble-word {
    font-size: 34rem;
  }

  .rental-price {
    font-size: 104px;
  }

  .rental-title-text {
    font-size: 84px;
  }

  .inner-small-banner {
    min-height: 450px;
  }

  .title {
    font-size: 130px;
  }

  .banner-02-content {
    min-height: 920px;
  }

  .our-story-grig {
    grid-template-columns: 1fr 1fr;
    padding: 80px 65px 80px 80px;
  }

  .right-grid-content {
    max-width: 500px;
  }

  .story-content {
    grid-column-gap: 140px;
    grid-row-gap: 140px;
  }

  .spin-intro {
    max-width: 100%;
  }

  .large-1800-base-container {
    max-width: 1800px;
  }

  .event-banner-title {
    font-size: 14rem;
  }

  .top-description {
    width: 39%;
  }

  .intro-image {
    width: 22rem;
    height: 17rem;
  }

  .intro-image.intro-img-3 {
    left: 60px;
  }

  .intro-image.intro-img-1 {
    right: 75px;
  }

  .centered-title-wrap {
    width: 90%;
  }

  .left-intro-project {
    grid-column-gap: 100px;
    grid-row-gap: 100px;
    grid-template-columns: 1fr .6fr;
  }

  .team-photo-item {
    padding-bottom: 20px;
  }

  .expert-item.project-intro-item {
    padding: 80px 60px;
  }

  .service-image-wrap {
    min-height: 470px;
  }

  .project-grid-item {
    grid-template-columns: 2fr .5fr;
  }

  .item-intro-space {
    padding-right: 70px;
  }

  .five-project-grid {
    max-width: 1630px;
  }

  .five-project-grid.landing {
    max-width: 1830px;
  }

  .event-par-details {
    width: 55%;
  }

  .horizontal-print-03 {
    height: 22px;
  }

  .subscribe-title {
    font-size: 42px;
  }

  .large-event-title {
    font-size: 82px;
  }

  .slide-heading.xl {
    font-size: 11rem;
  }

  .height-photo-container.small-card {
    height: 320px;
  }

  .right-text-conteny {
    padding-left: 140px;
  }

  .bold-subtitle {
    width: 90%;
  }

  .video-intro-height {
    width: 50%;
  }

  .gradient-banner-top {
    top: -130px;
  }

  .blog-long-title {
    font-size: 44px;
  }

  .bg-blog-link {
    justify-content: flex-end;
    align-items: flex-start;
    padding: 15px;
  }

  .blog-hero-image {
    height: 450px;
  }

  .news-card {
    padding-bottom: 24px;
  }

  .blog-title {
    font-size: 84px;
  }

  .lagre-title {
    font-size: 12.88rem;
  }

  .project-info {
    width: 36%;
  }

  .parallax-image-03 {
    width: 220px;
    height: 250px;
    left: 0;
  }

  .horizontal-print-04 {
    height: 26px;
  }

  .about-intro-text.rental-par {
    width: 64%;
  }

  .studio-intro.large, .studio-intro.rental-info {
    grid-template-columns: 1fr minmax(auto, 3fr) 1fr;
  }

  .photo-section {
    min-height: 950px;
  }

  .about-image {
    margin-left: -20rem;
    margin-right: -20rem;
  }

  .home-about-intro.intro-rental {
    width: 100%;
  }

  .smal-h2-title {
    font-size: 70px;
  }

  .heading-strip {
    font-size: 9rem;
  }

  .banner-title-wdth {
    width: 70%;
  }

  .hero-top-outline {
    min-height: 780px;
  }

  .banner-02-title {
    font-size: 140px;
  }

  .gradient-top-banner {
    top: 0;
  }

  .gradient-top-banner.licensing {
    top: -1220px;
  }

  .gradient-top-banner.landing {
    top: -642px;
  }

  .large-grad-png {
    margin-bottom: -35px;
  }

  .large-grad-png.news {
    top: 200px;
  }

  .article-title-wrap {
    padding-left: 100px;
    padding-right: 100px;
  }

  .small-intro-space {
    padding-left: 140px;
  }

  .small-news-img {
    min-height: 220px;
  }

  .full-grid-container {
    max-width: 1630px;
  }

  .intro-article {
    padding-left: 100px;
    padding-right: 85px;
  }

  .top-article-subtitle {
    padding-left: 140px;
  }

  .banner-link.small-width {
    width: 28%;
  }

  .banner-link.medium-width {
    width: 34%;
  }

  .search-section {
    padding-top: 200px;
  }

  .search-title {
    font-size: 110px;
  }

  .search-result-list {
    grid-column-gap: 100px;
  }

  .error-404-text {
    font-size: 50px;
  }

  ._404-title {
    font-size: 180px;
  }

  .loop-container {
    grid-column-gap: 100px;
    grid-row-gap: 16px;
    grid-template-rows: auto;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .coming-soon-container {
    max-width: 1630px;
  }

  .coming-soon-title {
    font-size: 74px;
  }

  .coming-soon-text, .hero-form-coming-soon-2 {
    width: 90%;
  }

  .about-info-width {
    width: 48%;
  }

  .heading-strip-large {
    font-size: 10rem;
  }

  .about-top-content {
    min-height: 900px;
  }

  .large-advantages-item {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .advantages-title.large-title-benefit {
    font-size: 95px;
  }

  .par-answer-faq-dark {
    max-width: 1150px;
  }

  .faq-hero-title {
    font-size: 75px;
  }

  .initial-text-wrapper {
    width: 100%;
  }

  .large-about-photo, .serv-photo-wrap {
    min-height: 950px;
  }

  .event-banner-02 {
    padding-top: 160px;
  }

  .event-03-title {
    font-size: 110px;
  }

  .event-01-hero-con {
    min-height: 690px;
  }

  .grid-group-wrapper {
    grid-template-columns: 30px minmax(auto, 1600px) 30px;
    max-width: 1630px;
  }

  .details-card {
    top: 140px;
  }

  .content-details {
    grid-column-gap: 160px;
    grid-template-columns: 1fr .7fr;
  }

  .performances-title {
    font-size: 104px;
  }

  .event-banner-title-large {
    font-size: 17.5rem;
  }

  .subscribe-title-details {
    font-size: 42px;
  }

  .intro-banner {
    min-height: 760px;
  }

  .section-blog-details {
    height: 700px;
  }

  .blog-content {
    width: 83%;
  }

  .contact-info-details {
    width: 750px;
  }

  .video-item-height {
    min-height: 360px;
  }

  .contact-title-details {
    font-size: 46px;
  }

  .home-rental {
    min-height: 860px;
  }

  .blog-banner-title-large {
    font-size: 16rem;
  }

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

  .news-hero-banner {
    min-height: 780px;
    padding-top: 280px;
  }

  .blog-info-width {
    width: 80%;
  }

  .small-blog-title {
    font-size: 40px;
  }

  .blog-title-03 {
    font-size: 126px;
  }

  .news-03-content {
    padding-left: 100px;
    padding-right: 100px;
  }

  .news-03-banner {
    padding-top: 200px;
  }

  .masonry-title-news {
    font-size: 32px;
  }

  .blog-wdth-title {
    width: 83%;
  }

  .blog-card {
    min-height: 450px;
  }

  .category-banner-title {
    font-size: 18rem;
  }

  .left-banner-title {
    width: 60%;
  }

  .space-tickets-wrapper {
    width: 30%;
  }

  .video-history-banner {
    min-height: 800px;
  }

  .timeline-right {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .history-dark-title {
    font-size: 64px;
  }

  .dual-grid-con {
    grid-auto-columns: 1fr;
  }

  .team-detail-banner {
    margin-bottom: -470px;
  }

  .section-team-details {
    height: 700px;
  }

  .space-wrap-actor-events {
    padding-left: 80px;
    padding-right: 80px;
  }

  .top-paragraph-wdth {
    width: 35%;
  }

  .top-license-par {
    width: 49%;
  }

  .wdth-content {
    width: 50%;
  }

  .guide-lighbox.height-01 {
    height: 280px;
  }

  .landing-hero-title {
    width: 80%;
    font-size: 100px;
  }
}

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

  h2 {
    font-size: 50px;
  }

  blockquote {
    padding-left: 30px;
    padding-right: 30px;
  }

  .base-container.medium.no-paddings, .base-container.medium.no-paddings-team {
    padding-left: 0;
    padding-right: 0;
  }

  .grid-system {
    width: 100%;
  }

  .grid-description.first-description {
    text-align: center;
  }

  .spacing-wrapper-mobile {
    width: 70%;
  }

  .spacing-columns {
    flex-flow: wrap;
    display: flex;
  }

  .bottom-style-spacing-desktop {
    bottom: 6%;
  }

  .top-style-spacing-desktop {
    top: 4%;
  }

  .middle-style-spacing-desktop {
    top: 30%;
  }

  .colors-wrapper {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
  }

  .colors-container {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    flex-wrap: wrap;
  }

  .headings-typography-wrapper {
    width: 48%;
  }

  .headings-typography-wrapper.last-child {
    margin-bottom: 30px;
  }

  .h2-tablet {
    font-size: 50px;
  }

  .top-style-spacing-mobile {
    top: 3%;
  }

  .middlr-style-spacing-mobile {
    top: 26%;
  }

  .bottom-style-spacing-mobile {
    bottom: 6%;
  }

  .licensing-grid, .licensing-grid.last-child {
    grid-template-columns: 1fr 1fr;
  }

  .licensing-paragraph {
    width: 100%;
  }

  .section-title-wrapper {
    width: 85%;
  }

  .style-guide-button-wrapper {
    width: 45%;
  }

  .headings-container {
    grid-column-gap: 15px;
    grid-row-gap: 40px;
    flex-wrap: wrap;
  }

  .style-guide-content-wrapper {
    flex-wrap: wrap;
  }

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

  .blog-section-title {
    margin-bottom: 60px;
  }

  .contacts-wrapper-grid {
    padding-left: 15px;
    padding-right: 15px;
  }

  .section-title-center {
    margin-bottom: 60px;
  }

  .home-4-testimonials-wrapper {
    grid-column-gap: 60px;
    grid-row-gap: 40px;
    flex-wrap: wrap;
    width: 80%;
    margin-top: 20px;
  }

  .testimonials-wrapper-2 {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
    flex-wrap: wrap;
    width: 80%;
    margin-top: 20px;
  }

  .about-img._1 {
    top: 7%;
    left: 15px;
  }

  .about-img._5 {
    top: 58%;
    bottom: 0;
    left: 60px;
  }

  .about-img._3 {
    width: 360px;
    top: 0%;
    right: 15px;
  }

  .about-img._4 {
    width: 240px;
    top: 57%;
    left: auto;
    right: 15px;
  }

  .about-img._2 {
    z-index: 5;
    top: 30%;
    left: 35%;
  }

  .subtitle {
    margin-bottom: 30px;
  }

  .content {
    margin-bottom: 0;
  }

  .industries-block-wrapper {
    max-width: 45vw;
  }

  .about-4-team-slide {
    width: 100%;
  }

  .subtitle-2 {
    margin-bottom: 30px;
  }

  .dropdown-nav-link {
    color: #222;
    padding-top: 12px;
    padding-bottom: 12px;
    font-family: Lato, sans-serif;
    font-weight: 700;
  }

  .dropdown-nav-link.w--current {
    color: #004ae2;
  }

  .home-banner-left-arrow {
    inset: 20% auto auto 4%;
  }

  .spacing-system-image-2 {
    width: 75%;
  }

  .main-style-guide-body-wrapper {
    width: 100%;
    margin-right: 0;
  }

  .style-guide-tab-link {
    padding-left: 10px;
    padding-right: 10px;
  }

  .style-guide-tab-link:hover {
    opacity: 1;
  }

  .spacing-title {
    font-size: 25px;
  }

  .spasing-system-image-mobile-2 {
    width: 70%;
  }

  .landing-inner-page-item.home-screen {
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
  }

  .landing-customers-content-left {
    grid-row-gap: 10px;
    text-align: center;
    align-items: center;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    padding-right: 0;
  }

  .landing-customers-content-right {
    grid-row-gap: 30px;
    width: 100%;
  }

  .landing-customers-icon-wrapper {
    width: 100%;
  }

  .paragraph-benefits-lp {
    width: 75%;
  }

  .landing-customers-layout {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
    flex-direction: column;
    align-items: center;
  }

  .section-ttile-description {
    width: 90%;
    margin-top: 15px;
  }

  .section-banner.landing-banner {
    background-image: none;
    align-items: center;
  }

  .sg-title.mb-30 {
    margin-bottom: 20px;
  }

  .flex-body-wrap {
    width: 100%;
  }

  .style-guide-body-wrap {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    flex-wrap: wrap;
  }

  .style-guide-body-wrap.rows-30 {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }

  .banner-01 {
    min-height: 700px;
  }

  .hero-image {
    height: 50%;
  }

  .banner-title-wrap {
    text-align: center;
    padding-top: 320px;
  }

  .gradient-banner-bottom.footer-small {
    top: -30px;
  }

  .tablet-menu-5 {
    border-bottom: 1px solid var(--white-10);
    background-color: var(--black);
    justify-content: space-between;
    align-items: center;
    height: 75px;
    padding-left: 15px;
    padding-right: 0;
    display: flex;
  }

  .full-width-nav-link {
    margin-left: 0;
  }

  .nav-dropdown-small-icon {
    color: #fff;
    justify-content: space-between;
    margin-top: auto;
    margin-right: 3px;
    font-size: 14px;
    font-weight: 500;
    display: block;
    inset: 0% 0% 0% auto;
  }

  .btn-left.btn-full-wdth {
    width: 100%;
  }

  .border-wrap-4 {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    display: flex;
  }

  .nav-btn-wrap {
    display: none;
  }

  .logo-link-mobile {
    justify-content: center;
    margin-bottom: 0;
    display: flex;
  }

  .logo-link-mobile:hover {
    opacity: 1;
  }

  .logo-link-mobile.w--current {
    margin-bottom: 0;
    padding-top: 0;
  }

  .megamenu-dropdown-wrapper-3 {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-direction: column;
    width: 100%;
    display: flex;
  }

  .burger-nav {
    min-width: auto;
    min-height: auto;
    padding: 0;
    display: flex;
  }

  .nav-bg-cover {
    z-index: 0;
  }

  .nav-dropdown-list-item-2 {
    background-color: #fff;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 0 0 0 30px;
    display: none;
    position: static;
  }

  .nav-dropdown-list-item-2.w--open {
    border-style: solid none none;
    border-top-color: var(--white-5);
    background-color: var(--text-dark);
    border-radius: 0;
    padding-top: 10px;
    padding-bottom: 10px;
    display: flex;
    position: static;
  }

  .nav-dropdown-list-item-2.megamenu {
    padding-right: 0;
  }

  .nav-dropdown-list-item-2.megamenu.w--open {
    border-bottom-style: none;
    border-left-style: none;
    border-right-style: none;
    width: 100%;
    height: 250px;
    overflow: auto;
  }

  .hero-nav-dropdown {
    border-bottom: 1px solid var(--white-10);
    width: 100%;
    padding-left: 0;
    transition: all .35s;
  }

  .hero-nav-dropdown:hover {
    background-color: #0000;
  }

  .nav-line-white-2 {
    background-color: #e3e3e1;
    height: .4px;
    margin-bottom: 5px;
  }

  .menu-button-4 {
    text-align: right;
    justify-content: flex-end;
    align-items: center;
    height: 40px;
    padding: 15px 0;
  }

  .menu-button-4.w--open {
    background-color: #0000;
    display: none;
  }

  .nav-intro-item {
    padding-top: 14px;
    padding-bottom: 14px;
    padding-left: 0;
  }

  .nav-menu-wrap {
    background-color: #0000;
    flex-direction: column;
    width: 100%;
    position: absolute;
    inset: 0% auto auto 0%;
    overflow: visible;
  }

  .nav-dropdown-link-span {
    display: none;
  }

  .nav-dropdown-link-wrapper-3 {
    padding-right: 0;
  }

  .nav-dropdown-link-wrapper-3:hover {
    padding-left: 0;
    padding-right: 0;
  }

  .dropdown-header-item-2 {
    background-color: #0000;
    justify-content: space-between;
    align-items: stretch;
    width: 100%;
    height: auto;
    min-height: 60px;
    padding: 0 0 0 15px;
  }

  .dropdown-header-item-2:hover {
    background-color: #0000;
  }

  .dropdown-header-item-2.w--open {
    border-bottom: 1px solid #ffffff1a;
  }

  .header-link-item {
    border-bottom: 1px solid var(--white-10);
    background-color: #0000;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: auto;
    min-height: 60px;
    padding: 0 0 0 15px;
  }

  .line-white-2 {
    background-color: #e3e3e1;
    height: 1.5px;
  }

  .wrapper-item-home-2 {
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    height: 10px;
  }

  .clip-intro.tablet-hide {
    display: none;
  }

  .nav-close-icon-5 {
    width: auto;
    height: 18px;
    position: relative;
  }

  .close-menu-button-4 {
    justify-content: center;
    align-items: center;
    height: 40px;
    padding: 7px 0 5px 20px;
    display: flex;
  }

  .close-menu-button-4.w--open {
    z-index: 10;
    border-left: 1px solid var(--white-10);
    background-color: #0000;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 75px;
    padding: 23px 20px 20px;
    display: flex;
    position: relative;
  }

  .nav-menu-shadow-overlay-5 {
    border-right: 1px solid var(--white-10);
    background-color: var(--black);
    border-radius: 0;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    width: 320px;
    position: fixed;
    inset: 0% auto 0% 0%;
    overflow: hidden;
    box-shadow: 5px 0 45px #ffffff0d;
  }

  .menu-item-wrapper {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .megamenu-dropdown-wrap-2 {
    justify-content: center;
    width: 100%;
  }

  .dropdown-menu {
    background-color: var(--black);
    border-style: none;
    border-radius: 0;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    height: auto;
    padding-bottom: 100px;
    padding-left: 0;
    padding-right: 0;
    overflow: hidden;
  }

  .icon-wrap {
    border-left: 1px solid #ffffff1a;
    flex-flow: column;
    justify-content: space-between;
    align-items: center;
    width: 60px;
  }

  .full-nav-hero-container {
    z-index: auto;
    height: auto;
    min-height: 75px;
  }

  .button-transparent.full-wdth {
    justify-content: space-between;
    width: 100%;
  }

  .button-transparent.tablet-show {
    display: flex;
  }

  .top-tablet-menu-3 {
    width: 100%;
  }

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

  .full-portfolio-spacing-con {
    padding-left: 24px;
    padding-right: 24px;
  }

  .collection-masonry-item.blog-item:nth-child(odd) {
    margin-bottom: 0;
  }

  .collection-masonry-item.blog-item:nth-child(2n) {
    margin-top: 0;
    margin-bottom: 0;
  }

  .masonry-project-grid-bottom {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .masonry-project-grid-bottom.small-gap {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }

  .masonry-project-grid-bottom.news-gap {
    grid-column-gap: 15px;
    grid-row-gap: 40px;
    grid-template-columns: 1fr 1fr;
    padding-bottom: 0;
  }

  .masonry-project-wrapper {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    flex: none;
    width: 100%;
  }

  .project-card {
    min-height: 260px;
  }

  .project-name {
    padding-left: 12px;
    padding-right: 12px;
  }

  .horizontal-fill-line {
    width: 20px;
  }

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

  .masonry-info-top {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    justify-content: space-between;
    display: flex;
  }

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

  .top-par-wdth {
    width: 75%;
  }

  .top-par-wdth.tablet-hide {
    display: none;
  }

  .banner-01-content {
    padding-bottom: 20px;
  }

  .three-grid.our-history {
    grid-column-gap: 80px;
    grid-row-gap: 80px;
    grid-template-columns: 1fr;
  }

  .large-btn-wrapper {
    justify-content: center;
    align-items: flex-end;
    padding-top: 40px;
  }

  .clip-bottom-line {
    display: none;
  }

  .button-banner-wrap {
    width: 65%;
  }

  .banner-info {
    grid-column-gap: 80px;
    grid-row-gap: 80px;
    justify-content: flex-end;
  }

  .info-top {
    order: 1;
  }

  .top-column {
    text-align: center;
    justify-content: flex-start;
    align-items: center;
    padding-left: 0;
    padding-right: 0;
  }

  .event-name.color-white-small {
    letter-spacing: -.05em;
    font-size: 13.7px;
  }

  .event-coll {
    justify-content: flex-start;
    align-items: center;
    padding-top: 0;
    padding-bottom: 0;
  }

  .info-event, .info-event.center, .info-details {
    text-align: center;
    justify-content: flex-start;
    align-items: center;
  }

  .benefit-subtitle {
    text-align: center;
    width: 75%;
    margin-left: auto;
    margin-right: auto;
  }

  .initial-text {
    grid-column-gap: 50px;
    grid-row-gap: 50px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .video-intro-content {
    justify-content: center;
    align-items: stretch;
    display: flex;
  }

  .space-wrapper {
    margin-top: 15px;
  }

  .top-service-info {
    text-align: center;
    justify-content: flex-start;
    align-items: center;
    width: 95%;
  }

  .left-title-text {
    font-size: 55px;
  }

  .white-con {
    padding-left: 15px;
    padding-right: 15px;
  }

  .event-category-list {
    grid-column-gap: 22px;
    grid-row-gap: 22px;
  }

  .category-title {
    font-size: 26px;
  }

  .order-item, .category-name {
    font-size: 35px;
  }

  .grid-category-item {
    grid-template-columns: .25fr 1fr 1fr;
  }

  .image-04-size {
    width: 130px;
    height: 150px;
    bottom: -62px;
  }

  .small-banner-title {
    width: 100%;
  }

  .small-banner-title.news-title, .small-banner-title.rental-info {
    width: 110%;
  }

  .full-container.footer-con {
    margin-bottom: -60px;
  }

  .banner-intro-wrap {
    width: 70%;
  }

  .image-06-size {
    width: 120px;
    height: 70px;
    left: 96px;
  }

  .image-01-size {
    width: 100px;
    height: 120px;
    top: 142px;
    left: -15px;
  }

  .image-05-size {
    width: 100px;
    height: 65px;
    bottom: -35px;
    right: -115px;
  }

  .image-03-size {
    width: 160px;
    height: 115px;
    top: 105px;
    left: -40px;
  }

  .image-02-size {
    width: 140px;
    height: 95px;
    top: 15px;
    left: -90px;
  }

  .banner-bottom-part {
    min-height: 700px;
  }

  .three-col-grid.banner-animation {
    display: none;
    top: 80px;
  }

  .hover-cover {
    display: none;
  }

  .left-intro-flex {
    text-align: center;
    justify-content: flex-start;
    align-items: center;
    padding-top: 0;
  }

  .upcoming-event-wrap {
    grid-column-gap: 0px;
    grid-row-gap: 240px;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    padding-right: 15px;
  }

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

  .dual-grid {
    text-align: center;
    grid-template-columns: 1fr;
  }

  .image-07-size {
    width: 150px;
    height: 100px;
    top: 112px;
    left: -40px;
  }

  .image-08-size {
    width: 100px;
    height: 65px;
    bottom: -60px;
    right: -180px;
  }

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

  .height-video-bg {
    height: 77%;
  }

  .success-message-content {
    padding-left: 12px;
    padding-right: 12px;
  }

  .success-message-content.comming-soon {
    text-align: center;
    justify-content: center;
    align-items: center;
    padding: 15px;
  }

  .error-state.coming-soon {
    text-align: center;
  }

  .message-form {
    width: 85%;
  }

  .right-intro-flex {
    justify-content: center;
    align-items: flex-end;
    padding-left: 0;
    padding-right: 0;
  }

  .grid-column {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .grid-column.no-padding-bottom {
    padding-bottom: 0;
  }

  .grid-column.button {
    padding-top: 30px;
  }

  .footer-cta {
    text-align: center;
    font-size: 42px;
  }

  .link-text.large-size {
    letter-spacing: .08em;
    font-size: 15px;
  }

  .link-text.very-small-size {
    font-size: 16px;
  }

  .space-par-wrap {
    width: 95%;
  }

  .rental-pricing-wrapper, .rent-stage-info {
    text-align: center;
    justify-content: flex-start;
    align-items: center;
  }

  .event-category-card {
    min-height: 260px;
  }

  .large-about-text {
    font-size: 48px;
  }

  .scramble-word {
    font-size: 13.5rem;
  }

  .order-event {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    flex-flow: column;
    display: flex;
  }

  .link-with-arrow {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    justify-content: flex-start;
    align-items: center;
    display: flex;
  }

  .hover-link-wrapper {
    display: block;
  }

  .rental-title-text {
    font-size: 55px;
  }

  .nav-btn-tablet {
    justify-content: space-between;
    width: 100%;
    margin-top: 30px;
    padding-left: 15px;
    padding-right: 15px;
    display: flex;
  }

  .inner-small-banner {
    min-height: 320px;
  }

  .inner-banner-title.event-category {
    font-size: 110px;
  }

  .title {
    font-size: 80px;
  }

  .banner-02-content {
    min-height: 780px;
  }

  .our-story-grig {
    grid-template-columns: 1fr;
    padding-top: 80px;
    padding-bottom: 80px;
    padding-right: 40px;
  }

  .right-grid-content {
    width: 100%;
    margin-left: auto;
  }

  .photo-overlay {
    background-color: #0003;
  }

  .event-banner-title {
    font-size: 6.35rem;
  }

  .unique-event-content {
    grid-row-gap: 80px;
  }

  .content-bottom {
    grid-column-gap: 5px;
    grid-row-gap: 5px;
  }

  .long-description {
    font-size: 35px;
  }

  .bold-number {
    font-size: 120px;
  }

  .top-description {
    width: 79%;
  }

  .bold-number-wrapper {
    grid-column-gap: 5px;
    grid-row-gap: 5px;
  }

  .large-text-content {
    grid-column-gap: 80px;
    grid-row-gap: 80px;
  }

  .intro-image {
    width: 13rem;
    height: 10rem;
  }

  .intro-image.intro-img-2 {
    bottom: -20px;
  }

  .tabs-menu-style {
    justify-content: space-between;
  }

  .centered-title-wrap {
    width: 100%;
  }

  .project-tab-link {
    padding-left: 12px;
    padding-right: 12px;
    font-size: 15px;
  }

  .project-tab-link:hover {
    opacity: 1;
  }

  .project-tab-link.small-tab {
    padding-left: 10px;
    padding-right: 10px;
    font-size: 13px;
  }

  .project-intro-space {
    grid-column-gap: 100px;
    grid-row-gap: 100px;
  }

  .numerical-advantage {
    font-size: 76px;
  }

  .service-image-wrap {
    min-height: 230px;
  }

  .service-title {
    font-size: 32px;
  }

  .right-intro-team {
    border-top: 1px solid #ffffff0d;
    padding-top: 30px;
  }

  .project-grid-item {
    grid-row-gap: 30px;
    grid-template-columns: 1fr;
  }

  .five-project-grid.news-grid {
    grid-template-columns: 15px 1fr 1fr 1.3fr 15px;
  }

  .event-date-large {
    font-size: 70px;
  }

  .event-par-details {
    width: 100%;
  }

  .center-intro {
    padding-left: 15px;
    padding-right: 15px;
  }

  .center-intro.intro-details {
    padding-left: 3px;
    padding-right: 3px;
  }

  .section-scroll-images {
    padding-bottom: 60px;
  }

  .about-event {
    font-size: 18px;
  }

  .horizontal-print-03.print-large {
    height: 22px;
  }

  .horizontal-print-03.print-contact {
    height: 20px;
  }

  .subscribe-description.wdth {
    width: 80%;
  }

  .subscribe-description.wdth-contact {
    width: 87%;
  }

  .form-btn-black:hover {
    opacity: 1;
  }

  .large-event-title {
    font-size: 48px;
  }

  .top-intro-column {
    text-align: center;
    justify-content: flex-start;
    align-items: center;
    padding-right: 0;
  }

  .white-dot {
    width: 70px;
    height: 70px;
  }

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

  .full-title-wrap {
    position: relative;
    top: 0;
  }

  .slide-heading {
    font-size: 64px;
  }

  .slide-heading.xl {
    font-size: 100px;
  }

  .sticky-section {
    overflow: hidden;
  }

  .sticky-section.top-banner, .sticky-section.team {
    padding-top: 75px;
  }

  .leading-actors-wrapper {
    grid-column-gap: 15px;
    grid-row-gap: 74px;
    grid-template-columns: 1fr 1fr;
    margin-top: 40px;
  }

  .leading-actors-wrapper.botton-padding {
    padding-bottom: 0;
  }

  .height-photo-container.small-tablet-card {
    height: 240px;
  }

  .actors-card.card-03 {
    justify-content: flex-end;
    width: 80%;
  }

  .actors-card.card-04 {
    margin-top: 0;
    left: auto;
  }

  .actors-card.card-05 {
    margin-top: 0;
    margin-left: auto;
    left: auto;
  }

  .actors-card.card-06 {
    margin-top: 0;
  }

  .actors-card.details {
    max-width: 360px;
  }

  .left-text-content {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    text-align: center;
    align-items: center;
    padding-right: 15px;
  }

  .right-text-conteny {
    text-align: center;
    justify-content: flex-start;
    align-items: center;
    padding-left: 15px;
    padding-right: 15px;
  }

  .bold-subtitle {
    width: 60%;
  }

  .intro-top-content {
    grid-column-gap: 5px;
    grid-row-gap: 5px;
    flex-flow: column;
    display: flex;
  }

  .lightbox-container {
    height: 185px;
  }

  .video-intro-height {
    width: 40%;
  }

  .history-description {
    font-size: 40px;
  }

  .bold-history-number {
    font-size: 125px;
  }

  .blog-long-title {
    width: 95%;
    font-size: 24px;
  }

  .news-top-info-2 {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
  }

  .blog-hero-image {
    height: 260px;
  }

  .news-card {
    cursor: default;
  }

  .latest-news-list {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
  }

  .news-intro-item {
    cursor: default;
  }

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

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

  .blog-intro-left {
    text-align: center;
    width: 100%;
  }

  .lagre-title {
    font-size: 5.94rem;
  }

  .project-info {
    width: 90%;
  }

  .parallax-image-03 {
    width: 150px;
    height: 170px;
  }

  .parallax-image-01 {
    width: 160px;
    height: 115px;
    top: -55px;
    left: -145px;
  }

  .social-intro-link {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }

  .banner-hover-cover {
    justify-content: center;
    align-items: flex-end;
    display: flex;
  }

  .event-circle-link {
    background-color: #0000001a;
    background-image: radial-gradient(circle farthest-corner at 50% 50%, var(--transparent) 23%, #00000026 88%);
    margin-bottom: -15px;
  }

  .full-clip-section {
    padding-top: 0;
    overflow: visible;
  }

  .full-clip-section.contact {
    padding-bottom: 0;
  }

  .flex-par-wrap {
    width: 100%;
  }

  .project-left-info {
    justify-content: center;
    align-items: center;
    width: 100%;
    display: flex;
  }

  .about-intro-text {
    width: 93%;
  }

  .studio-intro.large, .studio-intro.rental-info {
    grid-template-columns: 1fr auto 1fr;
  }

  .about-image {
    width: 8rem;
    margin-left: -3rem;
    margin-right: -3rem;
  }

  .star-medium {
    width: 5vw;
    min-width: 5vw;
  }

  .home-about-intro {
    width: 90%;
  }

  .home-about-intro.intro-rental {
    width: 100%;
  }

  .featured-grid {
    grid-template-columns: 1fr;
    place-items: stretch center;
  }

  .long-project-title {
    width: 90%;
    font-size: 26px;
  }

  .banner-title-wdth {
    width: 100%;
  }

  .hero-gallery {
    height: 110%;
  }

  .banner-02 {
    padding-top: 70px;
  }

  .home-hero-intro {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .hero-top-outline {
    min-height: 650px;
  }

  .banner-02-title {
    font-size: 80px;
  }

  .hero-gallery-item {
    width: 25vw;
  }

  .hero-gallery-item.one {
    margin-left: -10px;
  }

  .hero-gallery-item.three {
    top: 0;
  }

  .hero-gallery-item.two {
    top: -15px;
    right: -15px;
  }

  .hero-gallery-item.three-event {
    top: 0;
  }

  .gradient-top-banner.review {
    top: -1720px;
  }

  .gradient-top-banner.licensing {
    top: -2130px;
  }

  .gradient-top-banner.landing {
    top: -358px;
  }

  .article-title-wrap {
    padding-left: 0;
    padding-right: 0;
  }

  .article-title-wrap.rental-benefits {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    justify-content: flex-end;
    padding-top: 60px;
  }

  .article-title-wdth {
    width: 80%;
  }

  .news-link {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .review-content {
    max-width: 70vw;
  }

  .home-large-review {
    align-items: center;
    padding-bottom: 10rem;
  }

  .testimonial-slide-content-2 {
    grid-column-gap: 2.6rem;
    grid-row-gap: 2.6rem;
  }

  .small-intro-space {
    margin-top: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .small-news-img {
    min-height: 198px;
  }

  .news-relative-wrap.full-height, .white-news-wrap.full-height-wrapper {
    height: 100%;
  }

  .intro-article {
    padding-left: 0;
    padding-right: 0;
  }

  .banner-link {
    width: 48%;
  }

  .banner-link.small-width {
    width: 42%;
  }

  .banner-link.medium-width {
    width: 50%;
  }

  .chanloge-center-text {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .form-btn-white:hover {
    opacity: 1;
  }

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

  ._404-wrapper {
    padding-left: 0;
    padding-right: 0;
  }

  .error-404-text {
    font-size: 45px;
  }

  ._404-title {
    font-size: 120px;
  }

  .loop-container {
    grid-column-gap: 0px;
    grid-template-columns: 1fr;
    grid-auto-flow: row;
    justify-content: center;
  }

  .coming-soon-wrapper-2 {
    align-items: center;
  }

  .coming-soon-container {
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .coming-soon-title {
    text-align: center;
    width: 80%;
    font-size: 60px;
  }

  .image-content-right {
    display: none;
  }

  .coming-soon-text {
    color: #fff;
    text-align: center;
    width: 100%;
  }

  .hero-form-coming-soon-2 {
    align-items: center;
    width: 80%;
  }

  .about-info-width {
    width: 95%;
  }

  .left-about-info {
    padding-left: 0;
  }

  .spin-about.news {
    max-width: 13rem;
  }

  .about-banner-info {
    font-size: 16px;
  }

  .about-us-hero-banner {
    padding-top: 160px;
  }

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

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

  .about-top-info.news {
    grid-column-gap: 45px;
    grid-row-gap: 45px;
    grid-template-columns: 1fr;
  }

  .heading-strip-large {
    font-size: 6rem;
  }

  .advantages-description {
    font-size: 16px;
  }

  .large-intro-benefits {
    grid-template-columns: 1fr 1fr;
    padding-left: 0;
    padding-right: 0;
  }

  .large-advantages-item {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .large-advantages-item.last-item, .large-advantages-item.item-3 {
    border-top: 1px solid var(--white-10);
  }

  .advantages-title {
    font-size: 50px;
  }

  .advantages-title.large-title-benefit {
    font-size: 55px;
  }

  .faq-grid-item {
    width: 100%;
  }

  .service-tab-grid {
    grid-column-gap: 17px;
    grid-row-gap: 17px;
    grid-template-columns: 60px 1fr 1fr auto;
  }

  .par-answer-faq-dark {
    max-width: 100%;
  }

  .section-label {
    padding-left: 15px;
  }

  .faq-hero-title {
    font-size: 35px;
  }

  .faq-answer {
    padding-left: 15px;
    padding-right: 70px;
  }

  .faq-toggle {
    padding-left: 15px;
    padding-right: 15px;
  }

  .initial-text-wrapper {
    grid-column-gap: 50px;
    grid-row-gap: 50px;
  }

  .large-about-photo {
    min-height: 700px;
  }

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

  .star-large {
    width: 55px;
  }

  .about-banner-subtitle {
    font-size: 16px;
  }

  .banner-event-01 {
    padding-top: 70px;
  }

  .case-sticky-item {
    position: relative;
    top: 0;
  }

  .serv-photo-wrap {
    min-height: 650px;
  }

  .service-info-con {
    justify-content: space-between;
    align-items: flex-end;
  }

  .event-03-title {
    font-size: 62px;
  }

  .details-body {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }

  .tablet-clip-wrap {
    z-index: 1;
    position: relative;
    overflow: hidden;
  }

  .tablet-clip-wrap.details {
    z-index: 8;
  }

  .details-card {
    width: 100%;
    position: static;
  }

  .content-details {
    grid-row-gap: 60px;
    flex-direction: column-reverse;
    grid-template-columns: 1fr;
  }

  .event-hero-intro {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .event-02-banner {
    min-height: 420px;
  }

  .event-banner-title-large {
    font-size: 8rem;
  }

  .event-02-content {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
  }

  .event-par-wdth {
    width: 70%;
  }

  .event-03-content {
    grid-column-gap: 80px;
    grid-row-gap: 80px;
  }

  .form-event-detail {
    padding-bottom: 20px;
  }

  .event-form {
    width: 100%;
    margin-left: auto;
  }

  .intro-banner {
    min-height: 550px;
  }

  .customer-info {
    flex-flow: wrap;
  }

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

  .section-blog-details {
    height: 450px;
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .content-blog-details-wrap {
    grid-template-columns: 1fr;
  }

  .blog-content {
    width: 100%;
    min-height: auto;
    padding-bottom: 100px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .hero-nav-dropdown-2 {
    border-bottom: 1px solid #ffffff26;
    width: 100%;
    padding-left: 0;
    transition: all .35s;
  }

  .hero-nav-dropdown-2:hover {
    background-color: #141414;
  }

  .service-details-title {
    width: 100%;
    font-size: 57px;
  }

  .news-paragraph {
    width: 100%;
  }

  .scroll-blog-link {
    margin-bottom: -80px;
    right: 40px;
  }

  .header-link-item-2 {
    background-color: #0000;
    border-bottom: 1px solid #ffffff26;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    min-height: 60px;
    padding: 0 0 0 15px;
  }

  .header-link-item-2:hover {
    background-color: #0e0e0e;
  }

  .blog-template-wrap {
    padding-left: 40px;
    padding-right: 40px;
  }

  .blog-template-wrap.banner {
    padding-left: 0;
    padding-right: 0;
  }

  .services-template-wrap {
    padding-left: 40px;
    padding-right: 40px;
  }

  .contact-form {
    padding-bottom: 18px;
  }

  .contact-grid {
    grid-column-gap: 15px;
    grid-row-gap: 74px;
    grid-template-columns: 1fr;
    margin-top: -40px;
  }

  .contact-info-details {
    width: 80%;
  }

  .video-item-height {
    min-height: 320px;
  }

  .rental-benefit {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    display: flex;
  }

  .rental-banner-title {
    font-size: 64px;
  }

  .rental-intro-top {
    padding-bottom: 30px;
  }

  .home-rental {
    min-height: 630px;
  }

  .blog-banner-title-large {
    font-size: 8rem;
  }

  .blog-01-banner {
    min-height: 400px;
  }

  .news-clip-title {
    width: 100%;
  }

  .news-hero-banner {
    padding-top: 120px;
  }

  .blog-info-width {
    text-align: center;
    width: 100%;
  }

  .blog-02-title {
    font-size: 74px;
  }

  .small-blog-title {
    font-size: 25px;
  }

  .banner-blog-link {
    height: auto;
    margin-top: 0;
  }

  .left-news-info {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    justify-content: space-between;
    align-items: center;
    padding-top: 50px;
    padding-left: 0;
  }

  .blog-title-03 {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
    font-size: 67px;
  }

  .masonry-title-news {
    font-size: 24px;
  }

  .blog-wdth-title {
    width: 90%;
  }

  .row-masonry-news {
    margin-top: 0;
    padding-left: 15px;
    padding-right: 15px;
  }

  .blog-card {
    min-height: 260px;
  }

  .category-banner-title {
    font-size: 8.2rem;
  }

  .blog-category-banner {
    min-height: 400px;
  }

  .news-rich-text h2 {
    font-size: 45px;
  }

  .left-banner-title {
    width: 100%;
  }

  .left-banner-intro {
    text-align: center;
    justify-content: flex-start;
    align-items: center;
    padding-top: 0;
  }

  .space-tickets-wrapper {
    width: 75%;
    margin-top: 15px;
  }

  .height-video-banner {
    height: 77%;
  }

  .project-collection-item-2:nth-child(odd) {
    margin-top: 0;
    margin-bottom: 0;
  }

  .history-tab-link {
    text-align: center;
    padding-left: 10px;
    padding-right: 10px;
  }

  .video-history-banner {
    place-items: center stretch;
  }

  .history-hero-intro {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    padding-top: 100px;
  }

  .timeline-right {
    padding-top: 0;
  }

  .history-dark-title {
    font-size: 28px;
  }

  .team-detail-content {
    padding-left: 15px;
    padding-right: 15px;
  }

  .section-team-details {
    height: 450px;
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .actor-quote {
    width: 100%;
    font-size: 18px;
  }

  .team-intro-paragraph {
    width: 100%;
  }

  .actor-details-title {
    width: 100%;
    font-size: 65px;
  }

  .top-paragraph-wdth {
    width: 75%;
  }

  .license-par {
    width: 93%;
  }

  .licensing-font, .top-license-par, .wdth-content {
    width: 100%;
  }

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

  .landing-hero-title {
    font-size: 55px;
  }

  .top-landing-title {
    margin-bottom: 60px;
  }

  .cta-landing-title {
    font-size: 52px;
  }

  .cta-flex-wrap {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    width: 100%;
  }

  .landing-grid.inner-pages {
    grid-template-columns: 1fr 1fr;
  }
}

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

  h2 {
    font-size: 45px;
  }

  h3 {
    font-size: 32px;
  }

  blockquote {
    padding: 30px 15px;
    font-size: 20px;
  }

  .section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .section.without-top-spacing {
    padding-top: 0;
  }

  .section.upcominh-events {
    padding-top: 60px;
  }

  .grid-system-wrapper {
    flex-direction: row;
  }

  .grid-system {
    border-left: 1px solid var(--white-10);
    flex-direction: column;
  }

  .grid-description {
    border-top: 1px solid var(--white-10);
    border-bottom-style: none;
    border-right-width: 1px;
    width: 100%;
  }

  .grid-description.first-description {
    border-width: 1px 1px .5px 0;
    border-top-style: none;
    border-top-color: #a7a7a7;
    border-bottom-style: none;
    border-left-style: none;
    width: 100%;
  }

  .grid-description.last-description {
    border-bottom-style: solid;
    border-bottom-width: 1px;
    border-right-width: 1px;
  }

  .spacing-wrapper-mobile {
    margin-top: 30px;
  }

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

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

  .bottom-style-spacing-desktop {
    bottom: 10%;
  }

  .top-style-spacing-desktop {
    top: 10%;
  }

  .spacing-wrapper {
    margin-top: 30px;
  }

  .middle-style-spacing-desktop {
    top: 34%;
  }

  .colors-wrapper {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
  }

  .colors-container {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    margin-top: 0;
  }

  .headings-typography-wrapper {
    width: 100%;
  }

  .headers-wrapper {
    width: 100%;
    margin-top: 10px;
  }

  .h1-tablet {
    font-size: 65px;
  }

  .h2-tablet {
    font-size: 45px;
  }

  .primary-button.pagination {
    margin-top: 40px;
  }

  .top-style-spacing-mobile {
    top: 7%;
  }

  .middlr-style-spacing-mobile {
    top: 31%;
  }

  .bottom-style-spacing-mobile {
    bottom: 9%;
  }

  .link-wrapper {
    width: 100%;
  }

  .licensing-title-wrapper {
    margin-bottom: 20px;
  }

  .licensing-grid {
    grid-template-columns: 1fr 1fr;
    padding-bottom: 40px;
  }

  .licensing-grid.last-child {
    grid-template-columns: 1fr 1fr;
  }

  .licensing-fonts-wrapper {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    flex-wrap: wrap;
  }

  .licensing-paragraph {
    width: 100%;
  }

  .licensing-icons-wrapper {
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .utility-page-content {
    width: 70%;
  }

  .password-image {
    height: 80px;
  }

  .footer-bottom-wrapper {
    text-align: center;
    flex-flow: column;
    align-items: center;
  }

  .footer-copyright {
    flex-flow: wrap;
  }

  .section-title-wrapper {
    width: 100%;
    margin-bottom: 40px;
  }

  .style-guide-button-wrapper {
    width: 100%;
  }

  .about-3-tab-link.w--current {
    font-size: 20px;
  }

  .secondary-button.pagination {
    margin-top: 40px;
  }

  .testimonials {
    padding-top: 60px;
    padding-bottom: 60px;
  }

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

  .contacts-wrapper-grid {
    grid-column-gap: 20px;
    grid-row-gap: 40px;
    grid-template-columns: 1fr;
  }

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

  .home-4-testimonials-wrapper {
    grid-row-gap: 30px;
    width: 100%;
  }

  .testimonials-wrapper-2 {
    width: 100%;
  }

  .about-img {
    width: 100%;
    max-height: 420px;
  }

  .about-img._1, .about-img._5, .about-img._3, .about-img._4, .about-img._2 {
    width: 100%;
    position: static;
  }

  .subtitle {
    line-height: 16px;
  }

  .our-services-wrap {
    grid-row-gap: 10px;
    width: 100%;
  }

  .content-wrapper {
    flex-wrap: wrap;
    width: auto;
  }

  .industries-block-wrapper {
    max-width: none;
  }

  .home-9-team-item {
    width: 48%;
  }

  .search {
    flex-direction: column;
  }

  .subtitle-2 {
    line-height: 16px;
  }

  .home-banner-left-arrow {
    top: 6%;
  }

  .home-23-team-item {
    width: 70%;
  }

  .style-guide-tab-content-wrapper {
    grid-row-gap: 40px;
  }

  .grid-header {
    width: 100%;
  }

  .main-style-guide-body-wrapper {
    width: 100%;
    margin-top: 10px;
  }

  .style-guide-tabs-menu {
    grid-column-gap: .4rem;
    grid-row-gap: .4rem;
    border-top: 1px solid var(--black);
    flex-direction: column;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    margin-bottom: 50px;
    display: grid;
  }

  .grid-title {
    border-bottom: 1px solid var(--white-10);
    border-right-style: none;
    width: 100%;
  }

  .grid-title.first-grid {
    border-left-style: none;
    border-right-style: none;
    flex: 1;
    width: 100%;
  }

  .landing-banner-screens {
    margin-bottom: -50px;
  }

  .section-landing-customers {
    padding-top: 40px;
  }

  .landing-customers-content-left {
    text-align: center;
    width: 100%;
  }

  .landing-customers-content-right {
    grid-column-gap: 15px;
    grid-row-gap: 40px;
  }

  .landing-customers-icon-wrapper {
    width: 90%;
  }

  .paragraph-benefits-lp {
    width: 100%;
  }

  .landing-customers-layout {
    flex-direction: column;
    padding-left: 15px;
    padding-right: 15px;
  }

  .section-banner {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .section-banner.landing-banner {
    background-image: none;
    padding-top: 140px;
  }

  .spacing-flex-wrap {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }

  .sg-title.mb-15 {
    margin-bottom: 10px;
  }

  .sg-title.mb-30 {
    margin-bottom: 20px;
  }

  .flex-body-wrap {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    width: 100%;
  }

  .btn-flex-wrap {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }

  .license-link-wrapper {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }

  .gradient-banner-bottom.event-03 {
    top: -150px;
  }

  .nav-menu-wrap {
    max-width: none;
  }

  .brand-logo.w--current {
    padding-left: 0;
  }

  .clip-intro.evennt-circle {
    z-index: 25;
  }

  .dropdown-menu {
    overflow: hidden;
  }

  .full-large-con {
    padding-left: 24px;
    padding-right: 24px;
  }

  .masonry-project-grid {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    grid-template-columns: 1fr;
    padding-bottom: 0;
  }

  .collection-masonry-item {
    width: 100%;
  }

  .collection-masonry-item:nth-child(odd) {
    margin-bottom: 0;
  }

  .collection-masonry-item:nth-child(2n) {
    margin-top: 0;
    margin-bottom: 0;
  }

  .masonry-project-grid-bottom {
    grid-row-gap: 40px;
    grid-template-columns: 1fr;
    padding-bottom: 0;
  }

  .masonry-project-grid-bottom.news-gap {
    grid-template-columns: 1fr;
  }

  .masonry-project-wrapper {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    column-count: 1;
  }

  .row-masonry {
    margin-top: 0;
  }

  .project-card {
    min-height: 350px;
  }

  .horizontal-fill-line {
    width: 40px;
  }

  .masonry-title {
    font-size: 30px;
  }

  .masonry-info-top {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    grid-template-rows: auto;
    grid-template-columns: 100px auto 100px;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .three-grid.banner-02, .three-grid.banner-event-02 {
    grid-row-gap: 15px;
    grid-template-columns: 1fr 1fr;
  }

  .large-btn-wrapper {
    justify-content: space-between;
  }

  .button-banner-wrap, .benefit-subtitle {
    width: 100%;
  }

  .video-intro-content {
    padding-bottom: 60px;
  }

  .top-service-info {
    width: 100%;
  }

  .left-title-text {
    font-size: 48px;
  }

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

  .main-footer {
    padding-top: 60px;
  }

  .property-item-category {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .order-item {
    font-size: 55px;
  }

  .grid-category-item {
    grid-row-gap: 30px;
    grid-template-columns: .53fr 1fr;
  }

  .image-04-size {
    width: 100px;
    height: 120px;
    bottom: -39px;
  }

  .video-info-wrap {
    padding-top: 200px;
    padding-bottom: 80px;
  }

  .small-banner-title.news-title, .small-banner-title.rental-info {
    width: 95%;
  }

  .full-container.footer-con {
    margin-bottom: -55px;
  }

  .banner-intro-wrap {
    width: 90%;
  }

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

  .image-06-size {
    top: -140px;
    left: 80px;
  }

  .image-01-size {
    top: -111px;
    left: -30px;
  }

  .image-05-size {
    bottom: 160px;
    right: -122px;
  }

  .image-03-size {
    width: 150px;
    height: 100px;
    top: 100px;
  }

  .image-02-size {
    width: 130px;
    top: 25px;
    left: 14px;
  }

  .vert-print-01 {
    display: none;
  }

  .hero-flex-con {
    padding-bottom: 15px;
    padding-left: 0;
    padding-right: 0;
  }

  .vert-print-02 {
    display: none;
  }

  .image-07-size {
    width: 120px;
    height: 80px;
    top: 90px;
    left: -120px;
  }

  .image-08-size {
    bottom: -65px;
    right: 45px;
  }

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

  .grid-column.top-align.with-borders {
    border-style: solid none;
    border-width: 1px;
    border-color: var(--white-10);
  }

  .footer-cta {
    font-size: 40px;
  }

  .white-link-con {
    width: 100px;
    height: 100px;
  }

  .space-par-wrap {
    width: 100%;
  }

  .event-category-card {
    min-height: 350px;
  }

  .text-rental-link {
    font-size: 50px;
  }

  .large-about-text {
    font-size: 40px;
  }

  .scramble-word {
    font-size: 10rem;
  }

  .horizontal-tablet-print {
    display: block;
  }

  .rental-title-text {
    font-size: 50px;
  }

  .inner-small-banner {
    min-height: 300px;
  }

  .inner-banner-title.event-category {
    font-size: 100px;
  }

  .video-banner-overlay {
    background-color: #00000073;
  }

  .title {
    font-size: 70px;
  }

  .our-story-grig {
    padding: 60px 20px;
  }

  .right-grid-content {
    max-width: 390px;
  }

  .photo-overlay {
    background-color: #0000001a;
  }

  .story-bottom {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
  }

  .event-banner-title {
    font-size: 4.55rem;
  }

  .content-bottom {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
  }

  .long-description {
    font-size: 32px;
  }

  .bold-number {
    font-size: 100px;
    
  }

  .top-description {
    width: 90%;
  }

  .section-2 {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .full-grid {
    grid-row-gap: 70px;
    padding-bottom: 40px;
  }

  .large-text-content {
    width: 90%;
  }

  .intro-image {
    width: 11rem;
    height: 8rem;
  }

  .intro-image.intro-img-2 {
    left: 0;
  }

  .tabs-menu-style {
    grid-template-columns: 1fr 1fr;
  }

  .project-tab-link.small-tab {
    padding-left: 12px;
    padding-right: 12px;
    font-size: 15px;
  }

  .top-project-info-fill {
    padding-bottom: 60px;
  }

  .left-intro-project {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    grid-template-columns: 1fr;
  }

  .project-intro-space {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    text-align: center;
    align-items: center;
  }

  .expert-item {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .service-image-wrap {
    min-height: 350px;
  }

  .service-title {
    font-size: 38px;
  }

  .project-wdth {
    justify-content: flex-start;
    align-items: center;
  }

  .project-grid-item {
    width: 100%;
  }

  .five-project-grid.news-grid {
    grid-template-columns: 15px 1fr 1fr 1fr 15px;
  }

  .event-date-large {
    font-size: 54px;
  }

  .event-par-details {
    width: 75%;
  }

  .horizontal-print-03.print-large, .horizontal-print-03.print-contact {
    height: 18px;
  }

  .subscribe-title {
    font-size: 30px;
  }

  .subscribe-description.wdth, .subscribe-description.wdth-contact {
    width: 100%;
  }

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

  .thank-you-title {
    font-size: 28px;
  }

  .flex-field {
    flex-flow: column;
  }

  .large-event-title {
    font-size: 40px;
  }

  .white-dot {
    width: 60px;
    height: 60px;
  }

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

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

  .slide-heading.xl {
    font-size: 80px;
  }

  .sticky-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .leading-actors-wrapper {
    grid-row-gap: 40px;
    grid-template-columns: 1fr;
    margin-top: -40px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .member-name {
    font-size: 22px;
  }

  .height-photo-container, .height-photo-container.small-card, .height-photo-container.small-tablet-card {
    height: 500px;
  }

  .actors-card.card-02 {
    width: 100%;
    margin-top: 0;
  }

  .actors-card.card-03 {
    width: 100%;
  }

  .actors-card.card-05 {
    width: 100%;
    margin-top: 0;
  }

  .actors-card.details {
    max-width: 340px;
  }

  .bold-subtitle {
    width: 80%;
  }

  .video-intro-height {
    width: 50%;
  }

  .history-description {
    font-size: 32px;
  }

  .bold-history-number {
    font-size: 100px;
  }

  .blog-long-title {
    width: 64%;
    font-size: 26px;
  }

  .news-top-info-2 {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
  }

  .blog-hero-image {
    height: 320px;
  }

  .latest-news-list {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    grid-template-columns: 1fr;
  }

  .blog-subtitle {
    padding-bottom: 40px;
    padding-right: 15px;
  }

  .blog-title {
    font-size: 40px;
  }

  .parallax-image-02 {
    width: 110px;
    height: 70px;
    top: -63px;
  }

  .lagre-title {
    font-size: 4.35rem;
  }

  .project-info {
    width: 100%;
  }

  .parallax-image-03 {
    width: 130px;
    height: 150px;
    top: -108px;
  }

  .parallax-image-01 {
    top: -100px;
    left: -107px;
  }

  .logo-bottom-con {
    padding-bottom: 60px;
  }

  .brand-logo-footer.w--current {
    padding-left: 0;
  }

  .social-intro-link {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }

  .event-circle-link {
    width: 60px;
    height: 60px;
  }

  .flex-par-wrap {
    width: 100%;
  }

  .featured-left {
    flex-direction: column;
    justify-content: flex-end;
    align-items: stretch;
  }

  .home-about {
    border-top-style: none;
    padding-top: 60px;
  }

  .about-intro-text {
    width: 100%;
  }

  .studio-intro {
    grid-template-columns: auto auto auto;
  }

  .photo-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .about-image {
    width: 6rem;
    margin-left: -1.2rem;
    margin-right: -1.2rem;
  }

  .star-medium {
    width: 6vw;
    min-width: 6vw;
  }

  .home-about-intro {
    width: 100%;
  }

  .home-hero-intro {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
  }

  .banner-02-title {
    font-size: 65px;
  }

  .hero-gallery-item {
    width: 30vw;
  }

  .hero-gallery-item.one {
    margin-top: 40px;
    margin-left: -47px;
  }

  .hero-gallery-item.two {
    top: 120px;
  }

  .gradient-top-banner {
    top: -250px;
  }

  .gradient-top-banner.review {
    top: -2380px;
  }

  .gradient-top-banner.licensing {
    top: -2280px;
  }

  .gradient-top-banner.landing {
    top: -2070px;
  }

  .large-grad-png.news {
    top: 0;
  }

  .article-title-wrap {
    text-align: center;
    padding-bottom: 24px;
  }

  .article-title-wrap.rental-benefits {
    justify-content: flex-end;
    align-items: center;
    padding-top: 10px;
    padding-bottom: 34px;
  }

  .article-title-wdth {
    width: 85%;
    margin-left: auto;
    margin-right: auto;
  }

  .article-title {
    font-size: 30px;
  }

  .review-content {
    max-width: 80vw;
  }

  .home-large-review {
    padding-top: 9rem;
    padding-bottom: 9rem;
  }

  .slider-arrow-2 {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .testimonial-slide-content-2 {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
  }

  .small-intro-space {
    justify-content: center;
    align-items: center;
    padding-bottom: 20px;
  }

  .small-news-img {
    min-height: 334px;
  }

  .banner-link {
    width: 70%;
  }

  .banner-link.small-width {
    width: 60%;
  }

  .banner-link.medium-width {
    width: 70%;
  }

  .search-section {
    padding-top: 140px;
  }

  .search-title {
    font-size: 62px;
  }

  ._404-wrapper {
    width: 100%;
  }

  .error-404-text {
    font-size: 40px;
  }

  ._404-title {
    font-size: 100px;
  }

  .coming-soon-wrapper-2 {
    text-align: center;
  }

  .coming-soon-title {
    width: 100%;
    font-size: 55px;
  }

  .image-content-right {
    height: 30rem;
  }

  .coming-soon-text {
    width: 85%;
  }

  .hero-form-coming-soon-2 {
    flex-flow: wrap;
    justify-content: space-between;
    align-items: stretch;
    width: 100%;
  }

  .left-about-info {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    justify-content: space-between;
    align-items: center;
  }

  .spin-about, .spin-about.news {
    max-width: 10rem;
  }

  .about-us-hero-banner {
    padding-top: 140px;
  }

  .about-top-info {
    grid-column-gap: 50px;
    grid-row-gap: 50px;
    text-align: center;
    grid-template-columns: 1fr;
    justify-content: center;
    align-self: center;
  }

  .heading-strip-large {
    font-size: 5rem;
  }

  .advantages-description {
    width: 60%;
  }

  .large-advantages-item {
    justify-content: center;
    align-items: center;
    padding-right: 0;
  }

  .service-tab-icon {
    width: 2.5rem;
    height: 2.5rem;
  }

  .service-tab-grid {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    grid-template-columns: 60px 1fr auto;
  }

  .icon-extra-small {
    height: 22px;
  }

  .large-about-photo {
    padding-top: 60px;
  }

  .rental-grig {
    padding-top: 160px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .star-large {
    width: 45px;
  }

  .our-virtual-services {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
  }

  .event-03-title {
    font-size: 45px;
  }

  .all-events {
    padding-bottom: 60px;
  }

  .section-details {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .content-details {
    margin-left: 0;
  }

  .event-hero-intro {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
  }

  .event-banner-title-large {
    font-size: 5.9rem;
  }

  .event-02-content {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }

  .event-par-wdth {
    width: 96%;
  }

  .form-event-detail {
    padding-bottom: 17px;
  }

  .subscribe-title-details {
    font-size: 30px;
  }

  .intro-banner {
    min-height: 520px;
  }

  .stories-item {
    padding: 30px 15px;
  }

  .column-stories.mobile-hidden {
    display: none;
  }

  .carsy-stories {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    grid-template-columns: 1fr 1fr;
  }

  .mobile-show {
    grid-column-gap: .624rem;
    grid-row-gap: .624rem;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    justify-content: flex-start;
    align-items: flex-start;
    display: grid;
  }

  .bottom-slider-arrow-portfolio {
    height: 70px;
  }

  .blog-content {
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    padding-top: 140px;
    padding-bottom: 90px;
  }

  .service-details-title {
    width: 100%;
    font-size: 41px;
  }

  .scroll-blog-circle-2 {
    width: 120px;
    height: 120px;
  }

  .news-paragraph {
    width: 100%;
  }

  .scroll-blog-link {
    margin-bottom: -60px;
    right: 20px;
  }

  .section-portfolio-details {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .blog-template-wrap {
    padding-left: 0;
    padding-right: 0;
  }

  .services-template-wrap {
    padding-left: 15px;
    padding-right: 15px;
  }

  .contact-form {
    padding-bottom: 17px;
  }

  .contact-grid {
    grid-row-gap: 40px;
    grid-template-columns: 1fr;
    padding-left: 15px;
    padding-right: 15px;
  }

  .contact-info-details {
    width: 100%;
  }

  .contacts-intro-link {
    flex-flow: wrap;
    justify-content: space-between;
    display: flex;
  }

  .bottom-contact {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
  }

  .contact-title-details {
    font-size: 30px;
  }

  .rental-benefit {
    justify-content: flex-start;
    align-items: center;
  }

  .hero-rental-title {
    font-size: 40px;
  }

  .rental-banner-title {
    font-size: 50px;
  }

  .home-rental {
    border-top-style: none;
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .blog-banner-title-large {
    font-size: 5.8rem;
  }

  .blog-01-banner {
    min-height: 350px;
    padding-bottom: 60px;
  }

  .hero-news-item {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .news-hero-banner {
    min-height: 500px;
    padding-bottom: 60px;
  }

  .blog-02-title {
    font-size: 68px;
  }

  .small-blog-title {
    font-size: 38px;
  }

  .banner-blog-link {
    width: 70%;
  }

  .left-news-info {
    justify-content: space-between;
    align-items: center;
  }

  .blog-title-03 {
    font-size: 50px;
  }

  .news-03-banner {
    padding-top: 140px;
  }

  .masonry-title-news {
    font-size: 30px;
  }

  .blog-wdth-title {
    width: 80%;
  }

  .row-masonry-news {
    margin-top: 0;
  }

  .blog-card {
    min-height: 350px;
  }

  .category-banner-title {
    font-size: 5.9rem;
  }

  .blog-category-banner {
    min-height: 350px;
    padding-bottom: 60px;
  }

  .news-rich-text h2 {
    font-size: 35px;
  }

  .news-rich-text h3 {
    font-size: 30px;
  }

  .news-rich-text h4 {
    font-size: 26px;
  }

  .left-banner-title {
    font-size: 55px;
  }

  .space-tickets-wrapper {
    width: 87%;
  }

  .project-collection-item-2:nth-child(odd) {
    margin-top: 0;
    margin-bottom: 0;
  }

  .history-tab-link {
    border: 1px solid var(--tab-gray);
    border-radius: 5px;
    flex-direction: column;
    padding-top: 15px;
    padding-bottom: 15px;
    position: relative;
  }

  .history-tab-link.w--current {
    background-color: #f7f8fc;
    border-color: #0003;
  }

  .events-indicator {
    display: none;
  }

  .tab-circle {
    width: 36px;
    height: 36px;
    display: none;
    position: relative;
    bottom: 12px;
  }

  .vacations-tab-menu-2 {
    grid-column-gap: 6px;
    grid-row-gap: 6px;
    grid-template-columns: 1fr 1fr;
    height: auto;
    margin-bottom: 30px;
  }

  .video-history-banner {
    min-height: 600px;
  }

  .history-hero-intro {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
    padding-top: 80px;
  }

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

  .timeline-right {
    padding-bottom: 0;
  }

  .history-dark-title {
    font-size: 36px;
  }

  .team-detail-content {
    justify-content: center;
    align-items: flex-start;
    padding-top: 140px;
  }

  .team-detail-banner {
    margin-bottom: -300px;
  }

  .space-wrap-actor-events {
    padding-top: 60px;
  }

  .team-intro-paragraph {
    width: 100%;
  }

  .height-photo-details {
    height: 300px;
  }

  .actor-details-title {
    width: 100%;
    font-size: 50px;
  }

  .top-paragraph-wdth, .license-par, .licensing-font {
    width: 100%;
  }

  .h2-guide-title {
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .landing-hero-title {
    font-size: 40px;
  }

  .lp-subtitle {
    font-size: 14px;
  }

  .cta-landing-title {
    font-size: 38px;
  }

  .landing-grid, .landing-grid.inner-pages {
    grid-template-columns: 1fr;
  }
}

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

  .grid-system-wrapper {
    flex-direction: row;
  }

  .grid-system {
    flex-direction: column;
    width: 50%;
  }

  .grid-description {
    border-bottom-width: 1px;
    border-bottom-color: #fff3;
  }

  .grid-description.first-description {
    border-bottom: 1px #fff3;
    border-left-style: none;
    border-right-style: solid;
  }

  .grid-description.last-description {
    border-bottom-color: var(--white-10);
  }

  .bottom-style-spacing-desktop {
    bottom: 8%;
  }

  .top-style-spacing-desktop {
    top: 7%;
  }

  .middle-style-spacing-desktop {
    top: 32%;
  }

  .color-container {
    flex-wrap: wrap;
  }

  .h1-tablet {
    font-size: 55px;
  }

  .top-style-spacing-mobile {
    top: 5%;
  }

  .middlr-style-spacing-mobile {
    top: 28%;
  }

  .bottom-style-spacing-mobile {
    bottom: 8%;
  }

  .licensing-title-wrapper {
    grid-column-gap: 20px;
    grid-row-gap: 10px;
    flex-wrap: wrap;
  }

  .licensing-grid, .licensing-grid.last-child {
    grid-template-columns: 1fr;
  }

  .utility-page-content {
    width: 100%;
  }

  .footer-bottom-wrapper {
    flex-wrap: wrap;
    margin-top: 0;
  }

  .footer-copyright {
    text-align: center;
    flex-wrap: wrap;
    width: 100%;
    line-height: 1.6em;
  }

  .about-3-tab-link {
    font-size: 16px;
  }

  .about-3-tab-link.w--current {
    font-size: 18px;
  }

  .section-title-center {
    margin-bottom: 20px;
  }

  .our-services-wrap, .home-9-team-item, .home-23-team-item {
    width: 100%;
  }

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

  .style-guide-tabs-menu {
    grid-template-columns: 1fr;
  }

  .grid-title.first-grid {
    text-align: center;
    width: 100%;
  }

  .landing-customers-content-right {
    grid-column-gap: 20px;
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr 1fr;
  }

  .landing-section-heading-white {
    font-size: 30px;
  }

  .landing-customers-icon-wrapper {
    width: 100%;
  }

  .landing-customers-layout {
    text-align: center;
  }

  .landing-section-title {
    width: 100%;
    font-size: 30px;
  }

  .section-banner.landing-banner {
    background-image: none;
  }

  .footer-rights-wrapper {
    grid-row-gap: 5px;
    justify-content: center;
  }

  .licensing-footer-link {
    text-align: center;
    line-height: 1.6em;
  }

  .gradient-banner-bottom.footer-small {
    top: 120px;
  }

  .gradient-banner-bottom.event-03 {
    top: -35px;
  }

  .megamenu-dropdown-wrapper-3 {
    width: 100%;
  }

  .nav-dropdown-list-item-2.megamenu {
    align-items: center;
    padding-right: 0;
  }

  .dropdown-header-item-2, .header-link-item {
    width: 100%;
  }

  .icon-top.large {
    height: 22px;
  }

  .full-large-con, .full-portfolio-spacing-con {
    padding-left: 15px;
    padding-right: 15px;
  }

  .three-grid.banner-02, .three-grid.banner-event-02 {
    order: 1;
    grid-template-columns: 1fr;
  }

  .initial-text {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }

  .video-section.get-tickets-banner {
    padding-top: 120px;
  }

  .property-listing {
    text-align: left;
  }

  .order-item {
    font-size: 60px;
  }

  .category-name {
    font-size: 38px;
  }

  .grid-category-item {
    text-align: center;
    grid-template-columns: 1fr;
    place-items: start center;
  }

  .image-04-size {
    display: none;
  }

  .small-banner-title {
    width: 100%;
  }

  .small-banner-title.news-title, .small-banner-title.rental-info {
    width: 100%;
    font-size: 26px;
  }

  .hero-banner-description {
    width: 100%;
  }

  .full-container.footer-con {
    margin-bottom: -50px;
  }

  .banner-intro-wrap {
    width: 100%;
    padding-top: 260px;
  }

  .image-06-size {
    width: 100px;
    height: 74px;
    top: -180px;
    left: 33px;
  }

  .intro-text.with-paddings {
    padding-left: 10px;
    padding-right: 10px;
  }

  .image-01-size {
    display: none;
  }

  .image-05-size {
    height: 70px;
    display: none;
    right: -79px;
  }

  .image-03-size {
    top: 80px;
  }

  .image-02-size {
    top: 17px;
    left: -80px;
  }

  .intro-event {
    justify-content: flex-start;
    align-items: center;
  }

  .image-07-size {
    top: 104px;
    left: 42px;
  }

  .image-08-size {
    height: 70px;
    right: 26px;
  }

  .performances-streamed {
    font-size: 62px;
  }

  .height-video-bg {
    height: 68%;
  }

  .submit-btn {
    width: 70px;
  }

  .success-message-content {
    padding-left: 6px;
    padding-right: 6px;
  }

  .message-form {
    width: 92%;
  }

  .footer-cta {
    font-size: 34px;
  }

  .link-text.small-size, .link-text.small-size-hover {
    font-size: 15px;
  }

  .link-text.very-small-size {
    font-size: 13.5px;
  }

  .link-text.extra-small-size {
    font-size: 13.2px;
  }

  .text-rental-link {
    font-size: 45px;
  }

  .large-about-text {
    font-size: 30px;
  }

  .scramble-word {
    font-size: 6.4rem;
  }

  .rental-price {
    font-size: 60px;
  }

  .order-event {
    justify-content: flex-start;
    align-items: center;
  }

  .rental-title-text {
    font-size: 45px;
  }

  .inner-banner-title.style-guide {
    font-size: 50px;
  }

  .inner-banner-title.event-category {
    font-size: 70px;
  }

  .video-banner-overlay {
    background-color: #000000a6;
  }

  .title {
    letter-spacing: .01em;
    font-size: 60px;
  }

  .banner-02-content {
    padding-top: 100px;
  }

  .our-story-grig {
    padding-left: 0;
    padding-right: 0;
  }

  .right-grid-content {
    padding-top: 15px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .photo-overlay {
    background-color: #0000000d;
  }

  .story-subtitle {
    font-size: 13px;
  }

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

  .spin-intro {
    max-width: 12rem;
  }

  .event-banner-title {
    white-space: normal;
    font-size: 5.5rem;
  }

  .unique-event-content {
    grid-row-gap: 100px;
  }

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

  .long-description {
    font-size: 22px;
  }

  .bold-number {
    font-size: 70px;
  }

  .top-description {
    width: 100%;
  }

  .parallax-image-ov {
    background-color: #00000040;
  }

  .full-grid {
    grid-row-gap: 60px;
    grid-template-rows: auto auto auto auto auto auto;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    grid-auto-flow: column;
    padding-bottom: 60px;
    display: grid;
  }

  .large-text-content {
    text-align: center;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    margin-left: 0;
    padding-left: 15px;
    padding-right: 15px;
  }

  .intro-image {
    width: 10rem;
    height: 10rem;
  }

  .intro-image.intro-img-2 {
    width: 12rem;
    margin-right: 30px;
    bottom: -19px;
    left: 0;
  }

  .intro-image.intro-img-1 {
    left: -35px;
  }

  .tabs-menu-style {
    border-bottom-style: none;
    flex-flow: wrap;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    justify-content: center;
    padding-bottom: 0;
    display: grid;
  }

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

  .project-intro-space {
    text-align: center;
    padding-top: 0;
    padding-bottom: 0;
  }

  .expert-item {
    padding: 24px 15px;
  }

  .project-wdth {
    justify-content: flex-start;
    align-items: center;
  }

  .event-par-details {
    width: 100%;
  }

  .section-scroll-images {
    padding-bottom: 40px;
  }

  .about-event {
    font-size: 16px;
  }

  .subscribe-title {
    font-size: 28px;
  }

  .large-event-title {
    font-size: 30px;
  }

  .top-intro-column {
    padding-right: 15px;
  }

  .white-dot {
    width: 50px;
    height: 50px;
  }

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

  .slide-heading.xl {
    font-size: 60px;
  }

  .member-name {
    font-size: 20px;
  }

  .height-photo-container, .height-photo-container.small-card, .height-photo-container.small-tablet-card {
    height: 320px;
  }

  .bold-subtitle {
    width: 100%;
  }

  .video-intro-height {
    width: 80%;
  }

  .history-description {
    font-size: 22px;
  }

  .bold-history-number {
    font-size: 70px;
  }

  .date-news {
    font-size: 13px;
  }

  .blog-long-title {
    width: 100%;
    font-size: 22px;
  }

  .news-top-info-2 {
    grid-row-gap: 9px;
    text-align: left;
  }

  .blog-category {
    font-size: 13px;
  }

  .blog-hero-image {
    height: 300px;
  }

  .blog-title {
    font-size: 35px;
  }

  .parallax-image-02 {
    right: -47px;
  }

  .lagre-title {
    white-space: normal;
    font-size: 5.2rem;
  }

  .parallax-image-03 {
    top: -200px;
  }

  .parallax-image-01 {
    top: -130px;
    left: -79px;
  }

  .logo-bottom-con {
    padding-bottom: 40px;
  }

  .banner-hover-cover {
    padding-bottom: 120px;
  }

  .event-circle-link {
    width: 80px;
    height: 80px;
    margin-bottom: 0;
  }

  .top-info-event {
    text-align: center;
    justify-content: flex-start;
    align-items: center;
  }

  .left-info-details {
    justify-content: flex-start;
    align-items: center;
  }

  .project-left-info {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    max-width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }

  .featured-left {
    min-width: 100%;
    max-width: 100%;
  }

  .home-about {
    padding-bottom: 30px;
  }

  .about-intro-text {
    max-width: 21rem;
  }

  .studio-intro.large, .studio-intro.rental-info {
    padding-bottom: 0;
  }

  .project-arrow-left {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .about-image {
    margin-left: -3rem;
    margin-right: -3rem;
  }

  .project-arrow-right {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .star-medium {
    width: 9vw;
    min-width: 9vw;
  }

  .featured-grid {
    justify-content: center;
    place-items: stretch stretch;
    max-width: 100%;
    display: flex;
  }

  .heading-strip {
    font-size: 3rem;
  }

  .project-small-tag {
    font-size: 14px;
  }

  .long-project-title {
    width: 100%;
    font-size: 24px;
  }

  .hero-gallery {
    grid-template-columns: 1fr 1fr;
    place-items: center;
  }

  .banner-02-description {
    font-size: 16px;
  }

  .banner-02-title {
    font-size: 55px;
  }

  .home-hero-text {
    max-width: 100%;
  }

  .hero-gallery-item {
    width: 40vw;
  }

  .hero-gallery-item.one {
    margin-top: 171px;
  }

  .hero-gallery-item.three {
    top: -40px;
  }

  .hero-gallery-item.two {
    top: -129px;
  }

  .hero-gallery-item.three-event {
    top: -40px;
  }

  .gradient-top-banner.review {
    top: -3960px;
  }

  .gradient-top-banner.news {
    top: -260px;
  }

  .gradient-top-banner.licensing {
    top: -4050px;
  }

  .gradient-top-banner.landing {
    top: -1375px;
  }

  .large-grad-png.news {
    top: -50px;
  }

  .article-title-wdth {
    width: 100%;
  }

  .article-title {
    font-size: 24px;
  }

  .review-content {
    max-width: 85vw;
  }

  .testimonial-credit {
    grid-column-gap: 1rem;
  }

  .number-size-large {
    white-space: pre-wrap;
  }

  .testimonial-slide-content-2 {
    grid-row-gap: 3rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .small-news-img {
    min-height: 288px;
  }

  .banner-link, .banner-link.small-width, .banner-link.medium-width {
    width: 100%;
  }

  .search-title {
    text-align: center;
    font-size: 60px;
  }

  .error-404-text {
    font-size: 44px;
  }

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

  .coming-soon-title {
    font-size: 45px;
  }

  .coming-soon-text {
    width: 100%;
    font-size: 15px;
  }

  .about-info-width {
    width: 100%;
  }

  .left-about-info {
    justify-content: center;
    align-items: center;
  }

  .spin-about {
    max-width: 8rem;
  }

  .about-top-info {
    grid-row-gap: 50px;
    text-align: center;
    align-self: center;
  }

  .heading-strip-large {
    font-size: 3rem;
  }

  .advantages-description {
    width: 100%;
  }

  .large-advantages-item {
    text-align: center;
    flex-flow: column;
    padding-left: 15px;
    padding-right: 15px;
  }

  .advantages-title.large-title-benefit {
    font-size: 60px;
  }

  .text-small {
    padding-bottom: 10px;
    line-height: 1.5em;
  }

  .studio-service-text {
    width: 88%;
  }

  .service-tab-icon {
    width: 2rem;
    height: 2rem;
  }

  .service-tab-grid {
    grid-template-columns: 1fr auto;
    grid-auto-columns: auto;
  }

  .icon-extra-small {
    height: 20px;
  }

  .faq-hero-title {
    font-size: 32px;
  }

  .faq-answer {
    padding-left: 15px;
    padding-right: 15px;
  }

  .initial-text-wrapper {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }

  .rental-grig {
    padding-top: 100px;
    padding-left: 0;
    padding-right: 0;
  }

  .star-large {
    width: 9vw;
    min-width: 9vw;
  }

  .serv-photo-wrap {
    min-height: 500px;
  }

  .service-info-con {
    padding: 15px 0;
  }

  .event-banner-02 {
    padding-top: 120px;
  }

  .event-01-hero-con {
    min-height: 550px;
  }

  .details-body {
    grid-row-gap: 36px;
  }

  .performances-title {
    font-size: 62px;
  }

  .event-hero-intro, .event-02-banner {
    padding-bottom: 80px;
  }

  .event-banner-title-large {
    white-space: normal;
    font-size: 6rem;
  }

  .event-par-wdth {
    width: 100%;
  }

  .event-03-content {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
  }

  .event-form {
    padding-top: 15px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .subscribe-title-details {
    font-size: 25px;
  }

  .stories-item {
    padding-top: 30px;
    padding-bottom: 30px;
  }

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

  .content-blog-details-wrap {
    flex-flow: row;
    justify-content: center;
    align-items: center;
  }

  .date-line {
    width: 30px;
  }

  .bottom-slider-arrow-portfolio {
    border-right-style: none;
    width: 100%;
  }

  .project-pagination-wrapper-2 {
    flex-flow: column wrap;
    justify-content: space-between;
  }

  .date-wrap {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-flow: column;
  }

  .title-blog-container {
    text-align: center;
  }

  .blog-content {
    padding-top: 130px;
    padding-bottom: 110px;
  }

  .service-details-title {
    font-size: 40px;
  }

  .scroll-blog-link {
    right: auto;
  }

  .header-link-item-2 {
    width: 100%;
  }

  .circle-link-wrapper {
    margin-left: -48px;
  }

  .video-item-height {
    min-height: 260px;
  }

  .contacts-intro-link {
    grid-column-gap: 8px;
    grid-row-gap: 12px;
    justify-content: center;
  }

  .contact-title-details {
    font-size: 28px;
  }

  .hero-rental-title {
    font-size: 36px;
  }

  .rental-banner-title {
    font-size: 45px;
  }

  .home-rental {
    padding-top: 80px;
    padding-bottom: 30px;
  }

  .blog-banner-title-large {
    white-space: normal;
    font-size: 6rem;
  }

  .hero-news-item {
    padding: 24px 15px;
  }

  .blog-info-width {
    width: 100%;
  }

  .blog-02-title {
    font-size: 64px;
  }

  .small-blog-title {
    font-size: 24px;
  }

  .banner-blog-link {
    width: 100%;
  }

  .left-news-info {
    justify-content: center;
    align-items: center;
  }

  .blog-title-03 {
    font-size: 42px;
  }

  .masonry-title-news {
    font-size: 24px;
  }

  .blog-wdth-title {
    width: 100%;
  }

  .category-banner-title {
    white-space: normal;
    font-size: 3.5rem;
  }

  .blog-category-banner {
    min-height: 300px;
  }

  .left-banner-title {
    font-size: 45px;
  }

  .space-tickets-wrapper {
    width: 100%;
  }

  .height-video-banner {
    height: 74%;
  }

  .vacations-tab-menu-2 {
    grid-column-gap: 6px;
    grid-row-gap: 6px;
    grid-template-columns: 1fr 1fr 1fr;
  }

  .video-history-banner {
    min-height: 640px;
  }

  .history-dark-title {
    font-size: 30px;
  }

  .team-detail-content {
    padding-top: 130px;
  }

  .team-detail-banner {
    margin-bottom: -200px;
  }

  .actors-detail-info {
    text-align: center;
  }

  .height-photo-details {
    height: 320px;
  }

  .h2-guide-title.with-space {
    font-size: 38px;
  }

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

  .intro-photos.bottom-space {
    grid-row-gap: 40px;
  }

  .landing-hero-title {
    font-size: 35px;
  }

  .lp-subtitle {
    font-size: 14px;
  }

  .cta-landing-title {
    font-size: 30px;
  }
}

#w-node-_18ac1289-94b8-baf7-f505-1bba75be635a-d0355c5c {
  grid-area: 1 / 2 / 2 / 5;
}

#w-node-_3cb24c6c-4e51-f8a9-875b-510f937991a4-d0355c5c, #w-node-_3cb24c6c-4e51-f8a9-875b-510f937991a8-d0355c5c, #w-node-_3cb24c6c-4e51-f8a9-875b-510f937991ac-d0355c5c, #w-node-_3cb24c6c-4e51-f8a9-875b-510f937991b2-d0355c5c, #w-node-_3cb24c6c-4e51-f8a9-875b-510f937991b8-d0355c5c, #w-node-_3cb24c6c-4e51-f8a9-875b-510f937991be-d0355c5c {
  justify-self: center;
}

#w-node-de449d09-7c2e-28ae-5cc8-532958d1c76b-d0355c5c, #w-node-_15aebf21-ab47-b317-b0e9-e92e52439d17-d0355c5c {
  grid-area: 1 / 2 / 2 / 5;
}

#w-node-_2a92c163-ce16-4b2c-a85d-abe58d5399ea-8d5399e5 {
  grid-area: 1 / 2 / 2 / 4;
}

#w-node-_2a92c163-ce16-4b2c-a85d-abe58d5399ed-8d5399e5 {
  grid-area: 1 / 4 / 2 / 5;
}

#w-node-_2a92c163-ce16-4b2c-a85d-abe58d539a02-8d5399e5 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_2a92c163-ce16-4b2c-a85d-abe58d539a2d-8d5399e5 {
  grid-area: 1 / 3 / 2 / 4;
}

#w-node-_2a92c163-ce16-4b2c-a85d-abe58d539a4a-8d5399e5 {
  grid-area: 1 / 4 / 2 / 5;
}

#w-node-_7f3853bb-6874-681e-23c5-daa25690c411-5690c411 {
  grid-area: 1 / 4 / 2 / 5;
  justify-self: end;
}

#w-node-_7f3853bb-6874-681e-23c5-daa25690c412-5690c411 {
  grid-area: 1 / 1 / 2 / 2;
  justify-self: end;
}

#w-node-_7f3853bb-6874-681e-23c5-daa25690c414-5690c411 {
  grid-area: 1 / 2 / 2 / 3;
  justify-self: end;
}

#w-node-_7f3853bb-6874-681e-23c5-daa25690c416-5690c411 {
  grid-area: 1 / 3 / 2 / 4;
  justify-self: end;
}

#w-node-_7f3853bb-6874-681e-23c5-daa25690c418-5690c411 {
  grid-area: 1 / 4 / 2 / 5;
  justify-self: end;
}

#w-node-ff87d258-1427-338f-85b1-a550f8936d2e-f8936d29 {
  justify-self: start;
}

#w-node-ff87d258-1427-338f-85b1-a550f8936e41-f8936d29 {
  justify-self: end;
}

#w-node-_8f88509e-e002-67a8-d518-fd41c4869aa0-d0355c5f {
  grid-area: 1 / 5 / 2 / 6;
  place-self: center;
}

#w-node-_8f88509e-e002-67a8-d518-fd41c4869aa5-d0355c5f {
  grid-area: 1 / 3 / 3 / 5;
  place-self: end center;
}

#w-node-_8f88509e-e002-67a8-d518-fd41c4869aaa-d0355c5f {
  grid-area: 1 / 4 / 5 / 6;
  place-self: end center;
}

#w-node-_8f88509e-e002-67a8-d518-fd41c4869aaf-d0355c5f {
  grid-area: 1 / 1 / 5 / 2;
  place-self: end center;
}

#w-node-_8f88509e-e002-67a8-d518-fd41c4869ab5-d0355c5f, #w-node-_8f88509e-e002-67a8-d518-fd41c4869ab7-d0355c5f {
  grid-area: 1 / 1 / 2 / 6;
}

#w-node-dfcb27e8-49ff-02b2-7db5-e04801fcccb2-d0355c5f {
  justify-self: start;
}

#w-node-dfcb27e8-49ff-02b2-7db5-e04801fcccb3-d0355c5f {
  justify-self: center;
}

#w-node-dfcb27e8-49ff-02b2-7db5-e04801fcccb4-d0355c5f {
  justify-self: end;
}

#w-node-_28534629-943a-3387-897f-6d58bac950e3-d0355c5f {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_28534629-943a-3387-897f-6d58bac950f7-d0355c5f {
  grid-area: 1 / 2 / 2 / 4;
}

#w-node-_97c9d1b8-fd8b-d101-822d-0673b232afe0-d0355c5f {
  grid-area: 1 / 1 / 3 / 3;
  place-self: end center;
}

#w-node-_97c9d1b8-fd8b-d101-822d-0673b232afe5-d0355c5f {
  grid-area: 2 / 4 / 3 / 5;
  place-self: start center;
}

#w-node-_97c9d1b8-fd8b-d101-822d-0673b232afeb-d0355c5f {
  grid-area: 1 / 1 / 3 / 4;
  place-self: center;
}

#w-node-_713d9a63-a69a-f9b9-fd80-4109fdace06c-d0355c5f {
  justify-self: center;
}

#Email-4.w-node-_713d9a63-a69a-f9b9-fd80-4109fdace085-d0355c5f {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_713d9a63-a69a-f9b9-fd80-4109fdace086-d0355c5f {
  justify-self: stretch;
}

#w-node-d9e2ccc1-8f59-8bcd-4ed3-3ff44ee3265b-d0355c5f {
  grid-area: 1 / 2 / 2 / 5;
}

#w-node-d9e2ccc1-8f59-8bcd-4ed3-3ff44ee32667-d0355c5f {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-d9e2ccc1-8f59-8bcd-4ed3-3ff44ee32669-d0355c5f, #w-node-d9e2ccc1-8f59-8bcd-4ed3-3ff44ee3266b-d0355c5f, #w-node-d9e2ccc1-8f59-8bcd-4ed3-3ff44ee3266e-d0355c5f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f1abca06-d60f-66cb-799b-f844910536f3-d0355c5f {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-f1abca06-d60f-66cb-799b-f844910536f5-d0355c5f, #w-node-f1abca06-d60f-66cb-799b-f844910536f7-d0355c5f, #w-node-f1abca06-d60f-66cb-799b-f844910536fa-d0355c5f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-c7a4d4bc-7775-ac97-005a-9720431d7b17-d0355c5f {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-c7a4d4bc-7775-ac97-005a-9720431d7b19-d0355c5f, #w-node-c7a4d4bc-7775-ac97-005a-9720431d7b1b-d0355c5f, #w-node-c7a4d4bc-7775-ac97-005a-9720431d7b1e-d0355c5f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_5c95cd0d-eddb-a021-7b32-322722e93e45-d0355c5f {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_5c95cd0d-eddb-a021-7b32-322722e93e46-d0355c5f {
  grid-area: 2 / 1 / 4 / 3;
  place-self: center start;
}

#w-node-_5c95cd0d-eddb-a021-7b32-322722e93e4b-d0355c5f {
  grid-area: 1 / 1 / 4 / 4;
  place-self: end center;
}

#w-node-_5c95cd0d-eddb-a021-7b32-322722e93e50-d0355c5f {
  grid-area: 1 / 3 / 4 / 4;
  place-self: start center;
}

#w-node-_5c95cd0d-eddb-a021-7b32-322722e93e55-d0355c5f {
  grid-area: 3 / 3 / 4 / 7;
  place-self: end center;
}

#w-node-_5c95cd0d-eddb-a021-7b32-322722e93e5a-d0355c5f {
  grid-area: 2 / 5 / 4 / 7;
  place-self: end;
}

#w-node-_5c95cd0d-eddb-a021-7b32-322722e93e5f-d0355c5f {
  grid-area: 3 / 4 / 4 / 6;
  place-self: center end;
}

#w-node-_5c95cd0d-eddb-a021-7b32-322722e93e64-d0355c5f {
  grid-area: 2 / 1 / 4 / 3;
  place-self: end;
}

#w-node-_5c95cd0d-eddb-a021-7b32-322722e93e69-d0355c5f {
  grid-area: 1 / 4 / 4 / 7;
  place-self: center;
}

#w-node-_6a7a2d61-e177-6466-3952-c06920c8c185-d0355c60, #w-node-cc4ca9f8-2ae0-18be-1cd9-70e47a5622b7-d0355c60 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-cc4ca9f8-2ae0-18be-1cd9-70e47a5622bd-d0355c60 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-cc4ca9f8-2ae0-18be-1cd9-70e47a5622c3-d0355c60 {
  grid-area: 1 / 3 / 2 / 4;
}

#w-node-cc4ca9f8-2ae0-18be-1cd9-70e47a5622c9-d0355c60 {
  grid-area: 1 / 4 / 2 / 5;
}

#w-node-fe2a5437-b3c3-fb45-26be-ddd950363ead-d0355c60 {
  grid-area: 1 / 5 / 2 / 6;
}

#w-node-_5d7bd690-46f7-eb67-49de-5a4093bacfe4-d0355c60 {
  grid-area: 1 / 6 / 2 / 7;
}

#w-node-fc2a3fa4-4fce-bbcc-afa6-873049283919-d0355c60 {
  grid-area: 1 / 5 / 2 / 6;
  place-self: center;
}

#w-node-fc2a3fa4-4fce-bbcc-afa6-87304928391e-d0355c60 {
  grid-area: 1 / 3 / 3 / 5;
  place-self: end center;
}

#w-node-fc2a3fa4-4fce-bbcc-afa6-873049283923-d0355c60 {
  grid-area: 1 / 4 / 5 / 6;
  place-self: end center;
}

#w-node-fc2a3fa4-4fce-bbcc-afa6-873049283928-d0355c60 {
  grid-area: 1 / 1 / 5 / 2;
  place-self: end center;
}

#w-node-fc2a3fa4-4fce-bbcc-afa6-87304928392e-d0355c60, #w-node-fc2a3fa4-4fce-bbcc-afa6-873049283930-d0355c60 {
  grid-area: 1 / 1 / 2 / 6;
}

#w-node-_26561c3d-a566-8407-0708-1bbdb99e9d57-d0355c61, #w-node-_26561c3d-a566-8407-0708-1bbdb99e9d65-d0355c61 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_26561c3d-a566-8407-0708-1bbdb99e9d7b-d0355c61 {
  grid-area: 1 / 3 / 2 / 4;
}

#w-node-_26561c3d-a566-8407-0708-1bbdb99e9d99-d0355c61 {
  grid-area: 1 / 4 / 2 / 5;
}

#w-node-_26561c3d-a566-8407-0708-1bbdb99e9da9-d0355c61 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_26561c3d-a566-8407-0708-1bbdb99e9dbf-d0355c61 {
  grid-area: 1 / 3 / 2 / 4;
}

#w-node-_26561c3d-a566-8407-0708-1bbdb99e9ddd-d0355c61 {
  grid-area: 1 / 4 / 2 / 5;
}

#w-node-_26561c3d-a566-8407-0708-1bbdb99e9ded-d0355c61 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_26561c3d-a566-8407-0708-1bbdb99e9e03-d0355c61 {
  grid-area: 1 / 3 / 2 / 4;
}

#w-node-_26561c3d-a566-8407-0708-1bbdb99e9e21-d0355c61 {
  grid-area: 1 / 4 / 2 / 5;
}

#w-node-_1ea1f1d8-f648-027c-c2c9-a235cd18f9bb-d0355c61 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_1ea1f1d8-f648-027c-c2c9-a235cd18f9bc-d0355c61 {
  grid-area: 2 / 1 / 4 / 3;
  place-self: center start;
}

#w-node-_1ea1f1d8-f648-027c-c2c9-a235cd18f9c1-d0355c61 {
  grid-area: 1 / 1 / 4 / 4;
  place-self: end center;
}

#w-node-_1ea1f1d8-f648-027c-c2c9-a235cd18f9c6-d0355c61 {
  grid-area: 1 / 3 / 4 / 4;
  place-self: start center;
}

#w-node-_1ea1f1d8-f648-027c-c2c9-a235cd18f9cb-d0355c61 {
  grid-area: 3 / 3 / 4 / 7;
  place-self: end center;
}

#w-node-_1ea1f1d8-f648-027c-c2c9-a235cd18f9d0-d0355c61 {
  grid-area: 2 / 5 / 4 / 7;
  place-self: end;
}

#w-node-_1ea1f1d8-f648-027c-c2c9-a235cd18f9d5-d0355c61 {
  grid-area: 3 / 4 / 4 / 6;
  place-self: center end;
}

#w-node-_1ea1f1d8-f648-027c-c2c9-a235cd18f9da-d0355c61 {
  grid-area: 2 / 1 / 4 / 3;
  place-self: end;
}

#w-node-_1ea1f1d8-f648-027c-c2c9-a235cd18f9df-d0355c61 {
  grid-area: 1 / 4 / 4 / 7;
  place-self: center;
}

#w-node-_435953d0-86b9-3553-21ba-b32f459a0c4e-d0355c62 {
  grid-area: 1 / 2 / 2 / 3;
  justify-self: center;
}

#w-node-_435953d0-86b9-3553-21ba-b32f459a0c6d-d0355c62 {
  grid-area: 1 / 2 / 2 / 3;
  place-self: start end;
}

#w-node-_435953d0-86b9-3553-21ba-b32f459a0c71-d0355c62 {
  grid-area: 1 / 2 / 2 / 3;
  align-self: end;
}

#w-node-_360e189c-317e-eca9-2d6c-031088ccf96e-d0355c62, #w-node-_360e189c-317e-eca9-2d6c-031088ccf97f-d0355c62 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_360e189c-317e-eca9-2d6c-031088ccf991-d0355c62 {
  grid-area: 1 / 3 / 2 / 4;
}

#w-node-_360e189c-317e-eca9-2d6c-031088ccf994-d0355c62 {
  grid-area: 1 / 4 / 2 / 5;
}

#w-node-_12e5953c-581a-10f5-a689-1f3a9ff14d36-d0355c62 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_12e5953c-581a-10f5-a689-1f3a9ff14d4c-d0355c62 {
  grid-area: 1 / 3 / 2 / 4;
}

#w-node-_12e5953c-581a-10f5-a689-1f3a9ff14d5b-d0355c62 {
  grid-area: 1 / 4 / 2 / 5;
}

#w-node-_2fcec302-2026-7f48-b87c-8ebdfc926c44-d0355c62 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_2fcec302-2026-7f48-b87c-8ebdfc926c5a-d0355c62 {
  grid-area: 1 / 3 / 2 / 4;
}

#w-node-_2fcec302-2026-7f48-b87c-8ebdfc926c69-d0355c62 {
  grid-area: 1 / 4 / 2 / 5;
}

#w-node-d0da208a-141d-4a63-6f3d-b82fa331d875-d0355c62 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-d0da208a-141d-4a63-6f3d-b82fa331d884-d0355c62 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-d0da208a-141d-4a63-6f3d-b82fa331d88d-d0355c62 {
  grid-area: 2 / 1 / 3 / 3;
  align-self: end;
}

#w-node-_14007e5f-1b77-1e90-b725-997241b87d99-41b87d94 {
  grid-area: 1 / 2 / 2 / 4;
}

#w-node-_14007e5f-1b77-1e90-b725-997241b87d9c-41b87d94 {
  grid-area: 1 / 4 / 2 / 5;
}

#w-node-_14007e5f-1b77-1e90-b725-997241b87db1-41b87d94 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_14007e5f-1b77-1e90-b725-997241b87ddc-41b87d94 {
  grid-area: 1 / 3 / 2 / 4;
}

#w-node-_14007e5f-1b77-1e90-b725-997241b87df9-41b87d94 {
  grid-area: 1 / 4 / 2 / 5;
}

#w-node-_10909273-a17f-3b17-7e93-debf1f6db1bc-1f6db1a3 {
  grid-area: 1 / 1 / 3 / 3;
  place-self: end center;
}

#w-node-_10909273-a17f-3b17-7e93-debf1f6db1c1-1f6db1a3 {
  grid-area: 2 / 4 / 3 / 5;
  place-self: start center;
}

#w-node-_10909273-a17f-3b17-7e93-debf1f6db1c7-1f6db1a3 {
  grid-area: 1 / 1 / 3 / 4;
  place-self: center;
}

#w-node-_376b3f40-0805-90ee-3026-b64c8c3076c0-d0355c63 {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-_376b3f40-0805-90ee-3026-b64c8c3076c6-d0355c63 {
  grid-area: 1 / 3 / 2 / 4;
  justify-self: end;
}

#w-node-_845c8f2d-7472-d072-d7d2-73137b0fb1db-d0355c63 {
  grid-area: 1 / 2 / 2 / 5;
}

#w-node-_217ce590-f2e8-7646-dcbc-5f8c9c8e3ed0-d0355c64 {
  grid-area: 2 / 1 / 3 / 2;
  align-self: end;
}

#w-node-_472bb6ef-ecc7-1be5-dac3-7c5d76cc1dda-d0355c64 {
  grid-area: 1 / 2 / 2 / 5;
}

#w-node-b746db8d-f718-9ae6-d651-4c98591abfcd-d0355c64, #w-node-_716e27ed-126e-c4ff-ae1a-af7b0cab514a-d0355c64, #w-node-_01862fe1-ba6f-18c3-ddb7-8c1f17e7c23e-d0355c64, #w-node-fdee3277-8825-6af2-28a5-bf73ef5f7eb2-d0355c64 {
  justify-self: stretch;
}

#w-node-_94e2519e-cec7-06f4-49cc-4441dfbd2302-d0355c65 {
  justify-self: start;
}

#w-node-_94e2519e-cec7-06f4-49cc-4441dfbd2303-d0355c65 {
  justify-self: center;
}

#w-node-_94e2519e-cec7-06f4-49cc-4441dfbd2304-d0355c65 {
  justify-self: end;
}

#w-node-fa83d529-9251-69a1-382d-922ef3572406-d0355c67 {
  grid-area: 1 / 1 / 2 / 3;
}

#Email-2.w-node-fa83d529-9251-69a1-382d-922ef3572407-d0355c67 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-fa83d529-9251-69a1-382d-922ef3572408-d0355c67 {
  grid-area: 1 / 2 / 2 / 3;
  place-self: center;
}

#w-node-_1026ceab-78c2-bd05-1533-4aa3ed5ca61e-d0355c67, #w-node-_1026ceab-78c2-bd05-1533-4aa3ed5ca61f-d0355c67, #w-node-_1026ceab-78c2-bd05-1533-4aa3ed5ca621-d0355c67, #w-node-_1026ceab-78c2-bd05-1533-4aa3ed5ca622-d0355c67, #w-node-_1026ceab-78c2-bd05-1533-4aa3ed5ca623-d0355c67, #w-node-_1026ceab-78c2-bd05-1533-4aa3ed5ca625-d0355c67, #w-node-_1026ceab-78c2-bd05-1533-4aa3ed5ca626-d0355c67, #w-node-_1026ceab-78c2-bd05-1533-4aa3ed5ca628-d0355c67, #w-node-_1026ceab-78c2-bd05-1533-4aa3ed5ca629-d0355c67, #w-node-_1026ceab-78c2-bd05-1533-4aa3ed5ca62b-d0355c67, #w-node-_1026ceab-78c2-bd05-1533-4aa3ed5ca62c-d0355c67, #w-node-_1026ceab-78c2-bd05-1533-4aa3ed5ca62d-d0355c67, #w-node-_1026ceab-78c2-bd05-1533-4aa3ed5ca62f-d0355c67, #w-node-_1026ceab-78c2-bd05-1533-4aa3ed5ca630-d0355c67, #w-node-_1026ceab-78c2-bd05-1533-4aa3ed5ca632-d0355c67, #w-node-_1026ceab-78c2-bd05-1533-4aa3ed5ca633-d0355c67, #w-node-_1026ceab-78c2-bd05-1533-4aa3ed5ca635-d0355c67, #w-node-_1026ceab-78c2-bd05-1533-4aa3ed5ca636-d0355c67, #w-node-_1026ceab-78c2-bd05-1533-4aa3ed5ca639-d0355c67, #w-node-_1026ceab-78c2-bd05-1533-4aa3ed5ca63a-d0355c67, #w-node-_1026ceab-78c2-bd05-1533-4aa3ed5ca63b-d0355c67, #w-node-_1026ceab-78c2-bd05-1533-4aa3ed5ca63d-d0355c67, #w-node-_1026ceab-78c2-bd05-1533-4aa3ed5ca63e-d0355c67, #w-node-_1026ceab-78c2-bd05-1533-4aa3ed5ca640-d0355c67, #w-node-_1026ceab-78c2-bd05-1533-4aa3ed5ca641-d0355c67, #w-node-_1026ceab-78c2-bd05-1533-4aa3ed5ca643-d0355c67, #w-node-_1026ceab-78c2-bd05-1533-4aa3ed5ca644-d0355c67, #w-node-_1026ceab-78c2-bd05-1533-4aa3ed5ca646-d0355c67, #w-node-_1026ceab-78c2-bd05-1533-4aa3ed5ca647-d0355c67, #w-node-_1026ceab-78c2-bd05-1533-4aa3ed5ca648-d0355c67, #w-node-_1026ceab-78c2-bd05-1533-4aa3ed5ca64a-d0355c67, #w-node-_1026ceab-78c2-bd05-1533-4aa3ed5ca64b-d0355c67, #w-node-_1026ceab-78c2-bd05-1533-4aa3ed5ca64d-d0355c67, #w-node-_1026ceab-78c2-bd05-1533-4aa3ed5ca64e-d0355c67, #w-node-_1026ceab-78c2-bd05-1533-4aa3ed5ca650-d0355c67, #w-node-_1026ceab-78c2-bd05-1533-4aa3ed5ca651-d0355c67 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_1b0bbe39-c5fd-fc2f-3637-67992b2e4c58-d0355c68 {
  justify-self: start;
}

#w-node-_1b0bbe39-c5fd-fc2f-3637-67992b2e4c59-d0355c68 {
  justify-self: center;
}

#w-node-_1b0bbe39-c5fd-fc2f-3637-67992b2e4c5a-d0355c68 {
  justify-self: end;
}

#w-node-_1b0bbe39-c5fd-fc2f-3637-67992b2e4c7d-d0355c68 {
  justify-self: start;
}

#w-node-_1b0bbe39-c5fd-fc2f-3637-67992b2e4c7e-d0355c68 {
  justify-self: center;
}

#w-node-_1b0bbe39-c5fd-fc2f-3637-67992b2e4c7f-d0355c68 {
  justify-self: end;
}

#w-node-_309a90ab-6ee1-45b0-6d6c-bab62b46b4fc-d0355c68 {
  justify-self: start;
}

#w-node-_309a90ab-6ee1-45b0-6d6c-bab62b46b4fd-d0355c68 {
  justify-self: center;
}

#w-node-_309a90ab-6ee1-45b0-6d6c-bab62b46b4fe-d0355c68 {
  justify-self: end;
}

#w-node-_72cbc1ef-868f-a79b-3460-19474a0d5917-d0355c68 {
  justify-self: start;
}

#w-node-_72cbc1ef-868f-a79b-3460-19474a0d5918-d0355c68 {
  justify-self: center;
}

#w-node-_72cbc1ef-868f-a79b-3460-19474a0d5919-d0355c68 {
  justify-self: end;
}

#w-node-_15633e7b-41c8-ff4d-b4db-f50deafe4a96-d0355c69 {
  grid-area: 1 / 2 / 2 / 3;
  justify-self: center;
}

#w-node-_9552ae83-5532-3be6-8e57-6af1674cb27e-d0355c69, #w-node-ddbbae8a-dcad-0bde-a650-ef21dec3c76c-d0355c69, #w-node-_6c490a76-7d2c-88aa-d4df-d3b4bcbe1282-d0355c69 {
  justify-self: center;
}

#Email-4.w-node-dc6760bc-678e-008f-38c4-39129977bc70-d0355c69 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-dc6760bc-678e-008f-38c4-39129977bc71-d0355c69 {
  justify-self: stretch;
}

#w-node-c853a126-6558-68d1-e9bb-7c1560c5dca4-d0355c69 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-c853a126-6558-68d1-e9bb-7c1560c5dca5-d0355c69 {
  grid-area: 2 / 1 / 4 / 3;
  place-self: center start;
}

#w-node-c853a126-6558-68d1-e9bb-7c1560c5dcaa-d0355c69 {
  grid-area: 1 / 1 / 4 / 4;
  place-self: end center;
}

#w-node-c853a126-6558-68d1-e9bb-7c1560c5dcaf-d0355c69 {
  grid-area: 1 / 3 / 4 / 4;
  place-self: start center;
}

#w-node-c853a126-6558-68d1-e9bb-7c1560c5dcb4-d0355c69 {
  grid-area: 3 / 3 / 4 / 7;
  place-self: end center;
}

#w-node-c853a126-6558-68d1-e9bb-7c1560c5dcb9-d0355c69 {
  grid-area: 2 / 5 / 4 / 7;
  place-self: end;
}

#w-node-c853a126-6558-68d1-e9bb-7c1560c5dcbe-d0355c69 {
  grid-area: 3 / 4 / 4 / 6;
  place-self: center end;
}

#w-node-c853a126-6558-68d1-e9bb-7c1560c5dcc3-d0355c69 {
  grid-area: 2 / 1 / 4 / 3;
  place-self: end;
}

#w-node-c853a126-6558-68d1-e9bb-7c1560c5dcc8-d0355c69 {
  grid-area: 1 / 4 / 4 / 7;
  place-self: center;
}

#w-node-dade63b8-c4cd-a76f-b63e-ae91c82f5754-d0355c6a, #w-node-dade63b8-c4cd-a76f-b63e-ae91c82f5756-d0355c6a {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-dade63b8-c4cd-a76f-b63e-ae91c82f5759-d0355c6a {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-dade63b8-c4cd-a76f-b63e-ae91c82f5770-d0355c6a {
  grid-area: 2 / 2 / 3 / 3;
}

#w-node-_646d90ad-1fd9-4b9b-00e6-c3edc3b836e8-d0355c6b {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_646d90ad-1fd9-4b9b-00e6-c3edc3b836f7-d0355c6b {
  grid-area: 1 / 4 / 2 / 5;
  place-self: end;
}

#w-node-_5f11ebc1-a332-4fad-598c-1448bdf56e75-d0355c6c {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-ebd7ef5d-ac47-2e12-274c-1fde7b8d3809-d0355c6c, #w-node-ebd7ef5d-ac47-2e12-274c-1fde7b8d381f-d0355c6c {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9fea6bcf-851d-edf1-81dd-0ca6bd6f18d6-d0355c6c {
  justify-self: start;
}

#w-node-_9fea6bcf-851d-edf1-81dd-0ca6bd6f18d7-d0355c6c {
  justify-self: center;
}

#w-node-_9fea6bcf-851d-edf1-81dd-0ca6bd6f18d8-d0355c6c {
  justify-self: end;
}

#w-node-_7aa12b2d-88fb-5473-f876-2758efceb5d5-d0355c6d {
  grid-area: 2 / 1 / 3 / 2;
  align-self: end;
}

#w-node-_7aa12b2d-88fb-5473-f876-2758efceb5df-d0355c6d {
  grid-area: 1 / 2 / 2 / 5;
}

#w-node-_7aa12b2d-88fb-5473-f876-2758efceb618-d0355c6d {
  justify-self: stretch;
}

#w-node-_76618ad2-84e8-a116-e87e-8fd628aed7cf-d0355c6e {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_76618ad2-84e8-a116-e87e-8fd628aed7f0-d0355c6e {
  grid-area: 2 / 1 / 3 / 2;
  align-self: end;
}

#w-node-da831757-348b-f277-2875-57191574cf01-d0355c6e {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-da831757-348b-f277-2875-57191574cf02-d0355c6e {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-da831757-348b-f277-2875-57191574cf03-d0355c6e {
  justify-self: start;
}

#w-node-da831757-348b-f277-2875-57191574cf36-d0355c6e {
  align-self: start;
}

#Email-4.w-node-_182992ff-0935-4c01-b9dc-6122a0ac1205-d0355c6e {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_182992ff-0935-4c01-b9dc-6122a0ac1206-d0355c6e {
  justify-self: stretch;
}

#w-node-bc18193c-3482-92ff-62a7-709629afedb7-d0355c6e {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-bc18193c-3482-92ff-62a7-709629afedb8-d0355c6e {
  grid-area: 2 / 1 / 4 / 3;
  place-self: center start;
}

#w-node-bc18193c-3482-92ff-62a7-709629afedbd-d0355c6e {
  grid-area: 1 / 1 / 4 / 4;
  place-self: end center;
}

#w-node-bc18193c-3482-92ff-62a7-709629afedc2-d0355c6e {
  grid-area: 1 / 3 / 4 / 4;
  place-self: start center;
}

#w-node-bc18193c-3482-92ff-62a7-709629afedc7-d0355c6e {
  grid-area: 3 / 3 / 4 / 7;
  place-self: end center;
}

#w-node-bc18193c-3482-92ff-62a7-709629afedcc-d0355c6e {
  grid-area: 2 / 5 / 4 / 7;
  place-self: end;
}

#w-node-bc18193c-3482-92ff-62a7-709629afedd1-d0355c6e {
  grid-area: 3 / 4 / 4 / 6;
  place-self: center end;
}

#w-node-bc18193c-3482-92ff-62a7-709629afedd6-d0355c6e {
  grid-area: 2 / 1 / 4 / 3;
  place-self: end;
}

#w-node-bc18193c-3482-92ff-62a7-709629afeddb-d0355c6e {
  grid-area: 1 / 4 / 4 / 7;
  place-self: center;
}

#w-node-_96b4e60d-7d54-3624-374b-dfa5f434aeb3-d0355c6f {
  grid-area: 1 / 2 / 2 / 5;
}

#w-node-c56a5f9a-e238-4c32-2cc1-15cc259e2caa-d0355c6f {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-c56a5f9a-e238-4c32-2cc1-15cc259e2cab-d0355c6f {
  grid-area: 2 / 1 / 4 / 3;
  place-self: center start;
}

#w-node-c56a5f9a-e238-4c32-2cc1-15cc259e2cb0-d0355c6f {
  grid-area: 1 / 1 / 4 / 4;
  place-self: end center;
}

#w-node-c56a5f9a-e238-4c32-2cc1-15cc259e2cb5-d0355c6f {
  grid-area: 1 / 3 / 4 / 4;
  place-self: start center;
}

#w-node-c56a5f9a-e238-4c32-2cc1-15cc259e2cba-d0355c6f {
  grid-area: 3 / 3 / 4 / 7;
  place-self: end center;
}

#w-node-c56a5f9a-e238-4c32-2cc1-15cc259e2cbf-d0355c6f {
  grid-area: 2 / 5 / 4 / 7;
  place-self: end;
}

#w-node-c56a5f9a-e238-4c32-2cc1-15cc259e2cc4-d0355c6f {
  grid-area: 3 / 4 / 4 / 6;
  place-self: center end;
}

#w-node-c56a5f9a-e238-4c32-2cc1-15cc259e2cc9-d0355c6f {
  grid-area: 2 / 1 / 4 / 3;
  place-self: end;
}

#w-node-c56a5f9a-e238-4c32-2cc1-15cc259e2cce-d0355c6f {
  grid-area: 1 / 4 / 4 / 7;
  place-self: center;
}

#w-node-_6d154a6b-5ea7-56a4-5ecb-d2a23a85e1db-d0355c70 {
  grid-area: 1 / 2 / 2 / 5;
}

#w-node-_6d154a6b-5ea7-56a4-5ecb-d2a23a85e1e7-d0355c70 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_6d154a6b-5ea7-56a4-5ecb-d2a23a85e1e9-d0355c70, #w-node-_6d154a6b-5ea7-56a4-5ecb-d2a23a85e1eb-d0355c70, #w-node-_6d154a6b-5ea7-56a4-5ecb-d2a23a85e1ee-d0355c70 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_6d154a6b-5ea7-56a4-5ecb-d2a23a85e1fa-d0355c70 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_6d154a6b-5ea7-56a4-5ecb-d2a23a85e1fc-d0355c70, #w-node-_6d154a6b-5ea7-56a4-5ecb-d2a23a85e1fe-d0355c70, #w-node-_6d154a6b-5ea7-56a4-5ecb-d2a23a85e201-d0355c70 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_15051b0b-3921-14f2-0400-efca8304dd2b-d0355c70 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_15051b0b-3921-14f2-0400-efca8304dd2d-d0355c70, #w-node-_15051b0b-3921-14f2-0400-efca8304dd2f-d0355c70, #w-node-_15051b0b-3921-14f2-0400-efca8304dd32-d0355c70 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_75a90408-dcda-deac-8059-b3082bdf7b67-d0355c70 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_75a90408-dcda-deac-8059-b3082bdf7b69-d0355c70, #w-node-_75a90408-dcda-deac-8059-b3082bdf7b6b-d0355c70, #w-node-_75a90408-dcda-deac-8059-b3082bdf7b6e-d0355c70 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_31d6c9cc-24e6-b430-6631-6066e805cbe9-d0355c70 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_31d6c9cc-24e6-b430-6631-6066e805cbeb-d0355c70, #w-node-_31d6c9cc-24e6-b430-6631-6066e805cbed-d0355c70, #w-node-_31d6c9cc-24e6-b430-6631-6066e805cbf0-d0355c70 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_511baaeb-aa97-cde4-ee62-f027d4945581-d0355c70 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_511baaeb-aa97-cde4-ee62-f027d4945583-d0355c70, #w-node-_511baaeb-aa97-cde4-ee62-f027d4945585-d0355c70, #w-node-_511baaeb-aa97-cde4-ee62-f027d4945588-d0355c70 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-d5717c46-5c7d-237a-8104-fee21be07b50-d0355c70 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-d5717c46-5c7d-237a-8104-fee21be07b52-d0355c70, #w-node-d5717c46-5c7d-237a-8104-fee21be07b54-d0355c70, #w-node-d5717c46-5c7d-237a-8104-fee21be07b57-d0355c70 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_6d154a6b-5ea7-56a4-5ecb-d2a23a85e20f-d0355c70 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_6d154a6b-5ea7-56a4-5ecb-d2a23a85e211-d0355c70, #w-node-_6d154a6b-5ea7-56a4-5ecb-d2a23a85e213-d0355c70, #w-node-_6d154a6b-5ea7-56a4-5ecb-d2a23a85e216-d0355c70 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-c4e96d2c-e5ed-41f3-d6d1-e377b460cb71-d0355c70 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-c4e96d2c-e5ed-41f3-d6d1-e377b460cb72-d0355c70 {
  grid-area: 2 / 1 / 4 / 3;
  place-self: center start;
}

#w-node-c4e96d2c-e5ed-41f3-d6d1-e377b460cb77-d0355c70 {
  grid-area: 1 / 1 / 4 / 4;
  place-self: end center;
}

#w-node-c4e96d2c-e5ed-41f3-d6d1-e377b460cb7c-d0355c70 {
  grid-area: 1 / 3 / 4 / 4;
  place-self: start center;
}

#w-node-c4e96d2c-e5ed-41f3-d6d1-e377b460cb81-d0355c70 {
  grid-area: 3 / 3 / 4 / 7;
  place-self: end center;
}

#w-node-c4e96d2c-e5ed-41f3-d6d1-e377b460cb86-d0355c70 {
  grid-area: 2 / 5 / 4 / 7;
  place-self: end;
}

#w-node-c4e96d2c-e5ed-41f3-d6d1-e377b460cb8b-d0355c70 {
  grid-area: 3 / 4 / 4 / 6;
  place-self: center end;
}

#w-node-c4e96d2c-e5ed-41f3-d6d1-e377b460cb90-d0355c70 {
  grid-area: 2 / 1 / 4 / 3;
  place-self: end;
}

#w-node-c4e96d2c-e5ed-41f3-d6d1-e377b460cb95-d0355c70 {
  grid-area: 1 / 4 / 4 / 7;
  place-self: center;
}

#w-node-_32b006ec-8df6-14b6-0ccb-049cbbd6a92c-d0355c71 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-c0854992-57df-559d-1bc0-33a9ff2dd25c-d0355c71 {
  grid-area: 1 / 4 / 2 / 5;
}

#w-node-_32b006ec-8df6-14b6-0ccb-049cbbd6a92e-d0355c71 {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-_3e6c030f-984d-6acc-745e-416e98bf832f-d0355c71 {
  grid-area: 1 / 1 / 2 / 2;
  justify-self: end;
}

#w-node-_91d4cf36-1ba3-d602-f79a-44523059477a-d0355c71 {
  grid-area: 1 / 2 / 2 / 4;
}

#w-node-f1ddc137-011e-bfdf-4e22-701a7799bde9-d0355c71, #w-node-bd63933e-8ab0-c71a-94b7-d8802f744dcb-d0355c71 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_92dba6dd-f1b4-079e-312a-4872224e3139-d0355c71 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-f9707bc4-7e09-7174-159e-d6f51ce476a1-d0355c71 {
  justify-self: start;
}

#w-node-f9707bc4-7e09-7174-159e-d6f51ce476a2-d0355c71 {
  justify-self: center;
}

#w-node-f9707bc4-7e09-7174-159e-d6f51ce476a3-d0355c71 {
  justify-self: end;
}

#w-node-_34c3f2ce-e9a9-0b6d-9e1f-165572acccc5-d0355c71 {
  justify-self: start;
}

#w-node-_34c3f2ce-e9a9-0b6d-9e1f-165572acccc6-d0355c71 {
  justify-self: center;
}

#w-node-_34c3f2ce-e9a9-0b6d-9e1f-165572acccc7-d0355c71 {
  justify-self: end;
}

#w-node-dfc44850-858e-0531-6554-b8bf6e59b75d-d0355c71, #w-node-_42213497-57b2-e07b-c69e-3329ae5c1eae-d0355c71 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-a9f1f5f4-024c-397c-1b84-8e206623626b-d0355c71 {
  grid-area: 2 / 2 / 3 / 3;
}

#w-node-_1014badc-1619-2a0f-329f-4b54ac750d8f-d0355c71 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-f77d2998-541b-a34b-4376-b32e86234dfc-d0355c71 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-c5149f7e-81fb-71e1-e50c-7386b1d0c613-d0355c71 {
  grid-area: 2 / 1 / 3 / 3;
  align-self: end;
}

#w-node-f1098ae1-3864-7196-fc5a-e1614d617271-d0355c71 {
  grid-area: 1 / 1 / 2 / 3;
}

#Email-2.w-node-f1098ae1-3864-7196-fc5a-e1614d617274-d0355c71 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-f1098ae1-3864-7196-fc5a-e1614d617275-d0355c71 {
  grid-area: 1 / 2 / 2 / 3;
  place-self: center;
}

#w-node-_1014badc-1619-2a0f-329f-4b54ac750d6f-d0355c71 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_1014badc-1619-2a0f-329f-4b54ac750d70-d0355c71 {
  grid-area: 2 / 1 / 4 / 3;
  place-self: center start;
}

#w-node-_1014badc-1619-2a0f-329f-4b54ac750d75-d0355c71 {
  grid-area: 1 / 1 / 4 / 4;
  place-self: end center;
}

#w-node-_1014badc-1619-2a0f-329f-4b54ac750d7a-d0355c71 {
  grid-area: 1 / 3 / 4 / 4;
  place-self: start center;
}

#w-node-aa46742a-cc5c-6762-72fd-a7d3ab2a89cf-d0355c71 {
  grid-area: 3 / 3 / 4 / 7;
  place-self: end center;
}

#w-node-_1014badc-1619-2a0f-329f-4b54ac750d7f-d0355c71 {
  grid-area: 2 / 5 / 4 / 7;
  place-self: end;
}

#w-node-_1014badc-1619-2a0f-329f-4b54ac750d84-d0355c71 {
  grid-area: 3 / 4 / 4 / 6;
  place-self: center end;
}

#w-node-f55537aa-0d36-9ffd-88a1-caec5e5497d0-d0355c71 {
  grid-area: 2 / 1 / 4 / 3;
  place-self: end;
}

#w-node-_1014badc-1619-2a0f-329f-4b54ac750d89-d0355c71 {
  grid-area: 1 / 4 / 4 / 7;
  place-self: center;
}

#w-node-f116047c-eb12-6eac-edc6-1cb6d856db90-d0355c72 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_3ff1495f-cd8b-1130-2816-b2295c18f7cf-d0355c72 {
  grid-area: 2 / 1 / 3 / 2;
  align-self: end;
}

#w-node-_5160dfc2-3d80-fd8a-9ed2-b181812c4076-d0355c72 {
  grid-area: 1 / 5 / 2 / 6;
  place-self: center;
}

#w-node-_5160dfc2-3d80-fd8a-9ed2-b181812c407b-d0355c72 {
  grid-area: 1 / 3 / 3 / 5;
  place-self: end center;
}

#w-node-_5160dfc2-3d80-fd8a-9ed2-b181812c4080-d0355c72 {
  grid-area: 1 / 4 / 5 / 6;
  place-self: end center;
}

#w-node-_5160dfc2-3d80-fd8a-9ed2-b181812c4085-d0355c72 {
  grid-area: 1 / 1 / 5 / 2;
  place-self: end center;
}

#w-node-_5160dfc2-3d80-fd8a-9ed2-b181812c408a-d0355c72, #w-node-_5160dfc2-3d80-fd8a-9ed2-b181812c408c-d0355c72 {
  grid-area: 1 / 1 / 2 / 6;
}

#w-node-_5eb76314-952d-1cee-1690-216f934dddcb-d0355c72 {
  grid-area: 1 / 2 / 2 / 5;
}

#w-node-_5b01f94f-387f-b72a-072d-25c50684d7b0-d0355c72 {
  grid-area: 1 / 2 / 2 / 3;
}

#Email-4.w-node-_4189ce76-f3de-c307-4fc3-0b2bd1d801c0-d0355c72 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_4189ce76-f3de-c307-4fc3-0b2bd1d801c9-d0355c72 {
  justify-self: stretch;
}

#w-node-a4c2cf35-1ecd-14ff-5b76-65faf3491f8f-d0355c72 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_756df552-1fde-05f1-bcbb-974b6085782d-d0355c72, #w-node-_756df552-1fde-05f1-bcbb-974b60857843-d0355c72 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-bd454b87-da07-a63c-0e9e-c60a8fb4cca9-d0355c72 {
  grid-area: 2 / 3 / 3 / 4;
}

#w-node-bd454b87-da07-a63c-0e9e-c60a8fb4ccae-d0355c72, #w-node-bd454b87-da07-a63c-0e9e-c60a8fb4ccc4-d0355c72 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-fb0033d5-fd9b-7085-f448-da34755f29e6-d0355c72 {
  grid-area: 3 / 1 / 4 / 2;
}

#w-node-fb0033d5-fd9b-7085-f448-da34755f29eb-d0355c72, #w-node-fb0033d5-fd9b-7085-f448-da34755f2a01-d0355c72 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_89045b39-3189-782c-88a5-039b233e3f03-d0355c72 {
  grid-area: 3 / 3 / 4 / 4;
}

#w-node-_89045b39-3189-782c-88a5-039b233e3f08-d0355c72, #w-node-_89045b39-3189-782c-88a5-039b233e3f1e-d0355c72 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_8f0237a6-5775-ee03-4c99-c42ffee70a60-d0355c72 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-efdd9c3c-9e22-d195-adc9-5f494da5d636-d0355c72 {
  grid-area: 1 / 2 / 2 / 4;
}

#w-node-_8a989743-9a8f-5b18-5090-32644043ed4b-d0355c72 {
  justify-self: stretch;
}

#w-node-_9475f2d5-2754-f05e-efa2-bd23829188b1-d0355c73 {
  place-self: start;
}

#w-node-_9475f2d5-2754-f05e-efa2-bd23829188b2-d0355c73 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: start end;
}

#w-node-_9475f2d5-2754-f05e-efa2-bd23829188b4-d0355c73 {
  grid-area: 2 / 1 / 3 / 3;
  place-self: end center;
}

#w-node-_9475f2d5-2754-f05e-efa2-bd23829188b5-d0355c73 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: start end;
}

#w-node-_9475f2d5-2754-f05e-efa2-bd23829188b7-d0355c73 {
  grid-area: 1 / 4 / 3 / 5;
  place-self: center end;
}

#w-node-_9475f2d5-2754-f05e-efa2-bd23829188b8-d0355c73 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: start end;
}

#w-node-_033e9f01-0e03-1416-4c26-e76e2c725330-d0355c73 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-fa5c237b-cd9a-6080-1877-5dc7285ed586-d0355c73, #w-node-fa5c237b-cd9a-6080-1877-5dc7285ed588-d0355c73 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-fa5c237b-cd9a-6080-1877-5dc7285ed5a2-d0355c73 {
  grid-area: 2 / 2 / 3 / 3;
}

#w-node-_033e9f01-0e03-1416-4c26-e76e2c7252fc-d0355c73 {
  grid-area: 1 / 2 / 2 / 3;
  justify-self: center;
}

#w-node-_033e9f01-0e03-1416-4c26-e76e2c72530e-d0355c73 {
  grid-area: 1 / 2 / 2 / 3;
  place-self: start end;
}

#w-node-_033e9f01-0e03-1416-4c26-e76e2c725312-d0355c73 {
  grid-area: 1 / 2 / 2 / 3;
  align-self: end;
}

#w-node-_970bc598-650e-2f5a-4eb8-8c5d75243ab9-d0355c73, #w-node-_03731ce0-5fa4-a1d2-5dd2-d1514f09f32f-d0355c73 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-d3e277a7-75b9-8a3c-f7dd-2c09689d4253-d0355c73 {
  grid-area: 1 / 3 / 2 / 4;
}

#w-node-e13b2c70-2b9c-e7a9-ccf7-9430df3da9a7-d0355c73 {
  grid-area: 1 / 4 / 2 / 5;
}

#w-node-_6041286f-61e6-bd16-c5f2-506552c76001-d0355c73 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_6041286f-61e6-bd16-c5f2-506552c76005-d0355c73 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
}

#w-node-_6041286f-61e6-bd16-c5f2-506552c76006-d0355c73, #w-node-_6041286f-61e6-bd16-c5f2-506552c76012-d0355c73 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_6041286f-61e6-bd16-c5f2-506552c76016-d0355c73 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
}

#w-node-_6041286f-61e6-bd16-c5f2-506552c76017-d0355c73, #w-node-_6041286f-61e6-bd16-c5f2-506552c76023-d0355c73 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_6041286f-61e6-bd16-c5f2-506552c76027-d0355c73 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
}

#w-node-_6041286f-61e6-bd16-c5f2-506552c76028-d0355c73, #w-node-_5ec15608-86d2-a9a9-3aa3-bede457fbc57-d0355c74, #w-node-_49cca918-c86c-541f-7ce5-f9a9d329efa9-d0355c74, #w-node-d6e596d5-8de4-ff78-b72f-c7add2c74cdf-d0355c74, #w-node-_3183a63b-821f-18e9-8428-c854ca490475-d0355c74 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_64716eef-3378-2a57-e872-9b8e830d1771-d0355c75 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_64716eef-3378-2a57-e872-9b8e830d1776-d0355c75, #w-node-_64716eef-3378-2a57-e872-9b8e830d178c-d0355c75 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_64716eef-3378-2a57-e872-9b8e830d179a-d0355c75 {
  grid-area: 2 / 3 / 3 / 4;
}

#w-node-_64716eef-3378-2a57-e872-9b8e830d179f-d0355c75, #w-node-_64716eef-3378-2a57-e872-9b8e830d17b5-d0355c75 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_64716eef-3378-2a57-e872-9b8e830d17c3-d0355c75 {
  grid-area: 3 / 1 / 4 / 2;
}

#w-node-_64716eef-3378-2a57-e872-9b8e830d17c8-d0355c75, #w-node-_64716eef-3378-2a57-e872-9b8e830d17de-d0355c75 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_64716eef-3378-2a57-e872-9b8e830d17ec-d0355c75 {
  grid-area: 3 / 3 / 4 / 4;
}

#w-node-_64716eef-3378-2a57-e872-9b8e830d17f1-d0355c75, #w-node-_64716eef-3378-2a57-e872-9b8e830d1807-d0355c75 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f868750f-fba5-a86c-3d51-0faf43ce7821-d0355c75 {
  grid-area: 4 / 2 / 5 / 3;
}

#w-node-f868750f-fba5-a86c-3d51-0faf43ce7826-d0355c75, #w-node-f868750f-fba5-a86c-3d51-0faf43ce783c-d0355c75 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4d7663f5-c170-14cb-34db-d1cd959341f1-d0355c75 {
  grid-area: 5 / 3 / 6 / 4;
}

#w-node-_4d7663f5-c170-14cb-34db-d1cd959341f6-d0355c75, #w-node-_4d7663f5-c170-14cb-34db-d1cd9593420c-d0355c75 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_44a9bcbf-765d-a242-2aa8-d3f7e29a2553-d0355c75 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_44a9bcbf-765d-a242-2aa8-d3f7e29a2567-d0355c75 {
  grid-area: 1 / 2 / 2 / 4;
}

#w-node-_8e7e07d0-1561-77a6-375f-4af806afb19b-d0355c76 {
  place-self: start;
}

#w-node-_8e7e07d0-1561-77a6-375f-4af806afb19c-d0355c76 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: start end;
}

#w-node-_8e7e07d0-1561-77a6-375f-4af806afb1a0-d0355c76 {
  grid-area: 2 / 1 / 3 / 3;
  place-self: end center;
}

#w-node-_8e7e07d0-1561-77a6-375f-4af806afb1a1-d0355c76 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: start end;
}

#w-node-_8e7e07d0-1561-77a6-375f-4af806afb1a3-d0355c76 {
  grid-area: 1 / 4 / 3 / 5;
  place-self: center end;
}

#w-node-_8e7e07d0-1561-77a6-375f-4af806afb1a4-d0355c76 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: start end;
}

#w-node-b645cbc5-9ff0-82f2-acde-bf31a80ff8a4-d0355c76 {
  grid-area: 1 / 2 / 2 / 5;
}

#w-node-_02d798a2-c6d3-e1ef-6efa-34e4dc6f7e58-d0355c76, #w-node-_02d798a2-c6d3-e1ef-6efa-34e4dc6f7e5a-d0355c76 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_02d798a2-c6d3-e1ef-6efa-34e4dc6f7e74-d0355c76 {
  grid-area: 2 / 2 / 3 / 3;
}

#w-node-b8c523c4-fba6-1940-6444-b2fdd1cd320a-d0355c77 {
  grid-area: 2 / 1 / 3 / 2;
  align-self: end;
}

#w-node-_266e5e9a-1982-58ef-344f-35b853cb1f84-d0355c77, #w-node-_6686a75d-7538-4fad-4cda-4c563415514d-d0355c77, #w-node-_4bc40402-7b22-0b87-7f17-507ba9e86c32-d0355c77, #w-node-faca9922-5545-fd50-0c32-1d02d6cc3074-d0355c77, #w-node-_44cc189a-d0c8-30f6-03c2-c79f3e4d8a6e-d0355c77, #w-node-d09da591-4700-a5db-205d-c326b1ad527a-d0355c77 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-e7d4dd82-0188-3986-fb6e-4f07c833a3a9-d0355c79, #w-node-e7d4dd82-0188-3986-fb6e-4f07c833a3ab-d0355c79, #w-node-e7d4dd82-0188-3986-fb6e-4f07c833a3ad-d0355c79, #w-node-e7d4dd82-0188-3986-fb6e-4f07c833a3af-d0355c79, #w-node-e7d4dd82-0188-3986-fb6e-4f07c833a3b1-d0355c79, #w-node-e7d4dd82-0188-3986-fb6e-4f07c833a3b4-d0355c79, #w-node-e7d4dd82-0188-3986-fb6e-4f07c833a3b6-d0355c79, #w-node-e7d4dd82-0188-3986-fb6e-4f07c833a3b8-d0355c79, #w-node-e7d4dd82-0188-3986-fb6e-4f07c833a3ba-d0355c79, #w-node-e7d4dd82-0188-3986-fb6e-4f07c833a3bc-d0355c79 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_57c06b07-a6f1-f3e5-a210-c6cec20cc747-d0355c7b {
  grid-area: 1 / 2 / 2 / 5;
}

#w-node-_57c06b07-a6f1-f3e5-a210-c6cec20cc749-d0355c7b {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_57c06b07-a6f1-f3e5-a210-c6cec20cc7e1-d0355c7b {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_57c06b07-a6f1-f3e5-a210-c6cec20cc879-d0355c7b {
  grid-area: 1 / 3 / 2 / 4;
}

#w-node-d8dfec26-7463-6b98-5452-ec996bb2d415-d0355c7b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-d8dfec26-7463-6b98-5452-ec996bb2d419-d0355c7b {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
}

#w-node-d8dfec26-7463-6b98-5452-ec996bb2d41a-d0355c7b, #w-node-d8dfec26-7463-6b98-5452-ec996bb2d428-d0355c7b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-d8dfec26-7463-6b98-5452-ec996bb2d42c-d0355c7b {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
}

#w-node-d8dfec26-7463-6b98-5452-ec996bb2d42d-d0355c7b, #w-node-d8dfec26-7463-6b98-5452-ec996bb2d43d-d0355c7b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-d8dfec26-7463-6b98-5452-ec996bb2d441-d0355c7b {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
}

#w-node-d8dfec26-7463-6b98-5452-ec996bb2d442-d0355c7b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_445d21a5-f63b-db9c-d8cc-901e572f10fb-d0355c7c, #w-node-_6d6fb0e8-64e9-fa9d-21ce-cd0f7532a813-d0355c7c, #w-node-e9679c83-7773-c7ec-ba89-f2f7e781369b-d0355c7c, #w-node-ee37bc29-f4b6-cca2-c8ab-c54836868aad-d0355c7c {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-dab84096-ad36-6f2f-dde7-4739758d2d8f-d0355c7c {
  grid-area: 1 / 3 / 2 / 5;
}

#w-node-_55a5c04f-9f33-7910-d235-7416ce12ed92-d0355c7c {
  grid-area: 1 / 1 / 2 / 3;
}

@media screen and (min-width: 1920px) {
  #w-node-_8f88509e-e002-67a8-d518-fd41c4869aa0-d0355c5f {
    grid-column-start: 4;
    justify-self: end;
  }

  #w-node-_8f88509e-e002-67a8-d518-fd41c4869aa5-d0355c5f {
    grid-column-end: 5;
    justify-self: center;
  }

  #w-node-_5c95cd0d-eddb-a021-7b32-322722e93e64-d0355c5f {
    grid-column-end: 4;
  }

  #w-node-fc2a3fa4-4fce-bbcc-afa6-873049283919-d0355c60 {
    grid-column-start: 4;
    justify-self: end;
  }

  #w-node-fc2a3fa4-4fce-bbcc-afa6-87304928391e-d0355c60 {
    grid-column-end: 5;
    justify-self: center;
  }

  #w-node-_1ea1f1d8-f648-027c-c2c9-a235cd18f9da-d0355c61, #w-node-c853a126-6558-68d1-e9bb-7c1560c5dcc3-d0355c69 {
    grid-column-end: 4;
  }

  #w-node-da831757-348b-f277-2875-57191574cf01-d0355c6e {
    grid-area: 1 / 2 / 2 / 3;
  }

  #w-node-bc18193c-3482-92ff-62a7-709629afedd6-d0355c6e, #w-node-c56a5f9a-e238-4c32-2cc1-15cc259e2cc9-d0355c6f, #w-node-c4e96d2c-e5ed-41f3-d6d1-e377b460cb90-d0355c70, #w-node-f55537aa-0d36-9ffd-88a1-caec5e5497d0-d0355c71 {
    grid-column-end: 4;
  }

  #w-node-_5160dfc2-3d80-fd8a-9ed2-b181812c4076-d0355c72 {
    grid-column-start: 4;
    justify-self: end;
  }

  #w-node-_5160dfc2-3d80-fd8a-9ed2-b181812c407b-d0355c72 {
    grid-column-end: 5;
    justify-self: center;
  }

  #w-node-_5b01f94f-387f-b72a-072d-25c50684d7b0-d0355c72 {
    grid-area: 1 / 2 / 2 / 3;
  }
}

@media screen and (min-width: 1440px) {
  #w-node-_5c95cd0d-eddb-a021-7b32-322722e93e5f-d0355c5f, #w-node-_1ea1f1d8-f648-027c-c2c9-a235cd18f9d5-d0355c61, #w-node-c853a126-6558-68d1-e9bb-7c1560c5dcbe-d0355c69, #w-node-bc18193c-3482-92ff-62a7-709629afedd1-d0355c6e, #w-node-c56a5f9a-e238-4c32-2cc1-15cc259e2cc4-d0355c6f, #w-node-c4e96d2c-e5ed-41f3-d6d1-e377b460cb8b-d0355c70, #w-node-_1014badc-1619-2a0f-329f-4b54ac750d84-d0355c71 {
    grid-area: 3 / 4 / 4 / 6;
    place-self: center end;
  }
}

@media screen and (min-width: 1280px) {
  #w-node-dfcb27e8-49ff-02b2-7db5-e04801fccc9d-d0355c5f {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_28534629-943a-3387-897f-6d58bac950f7-d0355c5f {
    grid-area: 1 / 2 / 2 / 4;
  }

  #w-node-_376b3f40-0805-90ee-3026-b64c8c3076c6-d0355c63 {
    justify-self: center;
  }

  #w-node-_1b0bbe39-c5fd-fc2f-3637-67992b2e4c43-d0355c68, #w-node-_1b0bbe39-c5fd-fc2f-3637-67992b2e4c68-d0355c68, #w-node-_309a90ab-6ee1-45b0-6d6c-bab62b46b4e7-d0355c68, #w-node-_72cbc1ef-868f-a79b-3460-19474a0d5902-d0355c68, #w-node-_9fea6bcf-851d-edf1-81dd-0ca6bd6f18c1-d0355c6c {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_76618ad2-84e8-a116-e87e-8fd628aed7f2-d0355c6e {
    grid-area: 1 / 2 / 2 / 3;
  }

  #w-node-_76618ad2-84e8-a116-e87e-8fd628aed7fd-d0355c6e {
    grid-area: 1 / 3 / 2 / 4;
  }

  #w-node-_76618ad2-84e8-a116-e87e-8fd628aed805-d0355c6e {
    grid-area: 1 / 4 / 2 / 5;
  }

  #w-node-ddfd641d-9c8c-c43e-b23e-dfdc4f739a1e-d0355c71, #w-node-ddfd641d-9c8c-c43e-b23e-dfdc4f739a26-d0355c71 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_5a9a2233-60b7-dee4-4ea4-d1dc2c6d2c05-d0355c72 {
    grid-area: 1 / 2 / 2 / 3;
  }

  #w-node-da59f77a-11b9-d8cd-c1d8-d6e7171998f2-d0355c72 {
    grid-area: 1 / 3 / 2 / 4;
  }

  #w-node-df1fd9fa-a451-1712-6411-1c366a53cbc0-d0355c72 {
    grid-area: 1 / 4 / 2 / 5;
  }

  #w-node-efdd9c3c-9e22-d195-adc9-5f494da5d636-d0355c72, #w-node-_44a9bcbf-765d-a242-2aa8-d3f7e29a2567-d0355c75 {
    grid-area: 1 / 2 / 2 / 4;
  }

  #w-node-b8c523c4-fba6-1940-6444-b2fdd1cd320c-d0355c77 {
    grid-area: 1 / 2 / 2 / 3;
  }

  #w-node-b8c523c4-fba6-1940-6444-b2fdd1cd3217-d0355c77 {
    grid-area: 1 / 3 / 2 / 4;
  }

  #w-node-b8c523c4-fba6-1940-6444-b2fdd1cd321f-d0355c77 {
    grid-area: 1 / 4 / 2 / 5;
  }
}

@media screen and (max-width: 991px) {
  #w-node-_2a92c163-ce16-4b2c-a85d-abe58d5399ea-8d5399e5 {
    grid-column-end: 5;
  }

  #w-node-_2a92c163-ce16-4b2c-a85d-abe58d5399ed-8d5399e5 {
    grid-row: 2 / 3;
    grid-column-start: 2;
  }

  #w-node-_28534629-943a-3387-897f-6d58bac950e3-d0355c5f, #w-node-_28534629-943a-3387-897f-6d58bac950f7-d0355c5f {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_713d9a63-a69a-f9b9-fd80-4109fdace06c-d0355c5f {
    grid-area: span 1 / span 1 / span 1 / span 1;
    justify-self: center;
  }

  #w-node-_26561c3d-a566-8407-0708-1bbdb99e9d65-d0355c61 {
    grid-column-end: 4;
  }

  #w-node-_26561c3d-a566-8407-0708-1bbdb99e9d7b-d0355c61 {
    grid-row: 2 / 3;
    grid-column-start: 2;
    align-self: end;
  }

  #w-node-_26561c3d-a566-8407-0708-1bbdb99e9d99-d0355c61 {
    grid-row-end: 3;
    align-self: stretch;
  }

  #w-node-_26561c3d-a566-8407-0708-1bbdb99e9da9-d0355c61 {
    grid-column-end: 4;
  }

  #w-node-_26561c3d-a566-8407-0708-1bbdb99e9dbf-d0355c61 {
    grid-row: 2 / 3;
    grid-column-start: 2;
    align-self: end;
  }

  #w-node-_26561c3d-a566-8407-0708-1bbdb99e9ddd-d0355c61 {
    grid-row-end: 3;
    align-self: stretch;
  }

  #w-node-_26561c3d-a566-8407-0708-1bbdb99e9ded-d0355c61 {
    grid-column-end: 4;
  }

  #w-node-_26561c3d-a566-8407-0708-1bbdb99e9e03-d0355c61 {
    grid-row: 2 / 3;
    grid-column-start: 2;
    align-self: end;
  }

  #w-node-_26561c3d-a566-8407-0708-1bbdb99e9e21-d0355c61 {
    grid-row-end: 3;
    align-self: stretch;
  }

  #w-node-_435953d0-86b9-3553-21ba-b32f459a0c6d-d0355c62 {
    grid-column: 3 / 4;
    justify-self: center;
  }

  #w-node-_435953d0-86b9-3553-21ba-b32f459a0c71-d0355c62 {
    grid-column: 1 / 2;
    justify-self: center;
  }

  #w-node-_360e189c-317e-eca9-2d6c-031088ccf97f-d0355c62 {
    grid-column-end: 4;
  }

  #w-node-_360e189c-317e-eca9-2d6c-031088ccf991-d0355c62 {
    grid-row: 2 / 3;
    grid-column-start: 2;
    align-self: end;
  }

  #w-node-_360e189c-317e-eca9-2d6c-031088ccf994-d0355c62 {
    grid-row-end: 3;
    align-self: stretch;
  }

  #w-node-_12e5953c-581a-10f5-a689-1f3a9ff14d36-d0355c62 {
    grid-column-end: 4;
  }

  #w-node-_12e5953c-581a-10f5-a689-1f3a9ff14d4c-d0355c62 {
    grid-row: 2 / 3;
    grid-column-start: 2;
    align-self: end;
  }

  #w-node-_12e5953c-581a-10f5-a689-1f3a9ff14d5b-d0355c62 {
    grid-row-end: 3;
    align-self: stretch;
  }

  #w-node-_2fcec302-2026-7f48-b87c-8ebdfc926c44-d0355c62 {
    grid-column-end: 4;
  }

  #w-node-_2fcec302-2026-7f48-b87c-8ebdfc926c5a-d0355c62 {
    grid-row: 2 / 3;
    grid-column-start: 2;
    align-self: end;
  }

  #w-node-_2fcec302-2026-7f48-b87c-8ebdfc926c69-d0355c62 {
    grid-row-end: 3;
    align-self: stretch;
  }

  #w-node-d0da208a-141d-4a63-6f3d-b82fa331d884-d0355c62, #w-node-d0da208a-141d-4a63-6f3d-b82fa331d88d-d0355c62 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_14007e5f-1b77-1e90-b725-997241b87d99-41b87d94 {
    grid-column-end: 5;
  }

  #w-node-_14007e5f-1b77-1e90-b725-997241b87d9c-41b87d94 {
    grid-row: 2 / 3;
    grid-column-start: 2;
  }

  #w-node-_376b3f40-0805-90ee-3026-b64c8c3076c0-d0355c63 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_376b3f40-0805-90ee-3026-b64c8c3076c6-d0355c63 {
    order: -9999;
    grid-area: span 1 / span 1 / span 1 / span 1;
    justify-self: center;
  }

  #w-node-_845c8f2d-7472-d072-d7d2-73137b0fb20a-d0355c63 {
    grid-area: 1 / 1 / 3 / 2;
  }

  #w-node-_15633e7b-41c8-ff4d-b4db-f50deafe4a96-d0355c69 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-dade63b8-c4cd-a76f-b63e-ae91c82f5759-d0355c6a {
    grid-area: 1 / 1 / 2 / 3;
  }

  #w-node-dade63b8-c4cd-a76f-b63e-ae91c82f5770-d0355c6a {
    grid-column-start: 1;
  }

  #w-node-_646d90ad-1fd9-4b9b-00e6-c3edc3b836f7-d0355c6b {
    grid-column: 1 / 2;
    justify-self: start;
  }

  #w-node-_96b4e60d-7d54-3624-374b-dfa5f434aee2-d0355c6f {
    grid-area: 1 / 1 / 3 / 2;
  }

  #w-node-c0854992-57df-559d-1bc0-33a9ff2dd25c-d0355c71 {
    grid-column-start: 2;
  }

  #w-node-_32b006ec-8df6-14b6-0ccb-049cbbd6a92e-d0355c71 {
    grid-column-end: 4;
  }

  #w-node-_61e9e1e0-3d00-0b2f-a69e-979a7aa26550-d0355c71 {
    grid-area: 2 / 1 / 3 / 4;
  }

  #w-node-_91d4cf36-1ba3-d602-f79a-44523059477a-d0355c71 {
    grid-column-end: 5;
  }

  #w-node-f10d83f5-ebf2-8e80-bf1e-fd403914a80c-d0355c71 {
    grid-area: 1 / 1 / 2 / 3;
  }

  #w-node-a9f1f5f4-024c-397c-1b84-8e206623626b-d0355c71 {
    grid-column-start: 1;
  }

  #w-node-f77d2998-541b-a34b-4376-b32e86234dfc-d0355c71, #w-node-c5149f7e-81fb-71e1-e50c-7386b1d0c613-d0355c71 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_34377cef-9cb7-59a8-9f17-0240047f3dc8-d0355c72, #w-node-de6b9af4-f2fb-c854-8bf0-52dd50055310-d0355c72, #w-node-b7d5489b-2cbb-e005-d943-424251525ec9-d0355c72, #w-node-a4cb2a03-1ebb-3918-4682-27d81fcd1a68-d0355c72 {
    grid-area: 1 / 1 / 3 / 2;
  }

  #w-node-_5b01f94f-387f-b72a-072d-25c50684d7b0-d0355c72 {
    grid-area: span 1 / span 1 / span 1 / span 1;
    justify-self: center;
  }

  #w-node-a4c2cf35-1ecd-14ff-5b76-65faf3491f8f-d0355c72 {
    grid-column: 1 / 2;
  }

  #w-node-bd454b87-da07-a63c-0e9e-c60a8fb4cca9-d0355c72 {
    grid-area: 1 / 2 / 2 / 3;
  }

  #w-node-fb0033d5-fd9b-7085-f448-da34755f29e6-d0355c72 {
    grid-row: 2 / 3;
    align-self: end;
  }

  #w-node-_89045b39-3189-782c-88a5-039b233e3f03-d0355c72 {
    grid-area: 2 / 2 / 3 / 3;
  }

  #w-node-_8f0237a6-5775-ee03-4c99-c42ffee70a60-d0355c72, #w-node-efdd9c3c-9e22-d195-adc9-5f494da5d636-d0355c72 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-fa5c237b-cd9a-6080-1877-5dc7285ed58b-d0355c73 {
    grid-area: 1 / 1 / 2 / 3;
  }

  #w-node-fa5c237b-cd9a-6080-1877-5dc7285ed5a2-d0355c73 {
    grid-column-start: 1;
  }

  #w-node-_033e9f01-0e03-1416-4c26-e76e2c72530e-d0355c73 {
    grid-column: 3 / 4;
    justify-self: center;
  }

  #w-node-_033e9f01-0e03-1416-4c26-e76e2c725312-d0355c73 {
    grid-column: 1 / 2;
    justify-self: center;
  }

  #w-node-d3e277a7-75b9-8a3c-f7dd-2c09689d4253-d0355c73 {
    grid-row: 2 / 3;
    grid-column-start: 2;
    align-self: end;
  }

  #w-node-e13b2c70-2b9c-e7a9-ccf7-9430df3da9a7-d0355c73 {
    grid-row-end: 3;
  }

  #w-node-_64716eef-3378-2a57-e872-9b8e830d1771-d0355c75 {
    grid-column: 1 / 2;
  }

  #w-node-_64716eef-3378-2a57-e872-9b8e830d179a-d0355c75 {
    grid-area: 1 / 2 / 2 / 3;
  }

  #w-node-_64716eef-3378-2a57-e872-9b8e830d17c3-d0355c75 {
    grid-row: 2 / 3;
    align-self: end;
  }

  #w-node-_64716eef-3378-2a57-e872-9b8e830d17ec-d0355c75 {
    grid-area: 2 / 2 / 3 / 3;
  }

  #w-node-f868750f-fba5-a86c-3d51-0faf43ce7821-d0355c75 {
    grid-area: 3 / 2 / 4 / 3;
    align-self: start;
  }

  #w-node-_4d7663f5-c170-14cb-34db-d1cd959341f1-d0355c75 {
    grid-area: 3 / 1 / 4 / 2;
  }

  #w-node-_44a9bcbf-765d-a242-2aa8-d3f7e29a2553-d0355c75, #w-node-_44a9bcbf-765d-a242-2aa8-d3f7e29a2567-d0355c75 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-b645cbc5-9ff0-82f2-acde-bf31a80ff8d8-d0355c76, #w-node-b645cbc5-9ff0-82f2-acde-bf31a80ff911-d0355c76, #w-node-b645cbc5-9ff0-82f2-acde-bf31a80ff94a-d0355c76, #w-node-b645cbc5-9ff0-82f2-acde-bf31a80ff983-d0355c76 {
    grid-area: 1 / 1 / 3 / 2;
  }

  #w-node-_02d798a2-c6d3-e1ef-6efa-34e4dc6f7e5d-d0355c76 {
    grid-area: 1 / 1 / 2 / 3;
  }

  #w-node-_02d798a2-c6d3-e1ef-6efa-34e4dc6f7e74-d0355c76 {
    grid-column-start: 1;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_2a92c163-ce16-4b2c-a85d-abe58d539a02-8d5399e5 {
    grid-column-end: 5;
  }

  #w-node-_2a92c163-ce16-4b2c-a85d-abe58d539a2d-8d5399e5 {
    grid-area: 2 / 2 / 3 / 5;
  }

  #w-node-_2a92c163-ce16-4b2c-a85d-abe58d539a4a-8d5399e5 {
    grid-row: 3 / 4;
    grid-column-start: 2;
  }

  #w-node-_744cc4bb-a55a-42be-e12a-65d2b61bcf32-d0355c5f {
    order: -9999;
    justify-self: center;
  }

  #w-node-_8f88509e-e002-67a8-d518-fd41c4869aa0-d0355c5f {
    grid-column-start: 4;
    justify-self: end;
  }

  #w-node-d9e2ccc1-8f59-8bcd-4ed3-3ff44ee3266b-d0355c5f, #w-node-f1abca06-d60f-66cb-799b-f844910536f7-d0355c5f, #w-node-c7a4d4bc-7775-ac97-005a-9720431d7b1b-d0355c5f {
    grid-area: 2 / 2 / 3 / 4;
  }

  #w-node-_5c95cd0d-eddb-a021-7b32-322722e93e64-d0355c5f {
    grid-area: 1 / 3 / 3 / 6;
    place-self: start center;
  }

  #w-node-cc4ca9f8-2ae0-18be-1cd9-70e47a5622b7-d0355c60, #w-node-cc4ca9f8-2ae0-18be-1cd9-70e47a5622bd-d0355c60, #w-node-cc4ca9f8-2ae0-18be-1cd9-70e47a5622c3-d0355c60, #w-node-cc4ca9f8-2ae0-18be-1cd9-70e47a5622c9-d0355c60 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-fc2a3fa4-4fce-bbcc-afa6-873049283919-d0355c60 {
    grid-column-start: 4;
    justify-self: end;
  }

  #w-node-_26561c3d-a566-8407-0708-1bbdb99e9d65-d0355c61 {
    grid-column-end: 5;
    justify-self: center;
  }

  #w-node-_26561c3d-a566-8407-0708-1bbdb99e9d7b-d0355c61 {
    grid-column-end: 5;
  }

  #w-node-_26561c3d-a566-8407-0708-1bbdb99e9d99-d0355c61 {
    grid-row: 3 / 4;
    grid-column-start: 2;
  }

  #w-node-_26561c3d-a566-8407-0708-1bbdb99e9da9-d0355c61 {
    grid-column-end: 5;
    justify-self: center;
  }

  #w-node-_26561c3d-a566-8407-0708-1bbdb99e9dbf-d0355c61 {
    grid-column-end: 5;
  }

  #w-node-_26561c3d-a566-8407-0708-1bbdb99e9ddd-d0355c61 {
    grid-row: 3 / 4;
    grid-column-start: 2;
  }

  #w-node-_26561c3d-a566-8407-0708-1bbdb99e9ded-d0355c61 {
    grid-column-end: 5;
    justify-self: center;
  }

  #w-node-_26561c3d-a566-8407-0708-1bbdb99e9e03-d0355c61 {
    grid-column-end: 5;
  }

  #w-node-_26561c3d-a566-8407-0708-1bbdb99e9e21-d0355c61 {
    grid-row: 3 / 4;
    grid-column-start: 2;
  }

  #w-node-_1ea1f1d8-f648-027c-c2c9-a235cd18f9da-d0355c61 {
    grid-area: 1 / 3 / 3 / 6;
    place-self: start center;
  }

  #w-node-_435953d0-86b9-3553-21ba-b32f459a0c4e-d0355c62 {
    grid-column: 1 / 4;
  }

  #w-node-_435953d0-86b9-3553-21ba-b32f459a0c6d-d0355c62 {
    grid-column: 3 / 4;
    justify-self: end;
  }

  #w-node-_435953d0-86b9-3553-21ba-b32f459a0c71-d0355c62 {
    grid-column-start: 1;
    justify-self: start;
  }

  #w-node-_360e189c-317e-eca9-2d6c-031088ccf97f-d0355c62 {
    grid-column-end: 5;
    justify-self: center;
  }

  #w-node-_360e189c-317e-eca9-2d6c-031088ccf991-d0355c62 {
    grid-column-end: 5;
  }

  #w-node-_360e189c-317e-eca9-2d6c-031088ccf994-d0355c62 {
    grid-row: 3 / 4;
    grid-column-start: 2;
  }

  #w-node-_12e5953c-581a-10f5-a689-1f3a9ff14d36-d0355c62 {
    grid-column-end: 5;
    justify-self: center;
  }

  #w-node-_12e5953c-581a-10f5-a689-1f3a9ff14d4c-d0355c62 {
    grid-column-end: 5;
  }

  #w-node-_12e5953c-581a-10f5-a689-1f3a9ff14d5b-d0355c62 {
    grid-row: 3 / 4;
    grid-column-start: 2;
  }

  #w-node-_2fcec302-2026-7f48-b87c-8ebdfc926c44-d0355c62 {
    grid-column-end: 5;
    justify-self: center;
  }

  #w-node-_2fcec302-2026-7f48-b87c-8ebdfc926c5a-d0355c62 {
    grid-column-end: 5;
  }

  #w-node-_2fcec302-2026-7f48-b87c-8ebdfc926c69-d0355c62 {
    grid-row: 3 / 4;
    grid-column-start: 2;
  }

  #w-node-_14007e5f-1b77-1e90-b725-997241b87db1-41b87d94 {
    grid-column-end: 5;
  }

  #w-node-_14007e5f-1b77-1e90-b725-997241b87ddc-41b87d94 {
    grid-area: 2 / 2 / 3 / 5;
  }

  #w-node-_14007e5f-1b77-1e90-b725-997241b87df9-41b87d94 {
    grid-row: 3 / 4;
    grid-column-start: 2;
  }

  #w-node-_376b3f40-0805-90ee-3026-b64c8c3076c6-d0355c63 {
    order: -9999;
    justify-self: center;
  }

  #w-node-c853a126-6558-68d1-e9bb-7c1560c5dcc3-d0355c69 {
    grid-area: 1 / 3 / 3 / 6;
    place-self: start center;
  }

  #w-node-ff4bf96d-7ebd-8978-2388-e112e5160bbe-d0355c6a {
    grid-area: 2 / 2 / 3 / 3;
  }

  #w-node-_76618ad2-84e8-a116-e87e-8fd628aed7d0-d0355c6e {
    grid-area: 1 / 1 / 2 / 3;
  }

  #w-node-_76618ad2-84e8-a116-e87e-8fd628aed7f2-d0355c6e {
    grid-column: 1 / 2;
  }

  #w-node-_76618ad2-84e8-a116-e87e-8fd628aed7fd-d0355c6e {
    grid-column: 2 / 3;
  }

  #w-node-_76618ad2-84e8-a116-e87e-8fd628aed805-d0355c6e {
    grid-area: 2 / 1 / 3 / 3;
    justify-self: center;
  }

  #w-node-bc18193c-3482-92ff-62a7-709629afedd6-d0355c6e, #w-node-c56a5f9a-e238-4c32-2cc1-15cc259e2cc9-d0355c6f {
    grid-area: 1 / 3 / 3 / 6;
    place-self: start center;
  }

  #w-node-_6d154a6b-5ea7-56a4-5ecb-d2a23a85e1eb-d0355c70, #w-node-_6d154a6b-5ea7-56a4-5ecb-d2a23a85e1fe-d0355c70, #w-node-_15051b0b-3921-14f2-0400-efca8304dd2f-d0355c70, #w-node-_75a90408-dcda-deac-8059-b3082bdf7b6b-d0355c70, #w-node-_31d6c9cc-24e6-b430-6631-6066e805cbed-d0355c70, #w-node-_511baaeb-aa97-cde4-ee62-f027d4945585-d0355c70, #w-node-d5717c46-5c7d-237a-8104-fee21be07b54-d0355c70, #w-node-_6d154a6b-5ea7-56a4-5ecb-d2a23a85e213-d0355c70 {
    grid-area: 2 / 2 / 3 / 4;
  }

  #w-node-c4e96d2c-e5ed-41f3-d6d1-e377b460cb90-d0355c70 {
    grid-area: 1 / 3 / 3 / 6;
    place-self: start center;
  }

  #w-node-abcf9c27-ea7e-2584-f433-66d611a139f5-d0355c71 {
    grid-area: 2 / 2 / 3 / 3;
  }

  #w-node-f55537aa-0d36-9ffd-88a1-caec5e5497d0-d0355c71 {
    grid-area: 1 / 3 / 3 / 6;
    place-self: start center;
  }

  #w-node-_4f94800c-621e-94ca-20e4-4baf85316bf1-d0355c72 {
    grid-area: 1 / 1 / 2 / 3;
  }

  #w-node-_5a9a2233-60b7-dee4-4ea4-d1dc2c6d2c05-d0355c72 {
    grid-column: 1 / 2;
  }

  #w-node-da59f77a-11b9-d8cd-c1d8-d6e7171998f2-d0355c72 {
    grid-column: 2 / 3;
  }

  #w-node-df1fd9fa-a451-1712-6411-1c366a53cbc0-d0355c72 {
    grid-area: 2 / 1 / 3 / 3;
    justify-self: center;
  }

  #w-node-_5160dfc2-3d80-fd8a-9ed2-b181812c4076-d0355c72 {
    grid-column-start: 4;
    justify-self: end;
  }

  #w-node-bd454b87-da07-a63c-0e9e-c60a8fb4cca9-d0355c72 {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-fb0033d5-fd9b-7085-f448-da34755f29e6-d0355c72 {
    grid-row: 3 / 4;
  }

  #w-node-_89045b39-3189-782c-88a5-039b233e3f03-d0355c72 {
    grid-area: 4 / 1 / 5 / 2;
  }

  #w-node-_9475f2d5-2754-f05e-efa2-bd23829188b4-d0355c73 {
    justify-self: end;
  }

  #w-node-_033e9f01-0e03-1416-4c26-e76e2c725330-d0355c73 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_8526e8b0-f731-7a66-877f-d7c3e4daddb0-d0355c73 {
    grid-area: 2 / 2 / 3 / 3;
  }

  #w-node-_033e9f01-0e03-1416-4c26-e76e2c7252fc-d0355c73 {
    grid-column: 1 / 4;
  }

  #w-node-_033e9f01-0e03-1416-4c26-e76e2c72530e-d0355c73 {
    grid-column: 3 / 4;
    justify-self: end;
  }

  #w-node-_033e9f01-0e03-1416-4c26-e76e2c725312-d0355c73 {
    grid-column-start: 1;
    justify-self: start;
  }

  #w-node-_03731ce0-5fa4-a1d2-5dd2-d1514f09f32f-d0355c73, #w-node-d3e277a7-75b9-8a3c-f7dd-2c09689d4253-d0355c73 {
    grid-column-end: 5;
    justify-self: center;
  }

  #w-node-e13b2c70-2b9c-e7a9-ccf7-9430df3da9a7-d0355c73 {
    grid-row: 3 / 4;
    grid-column-start: 2;
  }

  #w-node-_64716eef-3378-2a57-e872-9b8e830d179a-d0355c75 {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-_64716eef-3378-2a57-e872-9b8e830d17c3-d0355c75 {
    grid-row: 3 / 4;
  }

  #w-node-_64716eef-3378-2a57-e872-9b8e830d17ec-d0355c75 {
    grid-area: 4 / 1 / 5 / 2;
  }

  #w-node-f868750f-fba5-a86c-3d51-0faf43ce7821-d0355c75 {
    grid-area: 5 / 1 / 6 / 2;
  }

  #w-node-_4d7663f5-c170-14cb-34db-d1cd959341f1-d0355c75 {
    grid-row: 6 / 7;
  }

  #w-node-_8e7e07d0-1561-77a6-375f-4af806afb1a0-d0355c76 {
    justify-self: end;
  }

  #w-node-b8c523c4-fba6-1940-6444-b2fdd1cd320c-d0355c77 {
    grid-column: 1 / 2;
  }

  #w-node-b8c523c4-fba6-1940-6444-b2fdd1cd3217-d0355c77 {
    grid-column: 2 / 3;
  }

  #w-node-b8c523c4-fba6-1940-6444-b2fdd1cd321f-d0355c77 {
    grid-area: 2 / 1 / 3 / 3;
    justify-self: center;
  }

  #w-node-_266e5e9a-1982-58ef-344f-35b853cb1f84-d0355c77, #w-node-_6686a75d-7538-4fad-4cda-4c563415514d-d0355c77, #w-node-_4bc40402-7b22-0b87-7f17-507ba9e86c32-d0355c77, #w-node-faca9922-5545-fd50-0c32-1d02d6cc3074-d0355c77, #w-node-_44cc189a-d0c8-30f6-03c2-c79f3e4d8a6e-d0355c77, #w-node-d09da591-4700-a5db-205d-c326b1ad527a-d0355c77 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_744cc4bb-a55a-42be-e12a-65d2b61bcf32-d0355c5f {
    grid-area: 1 / 1 / 2 / 2;
    justify-self: center;
  }

  #w-node-_8f88509e-e002-67a8-d518-fd41c4869aa0-d0355c5f {
    grid-area: 2 / 1 / 3 / 4;
    justify-self: center;
  }

  #w-node-_8f88509e-e002-67a8-d518-fd41c4869aa5-d0355c5f {
    grid-column: 1 / 4;
    grid-row-end: 4;
    justify-self: end;
  }

  #w-node-_8f88509e-e002-67a8-d518-fd41c4869aaa-d0355c5f {
    grid-column: 1 / 4;
    grid-row-end: 7;
    justify-self: end;
  }

  #w-node-_8f88509e-e002-67a8-d518-fd41c4869aaf-d0355c5f {
    grid-row-end: 7;
    justify-self: start;
  }

  #w-node-_8f88509e-e002-67a8-d518-fd41c4869ab5-d0355c5f {
    grid-column-end: 4;
  }

  #w-node-_97c9d1b8-fd8b-d101-822d-0673b232afeb-d0355c5f {
    grid-column-end: 5;
  }

  #w-node-d9e2ccc1-8f59-8bcd-4ed3-3ff44ee32667-d0355c5f {
    grid-column: span 3 / span 3;
  }

  #w-node-d9e2ccc1-8f59-8bcd-4ed3-3ff44ee32669-d0355c5f {
    grid-column: span 2 / span 2;
  }

  #w-node-d9e2ccc1-8f59-8bcd-4ed3-3ff44ee3266b-d0355c5f {
    grid-row: 3 / 4;
    grid-column-start: 1;
  }

  #w-node-d9e2ccc1-8f59-8bcd-4ed3-3ff44ee3266e-d0355c5f {
    justify-self: end;
  }

  #w-node-f1abca06-d60f-66cb-799b-f844910536f3-d0355c5f {
    grid-column: span 3 / span 3;
  }

  #w-node-f1abca06-d60f-66cb-799b-f844910536f5-d0355c5f {
    grid-column: span 2 / span 2;
  }

  #w-node-f1abca06-d60f-66cb-799b-f844910536f7-d0355c5f {
    grid-row: 3 / 4;
    grid-column-start: 1;
  }

  #w-node-f1abca06-d60f-66cb-799b-f844910536fa-d0355c5f {
    justify-self: end;
  }

  #w-node-c7a4d4bc-7775-ac97-005a-9720431d7b17-d0355c5f {
    grid-column: span 3 / span 3;
  }

  #w-node-c7a4d4bc-7775-ac97-005a-9720431d7b19-d0355c5f {
    grid-column: span 2 / span 2;
  }

  #w-node-c7a4d4bc-7775-ac97-005a-9720431d7b1b-d0355c5f {
    grid-row: 3 / 4;
    grid-column-start: 1;
  }

  #w-node-c7a4d4bc-7775-ac97-005a-9720431d7b1e-d0355c5f {
    justify-self: end;
  }

  #w-node-_5c95cd0d-eddb-a021-7b32-322722e93e64-d0355c5f {
    grid-area: 2 / 1 / 4 / 4;
    align-self: end;
  }

  #w-node-cc4ca9f8-2ae0-18be-1cd9-70e47a5622b7-d0355c60 {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-cc4ca9f8-2ae0-18be-1cd9-70e47a5622bd-d0355c60 {
    grid-area: 1 / 2 / 2 / 3;
  }

  #w-node-cc4ca9f8-2ae0-18be-1cd9-70e47a5622c3-d0355c60 {
    grid-area: 1 / 3 / 2 / 4;
  }

  #w-node-cc4ca9f8-2ae0-18be-1cd9-70e47a5622c9-d0355c60 {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-fe2a5437-b3c3-fb45-26be-ddd950363ead-d0355c60 {
    grid-area: 2 / 2 / 3 / 3;
  }

  #w-node-_5d7bd690-46f7-eb67-49de-5a4093bacfe4-d0355c60 {
    grid-area: 2 / 3 / 3 / 4;
  }

  #w-node-fc2a3fa4-4fce-bbcc-afa6-873049283919-d0355c60 {
    grid-area: 2 / 1 / 3 / 4;
    justify-self: center;
  }

  #w-node-fc2a3fa4-4fce-bbcc-afa6-87304928391e-d0355c60 {
    grid-column: 1 / 4;
    grid-row-end: 4;
    justify-self: end;
  }

  #w-node-fc2a3fa4-4fce-bbcc-afa6-873049283923-d0355c60 {
    grid-column: 1 / 4;
    grid-row-end: 7;
    justify-self: end;
  }

  #w-node-fc2a3fa4-4fce-bbcc-afa6-873049283928-d0355c60 {
    grid-row-end: 7;
    justify-self: start;
  }

  #w-node-fc2a3fa4-4fce-bbcc-afa6-87304928392e-d0355c60 {
    grid-column-end: 4;
  }

  #w-node-_1ea1f1d8-f648-027c-c2c9-a235cd18f9da-d0355c61 {
    grid-area: 2 / 1 / 4 / 4;
    align-self: end;
  }

  #w-node-_435953d0-86b9-3553-21ba-b32f459a0c71-d0355c62 {
    place-self: end start;
  }

  #w-node-_10909273-a17f-3b17-7e93-debf1f6db1c7-1f6db1a3 {
    grid-column-end: 5;
  }

  #w-node-_376b3f40-0805-90ee-3026-b64c8c3076c6-d0355c63 {
    grid-area: 1 / 1 / 2 / 2;
    justify-self: center;
  }

  #w-node-c853a126-6558-68d1-e9bb-7c1560c5dcc3-d0355c69 {
    grid-area: 2 / 1 / 4 / 4;
    align-self: end;
  }

  #w-node-ff4bf96d-7ebd-8978-2388-e112e5160bbe-d0355c6a, #w-node-_76618ad2-84e8-a116-e87e-8fd628aed7f2-d0355c6e, #w-node-_76618ad2-84e8-a116-e87e-8fd628aed7fd-d0355c6e {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_76618ad2-84e8-a116-e87e-8fd628aed805-d0355c6e {
    grid-area: span 1 / span 1 / span 1 / span 1;
    justify-self: stretch;
  }

  #w-node-bc18193c-3482-92ff-62a7-709629afedd6-d0355c6e, #w-node-c56a5f9a-e238-4c32-2cc1-15cc259e2cc9-d0355c6f {
    grid-area: 2 / 1 / 4 / 4;
    align-self: end;
  }

  #w-node-_6d154a6b-5ea7-56a4-5ecb-d2a23a85e1e7-d0355c70 {
    grid-column: span 3 / span 3;
  }

  #w-node-_6d154a6b-5ea7-56a4-5ecb-d2a23a85e1e9-d0355c70 {
    grid-column: span 2 / span 2;
  }

  #w-node-_6d154a6b-5ea7-56a4-5ecb-d2a23a85e1eb-d0355c70 {
    grid-row: 3 / 4;
    grid-column-start: 1;
  }

  #w-node-_6d154a6b-5ea7-56a4-5ecb-d2a23a85e1ee-d0355c70 {
    justify-self: end;
  }

  #w-node-_6d154a6b-5ea7-56a4-5ecb-d2a23a85e1fa-d0355c70 {
    grid-column: span 3 / span 3;
  }

  #w-node-_6d154a6b-5ea7-56a4-5ecb-d2a23a85e1fc-d0355c70 {
    grid-column: span 2 / span 2;
  }

  #w-node-_6d154a6b-5ea7-56a4-5ecb-d2a23a85e1fe-d0355c70 {
    grid-row: 3 / 4;
    grid-column-start: 1;
  }

  #w-node-_6d154a6b-5ea7-56a4-5ecb-d2a23a85e201-d0355c70 {
    justify-self: end;
  }

  #w-node-_15051b0b-3921-14f2-0400-efca8304dd2b-d0355c70 {
    grid-column: span 3 / span 3;
  }

  #w-node-_15051b0b-3921-14f2-0400-efca8304dd2d-d0355c70 {
    grid-column: span 2 / span 2;
  }

  #w-node-_15051b0b-3921-14f2-0400-efca8304dd2f-d0355c70 {
    grid-row: 3 / 4;
    grid-column-start: 1;
  }

  #w-node-_15051b0b-3921-14f2-0400-efca8304dd32-d0355c70 {
    justify-self: end;
  }

  #w-node-_75a90408-dcda-deac-8059-b3082bdf7b67-d0355c70 {
    grid-column: span 3 / span 3;
  }

  #w-node-_75a90408-dcda-deac-8059-b3082bdf7b69-d0355c70 {
    grid-column: span 2 / span 2;
  }

  #w-node-_75a90408-dcda-deac-8059-b3082bdf7b6b-d0355c70 {
    grid-row: 3 / 4;
    grid-column-start: 1;
  }

  #w-node-_75a90408-dcda-deac-8059-b3082bdf7b6e-d0355c70 {
    justify-self: end;
  }

  #w-node-_31d6c9cc-24e6-b430-6631-6066e805cbe9-d0355c70 {
    grid-column: span 3 / span 3;
  }

  #w-node-_31d6c9cc-24e6-b430-6631-6066e805cbeb-d0355c70 {
    grid-column: span 2 / span 2;
  }

  #w-node-_31d6c9cc-24e6-b430-6631-6066e805cbed-d0355c70 {
    grid-row: 3 / 4;
    grid-column-start: 1;
  }

  #w-node-_31d6c9cc-24e6-b430-6631-6066e805cbf0-d0355c70 {
    justify-self: end;
  }

  #w-node-_511baaeb-aa97-cde4-ee62-f027d4945581-d0355c70 {
    grid-column: span 3 / span 3;
  }

  #w-node-_511baaeb-aa97-cde4-ee62-f027d4945583-d0355c70 {
    grid-column: span 2 / span 2;
  }

  #w-node-_511baaeb-aa97-cde4-ee62-f027d4945585-d0355c70 {
    grid-row: 3 / 4;
    grid-column-start: 1;
  }

  #w-node-_511baaeb-aa97-cde4-ee62-f027d4945588-d0355c70 {
    justify-self: end;
  }

  #w-node-d5717c46-5c7d-237a-8104-fee21be07b50-d0355c70 {
    grid-column: span 3 / span 3;
  }

  #w-node-d5717c46-5c7d-237a-8104-fee21be07b52-d0355c70 {
    grid-column: span 2 / span 2;
  }

  #w-node-d5717c46-5c7d-237a-8104-fee21be07b54-d0355c70 {
    grid-row: 3 / 4;
    grid-column-start: 1;
  }

  #w-node-d5717c46-5c7d-237a-8104-fee21be07b57-d0355c70 {
    justify-self: end;
  }

  #w-node-_6d154a6b-5ea7-56a4-5ecb-d2a23a85e20f-d0355c70 {
    grid-column: span 3 / span 3;
  }

  #w-node-_6d154a6b-5ea7-56a4-5ecb-d2a23a85e211-d0355c70 {
    grid-column: span 2 / span 2;
  }

  #w-node-_6d154a6b-5ea7-56a4-5ecb-d2a23a85e213-d0355c70 {
    grid-row: 3 / 4;
    grid-column-start: 1;
  }

  #w-node-_6d154a6b-5ea7-56a4-5ecb-d2a23a85e216-d0355c70 {
    justify-self: end;
  }

  #w-node-c4e96d2c-e5ed-41f3-d6d1-e377b460cb90-d0355c70 {
    grid-area: 2 / 1 / 4 / 4;
    align-self: end;
  }

  #w-node-abcf9c27-ea7e-2584-f433-66d611a139f5-d0355c71 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-f55537aa-0d36-9ffd-88a1-caec5e5497d0-d0355c71 {
    grid-area: 2 / 1 / 4 / 4;
    align-self: end;
  }

  #w-node-_5a9a2233-60b7-dee4-4ea4-d1dc2c6d2c05-d0355c72, #w-node-da59f77a-11b9-d8cd-c1d8-d6e7171998f2-d0355c72 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-df1fd9fa-a451-1712-6411-1c366a53cbc0-d0355c72 {
    grid-area: span 1 / span 1 / span 1 / span 1;
    justify-self: stretch;
  }

  #w-node-_5160dfc2-3d80-fd8a-9ed2-b181812c4076-d0355c72 {
    grid-area: 2 / 1 / 3 / 4;
    justify-self: center;
  }

  #w-node-_5160dfc2-3d80-fd8a-9ed2-b181812c407b-d0355c72 {
    grid-column: 1 / 4;
    grid-row-end: 4;
    justify-self: end;
  }

  #w-node-_5160dfc2-3d80-fd8a-9ed2-b181812c4080-d0355c72 {
    grid-column: 1 / 4;
    grid-row-end: 7;
    justify-self: end;
  }

  #w-node-_5160dfc2-3d80-fd8a-9ed2-b181812c4085-d0355c72 {
    grid-row-end: 7;
    justify-self: start;
  }

  #w-node-_5160dfc2-3d80-fd8a-9ed2-b181812c408a-d0355c72 {
    grid-column-end: 4;
  }

  #w-node-_9475f2d5-2754-f05e-efa2-bd23829188b4-d0355c73 {
    grid-column-end: 4;
    justify-self: center;
  }

  #w-node-_9475f2d5-2754-f05e-efa2-bd23829188b7-d0355c73 {
    grid-area: 1 / 3 / 2 / 4;
    place-self: center;
  }

  #w-node-_8526e8b0-f731-7a66-877f-d7c3e4daddb0-d0355c73 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_033e9f01-0e03-1416-4c26-e76e2c725312-d0355c73 {
    place-self: end start;
  }

  #w-node-_6041286f-61e6-bd16-c5f2-506552c76001-d0355c73, #w-node-_6041286f-61e6-bd16-c5f2-506552c76012-d0355c73, #w-node-_6041286f-61e6-bd16-c5f2-506552c76023-d0355c73 {
    grid-column: span 1 / span 1;
  }

  #w-node-_5ec15608-86d2-a9a9-3aa3-bede457fbc57-d0355c74, #w-node-_49cca918-c86c-541f-7ce5-f9a9d329efa9-d0355c74, #w-node-d6e596d5-8de4-ff78-b72f-c7add2c74cdf-d0355c74, #w-node-_3183a63b-821f-18e9-8428-c854ca490475-d0355c74 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_8e7e07d0-1561-77a6-375f-4af806afb1a0-d0355c76 {
    grid-column-end: 4;
    justify-self: center;
  }

  #w-node-_8e7e07d0-1561-77a6-375f-4af806afb1a3-d0355c76 {
    grid-area: 1 / 3 / 2 / 4;
    place-self: center;
  }

  #w-node-b8c523c4-fba6-1940-6444-b2fdd1cd320c-d0355c77, #w-node-b8c523c4-fba6-1940-6444-b2fdd1cd3217-d0355c77 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-b8c523c4-fba6-1940-6444-b2fdd1cd321f-d0355c77 {
    grid-area: span 1 / span 1 / span 1 / span 1;
    justify-self: stretch;
  }

  #w-node-_57c06b07-a6f1-f3e5-a210-c6cec20cc749-d0355c7b, #w-node-_57c06b07-a6f1-f3e5-a210-c6cec20cc7e1-d0355c7b {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-d8dfec26-7463-6b98-5452-ec996bb2d415-d0355c7b, #w-node-d8dfec26-7463-6b98-5452-ec996bb2d428-d0355c7b, #w-node-d8dfec26-7463-6b98-5452-ec996bb2d43d-d0355c7b {
    grid-column: span 1 / span 1;
  }

  #w-node-ee37bc29-f4b6-cca2-c8ab-c54836868aad-d0355c7c, #w-node-dab84096-ad36-6f2f-dde7-4739758d2d8f-d0355c7c {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}


@font-face {
  font-family: 'Fa brands 400 (old)';
  src: url('../fonts/fa-brands-400.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Fa solid 900';
  src: url('../fonts/fa-solid-900.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Fa 400';
  src: url('../fonts/fa-regular-400.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Fa Brands 400 (6.4.2)';
  src: url('../fonts/fa-brands-400.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}