@font-face {
  font-family: Gothamrounded;
  src: url('../fonts/GOTHAMROUNDED-MEDIUM.OTF') format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Gotham;
  src: url('../fonts/GOTHAM-BLACK.OTF') format("opentype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Gothamrounded;
  src: url('../fonts/GOTHAMROUNDED-BOLD.OTF') format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Gotham;
  src: url('../fonts/GOTHAM-LIGHT.OTF') format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Gotham Ro;
  src: url('../fonts/Gotham-Medium-RO.otf') format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Gotham Rounded;
  src: url('../fonts/Gotham-Rounded-Light.otf') format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

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

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

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

@font-face {
  font-family: "Heart Warming Font By Situjuh 7 Ntypes";
  src: url('../fonts/Heart-Warming-Font-by-Situjuh-7NTypes.otf') format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --darker-grey: #333;
  --blue: #2196f3;
  --dark-blue: #1565c0;
  --grey-mid: #a8a8a8;
  --dark-grey: #5d5d5d;
  --grey: #dbdbdb;
  --light-grey: #f1f1f1;
  --white: white;
  --green: #4caf50;
  --crimson: #d32f2f;
  --black: black;
  --slate-grey: #607d8b;
  --pink: #d81b60;
  --purple: #673ab7;
  --indigo: #3f51b5;
  --cyan: #00bcd4;
  --teal: #00bfa5;
  --lime: #cddc39;
  --gold: #ffc107;
  --orange: #f45a1e;
  --brown: #795548;
}

body {
  color: var(--darker-grey);
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 22px;
}

h1 {
  margin-top: 0;
  margin-bottom: 20px;
  font-family: Roboto;
  font-size: 35px;
  font-weight: 500;
  line-height: 40px;
}

h2 {
  margin-top: 0;
  margin-bottom: 20px;
  font-family: Roboto;
  font-size: 32px;
  font-weight: 500;
  line-height: 36px;
}

h3 {
  margin-top: 0;
  margin-bottom: 20px;
  font-family: Roboto;
  font-size: 26px;
  font-weight: 500;
  line-height: 33px;
}

h4 {
  margin-top: 0;
  margin-bottom: 20px;
  font-family: Roboto;
  font-size: 20px;
  font-weight: 500;
  line-height: 27px;
}

h5, h6 {
  margin-top: 0;
  margin-bottom: 20px;
  font-family: Roboto;
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
}

p {
  margin-top: 0;
  margin-bottom: 20px;
  font-weight: 400;
  line-height: 22px;
}

a {
  color: var(--blue);
  text-decoration: none;
}

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

strong {
  font-weight: bold;
}

blockquote {
  border-left: 5px solid #e2e2e2;
  margin-bottom: 20px;
  padding: 0 20px;
  font-size: 16px;
}

figure {
  margin-bottom: 20px;
}

figcaption {
  color: #3333338f;
  text-align: center;
  margin-top: 7px;
  font-size: 14px;
  line-height: 20px;
}

.button {
  background-color: var(--blue);
  color: #fff;
  text-align: center;
  border-radius: 3px;
  padding: 11px 20px;
  font-size: 16px;
  line-height: 19px;
  text-decoration: none;
  transition: background-color .15s;
  display: inline-block;
}

.button:hover {
  background-color: var(--dark-blue);
}

.button.w--current {
  background-color: #2e80b6;
}

.button.white {
  color: var(--darker-grey);
  background-color: #fff;
}

.button.white:hover {
  background-color: #ffffffc4;
}

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

.button.black:hover {
  background-color: #000;
}

.button.black.with-field {
  float: left;
  width: 22%;
  margin-left: 2%;
}

.button.full-width {
  width: 100%;
  display: block;
}

.button.small {
  background-color: var(--blue);
  text-transform: uppercase;
  padding: 7px 12px;
  font-size: 11px;
  line-height: 14px;
}

.button.small:hover {
  background-color: var(--dark-blue);
}

.button.tab {
  background-color: var(--grey-mid);
  margin-left: 8px;
  margin-right: 8px;
}

.button.tab:hover {
  background-color: #7e7e7e;
}

.button.tab.w--current {
  background-color: var(--blue);
}

.button.tab.w--current:hover {
  background-color: var(--dark-blue);
}

.button.with-field {
  float: left;
  width: 22%;
  margin-left: 2%;
}

.navigation-link {
  height: 60px;
  padding-top: 18px;
  padding-bottom: 18px;
}

.navigation-link:hover {
  color: var(--blue);
}

.navigation-link.white {
  color: #fff;
}

.navigation-bar {
  background-color: #fff;
}

.navigation-bar.dark {
  background-color: var(--dark-grey);
}

.navigation-bar.top {
  background-color: #fff;
  border-radius: 5px;
  margin-top: 58px;
  margin-bottom: 124px;
}

.navigation-menu.left {
  float: left;
}

.navigation-menu.on-bottom {
  float: none;
  text-align: center;
}

.brand-text {
  margin-top: 16px;
  margin-bottom: 0;
  font-size: 23px;
  font-weight: 400;
  line-height: 26px;
}

.brand-link {
  height: 60px;
  transition: opacity .2s;
}

.brand-link:hover {
  opacity: .66;
}

.brand-link.right {
  float: right;
}

.brand-link.on-top {
  float: none;
  text-align: center;
  display: block;
}

.brand-link.white {
  color: #fff;
}

.brand-link.left-spacing {
  color: #fff;
  margin-left: 15px;
}

.brand-link.left {
  margin-left: 16px;
}

.section {
  background-color: #fff;
  padding-top: 50px;
  padding-bottom: 50px;
  position: relative;
}

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

.section.accent {
  background-color: #f3f3f3;
}

.section.dark {
  background-color: var(--dark-grey);
  color: #fff;
}

.hero-slider {
  background-color: #0000;
  height: 455px;
}

.slide {
  background-color: var(--grey);
  padding-top: 82px;
  padding-left: 85px;
  padding-right: 85px;
}

.slide.two {
  background-color: var(--grey);
}

.header-section {
  background-color: var(--dark-grey);
  color: #fff;
  text-align: center;
  padding-top: 104px;
  padding-bottom: 104px;
}

.page-heading {
  margin-top: 0;
  margin-bottom: 11px;
}

.cta-section {
  background-color: var(--grey);
  padding-top: 50px;
  padding-bottom: 50px;
}

.cta-section.centered {
  text-align: center;
}

.cta-section.centered-accented {
  background-color: var(--darker-grey);
  color: #fff;
  text-align: center;
}

.cta-heading {
  margin-top: 3px;
  margin-bottom: 0;
  font-weight: 400;
}

.cta-heading.inline-block {
  margin-top: 0;
  margin-right: 13px;
  display: inline-block;
}

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

.white-box {
  background-color: #fff;
  border-radius: 5px;
  padding: 15px;
}

.fixed-image-section {
  color: #fff;
  text-align: center;
  background-image: linear-gradient(#00000040, #00000040), url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 0 0, 50%;
  background-size: auto, 125px;
  background-attachment: scroll, fixed;
  padding: 117px 20px;
}

.hero-section {
  background-color: var(--light-grey);
  text-align: center;
  height: 600px;
  padding-top: 178px;
}

.hero-section.centered {
  text-align: center;
}

.slider-navigation {
  font-size: 11px;
}

.slider-icon-circle {
  width: 50px;
  height: 50px;
  padding: 6px;
  font-size: 33px;
}

.hero-subheading {
  margin-bottom: 18px;
}

.hollow-button {
  border: 2px solid var(--blue);
  color: var(--blue);
  border-radius: 4px;
  margin-left: 10px;
  margin-right: 10px;
  padding: 9px 20px;
  font-size: 16px;
  line-height: 19px;
  text-decoration: none;
  transition: background-color .3s, border .3s, color .3s;
  display: inline-block;
}

.hollow-button:hover {
  border-color: var(--dark-blue);
  color: var(--dark-blue);
}

.hollow-button.white {
  color: #fff;
  border-color: #fff;
}

.hollow-button.white:hover {
  color: #ffffffb8;
  border-color: #ffffffa3;
}

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

.section-heading.centered {
  text-align: center;
}

.main-container {
  background-color: #fff;
  padding-left: 20px;
  padding-right: 20px;
}

.form-label {
  color: var(--white);
  text-align: center;
  text-transform: capitalize;
  margin-bottom: 6px;
  font-family: Gotham Rounded, sans-serif;
  font-size: 1.2vw;
  font-weight: 300;
  line-height: 1.2vw;
}

.section-subheading.center {
  text-align: center;
  font-size: 20px;
}

.section-title-group {
  margin-bottom: 62px;
}

.section-title-group.centered {
  text-align: center;
}

.form-field {
  border-style: none;
  border-radius: 3px;
  min-height: 41px;
  margin-bottom: 17px;
  margin-right: 1px;
  transition: box-shadow .15s;
  box-shadow: 0 0 0 1px #00000017;
}

.form-field:focus {
  box-shadow: 0 0 0 2px var(--blue);
}

.form-field.text-area {
  min-height: 110px;
}

.form-field.with-button {
  float: left;
  width: 75%;
  margin-bottom: 0;
}

.form-wrapper.squeezed {
  padding-left: 19%;
  padding-right: 19%;
}

.picture-border {
  border: 5px solid #fff;
  box-shadow: 0 0 0 1px #0000001f;
}

.round-image {
  border-radius: 100px;
  margin-bottom: 13px;
}

.social-button {
  background-color: var(--darker-grey);
  border-radius: 100px;
  margin-bottom: 8px;
  margin-left: 4px;
  margin-right: 4px;
  padding: 8px;
  transition: background-color .15s;
}

.social-button:hover {
  background-color: var(--dark-blue);
  opacity: 1;
}

.social-button.border {
  background-color: #0000;
  border: 1px solid #0000005c;
  padding: 6px;
}

.social-button.facebook {
  background-color: #3c5791;
}

.social-button.twitter {
  background-color: #29a9e8;
}

.social-button.red {
  background-color: #d11529;
}

.social-button.pink {
  background-color: #fc488f;
}

.social-button.pink2 {
  background-color: #ed1081;
}

.social-button.orange {
  background-color: #db4e34;
}

.social-button.vimeo {
  background-color: #1ebae7;
}

.social-button.linkdin {
  background-color: #1485c3;
}

.social-button.instagram {
  background-color: #4b769b;
}

.social-button.tumblr {
  background-color: #2e5270;
}

.social-button.webflow {
  background-color: #3278bd;
}

.social-button.medium {
  background-color: #549f63;
}

.social-icon-link {
  opacity: 1;
  padding: 3px;
  transition: opacity .15s;
}

.social-icon-link:hover {
  opacity: .5;
}

.profile-image {
  border-radius: 100px;
  margin-bottom: 15px;
}

.hero-with-nav {
  background-color: var(--grey);
}

.footer {
  color: var(--white);
  background-color: #c2c0c0;
  padding-top: 2vw;
  padding-bottom: 4vw;
  font-size: 1.3vw;
  font-weight: 300;
  line-height: 1.8vw;
}

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

.footer.centered-smaller {
  padding-top: 33px;
  padding-bottom: 33px;
}

.footer.accent {
  background-color: var(--light-grey);
}

.footer.centered-accented {
  background-color: var(--light-grey);
  text-align: center;
}

.float-right {
  float: right;
}

.footer-text {
  margin-top: 5px;
  margin-bottom: 5px;
  font-size: 16px;
}

.link {
  color: var(--blue);
  margin-bottom: 10px;
  text-decoration: none;
  display: block;
}

.link:hover {
  color: var(--dark-blue);
}

.footer-brand-text {
  font-size: 26px;
  line-height: 33px;
}

.sidemenu-wrapper {
  margin-left: 10px;
  padding-left: 20px;
}

.sidemenu-title {
  margin-bottom: 10px;
}

.sidemenu-link {
  color: #8f8f8f;
  padding-top: 6px;
  padding-bottom: 6px;
  text-decoration: none;
  display: block;
}

.sidemenu-link:hover {
  color: var(--darker-grey);
}

.grid-image {
  margin-bottom: 20px;
}

.info-wrapper {
  margin-bottom: 14px;
}

.info-icon {
  float: left;
}

.info-text {
  margin-left: 34px;
}

.footer-link {
  color: #ffffffbd;
  margin-bottom: 6px;
  text-decoration: none;
  display: block;
}

.footer-link:hover {
  color: #3b99d9;
}

.footer-link.with-icon {
  margin-left: 30px;
}

.hero-title-wrapper {
  margin-bottom: 155px;
}

.icon-left {
  float: left;
  color: #919191;
  padding: 6px;
}

.text-right {
  margin-left: 49px;
}

.left-navigation {
  float: left;
  background-color: var(--grey);
  width: 20%;
  height: 100vh;
}

.nav-link {
  text-align: center;
  padding: 7px 0;
  display: block;
}

.nav-menu {
  float: none;
}

.logo-link {
  float: none;
  text-align: center;
  margin-top: 216px;
  margin-bottom: 50px;
  display: block;
}

.content {
  float: left;
  width: 80%;
  overflow: hidden;
}

.social-footer {
  text-align: center;
  margin-top: 56px;
}

.grid-fours {
  float: left;
  width: 25%;
  padding: 10px;
}

.tab-menu {
  text-align: center;
  margin-bottom: 40px;
}

.flushed-grid {
  float: left;
  width: 25%;
}

.flushed-grid.thirds {
  width: 33.33%;
}

.flushed-grid.sixths {
  width: 16.66%;
}

.utility-page-wrap {
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  display: flex;
}

.utility-page-content {
  text-align: center;
  flex-direction: column;
  width: 260px;
  display: flex;
}

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

.success-wrapper {
  background-color: var(--green);
  color: #fff;
  border-radius: 5px;
  padding: 31px;
}

.success-message {
  margin-bottom: 0;
}

.error-wrapper {
  background-color: var(--crimson);
  color: #fff;
  border-radius: 5px;
}

.error-message {
  margin-bottom: 0;
}

.social-link-wrapper {
  text-align: center;
}

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

.custom-container {
  background-color: #fff;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  display: block;
}

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

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

.content-column {
  padding-top: 42px;
}

.feature-column, .center-content {
  text-align: center;
}

.waterfall-content-column {
  padding-top: 39px;
}

.waterfall-image-column {
  text-align: center;
}

.div-block {
  float: right;
  clear: none;
  display: block;
  position: absolute;
  overflow: visible;
}

.header {
  color: #a6a8aa;
  background-image: linear-gradient(#fdfdfd, #ececec 88%);
  flex-flow: column;
  justify-content: space-between;
  padding-top: 3vw;
  padding-bottom: 0;
  font-family: Gotham Rounded, sans-serif;
  font-size: 1.5vw;
  font-weight: 300;
  line-height: 1.6vw;
  display: flex;
  position: relative;
}

.header-container {
  grid-column-gap: 2.5vw;
  grid-row-gap: 2.5vw;
  flex: none;
  align-self: stretch;
  align-items: flex-start;
  width: 100%;
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 2.5vw;
  padding-left: 9vw;
  padding-right: 8vw;
  display: flex;
}

.body {
  background-color: #eee;
  max-width: 100%;
  font-family: Gotham, sans-serif;
  font-weight: 700;
}

.image {
  display: block;
}

.header-logo {
  flex: 0 auto;
  width: 21%;
  min-width: 200px;
  max-width: 330px;
  margin-right: auto;
}

.header-navigation {
  background-color: #fff;
  flex: auto;
  justify-content: space-between;
  align-self: auto;
  align-items: center;
  width: 100%;
  max-width: none;
  margin-left: auto;
  margin-right: auto;
  padding: 10px 0;
  display: block;
}

.header-navigation-link {
  color: var(--dark-grey);
  text-transform: uppercase;
  font-size: .9vw;
}

.header-navigation-link.w--current {
  color: #0b9bd7;
}

.header-navigation-link.review-link {
  display: block;
}

.header-navigation-container {
  justify-content: space-between;
  align-items: center;
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 13.5vw;
  padding-right: 13.5vw;
  display: flex;
}

.main-button {
  min-width: 220px;
  color: var(--white);
  text-transform: uppercase;
  background-color: #a99d98;
  border-radius: 11px;
  flex: 0 auto;
  justify-content: center;
  align-self: auto;
  align-items: center;
  margin-top: 0;
  padding: 8px 12px;
  font-family: Gotham Rounded Book, sans-serif;
  font-size: 1.2vw;
  font-weight: 400;
  line-height: 1.2vw;
  display: flex;
}

.main-button.main-button-red {
  background-color: #ed145b;
  align-self: flex-start;
  min-width: 220px;
  margin-top: 0;
  font-family: Gotham Rounded Book, sans-serif;
  font-weight: 400;
  line-height: 1.2vw;
}

.main-button.main-button-red.w--current {
  min-width: 220px;
}

.main-button.main-button-red.material-button {
  align-self: center;
}

.main-button.main-button-grey {
  background-color: #747a7b;
  align-self: flex-end;
  min-width: 274px;
}

.main-button.main-button-light {
  background-color: #c5ccd5;
  align-self: stretch;
  margin-top: auto;
  margin-right: 3vw;
}

.main-button.service-button {
  color: #0b9bd7;
  background-color: #0000;
  border: 2px solid #000;
  align-self: center;
  min-width: 275px;
}

.main-button.main-button-green {
  background-color: #294949;
  align-self: flex-end;
  min-width: 324px;
}

.main-button.call-us {
  text-transform: capitalize;
  background-color: #0b9bd7;
  min-width: 276px;
}

.header-call-us {
  color: #6d6e70;
  padding-top: .5vw;
  font-family: Gotham Rounded Book, sans-serif;
  font-size: 1.3vw;
  font-weight: 400;
  line-height: 1.5vw;
}

.header-order-now {
  background-image: linear-gradient(#000, #50555b 86%);
  height: 3vw;
  padding-top: 12px;
  padding-bottom: 12px;
  line-height: 1.5vw;
  position: static;
  inset: auto 0% -3.5vw;
}

.paragraph {
  color: var(--white);
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 0;
  font-family: Gotham Rounded Book, sans-serif;
  font-size: 1.3vw;
  line-height: 1.3vw;
}

.banner-1 {
  background-image: url('../images/8687930.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 109%;
  min-height: 40vw;
}

.banner-2 {
  background-image: url('../images/white-office-wall--window-and-green-tree-502356180_3869x2579.jpeg');
  background-position: 50% 39%;
  background-repeat: no-repeat;
  background-size: 120%;
  justify-content: flex-start;
  align-items: flex-start;
  min-height: 50vw;
  display: block;
}

.banner-2-info {
  flex-flow: row;
  justify-content: flex-end;
  align-self: stretch;
  align-items: center;
  max-width: 1920px;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  padding: 3.5vw 13vw 8vw;
  display: flex;
}

.banner-2-info-block {
  color: var(--white);
  background-color: #22262ac2;
  padding: 3vw;
  font-size: 40px;
  line-height: 44px;
}

.banner2-text {
  text-align: center;
  text-transform: uppercase;
  border: 1px solid #fff;
  border-bottom-right-radius: 70px;
  padding: 4.5vw 6vw 5vw;
  font-family: Gotham, sans-serif;
  font-size: 2vw;
  font-weight: 300;
  line-height: 2.6vw;
}

.rooms {
  color: #4d555b;
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
  padding: 6vw 7vw 3vw;
}

.heading {
  text-align: center;
  margin-bottom: 3vw;
  font-family: Gotham, sans-serif;
  font-size: 3.2vw;
  font-weight: 300;
  line-height: 4vw;
}

.heading.heading-2 {
  text-transform: uppercase;
}

.rooms-container {
  grid-column-gap: 1vw;
  grid-row-gap: 1vw;
  color: var(--white);
  flex-flow: wrap;
  justify-content: center;
  padding-left: 2vw;
  padding-right: 2vw;
  display: flex;
}

.room-item {
  background-image: url('../images/8687930.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  flex-flow: column;
  flex: 0 auto;
  justify-content: flex-end;
  min-width: auto;
  max-width: none;
  height: 30vw;
  font-weight: 300;
  display: flex;
}

.room-item.room-item-2 {
  background-image: url('../images/5979738.jpeg');
  background-position: 14%;
}

.room-item.room-item-3 {
  background-image: url('../images/aura-white-shutters-amanda.jpeg.webp');
  background-position: 31%;
  background-size: 150%;
  min-width: 25%;
  max-width: 25%;
}

.room-item.room-item-4 {
  background-image: url('../images/5895397.jpg');
  background-position: 27%;
  min-width: 25%;
  max-width: 25%;
}

.room-item.room-item-5 {
  background-image: url('../images/5979639.jpeg');
  background-position: 100% 1%;
  background-size: 222%;
}

.room-item.room-item-6.room-item-5 {
  background-image: url('../images/20210415_143251.jpg');
  background-position: 15% 81%;
  background-size: 214%;
  min-width: 25%;
  max-width: 25%;
}

.room-name-block {
  grid-column-gap: 1vw;
  grid-row-gap: 1vw;
  background-image: linear-gradient(360deg, #000000a3, #0b0b0b40 100%, #0b0b0b75);
  flex-flow: column;
  justify-content: center;
  align-items: center;
  height: 50%;
  padding-top: 3vw;
  padding-bottom: 3vw;
  display: flex;
}

.room-name {
  color: var(--white);
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 0;
  font-family: Gotham, sans-serif;
  font-size: 2.5vw;
  font-weight: 300;
  line-height: 3vw;
}

.room-text {
  justify-content: center;
  align-items: center;
  padding: 4vw 16vw 0;
  display: flex;
}

.text-block {
  flex: 1;
  padding-right: 3vw;
  font-size: 1.1vw;
  font-weight: 300;
  line-height: 1.3vw;
}

.features {
  background-color: #a4b3b4;
  padding: 2vw;
}

.features.features-2 {
  background-color: #59758c;
}

.features-container {
  z-index: 1;
  border: 1px solid #fff;
  justify-content: space-between;
  align-items: stretch;
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
  padding: 2vw 5vw 3vw;
  display: flex;
  position: relative;
}

.feature-item {
  justify-content: center;
  align-self: auto;
  align-items: flex-end;
  display: flex;
  position: relative;
}

.feature-item-text {
  z-index: 1;
  color: var(--white);
  text-align: center;
  text-transform: uppercase;
  align-self: center;
  font-size: 2.1vw;
  font-weight: 300;
  line-height: 2.7vw;
  position: relative;
}

.feature-item-text._3-weeks-text {
  padding-bottom: 2vw;
  padding-left: 10vw;
}

.feature-design {
  z-index: 0;
  background-image: linear-gradient(#0d71ba, #fff0 92%);
  width: 3vw;
  height: 8vw;
  position: absolute;
  inset: -4vw 40% auto;
}

.feature-design.feature-design-2 {
  background-image: linear-gradient(#0e5181, #fff0 92%);
  top: -4vw;
}

.style {
  padding: 7vw 7vw 5vw;
}

.style-container {
  grid-column-gap: 1vw;
  grid-row-gap: 2vw;
  flex-flow: wrap;
  justify-content: center;
  padding-left: 7vw;
  padding-right: 7vw;
  display: flex;
}

.style-item {
  flex-flow: column;
  min-width: auto;
  max-width: none;
  height: 42vw;
  display: flex;
  position: relative;
}

.style-image {
  box-sizing: border-box;
  object-fit: contain;
  object-position: 8% 50%;
  background-image: url('../images/5979639.jpeg');
  background-position: 0%;
  background-repeat: no-repeat;
  background-size: cover;
  flex: 1;
  max-height: 82%;
}

.style-image.style-image-rb {
  background-image: url('../images/5979738.jpeg');
  background-position: 81%;
  border: 1px #000;
  border-bottom-right-radius: 80px;
  max-height: 82%;
}

.style-image.style-image-lt {
  background-image: url('../images/5981345.jpeg');
  background-position: 28%;
  border: 1px #000;
  border-top-left-radius: 80px;
}

.style-image.style-image-lt.style-image-lt-2 {
  background-image: url('../images/1.png');
  background-size: 111%;
  border-style: none;
}

.style-image.style-image-rt {
  background-image: url('../images/3.png');
  border-top-right-radius: 80px;
}

.style-image.style-image-rt.style-image-rt-2 {
  background-image: url('../images/5.png');
  background-position: 72%;
  background-size: 111%;
}

.style-image.style-image-lb {
  background-image: url('../images/4.png');
  background-position: 18%;
  border: 1px #000;
  border-bottom-left-radius: 80px;
}

.style-text {
  color: #6d6e71;
  flex: 0 auto;
  width: 57%;
  margin-top: auto;
  font-size: 2.5vw;
  font-weight: 300;
  line-height: 3vw;
}

.style-image-filter {
  background-color: #0b9bd742;
  border: 1px #000;
  border-top-right-radius: 80px;
  position: absolute;
  inset: 0% 0% 18%;
}

.style-image-filter.style-image-filter-2 {
  background-color: #a99d9887;
  border-style: none;
  display: none;
}

._3-weeks {
  background-image: url('../images/5981318.jpeg');
  background-position: 100% 65%;
  background-repeat: no-repeat;
  background-size: 63%;
  padding: 2vw;
  position: relative;
}

._3-weeks-container {
  z-index: 1;
  border: 1px solid #fff;
  justify-content: space-between;
  align-items: center;
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
  padding: 3vw 6vw 2vw 2vw;
  display: flex;
  position: relative;
}

._3-weeks-grey-elem {
  background-color: #747a7b;
  width: 63%;
  height: 100%;
  position: absolute;
  inset: 0% auto auto -14%;
  transform: skew(41deg);
}

.offer {
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
  padding: 7vw 7vw 3vw;
}

.offer-container {
  flex-flow: wrap;
  justify-content: space-between;
  padding-left: 4vw;
  padding-right: 5vw;
  display: flex;
}

.offer-container.offer-container-2 {
  grid-column-gap: 4vw;
  grid-row-gap: 4vw;
  justify-content: flex-start;
  padding-left: 3vw;
  padding-right: 3vw;
}

.offer-item {
  grid-column-gap: 3vw;
  grid-row-gap: 3vw;
  color: #231f20;
  flex-flow: column;
  flex: 1;
  max-width: 27%;
  height: 47vw;
  display: flex;
}

.offer-item.offer-item-2 {
  grid-column-gap: 2vw;
  grid-row-gap: 2vw;
  align-items: flex-start;
  max-width: 30%;
  height: 27vw;
}

.offer-image {
  background-image: url('../images/white-office-wall--window-and-green-tree-502356180_3869x2579.jpeg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  flex: none;
  height: 45%;
}

.offer-image.offer-image-2 {
  background-image: url('../images/20241010_132636.jpg');
  border-top-right-radius: 80px;
}

.offer-image.offer-image-3 {
  background-image: url('../images/IMG-20230302-WA0002.jpg');
  border-top-left-radius: 80px;
}

.offer-title {
  text-transform: uppercase;
  margin-bottom: 0;
  font-family: Gotham, sans-serif;
  font-size: 1.8vw;
  font-weight: 300;
}

.offer-text {
  font-size: 1.3vw;
  font-weight: 300;
  line-height: 1.7vw;
}

.premium {
  filter: grayscale(36%) hue-rotate(349deg);
  background-image: url('../images/WhatsApp-Image-2024-05-11-at-11.44.47.jpeg');
  background-position: 50%;
  background-size: auto;
  padding: 2vw;
}

.premium-container {
  grid-column-gap: 5vw;
  grid-row-gap: 5vw;
  border: 1px solid #fff;
  justify-content: space-between;
  padding: 2vw 6vw 2vw 2vw;
  display: flex;
}

.premium-text {
  width: 41%;
  color: var(--white);
  text-align: center;
  text-transform: uppercase;
  background-color: #22262aa8;
  flex: 0 auto;
  align-self: center;
  margin-left: auto;
  margin-right: 0;
  padding-top: 2vw;
  padding-bottom: 2vw;
  font-size: 2.2vw;
  font-weight: 300;
  line-height: 2.7vw;
}

.offer-materials {
  grid-column-gap: 1vw;
  grid-row-gap: 1vw;
  height: 21vw;
  margin-bottom: 3vw;
  display: flex;
}

.material {
  background-image: url('../images/20240930_174135.jpg');
  background-position: 50% 10%;
  background-repeat: no-repeat;
  background-size: auto 120%;
  border-top-left-radius: 80px;
  border-bottom-right-radius: 80px;
  width: 33%;
}

.material.material-2 {
  background-image: url('../images/20241015_154845.jpg');
  background-position: 50%;
  background-size: cover;
  border-top-left-radius: 0;
  border-top-right-radius: 80px;
  border-bottom-right-radius: 0;
  width: 24%;
}

.material.material-2.about-us-2 {
  background-image: url('../images/20240328_141809.jpg');
  background-size: cover;
}

.material.material-3 {
  background-image: url('../images/IMG-20240621-WA0007.jpg');
  background-position: 50% 48%;
  background-size: cover;
  border-top-left-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 130px;
  flex: 1;
}

.material.material-3.about-us-3 {
  background-image: url('../images/20240328_143201.jpg');
}

.material.about-us-1 {
  background-image: url('../images/20240328_143416.jpg');
  background-position: 50%;
  background-size: cover;
}

.service {
  color: #4d555b;
  flex-flow: column;
  justify-content: center;
  align-items: stretch;
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
  padding: 5vw 7vw 4vw;
  display: flex;
}

.service-images {
  grid-column-gap: 1vw;
  grid-row-gap: 1vw;
  justify-content: space-between;
  align-items: stretch;
  height: 25vw;
  padding-bottom: 3vw;
  padding-left: 7vw;
  padding-right: 7vw;
  display: flex;
}

.service-image {
  background-image: url('../images/IMG_3118.jpeg');
  background-position: 50% 27%;
  background-repeat: no-repeat;
  background-size: cover;
  border-top-right-radius: 80px;
  flex: 1;
  order: 0;
  justify-content: center;
  width: 30%;
  display: flex;
}

.service-image.service-image-2 {
  background-position: 42% 69%;
  background-size: 230%;
  border-top-left-radius: 80px;
  border-top-right-radius: 0;
  border-bottom-left-radius: 80px;
  flex: none;
  width: 39%;
}

.service-image-devider {
  background-color: #eee;
  width: 1vw;
}

.service-container {
  grid-column-gap: 3vw;
  grid-row-gap: 3vw;
  flex-flow: column;
  display: flex;
}

.service-text {
  text-align: center;
  margin-bottom: 2vw;
  font-size: 2.25vw;
  font-weight: 300;
  line-height: 3.4vw;
}

.text-span {
  color: #0b9bd7;
}

.service-steps {
  grid-column-gap: 2vw;
  grid-row-gap: 2vw;
  justify-content: space-between;
  align-items: stretch;
  margin-bottom: 2vw;
  display: flex;
}

.service-step {
  grid-column-gap: 1vw;
  grid-row-gap: 1vw;
  flex-flow: column;
  max-width: 24%;
  display: flex;
  position: relative;
}

.step-title {
  margin-bottom: 0;
  font-family: PT Sans, sans-serif;
  font-size: 2vw;
  font-style: italic;
  font-weight: 700;
  line-height: 2vw;
}

.step-title.step-title-4 {
  color: #0b9bd7;
}

.step-text {
  font-size: 1.2vw;
  font-weight: 300;
  line-height: 2vw;
}

.step-description {
  color: #9caebc;
  padding-bottom: 1vw;
  font-family: PT Sans, sans-serif;
  font-size: 1.3vw;
  font-style: italic;
  font-weight: 300;
  line-height: 2vw;
}

.guarantee {
  background-image: url('../images/5979682.jpeg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  margin-left: auto;
  margin-right: auto;
  padding: 2vw;
}

.guarantee-container {
  grid-column-gap: 5vw;
  grid-row-gap: 5vw;
  border: 1px solid #fff;
  justify-content: space-between;
  align-items: stretch;
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
  padding: 2vw 3vw;
  display: flex;
  box-shadow: 0 0 0 2vw #294949b0;
}

.guarantee-text {
  width: 40%;
  color: var(--white);
  text-align: center;
  text-transform: uppercase;
  background-color: #1b3434c2;
  align-self: center;
  margin-left: auto;
  padding-top: 2vw;
  padding-bottom: 2vw;
  font-size: 2vw;
  font-weight: 300;
  line-height: 2.7vw;
}

.customer {
  padding: 7vw 7vw 5vw;
}

.text-span-2 {
  color: #0b9bd7;
  font-size: 2.8vw;
  line-height: 3vw;
}

.customer-container {
  grid-column-gap: 1vw;
  grid-row-gap: 1vw;
  padding-left: 7vw;
  padding-right: 7vw;
  display: flex;
}

.customer-item {
  grid-column-gap: 3vw;
  grid-row-gap: 3vw;
  flex-flow: column;
  flex: 1;
  justify-content: space-between;
  align-items: stretch;
  height: 46vw;
  display: flex;
}

.customer-image {
  background-image: url('../images/9.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-top-right-radius: 140px;
  flex: none;
  height: 58%;
}

.customer-image.customer-image-2 {
  background-image: url('../images/Homepage_banner_1200w.jpg');
  border-top-right-radius: 0;
  border-bottom-left-radius: 140px;
  flex: none;
}

.customer-title {
  color: #0b9bd7;
  margin-bottom: 0;
  font-family: Gotham, sans-serif;
  font-size: 2vw;
  font-weight: 300;
}

.customer-text {
  text-align: center;
  color: #58595b;
  max-width: 72%;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.3vw;
  font-weight: 300;
  line-height: 1.8vw;
}

.customer-name {
  font-family: Gotham Book, sans-serif;
  font-size: 1.3vw;
  font-weight: 400;
  line-height: 1.8vw;
}

.sale {
  color: var(--white);
  text-transform: uppercase;
  background-color: #ed145b;
  background-image: url('../images/12.png');
  background-position: 99%;
  background-size: 148%;
  font-size: 2vw;
  font-weight: 300;
  line-height: 3vw;
}

.sale-container {
  justify-content: space-between;
  align-items: center;
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
  padding: 2vw 25vw;
  display: flex;
}

.sale-text {
  flex-flow: column;
  align-items: center;
  margin-bottom: 0;
  font-size: 5.4vw;
  font-weight: 700;
  line-height: 6vw;
  display: flex;
}

.sale-subtext {
  text-transform: uppercase;
  font-size: 2.2vw;
}

.header-sale {
  height: 16vw;
  color: var(--white);
  background-color: #ed145b;
  background-image: url('../images/12.png');
  background-position: 98%;
  background-repeat: no-repeat;
  background-size: 163%;
  flex-flow: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 1.5vw 5vw;
  font-family: Gotham, sans-serif;
  display: flex;
  position: absolute;
  inset: auto 22% -13vw;
}

.sale-order {
  width: 100%;
  color: var(--white);
  text-align: center;
  letter-spacing: 14px;
  text-transform: uppercase;
  font-family: Gotham Book, sans-serif;
  font-size: 2vw;
  font-weight: 400;
  line-height: 3vw;
}

.sale-order.sale-order-2 {
  letter-spacing: 13px;
  color: #f7ec13;
}

.contact-container {
  grid-column-gap: 2vw;
  grid-row-gap: 2vw;
  justify-content: center;
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
  padding: 3vw 7vw;
  display: flex;
}

.footer-container {
  grid-column-gap: 4vw;
  grid-row-gap: 4vw;
  flex-flow: column;
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 10vw;
  display: flex;
}

.footer-logo {
  width: 21%;
  min-width: 250px;
  max-width: 300px;
}

.footer-navigation {
  grid-column-gap: 4vw;
  grid-row-gap: 4vw;
  justify-content: flex-start;
  align-items: stretch;
  display: flex;
}

.footer-navigation-item {
  max-width: 300px;
}

.footer-navigation-item.footer-socials {
  grid-column-gap: 2vw;
  grid-row-gap: 2vw;
  flex: 1;
  order: 0;
  justify-content: flex-end;
  padding-top: 1vw;
  display: flex;
}

.footer-navigation-item.footter-legal {
  display: none;
}

.footer-title {
  text-transform: uppercase;
  margin-bottom: .5vw;
  font-family: Gotham, sans-serif;
  font-size: 1.3vw;
  font-weight: 700;
  line-height: 2.5vw;
}

.footer-list {
  margin-bottom: 0;
  padding-left: 0;
  list-style-type: none;
}

.footer-social {
  background-color: #a4a4a4;
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  width: 4vw;
  height: 4vw;
  display: flex;
}

.image-2 {
  max-width: 60%;
}

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

.banner-devider {
  background-color: #a6a6a6;
  height: 3vw;
  box-shadow: 0 2vw 3vw 1vw #00000080;
}

.banner-devider.banner-devider-2 {
  box-shadow: 0 -2vw 3vw 1vw #00000080;
}

.offer-slider {
  display: none;
}

.offer-slider.about-us-slider {
  background-color: #0000;
  max-width: 66%;
  height: 500px;
  margin-bottom: 40px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.mask {
  max-width: 80%;
  margin-left: auto;
  margin-right: auto;
}

.icon, .icon-2 {
  color: #a99d98;
}

.step-line {
  background-image: url('../images/line1.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  max-width: 84%;
  height: auto;
  min-height: 2vw;
  position: absolute;
  inset: -7% -13% auto 35%;
}

.step-line.step-line-2 {
  background-image: url('../images/line2.svg');
  height: 2vw;
  top: 7%;
  left: 32%;
}

.step-line.step-line-3 {
  top: -10%;
  left: 39%;
  right: -12%;
}

.material-page-section {
  grid-column-gap: 5vw;
  grid-row-gap: 5vw;
  color: #4d555b;
  flex-flow: column;
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
  padding: 5vw 7vw;
  display: flex;
}

.material-item {
  grid-column-gap: 4vw;
  grid-row-gap: 4vw;
  justify-content: space-between;
  display: flex;
}

.material-item.material-item-2 {
  align-items: center;
}

.material-item-left {
  grid-column-gap: 4vw;
  grid-row-gap: 4vw;
  flex-flow: column;
  flex: 1;
  justify-content: center;
  align-items: center;
  display: flex;
}

.material-item-right {
  grid-column-gap: 2vw;
  grid-row-gap: 2vw;
  flex-flow: column;
  flex: 1;
  align-items: flex-start;
  display: flex;
}

.heading-2 {
  margin-bottom: 0;
  font-family: Gotham, sans-serif;
  font-size: 2.5vw;
  font-weight: 300;
  line-height: 3vw;
}

.material-image {
  object-fit: cover;
  background-image: url('../images/8687930.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-top-left-radius: 80px;
  flex: 1;
  width: 100%;
  min-height: 30vw;
}

.material-image.material-image-2 {
  object-fit: cover;
  background-image: url('../images/5981472.jpeg');
  border-bottom-left-radius: 80px;
  min-height: 36vw;
}

.material-image.material-image-3 {
  background-image: url('../images/WhatsApp-Image-2024-05-13-at-11.44.47.jpeg');
  background-position: 50% 39%;
}

.material-image.material-image-4 {
  background-image: url('../images/5981225.jpeg');
  background-position: 6%;
  border-top-left-radius: 0;
  border-bottom-right-radius: 80px;
  min-height: 36vw;
}

.material-title {
  color: #0b9bd7;
  margin-bottom: 2vw;
  font-family: Gotham, sans-serif;
  font-size: 2.5vw;
  font-weight: 300;
  line-height: 3vw;
}

.material-title.material-title-2 {
  text-transform: uppercase;
  color: #4d555b;
  align-self: auto;
  margin-bottom: 0;
  font-size: 1.5vw;
  line-height: 2vw;
}

.material-text {
  margin-bottom: 3vw;
  padding-right: 4vw;
  font-family: Gotham, sans-serif;
  font-size: 1.2vw;
  font-weight: 300;
  line-height: 1.7vw;
}

.material-text.material-text-2 {
  margin-bottom: 0;
  padding-left: 4vw;
  padding-right: 0;
}

.material-text.material-text-3 {
  flex: 1;
  margin-bottom: 0;
  padding-right: 0;
}

.form-section {
  background-image: url('../images/11.png');
  background-position: 0 0;
  background-size: auto;
  justify-content: center;
  align-items: center;
  height: auto;
  padding: 5vw 7vw;
  display: flex;
}

.form-section.form-section-2 {
  background-image: url('../images/11.png');
  justify-content: flex-end;
  align-items: center;
}

.form-section.form-section-3 {
  background-image: url('../images/13.png');
  justify-content: flex-end;
  align-items: center;
}

.form-container {
  background-color: #353b40bf;
  flex: 1;
  max-width: 600px;
  padding: 3vw;
}

.form-inner-container {
  border: 1px solid #fff;
  justify-content: center;
  align-items: center;
  padding: 3vw;
  display: flex;
}

.form-title {
  color: var(--white);
  text-transform: uppercase;
  font-family: Gotham Rounded, sans-serif;
  font-size: 2vw;
  line-height: 3vw;
  text-align: center;
}

.form-input {
  margin-bottom: 2vw;
  font-size: 1.2vw;
  line-height: 1.4vw;
}

.textarea {
  height: auto;
  min-height: 8vw;
  margin-bottom: 2vw;
  font-size: 1.2vw;
  line-height: 1.4vw;
}

.form {
  flex-flow: column;
  align-items: center;
  display: flex;
}

.form-block {
  width: 40vw;
}

.form-container-2 {
  background-color: #292d40e0;
  padding: 3vw;
}

.image-3 {
  background-image: url('../images/houzz.png');
  background-position: 50%;
  background-size: auto;
}

.link-block {
  justify-content: center;
  align-items: center;
  max-width: 150px;
  max-height: 60px;
  display: flex;
}

.link-block.link-block-1 {
  max-width: 200px;
}

.div-block-2 {
  grid-column-gap: 2vw;
  grid-row-gap: 2vw;
  align-items: center;
  display: flex;
}

.image-4 {
  max-height: 100%;
  display: block;
}

.text-block-2 {
  opacity: 0;
  height: 0;
  padding-left: 1.5vw;
  padding-right: 1.5vw;
  font-size: 1.1vw;
  line-height: 1.4vw;
  overflow: hidden;
}

.collection-item {
  min-width: 25%;
  max-width: 26%;
}

.link-block-2 {
  cursor: pointer;
  justify-content: center;
  align-items: flex-end;
  height: 100%;
  display: flex;
}

.collection-list-wrapper {
  min-width: 28%;
  max-width: 30%;
}

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

.text-span-3 {
  flex-flow: column;
  display: flex;
}

.slide-2.about-us-slide {
  max-width: none;
  margin-left: auto;
  margin-right: auto;
}

.image-5 {
  object-fit: contain;
  display: block;
}

.image-6 {
  object-fit: cover;
  height: auto;
  min-height: 100%;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.image-6.image-about-us-1 {
  height: 138%;
  min-height: 100%;
  margin-top: -121px;
}

.image-6.image-about-us-2 {
  height: 136%;
  margin-top: -31px;
}

.image-6.image-about-us-3 {
  max-width: 77%;
  height: auto;
  min-height: 100%;
}

.image-6.image-about-us-4 {
  height: 180%;
  margin-top: -340px;
}

.image-6.image-about-us-5 {
  max-width: 76%;
  height: 111%;
}

.link-2 {
  color: #6d6e70;
}

.link-2.text-pnone {
  width: 69%;
  color: var(--white);
  flex: 0 auto;
  padding-left: 0;
  font-weight: 300;
}

.link-3 {
  color: #6d6e70;
}

.link-3.text-phone {
  padding-left: 10px;
}

.div-block-3 {
  flex-flow: wrap;
  display: flex;
}

.text-phone {
  width: 60px;
}
.contacts {
  max-width: 300px;
  margin: 20px auto 0;
}
.contacts .text-phone {
  width: 100%;
  color: white;
  margin-bottom: 5px;

  & > span {
    display: inline-block;
    width: 80px;
  }
}

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

.main-button-2 {
  color: #fff;
  text-transform: uppercase;
  background-color: #a99d98;
  border-radius: 11px;
  flex: 0 auto;
  justify-content: center;
  align-self: auto;
  align-items: center;
  min-width: 220px;
  margin-top: 0;
  padding: 8px 12px;
  font-family: Gotham Rounded Book, sans-serif;
  font-size: 1.2vw;
  font-weight: 400;
  line-height: 1.2vw;
  display: flex;
}

.main-button-2.main-button-red {
  background-color: #ed145b;
  align-self: flex-start;
  min-width: 282px;
  margin-top: 0;
  font-family: Gotham Rounded Book, sans-serif;
  font-weight: 400;
  line-height: 1.2vw;
}

.main-button-2.main-button-red.w--current {
  min-width: 220px;
}

.whatsapp-bubble {
  background-color: #0000;
  background-image: url('../images/whatsapp-logo_icon.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  width: 50px;
  height: 50px;
  position: fixed;
  inset: auto 1% 1% auto;
}

.text-span-5 {
  margin-bottom: -7px;
  padding-top: 0;
  font-size: 1.2vw;
  font-weight: 300;
  line-height: 1vw;
}

html.w-mod-js [data-ix="fade-in-bottom-page-loads"] {
  opacity: 0;
  transform: translate(0, 50px);
}

html.w-mod-js [data-ix="fade-in-left-scroll-in"] {
  opacity: 0;
  transform: translate(-50px);
}

html.w-mod-js [data-ix="fade-in-right-scroll-in"] {
  opacity: 0;
  transform: translate(50px);
}

html.w-mod-js [data-ix="fade-in-top-scroll-in"] {
  opacity: 0;
  transform: translate(0, -50px);
}

html.w-mod-js [data-ix="fade-in-bottom-scroll-in"] {
  opacity: 0;
  transform: translate(0, 50px);
}

html.w-mod-js [data-ix="bounce-in-scroll-in"] {
  opacity: 0;
  transform: scale(.6);
}

html.w-mod-js [data-ix="scale-on-scroll"] {
  opacity: 0;
  transform: scale(.01);
}

@media screen and (min-width: 1440px) {
  .header {
    font-size: 1.3vw;
  }

  .main-button {
    font-size: 1.3vw;
    line-height: 1.3vw;
  }

  .main-button.main-button-red {
    line-height: 1.3vw;
  }

  .banner2-text {
    border-bottom-right-radius: 60px;
  }

  .footer-navigation-item.footer-socials {
    flex: 1;
    justify-content: flex-end;
    align-items: stretch;
  }

  .text-phone {
    width: 30%;
  }

  .main-button-2 {
    font-size: 1.3vw;
    line-height: 1.3vw;
  }
}

@media screen and (min-width: 1920px) {
  .header {
    font-size: 1.3vw;
    line-height: 1.3vw;
  }

  .header-container {
    flex-flow: row;
    align-self: center;
  }

  .main-button {
    font-size: 22px;
    line-height: 24px;
  }

  .main-button.main-button-red {
    flex: 0 auto;
    justify-content: center;
    align-self: flex-start;
    align-items: center;
    line-height: 24px;
  }

  .main-button.main-button-red.material-button {
    align-self: center;
  }

  .header-call-us {
    padding-top: .5vw;
    font-size: 1.3vw;
  }

  .header-order-now {
    justify-content: center;
    align-items: center;
    height: 3vw;
    display: flex;
  }

  .banner2-text {
    border-bottom-right-radius: 80px;
  }

  .room-item.room-item-5 {
    transform: none;
  }

  .room-text {
    padding-left: 10vw;
    padding-right: 10vw;
  }

  .style {
    max-width: 1920px;
    margin-left: auto;
    margin-right: auto;
    padding: 5vw 7vw;
  }

  .style-container {
    grid-column-gap: 1vw;
    grid-row-gap: 1vw;
    flex-flow: wrap;
    justify-content: center;
    display: flex;
  }

  .style-item {
    grid-column-gap: 1vw;
    grid-row-gap: 1vw;
    flex-flow: column;
    min-width: auto;
    max-width: none;
    height: 38vw;
    display: flex;
  }

  .style-image {
    flex: 1;
  }

  .style-text {
    color: #6d6e71;
    font-size: 2vw;
    font-weight: 300;
    line-height: 3vw;
  }

  .offer-container.offer-container-2 {
    grid-column-gap: 4vw;
    grid-row-gap: 4vw;
  }

  .offer-item.offer-item-2 {
    height: 31vw;
  }

  .offer-title {
    line-height: 2vw;
  }

  .service {
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .step-description {
    line-height: 1.3vw;
  }

  .guarantee {
    overflow: hidden;
  }

  .guarantee-container {
    box-shadow: 0 0 3vw 10vw #294949e0;
  }

  .footer-container {
    padding-left: 7vw;
    padding-right: 7vw;
  }

  .footer-navigation {
    grid-column-gap: 2vw;
    grid-row-gap: 2vw;
  }

  .footer-navigation-item {
    max-width: 489px;
  }

  .offer-slider.about-us-slider {
    max-width: 59%;
    height: 570px;
  }

  .material-item {
    align-items: stretch;
  }

  .material-item.material-item-2 {
    grid-column-gap: 5vw;
    grid-row-gap: 5vw;
    align-items: center;
  }

  .material-text {
    font-weight: 300;
  }

  .link-block {
    max-width: 190px;
    max-height: 65px;
  }

  .image-6.image-about-us-1 {
    height: 140%;
  }

  .image-6.image-about-us-3 {
    max-width: 67%;
  }

  .image-6.image-about-us-4 {
    height: 184%;
  }

  .image-6.image-about-us-5 {
    max-width: 64%;
  }

  .link-2.text-pnone {
    width: 59%;
    padding-left: 0;
  }

  .text-phone {
    width: 6vw;
  }

  .main-button-2 {
    font-size: 1.3vw;
    line-height: 1.3vw;
  }

  .main-button-2.main-button-red {
    flex: 0 auto;
    justify-content: center;
    align-self: flex-start;
    align-items: center;
  }

  .whatsapp-bubble {
    width: 60px;
    height: 60px;
  }
}

@media screen and (max-width: 991px) {
  .hamburger-button:hover {
    color: var(--blue);
  }

  .hamburger-button.w--open {
    background-color: var(--darker-grey);
  }

  .hamburger-button.left {
    float: left;
  }

  .hamburger-button.white {
    color: #fff;
  }

  .hero-slider {
    height: 400px;
  }

  .form-label {
    font-size: 1.5vw;
    line-height: 2vw;
  }

  .form-wrapper.squeezed {
    padding-left: 10%;
    padding-right: 10%;
  }

  .left-navigation {
    float: none;
    width: 100%;
    height: auto;
  }

  .nav-link {
    color: #fff;
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .nav-menu {
    background-color: var(--darker-grey);
    padding: 17px;
  }

  .logo-link {
    float: left;
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 10px;
  }

  .content {
    width: 100%;
    height: auto;
  }

  .social-footer {
    margin-top: 0;
  }

  .content-column {
    padding-top: 0;
  }

  .header-container {
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .header-logo {
    width: 19%;
    min-width: 150px;
  }

  .header-navigation-link {
    font-size: 1.5vw;
    line-height: 1vw;
  }

  .main-button, .main-button.main-button-red, .main-button.main-button-red.w--current {
    min-width: 150px;
  }

  .main-button.main-button-red.room-button {
    align-self: center;
  }

  .main-button.main-button-grey, .main-button.service-button {
    min-width: 200px;
  }

  .main-button.main-button-green {
    min-width: 171px;
  }

  .main-button.call-us {
    min-width: 200px;
  }

  .room-text {
    align-items: center;
    padding-left: 12vw;
    padding-right: 12vw;
  }

  .text-block {
    font-size: 2vw;
    line-height: 2vw;
  }

  .style {
    padding: 5vw 7vw;
  }

  .style-item {
    border: 1px #000;
  }

  .style-image.style-image-rb {
    border-bottom-right-radius: 50px;
  }

  .style-image.style-image-lt {
    border-top-left-radius: 50px;
  }

  .style-image.style-image-rt {
    border: 1px #000;
    border-top-right-radius: 50px;
  }

  .style-image.style-image-lb {
    border-bottom-left-radius: 50px;
  }

  .style-image-filter {
    border-style: none;
    border-top-right-radius: 50px;
  }

  .offer-container.offer-container-2 {
    grid-column-gap: 6vw;
    grid-row-gap: 6vw;
  }

  .offer-item {
    height: 51vw;
  }

  .offer-image.offer-image-2 {
    border-top-right-radius: 50px;
  }

  .offer-image.offer-image-3 {
    border-top-left-radius: 50px;
  }

  .material {
    border-top-left-radius: 50px;
    border-bottom-right-radius: 50px;
  }

  .material.material-2 {
    border-top-right-radius: 50px;
  }

  .material.material-3 {
    border-bottom-left-radius: 80px;
  }

  .service-image {
    border-top-right-radius: 50px;
  }

  .service-image.service-image-2 {
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
  }

  .service-steps {
    grid-column-gap: 2vw;
    grid-row-gap: 2vw;
  }

  .step-text, .step-description {
    font-size: 2vw;
    line-height: 2.5vw;
  }

  .customer-item {
    height: 54vw;
  }

  .customer-image {
    border-top-right-radius: 100px;
  }

  .customer-image.customer-image-2 {
    border-bottom-left-radius: 100px;
  }

  .customer-text {
    max-width: 100%;
    font-size: 1.5vw;
    line-height: 2.4vw;
  }

  .sale-text {
    margin-bottom: 0;
  }

  .sale-order {
    letter-spacing: 8px;
    font-size: 1.5vw;
    line-height: 2vw;
  }

  .sale-order.sale-order-2 {
    letter-spacing: 11px;
  }

  .footer-logo {
    width: 19%;
    min-width: 150px;
  }

  .offer-slider {
    display: none;
  }

  .offer-slider.about-us-slider {
    max-width: 89%;
  }

  .mask {
    max-width: 76%;
  }

  .material-image {
    min-height: 35vw;
  }

  .material-image.material-image-2 {
    min-height: 43vw;
  }

  .material-title {
    font-size: 3vw;
    line-height: 3.5vw;
  }

  .material-title.material-title-2 {
    font-size: 2vw;
    line-height: 2.3vw;
  }

  .material-text {
    font-size: 1.8vw;
    line-height: 2.2vw;
  }

  .material-text.material-text-2 {
    padding-left: 0;
  }

  .material-text.material-text-3 {
    flex: 0 auto;
  }

  .form-section {
    background-size: auto 126%;
  }

  .form-section.form-section-2, .form-section.form-section-3 {
    background-size: cover;
  }

  .form-title {
    font-size: 3vw;
    line-height: 4vw;
  }

  .form-block {
    width: 50vw;
  }

  .image-4 {
    max-height: 100%;
  }

  .image-6.image-about-us-3, .image-6.image-about-us-5 {
    max-width: 100%;
  }

  .main-button-2 {
    min-width: 150px;
  }

  .main-button-2.main-button-red {
    min-width: 200px;
  }

  .main-button-2.main-button-red.w--current {
    min-width: 150px;
  }

  .text-span-5 {
    margin-bottom: -3px;
  }
}

@media screen and (max-width: 767px) {
  .brand-link.on-top {
    float: left;
  }

  .brand-link.left-spacing {
    padding-left: 0;
  }

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

  .hero-slider {
    height: 528px;
  }

  .slide {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .cta-section {
    text-align: center;
    padding-left: 20px;
    padding-right: 20px;
  }

  .cta-heading {
    margin-bottom: 10px;
  }

  .form-label {
    font-size: 2vw;
    line-height: 3vw;
  }

  .form-wrapper.squeezed {
    padding-left: 0;
    padding-right: 9px;
  }

  .picture-border {
    margin-bottom: 13px;
  }

  .footer {
    padding: 6vw 5vw;
  }

  .footer-link {
    font-size: 3vw;
    line-height: 4vw;
  }

  .grid-fours {
    width: 33.33%;
  }

  .image-column {
    margin-bottom: 10px;
  }

  .content-column {
    text-align: center;
    margin-bottom: 13px;
  }

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

  .waterfall-content-column {
    text-align: center;
    padding-top: 0;
  }

  .waterfall-image-column {
    padding-top: 21px;
    padding-bottom: 21px;
  }

  .header-container {
    grid-column-gap: 4vw;
    grid-row-gap: 3vw;
    flex-flow: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    font-size: 2vw;
  }

  .image {
    max-width: 75%;
  }

  .header-logo {
    flex: 1;
    min-width: 350px;
    max-width: 350px;
  }

  .header-navigation-link {
    font-size: 2vw;
    line-height: 3vw;
  }

  .header-navigation-container {
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .main-button {
    align-self: stretch;
    min-width: 200px;
    margin-top: auto;
    font-size: 3vw;
    line-height: 3vw;
  }

  .main-button.main-button-red {
    align-self: auto;
    line-height: 3vw;
  }

  .main-button.main-button-grey {
    align-self: center;
  }

  .main-button.main-button-light {
    align-self: stretch;
  }

  .main-button.main-button-green {
    align-self: center;
  }

  .header-call-us {
    flex: 0 auto;
    width: 100%;
    padding-left: 0;
    font-size: 3vw;
    line-height: 4vw;
  }

  .header-order-now {
    height: 6vw;
  }

  .paragraph {
    font-size: 2vw;
    line-height: 2vw;
  }

  .banner-1 {
    min-height: 55vw;
  }

  .banner-2 {
    flex-flow: column;
    justify-content: space-between;
    align-items: flex-start;
    min-height: 70vw;
    display: flex;
    overflow: hidden;
  }

  .banner-2-info {
    justify-content: center;
    align-items: center;
    padding: 0;
  }

  .banner-2-info-block {
    padding: 4vw;
  }

  .banner2-text {
    border-bottom-right-radius: 50px;
    font-size: 3vw;
    line-height: 3.5vw;
  }

  .rooms {
    padding-bottom: 6vw;
  }

  .heading {
    font-size: 5vw;
    line-height: 6vw;
  }

  .rooms-container {
    padding-left: 0;
    padding-right: 0;
  }

  .room-item {
    min-width: auto;
    max-width: none;
    height: 50vw;
  }

  .room-item.room-item-3, .room-item.room-item-4, .room-item.room-item-6.room-item-5 {
    min-width: 40%;
    max-width: 40%;
  }

  .room-name {
    font-size: 3.5vw;
    line-height: 4vw;
  }

  .room-text {
    grid-column-gap: 4vw;
    grid-row-gap: 4vw;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    padding-left: 3vw;
    padding-right: 3vw;
  }

  .text-block {
    text-align: center;
    font-size: 3vw;
    line-height: 4vw;
  }

  .feature-item-text._3-weeks-text {
    padding-left: 6vw;
    font-size: 3vw;
    line-height: 4vw;
  }

  .style-container {
    padding-left: 0;
    padding-right: 0;
  }

  .style-item {
    min-width: auto;
    max-width: none;
    height: 61vw;
  }

  .style-text {
    font-size: 3.5vw;
    line-height: 4vw;
  }

  ._3-weeks {
    padding: 4vw;
  }

  ._3-weeks-container {
    padding-top: 5vw;
    padding-bottom: 4vw;
    padding-right: 4vw;
  }

  .offer {
    padding-bottom: 7vw;
  }

  .offer-container {
    padding-left: 0;
    display: none;
  }

  .offer-item {
    grid-column-gap: 3vw;
    grid-row-gap: 3vw;
    max-width: 78%;
    height: 95vw;
    margin-left: auto;
    margin-right: auto;
  }

  .offer-item.offer-item-2 {
    grid-column-gap: 4vw;
    grid-row-gap: 4vw;
    max-width: 78%;
    height: 95vw;
  }

  .offer-item.offer-item-2.about-us-1, .offer-item.offer-item-2.about-us-2, .offer-item.offer-item-2.about-us-3 {
    height: 100%;
  }

  .offer-image {
    width: 100%;
  }

  .offer-image.offer-image-2 {
    border-top-right-radius: 0;
    height: 52%;
  }

  .offer-image.offer-image-3 {
    border-top-left-radius: 0;
    height: 53%;
  }

  .offer-image.material {
    border-top-left-radius: 0;
    border-bottom-right-radius: 0;
  }

  .offer-image.material.about-us-image {
    height: 100%;
  }

  .offer-image.material-2 {
    background-image: url('../images/20241015_154845.jpg');
  }

  .offer-image.material-2.about-us-image {
    height: 100%;
  }

  .offer-image.material-3 {
    background-image: url('../images/IMG-20240621-WA0007.jpg');
  }

  .offer-image.material-3.about-us-image {
    height: 100%;
  }

  .offer-title {
    font-size: 3.8vw;
    line-height: 5vw;
  }

  .offer-text {
    font-size: 3vw;
    line-height: 4vw;
  }

  .premium {
    padding: 4vw;
  }

  .premium-container {
    flex-flow: column;
  }

  .premium-text {
    width: 66%;
    margin-right: auto;
    padding-top: 5vw;
    padding-bottom: 5vw;
    font-size: 4vw;
    line-height: 4vw;
  }

  .offer-materials {
    display: none;
  }

  .service-images {
    height: 29vw;
    padding-bottom: 3vw;
    padding-left: 0;
    padding-right: 0;
  }

  .service-text {
    font-size: 4vw;
    line-height: 5vw;
  }

  .service-steps {
    grid-column-gap: 1vw;
    grid-row-gap: 1vw;
    flex-flow: wrap;
    margin-bottom: 4vw;
  }

  .service-step {
    flex: 0 auto;
    width: 49%;
    max-width: none;
  }

  .step-title {
    font-size: 4vw;
    line-height: 5vw;
  }

  .step-text {
    font-size: 3vw;
    line-height: 4vw;
  }

  .step-description {
    font-size: 3vw;
    line-height: 3vw;
  }

  .guarantee {
    padding: 4vw;
  }

  .guarantee-container {
    flex-flow: column;
    align-items: center;
    padding-top: 4vw;
    padding-bottom: 4vw;
    box-shadow: 0 0 0 4vw #294949b0;
  }

  .guarantee-text {
    align-self: center;
    width: 66%;
    margin-left: 0;
    padding-top: 4vw;
    padding-bottom: 4vw;
    font-size: 4vw;
    line-height: 4vw;
  }

  .text-span-2 {
    font-size: 4vw;
    line-height: 4vw;
  }

  .customer-container {
    padding-left: 0;
    padding-right: 0;
  }

  .customer-item {
    height: 82vw;
  }

  .customer-image {
    border-top-right-radius: 50px;
    height: 44%;
  }

  .customer-image.customer-image-2 {
    border-bottom-left-radius: 50px;
  }

  .customer-title {
    font-size: 4vw;
    line-height: 4vw;
  }

  .customer-text {
    padding-top: 5vw;
    font-size: 3vw;
    line-height: 4vw;
  }

  .customer-name, .sale-subtext {
    font-size: 3vw;
    line-height: 3vw;
  }

  .header-sale {
    height: 19vw;
    bottom: -13vw;
    left: 17%;
    right: 17%;
  }

  .contact-container {
    flex-flow: column;
    justify-content: center;
    align-items: stretch;
    padding-left: 20vw;
    padding-right: 20vw;
  }

  .footer-container {
    grid-column-gap: 6vw;
    grid-row-gap: 6vw;
    padding-left: 0;
    padding-right: 0;
  }

  .footer-logo {
    min-width: 250px;
  }

  .footer-navigation {
    grid-column-gap: 7vw;
    grid-row-gap: 7vw;
    flex-flow: column;
    justify-content: flex-start;
    align-items: stretch;
  }

  .footer-navigation-item.footer-socials {
    justify-content: flex-start;
    align-items: center;
    padding-left: 0;
  }

  .footer-title, .footer-info {
    font-size: 3vw;
    line-height: 4vw;
  }

  .footer-social {
    width: 10vw;
    height: 10vw;
  }

  .footer-copyright {
    font-size: 3vw;
    line-height: 4vw;
  }

  .banner-devider {
    width: 100%;
  }

  .offer-slider {
    background-color: #0000;
    height: auto;
    display: block;
  }

  .offer-slider.about-us-slider {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
  }

  .mask {
    height: auto;
  }

  .slide-nav {
    display: none;
  }

  .icon {
    color: #a99d98;
    font-size: 30px;
    inset: 0% auto 0% 0%;
  }

  .icon-2 {
    color: #a99d98;
    font-size: 30px;
    inset: 0% 0% 0% auto;
  }

  .step-line {
    display: none;
  }

  .material-item {
    flex-flow: column;
  }

  .material-image {
    min-height: 50vw;
  }

  .material-title {
    font-size: 4vw;
    line-height: 5vw;
  }

  .material-title.material-title-2 {
    font-size: 3vw;
    line-height: 3vw;
  }

  .material-text {
    font-size: 2.5vw;
    line-height: 3.5vw;
  }

  .form-section.form-section-2, .form-section.form-section-3 {
    justify-content: center;
    align-items: center;
  }

  .form-container {
    max-width: 88vw;
  }

  .form-block {
    width: 60vw;
  }

  .form-container-2 {
    padding: 5vw;
  }

  .collection-item {
    min-width: 40%;
    max-width: 40%;
  }

  .slide-2 {
    height: 50vw;
  }

  .image-6.image-about-us-1 {
    height: 151%;
    margin-top: -106px;
  }

  .image-6.image-about-us-2 {
    height: 148%;
    margin-top: -41px;
  }

  .image-6.image-about-us-3 {
    max-width: 88%;
  }

  .image-6.image-about-us-4 {
    height: 196%;
    margin-top: -214px;
  }

  .image-6.image-about-us-5 {
    max-width: 86%;
    height: 111%;
  }

  .div-block-3 {
    font-size: 3vw;
    line-height: 3.5vw;
  }

  .main-button-2 {
    align-self: stretch;
    min-width: 200px;
    margin-top: auto;
    font-size: 3vw;
    line-height: 3vw;
  }

  .main-button-2.main-button-red {
    align-self: auto;
    line-height: 3vw;
  }
}

@media screen and (max-width: 479px) {
  .button.tab {
    margin-bottom: 9px;
  }

  .hero-slider {
    height: 550px;
  }

  .slide {
    padding-left: 53px;
    padding-right: 53px;
  }

  .form-label {
    font-size: 3.5vw;
    line-height: 4vw;
  }

  .footer-link {
    font-size: 4vw;
    line-height: 5vw;
  }

  .grid-fours {
    width: 50%;
  }

  .header-container {
    justify-content: center;
    align-items: flex-start;
  }

  .body {
    overflow: visible;
  }

  .image {
    margin-left: auto;
    margin-right: auto;
  }

  .header-logo {
    min-width: 300px;
  }

  .header-logo.w--current {
    margin-left: auto;
  }

  .header-navigation-link {
    font-size: 2.5vw;
  }

  .main-button {
    font-size: 4vw;
    line-height: 4vw;
  }

  .main-button.main-button-red, .main-button.main-button-red.w--current {
    min-width: 200px;
  }

  .header-call-us {
    text-align: center;
    font-size: 4vw;
    line-height: 5vw;
  }

  .header-order-now {
    height: 9vw;
  }

  .paragraph {
    font-size: 3vw;
    line-height: 3vw;
  }

  .banner-2 {
    min-height: 89vw;
  }

  .banner2-text {
    font-size: 4vw;
    line-height: 5vw;
  }

  .heading {
    font-size: 6vw;
    line-height: 7vw;
  }

  .room-item {
    min-width: auto;
    max-width: none;
    height: 60vw;
  }

  .room-item.room-item-3, .room-item.room-item-4, .room-item.room-item-6.room-item-5 {
    min-width: 47%;
    max-width: 47%;
  }

  .text-block {
    font-size: 4vw;
    line-height: 5vw;
  }

  .features-container {
    padding-left: 2vw;
    padding-right: 2vw;
  }

  .feature-item-text {
    font-size: 3vw;
    line-height: 4vw;
  }

  .feature-item-text._3-weeks-text {
    background-color: #4c5050bf;
    width: 66%;
    padding-top: 4vw;
    padding-bottom: 4vw;
    padding-left: 0;
    font-size: 5vw;
    line-height: 6vw;
  }

  .style-item {
    min-width: auto;
    max-width: none;
    height: 69vw;
  }

  .style-text {
    font-size: 5vw;
    line-height: 6vw;
  }

  ._3-weeks {
    background-position: 50%;
    background-size: cover;
  }

  ._3-weeks-container {
    grid-column-gap: 3vw;
    grid-row-gap: 3vw;
    flex-flow: column;
    padding-bottom: 5vw;
    padding-left: 4vw;
  }

  ._3-weeks-grey-elem {
    display: none;
  }

  .offer {
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .offer-item {
    height: 118vw;
  }

  .offer-item.offer-item-2 {
    align-items: center;
    max-width: 90%;
    height: 140vw;
  }

  .offer-image.material.about-us-image, .offer-image.material-2.about-us-image, .offer-image.material-3.about-us-image {
    width: 90%;
  }

  .offer-title {
    font-size: 5vw;
    line-height: 6vw;
  }

  .offer-text {
    font-size: 4vw;
    line-height: 5.5vw;
  }

  .premium-container {
    padding: 4vw;
  }

  .premium-text {
    font-size: 5vw;
    line-height: 5vw;
  }

  .service-images {
    height: 39vw;
  }

  .service-text {
    font-size: 5vw;
    line-height: 6vw;
  }

  .service-steps {
    flex-flow: column;
  }

  .service-step {
    width: auto;
  }

  .step-title {
    font-size: 6vw;
    line-height: 7vw;
  }

  .step-text {
    font-size: 4vw;
    line-height: 5.5vw;
  }

  .step-description, .guarantee-text {
    font-size: 5vw;
    line-height: 6vw;
  }

  .text-span-2 {
    font-size: 5vw;
    line-height: 5vw;
  }

  .contacts .text-phone {
    & > span {
        display: inline-block;
        width: 70px;
    }
  }

  .customer-container {
    grid-column-gap: 5vw;
    grid-row-gap: 5vw;
    flex-flow: column;
  }

  .customer-item {
    height: 110vw;
  }

  .customer-image {
    height: 54vw;
  }

  .customer-title {
    font-size: 5vw;
    line-height: 5vw;
  }

  .customer-text, .customer-name {
    font-size: 4vw;
    line-height: 5.5vw;
  }

  .sale-container {
    padding: 4vw 20vw;
  }

  .sale-text {
    margin-bottom: 0;
  }

  .header-sale {
    grid-column-gap: 1vw;
    grid-row-gap: 1vw;
    height: 24vw;
    padding-top: 4vw;
    padding-bottom: 4vw;
    bottom: -15vw;
    left: 15%;
    right: 15%;
  }

  .sale-order {
    letter-spacing: 4px;
    font-size: 3vw;
    line-height: 4vw;
  }

  .sale-order.sale-order-2 {
    letter-spacing: 5px;
  }

  .footer-logo.w--current {
    align-self: flex-start;
  }

  .footer-title, .footer-info {
    font-size: 4vw;
    line-height: 5vw;
  }

  .footer-copyright {
    font-size: 4vw;
  }

  .offer-slider.about-us-slider {
    height: 300px;
  }

  .mask {
    max-width: 81%;
    height: 100%;
  }

  .icon, .icon-2 {
    font-size: 24px;
  }

  .material-item-right {
    grid-column-gap: 4vw;
    grid-row-gap: 4vw;
  }

  .material-image {
    border-top-left-radius: 50px;
  }

  .material-image.material-image-2 {
    border-bottom-left-radius: 50px;
    min-height: 55vw;
  }

  .material-image.material-image-4 {
    border-bottom-right-radius: 50px;
    min-height: 55vw;
  }

  .material-title {
    font-size: 5vw;
    line-height: 6vw;
  }

  .material-title.material-title-2 {
    font-size: 4vw;
    line-height: 4vw;
  }

  .material-text {
    font-size: 4vw;
    line-height: 5vw;
  }

  .form-container {
    max-width: 100vw;
  }

  .form-title {
    font-size: 5vw;
    line-height: 6vw;
  }

  .form-input {
    margin-bottom: 4vw;
  }

  .textarea {
    min-height: 25vw;
  }

  .form {
    grid-column-gap: 1vw;
    grid-row-gap: 1vw;
  }

  .form-block {
    width: 74vw;
  }

  .link-block {
    max-width: 110px;
    max-height: 54px;
  }

  .div-block-2 {
    grid-column-gap: 4vw;
    grid-row-gap: 4vw;
    justify-content: center;
    align-items: center;
  }

  .text-block-2 {
    text-align: center;
    padding-left: 3vw;
    padding-right: 3vw;
    font-size: 2.5vw;
    line-height: 3vw;
  }

  .collection-item {
    min-width: 45%;
    max-width: 45%;
  }

  .collection-list-wrapper {
    min-width: 43%;
    max-width: 43%;
  }

  .image-6.image-about-us-1, .image-6.image-about-us-2 {
    height: auto;
    margin-top: 0;
  }

  .image-6.image-about-us-3 {
    max-width: 100%;
    height: 159%;
  }

  .image-6.image-about-us-4 {
    max-width: 100%;
    height: auto;
    margin-top: -155px;
  }

  .image-6.image-about-us-5 {
    width: 100%;
    max-width: none;
    height: 174%;
  }

  .div-block-3 {
    font-size: 4vw;
    line-height: 5vw;
  }

  .image-7 {
    margin-left: auto;
    margin-right: auto;
    display: block;
  }

  .main-button-2 {
    font-size: 4vw;
    line-height: 4vw;
  }

  .main-button-2.main-button-red.w--current {
    min-width: 200px;
  }

  .whatsapp-bubble {
    z-index: 10;
    bottom: 6%;
    right: 3%;
  }

  .text-span-5 {
    margin-bottom: 0;
    font-size: 1.7vw;
    line-height: 1.5vw;
  }
}


@font-face {
  font-family: 'Gothamrounded';
  src: url('../fonts/GOTHAMROUNDED-MEDIUM.OTF') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Gotham';
  src: url('../fonts/GOTHAM-BLACK.OTF') format('opentype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Gothamrounded';
  src: url('../fonts/GOTHAMROUNDED-BOLD.OTF') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Gotham';
  src: url('../fonts/GOTHAM-LIGHT.OTF') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Gotham Ro';
  src: url('../fonts/Gotham-Medium-RO.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Gotham Rounded';
  src: url('../fonts/Gotham-Rounded-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Gotham Book';
  src: url('../fonts/Gotham-Book.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Gotham Rounded Book';
  src: url('../fonts/Gotham-Rounded-Book.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Gotham';
  src: url('../fonts/Gotham-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Heart Warming Font By Situjuh 7 Ntypes';
  src: url('../fonts/Heart-Warming-Font-by-Situjuh-7NTypes.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}