@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 {
  --light-bg: #f2f4f3;
  --primary-dark: #0a0e0e;
  --paragraph-gray: #3d4040;
  --link-color: #7d99a9;
  --light-peach: #ffc392;
  --primary: #7c9bab;
  --white: white;
  --transparent: #fff0;
  --black: #0a0e0e;
  --dark-20: #0a0e0e33;
  --white-10: #ffffff1a;
  --white-50: #ffffff80;
  --white-80: #fffc;
  --dark-gray-50: #afafaf80;
  --black-50: #0a0e0e80;
  --light-gray: #f9f9fa;
  --light-gray-color: #d9d9d9;
  --hover-black-70: #0a0e0eb3;
}

.w-pagination-wrapper {
  flex-wrap: wrap;
  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;
}

body {
  background-color: var(--light-bg);
  color: var(--primary-dark);
  font-family: Instrument Sans, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1em;
}

h1 {
  color: var(--primary-dark);
  letter-spacing: -.02em;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Instrument Sans, sans-serif;
  font-size: 76px;
  font-weight: 500;
  line-height: 1.2em;
}

h2 {
  color: var(--primary-dark);
  letter-spacing: -.01em;
  text-transform: capitalize;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Instrument Sans, sans-serif;
  font-size: 48px;
  font-weight: 500;
  line-height: 1.2em;
}

h3 {
  color: var(--primary-dark);
  letter-spacing: -.01em;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Instrument Sans, sans-serif;
  font-size: 34px;
  font-weight: 500;
  line-height: 1.2em;
}

h4 {
  color: var(--primary-dark);
  letter-spacing: -.01em;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Instrument Sans, sans-serif;
  font-size: 26px;
  font-weight: 500;
  line-height: 1.2em;
}

h5 {
  color: var(--primary-dark);
  letter-spacing: -.01em;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Instrument Sans, sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2em;
}

h6 {
  color: var(--primary-dark);
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Instrument Sans, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2em;
}

p {
  color: var(--paragraph-gray);
  letter-spacing: -.01em;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 18px;
  line-height: 1.5em;
}

a {
  color: var(--link-color);
  letter-spacing: -.01em;
  text-transform: capitalize;
  align-items: center;
  font-weight: 500;
  line-height: 1.2em;
  text-decoration: none;
  transition: all .35s;
}

a:hover {
  color: var(--light-peach);
}

ul {
  grid-row-gap: 15px;
  background-color: var(--paragraph-gray);
  color: var(--primary);
  -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;
}

ol {
  margin-top: 0;
  margin-bottom: 10px;
  padding-left: 40px;
}

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

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

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

blockquote {
  border-left: 3px solid var(--light-peach);
  background-color: var(--white);
  text-align: left;
  border-radius: 6px;
  margin-top: 40px;
  margin-bottom: 40px;
  padding: 30px 20px;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.4;
}

figure {
  margin-bottom: 10px;
}

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

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

.section.without-top-spacing.tabletoverflow {
  background-color: var(--primary);
}

.section.form-seleector {
  padding-bottom: 110px;
}

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

.section.bluemobile {
  background-color: var(--primary);
}

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

.spacing-system-column {
  padding-right: 20px;
}

.color-wrapper {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-flow: column;
  display: flex;
}

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

.primary-button {
  border: 1px solid var(--primary-dark);
  background-color: var(--primary-dark);
  width: auto;
  min-width: 140px;
  height: 44px;
  color: var(--white);
  text-align: center;
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  padding: 14px 26px;
  font-size: 16px;
  display: flex;
}

.primary-button:hover {
  background-color: var(--transparent);
  opacity: 1;
  color: var(--black);
}

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

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

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

.utility-page-content {
  text-align: center;
  flex-direction: column;
  width: 300px;
  margin-bottom: 0;
  display: flex;
}

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

.password-image {
  width: auto;
  height: 100px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.password-title-wrapper {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: column;
  margin-bottom: 40px;
  display: flex;
}

.footer {
  z-index: 25;
  text-align: center;
  align-items: flex-start;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}

.footer-rights {
  grid-column-gap: 5px;
  grid-row-gap: 0px;
  color: #fff9;
  flex-flow: wrap;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5em;
  display: flex;
}

.footer-copyright {
  grid-column-gap: 5px;
  grid-row-gap: 0px;
  color: #fff9;
  text-align: left;
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5em;
  display: flex;
}

.footer-copyright-link {
  color: #fff9;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5em;
  text-decoration: none;
  display: inline-block;
}

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

.style-guide-button-wrapper {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 45%;
  display: flex;
}

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

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

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

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

.about-3-tab-link {
  width: 33.33%;
  color: var(--white);
  background-color: #0000;
  flex-direction: column;
  align-items: center;
  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-feature-icon {
  width: 50px;
  height: 50px;
  color: var(--white);
  background-color: #fff3;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
  font-family: "Fa solid 900", sans-serif;
  font-size: 20px;
  display: flex;
}

.landing-inner-page-image {
  border: 1px solid var(--dark-20);
  object-fit: cover;
  object-position: 50% 0%;
  border-radius: 12px;
}

.landing-inner-page-title {
  font-size: 22px;
}

.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: 15px;
  grid-row-gap: 15px;
  grid-template-rows: auto;
  grid-template-columns: 1fr auto;
  grid-auto-columns: 1fr;
  align-items: stretch;
  width: 100%;
  margin-top: 20px;
  margin-bottom: 0;
  display: grid;
}

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

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

.footer-rights-wrapper {
  grid-column-gap: 5px;
  text-align: right;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: flex-start;
  width: 125%;
  display: flex;
}

.error-message {
  color: var(--white);
  text-align: center;
  background-color: #0000;
  margin-top: 24px;
  padding: 0;
  font-size: 18px;
  line-height: 1.5em;
}

.footer-licensing-link {
  color: #fff9;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5em;
  display: flex;
}

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

.banner-01 {
  flex-flow: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  min-height: 800px;
  display: grid;
  position: relative;
  overflow: hidden;
}

.body-bg {
  background-color: #6b6b6b;
}

.miral-title {
  background-image: linear-gradient(170deg, var(--white) 38%, var(--light-peach) 92%);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 24rem;
  font-weight: 600;
  line-height: .8em;
}

.clip-text-title {
  justify-content: center;
  align-items: center;
  display: flex;
}

.fixed-lines-bg {
  z-index: 15;
  width: 100%;
  height: 100vh;
  position: fixed;
  inset: 0%;
}

.lines-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%;
  max-width: 1216px;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
  display: grid;
}

.vertical-line {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

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

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

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

.banner-clip-con {
  z-index: 2;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  height: 100%;
  padding-top: 200px;
  display: grid;
  position: relative;
}

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

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

.banner-photo-png {
  z-index: 5;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: auto 0% 0%;
}

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

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

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

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

.border-wrap-4 {
  display: flex;
}

.border-wrap-4.gap0-75rem {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
}

.hero-nav-dropdown-2 {
  justify-content: center;
  align-items: center;
  font-size: 14px;
  line-height: 1.2em;
}

.header-link-item-2 {
  border: 1px solid var(--white);
  background-color: var(--white-10);
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  height: 44px;
  margin-top: auto;
  margin-bottom: auto;
  padding: 8px 26px;
  transition: all .5s;
  display: flex;
}

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

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

.nav-intro-item {
  color: var(--white);
  padding-left: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2em;
}

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

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

.right-nav-menu {
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.right-nav-menu.gap0-75rem {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
}

.no-shrink-wrap {
  flex: none;
  position: relative;
}

.button-link {
  border: 1px solid var(--light-peach);
  background-color: var(--light-peach);
  background-image: linear-gradient(270deg, #997558 10%, #ffc392 67%, #fff);
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  min-width: 140px;
  height: 44px;
  padding: 14px 26px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.button-link:hover {
  border-color: var(--white);
  background-color: var(--white);
}

.button-link.large {
  height: 56px;
  padding-left: 32px;
  padding-right: 32px;
}

.btn-text-dark {
  color: var(--black);
}

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

.btn-icon {
  object-fit: cover;
  flex: none;
  width: auto;
  max-width: none;
  height: 13px;
}

.btn-text-white {
  color: var(--white);
  font-weight: 500;
}

.button-link-white {
  border: 1px solid var(--white);
  background-color: var(--white-10);
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  min-width: 140px;
  height: 44px;
  padding: 14px 26px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.button-link-white:hover, .button-link-white.white {
  background-color: var(--white);
}

.button-link-white.white:hover {
  background-color: var(--white-10);
}

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

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

.hover-clip-text, .arrow-content {
  position: relative;
  overflow: hidden;
}

.clip-btn-arrow-content {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  justify-content: flex-start;
  align-items: center;
  margin-left: -24px;
  display: flex;
}

.top-banner-ov {
  z-index: 1;
  background-image: linear-gradient(180deg, var(--primary) 34%, transparent);
  width: 100%;
  height: 40%;
  position: absolute;
  inset: 0% 0% auto;
}

.relative-banner-content {
  z-index: 25;
  grid-template-rows: auto 350px auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  height: 100%;
  padding-top: 150px;
  padding-bottom: 80px;
  display: grid;
  position: relative;
}

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

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

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

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

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

.star-icon {
  object-fit: cover;
  width: auto;
  max-width: none;
  height: 55px;
  position: relative;
}

.intro-white-text {
  color: var(--white);
}

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

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

.nav-dropdown-item {
  font-size: 14px;
  line-height: 1.2em;
}

.tablet-header-wrap {
  display: none;
}

.button-hero-wrapper {
  flex: none;
}

.button-hero-wrapper:hover {
  box-shadow: 0 0 10px #ffffff1a;
}

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

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

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

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

.login-tablet-wrap-2 {
  grid-column-gap: 30px;
  justify-content: space-between;
  margin-left: 30px;
  display: none;
}

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

.nav-bg-cover-2 {
  border-bottom: 1px solid var(--white-10);
  background-color: var(--primary);
  opacity: 1;
  width: 100%;
  display: flex;
  position: absolute;
  inset: 0%;
}

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

.nav-fixed-menu {
  z-index: 900;
  background-color: #0000;
  height: 80px;
  position: fixed;
  inset: 0% 0% auto;
  overflow: visible;
}

.primary-dark-button {
  z-index: 100;
  grid-column-gap: 5px;
  text-align: center;
  letter-spacing: .6px;
  text-transform: capitalize;
  -webkit-text-fill-color: inherit;
  background-color: #160828;
  background-image: none;
  background-clip: border-box;
  border: 1px solid #160828;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  height: auto;
  min-height: 45px;
  max-height: 45px;
  padding: 12px 18px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1em;
  display: flex;
  position: relative;
}

.primary-dark-button:hover {
  background-color: #fff0;
  border-color: #160828;
}

.border-wrap-3 {
  display: flex;
}

.nav-hero-container {
  z-index: 100;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1216px;
  min-height: 80px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
}

.tablet-btn-group {
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.about-hotel-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  text-align: center;
  flex-flow: column;
  grid-template-rows: auto auto;
  grid-template-columns: auto 1fr auto;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  display: grid;
}

.large-white-title {
  width: 79%;
  color: var(--white);
  text-transform: none;
}

.hero-subtitle {
  color: var(--light-peach);
}

.intro-top-about {
  z-index: 15;
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
  position: relative;
}

.intro-bottom-about {
  grid-column-gap: 45px;
  grid-row-gap: 45px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
  position: relative;
}

.intro-text-space {
  z-index: 15;
  grid-column-gap: 70px;
  grid-row-gap: 70px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  padding-top: 60px;
  padding-bottom: 100px;
  display: flex;
  position: relative;
}

.cover-dark {
  z-index: -10;
  background-color: var(--black);
  position: absolute;
  inset: 0%;
}

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

.footer-grid {
  z-index: 20;
  grid-row-gap: 60px;
  flex-flow: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: flex;
  position: relative;
}

.miral-title-footer {
  background-image: linear-gradient(180deg, var(--white) 31%, var(--light-peach) 91%);
  opacity: .3;
  white-space: nowrap;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 25.5rem;
  font-weight: 600;
  line-height: .8em;
}

.footer-large-text {
  justify-content: center;
  align-items: flex-end;
  margin-bottom: -138px;
  display: flex;
}

.footer-info {
  grid-row-gap: 60px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.footer-link-wrap {
  z-index: 20;
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  text-align: left;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
  position: relative;
}

.footer-link-wrap.center {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  text-align: center;
  justify-content: flex-start;
  align-items: center;
}

.footer-link-wrap.right, .footer-link-wrap.right-centered {
  text-align: left;
  justify-content: flex-start;
  align-items: flex-end;
}

.footer-link-wrap.center-address {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  text-align: center;
  justify-content: flex-start;
  align-items: center;
}

.large-link {
  color: var(--light-peach);
  text-transform: none;
  font-size: 52px;
  font-weight: 500;
  line-height: 1.2em;
}

.large-link-number {
  color: var(--white);
  text-transform: none;
  font-size: 42px;
  font-weight: 500;
  line-height: 1.2em;
}

.our-address {
  color: #fff9;
  text-transform: none;
  font-weight: 400;
  line-height: 1.5em;
}

.our-address:hover {
  color: var(--white);
}

.photo-wrap.left-side {
  z-index: 16;
  width: 55%;
  position: relative;
  top: 70px;
}

.photo-wrap.right-side {
  z-index: 16;
  justify-content: flex-end;
  width: 55%;
  display: flex;
  position: relative;
  top: 70px;
}

.scroll-image-01 {
  border-radius: 16px;
  position: relative;
}

.hotel-image {
  position: relative;
}

.hotel-image.img-03, .hotel-image.img-01 {
  height: 65vh;
}

.scroll-image-03 {
  border-radius: 16px;
  position: relative;
  bottom: -49px;
}

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

.row-003 {
  padding-bottom: 100px;
}

.social-circle {
  border: 1px solid var(--white);
  background-color: var(--white-10);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  width: 54px;
  height: 54px;
  display: flex;
}

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

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

.info-slider-right {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 50%;
  padding: 80px 0 0 60px;
  display: flex;
  position: relative;
}

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

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

.white-slider-title {
  color: var(--white);
  text-align: left;
}

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

.intro-bottom-slider {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.button-arrow {
  border: 1px solid var(--white);
  background-color: var(--white-10);
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  min-width: 140px;
  height: 44px;
  padding: 14px 26px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.button-arrow:hover {
  background-color: #fff0;
}

.vector-png-01 {
  opacity: .5;
  object-fit: cover;
  width: auto;
  height: 96px;
}

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

.vector-wrap-01 {
  justify-content: flex-start;
  align-items: flex-start;
  height: 100%;
  margin-top: -75px;
  margin-left: -1px;
  display: flex;
  position: relative;
}

.white-dot {
  background-color: var(--white);
  border-radius: 100%;
  width: 9px;
  height: 9px;
}

.dots-wrapper {
  justify-content: center;
  align-items: center;
  margin-top: -4.5px;
  display: flex;
  position: relative;
}

.large-dot {
  background-color: var(--white-50);
  border-radius: 100%;
  width: 17px;
  height: 17px;
  position: absolute;
  inset: auto;
}

.card-intro-02 {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.vector-png-02 {
  opacity: .5;
  object-fit: cover;
  width: auto;
  height: 41px;
  transform-style: preserve-3d;
  transform: rotateX(0)rotateY(180deg)rotateZ(0);
}

.vector-wrap-02 {
  justify-content: flex-start;
  align-items: flex-start;
  height: 100%;
  margin-bottom: -1px;
  margin-right: 0;
  display: flex;
  position: relative;
}

.slider-white-card {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  background-color: var(--white);
  border-radius: 20px;
  flex-flow: row;
  justify-content: space-between;
  align-items: stretch;
  margin-left: 6px;
  margin-right: 6px;
  padding: 8px;
  font-weight: 400;
  display: flex;
  position: relative;
  overflow: hidden;
}

.top-slide-image {
  border-radius: 16px;
  flex: none;
  width: 50%;
  position: relative;
  overflow: hidden;
}

.photo-slide {
  z-index: 1;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-size: auto;
  height: 100%;
  display: flex;
  position: relative;
}

.slider-ov {
  z-index: 5;
  position: absolute;
  inset: 0%;
}

.bottom-intro-slide {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-flow: column;
  flex: 1;
  width: 100%;
  min-height: 280px;
  padding-top: 16px;
  padding-right: 10px;
  display: flex;
}

.service-long-title {
  text-transform: capitalize;
  font-size: 24px;
  font-weight: 600;
}

.service-long-title.subtitle-projects {
  color: var(--white);
  font-weight: 500;
}

.short-card-info {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.card-circle-link {
  background-color: var(--light-peach);
  border-radius: 100%;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 58px;
  height: 58px;
  display: flex;
  position: relative;
}

.card-circle-link.small {
  border: 1px solid var(--black);
  background-color: #ffc39200;
  width: 42px;
  height: 42px;
}

.rotate-arrow {
  object-fit: cover;
  height: 16px;
}

.rotate-arrow.small {
  height: 12px;
}

.rotate-arrow.size-14px {
  height: 14px;
}

.short-info-details {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  flex-flow: column;
  display: flex;
}

.short-card-text {
  color: var(--link-color);
  font-size: 16px;
}

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

.section-dark {
  z-index: 20;
  background-color: var(--black);
  padding-top: 80px;
  padding-bottom: 80px;
  position: relative;
}

.section-dark.nopad-bottom {
  padding-bottom: 0;
}

.villa-title {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  flex-flow: wrap;
  grid-template-rows: auto;
  grid-template-columns: .6fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 60px;
  display: grid;
}

.intro-white-description {
  width: 100%;
  color: var(--white);
  text-align: left;
}

.villa-info {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  display: flex;
}

.white-h2-title {
  color: var(--white);
  text-align: left;
}

.villa-collection-list {
  z-index: 25;
  position: relative;
}

.villa-item {
  z-index: 10;
  width: 100%;
  position: relative;
}

.hover-cover {
  background-color: var(--light-peach);
  width: 120vw;
  height: 100%;
  display: none;
  position: absolute;
  inset: auto auto 0% -20vw;
}

.hero-villa-row {
  justify-content: center;
  align-items: center;
  padding-top: 30px;
  padding-bottom: 30px;
  position: relative;
}

.villa-par-white {
  color: var(--white);
}

.villa-hero-name {
  color: var(--white);
  font-size: 22px;
  font-weight: 600;
}

.info-villa-grid {
  z-index: 1;
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  grid-template-rows: auto;
  grid-template-columns: .4fr 1fr .4fr auto;
  grid-auto-columns: 1fr;
  place-items: start stretch;
  display: grid;
  position: relative;
}

.hover-clip-arrow, .clip-arrow {
  position: relative;
  overflow: hidden;
}

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

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

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

.intro-line-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  max-width: 1186px;
  height: 1px;
  display: flex;
  position: absolute;
  inset: 0% auto auto;
}

.intro-line-wrapper.bottom {
  top: auto;
  bottom: 0%;
}

.row-item {
  width: 100%;
}

.villa-link {
  z-index: 15;
  pointer-events: none;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.par-hidden {
  display: none;
}

.white-form-title {
  color: var(--white);
  text-align: center;
}

.top-title-space {
  margin-bottom: 60px;
}

.form-title-wdth {
  width: 75%;
  margin-left: auto;
  margin-right: auto;
}

.guest-reviews {
  background-color: var(--light-peach);
  border-radius: 16px;
  height: auto;
  padding: 40px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 20px #0000001a;
}

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

.guest-slider-reviews {
  background-color: var(--transparent);
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  height: auto;
  display: flex;
}

.info-tab-right {
  padding-top: 160px;
}

.info-tab-left {
  flex-flow: column;
  justify-content: space-between;
  align-items: stretch;
  padding-right: 100px;
  display: flex;
}

.white-tab-title {
  color: var(--white);
  text-align: left;
}

.white-tab-description {
  width: 100%;
  color: var(--white);
  text-align: left;
}

.tab-intro-bottom {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.info-tabs {
  width: 100%;
  height: 100%;
}

.cta-content {
  justify-content: flex-start;
  align-items: center;
  padding-top: 60px;
  padding-bottom: 60px;
  display: flex;
}

.cta-hero-content {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
  position: relative;
}

.clip-photo-banner {
  z-index: 1;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
  overflow: hidden;
}

.hero-photo {
  z-index: 1;
  background-image: url('../images/background-image-footerwebp.webp');
  background-position: 50%;
  background-repeat: repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
}

.cta-intro-top {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.cta-overlay {
  z-index: 5;
  background-color: #0003;
  background-image: linear-gradient(180deg, var(--primary), var(--transparent) 30%), linear-gradient(45deg, #0006, var(--transparent));
  position: absolute;
  inset: 0%;
}

.logo-vector {
  object-fit: cover;
  height: 256px;
}

.png-wrap-01 {
  flex: none;
}

.clip-section {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.reserve-form {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  display: flex;
}

.form-white-subtitle {
  color: var(--white-80);
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2em;
}

.form-selector-item {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  text-align: center;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  padding-bottom: 20px;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  position: relative;
}

.selector-grid {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  margin-bottom: 40px;
  display: grid;
}

.review-arrow-left {
  border: 1px solid var(--black);
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  display: flex;
  inset: auto 75px 0% auto;
}

.icon-hidden {
  display: none;
}

.hide-slider-navigation {
  opacity: .4;
  font-size: 18px;
  display: none;
}

.reviews-slider-mask {
  width: 100%;
  height: auto;
}

.review-slider-item {
  width: 100%;
  height: 100%;
}

.slider-png {
  object-fit: cover;
  height: 143px;
}

.slide-vector-png {
  position: absolute;
  inset: 0% 0% auto auto;
}

.review-grid-content {
  grid-template-rows: auto;
  grid-template-columns: auto 1fr 140px;
  grid-auto-columns: 1fr;
  width: 100%;
  height: 100%;
  display: grid;
}

.customer-reviews-wrapper {
  grid-column-gap: 255px;
  grid-row-gap: 255px;
  flex-flow: column;
  justify-content: space-between;
  min-width: 180px;
  display: flex;
}

.reviews-basic {
  justify-content: flex-start;
  align-items: center;
  padding-left: 80px;
  display: flex;
}

.current-review {
  color: var(--black);
  font-size: 28px;
  font-style: italic;
  font-weight: 500;
  line-height: 1.3em;
}

.current-review-wrap {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.quote-review-icon {
  object-fit: cover;
  height: 46px;
}

.rating-text {
  color: var(--black);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3em;
}

.client-row {
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  min-height: 34px;
  padding-top: 4px;
  padding-bottom: 4px;
  display: flex;
  position: relative;
}

.client-name {
  color: var(--black);
  font-size: 16px;
  font-weight: 500;
}

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

.line-black {
  background-color: var(--black);
  width: 100%;
  height: 1px;
}

.review-arrow-right {
  border: 1px solid var(--black);
  background-color: var(--black);
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  display: flex;
  inset: auto 0% 0% auto;
}

.arrow-icon {
  height: 19px;
}

.intro-tab {
  border: 1px solid var(--white);
  background-color: var(--white-10);
  height: 38px;
  color: var(--white);
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  padding: 10px 20px;
  font-weight: 400;
  display: flex;
}

.intro-tab.w--current {
  border-color: var(--black);
  background-color: var(--black);
}

.tabs-menu {
  grid-column-gap: 7px;
  grid-row-gap: 7px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.tabs-content {
  width: 100%;
  height: 100%;
  margin-top: 30px;
}

.tab-card {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  background-color: var(--white);
  border-radius: 20px;
  flex-flow: column;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  padding: 12px;
  font-size: 16px;
  font-weight: 400;
  display: flex;
}

.title-award {
  color: var(--light-peach);
}

.service-card-wrapper {
  background-color: #0000;
  width: 100%;
  height: 100%;
}

.service-item-card {
  vertical-align: bottom;
  position: relative;
}

.clip-rotate-arrow.top-left {
  position: absolute;
  inset: -100% auto auto -100%;
}

.clip-rotate-arrow.top-left.center {
  display: flex;
}

.clip-rotate-arrow.center {
  justify-content: center;
  align-items: center;
  display: flex;
}

.photo-tab {
  z-index: 1;
  object-fit: cover;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-size: cover;
  width: 100%;
  height: 100%;
  position: relative;
}

.review-bottom-line {
  background-color: var(--transparent);
  width: 100%;
  height: 1px;
  position: absolute;
  inset: auto auto -1px 0%;
}

.tab-service-ov {
  z-index: 5;
  background-color: #00000008;
  position: absolute;
  inset: 0%;
}

.tab-image-height {
  border-radius: 16px;
  flex: none;
  width: 100%;
  height: 400px;
  position: relative;
  overflow: hidden;
}

.reserve-success-form {
  border: 1px solid var(--white-10);
  background-color: var(--white-10);
  width: 100%;
  min-height: 136px;
  color: var(--white);
  padding: 20px;
  font-size: 18px;
  position: relative;
}

.reserve-success-form.border-radius {
  border-radius: 20px;
}

.success-center-wrap {
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 96px;
  display: flex;
  position: relative;
}

.span-thank-you {
  text-transform: capitalize;
  margin-bottom: 15px;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.2em;
  display: block;
}

.bottom-tab-intro {
  flex-flow: column;
  flex: 1;
  width: 100%;
  padding-bottom: 10px;
  display: flex;
}

.tab-card-info {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-flow: wrap;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

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

.banner-preloader {
  z-index: 55;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  height: 100%;
  display: none;
  position: absolute;
  inset: 0%;
  overflow: hidden;
}

.preloader-cover {
  background-color: var(--primary);
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

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

.cover {
  z-index: 5;
  background-color: var(--primary);
  position: absolute;
  inset: 0%;
}

.button-link-black {
  border: 1px solid var(--black);
  background-color: var(--black);
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  min-width: 140px;
  height: 44px;
  padding: 14px 26px;
  display: flex;
  position: relative;
  overflow: hidden;
}

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

.header-link-light {
  border: 1px solid var(--transparent);
  background-color: var(--transparent);
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  height: 44px;
  margin-top: auto;
  margin-bottom: auto;
  padding: 8px 0;
  transition: all .5s;
  display: flex;
}

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

.light-dropdown {
  justify-content: center;
  align-items: center;
  font-size: 14px;
  line-height: 1.2em;
}

.social-dark-circle {
  border: 1px solid var(--black-50);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  background-color: #ffffff80;
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  padding: 8px 11px 11px;
  display: flex;
}

.social-dark-circle:hover {
  background-color: var(--black);
}

.top-space {
  z-index: 15;
  width: 100%;
  margin-bottom: 60px;
  position: relative;
}

.mirall-intro-text {
  letter-spacing: -.04em;
}

.intro-image-height {
  border-radius: 16px;
  width: 100%;
  min-height: 280px;
  position: relative;
  overflow: hidden;
}

.light-cover-preloader {
  z-index: 12;
  background-color: var(--light-bg);
  width: 100%;
  height: 100%;
  display: none;
  position: absolute;
  inset: 0% 0% auto;
}

.wdth-h2-title {
  width: 90%;
}

.bottom-villas-info {
  width: 100%;
  position: relative;
}

.tab-three-grid {
  z-index: 2;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: stretch;
  display: grid;
}

.tab-three-grid.top {
  align-items: start;
}

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

.right-tabs-content {
  overflow: visible;
}

.form-button-black {
  background-color: var(--black);
  width: auto;
  min-width: 140px;
  height: 44px;
  color: var(--white);
  text-align: center;
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  padding: 14px 26px;
  font-weight: 500;
  transition: all .35s;
  display: flex;
}

.form-button-black:hover {
  background-color: var(--light-peach);
  color: var(--black);
}

.form-button-black.service-btn {
  width: 100%;
}

.scroll-description {
  letter-spacing: -.04em;
}

.text-grid-row {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr .6fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
  align-items: end;
  display: grid;
}

.blog-title-wdth {
  width: 100%;
}

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

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

.collection-blog-wrapper {
  width: 100%;
  height: 506px;
  position: relative;
}

.blog-photo {
  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%;
}

.blog-photo.project-1 {
  background-image: url('../images/discovery-system-design.webp');
}

.blog-photo.project-2 {
  background-image: url('../images/hardware-setup-device-integration.webp');
}

.blog-photo.project-3 {
  background-image: url('../images/launch-product-handover-ownership.webp');
}

.clip-blog-img {
  border-radius: 16px;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.blog-height {
  border: 1px solid #000;
  border-radius: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  min-height: 280px;
  display: grid;
  position: relative;
}

.blog-title {
  color: var(--black);
  text-transform: capitalize;
  font-size: 18px;
  font-weight: 600;
  transition: all .35s;
}

.blog-title:hover {
  opacity: .7;
}

.blog-line {
  background-color: var(--primary);
  width: 100%;
  height: 1px;
  position: relative;
  overflow: hidden;
}

.bottom-info-blog {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-flow: column;
  display: flex;
}

.news-item {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: column;
  justify-content: space-between;
  align-items: stretch;
  height: auto;
  min-height: 506px;
  font-weight: 400;
  display: flex;
}

.par-size {
  height: auto;
  position: relative;
  overflow: hidden;
}

.blog-description {
  letter-spacing: -.04em;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 16px;
  font-weight: 400;
}

.black-blog-line {
  background-color: var(--black);
  width: 100%;
  height: 1px;
  position: relative;
}

.review-slider-light {
  width: 100%;
  height: 100%;
}

.large-tab {
  background-color: var(--transparent);
  opacity: .3;
  letter-spacing: -.03em;
  width: 100%;
  padding: 10px 0;
  font-size: 26px;
}

.large-tab:hover {
  opacity: .55;
  color: var(--black);
}

.large-tab.w--current {
  background-color: var(--transparent);
  opacity: 1;
  color: var(--black);
}

.lightbox-video {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  width: 100%;
  color: var(--paragraph-gray);
  text-transform: none;
  justify-content: center;
  align-items: center;
  font-weight: 400;
  display: flex;
}

.lightbox-video:hover {
  color: var(--paragraph-gray);
}

.card-grid-item {
  border-radius: 15px;
  box-shadow: 0 0 15px #00000026;
}

.hero-banner-card {
  background-color: var(--white);
  width: auto;
  min-width: 190px;
  height: auto;
  color: var(--paragraph-gray);
  border-radius: 15px;
  flex-flow: column;
  justify-content: space-between;
  align-items: stretch;
  font-weight: 400;
  display: flex;
  position: relative;
  overflow: hidden;
}

.hero-banner-card:hover {
  color: var(--paragraph-gray);
}

.right-slider-arrow {
  z-index: 30;
  border: 1px #fff3;
  justify-content: center;
  align-items: center;
  width: 130px;
  height: 120px;
  margin-left: auto;
  margin-right: auto;
  padding: 40px 36px 18px 0;
  display: flex;
  inset: auto 0% 0% 130px;
}

.hero-slide {
  width: 100%;
}

.photo-slider {
  border-radius: 16px;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  min-height: 550px;
  display: flex;
}

.tab-hero-title {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: auto 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: flex-end;
  display: grid;
}

.bottom-tab-line {
  background-color: var(--black);
  width: 100%;
  height: 1px;
  position: relative;
}

.tab-title {
  color: var(--white);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.1em;
}

.tab-description {
  color: var(--white);
  letter-spacing: -.02em;
  text-transform: none;
  padding-top: 10px;
  font-size: 16px;
  font-weight: 400;
}

.arrow-link {
  color: var(--link-color);
}

.blog-cover {
  z-index: 10;
  background-color: var(--light-bg);
  border-radius: 16px;
  width: 100%;
  height: 0%;
  position: absolute;
  inset: 0%;
}

.blog-info-card {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.clip-footer-wrap {
  border-radius: 16px;
  position: relative;
  overflow: hidden;
}

.mini-space-wrap {
  padding-bottom: 10px;
  padding-left: 10px;
  padding-right: 10px;
}

.mini-banner-space {
  padding: 10px;
}

.hero-slide-home-3 {
  width: 100%;
  height: 100%;
}

.background {
  z-index: 1;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-size: cover;
  width: 100%;
  height: 100%;
  display: flex;
  position: absolute;
  inset: 0% 0% 0% auto;
}

.background.services {
  background-image: url('../images/stories-bg.webp');
  background-position: 50% 100%;
}

.overlay {
  background-color: #0003;
  position: absolute;
  inset: 0%;
}

.overlay.service-category {
  background-color: #0000008c;
}

.banner-slider {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  border-radius: 22px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  height: 100%;
  display: grid;
  position: relative;
  overflow: hidden;
}

.scroll-down-link {
  border: 1px solid var(--white-50);
  background-color: var(--white-10);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  display: flex;
}

.scroll-down-link:hover {
  background-color: var(--white);
}

.lightbox-card {
  border: 1px solid var(--white);
  background-color: var(--white-80);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border-radius: 26px;
  width: auto;
  max-width: 400px;
  height: 100%;
  margin-left: auto;
  padding: 6px;
}

.service-link-wrap {
  width: 100%;
}

.header-link-color {
  border: 1px solid var(--white);
  background-color: var(--white-10);
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  height: 44px;
  margin-top: auto;
  margin-bottom: auto;
  padding: 8px 26px;
  transition: all .5s;
  display: flex;
}

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

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

.form-section {
  padding-left: 10px;
  padding-right: 10px;
}

.form-section.header-section {
  min-height: 100vh;
  padding-top: 10px;
  padding-bottom: 10px;
}

.form-clip-bg {
  border-radius: 22px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  min-height: 660px;
  display: grid;
  position: relative;
  overflow: hidden;
}

.form-clip-bg.full-height {
  min-height: 99vh;
}

.photo-form {
  z-index: 1;
  background-image: url('../images/stories-bg.webp');
  background-position: 50%;
  background-size: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.review-slider-large {
  width: 100%;
  height: 100%;
}

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

.news-intro-item {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: column;
  justify-content: space-between;
  align-items: stretch;
  height: auto;
  font-weight: 400;
  display: flex;
}

.section-space {
  z-index: 20;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  padding-top: 80px;
  padding-bottom: 80px;
  display: grid;
  position: relative;
}

.form-large-overlay {
  z-index: 3;
  background-color: #0000001a;
  background-image: linear-gradient(225deg, #0000, #00000026);
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

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

.form-right {
  justify-content: flex-end;
  align-items: flex-end;
  display: flex;
}

.current-form {
  border: 1px solid var(--white);
  background-color: #fff3;
  background-image: linear-gradient(180deg, #00000026 6%, var(--transparent) 51%);
  -webkit-backdrop-filter: blur(22px);
  backdrop-filter: blur(22px);
  border-radius: 26px;
  width: 100%;
  max-width: 490px;
}

.form-spacing {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-flow: column;
  width: 100%;
  padding: 56px 40px;
  display: flex;
}

.form-top-title {
  color: var(--white);
  text-align: center;
}

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

.selector-form-grid {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  margin-bottom: 40px;
  display: grid;
}

.form-button-color {
  background-color: var(--light-peach);
  width: 100%;
  min-width: 140px;
  height: 48px;
  color: var(--black);
  text-align: center;
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  padding: 16px 26px;
  font-weight: 500;
  transition: all .35s;
  display: flex;
}

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

.right-villa-info {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  flex-flow: column;
  justify-content: flex-start;
  width: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
  display: flex;
}

.info-top {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.info-bottom {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-start;
  height: 100%;
  display: flex;
}

.info-circle {
  border: 1px solid #d9d9d9;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 104px;
  height: 104px;
  display: flex;
}

.villa-icon {
  object-fit: cover;
  height: 64px;
}

.villa-top-description {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.villa-hero-title {
  text-align: left;
}

.villa-hero-title.hover {
  opacity: .7;
}

.villa-small-description {
  text-align: left;
  font-size: 16px;
}

.villa-bottom-link {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  color: var(--black);
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.villa-bottom-link:hover {
  color: var(--black);
}

.text-link {
  font-weight: 500;
}

.text-link.hover {
  opacity: .7;
}

.circle-link-item {
  background-color: var(--black);
  border-radius: 100%;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 46px;
  height: 46px;
  display: flex;
  position: relative;
  transform: rotate(-90deg);
}

.photo-link-wrappe {
  height: 100%;
}

.parallax-photo-container {
  width: 100%;
  height: 100%;
  position: relative;
}

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

.pass-title {
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 15px;
  font-size: 14px;
  font-weight: 500;
}

.dark-input {
  border: 1px solid var(--dark-20);
  background-color: var(--transparent);
  height: auto;
  min-height: 44px;
  color: var(--black);
  border-radius: 50px;
  padding: 12px 18px;
  font-size: 16px;
  transition: all .2s;
}

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

.dark-input::placeholder {
  color: #3d404080;
  font-size: 16px;
}

.dark-input.margin-0 {
  margin-bottom: 0;
}

.dark-input.message {
  border-radius: 6px;
  min-height: 175px;
  margin-bottom: 0;
}

.success-text {
  z-index: 2;
  position: relative;
}

.no-shrink-btn-wrap {
  flex: none;
}

.no-shrink-btn-wrap.full-wdth {
  justify-content: space-between;
  width: 100%;
  display: flex;
}

.clip-hover-text {
  z-index: 15;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

._404-logo-wrapper-2 {
  z-index: 100;
  justify-content: center;
  display: flex;
  position: absolute;
  inset: 40px 0% auto;
}

._404-text {
  color: #fff;
  text-align: center;
  width: 100%;
  margin-top: 20px;
  margin-bottom: 40px;
}

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

.overlay-404-page {
  background-color: #00000080;
  width: 102%;
  height: 102%;
  position: absolute;
  inset: -1% 0% 0% -1%;
}

.clip-group-section {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.error-404-text {
  color: #fff;
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
}

._404-title {
  z-index: 100;
  color: var(--light-peach);
  letter-spacing: -.01em;
  margin-top: 0;
  margin-bottom: 40px;
  font-size: 150px;
  font-weight: 600;
  line-height: .9em;
}

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

.bg-404-video {
  background-image: url('../images/stories-bg.webp');
  background-position: 50%;
  background-size: cover;
  border-radius: 30px;
  flex-flow: column;
  justify-content: space-between;
  align-items: center;
  width: auto;
  height: auto;
  margin: .625rem;
  display: flex;
  position: absolute;
  inset: 0%;
  overflow: hidden;
}

.button-link-2 {
  background-color: #c20919;
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  height: auto;
  min-height: 50px;
  padding: 15px 20px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.no-shrink-btn-2 {
  display: inline-block;
}

._404-content {
  z-index: 100;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
}

.color-span {
  color: var(--light-peach);
}

.banner-services {
  flex-flow: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  min-height: 500px;
  display: grid;
  position: relative;
  overflow: hidden;
}

.grid-service-banner {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  place-items: center stretch;
  height: 100%;
  padding-top: 160px;
  padding-bottom: 300px;
  display: grid;
}

.grid-service-banner.small-banner {
  padding-bottom: 240px;
}

.grid-service-list {
  grid-column-gap: 16px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  height: 100%;
  display: grid;
}

.button-peach-color {
  border-color: var(--light-peach);
  background-color: var(--light-peach);
  width: auto;
  min-width: 140px;
  height: 44px;
  color: var(--black);
  text-align: center;
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  padding: 14px 26px;
  font-size: 16px;
  font-weight: 500;
  transition: all .35s;
  display: flex;
}

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

.button-peach-color.pagination {
  margin-top: 60px;
}

.intro-card-service {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  background-color: var(--white);
  border-radius: 20px;
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  padding: 12px;
  font-weight: 400;
  display: flex;
  position: relative;
  overflow: hidden;
}

.banner-serv-grid {
  z-index: 20;
  position: relative;
}

.section-services {
  z-index: 20;
  margin-top: -200px;
  padding-bottom: 80px;
  position: relative;
}

.top-service-image {
  border-radius: 16px;
  flex: none;
  width: 100%;
  height: 300px;
  position: relative;
  overflow: hidden;
}

.clip-banner-background {
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  width: 100%;
  min-width: 100vw;
  display: flex;
  position: absolute;
  inset: 0% auto;
  overflow: hidden;
}

.slider-overlay {
  z-index: 5;
  background-color: #0000001a;
  position: absolute;
  inset: 0%;
}

.title-service-wdth {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 82%;
  display: flex;
}

.service-tabs {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  justify-content: flex-end;
  display: flex;
}

.tab-service-content {
  margin-top: 40px;
}

.hero-serv-tabs {
  width: 98%;
  margin-left: auto;
  margin-right: auto;
}

.intro-tab-white {
  border: 1px solid var(--white);
  background-color: var(--white-10);
  height: 38px;
  color: var(--white);
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  padding: 10px 20px;
  font-weight: 400;
  display: flex;
}

.intro-tab-white.w--current {
  border-color: var(--black);
  background-color: var(--white);
  color: var(--black);
}

.intro-tab-white.service-tab-first.w--current {
  background-color: var(--white);
  color: var(--black);
}

.white-service-title {
  color: var(--white);
  line-height: 1em;
}

.blog-arrow-2 {
  z-index: 100;
  height: 30px;
  position: relative;
  transform: rotate(45deg);
}

.section-blog-details-2 {
  border-top: 1px solid var(--light-peach);
  border-bottom: 1px solid var(--light-peach);
  background-color: var(--light-peach);
  justify-content: center;
  align-items: stretch;
  height: 500px;
  padding-top: 160px;
  padding-bottom: 160px;
  display: flex;
  position: relative;
}

.subtitle-data {
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5em;
}

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

.blog-details-background-image {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  inset: 0%;
}

.date-line-container {
  width: 40px;
  height: 1px;
  position: relative;
  overflow: hidden;
}

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

.scroll-blog-circle-2 {
  z-index: 100;
  border: 1px solid var(--light-peach);
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 140px;
  height: 140px;
  display: flex;
  position: relative;
}

.scroll-blog-circle-2:hover {
  opacity: 1;
}

.service-details-title {
  text-transform: capitalize;
  width: 80%;
  margin-top: 30px;
  margin-bottom: 20px;
}

.date-line {
  background-color: var(--dark-20);
  width: 40px;
  height: 1px;
}

.link-hover-fill-2 {
  background-color: var(--light-peach);
  border-radius: 100%;
  display: none;
  position: absolute;
  inset: 0%;
}

.blog-intro-content-2 {
  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;
}

.scroll-blog-link {
  z-index: 100;
  background-color: var(--light-bg);
  border: 1px #8c9fac33;
  border-radius: 100%;
  margin-bottom: -70px;
  padding: 6px;
  position: absolute;
  inset: auto 40px 0% auto;
  overflow: hidden;
}

.news-overlay {
  position: absolute;
  inset: 0%;
}

.date-wrap {
  z-index: 100;
  grid-column-gap: 20px;
  align-items: center;
  display: flex;
  position: relative;
}

.news-category-link {
  z-index: 10;
  border: 1px solid var(--light-peach);
  background-color: var(--light-peach);
  color: var(--black);
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  padding: 8px 17px;
  font-weight: 500;
  display: flex;
  position: relative;
}

.news-category-link:hover {
  border-color: var(--dark-20);
  background-color: var(--white);
  color: var(--black);
}

.circle-link-wrapper {
  margin: -48px;
  padding: 48px;
}

.title-blog-container {
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: flex;
}

.banner-service-par {
  width: 62%;
  margin-top: 0;
  margin-bottom: 0;
}

.blog-template-wrap {
  width: 100%;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}

.blog-template-wrap.banner {
  max-width: 100%;
}

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

.flex-form-row {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  width: 100%;
  display: flex;
}

.flex-form-row.vertical {
  flex-flow: column;
}

.grid-group-wrapper {
  z-index: 10;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: minmax(5vw, 1fr) minmax(auto, 1216px) minmax(5vw, 1fr);
  grid-auto-rows: 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
  position: relative;
}

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

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

.service-tab-grid.small-grid {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  grid-template-columns: 30px 1fr auto;
}

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

.faq-dropdown-list {
  background-color: var(--white);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  display: block;
  position: relative;
}

.icon-extra-small {
  height: 14px;
}

.nav-link-wrap {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-flow: column;
  justify-content: space-between;
  align-items: stretch;
  height: 100%;
  display: flex;
}

.form-hero-input-light {
  border: 1px solid var(--light-bg);
  background-color: var(--light-bg);
  min-height: 60px;
  color: var(--black);
  border-radius: 50px;
  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-light:focus {
  border-color: #0a0e0e1a;
  padding-left: 24px;
  box-shadow: 0 0 20px #90f0;
}

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

.form-hero-input-light.message {
  border-radius: 6px;
  min-height: 100px;
  margin-bottom: 24px;
}

.service-small-form {
  z-index: 10;
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  background-color: #fff0;
  border-radius: 0;
  flex-flow: column;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  margin-top: 0;
  margin-bottom: 0;
  padding: 0;
  display: flex;
  position: relative;
}

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

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

.par-answer-faq-dark {
  font-size: 16px;
  line-height: 1.6em;
}

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

.group-inquire-top {
  grid-column-gap: 30px;
  grid-row-gap: 0px;
  background-color: var(--white);
  text-transform: none;
  border-radius: 15px;
  flex-flow: column;
  grid-template-rows: auto;
  grid-template-columns: auto 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  padding: 24px 18px;
  display: flex;
  position: relative;
  overflow: hidden;
}

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

.success-wrapper-center {
  text-align: center;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-top: 40px;
  padding-bottom: 40px;
  display: flex;
  position: relative;
}

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

.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 {
  border-radius: 12px;
  margin-top: 40px;
  margin-bottom: 40px;
  overflow: hidden;
}

.hero-rich-text-style p {
  font-size: 16px;
}

.quick-link-item {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-color: #fff0;
  border: 1px solid #d385874d;
  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:hover {
  color: #c20919;
  padding-left: 24px;
}

.quick-link-item.red-bg {
  border-color: var(--white);
  background-color: var(--white);
  color: var(--black);
  border-radius: 15px;
}

.succes-message-white {
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  color: #fff;
  text-align: left;
  background-color: #0000;
  width: 100%;
  height: 100%;
  padding: 0;
  position: relative;
}

.text-small {
  color: var(--black);
  justify-content: center;
  align-items: center;
}

.faq-toggle {
  z-index: 2;
  width: 100%;
  padding: 40px 15px 40px 24px;
  transition: all .45s;
}

.error-message-white {
  color: #fff;
  text-align: center;
  background-color: #0000;
  margin-top: 30px;
  margin-bottom: 0;
  padding: 0;
}

.form-discount-title {
  font-size: 35px;
}

.service-form {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
}

.vacation-card-arrow {
  width: 14px;
}

.faq-answer {
  padding-top: 40px;
  padding-left: 24px;
  padding-right: 64px;
  position: relative;
  top: -20px;
}

.faq-text {
  white-space: pre-wrap;
  font-size: 18px;
}

.faq-text.bold {
  font-size: 18px;
  line-height: 1.5em;
}

.studio-service-text {
  max-width: 18rem;
}

.studio-service-text.max-width {
  width: 100%;
  max-width: none;
}

.clip-arrow-icon {
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
  overflow: hidden;
}

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

.visit-form {
  flex-flow: wrap;
  justify-content: center;
  width: 100%;
  margin-bottom: 0;
  display: flex;
}

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

.faq-grid-item.top-space {
  margin-top: 60px;
  margin-bottom: 0;
}

.service-tab-icon {
  border: 1px solid var(--dark-20);
  border-radius: 100rem;
  justify-content: center;
  align-items: center;
  width: 3rem;
  height: 3rem;
  display: flex;
}

.card-arrow-icon {
  z-index: 10;
  background-color: #c20919;
  border: 1px solid #c20919;
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  width: 24px;
  min-width: 24px;
  height: 24px;
  min-height: 24px;
  display: flex;
  position: relative;
}

.card-arrow-icon.card-white {
  border-color: var(--light-bg);
  background-color: var(--light-bg);
}

.faq-dropdown-down {
  grid-column-gap: 3px;
  grid-row-gap: 3px;
  cursor: pointer;
  background-color: #fff0;
  border-radius: 8px;
  flex-flow: column;
  width: 100%;
  overflow: visible;
}

.thank-you-text-white {
  color: #fff;
  letter-spacing: 0;
  text-transform: none;
  margin-bottom: 15px;
  font-size: 26px;
  font-weight: 400;
  line-height: 1.3em;
  display: block;
}

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

.service-tab-top {
  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%;
}

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

.font-data-icon {
  letter-spacing: .15em;
  text-transform: uppercase;
  font-family: "Fa solid 900", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5em;
}

.centered-title-service {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  text-align: center;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  display: flex;
}

.serv-light-description {
  width: 70%;
  color: var(--white);
  margin-left: auto;
  margin-right: auto;
  font-size: 16px;
}

.service-category-wrapper {
  width: 98%;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
}

.faq-dropdown-down-2 {
  grid-column-gap: 3px;
  grid-row-gap: 3px;
  background-color: var(--white);
  cursor: pointer;
  flex-flow: column;
  width: 100%;
  overflow: visible;
}

.underline-main-link {
  z-index: 15;
  grid-column-gap: 48px;
  grid-row-gap: 16px;
  border-bottom: 1px solid var(--dark-20);
  color: var(--black);
  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: var(--paragraph-gray);
}

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

.search-title {
  text-transform: capitalize;
}

.dark-search-input {
  border: 1px solid var(--dark-20);
  background-color: var(--transparent);
  height: 44px;
  min-height: 44px;
  color: var(--black);
  border-radius: 50px;
  margin-bottom: 0;
  padding: 12px 18px;
  font-size: 16px;
  transition: all .2s;
}

.dark-search-input:focus {
  border: 1px solid var(--black);
  padding-left: 24px;
}

.dark-search-input::placeholder {
  color: #3d404080;
  font-size: 16px;
}

.search-results-list {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.results-item {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

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

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

.search-slug {
  color: var(--black);
  margin-top: 4px;
  font-size: 16px;
}

.stories-item {
  background-color: var(--white);
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  border: 1px solid #c9c9c926;
  border-radius: 16px;
  align-items: flex-start;
  padding: 24px 12px;
  position: relative;
}

.client-photo {
  background-image: url('../images/rectangle-2551_1rectangle-2551.webp');
  background-position: 50% 0;
  background-size: cover;
  border-radius: 100%;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.slide-arrow-2 {
  height: 12px;
}

.slide-arrow-2.small-arrow {
  height: 10px;
  transform: none;
}

.small-subtitle {
  justify-content: flex-start;
  align-items: center;
  font-size: 20px;
  line-height: 1.2em;
  display: flex;
}

.address-hero-text, .address-par {
  color: var(--black);
  font-size: 16px;
  font-weight: 400;
}

.contact-banner-title {
  color: #fff;
}

.address-link {
  letter-spacing: 0;
  text-transform: none;
  font-size: 16px;
  font-weight: 300;
}

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

.conact-link {
  color: var(--black);
  text-transform: none;
  font-weight: 400;
}

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

.arrow-icon-hide {
  display: none;
}

.info-title {
  text-transform: none;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 45px;
}

.left-title-wrap {
  text-align: left;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.address-wdth {
  width: 100%;
}

.benefit-top-subtitle {
  border-bottom: 1px solid var(--dark-20);
  padding-bottom: 1rem;
}

.inner-banner-2 {
  z-index: 2;
  justify-content: center;
  align-items: center;
  min-height: 350px;
  padding-top: 140px;
  padding-bottom: 80px;
  display: flex;
  position: relative;
}

.inner-banner-2.contact {
  justify-content: center;
  align-items: flex-end;
  min-height: 450px;
}

.success-message-content {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  place-content: center;
  align-items: stretch;
  width: 100%;
  height: 100%;
  min-height: 542px;
  max-height: 100%;
  padding: 60px;
  display: grid;
}

.contacts-info-slider {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: column;
  padding-top: 30px;
  display: flex;
}

.hover-icon {
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
  overflow: hidden;
}

.hover-icon.left {
  position: absolute;
  inset: auto auto auto -100%;
}

.hover-icon.right {
  position: absolute;
  inset: auto -100% auto auto;
}

.field-label {
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 0;
  font-size: 13px;
  font-weight: 200;
  line-height: 1.3em;
}

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

.contact-mask {
  width: 100%;
  max-width: 100%;
  height: auto;
  overflow: visible;
}

.inner-photo-con {
  z-index: 2;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
  overflow: hidden;
}

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

.contacts-section {
  z-index: 55;
  position: relative;
}

.contacts-section.with-bottom-space {
  padding-bottom: 80px;
}

.arrow-clip {
  justify-content: flex-start;
  align-items: center;
  display: flex;
  position: relative;
  overflow: hidden;
}

.slide-hide {
  display: none;
}

.hero-slide-arrow {
  background-color: #fff0;
  border: 1px solid #ffffff26;
  border-radius: .3rem;
  justify-content: center;
  align-items: center;
  width: 2.5rem;
  height: 2.5rem;
  transition: all .45s;
  display: flex;
  inset: 0% 0% auto auto;
}

.hero-slide-arrow:hover {
  background-color: #ffffff0d;
  border-color: #ffffff80;
}

.hero-slide-arrow.arrow-left {
  right: 3.125rem;
}

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

.address-wrapper {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
  grid-template-columns: .7fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  display: grid;
}

.contacts-slider {
  background-color: #0000;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: auto;
  margin-top: -3.5rem;
  padding-top: 3.5rem;
  display: block;
  overflow: hidden;
}

.two-coll-grid-2 {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1.1fr;
  grid-auto-columns: 1fr;
  place-items: end stretch;
  display: grid;
}

.flex-useful-links {
  grid-column-gap: 35px;
  grid-row-gap: 35px;
  grid-template-rows: auto;
  grid-template-columns: .77fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: center;
  display: grid;
}

.benefit-slider {
  width: 100%;
}

.inner-image {
  background-image: url('../images/stories-bg.webp');
  background-position: 50%;
  background-size: cover;
  position: absolute;
  inset: 0%;
}

.contact-us-grid {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1.1fr;
  grid-auto-columns: 1fr;
  place-items: end stretch;
  margin-top: -210px;
  display: grid;
}

.right-contacts-form {
  background-color: var(--light-bg);
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  border-radius: 15px;
  padding-top: 40px;
  padding-left: 20px;
  padding-right: 20px;
}

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

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

.left-contacts {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  flex-flow: column;
  padding-top: 80px;
  display: flex;
}

.thank-you-title {
  margin-top: 0;
  margin-bottom: 0;
}

.contacts-icon-2 {
  color: var(--light-peach);
  margin-top: 0;
  margin-bottom: 0;
  font-family: "Fa solid 900", sans-serif;
  line-height: 1.5em;
}

.error-state-2 {
  color: var(--black);
  text-align: center;
  word-break: normal;
  background-color: #fff0;
  margin-top: 24px;
  padding: 0;
}

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

.contacts-item.align-top {
  justify-content: flex-start;
  align-items: flex-start;
}

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

.hero-link {
  color: #fff;
  letter-spacing: 3px;
  text-transform: uppercase;
  border-bottom: 1px solid #fffc;
  padding-bottom: 6px;
  padding-left: 0;
  font-size: 9px;
  text-decoration: none;
  position: relative;
}

.hero-link.dark-line {
  border-bottom-color: #afafaf4d;
}

.vacation-card-info {
  grid-column-gap: 12px;
  grid-row-gap: 10px;
  grid-template-rows: auto 1fr;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  min-height: 60px;
  padding-left: 0;
  padding-right: 0;
  display: grid;
}

.residence-card {
  grid-column-gap: 16px;
  grid-row-gap: 30px;
  background-color: var(--white);
  border-radius: 12px;
  grid-template-rows: 1fr auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  min-height: 300px;
  margin-bottom: 1px;
  padding: 12px;
  transition: box-shadow .5s cubic-bezier(.25, .46, .45, .94);
  display: grid;
}

.vacation-details {
  grid-template-rows: auto;
  grid-template-columns: 1fr auto;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  display: flex;
}

.verticle-card-image {
  border-radius: 6px;
  justify-content: flex-end;
  align-items: flex-start;
  height: 100%;
  min-height: 280px;
  padding: 10px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.lightbox-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: relative;
}

.lightbox-item-card {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  border-radius: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: stretch;
  height: auto;
  min-height: 230px;
  display: grid;
  position: relative;
  overflow: hidden;
}

.hero-pricing-item {
  border-style: solid;
  border-width: 1px;
  border-color: var(--dark-20) #d385874d #d385874d;
  background-color: var(--white);
  margin-top: 40px;
  transition: all .35s;
  position: relative;
}

.price-bottom {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-flow: column;
  width: 100%;
  display: flex;
}

.benefit-card {
  background-color: var(--white);
  border-radius: 16px;
  padding: 2.5rem;
}

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

.hero-villa-cover {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  background-color: var(--white);
  border-radius: 28px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  padding: 20px;
  display: grid;
}

.bottom-slider-arrow-portfolio {
  border-style: solid solid none none;
  border-width: 1px;
  border-color: var(--dark-20) var(--dark-20) #ffffff26 #ffffff26;
  width: 50%;
  height: 80px;
  color: var(--black);
  justify-content: center;
  align-items: center;
  display: flex;
  top: auto;
  bottom: 0;
}

.bottom-slider-arrow-portfolio:hover {
  color: var(--paragraph-gray);
}

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

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

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

.artist-link:hover {
  opacity: .75;
}

.insta-background-wrapper {
  z-index: 2;
  border-radius: 8px;
  justify-content: center;
  display: flex;
  position: absolute;
  inset: 0%;
  overflow: hidden;
}

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

.outline-hover-circle-2 {
  z-index: 10;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background-color: #0000000d;
  border: 1px solid #ffffff40;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 72px;
  height: 72px;
  display: flex;
  position: relative;
}

.outline-hover-circle {
  z-index: 10;
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  border: 1px solid #fff3;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  display: flex;
  position: relative;
}

.hover-circle-wrapper {
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 100%;
  height: 100%;
  max-height: 100%;
  display: flex;
  position: relative;
}

.info-grid {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-flow: column;
  justify-content: space-between;
  align-items: stretch;
  display: flex;
}

.social-block {
  background-color: var(--white-10);
  border: 1px solid #fff3;
  border-radius: 50px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  text-decoration: none;
  display: flex;
  position: relative;
  overflow: hidden;
}

.social-block:hover {
  z-index: 10;
  color: #000;
}

.gall-image {
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
  overflow: hidden;
}

.instagram-box {
  width: 100%;
  height: 155px;
  position: relative;
}

.hover-circle-wrapper-4 {
  z-index: 10;
  background-color: #0000;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 100%;
  height: 100%;
  max-height: 100%;
  padding: 60px;
  display: flex;
  position: absolute;
  inset: 0%;
}

.phone-number-link {
  text-transform: none;
  font-weight: 300;
}

.social-link {
  position: relative;
  overflow: hidden;
}

.arrow-item-cover {
  z-index: 25;
  align-items: center;
  position: absolute;
  inset: 0%;
}

.inner-photo-2 {
  background-color: var(--primary);
  border-bottom-right-radius: 60px;
  border-bottom-left-radius: 60px;
  position: absolute;
  inset: 0%;
}

.button-link-5 {
  background-color: #c20919;
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  height: auto;
  min-height: 50px;
  padding: 15px 20px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.text-feature {
  color: var(--white-80);
  font-size: 16px;
}

.feature-small-title {
  color: var(--white);
}

.promotion-label-right {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-flow: column;
  display: flex;
  position: absolute;
  right: 10px;
}

.promotion-label-holder {
  grid-row-gap: 10px;
  flex-direction: column;
  padding: 15px;
  display: flex;
  position: relative;
}

.close-image {
  width: 12px;
  height: 12px;
}

.promotion-coupon {
  color: #101828;
  background-color: #fff;
  border-radius: 5px;
  padding-left: 5px;
  padding-right: 5px;
  font-size: 12px;
  display: inline-block;
}

.promotion-label-paragraph {
  color: #fff;
  text-align: left;
  letter-spacing: 0;
  max-width: 94%;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5em;
}

.promotion-label-buy-this-template {
  color: #000;
  letter-spacing: normal;
  text-transform: capitalize;
  background-color: #fff;
  border: 1px solid #e4e4e4;
  border-radius: 4px;
  width: 144px;
  padding: 6px;
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 14px;
  display: flex;
}

.promotion-label-buy-this-template:hover {
  opacity: 1;
  color: #000;
}

.promotion-label-left {
  background-color: #0055d4;
  border-radius: 4px;
  width: 100%;
  max-width: 290px;
  position: absolute;
}

.promotion-labels-wrapper-to-remove {
  z-index: 2147483647;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  display: flex;
  position: fixed;
  bottom: 5px;
  left: 5px;
  right: 5px;
}

.promotion-icon {
  object-fit: contain;
  margin-right: 8px;
}

.promotion-label-close {
  cursor: pointer;
  padding: 10px 20px;
  position: absolute;
  top: -7px;
  right: -14px;
}

.promotion-label-button {
  color: #fff;
  text-align: center;
  letter-spacing: 0;
  text-transform: none;
  border: 1px solid #fff;
  border-radius: 4px;
  padding: 5px 15px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3em;
}

.promotion-label-button:hover {
  opacity: 1;
  color: #ffffffb3;
}

.promotion-label-more-templates {
  color: #000;
  letter-spacing: normal;
  text-transform: capitalize;
  background-color: #fff;
  border: 1px solid #e4e4e4;
  border-radius: 4px;
  width: 144px;
  padding: 6px;
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 14px;
  display: flex;
}

.promotion-label-more-templates:hover {
  opacity: 1;
  color: #000;
}

.hero-image-small {
  max-width: 150px;
}

.hero-image-small.marg-right {
  margin-right: 10px;
}

.button-link-white-2 {
  background-color: #ffffff1a;
  border: 1px solid #fff;
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  min-width: 140px;
  height: 44px;
  padding: 14px 26px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.button-link-white-2:hover {
  background-color: #fff;
}

.hero-subtitle-2 {
  color: #ffc392;
}

.large-white-title-2 {
  color: #fff;
  text-transform: none;
  width: 79%;
}

.paragraph-white-2 {
  color: #fff;
  width: 45%;
}

.button-link-white-arrow {
  border: 1px solid var(--white);
  background-color: var(--white);
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  min-width: 140px;
  height: 44px;
  padding: 14px 26px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.button-link-white-arrow:hover {
  border-color: var(--white);
  background-color: var(--white);
}

.paragraph-small {
  text-transform: none;
  font-size: 12px;
}

.phone-image {
  z-index: 15;
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 30%;
  display: flex;
  position: relative;
}

.card-intro-02-phone {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-end;
  width: 70%;
  display: flex;
}

.card-intro-02-phone.left {
  justify-content: flex-start;
  align-items: flex-start;
}

.vector-wrap-02-phone {
  justify-content: flex-start;
  align-items: flex-start;
  height: 100%;
  margin-bottom: -1px;
  display: flex;
  position: relative;
  right: 20%;
}

.vector-wrap-02-phone.flip {
  transform-style: preserve-3d;
  right: -20%;
  transform: rotateX(0)rotateY(180deg)rotateZ(0);
}

.card-phone {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  background-image: linear-gradient(311deg, #7c9bab 6%, #7c9bab26 30% 70%, #7c9bab 95%);
  border: 1px solid #ffffff80;
  border-radius: 20px;
  flex-flow: column;
  align-items: flex-start;
  padding: 40px 16px;
  display: flex;
}

.card-phone-title {
  color: var(--white);
  text-align: left;
  text-transform: capitalize;
  font-size: 24px;
  font-weight: 600;
}

.white-font {
  color: var(--white);
  text-align: left;
}

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

.about-hotel-wrapper-phone {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  text-align: center;
  flex-flow: column;
  grid-template-rows: auto auto;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  display: grid;
}

.mobile-only {
  display: none;
}

.form-title-vert {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  align-items: center;
  width: 75%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.absolute-line {
  background-color: #ffffff80;
  width: 1px;
  height: 32px;
  position: absolute;
  inset: 0% 0% auto auto;
}

.absolute-line.left {
  inset: 0% auto auto 0%;
}

.white-smaller-font {
  color: var(--white);
  text-align: center;
  font-size: 14px;
}

.blog-text-wdthbutton {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: column;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.tabs-absolute-image {
  z-index: 1;
  width: 65%;
  position: absolute;
  inset: 0% 0% auto auto;
}

._3-shields-absolute {
  position: absolute;
  bottom: 0;
  left: 0;
  right: auto;
}

._3-shields-image {
  max-height: 120px;
}

.header-image-right {
  max-width: 70%;
}

.top-intro-line-2 {
  background-color: #ffffff1a;
  width: 100%;
  height: 1px;
  position: absolute;
  inset: 0% auto auto 0%;
}

.grid-inner {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  place-items: stretch stretch;
  width: 80%;
  display: grid;
}

.pop-up {
  z-index: 1000;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  opacity: 0;
  pointer-events: auto;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  height: 100vh;
  padding: 32px;
  display: none;
  position: fixed;
  inset: 0%;
}

.popup-card {
  z-index: 2;
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  background-color: var(--white);
  border-radius: 20px;
  flex-flow: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: flex-start;
  padding: 80px 48px;
  display: flex;
  position: relative;
}

.popup-close {
  position: absolute;
  inset: 36px 48px auto auto;
}

.popup-overlay {
  z-index: 1;
  background-color: var(--black-50);
  position: absolute;
  inset: 0%;
}

.slide-nav-2 {
  justify-content: center;
  align-items: center;
  display: flex;
}

.form-disclaimer {
  grid-column-gap: 5px;
  grid-row-gap: 0px;
  color: #bfbfbf;
  flex-flow: wrap;
  padding-top: 10px;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5em;
  display: flex;
}

.left-arrow {
  justify-content: center;
  align-items: center;
  height: 40px;
  display: flex;
  inset: auto auto 0% 0%;
  overflow: visible;
}

.right-arrow {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  height: 40px;
  display: flex;
  inset: auto 0% 0% auto;
  overflow: visible;
}

.icon {
  width: 100%;
  margin: 0;
  position: relative;
}

.image-slider {
  object-fit: cover;
}

.slider-background-wrapper {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  padding: 120px 148px;
  display: flex;
}

.slider-background-wrapper.hero-wrapper {
  min-height: 100%;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  inset: 0 auto;
  overflow: visible;
}

.slide-nav {
  display: none;
}

.hero-banner-ov {
  z-index: 10;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.slider-background {
  border-radius: 100% 100% 0 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 125%;
  height: 125%;
  display: flex;
  position: absolute;
  inset: auto auto 0;
  overflow: hidden;
}

.mask-photo-slider {
  border-radius: 16px;
  width: 100%;
  height: 100%;
  max-height: 100%;
  position: absolute;
  inset: 0%;
}

.photo-slider-2 {
  border-radius: 16px;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  min-height: 550px;
  display: flex;
}

.slide-arrow {
  outline-offset: 0px;
  background-color: #ffc392;
  border-radius: 100%;
  outline: 6px solid #fff;
  justify-content: center;
  align-items: center;
  width: 64px;
  height: 64px;
  display: flex;
  left: auto;
  right: -32px;
}

.slide-arrow.left {
  left: -32px;
  right: auto;
}

.hero-slide-background {
  z-index: 1;
  background-image: url('../images/banner-19-2_1banner-19-2.webp');
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  max-width: 125vw;
  height: 100%;
  position: absolute;
  inset: auto auto 0;
  overflow: hidden;
}

.hero-slide-background.four {
  background-image: url('../images/banner-2_1banner-2.webp');
  background-position: 50%;
  max-width: none;
}

.hero-slide-background.five {
  background-image: url('../images/banner-1_1banner-1.webp');
  background-position: 0 0;
  max-width: none;
}

.hero-slide-background.six {
  background-image: url('../images/banner-1-1_1banner-1-1.webp');
  background-position: 50%;
  max-width: none;
}

.error-state-3 {
  color: #0a0e0e;
  text-align: center;
  word-break: normal;
  background-color: #fff0;
  margin-top: 24px;
  padding: 0;
}

.form-button-color-2 {
  color: #0a0e0e;
  text-align: center;
  background-color: #ffc392;
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-width: 140px;
  height: 48px;
  padding: 16px 26px;
  font-weight: 500;
  transition: all .35s;
  display: flex;
}

.form-button-color-2:hover {
  color: #0a0e0e;
  background-color: #fff;
}

.dark-input-2 {
  color: #0a0e0e;
  background-color: #fff0;
  border: 1px solid #0a0e0e33;
  border-radius: 50px;
  height: auto;
  min-height: 44px;
  padding: 12px 18px;
  font-size: 16px;
  transition: all .2s;
}

.dark-input-2:focus {
  border: 1px solid #0a0e0e;
  padding-left: 24px;
}

.dark-input-2::placeholder {
  color: #3d404080;
  font-size: 16px;
}

.dark-input-2.message {
  border-radius: 6px;
  min-height: 175px;
  margin-bottom: 0;
}

.dark-input-2.margin-0 {
  margin-bottom: 0;
}

.right-contacts-form-2 {
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  background-color: #f2f4f3;
  border-radius: 15px;
  padding-top: 40px;
  padding-left: 20px;
  padding-right: 20px;
}

@media screen and (min-width: 1280px) {
  h1 {
    font-size: 86px;
  }

  h2 {
    font-size: 58px;
  }

  .section {
    padding-top: 130px;
    padding-bottom: 130px;
  }

  .section.form-seleector {
    padding-bottom: 160px;
  }

  .spacing-system-column {
    padding-right: 30px;
  }

  .headings-typography-wrapper {
    width: 48%;
  }

  .utility-page-content {
    width: 350px;
  }

  .password-image {
    height: 120px;
  }

  .footer {
    padding-top: 130px;
  }

  .footer-copyright {
    width: 75%;
  }

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

  .miral-title {
    background-image: linear-gradient(170deg, var(--white) 47%, var(--light-peach) 89%);
    font-size: 24rem;
  }

  .relative-banner-content {
    grid-template-rows: auto 450px auto auto;
  }

  .header-link-item {
    padding-left: 20px;
    padding-right: 20px;
  }

  .miral-title-footer {
    font-size: 30.4rem;
  }

  .large-link {
    font-size: 65px;
  }

  .large-link-number {
    font-size: 50px;
  }

  .scroll-image-03 {
    bottom: 23px;
  }

  .section-dark {
    padding-top: 130px;
    padding-bottom: 130px;
  }

  .villa-title {
    grid-column-gap: 120px;
    grid-row-gap: 120px;
    margin-bottom: 80px;
  }

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

  .hero-villa-row {
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .info-villa-grid {
    grid-template-columns: .5fr 1fr .6fr auto;
  }

  .intro-line-wrapper {
    min-width: 1186px;
  }

  .info-tab-right, .cta-content {
    padding-top: 100px;
  }

  .selector-grid {
    margin-bottom: 60px;
  }

  .review-grid-content {
    grid-template-columns: auto 1fr 170px;
  }

  .reviews-basic {
    padding-left: 100px;
  }

  .tab-card-info {
    grid-column-gap: 35px;
    grid-row-gap: 35px;
    flex-flow: row;
  }

  .left-tabs-menu {
    padding-right: 60px;
  }

  .collection-blog-wrapper {
    height: 486px;
  }

  .news-item {
    min-height: 486px;
  }

  .section-space {
    padding-top: 130px;
    padding-bottom: 130px;
  }

  .selector-form-grid {
    margin-bottom: 60px;
  }

  .banner-services {
    min-height: 550px;
  }

  .grid-service-banner {
    padding-bottom: 320px;
  }

  .section-services {
    padding-bottom: 130px;
  }

  .top-service-image {
    height: 360px;
  }

  .hero-serv-tabs {
    width: 100%;
  }

  .section-blog-details-2 {
    height: 650px;
  }

  .blog-intro-content-2 {
    width: 92%;
    padding-top: 170px;
  }

  .scroll-blog-link {
    right: 0;
  }

  .banner-service-par {
    width: 55%;
  }

  .service-tab-grid.small-grid {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-columns: 40px 1fr auto;
  }

  .content-details {
    grid-column-gap: 100px;
    grid-template-columns: 1fr .8fr;
  }

  .par-answer-faq-dark {
    font-size: 18px;
  }

  .section-details {
    padding-top: 130px;
    padding-bottom: 130px;
  }

  .group-inquire-top {
    min-height: 230px;
  }

  .succes-message-white {
    color: var(--black);
  }

  .faq-toggle {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .error-message-white {
    color: var(--black);
  }

  .faq-answer {
    padding-right: 70px;
  }

  .faq-text {
    font-size: 20px;
  }

  .faq-text.bold {
    font-size: 22px;
    line-height: 1.6em;
  }

  .studio-service-text.max-width {
    max-width: none;
  }

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

  .thank-you-text-white {
    color: var(--black);
  }

  .serv-light-description {
    width: 60%;
  }

  .service-category-wrapper {
    width: 100%;
  }

  .search-section {
    padding-top: 170px;
    padding-bottom: 130px;
  }

  .search-results-list {
    grid-column-gap: 100px;
    grid-template-columns: 1fr 1fr;
  }

  .stories-item {
    padding: 30px 20px;
  }

  .contact-fields {
    grid-row-gap: 32px;
  }

  .info-title {
    font-size: 50px;
  }

  .inner-banner-2 {
    min-height: 380px;
  }

  .inner-banner-2.contact {
    min-height: 470px;
  }

  .success-message-content {
    min-height: 551px;
  }

  .form-2 {
    grid-row-gap: 45px;
  }

  .two-coll-grid-2 {
    grid-column-gap: 80px;
    grid-row-gap: 80px;
  }

  .contact-us-grid {
    grid-column-gap: 80px;
    grid-row-gap: 80px;
    margin-top: -180px;
  }

  .right-contacts-form {
    padding-top: 50px;
    padding-left: 30px;
    padding-right: 30px;
  }

  .hero-form-block {
    min-height: 551px;
  }

  .left-contacts {
    padding-top: 130px;
  }

  .residence-card {
    padding: 15px;
  }

  .verticle-card-image {
    min-height: 320px;
  }

  .lightbox-item-card {
    min-height: 270px;
  }

  .style-guide-links {
    margin-right: 60px;
  }

  .hero-villa-cover {
    grid-template-columns: 1fr .8fr;
  }

  .hero-villa-cover._1column {
    grid-template-columns: 1fr;
  }

  .instagram-box {
    height: 180px;
  }

  .hero-image-small {
    max-width: 200px;
  }

  .paragraph-white-2 {
    width: 38%;
  }

  .blog-text-wdthbutton {
    width: 90%;
  }

  .right-contacts-form-2 {
    padding-top: 50px;
    padding-left: 30px;
    padding-right: 30px;
  }
}

@media screen and (min-width: 1440px) {
  .base-container {
    max-width: 1440px;
  }

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

  .miral-title {
    font-size: 30rem;
  }

  .hero-photo {
    background-image: url('../images/background-image-footerwebp.webp');
    position: absolute;
  }

  .error-404-text {
    font-size: 40px;
  }

  ._404-title {
    font-size: 140px;
  }

  .title-service-wdth {
    width: 80%;
  }

  .banner-service-par {
    width: 65%;
  }

  .service-tab-grid.small-grid {
    grid-template-columns: 100px 1fr auto;
  }

  .content-details {
    grid-template-columns: 1fr .6fr;
  }

  .faq-answer {
    padding-right: 75px;
  }

  .studio-service-text.max-width {
    width: 80%;
  }

  .stories-item {
    padding-left: 30px;
    padding-right: 30px;
  }

  .inner-banner-2 {
    min-height: 400px;
  }

  .hero-form-block {
    max-width: 950px;
  }

  .left-contacts {
    width: 90%;
  }

  .instagram-box {
    height: 220px;
  }
}

@media screen and (min-width: 1920px) {
  .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;
  }

  .error-404-text {
    font-size: 52px;
  }

  ._404-title {
    font-size: 180px;
  }

  .banner-services {
    min-height: 650px;
  }

  .top-service-image {
    height: 400px;
  }

  .section-blog-details-2 {
    height: 700px;
  }

  .service-details-title {
    width: 85%;
  }

  .form-hero-input-light.message {
    min-height: 145px;
  }

  .studio-service-text.max-width {
    width: 90%;
  }

  .details-card {
    top: 140px;
  }

  .inner-banner-2 {
    min-height: 500px;
  }

  .inner-banner-2.contact {
    min-height: 540px;
  }

  .verticle-card-image {
    min-height: 340px;
  }

  .lightbox-item-card {
    min-height: 300px;
  }

  .price-bottom {
    width: 80%;
  }

  .instagram-box {
    height: 260px;
  }
}

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

  h2 {
    font-size: 40px;
  }

  h3 {
    font-size: 32px;
  }

  blockquote {
    font-size: 22px;
  }

  .section.without-top-spacing.tabletoverflow {
    overflow: hidden;
  }

  .password-image {
    height: 90px;
  }

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

  .footer-rights-wrapper {
    text-align: center;
    justify-content: center;
    align-items: flex-start;
  }

  .miral-title {
    font-size: 16rem;
  }

  .banner-clip-con {
    padding-top: 300px;
  }

  .hero-image {
    background-image: linear-gradient(#0000 35%, #0000004d 92%), url('../images/hero-background.webp');
    background-position: 0 0, 50%;
    background-size: auto, cover;
  }

  .banner-photo-png {
    height: 87%;
  }

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

  .wrapper-item-home-3 {
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    height: 10px;
  }

  .border-wrap-4 {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    display: flex;
  }

  .hero-nav-dropdown-2 {
    border-bottom: 1px solid var(--white-10);
    background-color: var(--primary);
    width: 100%;
    padding-left: 0;
    transition: all .35s;
  }

  .hero-nav-dropdown-2:hover {
    background-color: var(--primary);
  }

  .header-link-item-2 {
    border-style: none none solid;
    border-bottom-color: var(--white-10);
    background-color: #0000;
    border-radius: 0;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    min-height: 60px;
    padding: 0 0 0 15px;
  }

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

  .top-tablet-menu-3 {
    width: 100%;
  }

  .nav-intro-item {
    padding-top: 14px;
    padding-bottom: 14px;
    padding-left: 0;
  }

  .logo-project {
    height: 40px;
  }

  .right-nav-menu {
    display: none;
  }

  .button-link.full-wdth, .button-link-white.full-wdth {
    justify-content: center;
    align-items: center;
    width: 100%;
    display: flex;
  }

  .hero-nav-dropdown-3 {
    border-bottom: 1px solid #ffffff26;
    width: 100%;
    padding-left: 0;
    transition: all .35s;
  }

  .hero-nav-dropdown-3:hover {
    background-color: #141414;
  }

  .header-link-item-3 {
    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-3:hover {
    background-color: #0e0e0e;
  }

  .intro-content {
    width: 85%;
  }

  .dropdown-menu-3 {
    background-color: var(--light-bg);
    border-radius: 22px;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    height: auto;
    padding-bottom: 20px;
    overflow: hidden;
  }

  .nav-menu-shadow-overlay-4 {
    border-right: 1px solid var(--white-10);
    background-color: var(--primary);
    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 15px #ffffff0d;
  }

  .nav-dropdown-item {
    width: 100%;
  }

  .tablet-header-wrap {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    display: block;
  }

  .tablet-menu-4 {
    background-color: var(--primary);
    justify-content: space-between;
    align-items: center;
    height: 69px;
    padding-top: 8px;
    padding-left: 15px;
    padding-right: 15px;
    display: flex;
  }

  .menu-button-3 {
    text-align: right;
    justify-content: flex-end;
    align-items: center;
    height: 40px;
    padding: 15px 0;
  }

  .menu-button-3.w--open {
    background-color: #0000;
    display: none;
  }

  .nav-close-icon-4 {
    align-self: center;
    width: auto;
    height: 18px;
  }

  .nav-menu-wrap {
    background-color: #0000;
    flex-direction: column;
    width: 100%;
    position: absolute;
    inset: 0% auto auto 0%;
    overflow: visible;
  }

  .header-link-item {
    background-color: #0000;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0;
  }

  .login-tablet-wrap-2 {
    grid-row-gap: 20px;
    flex-direction: column;
    width: 100%;
    margin-top: 30px;
    margin-left: 0;
    display: flex;
  }

  .close-menu-button-3 {
    justify-content: center;
    align-items: center;
    height: 40px;
    padding: 7px 0 5px 20px;
    display: flex;
  }

  .close-menu-button-3.w--open {
    z-index: 10;
    background-color: #0000;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 40px;
    padding: 7px 8px 5px 10px;
    display: flex;
  }

  .menu-item-wrapper-2 {
    justify-content: space-between;
    padding-top: 10px;
    padding-bottom: 10px;
    display: flex;
  }

  .nav-line-white {
    background-color: var(--white);
    height: .4px;
    margin-bottom: 5px;
  }

  .line-white {
    background-color: var(--white);
    height: 1.5px;
  }

  .nav-fixed-menu {
    height: 70px;
  }

  .border-wrap-3 {
    border-top: 1px solid var(--white-10);
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    display: flex;
  }

  .nav-hero-container {
    min-height: 70px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .tablet-btn-group {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    flex-flow: column;
    justify-content: center;
    align-items: stretch;
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
    display: flex;
  }

  .large-white-title {
    width: 88%;
  }

  .intro-bottom-about.mobile-right {
    justify-content: flex-start;
    align-items: flex-end;
  }

  .intro-text-space {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
  }

  .miral-title-footer {
    font-size: 18.5rem;
  }

  .footer-large-text {
    margin-bottom: -95px;
  }

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

  .footer-link-wrap {
    justify-content: flex-start;
    align-items: center;
  }

  .footer-link-wrap.center {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .footer-link-wrap.right {
    justify-content: flex-start;
    align-items: center;
  }

  .footer-link-wrap.center-rights {
    text-align: center;
    justify-content: center;
    align-items: center;
  }

  .footer-link-wrap.right-centered {
    text-align: center;
    justify-content: flex-start;
    align-items: center;
  }

  .footer-link-wrap.center-address {
    margin-top: 40px;
    margin-bottom: 60px;
  }

  .footer-link-wrap.mobilepad {
    padding-top: 40px;
  }

  .large-link {
    font-size: 44px;
  }

  .large-link-number {
    font-size: 35px;
  }

  .footer-address {
    width: 35%;
  }

  .photo-wrap.left-side, .photo-wrap.right-side {
    width: 45%;
  }

  .scroll-image-01 {
    border-radius: 12px;
  }

  .hotel-image.img-03, .hotel-image.img-01 {
    height: 40vh;
  }

  .scroll-image-03 {
    border-radius: 12px;
    bottom: -117px;
  }

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

  .slider-grid {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    grid-template-columns: 1fr;
  }

  .info-slider-right {
    width: 100%;
    padding-top: 20px;
    padding-left: 0;
  }

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

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

  .white-slider-title, .white-description {
    text-align: center;
  }

  .intro-bottom-slider {
    text-align: center;
    justify-content: flex-start;
    align-items: center;
  }

  .card-intro-001 {
    width: 65%;
  }

  .card-intro-02 {
    justify-content: flex-start;
    align-items: flex-end;
    width: 65%;
    margin-left: auto;
  }

  .vector-wrap-02 {
    margin-right: 40px;
  }

  .top-slide-image {
    width: 40%;
  }

  .bottom-intro-slide {
    min-height: 300px;
  }

  .service-title-wrap {
    width: 75%;
  }

  .card-circle-link.small {
    width: 56px;
    height: 56px;
  }

  .villa-title {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    text-align: center;
    grid-template-columns: 1fr;
    justify-content: center;
  }

  .villa-info {
    justify-content: flex-start;
    align-items: flex-end;
  }

  .info-villa-grid {
    grid-column-gap: 40px;
    grid-row-gap: 15px;
    grid-template-rows: auto;
    grid-template-columns: auto;
    align-content: center;
    place-items: center stretch;
  }

  .guest-reviews {
    padding: 30px;
  }

  .info-tab-right {
    text-align: center;
    padding-top: 0;
  }

  .info-tab-left {
    padding-left: 30px;
    padding-right: 30px;
  }

  .white-tab-title {
    text-align: center;
    width: 80%;
  }

  .white-tab-description {
    text-align: center;
  }

  .tab-intro-bottom {
    text-align: center;
    justify-content: flex-start;
    align-items: center;
  }

  .cta-overlay {
    background-color: #0000004d;
    background-image: linear-gradient(180deg, var(--primary), var(--transparent) 30%), linear-gradient(45deg, #00000073 9%, var(--transparent));
  }

  .logo-vector {
    height: 180px;
  }

  .form-white-subtitle {
    font-size: 16px;
  }

  .review-grid-content {
    grid-template-columns: auto 1fr;
  }

  .reviews-basic {
    padding-bottom: 80px;
  }

  .current-review {
    font-size: 24px;
  }

  .card-service {
    overflow: visible;
  }

  .service-card-intro {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
    justify-content: space-between;
  }

  .tab-grid {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    flex-flow: column;
    grid-template-columns: 1fr;
  }

  .header-link-light {
    border-style: none none solid;
    border-bottom-color: var(--dark-20);
    background-color: #0000;
    border-radius: 0;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    min-height: 60px;
    padding: 0 0 0 15px;
  }

  .header-link-light:hover {
    background-color: var(--transparent);
  }

  .light-dropdown {
    border-bottom: 1px solid var(--dark-gray-50);
    background-color: var(--transparent);
    width: 100%;
    padding-left: 0;
    transition: all .35s;
  }

  .light-dropdown:hover {
    background-color: var(--transparent);
  }

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

  .wdth-h2-title {
    width: 100%;
  }

  .column-par {
    width: 70%;
  }

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

  .left-tabs-menu {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    justify-content: stretch;
    padding-top: 0;
    padding-right: 0;
    display: grid;
  }

  .form-button-black:hover {
    opacity: 1;
  }

  .text-grid-row {
    text-align: center;
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    width: 80%;
    display: flex;
  }

  .blog-listing {
    grid-row-gap: 50px;
    grid-template-columns: 1fr;
  }

  .collection-blog-wrapper {
    height: auto;
  }

  .blog-height {
    min-height: 540px;
  }

  .blog-title {
    font-size: 26px;
  }

  .blog-line {
    display: none;
  }

  .news-item {
    min-height: auto;
  }

  .par-size {
    width: 80%;
  }

  .blog-description {
    padding-top: 0;
    padding-bottom: 0;
  }

  .photo-slider {
    min-height: auto;
  }

  .tab-hero-title {
    grid-template-columns: auto;
    justify-content: flex-start;
    place-items: center;
    display: flex;
  }

  .bottom-tab-line {
    display: none;
  }

  .blog-info-card {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
    justify-content: space-between;
  }

  .menu-button-light {
    text-align: right;
    justify-content: center;
    align-items: center;
    height: 40px;
    padding: 0;
    display: flex;
  }

  .menu-button-light.w--open {
    background-color: #0000;
    display: none;
  }

  .header-link-color {
    border-style: none none solid;
    border-bottom-color: var(--white-10);
    background-color: var(--primary);
    border-radius: 0;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    min-height: 60px;
    padding: 0 0 0 15px;
  }

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

  .dropdown-hero-menu {
    background-color: var(--primary);
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    height: auto;
    padding-bottom: 20px;
    overflow: hidden;
  }

  .news-intro-item {
    min-height: auto;
  }

  .form-large-overlay {
    background-color: #0000003d;
  }

  .form-grid {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    text-align: center;
    grid-template-columns: 1fr;
  }

  .form-right {
    justify-content: center;
  }

  .current-form {
    width: 80%;
    max-width: 100%;
  }

  .form-button-color:hover {
    opacity: 1;
  }

  .right-villa-info {
    padding-left: 20px;
  }

  ._404-title {
    font-size: 120px;
  }

  .grid-service-banner {
    padding-top: 140px;
  }

  .button-peach-color:hover {
    opacity: 1;
  }

  .top-service-image {
    height: 250px;
  }

  .title-service-wdth {
    text-align: center;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .section-blog-details-2 {
    height: 450px;
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .content-blog-details-wrap {
    grid-template-columns: 1fr;
  }

  .service-details-title {
    width: 100%;
  }

  .blog-intro-content-2 {
    width: 100%;
    min-height: auto;
    padding-top: 140px;
    padding-bottom: 100px;
  }

  .scroll-blog-link {
    margin-bottom: -80px;
    right: 40px;
  }

  .banner-service-par {
    width: 80%;
  }

  .blog-template-wrap {
    padding-left: 40px;
    padding-right: 40px;
  }

  .blog-template-wrap.banner {
    padding-left: 0;
    padding-right: 0;
  }

  .service-tab-grid {
    grid-column-gap: 17px;
    grid-row-gap: 17px;
  }

  .service-tab-grid.small-grid {
    grid-template-columns: 40px 1fr auto;
  }

  .details-body {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }

  .form-hero-input-light.message {
    min-height: 145px;
  }

  .service-small-form {
    grid-column-gap: 8px;
  }

  .content-details {
    grid-row-gap: 60px;
    flex-direction: column-reverse;
    grid-template-columns: 1fr;
  }

  .group-inquire-top {
    grid-row-gap: 30px;
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .success-wrapper-center {
    justify-content: center;
    align-items: center;
  }

  .succes-message-white {
    text-align: center;
  }

  .form-discount-title {
    font-size: 45px;
  }

  .service-form {
    align-items: center;
  }

  .faq-answer {
    padding-right: 70px;
  }

  .faq-text.bold {
    font-size: 26px;
  }

  .studio-service-text.max-width {
    width: 90%;
    max-width: none;
  }

  .faq-grid-item {
    width: 100%;
  }

  .details-card {
    width: 100%;
    position: static;
  }

  .centered-title-service {
    text-align: center;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .serv-light-description {
    width: 100%;
  }

  .left-title-wrap {
    justify-content: center;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
  }

  .address-wdth {
    width: 80%;
  }

  .inner-banner-2 {
    min-height: 300px;
    padding-top: 100px;
    padding-bottom: 60px;
  }

  .inner-banner-2.contact {
    min-height: 400px;
    padding-bottom: 160px;
  }

  .success-message-content {
    min-height: 350px;
    padding: 12px;
  }

  .arrow-clip {
    justify-content: center;
    align-items: center;
  }

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

  .contact-us-grid {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
    grid-template-columns: 1fr;
    margin-top: -100px;
  }

  .right-contacts-form {
    padding-left: 40px;
    padding-right: 40px;
  }

  .hero-form-block {
    min-height: auto;
  }

  .left-contacts {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
    text-align: center;
    padding-top: 0;
  }

  .lightbox-item-card {
    min-height: 180px;
  }

  .hero-pricing-item {
    border-radius: 15px;
    margin-top: 0;
    overflow: hidden;
  }

  .benefit-card {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

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

  .hero-villa-cover {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

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

  .social-block {
    cursor: default;
  }

  .instagram-box {
    height: 220px;
  }

  .hover-circle-wrapper-4, .arrow-item-cover, .promotion-label-holder {
    display: none;
  }

  .promotion-label-left {
    max-width: 380px;
  }

  .promotion-labels-wrapper-to-remove {
    display: none;
  }

  .large-white-title-2 {
    width: 88%;
  }

  .paragraph-white-2 {
    width: 70%;
  }

  .phone-image {
    width: 40%;
  }

  .card-intro-02-phone {
    justify-content: flex-start;
    align-items: flex-end;
    width: 100%;
    margin-left: auto;
  }

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

  .blog-text-wdthbutton {
    justify-content: flex-start;
    align-items: center;
  }

  .tabs-absolute-image {
    width: 80%;
    top: auto;
    bottom: 0;
  }

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

  .slide-nav-2, .left-arrow, .right-arrow {
    bottom: -50px;
  }

  .slider-background-wrapper {
    padding: 60px;
  }

  .slider-background-wrapper.hero-wrapper {
    padding-left: 60px;
  }

  .slide-arrow {
    right: -10px;
  }

  .slide-arrow.left {
    left: -10px;
  }

  .hero-slide-background {
    background-position: 20% 0;
  }

  .form-button-color-2:hover {
    opacity: 1;
  }

  .right-contacts-form-2 {
    padding-left: 40px;
    padding-right: 40px;
  }
}

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

  h2 {
    font-size: 38px;
  }

  h3 {
    font-size: 30px;
  }

  .section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .section.form-seleector {
    padding-bottom: 90px;
  }

  .spacing-system-column {
    margin-top: 20px;
  }

  .headings-typography-wrapper {
    width: 100%;
  }

  .primary-button.pagination {
    margin-top: 40px;
  }

  .licensing-title-wrapper {
    margin-bottom: 30px;
  }

  .utility-page-content {
    width: 70%;
  }

  .password-image {
    height: 80px;
  }

  .footer {
    padding-top: 60px;
  }

  .style-guide-button-wrapper {
    width: auto;
  }

  .section-title-description {
    width: 100%;
  }

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

  .about-3-tab-link.w--current {
    font-size: 20px;
  }

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

  .miral-title {
    font-size: 10rem;
  }

  .banner-clip-con {
    padding-top: 200px;
  }

  .banner-photo, .banner-photo-png {
    height: 93%;
  }

  .brand-logo.w--current {
    padding-left: 0;
  }

  .relative-banner-content {
    grid-template-rows: auto 240px auto auto;
    padding-top: 130px;
    padding-bottom: 60px;
  }

  .intro-mirall-grid {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
  }

  .intro-content {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    width: 100%;
  }

  .star-icon {
    height: 45px;
  }

  .intro-white-text {
    font-size: 16px;
  }

  .dropdown-menu-3 {
    overflow: hidden;
  }

  .nav-menu-wrap {
    max-width: none;
  }

  .primary-dark-button, .large-white-title {
    width: 100%;
  }

  .intro-bottom-about.mobile-right {
    justify-content: flex-start;
    align-items: flex-start;
  }

  .intro-bottom-about.mobile-hide {
    display: none;
  }

  .intro-text-space {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    padding-top: 20px;
    padding-bottom: 220px;
  }

  .miral-title-footer {
    font-size: 13.5rem;
  }

  .footer-large-text {
    margin-bottom: -62px;
  }

  .large-link {
    font-size: 32px;
  }

  .large-link-number {
    font-size: 25px;
  }

  .photo-wrap.left-side, .photo-wrap.right-side {
    display: none;
  }

  .hotel-image.img-03 {
    height: 30vh;
    left: -10%;
  }

  .hotel-image.img-01 {
    height: 30vh;
    right: -20%;
  }

  .scroll-image-03 {
    bottom: -167px;
  }

  .row-003 {
    margin-top: 20px;
    margin-bottom: 40px;
  }

  .slider-left-content {
    width: 100%;
  }

  .card-intro-001 {
    width: 50%;
  }

  .vector-wrap-01 {
    align-self: auto;
    margin-top: 0;
    margin-left: 0;
  }

  .card-intro-02 {
    width: 55%;
  }

  .slider-white-card {
    flex-flow: column;
    height: 100%;
    padding-bottom: 20px;
  }

  .top-slide-image {
    justify-content: center;
    align-items: center;
    width: 100%;
    max-height: 300px;
    display: flex;
  }

  .bottom-intro-slide {
    min-height: 200px;
    padding-top: 0;
    padding-left: 10px;
  }

  .service-long-title {
    font-size: 22px;
  }

  .card-circle-link.small {
    width: 52px;
    height: 52px;
  }

  .section-dark {
    padding-top: 60px;
    padding-bottom: 60px;
  }

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

  .intro-white-description {
    text-align: center;
  }

  .villa-info {
    text-align: center;
    flex-flow: column;
    justify-content: center;
    align-items: center;
  }

  .white-h2-title {
    text-align: center;
  }

  .villa-list {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    flex-flow: column;
  }

  .villa-par-white {
    width: 85%;
    margin-bottom: 15px;
  }

  .info-villa-grid {
    grid-template-columns: auto;
  }

  .top-title-space {
    margin-bottom: 40px;
  }

  .form-title-wdth {
    width: 100%;
  }

  .info-tab-left {
    padding-left: 0;
    padding-right: 0;
  }

  .white-tab-title {
    width: 90%;
  }

  .white-tab-description {
    width: 94%;
  }

  .tab-intro-bottom {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }

  .cta-content {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
    flex-flow: column;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .cta-hero-content {
    text-align: center;
    justify-content: flex-start;
    align-items: center;
  }

  .cta-intro-top {
    justify-content: flex-start;
    align-items: center;
  }

  .cta-overlay {
    background-image: linear-gradient(180deg, var(--primary), var(--transparent) 37%), linear-gradient(45deg, #00000073 9%, var(--transparent));
  }

  .form-selector-item {
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
    padding-top: 30px;
  }

  .selector-grid {
    grid-template-columns: 1fr;
    justify-content: center;
    align-items: stretch;
  }

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

  .customer-reviews-wrapper {
    grid-column-gap: 120px;
    grid-row-gap: 120px;
    flex-flow: row;
    grid-template-rows: auto;
    grid-template-columns: 1fr auto;
    grid-auto-columns: 1fr;
    align-items: flex-end;
    display: grid;
  }

  .reviews-basic {
    padding-bottom: 100px;
    padding-left: 0;
  }

  .top-client-wrap {
    width: 90%;
  }

  .bottom-client-wrap {
    flex: none;
  }

  .intro-tab.tab-first {
    margin-right: auto;
  }

  .tabs-menu {
    justify-content: space-between;
    align-items: center;
  }

  .service-item-card {
    height: 100%;
  }

  .service-card-intro {
    grid-column-gap: 35px;
    grid-row-gap: 35px;
  }

  .top-space {
    margin-bottom: 40px;
  }

  .column-par, .text-grid-row {
    width: 100%;
  }

  .blog-listing {
    grid-row-gap: 40px;
  }

  .blog-height {
    min-height: 380px;
  }

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

  .par-size {
    width: 95%;
  }

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

  .blog-info-card {
    grid-column-gap: 35px;
    grid-row-gap: 35px;
  }

  .dropdown-hero-menu {
    overflow: hidden;
  }

  .section-space {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .current-form {
    background-color: #ffffff73;
    width: 100%;
  }

  .selector-form-grid {
    grid-template-columns: 1fr 1fr;
    justify-content: center;
  }

  .right-villa-info {
    padding-left: 0;
  }

  .no-shrink-btn-wrap {
    flex-flow: column;
    justify-content: space-between;
    align-items: center;
    display: flex;
  }

  ._404-wrapper {
    width: 100%;
  }

  ._404-title {
    font-size: 100px;
  }

  .grid-service-banner, .grid-service-banner.small-banner {
    padding-bottom: 330px;
  }

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

  .button-peach-color.pagination {
    margin-top: 40px;
  }

  .section-services {
    margin-top: -290px;
    padding-bottom: 60px;
  }

  .top-service-image {
    height: 300px;
  }

  .service-tabs {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    flex-flow: wrap;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .intro-tab-white.service-tab-first {
    margin-right: auto;
  }

  .intro-tab-white.service-tab-first.w--current {
    margin-right: 0;
  }

  .white-service-title {
    font-size: 50px;
  }

  .scroll-blog-circle-2 {
    width: 120px;
    height: 120px;
  }

  .service-details-title {
    width: 100%;
  }

  .blog-intro-content-2 {
    width: 100%;
    padding-top: 130px;
    padding-bottom: 110px;
  }

  .scroll-blog-link {
    margin-bottom: -60px;
    right: 20px;
  }

  .banner-service-par {
    width: 100%;
  }

  .blog-template-wrap {
    padding-left: 0;
    padding-right: 0;
  }

  .service-tab-grid {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    grid-template-columns: 2rem 1fr auto;
  }

  .service-small-form {
    border-radius: 12px;
  }

  .content-details {
    margin-left: 0;
  }

  .section-details {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .group-inquire-top {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .faq-toggle {
    padding-left: 15px;
  }

  .form-discount-title {
    font-size: 40px;
  }

  .service-form {
    flex-flow: wrap;
    justify-content: space-between;
    align-items: stretch;
    width: 100%;
  }

  .faq-text.bold {
    font-size: 20px;
  }

  .visit-form {
    flex-flow: wrap;
    justify-content: space-between;
    align-items: stretch;
    width: 100%;
  }

  .service-tab-icon {
    width: 2.5rem;
    height: 2.5rem;
  }

  .search-section {
    padding-top: 140px;
    padding-bottom: 60px;
  }

  .stories-item {
    padding: 30px 15px;
  }

  .address-wdth {
    width: 90%;
  }

  .inner-banner-2.contact {
    min-height: 350px;
    padding-bottom: 140px;
  }

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

  .right-contacts-form {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .hero-form-block {
    padding-top: 30px;
    padding-left: 24px;
    padding-right: 24px;
  }

  .flex-field {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    flex-flow: column;
  }

  .verticle-card-image {
    min-height: 320px;
  }

  .lightbox-item-card {
    min-height: 140px;
  }

  .price-bottom {
    width: 80%;
  }

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

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

  .bottom-slider-arrow-portfolio {
    height: 70px;
  }

  .testimonial-item-slider {
    padding-left: 40px;
    padding-right: 40px;
  }

  .instagram-box {
    height: 180px;
  }

  .promotion-label-left {
    max-width: 300px;
  }

  .hero-image-small {
    max-width: 35%;
  }

  .large-white-title-2, .paragraph-white-2 {
    width: 100%;
  }

  .phone-image {
    width: 80%;
  }

  .card-intro-02-phone, .card-phone {
    width: 100%;
  }

  .card-phone-title {
    font-size: 22px;
  }

  .phone-one-column {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    padding-top: 20px;
    padding-bottom: 220px;
  }

  .about-hotel-wrapper-phone {
    z-index: 0;
    position: absolute;
    left: 0%;
    right: 0%;
  }

  .mobile-only {
    z-index: 1;
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex-flow: column;
    padding-top: 500px;
    display: flex;
    position: relative;
  }

  .form-title-vert {
    width: 100%;
  }

  .absolute-line {
    display: none;
  }

  ._3-shields-absolute {
    position: relative;
  }

  .grid-inner {
    width: 100%;
  }

  .slider-background-wrapper {
    flex-direction: row;
    padding: 20px;
  }

  .slider-background-wrapper.hero-wrapper {
    padding-left: 18px;
    padding-right: 18px;
  }

  .photo-slider-2 {
    min-height: 450px;
  }

  .slide-arrow {
    outline-width: 5px;
    width: 52px;
    height: 52px;
  }

  .right-contacts-form-2 {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }
}

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

  blockquote {
    font-size: 20px;
  }

  .section.without-top-spacing.tabletoverflow, .section.bluemobile {
    background-color: var(--primary);
  }

  .base-container.mobilesmall {
    padding-left: 14px;
    padding-right: 14px;
  }

  .licensing-title-wrapper {
    grid-column-gap: 20px;
    flex-wrap: wrap;
  }

  .utility-page-content {
    width: 100%;
  }

  .footer {
    text-align: left;
  }

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

  .footer-copyright {
    text-align: center;
    flex-wrap: wrap;
    width: 100%;
  }

  .about-3-tab-link {
    font-size: 16px;
  }

  .about-3-tab-link.w--current {
    font-size: 18px;
  }

  .landing-feature-icon {
    margin-bottom: 10px;
  }

  .section-title-center {
    margin-bottom: 20px;
  }

  .our-services-wrap, .home-9-team-item {
    width: 100%;
  }

  .search {
    display: flex;
  }

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

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

  .footer-rights-wrapper {
    justify-content: center;
  }

  .footer-licensing-link {
    text-align: center;
    justify-content: center;
    line-height: 1.6em;
  }

  .miral-title {
    font-size: 6.5rem;
  }

  .banner-clip-con {
    padding-top: 230px;
  }

  .banner-photo {
    height: 85%;
  }

  .banner-photo-png {
    height: 79%;
  }

  .header-link-item-2, .no-shrink-wrap.m100 {
    width: 100%;
  }

  .button-link.large, .button-link-white.white {
    padding-left: 16px;
    padding-right: 16px;
    font-size: 14px;
  }

  .relative-banner-content {
    padding-top: 100px;
  }

  .header-link-item-3 {
    width: 100%;
  }

  .intro-mirall-grid {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    grid-template-columns: 1fr;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }

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

  .header-link-item {
    width: 100%;
  }

  .close-menu-button-3.w--open {
    height: 40px;
    padding-top: 7px;
  }

  .about-hotel-wrapper {
    display: flex;
    position: relative;
  }

  .large-white-title {
    font-size: 34px;
  }

  .intro-text-space {
    padding-top: 40px;
    padding-bottom: 160px;
  }

  .miral-title-footer {
    font-size: 8.2rem;
  }

  .footer-large-text {
    margin-bottom: -40px;
  }

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

  .footer-link-wrap {
    flex-flow: wrap;
    justify-content: center;
    align-items: flex-start;
  }

  .footer-link-wrap.center {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    justify-content: center;
    align-items: center;
  }

  .footer-link-wrap.right {
    flex-flow: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
  }

  .footer-link-wrap.center-address {
    margin-top: 0;
    margin-bottom: 40px;
  }

  .footer-link-wrap.mobilepad {
    flex-flow: column;
    justify-content: center;
    align-items: center;
  }

  .large-link {
    font-size: 35px;
  }

  .large-link-number {
    font-size: 28px;
  }

  .footer-address {
    width: 100%;
  }

  .photo-wrap {
    position: absolute;
  }

  .photo-wrap._003 {
    inset: 0 auto auto 0%;
  }

  .photo-wrap._001 {
    inset: 0% 0% auto auto;
  }

  .photo-wrap.left-side {
    inset: auto auto 0% 0%;
  }

  .photo-wrap.right-side {
    inset: 0% 0% auto auto;
  }

  .hotel-image.img-03, .hotel-image.img-01 {
    max-width: none;
  }

  .scroll-image-03 {
    bottom: 27px;
  }

  .card-grid {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
  }

  .row-003 {
    padding-bottom: 0;
  }

  .slider-grid {
    flex-flow: column;
    display: flex;
  }

  .info-slider-right {
    width: 100%;
  }

  .vector-png-01 {
    height: 50px;
  }

  .card-intro-001 {
    width: 30%;
  }

  .vector-wrap-01 {
    min-width: 40%;
  }

  .white-dot {
    width: 5px;
    height: 5px;
  }

  .dots-wrapper {
    margin-top: -2.5px;
  }

  .large-dot {
    width: 11px;
    height: 11px;
  }

  .card-intro-02 {
    width: 40%;
  }

  .vector-png-02 {
    height: 20px;
  }

  .vector-wrap-02 {
    margin-left: 0;
  }

  .bottom-intro-slide {
    min-height: 200px;
    padding-left: 5px;
    padding-right: 5px;
  }

  .service-long-title {
    font-size: 20px;
  }

  .short-card-info {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }

  .rotate-arrow.size-14px {
    height: 10px;
  }

  .short-info-details {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
  }

  .info-row {
    grid-column-gap: 10px;
    grid-row-gap: 0px;
    flex-flow: wrap;
  }

  .villa-par-white {
    width: 100%;
  }

  .guest-reviews {
    padding-left: 15px;
    padding-right: 15px;
  }

  .white-tab-title {
    width: 100%;
  }

  .form-selector-item {
    border-style: none none solid;
    border-bottom-color: var(--white-10);
    padding-left: 20px;
    padding-right: 20px;
  }

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

  .customer-reviews-wrapper {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    grid-template-columns: 1fr;
  }

  .current-review {
    font-size: 23px;
  }

  .quote-review-icon {
    order: -1;
  }

  .top-client-wrap {
    width: 100%;
  }

  .intro-tab.tab-first {
    margin-right: 0;
  }

  .tabs-menu {
    grid-column-gap: 7px;
    grid-row-gap: 7px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .tab-image-height {
    height: 250px;
  }

  .tab-card-info {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    text-align: center;
    justify-content: center;
  }

  .service-card-intro {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
  }

  .tab-grid {
    flex-flow: column;
    display: flex;
  }

  .header-link-light {
    width: 100%;
  }

  .h2-title {
    font-size: 34px;
  }

  .tab-three-grid.top {
    grid-template-rows: auto auto;
  }

  .blog-height {
    min-height: 300px;
  }

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

  .large-tab {
    padding-top: 5px;
    padding-bottom: 5px;
  }

  .hero-banner-card {
    min-width: 100%;
  }

  .photo-slider {
    padding-bottom: 50px;
  }

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

  .blog-info-card {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .header-link-color {
    width: 100%;
  }

  .section-space {
    padding-top: 120px;
    padding-bottom: 120px;
  }

  .form-grid {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }

  .form-spacing {
    padding: 15px;
  }

  .selector-form-grid {
    grid-template-columns: 1fr;
    margin-bottom: 30px;
  }

  .right-villa-info {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    padding-top: 0;
    padding-bottom: 0;
  }

  .info-bottom {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
  }

  .info-circle {
    width: 48px;
    height: 48px;
  }

  .villa-icon {
    height: 32px;
  }

  .villa-hero-title {
    font-size: 16px;
  }

  .villa-small-description {
    font-size: 12px;
  }

  .villa-bottom-link {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    font-size: 12px;
  }

  .circle-link-item {
    width: 24px;
    height: 24px;
  }

  .grid-service-banner {
    padding-top: 120px;
  }

  .top-service-image {
    height: 240px;
  }

  .intro-tab-white {
    text-align: center;
    height: auto;
  }

  .intro-tab-white.service-tab-first {
    margin-right: 0;
  }

  .white-service-title {
    font-size: 45px;
  }

  .blog-details-background-image {
    background-position: 40% 25%;
  }

  .date-line-container {
    width: 30px;
  }

  .content-blog-details-wrap {
    flex-flow: row;
    justify-content: center;
    align-items: center;
  }

  .date-line {
    width: 30px;
  }

  .blog-intro-content-2 {
    padding-top: 130px;
  }

  .scroll-blog-link {
    right: auto;
  }

  .date-wrap {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-flow: column;
  }

  .circle-link-wrapper {
    margin-left: -48px;
  }

  .title-blog-container {
    text-align: center;
  }

  .flex-form-row {
    flex-flow: column;
  }

  .service-tab-grid {
    grid-template-columns: 1fr auto;
    grid-auto-columns: auto;
  }

  .service-tab-grid.small-grid {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    grid-template-columns: 30px 1fr auto;
  }

  .details-body {
    grid-row-gap: 36px;
  }

  .group-inquire-top {
    grid-row-gap: 20px;
    text-align: center;
    flex-direction: column;
    grid-template-columns: auto;
    padding-left: 0;
    padding-right: 0;
  }

  .faq-toggle {
    padding-left: 15px;
  }

  .form-discount-title {
    font-size: 35px;
  }

  .faq-answer {
    padding-left: 15px;
    padding-right: 15px;
  }

  .faq-text.bold {
    font-size: 16px;
  }

  .studio-service-text {
    width: 88%;
  }

  .studio-service-text.max-width, .visit-form {
    width: 100%;
  }

  .search-title {
    text-align: center;
    font-size: 50px;
  }

  .stories-item {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .address-wdth {
    width: 100%;
  }

  .success-message-content {
    min-height: 300px;
    padding: 6px;
  }

  .contact-mask {
    width: 100%;
    max-width: 100%;
  }

  .address-wrapper {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    grid-template-columns: 1fr;
  }

  .flex-useful-links {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    grid-template-columns: 1fr;
  }

  .hero-form-block {
    padding-left: 15px;
    padding-right: 15px;
  }

  .verticle-card-image, .lightbox-item-card {
    min-height: 300px;
  }

  .price-bottom {
    width: 100%;
  }

  .hero-villa-cover {
    padding: 15px;
  }

  .bottom-slider-arrow-portfolio {
    border-right-style: none;
    width: 100%;
  }

  .testimonial-item-slider {
    padding-left: 15px;
    padding-right: 15px;
  }

  .instagram-box {
    height: 150px;
  }

  .hover-circle-wrapper-4 {
    padding: 40px;
  }

  .promotion-label-left {
    bottom: 90px;
    left: auto;
    right: 12px;
  }

  .hero-image-small {
    flex: 0 auto;
    max-width: 50%;
  }

  .hero-image-small.marg-right {
    margin-right: 4px;
  }

  .large-white-title-2 {
    font-size: 34px;
  }

  .card-phone-title {
    font-size: 20px;
  }

  .mobile-only {
    padding-top: 360px;
  }

  .tabs-absolute-image {
    width: 100%;
    top: 0;
    bottom: auto;
  }

  ._3-shields-image {
    margin-top: 32px;
  }

  .header-image-right {
    max-width: 100%;
  }

  .pop-up {
    background-color: var(--black-50);
    justify-content: center;
    align-items: flex-start;
    display: none;
    overflow: scroll;
  }

  .popup-close {
    cursor: pointer;
    width: 32px;
    height: 32px;
    top: 20px;
    right: 20px;
  }

  .slide-nav-2 {
    padding-left: 10px;
    padding-right: 10px;
  }

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

  .left-arrow {
    width: 50px;
    left: -30px;
  }

  .right-arrow {
    width: 50px;
    right: -30px;
  }

  .icon {
    align-self: center;
    width: 50px;
  }

  .slider-background-wrapper {
    min-height: auto;
    padding: 51px 6% 40px;
    position: relative;
  }

  .slider-background-wrapper.hero-wrapper {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .photo-slider-2 {
    min-height: 350px;
  }

  .slide-arrow {
    width: 48px;
    height: 48px;
  }
}

#w-node-_6f78199c-036e-8d7b-2567-4d91a895b928-50115269, #w-node-_9f31cbf1-6184-5a57-2e9e-2fcd3ba72235-50115269 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_24f915d7-ec88-0af8-845a-786063d35200-50115269 {
  grid-area: 4 / 1 / 5 / 2;
}

#w-node-_1d74865e-0258-67fc-d83e-90184ed0557b-50115269 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_24f915d7-ec88-0af8-845a-786063d35208-50115269 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_2b2d0a73-73ae-64aa-872f-8c7ef75e88da-50115269 {
  grid-area: 1 / 1 / 3 / 4;
}

#w-node-_2b2d0a73-73ae-64aa-872f-8c7ef75e88ee-50115269 {
  grid-area: 1 / 1 / 3 / 4;
  place-self: start end;
}

#w-node-_2b2d0a73-73ae-64aa-872f-8c7ef75e88f2-50115269 {
  grid-area: 1 / 1 / 3 / 3;
  place-self: start;
}

#w-node-_3c363f60-1aec-a167-8423-57cbd870a911-50115269 {
  grid-area: span 1 / span 3 / span 1 / span 3;
  justify-self: center;
}

#w-node-_3091e9c4-3de0-88d9-511f-f17a21342948-50115269 {
  grid-area: 1 / 1 / 2 / 3;
  align-self: center;
}

#w-node-_3091e9c4-3de0-88d9-511f-f17a21342970-50115269 {
  grid-area: 1 / 3 / 2 / 6;
  justify-self: center;
}

#w-node-_1b3dba09-42c0-cbc9-d332-a98aaad7a854-50115269 {
  grid-area: 1 / 1 / 3 / 4;
}

#w-node-_5283ff2e-68be-72eb-b533-168c8b38e511-50115269 {
  grid-area: 1 / 1 / 2 / 3;
  place-self: start;
}

#w-node-_1b3dba09-42c0-cbc9-d332-a98aaad7a872-50115269 {
  grid-area: 1 / 2 / 2 / 4;
  place-self: start end;
}

#w-node-_1b3dba09-42c0-cbc9-d332-a98aaad7a875-50115269 {
  grid-area: 2 / 1 / 3 / 3;
  place-self: start;
}

#w-node-b370774c-898b-ddea-c452-a9aa0e27c2cf-50115269 {
  grid-area: 2 / 2 / 3 / 4;
  place-self: start end;
}

#w-node-_554d3e42-2f26-6943-9b9f-25f93f90e0a0-50115269 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_554d3e42-2f26-6943-9b9f-25f93f90e0d5-50115269 {
  grid-area: 1 / 2 / 2 / 4;
}

#w-node-_7856faa6-7873-34d1-4d84-269dfc84d046-50115269, #w-node-c8ed653c-a5fb-f5e4-51aa-4884d5879afd-50115269, #w-node-_67798305-c864-a5dc-4240-98cbe6e13863-50115269, #w-node-e1ee9144-8f20-5ec6-ee7e-462ffdac5da5-50115269, #w-node-_4722fe2a-e90f-5f8e-4263-0d1ac957d202-50115269, #w-node-_9b82e4d3-b0e4-8023-caf0-003c79f0cd86-50115269 {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-_9afc32a8-3d2c-6355-f5f7-c0162846c3f4-50115269 {
  grid-area: 1 / 1 / 2 / 3;
  justify-self: stretch;
}

#w-node-_9afc32a8-3d2c-6355-f5f7-c0162846c3dc-50115269 {
  grid-area: 1 / 3 / 2 / 4;
  align-self: start;
}

#w-node-a6f88bf8-9d57-5458-4611-ff4d7f14a382-50115269 {
  justify-self: end;
}

#w-node-daf981fd-9b17-a0fb-7466-2c35634f2c73-634f2c73 {
  grid-column-start: 2;
}

#w-node-_5f60f773-39cf-463e-cd12-5ee879da875d-634f2c73, #w-node-_305e948f-bb5e-3021-acb4-40ab1cb10478-634f2c73 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-a6d4d9ae-19d6-18eb-84fb-bcdf70ae86ce-634f2c73 {
  grid-area: 2 / 1 / 3 / 2;
}

#w-node-_49c1e782-1e6f-8751-fa49-0a84da0e8104-634f2c73 {
  grid-area: 2 / 2 / 3 / 5;
}

#w-node-_70b8fe62-7c7e-0056-d04f-afa24dbdb25a-634f2c73 {
  grid-area: 2 / 5 / 3 / 6;
}

#w-node-_3cf8a0f5-1b04-0521-dc17-1ccd47ed88d6-634f2c73 {
  grid-area: 1 / 2 / 2 / 5;
  justify-self: center;
}

#w-node-e2b2f97b-4616-4cc3-5cea-ac4cdbd60b08-634f2c73 {
  grid-area: 1 / 5 / 2 / 6;
}

#w-node-_06743f8e-0610-f6ad-afe8-a2584138419a-634f2c73 {
  grid-area: 2 / 1 / 3 / 2;
}

#w-node-dc8bc540-a2a7-b440-6411-a7911496379e-1496379a {
  justify-self: start;
}

#w-node-dc8bc540-a2a7-b440-6411-a7911496384c-1496379a {
  justify-self: center;
}

#w-node-dc8bc540-a2a7-b440-6411-a79114963852-1496379a {
  justify-self: end;
}

#w-node-_59c0bc70-8d3e-619c-6522-5ad2c7f7e244-501152c2 {
  justify-self: start;
}

#w-node-_59c0bc70-8d3e-619c-6522-5ad2c7f7e2af-501152c2, #w-node-_59c0bc70-8d3e-619c-6522-5ad2c7f7e2b5-501152c2, #Email.w-node-_59c0bc70-8d3e-619c-6522-5ad2c7f7e2b7-501152c2, #w-node-_59c0bc70-8d3e-619c-6522-5ad2c7f7e2b9-501152c2, #Phone-Number.w-node-_59c0bc70-8d3e-619c-6522-5ad2c7f7e2bb-501152c2, #w-node-_59c0bc70-8d3e-619c-6522-5ad2c7f7e2bd-501152c2, #Message.w-node-_59c0bc70-8d3e-619c-6522-5ad2c7f7e2bf-501152c2 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_59c0bc70-8d3e-619c-6522-5ad2c7f7e2c0-501152c2 {
  justify-self: stretch;
}

#w-node-_29e2a4a2-d248-d00d-2a2e-2a1e2984a601-501152d1 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_390bea1b-83bc-3d96-2e57-521ca12ab9f2-501152d8, #w-node-d08c7961-8902-7f11-b148-28d97d24cd31-501152d8 {
  align-self: center;
}

#First-Name.w-node-_995ee905-2585-3a46-f811-add92e6f99f3-501152d8, #Email.w-node-_366fb09d-08c0-45b8-134b-05838656fadf-501152d8 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_0693350e-54b0-2725-e017-95061b496444-501152d9 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_0693350e-54b0-2725-e017-95061b496453-501152d9 {
  grid-area: 1 / 4 / 2 / 5;
  place-self: end;
}

#w-node-d29f9904-0234-504f-e424-4d3e396c5b3a-501152d9 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-d29f9904-0234-504f-e424-4d3e396c5b3b-501152d9 {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-d29f9904-0234-504f-e424-4d3e396c5b3c-501152d9 {
  justify-self: start;
}

#w-node-d29f9904-0234-504f-e424-4d3e396c5b75-501152d9 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-d29f9904-0234-504f-e424-4d3e396c5b77-501152d9, #w-node-d29f9904-0234-504f-e424-4d3e396c5b7a-501152d9 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-d29f9904-0234-504f-e424-4d3e396c5b85-501152d9 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-d29f9904-0234-504f-e424-4d3e396c5b87-501152d9, #w-node-d29f9904-0234-504f-e424-4d3e396c5b8a-501152d9 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-d29f9904-0234-504f-e424-4d3e396c5b96-501152d9 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-d29f9904-0234-504f-e424-4d3e396c5b98-501152d9, #w-node-d29f9904-0234-504f-e424-4d3e396c5b9b-501152d9 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-d29f9904-0234-504f-e424-4d3e396c5ba1-501152d9 {
  align-self: start;
}

#w-node-_17624d19-9f3d-52bf-9d79-73e366c48dc9-501152d9, #w-node-_17624d19-9f3d-52bf-9d79-73e366c48dcf-501152d9, #Email.w-node-_17624d19-9f3d-52bf-9d79-73e366c48dd1-501152d9, #w-node-_17624d19-9f3d-52bf-9d79-73e366c48dd3-501152d9, #Phone-Number.w-node-_17624d19-9f3d-52bf-9d79-73e366c48dd5-501152d9, #w-node-_17624d19-9f3d-52bf-9d79-73e366c48dd7-501152d9, #Message.w-node-_17624d19-9f3d-52bf-9d79-73e366c48dd9-501152d9 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_17624d19-9f3d-52bf-9d79-73e366c48dda-501152d9 {
  justify-self: stretch;
}

#w-node-d29f9904-0234-504f-e424-4d3e396c5bd0-501152d9, #w-node-d29f9904-0234-504f-e424-4d3e396c5bd2-501152d9 {
  align-self: center;
}

#w-node-ac9a2b92-1419-dfe9-5fb9-253d5ed44331-501152da, #w-node-_908d7ed1-3b06-683d-0a74-c8347e041aea-7e041ae7, #w-node-_908d7ed1-3b06-683d-0a74-c8347e041aeb-7e041ae7 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_908d7ed1-3b06-683d-0a74-c8347e041b07-7e041ae7 {
  grid-area: 2 / 1 / 3 / 2;
}

#w-node-_908d7ed1-3b06-683d-0a74-c8347e041b0c-7e041ae7 {
  grid-area: 2 / 2 / 3 / 3;
}

#w-node-_908d7ed1-3b06-683d-0a74-c8347e041b10-7e041ae7 {
  grid-area: 2 / 3 / 3 / 4;
}

#w-node-_908d7ed1-3b06-683d-0a74-c8347e041b1c-7e041ae7 {
  grid-area: 1 / 2 / 2 / 3;
  justify-self: center;
}

#w-node-_908d7ed1-3b06-683d-0a74-c8347e041b25-7e041ae7 {
  grid-area: 1 / 3 / 2 / 4;
}

#w-node-_908d7ed1-3b06-683d-0a74-c8347e041b41-7e041ae7 {
  grid-area: 2 / 1 / 3 / 2;
}

@media screen and (min-width: 1920px) {
  #w-node-_748b06e9-fcf0-c5c7-3b2f-ac90114e4201-50115269 {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-d29f9904-0234-504f-e424-4d3e396c5b3a-501152d9 {
    grid-area: 1 / 2 / 2 / 3;
  }

  #w-node-d29f9904-0234-504f-e424-4d3e396c5b3b-501152d9 {
    grid-area: 1 / 1 / 2 / 3;
  }
}

@media screen and (max-width: 991px) {
  #w-node-_9f31cbf1-6184-5a57-2e9e-2fcd3ba72235-50115269 {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-_24f915d7-ec88-0af8-845a-786063d35208-50115269 {
    grid-column: 1 / 2;
  }

  #w-node-_3091e9c4-3de0-88d9-511f-f17a21342970-50115269 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_554d3e42-2f26-6943-9b9f-25f93f90e08c-50115269 {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-_554d3e42-2f26-6943-9b9f-25f93f90e0a0-50115269 {
    justify-self: start;
  }

  #w-node-_554d3e42-2f26-6943-9b9f-25f93f90e0d5-50115269 {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-_00144694-3017-5346-fe9b-9d22eeec21e5-50115269 {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-_7856faa6-7873-34d1-4d84-269dfc84d03f-50115269 {
    grid-area: 1 / 1 / 2 / 3;
    align-self: end;
  }

  #w-node-_7856faa6-7873-34d1-4d84-269dfc84d046-50115269 {
    grid-area: 2 / 1 / 3 / 3;
    align-self: start;
  }

  #w-node-c8ed653c-a5fb-f5e4-51aa-4884d5879af6-50115269 {
    grid-area: 1 / 1 / 2 / 3;
    align-self: end;
  }

  #w-node-c8ed653c-a5fb-f5e4-51aa-4884d5879afd-50115269 {
    grid-area: 2 / 1 / 3 / 3;
    align-self: start;
  }

  #w-node-_67798305-c864-a5dc-4240-98cbe6e1385c-50115269 {
    grid-area: 1 / 1 / 2 / 3;
    align-self: end;
  }

  #w-node-_67798305-c864-a5dc-4240-98cbe6e13863-50115269 {
    grid-area: 2 / 1 / 3 / 3;
    align-self: start;
  }

  #w-node-e1ee9144-8f20-5ec6-ee7e-462ffdac5d9e-50115269 {
    grid-area: 1 / 1 / 2 / 3;
    align-self: end;
  }

  #w-node-e1ee9144-8f20-5ec6-ee7e-462ffdac5da5-50115269 {
    grid-area: 2 / 1 / 3 / 3;
    align-self: start;
  }

  #w-node-_4722fe2a-e90f-5f8e-4263-0d1ac957d1fb-50115269 {
    grid-area: 1 / 1 / 2 / 3;
    align-self: end;
  }

  #w-node-_4722fe2a-e90f-5f8e-4263-0d1ac957d202-50115269 {
    grid-area: 2 / 1 / 3 / 3;
    align-self: start;
  }

  #w-node-_9b82e4d3-b0e4-8023-caf0-003c79f0cd7f-50115269 {
    grid-area: 1 / 1 / 2 / 3;
    align-self: end;
  }

  #w-node-_9b82e4d3-b0e4-8023-caf0-003c79f0cd86-50115269 {
    grid-area: 2 / 1 / 3 / 3;
    align-self: start;
  }

  #w-node-_9afc32a8-3d2c-6355-f5f7-c0162846c3f4-50115269 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_9afc32a8-3d2c-6355-f5f7-c0162846c3dc-50115269 {
    order: -9999;
    grid-area: span 1 / span 1 / span 1 / span 1;
    justify-self: center;
  }

  #w-node-_305e948f-bb5e-3021-acb4-40ab1cb10478-634f2c73 {
    grid-row: 2 / 3;
  }

  #w-node-a6d4d9ae-19d6-18eb-84fb-bcdf70ae86ce-634f2c73 {
    grid-row: 5 / 6;
    grid-column-end: 2;
    justify-self: center;
  }

  #w-node-_49c1e782-1e6f-8751-fa49-0a84da0e8104-634f2c73 {
    grid-area: 4 / 1 / 5 / 2;
  }

  #w-node-_70b8fe62-7c7e-0056-d04f-afa24dbdb25a-634f2c73 {
    grid-area: 6 / 1 / 7 / 2;
    justify-self: center;
  }

  #w-node-_3cf8a0f5-1b04-0521-dc17-1ccd47ed88d6-634f2c73 {
    grid-column: 1 / 2;
  }

  #w-node-e2b2f97b-4616-4cc3-5cea-ac4cdbd60b08-634f2c73 {
    grid-area: 3 / 1 / 4 / 2;
  }

  #w-node-_59c0bc70-8d3e-619c-6522-5ad2c7f7e2aa-501152c2 {
    order: -9999;
  }

  #w-node-_0693350e-54b0-2725-e017-95061b496453-501152d9 {
    grid-column: 1 / 2;
    justify-self: start;
  }

  #w-node-_908d7ed1-3b06-683d-0a74-c8347e041b07-7e041ae7 {
    grid-row: 3 / 4;
    grid-column-end: 4;
    justify-self: center;
  }

  #w-node-_908d7ed1-3b06-683d-0a74-c8347e041b0c-7e041ae7 {
    grid-column: 1 / 4;
  }

  #w-node-_908d7ed1-3b06-683d-0a74-c8347e041b10-7e041ae7 {
    grid-row: 4 / 5;
    grid-column-start: 1;
    justify-self: center;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_1b3dba09-42c0-cbc9-d332-a98aaad7a854-50115269 {
    grid-row-end: 5;
  }

  #w-node-_7856faa6-7873-34d1-4d84-269dfc84d03f-50115269 {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-_7856faa6-7873-34d1-4d84-269dfc84d046-50115269 {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-c8ed653c-a5fb-f5e4-51aa-4884d5879af6-50115269 {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-c8ed653c-a5fb-f5e4-51aa-4884d5879afd-50115269 {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-_67798305-c864-a5dc-4240-98cbe6e1385c-50115269 {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-_67798305-c864-a5dc-4240-98cbe6e13863-50115269 {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-e1ee9144-8f20-5ec6-ee7e-462ffdac5d9e-50115269 {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-e1ee9144-8f20-5ec6-ee7e-462ffdac5da5-50115269 {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-_4722fe2a-e90f-5f8e-4263-0d1ac957d1fb-50115269 {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-_4722fe2a-e90f-5f8e-4263-0d1ac957d202-50115269 {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-_9b82e4d3-b0e4-8023-caf0-003c79f0cd7f-50115269 {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-_9b82e4d3-b0e4-8023-caf0-003c79f0cd86-50115269 {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-ccabd450-0610-a0b9-1c0f-98e22643d03e-50115269 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_59c0bc70-8d3e-619c-6522-5ad2c7f7e2af-501152c2, #w-node-_17624d19-9f3d-52bf-9d79-73e366c48dc9-501152d9 {
    grid-column: span 1 / span 1;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_24f915d7-ec88-0af8-845a-786063d35200-50115269 {
    grid-area: 3 / 1 / 5 / 2;
  }

  #w-node-_24f915d7-ec88-0af8-845a-786063d35208-50115269 {
    grid-row: 1 / 2;
  }

  #w-node-_554d3e42-2f26-6943-9b9f-25f93f90e0a0-50115269 {
    grid-row: 2 / 3;
  }

  #w-node-_554d3e42-2f26-6943-9b9f-25f93f90e0d5-50115269 {
    grid-row: 1 / 2;
  }

  #w-node-daf981fd-9b17-a0fb-7466-2c35634f2c73-634f2c73 {
    grid-row-end: 4;
  }

  #w-node-a6d4d9ae-19d6-18eb-84fb-bcdf70ae86ce-634f2c73 {
    grid-row: 5 / 6;
    grid-column-end: 2;
  }

  #w-node-_70b8fe62-7c7e-0056-d04f-afa24dbdb25a-634f2c73 {
    grid-row: 6 / 7;
    grid-column-end: 2;
  }

  #w-node-e2b2f97b-4616-4cc3-5cea-ac4cdbd60b08-634f2c73 {
    grid-area: 3 / 1 / 4 / 2;
  }

  #w-node-d29f9904-0234-504f-e424-4d3e396c5b7a-501152d9, #w-node-d29f9904-0234-504f-e424-4d3e396c5b8a-501152d9, #w-node-d29f9904-0234-504f-e424-4d3e396c5b9b-501152d9 {
    justify-self: end;
  }

  #w-node-_908d7ed1-3b06-683d-0a74-c8347e041b07-7e041ae7 {
    grid-row: 5 / 6;
    grid-column-end: 2;
  }

  #w-node-_908d7ed1-3b06-683d-0a74-c8347e041b0c-7e041ae7 {
    grid-row: 3 / 4;
    grid-column-end: 2;
  }

  #w-node-_908d7ed1-3b06-683d-0a74-c8347e041b10-7e041ae7 {
    grid-row: 6 / 7;
    grid-column-end: 2;
  }

  #w-node-_908d7ed1-3b06-683d-0a74-c8347e041b1c-7e041ae7 {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-_908d7ed1-3b06-683d-0a74-c8347e041b25-7e041ae7 {
    grid-area: 4 / 1 / 5 / 2;
  }
}


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