@font-face {
  font-family: Pt Root Ui;
  src: url('../fonts/pt-root-ui_light.woff2') format("woff2"), url('../fonts/pt-root-ui_light.woff') format("woff"), url('../fonts/pt-root-ui_light.ttf') format("truetype"), url('../fonts/pt-root-ui_light.otf') format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Pt Root Ui;
  src: url('../fonts/pt-root-ui_medium.woff2') format("woff2"), url('../fonts/pt-root-ui_medium.woff') format("woff"), url('../fonts/pt-root-ui_medium.ttf') format("truetype"), url('../fonts/pt-root-ui_medium.otf') format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Pt Root Ui;
  src: url('../fonts/pt-root-ui_regular.woff2') format("woff2"), url('../fonts/pt-root-ui_regular.woff') format("woff"), url('../fonts/pt-root-ui_regular.ttf') format("truetype"), url('../fonts/pt-root-ui_regular.otf') format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Pt Root Ui;
  src: url('../fonts/pt-root-ui_bold.woff2') format("woff2"), url('../fonts/pt-root-ui_bold.woff') format("woff"), url('../fonts/pt-root-ui_bold.ttf') format("truetype"), url('../fonts/pt-root-ui_bold.otf') format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --primary-orange: #f7570f;
  --new-primary: #001946;
  --white: white;
  --secondary: #e52324;
  --black: black;
}

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

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

.w-layout-vflex {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.w-layout-hflex {
  flex-direction: row;
  align-items: flex-start;
  display: flex;
}

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

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

body {
  color: #333;
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 20px;
}

p {
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 400;
}

.text-full {
  color: #fff;
  text-transform: none;
  font-size: 80px;
  font-weight: 600;
  line-height: .9;
  display: flex;
}

.text-full.emailcta {
  font-size: 40px;
}

.navigation-main {
  z-index: 999;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-color: var(--new-primary);
  flex-direction: row;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  padding: 15px 2%;
  display: grid;
  position: fixed;
  inset: 0% 0% auto;
}

.navigation-main.npbgcolor {
  background-color: #0000;
}

.social-icon {
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  display: flex;
  position: relative;
}

.social-icon.right {
  margin-left: 10px;
}

.text-content {
  height: 26px;
  overflow: hidden;
}

.mouse-dots {
  background-color: #000;
  width: 2px;
  height: 5px;
  margin-top: 6px;
}

.cart-number {
  color: #fff;
  background-color: #0000;
  justify-content: center;
  padding: 0;
  font-size: 19px;
  font-weight: 600;
  line-height: 26px;
}

.cart-container {
  box-shadow: none;
  background-color: #fff;
  border: 1px solid #505050;
  max-width: 600px;
}

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

.animation-image {
  z-index: 1;
  object-fit: contain;
  width: 20px;
  position: relative;
}

.footer {
  z-index: 2;
  background-color: var(--new-primary);
  color: var(--white);
  padding: 60px 5% 30px;
  position: relative;
}

.text-field-gray {
  z-index: 1;
  background-color: #f7f7fc;
  border: 1px #81818b33;
  border-radius: 100px 0 0 100px;
  width: 100%;
  min-width: auto;
  height: auto;
  min-height: 66px;
  margin-bottom: 0;
  margin-right: 0;
  padding-top: 3px;
  padding-bottom: 3px;
  padding-left: 25px;
  font-size: 16px;
  position: relative;
}

.text-field-gray::placeholder {
  color: #000;
  font-size: 16px;
  font-weight: 500;
}

.uppercase-font {
  opacity: .55;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 15px;
  font-size: 15px;
  font-weight: 600;
}

.circle-button {
  background-color: #000;
  background-image: url('../images/arrow.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 14px;
  border-radius: 100%;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 55px;
  height: 55px;
  margin-right: 5px;
  transition: background-color .2s cubic-bezier(.645, .045, .355, 1);
  display: flex;
}

.circle-button:hover {
  opacity: .8;
}

.copyright {
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 500;
}

.circle-button-wrapper {
  z-index: 2;
  background-color: #f7f7fc;
  border-top-right-radius: 100px;
  border-bottom-right-radius: 100px;
  align-items: center;
  min-height: 66px;
  display: flex;
  position: relative;
}

.remove-button {
  color: #777;
  margin-top: 15px;
  text-decoration: none;
  display: flex;
}

.menu-background {
  background-color: var(--new-primary);
  flex-direction: column;
  position: absolute;
  inset: 0%;
}

.delete-me {
  z-index: 9999;
  background-color: #fff;
  background-image: url('../images/button.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 30px;
  width: 140px;
  height: 30px;
  display: none;
  position: fixed;
  inset: auto 20px 20px auto;
}

.arrow-button {
  width: 26px;
  position: absolute;
  transform: translate(0, 100px);
}

.arrow-button.white-invert {
  filter: invert();
}

.footer-title {
  color: var(--white);
  margin-bottom: 1rem;
  font-size: 17px;
  font-weight: 600;
}

.max-w-center {
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.cart-quantity {
  background-color: #0000;
  border-color: #505050;
  border-radius: 2px;
  width: 50px;
  font-weight: 600;
}

.social-circle {
  border: 1px solid #000;
  border-radius: 100%;
  width: 100%;
  height: 100%;
  position: absolute;
}

.footer-logo-link {
  margin-bottom: 20px;
}

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

.container.padding {
  width: auto;
  margin-left: 5%;
  margin-right: 5%;
}

.cart-wrapper-overlay {
  z-index: 999;
  background-color: #000000e6;
}

.text-gray {
  color: #fff;
  background-color: #ffffff26;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  padding-top: 1px;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  position: relative;
  top: -15px;
}

.button-cart {
  z-index: 2;
  color: #000;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  font-size: 16px;
  font-weight: 600;
  line-height: 26px;
  text-decoration: none;
  display: inline-block;
  position: relative;
}

.project-circle {
  z-index: 999;
  opacity: 1;
  color: #000;
  text-align: center;
  letter-spacing: 3px;
  text-transform: uppercase;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 100px;
  font-size: 20px;
  text-decoration: none;
  display: flex;
  position: absolute;
}

.photo-main {
  object-fit: cover;
  object-position: 50% 0%;
  width: 100%;
  height: 100%;
}

.photo-main.bacgrkound-video {
  min-height: 600px;
}

.photo-main.darken {
  filter: blur(1px);
}

.smaller-text {
  opacity: .5;
  font-size: 16px;
  font-weight: 300;
  display: inline-block;
}

.hamburger-line {
  background-color: #fff;
  width: 90%;
  height: 2px;
}

.hamburger-line.first, .hamburger-line.second {
  background-color: var(--white);
  height: 4px;
}

.divider-icon {
  flex: none;
  width: 0;
  height: 20px;
  margin-left: 25px;
  margin-right: 25px;
}

.product-price-main {
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 600;
}

.product-price-main.in-sidebar {
  color: #777;
  font-size: 18px;
  font-weight: 500;
}

.tower {
  z-index: 3;
  position: absolute;
  inset: auto 0% 0% 50%;
  transform: translate(-50%);
}

.product-title {
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 600;
}

.hamburger-circle {
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 70px;
  display: flex;
  position: relative;
}

.image-small-product {
  width: 36px;
  margin-right: 10px;
  display: none;
}

.footer-main-grid {
  grid-column-gap: 100px;
  grid-row-gap: 100px;
  grid-template-rows: auto;
  grid-template-columns: .9fr auto;
  align-items: start;
}

.button-with-animation {
  color: #000;
  border: 2px solid #000;
  border-radius: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px 45px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  position: relative;
  overflow: hidden;
}

.button-with-animation.white {
  color: #fff;
  cursor: pointer;
  border-color: #fff;
}

.circle-absolute {
  opacity: .15;
  background-color: #fff;
  border-radius: 100%;
  width: 100%;
  height: 100%;
  position: absolute;
}

.circle-absolute.hide {
  opacity: .15;
  background-color: #fff;
}

.gray-link {
  color: #000;
  text-decoration: none;
  display: inline;
}

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

.cart-footer {
  border-top-color: #505050;
  padding-top: 25px;
}

.error-message {
  color: #fff;
  text-align: center;
  background-color: #fa242a;
  border-radius: 20px;
  font-size: 15px;
  font-weight: 500;
}

.cart-header {
  border-bottom-color: #505050;
  padding: 13px 25px;
}

.hero {
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  min-height: 100svh;
  display: flex;
  position: relative;
  overflow: hidden;
}

.navigation-line {
  background-color: #000;
  width: 100%;
  height: 2px;
}

.footer-link-main {
  opacity: .6;
  color: var(--white);
  align-items: center;
  margin-bottom: 10px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all .3s;
  display: flex;
}

.footer-link-main:hover {
  opacity: 1;
  color: var(--primary-orange);
}

.scroll-down-wrapper {
  z-index: 10;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  max-width: 80%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: absolute;
  bottom: 50px;
  left: 0;
  right: 0;
  overflow: hidden;
}

.cart-quantity-first {
  z-index: 2;
  color: #fff;
  background-color: #0000;
  border-radius: 0;
  justify-content: center;
  align-items: center;
  width: auto;
  min-width: auto;
  height: auto;
  margin-left: 3px;
  margin-right: 3px;
  padding-left: 0;
  padding-right: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
}

.photo-main-first {
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 100%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
  overflow: hidden;
}

.photo-main-first.absolute {
  position: absolute;
  inset: 0%;
}

.photo-main-first.absolute.dimmed {
  background-color: #00000080;
}

.photo-main-first.absolute.colored {
  background-image: linear-gradient(45deg, var(--primary-orange), var(--secondary));
}

.menu-content {
  z-index: 3;
  position: relative;
}

.remove-pop-up {
  cursor: pointer;
  background-color: #f1f1f7;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 45px;
  display: flex;
  position: absolute;
  top: 10px;
  right: 10px;
}

.remove-pop-up.in-produce-sidebar {
  background-color: #ececec;
  background-image: url('../images/icons8-x-384.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 20px;
  border-radius: 100%;
  width: 46px;
  height: 46px;
  position: relative;
  top: 0;
  right: 0;
}

.apple-pay-2 {
  border-radius: 25px;
  height: 48px;
}

.margin-25px {
  margin-top: 25px;
}

.margin-25px.add-line-divider {
  border-top: 1px solid #e1e1e1;
  width: 100%;
  margin-top: 30px;
  padding-top: 30px;
}

.success-message {
  color: #fff;
  text-align: center;
  background-color: #000;
  border-radius: 20px;
  font-size: 15px;
  font-weight: 600;
}

.view-project {
  background-color: #fff;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
}

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

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

.button-left-flex {
  justify-content: flex-start;
  display: flex;
}

.button-left-flex.center {
  justify-content: center;
}

.button-left-flex.mgtop40px {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-direction: column;
  align-items: flex-start;
}

.mouse-scroll {
  background-color: #fff;
  border-radius: 9px;
  justify-content: center;
  align-items: flex-start;
  width: 20px;
  height: 29px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
  left: 0;
}

.footer-grid-2 {
  grid-column-gap: 2rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  align-items: start;
}

.logo {
  width: 130px;
  margin-left: 20px;
}

.logo.dark {
  display: none;
}

.navigation-items {
  z-index: 99;
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  flex-flow: column wrap;
  justify-content: center;
  align-items: center;
  max-width: 1200px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.years-experience {
  text-align: center;
  -webkit-text-fill-color: transparent;
  background-image: url('../images/5-rokov-skusenosti-min.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 10px;
  font-size: 43vw;
  font-weight: 600;
  line-height: .8;
}

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

.pargraph-white {
  opacity: .81;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
}

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

.subhead-center {
  opacity: .8;
  color: #000;
  text-align: center;
  font-size: 19px;
  font-weight: 600;
  line-height: 1.4;
}

.menu-square {
  z-index: 2;
  grid-column-gap: 0px;
  grid-row-gap: 5px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 50px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.subhead-first {
  opacity: .8;
  color: #5b5a5a;
  font-size: 23px;
  font-weight: 600;
  line-height: 1.3;
}

.subhead-first.main {
  max-width: 550px;
  font-size: 28px;
}

.subhead-first.main.white {
  color: #fff;
}

.subhead-first.main.white._100 {
  font-size: 42px;
}

.subhead-first.main.white._100.white-light {
  opacity: .6;
}

.subhead-first.main._100 {
  opacity: 1;
  font-weight: 600;
}

.subhead-first.small {
  font-size: 21px;
}

.subhead-first.small.light {
  font-weight: 500;
}

.subhead-first.white {
  opacity: 1;
  color: var(--white);
  cursor: pointer;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.1;
}

.subhead-first.white.absolute {
  position: absolute;
  inset: auto 20px 80px;
}

.white-light {
  opacity: .6;
}

.button-line-2 {
  background-color: #b9bbc8;
  width: 100%;
  height: 1px;
  margin-top: 4px;
  position: relative;
}

.text-rotator-content {
  align-items: center;
  display: flex;
}

.cart-mobile {
  border-right: 1px solid #ffffff4a;
  margin-right: 5px;
  padding-right: 15px;
  display: none;
}

.subscribe-form {
  width: 100%;
  margin-bottom: 0;
}

.footer-left-wrapper {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.sticky-top {
  position: sticky;
  top: 120px;
}

.icon-arrow {
  width: 12px;
}

.icon-arrow.absolute {
  width: 16px;
  position: absolute;
  inset: 15px 15px auto auto;
}

.no-items-found {
  font-size: 16px;
  font-weight: 600;
}

.collection-list {
  grid-column-gap: 100px;
  grid-row-gap: 100px;
  flex-direction: column;
  display: flex;
}

.text-rotator-wrapper {
  align-items: center;
  display: flex;
  position: relative;
  bottom: auto;
  left: 0%;
  right: auto;
  overflow: hidden;
}

.text-rotator-wrapper.index {
  z-index: 4;
}

.view-work {
  z-index: 3;
  color: #fff;
  text-align: center;
  background-color: #000;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 200px;
  height: 200px;
  margin-left: auto;
  font-size: 60px;
  line-height: 1.2;
  display: flex;
  position: absolute;
  inset: auto 15px 15px auto;
}

.view-work.small {
  background-color: var(--new-primary);
  opacity: .7;
  width: 150px;
  height: 150px;
}

.paypal {
  margin-bottom: 4px;
}

.text-line {
  color: var(--primary-orange);
  font-size: 80px;
  font-weight: 600;
  line-height: .9;
  display: block;
}

.navigation-link-move {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  align-items: center;
  text-decoration: none;
  display: flex;
  overflow: hidden;
}

.navigation-link-move.emailcta {
  margin-top: 40px;
}

.form-single {
  z-index: 2;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
  position: relative;
}

.play-button {
  filter: invert();
  width: 18px;
}

.menu-big {
  z-index: 888;
  justify-content: center;
  align-items: center;
  height: 100vh;
  display: none;
  position: fixed;
  inset: 0%;
}

.scroll-flex {
  flex-direction: row;
  align-items: center;
  display: flex;
}

.flex-wrapper {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.flex-wrapper.mgbottom40px {
  margin-bottom: 40px;
}

.section {
  z-index: 3;
  padding: 100px 5%;
  position: relative;
}

.section.no-padding {
  padding: 50px 0%;
}

.section.no-padding.dark {
  background-color: var(--new-primary);
  padding-top: 120px;
  padding-bottom: 120px;
}

.section.for-cta {
  align-items: center;
  min-height: 500px;
  display: flex;
}

.section.for-cta.kontakthero {
  background-image: linear-gradient(45deg, var(--secondary), var(--primary-orange));
}

.section.extrapadding {
  background-color: var(--new-primary);
  padding-top: 150px;
}

.display-2 {
  margin-top: 0;
  margin-bottom: 5px;
  font-size: 44px;
  font-weight: 600;
  line-height: 1.1;
}

.button {
  color: #fff;
  text-align: center;
  background-color: #000;
  border-radius: 30px;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 19px 30px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  transition: all .3s;
}

.button:hover {
  opacity: .79;
}

.heading-white {
  font-size: 16px;
  font-weight: 600;
}

.expertise-title {
  font-size: 21px;
  font-weight: 600;
}

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

.button-line-blue {
  z-index: 1;
  background-color: #777;
  width: 100%;
  height: 2px;
  position: absolute;
}

.text-rotator {
  color: #fff;
  white-space: nowrap;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Inter Tight, sans-serif;
  font-size: 130px;
  font-weight: 600;
  line-height: 1.2;
}

.text-rotator.smaller {
  text-align: center;
  white-space: normal;
  font-size: 70px;
}

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

.social-wrapper {
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.social-wrapper.left {
  justify-content: flex-start;
}

.grid-about {
  grid-column-gap: 100px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1.3fr 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  padding-left: 20px;
  display: grid;
}

.grid-about.reverse {
  grid-column-gap: 50px;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding-left: 0;
}

.grid-about.project {
  grid-template-columns: .9fr 1fr;
  align-items: start;
}

.nav-text-wrapper {
  height: 74px;
  overflow: hidden;
}

.hamburger-text {
  color: #fff;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 19px;
  font-weight: 600;
}

.hamburger-flex {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  flex-direction: row-reverse;
  align-items: center;
  display: flex;
}

.button-line-wrapper {
  font-size: 16px;
  font-weight: 500;
  line-height: 17px;
  text-decoration: none;
  position: relative;
}

.button-line-wrapper:hover {
  color: #000;
}

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

.logo-flex {
  grid-column-gap: 96px;
  grid-row-gap: 96px;
  filter: invert();
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.logo-flex.add-bottom {
  margin-bottom: 50px;
}

.empty-state {
  flex-direction: column;
}

.foorer-list {
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 100%;
  grid-auto-columns: 100%;
  place-items: flex-start start;
  display: flex;
}

.foorer-list.temporaryhidden {
  display: none;
}

.expertise-image {
  opacity: 1;
  width: 40px;
}

.body {
  font-family: Pt Root Ui, sans-serif;
}

.flex-main {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.paragraph-white {
  opacity: .63;
  color: #fff;
  text-align: center;
  background-color: #0000;
  border: 2px solid #fff;
  border-radius: 30px;
  margin: 5px 10px 0;
  padding: 20px;
  font-size: 18px;
  font-weight: 500;
  line-height: 25px;
  display: inline-block;
}

.project-wrapper {
  color: #fff;
  cursor: pointer;
  text-decoration: none;
}

.project-wrapper.dark-color {
  color: #000;
  cursor: pointer;
}

.youtube {
  height: 100%;
}

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

.hero-2 {
  background-image: linear-gradient(#b84eeb, #dbb1c5 50%, #e9ceb3);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100svh;
  padding-top: 160px;
  padding-bottom: 130px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.hero-2.for-inner {
  background-image: none;
  min-height: auto;
  padding: 165px 5%;
}

.display-1 {
  z-index: 30;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 100px;
  font-weight: 500;
  line-height: 1.1;
  position: relative;
}

.display-1.for-inner {
  color: #fff;
  text-align: center;
  font-family: Inter Tight, sans-serif;
  font-size: 100px;
}

.video-2 {
  z-index: 1;
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
}

.primary {
  color: var(--primary-orange);
  font-weight: 700;
}

.div-block {
  z-index: 2;
  background-color: var(--new-primary);
  opacity: .47;
  width: 100%;
  height: 100%;
  position: absolute;
}

.project-grid-main {
  grid-column-gap: 35px;
  grid-row-gap: 35px;
  flex-direction: column-reverse;
  grid-template-rows: auto;
  grid-template-columns: 1fr minmax(200px, 1fr);
  grid-auto-columns: 1fr;
  margin-top: 40px;
  display: flex;
}

.absolute-background-2 {
  background-color: #000;
  display: none;
  position: absolute;
  inset: 0%;
}

.uppercase {
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 600;
}

.info-flex {
  background-color: #f6f6f6;
  flex-direction: column;
  justify-content: center;
  padding: 40px 50px;
  display: flex;
}

.photo {
  object-position: 50% 0%;
  width: 100%;
  height: 100%;
}

.info-content {
  grid-column-gap: 50px;
  text-align: right;
  border-bottom-style: solid;
  border-bottom-width: 1px;
  justify-content: space-between;
  padding-top: 15px;
  padding-bottom: 5px;
  display: flex;
}

.rich-text-minus-20px {
  margin-top: -20px;
}

.project-line-divider {
  background-color: #ddd;
  width: 100%;
  height: 1px;
  margin-top: 70px;
  margin-bottom: 70px;
}

.photo-animation-page {
  position: relative;
  overflow: hidden;
}

.transparent {
  opacity: .8;
}

.div-block-2 {
  margin-top: 20px;
  margin-bottom: 40px;
}

.paragraph-white-2 {
  opacity: .63;
  color: #fff;
  background-color: #444;
  border-radius: 30px;
  margin-top: 5px;
  margin-bottom: 0;
  padding: 7px 16px;
  font-size: 15px;
  font-weight: 500;
  display: inline-block;
}

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

.project-grid-page.aktu-lne {
  border-bottom: 2px #fff;
  margin-bottom: 40px;
  padding-bottom: 80px;
}

.text-rotator-2 {
  color: #fff;
  white-space: nowrap;
  margin-top: 0;
  margin-bottom: 0;
  margin-left: 5%;
  font-size: 130px;
  font-weight: 600;
  line-height: 1.2;
}

.text-rotator-3 {
  color: #fff;
  white-space: nowrap;
  margin-top: 0;
  margin-bottom: 0;
  margin-left: -10%;
  font-size: 130px;
  font-weight: 600;
  line-height: 1.2;
}

.text-rotator-3.top {
  margin-left: 20%;
}

.margintop40px {
  margin-top: 40px;
}

.small-title {
  margin-top: 0;
  font-size: 28px;
  line-height: 1.2;
}

.small-title._20px {
  font-size: 17px;
  line-height: 25px;
}

.contact-link-main {
  color: #000;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: color .3s;
}

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

.success-message-2 {
  background-color: var(--black);
  color: #00aeef;
  border-radius: 2px;
  font-size: 15px;
  font-weight: 600;
}

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

.contact-grid-main {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  flex-direction: column-reverse;
  grid-template-rows: auto;
  grid-template-columns: 1.2fr 1fr;
  grid-auto-columns: 1fr;
  align-items: stretch;
  max-width: 840px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.label {
  color: #fff;
  max-width: 88%;
  font-size: 26px;
  font-weight: 500;
  line-height: 32px;
}

.label.dark {
  opacity: .67;
  color: #000;
  max-width: 100%;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.1;
}

.contact-form-right-side {
  background-color: #f6f6f6;
  border-radius: 12px;
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
  padding: 50px 55px;
  display: flex;
}

.gray-text-2 {
  color: #2c2c2c80;
}

.input {
  background-color: #fff0;
  border: 2px solid #000;
  border-radius: 100px;
  min-height: 60px;
  margin-bottom: 0;
  padding: 16px 24px;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
}

.input:hover {
  border-color: #111314;
}

.input:focus {
  color: #444;
  border-color: #111314;
}

.input::placeholder {
  color: #000;
  font-size: 16px;
  font-weight: 500;
}

.text-area {
  background-color: #0000;
  border: 2px solid #000;
  border-radius: 8px;
  margin-bottom: 0;
  padding: 15px 20px 35px;
  font-size: 15px;
  font-weight: 500;
  line-height: 28px;
}

.text-area:focus {
  color: #211f54;
}

.text-area::placeholder {
  color: #000;
  font-weight: 500;
}

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

.text-block-2 {
  color: var(--primary-orange);
}

.mgtop40px {
  margin-top: 40px;
}

.div-block-3 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-color: var(--black);
  border-radius: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-content: center;
  justify-items: center;
  margin-top: 100px;
  margin-bottom: 100px;
  padding: 40px 20px 40px 40px;
  display: grid;
}

.predajca-avatar {
  max-height: 400px;
}

.margin-150px {
  margin-top: 150px;
}

.job-role {
  margin-bottom: 0;
  font-size: 17px;
  font-weight: 500;
}

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

.qoute-margin {
  margin-right: 5px;
  display: inline-block;
}

.team-title {
  text-align: center;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 19px;
  font-weight: 600;
  line-height: 1;
}

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

.margin-40px-2 {
  margin-top: 40px;
}

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

.photo-line-animation {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
  overflow: hidden;
}

.team-member {
  background-color: #f6f6f6;
  border-radius: 10px;
  padding: 20% 20px 20px;
}

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

.card-of-navigation {
  background-color: var(--primary-orange);
  background-image: linear-gradient(135deg, var(--primary-orange), var(--secondary));
  cursor: pointer;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  min-height: 300px;
  padding: 40px 20px 80px;
  text-decoration: none;
  display: flex;
  position: relative;
}

.card-of-navigation.ronde {
  background-image: url('../images/cely-dom-2-min.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.card-of-navigation.ambre {
  background-image: url('../images/ambre-title-image-min.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.quick-navigation {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template: ". . Area Area"
                 "Area-2 Area-2 Area-2 Area-2"
                 / 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 40px;
  display: grid;
}

.card-of-navigation-project {
  position: relative;
}

.light {
  font-weight: 400;
}

.home-1-title-banner {
  color: #000b1f;
  font-size: 55px;
  line-height: 55px;
}

.img-2-banner {
  width: 28%;
  position: absolute;
  inset: auto 20% 48% auto;
}

.arrow-wrapper {
  margin-left: 2px;
  padding-right: 5px;
  display: flex;
  position: relative;
  overflow: hidden;
}

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

.base-container.flex-center {
  justify-content: center;
  align-items: center;
  display: flex;
}

.title-small {
  text-transform: uppercase;
  font-size: 16px;
  line-height: 1em;
}

.banner-home {
  z-index: 10;
  height: 550px;
  position: relative;
}

.button-text {
  color: #fff;
  text-transform: capitalize;
  font-weight: 500;
  line-height: 1em;
}

.arrow-button-2 {
  opacity: 1;
  width: 28px;
  height: 13px;
  padding-left: 10px;
  display: inline-block;
}

.arrow-button-2._2-arrow {
  opacity: 0;
  position: absolute;
  inset: auto auto 0% 0%;
}

.subtitle-line {
  background-color: #000b1f;
  width: 35px;
  height: 1px;
}

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

.section-2.bammer-home {
  background-image: linear-gradient(139deg, #e9411205, #0011a705), url('../images/Background-1.png');
  background-position: 0 0, 101% 101%;
  align-items: flex-end;
  padding-top: 180px;
  padding-bottom: 70px;
  display: flex;
  overflow: hidden;
}

.banner-content-wrapper {
  grid-column-gap: 60px;
  grid-row-gap: 80px;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  display: flex;
}

.button-primary-link {
  color: #fff;
  background-color: #0011a7;
  border: 1px solid #0011a7;
  border-radius: 23px;
  padding: 14px 24px 14px 29px;
  transition-property: background-color;
  display: flex;
}

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

.subtitle-wrapper {
  grid-column-gap: 15px;
  border-radius: 23px;
  justify-content: center;
  align-items: center;
  margin-bottom: 5px;
  display: flex;
}

.cicrle-banner {
  opacity: .06;
  width: 600px;
  height: 600px;
  position: absolute;
  inset: auto auto -35% -13%;
}

.content-banner-home-1 {
  z-index: 10;
  text-align: left;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 49%;
  display: flex;
  position: relative;
}

.buttom-banner-wrapper {
  margin-top: 60px;
}

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

.footer-wrapper {
  grid-column-gap: 40px;
  border-top: 1px solid #bcc6ce80;
  border-bottom: 1px solid #bcc6ce80;
  justify-content: space-between;
  width: 100%;
  margin-top: 60px;
  margin-bottom: 60px;
  padding-top: 40px;
  padding-bottom: 40px;
  display: flex;
}

.footer-brand-wrapper {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 20%;
  display: flex;
}

.white-text {
  color: #fff;
}

.text-field-footer {
  color: #000b1f;
  border: 1px solid #fff;
  border-radius: 25px;
  height: 44px;
  margin-bottom: 0;
  padding-left: 29px;
  padding-right: 29px;
  font-size: 16px;
}

.text-field-footer:focus {
  border-color: #e94112;
}

.text-field-footer::placeholder {
  color: #18304b;
  font-size: 16px;
}

.content-wrapper-footer {
  z-index: 10;
  width: 75%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.footer-copyright-2 {
  color: #ebf6fe;
  width: auto;
  display: inline;
}

.footer-copyright-2.link:hover {
  color: #e94112;
}

.footer-rights-2 {
  color: #ebf6fe;
}

.footer-link-3 {
  color: #fff;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 18px;
  transition: all .3s;
}

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

.footer-social-wrapper {
  justify-content: flex-end;
  align-items: center;
  width: 20%;
  display: flex;
}

.footer-social-icons-wrapper-2 {
  grid-column-gap: 30px;
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.secondary-button-2 {
  color: #fff;
  letter-spacing: .5px;
  background-color: #e94112;
  border: 1px solid #e94112;
  border-radius: 23px;
  padding: 13px 29px;
  font-weight: 500;
  line-height: 1em;
  transition: all .3s;
  display: inline-block;
}

.secondary-button-2:hover {
  color: #e94112;
  background-color: #0000;
}

.footer-link-wrap {
  align-items: center;
  display: flex;
}

.footer-2 {
  background-color: var(--new-primary);
  text-align: center;
  align-items: flex-start;
  padding-top: 60px;
  padding-bottom: 60px;
}

.footer-social-icon-2 {
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(130deg, #e94112, #ff8c5f);
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 18px;
  text-decoration: none;
  transition: color .3s;
}

.footer-social-icon-2:hover {
  color: #f3f0ec;
  background-image: linear-gradient(#fff, #fff);
}

.footer-links-wrapper {
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  width: 50%;
  display: flex;
}

.footer-copyright-link {
  color: #fff;
  letter-spacing: .2px;
  text-transform: none;
  margin-right: 5px;
  text-decoration: none;
  transition: all .2s;
  display: inline;
}

.footer-copyright-link:hover {
  color: #e94112;
}

.footer-brand {
  color: #fff;
}

.footer-brand.w--current {
  color: #fff;
  padding-left: 0;
}

.icon-footer {
  color: #bcc6ce;
  margin-right: 5px;
}

.success-message-footer {
  color: #fff;
  background-color: #0000;
  min-height: 44px;
}

.footer-logo {
  width: 100px;
  height: auto;
}

.subscribe-wrap-footer {
  justify-content: center;
  align-items: center;
  margin-top: 40px;
  display: flex;
}

.left-footer {
  grid-row-gap: 7px;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  width: 49%;
  display: flex;
}

.right-footer {
  grid-row-gap: 7px;
  flex-direction: column;
  align-items: flex-end;
  display: flex;
}

.error-message-footer {
  border-radius: 23px;
}

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

.form-block {
  width: 75%;
  margin-bottom: 0;
}

.white-link {
  color: var(--white);
  text-decoration: none;
  display: inline;
}

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

.mgtop20px {
  margin-top: 20px;
}

.primary-text {
  color: #e94112;
  font-size: 60px;
}

.about-wrapper {
  grid-column-gap: 60px;
  justify-content: space-between;
  width: 100%;
  display: flex;
}

.button-wrapper-section {
  margin-top: 60px;
  display: flex;
}

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

.section-3.about-section {
  padding-bottom: 80px;
}

.numbers-wrapper {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  margin-top: 60px;
}

.woman {
  z-index: 10;
  object-fit: cover;
  object-position: 50% 20%;
  border-radius: 150px 150px 10px;
  width: 100%;
  height: 600px;
  margin-top: 40px;
  margin-bottom: -30px;
  position: relative;
}

.numbers {
  color: #18304b;
  font-size: 68px;
  font-weight: 500;
  line-height: 1.2em;
}

.right-content-wrapper {
  width: 45%;
  margin-top: 45px;
}

.left-content {
  flex-direction: column;
  align-items: flex-start;
  width: 50%;
  display: flex;
}

.about-numbers {
  margin-top: 5px;
  font-size: 20px;
  font-weight: 700;
}

.central-button-wrap {
  justify-content: center;
  align-items: center;
  margin-top: 60px;
  display: flex;
}

.collection-item-services {
  border-bottom: 1px solid #fff3;
}

.right-title-content {
  width: 45%;
}

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

.section-4.light-with-img-bottom {
  background-color: #ebf6fe;
  background-image: url('../images/Background-1.png');
  background-position: 100% 101%;
  background-repeat: no-repeat;
  background-size: auto;
  padding-top: 120px;
}

.collection-list-wrapper-service {
  margin-top: 20px;
}

.collection-list-wrapper-service.width-100 {
  width: 100%;
  margin-top: 0;
}

.title-big-wrapper {
  grid-column-gap: 60px;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  margin-bottom: 60px;
  display: flex;
}

.arrow-services {
  border-bottom: 1px solid #bcc6ce;
  justify-content: space-between;
  width: 100%;
  padding-top: 16px;
  padding-bottom: 16px;
  text-decoration: none;
  display: flex;
  position: relative;
}

.service-name {
  color: #fff;
}

.service-name._w-20 {
  color: #000b1f;
  width: 20%;
  font-size: 22px;
}

.services {
  color: #55667c;
  width: 60%;
  font-size: 16px;
}

.services-arrow {
  min-width: 0;
  max-width: 30px;
}

.arrow-services-2 {
  border-bottom: 1px solid #bcc6ce;
  justify-content: space-around;
  width: 100%;
  padding-top: 16px;
  padding-bottom: 16px;
  text-decoration: none;
  display: flex;
  position: relative;
}

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

.section-5.light-with-img-bottom {
  background-color: #ebf6fe;
  background-image: none;
  background-position: 0 0;
  background-repeat: repeat;
  background-size: auto;
  padding-top: 120px;
}

.section-5.img-background {
  background-color: #ebf6fe;
  background-image: none;
  background-position: 0 0;
  background-repeat: repeat;
  background-size: auto;
}

.section-5.img-background.hide {
  display: none;
}

.margintop80px {
  margin-top: 80px;
}

.error-message-form {
  color: #fff;
  text-align: center;
  background-color: #ff8c5f;
  border-radius: 20px;
}

.textarea-form {
  color: #000b1f;
  border: 1px solid #0000;
  border-radius: 20px;
  min-height: 220px;
  margin-bottom: 15px;
  padding: 13px 29px;
  font-size: 16px;
}

.textarea-form:focus {
  border-color: #0011a7;
}

.textarea-form::placeholder {
  color: #18304b;
  font-size: 16px;
}

.form-wrapper-home {
  grid-column-gap: 60px;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  display: flex;
}

.success-message-form {
  color: #fff;
  background-color: #0000;
}

.primary-button {
  color: #fff;
  text-align: center;
  letter-spacing: .5px;
  text-transform: none;
  background-color: #0011a7;
  border: 1px solid #0011a7;
  border-radius: 23px;
  justify-content: center;
  padding: 14px 29px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1em;
  transition: all .35s;
}

.primary-button:hover {
  opacity: 1;
  color: #0011a7;
  background-color: #0000;
}

.field-wrapper {
  grid-column-gap: 15px;
  display: flex;
}

.form-block-home {
  background-color: #ebf6fe;
  border-radius: 30px 30px 30px 10px;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  width: 55%;
  min-height: 460px;
  padding: 30px;
  display: flex;
}

.text-field-form {
  color: #000b1f;
  border: 1px solid #0000;
  border-radius: 25px;
  min-height: 46px;
  margin-bottom: 15px;
  padding: 13px 29px;
  font-size: 16px;
}

.text-field-form:focus {
  border-color: #0011a7;
}

.text-field-form::placeholder {
  color: #18304b;
  font-size: 16px;
}

.success-text {
  color: #000b1f;
  font-size: 18px;
}

.secondary-team {
  padding-top: 120px;
}

.circles {
  opacity: .1;
  width: 450px;
  height: 460px;
  position: absolute;
  inset: auto auto -25% -12%;
}

.third-team {
  padding-top: 240px;
}

.our-team-wrapper {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  width: 100%;
}

.collection-item-leadership {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.position-team {
  color: #55667c;
  text-align: center;
  margin-top: 5px;
  font-size: 18px;
}

.h3-link {
  color: #000b1f;
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 35px;
  font-weight: 500;
}

.h3-link:hover {
  color: #0011a7;
}

.h3-link.margin-top--20-px {
  margin-top: 20px;
}

.h3-link.margin-top--20-px:hover {
  color: var(--primary-orange);
}

.leadership-img {
  border-radius: 80px 10px;
  width: 100%;
  height: auto;
  transition: opacity .3s;
}

.link-team {
  background-image: linear-gradient(140deg, #e94112cc, #e9411266 53%, #0011a726 94%, #0011a7cc);
  border-radius: 80px 10px;
  width: 100%;
  height: auto;
  transition-property: all;
  transition-duration: .4s;
}

.workflow-wrapper {
  width: 100%;
  height: 500px;
  display: flex;
}

.workflow-wrapper.hide {
  display: none;
}

.workflow-video-wrapper {
  width: 100%;
  height: 100%;
}

.background-video {
  z-index: 10;
  object-fit: cover;
  border-radius: 10px 100px;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  height: 500px;
  padding-top: 20px;
  padding-left: 20px;
  display: flex;
}

.background-video.team {
  height: 100%;
}

.logo-video {
  width: 80px;
}

.title-central-wrap {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 70%;
  margin-bottom: 60px;
  display: flex;
}

.subtitle-line-4, .subtitle-line-5 {
  background-color: #000e1d;
  width: 35px;
  height: 1px;
}

.collection-list-wrapper-blog-home {
  width: 100%;
}

.subtitle-line-6 {
  background-color: #000b1f;
  width: 35px;
  height: 1px;
}

.collection-list-blog-home {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  justify-content: space-between;
  display: flex;
}

.blog-img {
  object-fit: cover;
  object-position: 50% 30%;
  border-radius: 10px 50px 10px 10px;
  width: 100%;
  height: 100%;
}

.content-blog {
  margin-top: 15px;
}

.subtitle-line-7 {
  background-color: #000b1f;
  width: 35px;
  height: 1px;
}

.h4-link {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 25px;
  font-weight: 500;
  line-height: 1.3em;
  transition-property: color;
  transition-duration: .3s;
  display: inline-block;
}

.h4-link:hover {
  color: #e94112;
}

.img-blog-link {
  width: 100%;
  height: 280px;
  transition-property: all;
  transition-duration: .4s;
  position: relative;
  top: 0;
}

.img-blog-link:hover {
  top: -5px;
}

.color {
  width: 100%;
  height: 100%;
  margin-bottom: 0;
}

.color.cc-pulm {
  background-image: linear-gradient(225deg, #667eea, #764ba2);
}

.color.cc-sunset-forest {
  background-image: linear-gradient(225deg, #e3bf54, #23bcba);
}

.color.cc-forest {
  background-image: linear-gradient(225deg, #23bcba, #45e994);
}

.color.cc-sunset {
  background-image: linear-gradient(225deg, #fb8332, #e3bf54);
}

.color.cc-pulm-sunset {
  background-image: linear-gradient(225deg, var(--secondary), #fb8332);
}

.color.cc-forest-pulm {
  background-image: linear-gradient(225deg, #23bcba, #764ba2);
}

.img-grid {
  background-image: linear-gradient(to top, #000000ad, #0000), url('../images/Sea-Bridge.png');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  border-radius: 8px;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.img-grid.view-sea {
  background-image: linear-gradient(to top, #000000ad, #0000), url('../images/Sea-View.png');
  background-position: 0 0, 50%;
}

.img-grid.view-river {
  background-image: linear-gradient(to top, #000000ad, #0000), url('../images/river-view.png');
}

.img-grid.view-lake {
  background-image: linear-gradient(to top, #000000ad, #0000), url('../images/Small-Lakes.png');
}

.img-grid.view-waterfall {
  background-image: linear-gradient(to top, #000000ad 31%, #0000 50%), url('../images/Water-fall.png');
  background-position: 0 0, 50%;
  background-size: auto, cover;
}

._5-cards-grid {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template: "."
                 "."
                 / 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.play-icon {
  z-index: 7;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  inset: 0%;
}

.button-gradient-2 {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.button-gradient-2._3 {
  z-index: 3;
}

.button-gradient-2._2 {
  z-index: 2;
}

.button-gradient-2._1 {
  z-index: 1;
}

.button-gradient-2._6 {
  z-index: 6;
}

.button-gradient-2._5 {
  z-index: 5;
}

.button-gradient-2.static {
  opacity: 0;
  position: static;
}

.button-gradient-2._4 {
  z-index: 4;
}

.button-grid {
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  inset: 0%;
}

.text-block-grid-1 {
  color: #fff;
  width: 90%;
  margin: 0;
  padding-top: 0;
  padding-bottom: 0;
  padding-right: 0;
  position: relative;
}

.button-block-2 {
  z-index: 99;
  cursor: pointer;
  border-radius: 8px;
  width: 80px;
  height: 80px;
  transition: transform .2s;
  display: block;
  position: relative;
  overflow: hidden;
}

.button-block-2:hover {
  transform: scale(1.05);
}

.button-block-2.small {
  width: 66px;
  height: 66px;
}

.video-card-grid {
  background-color: #fff;
  border-radius: 8px;
  flex-direction: column;
  justify-content: flex-end;
  width: 100%;
  height: 479px;
  padding: 0 4px 24px 16px;
  display: flex;
  position: relative;
}

.video-card-grid:hover {
  box-shadow: none;
}

.social-icon-2 {
  object-fit: contain;
  max-height: 100%;
}

.locations-mask {
  overflow: visible;
}

.color-white {
  color: #fff;
}

.faq-plus-icon {
  max-width: 30px;
  max-height: 30px;
  margin-left: 0;
  position: relative;
  top: -1px;
  transform: rotate(45deg);
}

.sidebar__category-badge {
  width: 30px;
  height: 30px;
  margin-bottom: -10px;
  margin-right: -10px;
  position: absolute;
  inset: auto 0% 0% auto;
}

.footer-bottom-wrapper-2 {
  background-color: #111521;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.semicircle {
  z-index: -1;
  background-color: #1c2745;
  border-top-left-radius: 50px;
  border-top-right-radius: 50px;
  justify-content: center;
  align-items: center;
  min-width: 70px;
  max-width: 70px;
  max-height: 30px;
  margin-top: auto;
  display: flex;
  position: absolute;
  top: 0%;
  bottom: 21%;
}

.preloader-logo-icon {
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 203px;
  display: flex;
}

.fixed-form-left {
  background-color: #0000;
  background-image: url('../images/Dominik-Petrovič.jpg');
  background-position: 50%;
  background-size: cover;
  border: 2px #d0d8e8;
  border-radius: 50%;
  width: 53px;
  height: 53px;
}

.fixed-form-left.novotny {
  background-image: url('../images/petrovic-avatar-circle.png');
}

.logo-image {
  object-fit: cover;
  max-width: 84px;
  max-height: 84px;
  margin-bottom: 7.5px;
}

.logo-image.half-size {
  max-width: none;
  max-height: 42px;
  margin-bottom: 0;
}

.space-text-half {
  min-height: 7.5px;
}

.nav-social-link {
  background-color: #161b2b;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  max-width: 45px;
  max-height: 45px;
  padding: 15px;
  display: flex;
}

.nocapitalize {
  text-transform: none;
}

.image-small-circle {
  border-radius: 100%;
  width: 60px;
  max-width: 60px;
  height: 60px;
  max-height: 60px;
}

.logo-wrapper-alt {
  z-index: 4;
  grid-column-gap: 15px;
  background-color: #111b37;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  display: flex;
  position: absolute;
  inset: 30px auto auto 5%;
}

.logo-wrapper-alt.hide-on-home-about-desktop {
  display: none;
}

.hero-content-wrapper {
  z-index: 99;
  grid-row-gap: 15px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  max-width: 750px;
  margin-top: 60px;
  padding-left: 0;
  padding-right: 0;
  display: flex;
  position: relative;
}

.hero-content-wrapper.align-center {
  align-items: center;
}

.page-wrapper-8smicka {
  width: 100%;
  overflow: hidden;
}

.steps-text-wrapper {
  grid-column-gap: 30px;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  display: flex;
  position: relative;
  left: 50px;
}

.steps-text-wrapper.opposite {
  flex-direction: row-reverse;
  left: -50px;
}

.testimonial-client-wrapper {
  text-align: left;
  flex-wrap: nowrap;
  display: flex;
}

.features-image-1 {
  object-fit: cover;
  object-position: 100% 50%;
  width: 100%;
  height: 100%;
  min-height: 600px;
  max-height: 600px;
  box-shadow: 0 8px 10px -5px #0003, 0 5px 15px -8px #0000003d;
}

.icon-wrapper {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-width: 70px;
  display: flex;
  position: relative;
}

.dropdown-description-wrapper {
  margin-top: 0;
  overflow: hidden;
}

.steps-real-estate-wrapper {
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 30px;
  padding-right: 30px;
}

.space {
  min-height: 60px;
}

.space.show-on-tab {
  display: none;
}

.listing-subheading {
  color: #dfb187;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 8px;
  font-size: 15px;
  line-height: 1em;
}

.listing-subheading.margin-left-2px {
  margin-left: 2px;
}

.listing-subheading.margin-left-3px {
  margin-left: 3px;
}

.space-mid {
  min-height: 90px;
}

.circle-left-arrow {
  border: .5px solid #ffffff80;
  border-radius: 100px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-width: 160px;
  min-height: 160px;
  max-height: 160px;
  display: flex;
  left: -30px;
}

.cta-paragraph {
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}

.code-embed-2 {
  width: 100%;
  height: 100%;
}

.blog-row {
  background-color: #1c2745;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  display: flex;
}

.footer-social-link {
  width: 1.2em;
}

.button-flex {
  grid-column-gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  display: flex;
}

.cta-image-wrapper {
  height: 100%;
  position: relative;
}

.cta-image {
  object-fit: cover;
  object-position: 100% 50%;
  min-height: 100%;
}

.minwidth200px {
  min-width: 200px;
}

.space-listings-card {
  min-height: 30px;
}

.star {
  filter: sepia(50%);
  max-height: 15px;
}

.slide-nav {
  display: none;
}

.footer-links-text {
  grid-row-gap: 9px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 240px;
  display: flex;
}

.locations-text-wrapper {
  text-align: center;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 800px;
  min-height: 1px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
}

.maps--toggle-button {
  cursor: pointer;
  background-color: #111b37;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 2rem;
  height: 2rem;
  margin-top: 1rem;
  margin-left: -2rem;
  display: flex;
  position: absolute;
  inset: 0% auto auto 0%;
}

.locations-overlay-half {
  z-index: 99;
  background-image: linear-gradient(to right, #111b37e6, #0000 50%);
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0% 0% auto auto;
}

.image-scroll-movement.move-up {
  margin-top: -20%;
}

.line-vertical-separator {
  background-color: #dfb187;
  width: 1px;
  height: 60px;
}

.icon-arrow-left {
  margin-right: 0;
  font-size: 25px;
  font-weight: 900;
}

.vertical-steps-line-wrapper {
  position: relative;
  overflow: hidden;
}

.vertical-steps-line {
  background-color: #dfb18740;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 1px;
  height: 330px;
  display: flex;
}

.vertical-steps-line.small {
  height: 150px;
}

.sidebar__wrapper {
  z-index: 10;
  height: 100%;
  padding: 1rem;
  position: absolute;
  inset: 0% 0% 0% auto;
}

.faq-title-wrapper {
  text-align: center;
  flex-direction: column;
  align-items: center;
  width: 60%;
  min-height: 1px;
  margin-bottom: 30px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  padding-right: 0;
  display: flex;
}

.card-wrapper {
  flex-direction: column;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
}

.space-small {
  min-height: 30px;
}

.faq-wrapper {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.logo-link {
  z-index: 5;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 203px;
  display: flex;
  position: absolute;
  inset: 0% auto auto 0%;
}

.logo-link.w--current {
  inset: 0%;
}

.circle-steps-wrapper {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-width: 100px;
  max-width: 100px;
  min-height: 100px;
  max-height: 100px;
  display: flex;
  position: relative;
}

.circle-steps-wrapper.marginbottom20px {
  margin-bottom: 20px;
}

.testimonial-flex {
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 15px;
  display: flex;
}

.banner-content {
  flex: 1;
  justify-content: center;
  align-items: center;
  display: flex;
}

.listing-name {
  text-transform: uppercase;
  font-size: 21px;
  position: absolute;
  top: 230px;
}

.point-214a {
  z-index: 3;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 150px;
  height: 150px;
  display: flex;
  position: absolute;
  top: 72%;
  left: 45%;
}

.margin-right-text {
  margin-right: 4px;
}

.margin-right-text.big {
  font-size: 1.2rem;
}

.popup--background {
  z-index: 1;
  opacity: .4;
  background-color: #202020;
  position: absolute;
  inset: 0%;
}

.hero-arrows {
  max-height: 20px;
}

.locations-slider {
  background-color: #0000;
  width: 640px;
  max-width: 640px;
  height: 400px;
  max-height: 400px;
  position: relative;
}

.info-icon {
  justify-content: center;
  align-items: center;
  width: 16px;
  height: 16px;
  display: flex;
}

.steps-feature-wrapper-copy {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 30%;
  height: 100%;
  display: flex;
  position: relative;
  top: -40px;
}

.features-card-wrapper {
  grid-row-gap: 64px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  max-width: 100%;
  display: flex;
  position: relative;
}

.blog-card-wrapper {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: grid;
}

.interactive-image-wrapper {
  position: relative;
  overflow: hidden;
}

.interactive-image-wrapper.wide-image {
  width: 100%;
  max-width: 1380px;
  height: 90vh;
  max-height: 950px;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
}

.hero-image-slide-2 {
  z-index: -1;
  background-image: url('../images/Hero-Image-Overlay.png'), url('../images/heroimage2-min.jpg');
  background-position: 50%, 20%;
  background-repeat: no-repeat, no-repeat;
  background-size: cover, cover;
  background-attachment: scroll, scroll;
  flex-direction: column;
  justify-content: center;
  min-width: 100%;
  min-height: 100vh;
  position: absolute;
}

.dot {
  z-index: 1;
  cursor: pointer;
  background-color: #fff;
  border: 5px solid #22a45a;
  border-radius: 30px;
  width: 20px;
  height: 20px;
  padding-left: 0;
  position: absolute;
}

.dot._213b, .dot._213a, .dot._241a, .dot._215a, .dot._241b, .dot._215b {
  background-color: #dfb187;
  border-width: 10px;
  border-color: #101d41;
  width: 30px;
  height: 30px;
}

.row-content {
  grid-column-gap: 45px;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.row-content.row-gap-on-tab {
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
}

.listing-card-wrapper {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 320px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.sidebar__location-info {
  z-index: 5;
  position: relative;
}

.button-image {
  object-fit: cover;
  max-height: 30px;
  position: absolute;
}

.listing-text-wrapper {
  grid-row-gap: 3px;
  color: #fff;
  background-image: linear-gradient(#0000 50%, #111b37b3 75%, #111b37);
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  min-height: 100%;
  padding-bottom: 30px;
  display: flex;
  position: absolute;
  inset: auto 0% 0%;
  overflow: hidden;
}

.hero-image-slide-1 {
  z-index: -1;
  background-image: url('../images/Hero-Image-Overlay.png'), url('../images/9smickaHeroimage3-min.png');
  background-position: 50%, 70%;
  background-repeat: no-repeat, no-repeat;
  background-size: cover, cover;
  background-attachment: scroll, scroll;
  flex-direction: column;
  justify-content: center;
  min-width: 100%;
  min-height: 100vh;
  position: absolute;
}

.background-video-2 {
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 100vh;
  max-height: 100vh;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.background-video-2.hide {
  display: none;
}

.preloader-right {
  background-color: #101d41;
  width: 50%;
  min-height: 100vh;
  position: absolute;
  inset: 0% auto 0% 0%;
}

.footer-wrapper-2 {
  background-color: #161b2b;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.banner-content-wrapper-2 {
  justify-content: flex-start;
  align-items: center;
  padding-top: .25rem;
  padding-bottom: .25rem;
  display: flex;
}

.locations-slide {
  margin-right: 30px;
  overflow: hidden;
}

.preloader-logo-image {
  object-fit: cover;
  max-width: 84px;
  max-height: 84px;
  margin-bottom: 7.5px;
}

.listings-cms-wrapper {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-flow: wrap;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  place-content: center;
  place-items: start center;
  width: 100%;
  max-width: 1168px;
  margin-left: auto;
  margin-right: auto;
  padding: 40px;
  display: grid;
}

.button-icon {
  color: #dfb187;
  max-width: 40px;
  max-height: 40px;
  font-size: 15px;
  position: relative;
  left: -1px;
  transform: rotate(90deg);
}

.features-image-wrapper-1 {
  min-width: 400px;
  max-width: 500px;
}

.numbers-card {
  border-right: 1px solid #4a3f351a;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 60px;
  margin-bottom: 60px;
  display: flex;
  position: relative;
}

.space-large {
  min-height: 130px;
}

.locations-title {
  z-index: 2;
  color: #fff;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(to right, #fff, #313953);
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 36px;
}

.numbers-wrapper-2 {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.booking-text-field-ghost {
  color: #fff;
  background-color: #0000;
  border: 1px solid #eee;
  border-radius: 12.5rem;
  width: 100%;
  min-height: 50px;
  max-height: 50px;
  margin-bottom: 0;
  padding-left: 60px;
}

.locations-amount {
  z-index: 100;
  color: #fff;
  text-align: center;
  position: relative;
}

.flex-footer {
  grid-column-gap: 15px;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.prelaoder-logo-wrapper {
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  overflow: hidden;
}

.div-block-191 {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-flow: column;
  display: flex;
}

.div-block-191.hide {
  display: none;
}

.button-secondary {
  color: #dfb187;
  text-align: center;
  letter-spacing: 0;
  text-transform: uppercase;
  white-space: nowrap;
  background-color: #1c2745;
  justify-content: center;
  align-items: center;
  margin: .3125rem 1px;
  padding: 12px 30px;
  font-family: Barlow Condensed, sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.42857;
  transition: color .3s, background-color .3s;
  display: inline-block;
}

.button-secondary:hover {
  color: #111521;
  background-color: #dfb187;
}

.button-secondary.background-primary {
  font-size: 22px;
  transition: background-color .2s, background-color .2s;
}

.button-secondary.background-primary:hover {
  background-color: #fff;
}

.circle-right-arrow {
  border: .5px solid #ffffff80;
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  min-width: 160px;
  min-height: 160px;
  max-height: 160px;
  display: flex;
  inset: 0% -30px 0% auto;
}

.description-max-width {
  text-align: center;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.capitalize {
  text-transform: uppercase;
}

.testimonial-info-wrapper {
  grid-row-gap: 10px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  margin-left: 20px;
  display: flex;
}

.fixed-form-right {
  flex: 1;
  padding-left: 10px;
}

.locations-right-arrow {
  max-width: 30px;
  max-height: 90px;
  position: absolute;
  top: 80%;
  right: 88%;
}

.image-locations {
  object-fit: cover;
  width: 60%;
  max-height: 400px;
  position: relative;
  overflow: hidden;
}

.item-highlighter {
  z-index: 1;
  opacity: 0;
  transition: opacity .2s ease-out;
  position: absolute;
  inset: 0%;
}

.maps-list--lottie-icon {
  width: 1.5rem;
  height: 1.5rem;
}

.locations-wrapper {
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
}

.logo-footer-wrapper {
  z-index: 4;
  grid-column-gap: 15px;
  background-color: #0000;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  display: flex;
  position: static;
  inset: 30px auto auto 5%;
}

.title-wrapper {
  grid-row-gap: 15px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 60%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
}

.steps-feature-wrapper {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 30%;
  height: 100%;
  display: flex;
  position: relative;
  top: -95px;
}

.sidebar {
  background-color: #161b2b;
  border: 1px #434345;
  border-radius: 1.5rem;
  max-width: 380px;
  height: 100%;
  padding: 1rem;
  position: relative;
  overflow: auto;
}

.button-2 {
  color: #fff;
  text-align: center;
  letter-spacing: 0;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  background-color: #111b37;
  border: 1px solid #dfb18780;
  border-radius: 4px;
  justify-content: center;
  align-self: center;
  align-items: center;
  padding: 15px 30px;
  font-family: Barlow Condensed, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.42857;
  text-decoration: none;
  transition-property: background-color;
  display: block;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 20px -10px #0003;
}

.button-2:hover {
  color: #111521;
  background-color: #dfb187;
}

.numbers-description {
  color: #d7d7d8;
  justify-content: center;
  align-items: center;
  font-size: 15px;
  line-height: 1.8;
  display: flex;
}

.wrapper-quarter {
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  max-width: 25%;
  display: flex;
}

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

.popup-img {
  z-index: 5;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 5px;
  margin-bottom: .5rem;
  display: block;
  position: relative;
}

.centered {
  text-align: center;
  list-style: none;
}

.centered.nocapitalize {
  text-transform: none;
}

.point-213a {
  z-index: 3;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 150px;
  height: 150px;
  display: flex;
  position: absolute;
  top: 40%;
  left: 10%;
}

.footer-paragraph {
  width: 75%;
  padding-bottom: 10px;
}

.faq-flex {
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.hero-description {
  text-align: right;
  max-width: 750px;
}

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

.sidebar__location-card {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  cursor: pointer;
  border-radius: 8px;
  flex-direction: row;
  align-items: center;
  width: 100%;
  padding: .5rem;
  transition: box-shadow .2s, background-color .2s ease-out;
  display: flex;
  position: relative;
  overflow: hidden;
}

.sidebar__location-card:hover {
  background-color: #323233;
}

.sidebar__location-card.jetboost-map-center {
  background-color: #2b333d;
  margin-bottom: 10px;
}

.sidebar__location-card.jetboost-map-center:hover {
  background-color: #111521;
}

.space-text {
  min-height: 15px;
}

.dropdown-description {
  text-align: left;
}

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

.interactive-image._213b, .interactive-image._214a, .interactive-image._215a, .interactive-image._214b, .interactive-image._215b, .interactive-image._213a {
  display: none;
}

.nav-bar-container {
  background-color: #111b37;
  width: 100%;
  max-width: 1440px;
  min-height: 100px;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
}

.nav-bar-container.home-about-desktop {
  background-color: #0000;
}

.popup-info {
  z-index: 5;
  position: relative;
}

.faq-dropdown-title {
  text-align: left;
  white-space: pre-wrap;
  max-width: 90%;
  padding-right: 60px;
  font-size: 1.2rem;
  font-weight: 300;
}

.tabs-content {
  width: 100%;
  display: flex;
}

.title-field-wrapper {
  color: #eee;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
  position: relative;
}

.blog-wrapper {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.footer-bottom-text {
  color: #fff;
  white-space: nowrap;
  font-size: .9rem;
}

.features-description {
  max-width: 550px;
}

.icon-3 {
  display: none;
}

.separator-icon {
  max-width: 45px;
  max-height: 45px;
}

.listing-price {
  opacity: 0;
  color: #dfb187;
  display: none;
}

.icon-arrow-right {
  font-size: 25px;
  font-weight: 900;
}

.nav-menu {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0;
  padding-bottom: 0;
  padding-left: 0;
  display: flex;
}

.fixed-form-wrapper {
  background-color: #1c2745;
  border: 1px #000;
  flex-flow: column;
  justify-content: flex-start;
  align-items: stretch;
  height: 100%;
  padding: 20px 15px;
  display: flex;
  overflow: hidden;
}

.container-wrapper {
  width: 100%;
}

.sidebar__location-img {
  object-fit: cover;
  border-radius: 3px;
  width: 70px;
  height: 70px;
  display: block;
}

.hero-main-wrapper {
  background-image: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 100vh;
  margin-left: auto;
  margin-right: auto;
  padding-right: 0;
  display: flex;
  position: relative;
  overflow: hidden;
}

.maps-demo-wrapper {
  margin: 40px;
  position: relative;
  overflow: hidden;
}

.preloader-wrapper {
  z-index: 999999;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: none;
  position: fixed;
  inset: 0%;
}

.popup-title {
  color: #e7e8ec;
  margin-bottom: .3rem;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.2;
}

.testimonial-text-wrapper {
  width: 100%;
}

.numbers-row-count {
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  overflow: hidden;
}

.point-215b {
  z-index: 3;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 150px;
  height: 150px;
  display: flex;
  position: absolute;
  top: 23%;
  left: 80%;
}

.fixed-contact-form {
  z-index: 900;
  border: 1px #000;
  flex-direction: column;
  width: 335px;
  height: 400px;
  margin-bottom: 0;
  margin-left: 35px;
  margin-right: 0;
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: auto;
  overflow: hidden;
  box-shadow: 7px 7px 30px -10px #0000004d;
}

.sidebar__location-title {
  color: #e7e8ec;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
}

.nav-menu-link {
  color: #eee;
  text-transform: uppercase;
  margin-left: 5px;
  margin-right: 5px;
  padding: 5px 10px;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  text-decoration: none;
  transition: color .3s;
}

.nav-menu-link:hover {
  color: #dfb187;
}

.nav-menu-link:focus-visible, .nav-menu-link[data-wf-focus-visible] {
  outline-offset: 0px;
  color: #0050bd;
  border-radius: 4px;
  outline: 2px solid #0050bd;
}

.video-background-wrapper {
  background-image: url('../images/dron-15.JPG');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: scroll;
  width: 100%;
  min-height: 100vh;
  max-height: 100vh;
  margin-left: auto;
  margin-right: auto;
}

.nav-dash-line {
  background-color: #dfb187;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 1px;
  margin-top: 5px;
  margin-left: 15px;
  margin-right: 30px;
  display: flex;
}

.dash-line {
  background-color: #dfb187;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 1px;
  display: flex;
}

.dash-line.longer {
  width: 70px;
}

.footer-text-wrapper {
  background-color: #0000;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}

.main-wrapper-landing {
  flex-direction: column;
  display: flex;
  overflow: hidden;
}

.main-wrapper-landing.banner {
  padding-top: 40px;
}

.button-icon-wrapper {
  z-index: 2;
  justify-content: center;
  align-items: center;
  min-width: 30px;
  min-height: 30px;
  max-height: 30px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.max-width-450px {
  max-width: 450px;
}

.stars-wrapper {
  grid-column-gap: 5px;
  flex-wrap: nowrap;
  display: flex;
}

.banner-close-button {
  margin-left: 1rem;
}

.locations-card {
  justify-content: flex-start;
  align-items: center;
  max-width: 100%;
  max-height: 400px;
  display: flex;
  overflow: hidden;
}

.footer-text-flex {
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.tab-panel {
  background-color: #1c2745;
  border: 1px solid #1c2745;
  width: 100%;
  padding: 30px 60px 60px;
}

.flex {
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

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

.flex.align-center-justify-center.gap-15px {
  grid-column-gap: 15px;
}

.button-wrapper {
  overflow: hidden;
}

.button-wrapper.mgbottom40px {
  margin-bottom: 10px;
}

.preloader-left {
  background-color: #101d41;
  width: 50%;
  min-height: 100vh;
  display: block;
  position: absolute;
  inset: 0% 0% 0% auto;
}

.location-image-wrapper {
  width: 70px;
  min-width: 70px;
  height: 70px;
  position: relative;
}

.location-image-wrapper.jetboost-map-center {
  z-index: 5;
}

.badge-card-type {
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
  background-color: #111b37;
  justify-content: center;
  align-self: center;
  align-items: center;
  padding: 10px 12px;
  font-size: .6rem;
  font-weight: 300;
  line-height: 1;
  transition: transform .4s, border-color .4s, background-color .4s;
  display: flex;
  position: absolute;
  inset: 3% 3% auto auto;
  box-shadow: 0 2px 5px #0003;
}

.badge-card-type:hover {
  color: #eee;
}

.badge-card-type.reserved {
  background-color: #dfb187;
  top: 16%;
}

.card-listing-content {
  flex-direction: column;
  min-width: 39.5%;
  max-width: 569px;
  max-height: 320px;
  margin-top: 0;
  margin-bottom: 0;
  display: flex;
  position: relative;
  overflow: hidden;
}

.banner-component {
  color: #fff;
  background-color: #939878;
  border-bottom: 1px #000;
  padding-top: 10px;
  padding-bottom: 10px;
  position: relative;
}

.banner-component.zafirova {
  z-index: 999999;
  background-color: #111521;
  position: fixed;
  inset: 0% 0% auto;
}

.sidebar__location-address {
  margin-top: 3px;
  font-size: 14px;
  line-height: 1.3;
}

.numbers-card-body {
  z-index: 2;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 208px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
}

.gradient-overlay-bottom {
  z-index: 99;
  background-image: linear-gradient(to top, #111b37e6, #0000 50%);
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0% auto auto 0%;
}

.gradient-overlay {
  z-index: 99;
  background-image: linear-gradient(to right, #111b37e6, #0000 50%);
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0% auto auto 0%;
}

.gradient-overlay.reverse {
  background-image: linear-gradient(to right, #0000 50%, #111b37e6);
}

.map-container {
  background-color: #323233;
  border: 1px solid #282829;
  border-radius: 32px;
  min-height: 630px;
  overflow: hidden;
}

.map-container.jetboost-map-lrbw {
  background-color: #111b37;
  border-style: none;
  border-color: #434345;
  flex-flow: row;
  justify-content: center;
  align-items: center;
}

.fixed-form-intro {
  flex-wrap: nowrap;
  align-items: center;
  margin-top: 5px;
  margin-bottom: 15px;
  display: flex;
}

.footer-logo-link-2 {
  position: relative;
}

.footer-logo-link-2.w--current {
  padding-top: 3%;
}

.footer-content-wrapper {
  flex-direction: column;
  width: 40%;
  display: flex;
}

.testimonial-image-wrapper {
  background-color: #0000;
  border-radius: 8px;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  display: flex;
}

.gradient-overlay-top {
  z-index: 99;
  background-image: linear-gradient(to top, #0000 50%, #111b37e6);
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0% auto auto 0%;
}

.icon-main {
  max-width: none;
  max-height: 60px;
  margin-bottom: 7.5px;
  position: static;
  top: -10px;
}

.locations-left-arrow {
  z-index: 99;
  max-width: 50px;
  max-height: 90px;
  position: absolute;
  top: 80%;
  left: 0;
}

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

.office-tabs-grid {
  grid-column-gap: 30px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: .3fr 1fr;
  grid-auto-columns: 1fr;
  place-content: center;
  align-self: center;
  justify-items: center;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: grid;
}

.fixed-form-tab {
  color: #fff;
  background-color: #22a45a;
  background-image: none;
  background-position: 21px 40%;
  background-repeat: no-repeat;
  background-size: 30px;
  border-style: none;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  align-items: center;
  width: 100%;
  height: 55px;
  padding-left: 55px;
  font-size: 14px;
  text-decoration: none;
  display: flex;
  position: relative;
}

.fixed-form-tab:hover {
  color: #fff;
  text-decoration: none;
}

.fixed-form-tab.kostoliste {
  color: #101d41;
  text-align: left;
  cursor: pointer;
  background-color: #dfb187;
  background-image: none;
  background-repeat: repeat;
  background-size: auto;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  justify-content: center;
  height: auto;
  padding: 20px;
  font-size: 16px;
  font-weight: 700;
}

.line-separator {
  background-color: #dfb18780;
  width: 50%;
  min-width: 135px;
  max-width: 135px;
  min-height: 1px;
}

.highlighter-bg {
  z-index: 1;
  opacity: .1;
  background-color: #4ec6ed;
  border-radius: 8px;
  position: absolute;
  inset: 0%;
}

.nav-bar-wrapper {
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  margin-top: 75px;
  padding-right: 12%;
  display: flex;
}

.footer-link {
  letter-spacing: 0;
  cursor: pointer;
  font-size: 17px;
  text-decoration: none;
}

.footer-link:hover {
  color: #dfb187;
}

.locations-nav {
  display: none;
}

.button-text-with-overlay {
  z-index: 2;
  color: #fff;
  position: relative;
}

.listing-icon {
  color: #dfb187;
  text-align: center;
  font-size: 24px;
  font-weight: 100;
  line-height: 1;
}

.flex-features-image {
  grid-column-gap: 30px;
  justify-content: center;
  margin-top: 40px;
}

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

.logo-wrapper {
  cursor: pointer;
  background-color: #101d41;
  justify-content: center;
  align-items: center;
  width: 250px;
  min-height: 203px;
  display: flex;
}

.logo-wrapper.shadow {
  position: absolute;
  inset: 0% auto auto 0%;
}

.absolute {
  position: absolute;
}

.page-padding {
  padding: 0 2.5rem;
}

.footer-text {
  letter-spacing: 0;
  cursor: pointer;
  font-size: 17px;
  text-decoration: none;
}

.sliderhero {
  background-color: #0000;
  min-height: 100vh;
  margin-left: 143px;
}

.hovertext {
  color: #fff;
  text-align: center;
  letter-spacing: 0;
  text-transform: uppercase;
  white-space: nowrap;
  background-color: #101d41;
  border: 1px solid #dfb18780;
  border-radius: 4px;
  justify-content: center;
  align-items: center;
  margin-bottom: 60px;
  padding: 15px 30px;
  font-family: Barlow Condensed, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.42857;
  text-decoration: none;
  transition-property: background-color;
  display: none;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 20px -10px #0003;
}

.hovertext:hover {
  color: #111521;
}

.line-bottom {
  z-index: 9;
  border-bottom: 1px solid #dfb18780;
  width: 100%;
  position: absolute;
  inset: auto 0% 0%;
}

.hero-sidebar-icons-wrapper {
  grid-row-gap: 24px;
  justify-content: flex-end;
  align-items: center;
  height: 100%;
  padding-bottom: 30px;
}

.preloader-logo {
  cursor: pointer;
  background-color: #101d41;
  justify-content: center;
  align-items: center;
  width: 250px;
  min-height: 203px;
  display: flex;
}

.features-text-wrapper {
  grid-row-gap: 15px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 50%;
  max-width: 57.5%;
  display: flex;
}

.features-text-wrapper.align-right {
  align-items: flex-end;
}

.features-text-wrapper.align-right.fade-in-animation {
  text-align: left;
  justify-content: center;
  align-items: flex-start;
}

.subheading-flex {
  z-index: 100;
  grid-column-gap: 15px;
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  display: flex;
  position: relative;
}

.subheading-flex.gap-7-5px {
  grid-column-gap: 7.5px;
}

.point-215a {
  z-index: 3;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 150px;
  height: 150px;
  display: flex;
  position: absolute;
  top: 34%;
  left: 65%;
}

.location-popup {
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border: 1px solid #282829;
  border-radius: 1rem;
  width: 100%;
  max-width: 240px;
  padding: 1rem;
  transition: opacity .2s ease-out, margin .2s ease-out;
  display: none;
  position: relative;
  overflow: hidden;
  box-shadow: 0 5px 16px #00000024;
}

.footer-icon {
  max-height: 15px;
  position: relative;
  top: 2px;
}

.section-6 {
  width: 100%;
}

.section-6.max-width-1440px.hide {
  display: none;
}

.phone-block {
  cursor: pointer;
  background-color: #0000;
  border-radius: 0;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  padding: 5px 10px 5px 5px;
  text-decoration: none;
  display: flex;
}

.phone-block:hover {
  text-decoration: none;
}

.faq-row {
  flex-flow: column wrap;
  justify-content: center;
  align-items: center;
  width: 90%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.faq-content-wrapper {
  text-align: center;
  width: 60%;
  min-height: 1px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}

.image-overlay {
  z-index: 100;
  background-color: #dfb187;
  display: none;
  position: absolute;
  inset: 0%;
}

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

.hero-sidebar {
  z-index: 4;
  background-image: linear-gradient(#101d41 40%, #111b37 90%);
  flex-direction: column;
  justify-content: flex-start;
  width: 143px;
  height: 100vh;
  margin-bottom: 1px;
  margin-right: auto;
  display: flex;
  position: absolute;
  inset: 0% auto auto 0%;
}

.locations-title-wrapper {
  text-align: left;
  flex-direction: column;
  align-items: flex-start;
  padding-left: 60px;
  display: flex;
}

.cta-text-wrapper {
  z-index: 100;
  grid-row-gap: 15px;
  text-align: left;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  padding-left: 90px;
  display: flex;
  position: relative;
  bottom: 30px;
  left: 30px;
}

.cta-text-wrapper.fade-in-animation {
  min-width: 500px;
}

.container-3 {
  max-width: 90%;
  padding-left: 15px;
  padding-right: 15px;
}

.footer-links-title {
  font-family: Barlow Condensed, sans-serif;
  font-size: 1.188rem;
  font-weight: 700;
  line-height: 2;
}

.cta-wrapper {
  grid-row-gap: 0px;
  flex-wrap: wrap;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: flex-start;
  display: grid;
}

.features-image-wrapper {
  z-index: 1;
  align-self: flex-start;
  position: relative;
  overflow: hidden;
}

.count-flex-block {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  justify-content: center;
  align-items: center;
  padding-top: 20px;
}

.seperator-wrapper {
  grid-column-gap: 15px;
  text-align: center;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 60%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
}

.wrapper-full {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
}

.highlighter-border {
  z-index: 2;
  opacity: .25;
  border-radius: 8px;
  position: absolute;
  inset: 0%;
  box-shadow: inset 0 0 0 2px #4ec6ed;
}

.highlighter-border.food {
  box-shadow: inset 0 0 0 2px #e95958;
}

.features-wrapper {
  grid-row-gap: 64px;
  flex-direction: column;
  max-width: 80%;
  display: flex;
}

.faq-dropdown-accordion {
  min-width: 100%;
}

.listings-image {
  cursor: pointer;
  object-fit: cover;
  width: 100%;
  min-width: 100%;
  min-height: 320px;
  transition: transform .2s ease-in;
}

.listings-image:hover {
  transform: scale(1.1);
}

.dropdown-toggle {
  cursor: pointer;
  background-color: #1c2745;
  justify-content: space-between;
  align-items: center;
  min-width: 100%;
  margin-top: 15px;
  padding: 30px 45px;
}

.point-214b {
  z-index: 3;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 150px;
  height: 150px;
  display: flex;
  position: absolute;
  top: 60%;
  left: 62%;
}

.centered-on-mobile-small {
  font-size: 15px;
}

.footer-social-links-wrapper {
  grid-column-gap: 15px;
  justify-content: flex-start;
  align-items: center;
  width: 110px;
  display: flex;
}

.features-main-wrapper {
  grid-column-gap: 135px;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.image-steps-wrapper {
  object-fit: cover;
  justify-content: center;
  align-items: center;
  min-width: 740px;
  max-width: 740px;
  min-height: 250px;
  max-height: 250px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.space-semi {
  min-height: 60px;
}

.testimonial-tab {
  box-shadow: none;
  color: #fff;
  text-align: center;
  cursor: pointer;
  background-color: #1c2745;
  border: 1px solid #1c2745;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  transition: box-shadow .2s;
  display: flex;
}

.testimonial-tab:hover {
  box-shadow: none;
  color: #fff;
  border-bottom: 1px solid #e3af5a80;
}

.testimonial-tab.w--current {
  box-shadow: none;
  background-color: #1c2745;
  border-bottom-color: #dfb187;
}

.point-213b {
  z-index: 3;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 150px;
  height: 150px;
  display: flex;
  position: absolute;
  top: 18%;
  left: 20%;
}

.footer-flex-wrapper {
  justify-content: space-between;
  align-items: flex-start;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.container-full {
  max-width: 100%;
}

.container-full.max-width-1440px.relative {
  position: relative;
}

.popup-address {
  margin-top: 3px;
  font-size: 13px;
  line-height: 1.3;
}

.footer-bottom-flex {
  flex-flow: column;
  justify-content: space-between;
  align-items: center;
  width: 80%;
  display: flex;
}

.testimonials-wrapper {
  border-radius: 25px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 15%;
  padding-left: 15%;
  padding-right: 15%;
  display: flex;
}

.min-width-101 {
  min-width: 101%;
}

.testimonial-icon {
  opacity: .05;
  align-self: flex-start;
  max-height: 120px;
  position: relative;
  top: 16px;
}

.sidebar__location-buttons {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  justify-content: flex-end;
  align-items: center;
  margin-top: .5rem;
  display: none;
}

.button-overlay {
  z-index: 1;
  background-color: #1c2745;
  max-width: 100%;
  position: absolute;
  inset: 0% 0% 0% -100%;
}

.button-overlay:hover {
  border-color: #0000;
}

.icon {
  color: #dfb187;
  max-width: 60px;
  max-height: 60px;
  margin-bottom: 20px;
  font-weight: 100;
  position: static;
  top: -10px;
}

.popup-button {
  z-index: 5;
  background-color: #5e72e4;
  border-radius: 4px;
  justify-content: center;
  align-items: center;
  margin-top: .5rem;
  padding-top: .6em;
  padding-bottom: .6em;
  font-size: .8rem;
  line-height: 1;
  transition: background-color .2s ease-out;
  display: flex;
  position: relative;
  box-shadow: 0 3px 4px #4151ac4d, inset 0 1px 1px .5px #fff3;
}

.popup-button:hover {
  background-color: #4f60bf;
}

.button-text-2 {
  z-index: 2;
  color: #fff;
  font-size: 22px;
  position: relative;
}

.button-text-2.gold {
  color: #dfb187;
}

.social-link-booking {
  justify-content: center;
  align-items: center;
  width: 15px;
  min-width: 15px;
  height: 100%;
  margin-left: 30px;
  display: flex;
  position: absolute;
  overflow: hidden;
}

._8smicka {
  color: #fff;
  letter-spacing: .6px;
  background-color: #111b37;
  font-family: Barlow, sans-serif;
  line-height: 1.5px;
}

.primary-gradient {
  color: #f7570f;
  font-weight: 700;
}

.project-logo {
  max-width: 200px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.home_floor_label {
  background-color: var(--primary-orange);
  color: var(--white);
  border-radius: 3.125rem;
  padding: .25rem 1rem;
  font-size: 1rem;
  font-weight: 700;
  position: absolute;
  inset: 1rem 1rem auto auto;
}

@media screen and (min-width: 1280px) {
  .uppercase {
    opacity: .69;
  }

  .text-rotator-3 {
    margin-left: 5%;
  }

  .home-1-title-banner {
    font-size: 68px;
  }

  .img-2-banner {
    width: 32%;
    bottom: 27%;
    right: 16%;
  }

  .img-2-banner.home-1 {
    bottom: 25%;
  }

  .arrow-wrapper {
    align-items: center;
  }

  .banner-home {
    width: auto;
    height: 500px;
    left: 0;
  }

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

  .section-2.bammer-home {
    align-items: flex-end;
    padding-top: 160px;
    display: flex;
  }

  .banner-content-wrapper {
    flex-direction: row;
  }

  .content-banner-home-1 {
    text-align: left;
    flex-direction: column;
    align-items: flex-start;
    width: 42%;
    display: flex;
  }

  .content-wrapper-footer {
    width: 62%;
  }

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

  .left-footer {
    width: 40%;
  }

  .form-block {
    width: 80%;
  }

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

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

  .woman {
    height: 650px;
    margin-bottom: -50px;
  }

  .numbers {
    font-size: 72px;
  }

  .width-90-desctop {
    width: 90%;
  }

  .left-content.left-tablet {
    width: 45%;
  }

  .about-numbers {
    font-size: 24px;
  }

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

  .section-4.light-with-img-bottom {
    padding-top: 180px;
  }

  .service-name._w-20 {
    color: #18304b;
  }

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

  .section-5.light-with-img-bottom {
    padding-top: 180px;
  }

  .form-wrapper-home {
    grid-column-gap: 80px;
  }

  .form-block-home {
    width: 53%;
  }

  .circles {
    width: 617px;
    height: 634px;
    bottom: -33%;
  }

  .our-team-wrapper {
    grid-column-gap: 40px;
  }

  .workflow-video-wrapper {
    max-height: none;
  }

  .title-central-wrap {
    width: 62%;
  }

  .collection-list-wrapper-blog-home {
    width: 100%;
  }

  .img-blog-link {
    height: 320px;
  }

  .interactive-image-wrapper.wide-image {
    margin-bottom: 80px;
    position: relative;
  }

  .dot {
    background-color: #fff;
    width: 20px;
    height: 20px;
  }
}

@media screen and (min-width: 1440px) {
  .hero-2 {
    padding-bottom: 250px;
  }

  .text-rotator-3 {
    margin-left: 10%;
  }

  .div-block-3 {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    background-color: var(--black);
    border-radius: 30px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    align-content: center;
    justify-items: center;
    margin-top: 40px;
    margin-bottom: 40px;
    padding: 40px 20px;
    display: grid;
  }

  .predajca-avatar {
    max-height: 500px;
  }

  .home-1-title-banner {
    width: 93%;
  }

  .img-2-banner {
    width: 30%;
    bottom: 20%;
    right: 22%;
  }

  .img-2-banner.home-1 {
    right: 23%;
  }

  .banner-content-wrapper {
    grid-column-gap: 100px;
  }

  .content-banner-home-1, .footer-links-wrapper {
    width: 45%;
  }

  .form-block {
    width: 65%;
  }

  .woman {
    object-position: 60% 20%;
    margin-bottom: -70px;
  }

  .left-content {
    width: 47%;
  }

  .left-content.left-tablet {
    width: 42%;
  }

  .form-wrapper-home {
    grid-column-gap: 100px;
  }

  .form-block-home {
    width: 45%;
    padding: 40px;
  }

  .circles {
    left: -12%;
  }

  .interactive-image-wrapper.wide-image {
    margin-bottom: 80px;
  }

  .dot {
    background-color: #fff;
  }
}

@media screen and (min-width: 1920px) {
  .home-1-title-banner {
    width: 90%;
    font-size: 65px;
  }

  .img-2-banner {
    width: 27%;
    bottom: 25%;
    right: 29%;
  }

  .img-2-banner.home-1 {
    width: 27%;
    bottom: 27%;
    right: 29%;
  }

  .base-container {
    max-width: 1400px;
  }

  .banner-home {
    height: 660px;
  }

  .section-2.bammer-home {
    align-items: flex-end;
    min-height: 100vh;
    padding-top: 140px;
    padding-bottom: 80px;
    display: flex;
  }

  .cicrle-banner {
    bottom: -32%;
    left: -11%;
  }

  .content-banner-home-1 {
    width: 39%;
  }

  .content-wrapper-footer {
    width: 55%;
  }

  .footer-links-wrapper {
    width: 40%;
  }

  .left-footer {
    width: 35%;
  }

  .form-block {
    width: 70%;
  }

  .woman {
    object-position: 60% 15%;
    height: 670px;
  }

  .numbers {
    font-size: 74px;
  }

  .width-90-desctop {
    width: 80%;
  }

  .left-content {
    width: 46%;
  }

  .left-content._55 {
    width: 45%;
  }

  .section-4.light-with-img-bottom, .section-5.light-with-img-bottom {
    padding-top: 200px;
  }

  .form-wrapper-home {
    grid-column-gap: 120px;
  }

  .form-block-home {
    width: 45%;
  }

  .circles {
    left: -9%;
  }

  .workflow-wrapper, .background-video {
    height: 600px;
  }

  .title-central-wrap {
    width: 54%;
  }

  .collection-item-blog-home {
    width: 100%;
  }

  .blog-img {
    display: block;
  }

  .interactive-image-wrapper.wide-image {
    max-width: 1380px;
  }
}

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

  .navigation-main {
    padding-left: 3%;
    padding-right: 3%;
  }

  .ceo-grid {
    grid-row-gap: 30px;
    flex-direction: column;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
    display: flex;
  }

  .text-field-gray {
    min-width: auto;
  }

  .max-w-center {
    max-width: 90%;
  }

  .text-gray {
    top: 0;
  }

  .project-circle {
    width: 120px;
    height: 120px;
  }

  .tower {
    width: 400px;
  }

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

  .hero {
    min-height: auto;
    padding-top: 233px;
    padding-bottom: 233px;
  }

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

  .footer-left-wrapper {
    max-width: 70%;
  }

  .text-line {
    font-size: 70px;
  }

  .menu-big {
    display: none;
  }

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

  .display-2 {
    font-size: 45px;
  }

  .text-rotator {
    font-size: 100px;
  }

  .text-rotator.smaller {
    font-size: 50px;
  }

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

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

  .grid-about.reverse.make-it-flex {
    flex-direction: column-reverse;
    display: flex;
  }

  .nav-text-wrapper {
    height: 64px;
  }

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

  .paragraph-white {
    margin-left: 0;
    margin-right: 0;
  }

  .hero-2 {
    min-height: auto;
    padding-top: 260px;
    padding-bottom: 233px;
  }

  .hero-2.for-inner {
    padding-top: 150px;
    padding-bottom: 150px;
  }

  .display-1 {
    font-size: 100px;
  }

  .project-grid-main {
    flex-direction: column;
    display: flex;
  }

  .info-flex {
    width: 100%;
  }

  .project-line-divider {
    margin-top: 50px;
    margin-bottom: 50px;
  }

  .text-rotator-2 {
    font-size: 100px;
  }

  .text-rotator-3 {
    margin-left: 0%;
    font-size: 100px;
  }

  .contact-grid-main {
    grid-row-gap: 30px;
    grid-template-columns: 1.2fr;
    margin-top: 0;
  }

  .team-grid {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }

  .quick-navigation {
    grid-template-areas: ". Area Area Area"
                         "Area-2 Area-2 Area-2 .";
  }

  .home-1-title-banner {
    font-size: 60px;
  }

  .img-2-banner {
    width: 45%;
    bottom: 23%;
    right: 48%;
  }

  .base-container {
    max-width: 100%;
  }

  .banner-home {
    width: 65%;
    height: auto;
    left: 90px;
  }

  .section-2.bammer-home {
    padding-top: 140px;
    padding-bottom: 80px;
  }

  .banner-content-wrapper {
    flex-direction: column;
  }

  .cicrle-banner {
    inset: -32% -20% auto auto;
  }

  .content-banner-home-1 {
    text-align: center;
    justify-content: center;
    align-items: center;
    width: 90%;
  }

  .footer-wrapper {
    align-items: center;
  }

  .footer-brand-wrapper {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .content-wrapper-footer {
    width: 90%;
  }

  .footer-links-wrapper, .left-footer {
    width: 60%;
  }

  .form-block {
    width: 75%;
  }

  .about-wrapper {
    text-align: center;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .button-wrapper-section {
    justify-content: center;
    align-items: center;
  }

  .section-3.about-section {
    padding-bottom: 80px;
  }

  .numbers-wrapper {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    grid-template-columns: 1fr 1fr;
    width: 80%;
  }

  .woman {
    object-position: 70% 15%;
    width: 75%;
    height: 620px;
    margin-top: 50px;
    margin-bottom: 0;
  }

  .numbers {
    font-size: 54px;
  }

  .right-content-wrapper {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 75%;
    margin-top: 40px;
    display: flex;
  }

  .width-90-desctop {
    text-align: center;
  }

  .left-content {
    text-align: center;
    justify-content: center;
    align-items: center;
    width: 80%;
  }

  .left-content.left-tablet {
    text-align: center;
    align-items: center;
  }

  .about-numbers {
    font-size: 16px;
  }

  .right-title-content {
    text-align: center;
    width: 100%;
  }

  .section-4.light-with-img-bottom {
    padding-top: 100px;
  }

  .title-big-wrapper {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 75%;
    margin-left: auto;
    margin-right: auto;
  }

  .service-name._w-20 {
    width: 30%;
  }

  .section-5.light-with-img-bottom {
    padding-top: 100px;
  }

  .form-wrapper-home {
    grid-row-gap: 60px;
    flex-direction: column;
  }

  .form-block-home {
    width: 65%;
    padding: 35px;
  }

  .circles {
    bottom: -29%;
    left: -22%;
  }

  .our-team-wrapper {
    grid-column-gap: 20px;
  }

  .h3-link {
    font-size: 28px;
  }

  .title-central-wrap {
    width: 80%;
  }

  .collection-item-blog-home {
    width: 47%;
  }

  .collection-list-wrapper-blog-home {
    width: 100%;
  }

  .collection-list-blog-home {
    grid-column-gap: 30px;
    flex-flow: wrap;
    place-content: center;
    align-items: center;
  }

  ._5-cards-grid {
    grid-template: "."
                   "."
                   "."
                   / 1fr 1fr;
    grid-auto-columns: 1.5fr;
  }

  .footer-bottom-wrapper-2 {
    flex-wrap: wrap;
    align-items: flex-start;
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .nav-social-link {
    margin-left: 0;
  }

  .logo-wrapper-alt {
    background-color: #0000;
    top: 21px;
  }

  .logo-wrapper-alt.hide-on-home-about-desktop {
    display: flex;
  }

  .logo-wrapper-alt.hide-on-home-about-desktop.w--current {
    display: flex;
    top: 35px;
  }

  .hero-content-wrapper {
    text-align: center;
    align-self: center;
    align-items: center;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
    top: 0;
  }

  .steps-text-wrapper, .steps-text-wrapper.opposite {
    left: auto;
  }

  .testimonial-client-wrapper {
    grid-column-gap: 15px;
  }

  .space {
    min-height: 30px;
  }

  .space.show-on-tab {
    display: flex;
  }

  .circle-left-arrow {
    min-width: 120px;
    min-height: 120px;
    max-height: 120px;
    left: -10px;
  }

  .blog-row {
    flex-direction: column;
    justify-content: center;
  }

  .footer-social-link {
    margin-left: 0;
  }

  .locations-text-wrapper {
    max-width: 80%;
  }

  .faq-title-wrapper {
    width: 90%;
  }

  .hero-arrows {
    max-height: 15px;
  }

  .locations-slider {
    width: 600px;
    max-width: 600px;
    height: 380px;
    max-height: 380px;
  }

  .features-card-wrapper {
    max-width: 100%;
  }

  .blog-card-wrapper {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .interactive-image-wrapper.wide-image {
    height: 400px;
  }

  .hero-image-slide-2 {
    min-height: 100vh;
    padding-left: 15px;
    padding-right: 15px;
  }

  .row-content {
    flex-direction: column;
    justify-content: center;
  }

  .hero-image-slide-1 {
    min-height: 100vh;
    padding-left: 15px;
    padding-right: 15px;
  }

  .listings-cms-wrapper {
    grid-template-columns: 1fr;
    justify-content: center;
  }

  .features-image-wrapper-1 {
    min-width: 0;
    max-width: none;
  }

  .numbers-card {
    margin-top: 30px;
    margin-bottom: 0;
  }

  .space-large {
    min-height: 120px;
  }

  .circle-right-arrow {
    min-width: 120px;
    min-height: 120px;
    max-height: 120px;
    right: -10px;
  }

  .image-locations {
    max-height: 380px;
  }

  .locations-wrapper {
    flex-direction: column;
    justify-content: center;
    padding-left: 0;
  }

  .title-wrapper {
    width: 90%;
  }

  .wrapper-quarter {
    max-width: 50%;
  }

  .point-213a {
    top: 30%;
  }

  .hero-description {
    text-align: center;
    max-width: 500px;
    font-size: 21px;
  }

  .nav-menu-icon {
    color: #f8f8f8;
    font-size: 30px;
  }

  .cart-nav-wrapper, .nav-bar-container {
    align-items: center;
    display: flex;
  }

  .nav-bar-container.home-about-desktop {
    background-color: #111b37;
  }

  .faq-dropdown-title {
    max-width: 400px;
    padding-right: 0;
  }

  .footer-bottom-text {
    font-size: 1rem;
  }

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

  .nav-menu {
    flex-flow: column wrap;
    justify-content: space-between;
    align-items: center;
    padding-top: 10%;
    padding-bottom: 4%;
    padding-left: 0;
    display: flex;
  }

  .fixed-form-wrapper {
    padding-top: 20px;
  }

  .container-wrapper {
    order: 1;
  }

  .preloader-wrapper {
    display: none;
  }

  .numbers-row-count {
    flex-wrap: wrap;
    justify-content: center;
  }

  .point-215b {
    top: 18%;
  }

  .nav-menu-link {
    padding-left: 5px;
    padding-right: 5px;
    font-size: 16px;
  }

  .nav-menu-link.w--current {
    font-size: 16px;
  }

  .video-background-wrapper {
    padding-left: 60px;
    padding-right: 60px;
  }

  .nav-dash-line {
    display: none;
  }

  .footer-text-wrapper {
    max-width: 728px;
  }

  .main-wrapper-landing.banner {
    padding-top: 50px;
  }

  .locations-card {
    max-height: 380px;
  }

  .footer-content-wrapper {
    width: 100%;
    padding-bottom: 15%;
  }

  .nav-menu-button {
    z-index: 5;
    padding: 12px;
  }

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

  .tabs-menu {
    margin-top: 15px;
  }

  .office-tabs-grid {
    flex-direction: column-reverse;
    width: 80%;
    display: flex;
  }

  .nav-bar-wrapper {
    margin-top: 0;
    padding-right: 30px;
  }

  .footer-link {
    padding-top: 0%;
  }

  .flex-features-image.reverse-images-on-tab {
    flex-direction: row-reverse;
  }

  .footer-text {
    padding-top: 0%;
  }

  .sliderhero {
    margin-left: 0;
  }

  .features-text-wrapper {
    width: 90%;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
  }

  .features-text-wrapper.align-right.fade-in-animation, .features-text-wrapper.fade-in-animation {
    justify-content: center;
    align-items: center;
  }

  .faq-row {
    width: 100%;
    max-width: 100%;
  }

  .faq-content-wrapper {
    width: 90%;
  }

  .hero-sidebar {
    display: none;
  }

  .list-item-wrapper {
    padding-top: 2%;
    padding-bottom: 2%;
  }

  .cta-text-wrapper {
    padding-left: 60px;
    bottom: 0;
    left: 0;
  }

  .cta-wrapper {
    grid-column-gap: 15px;
  }

  .features-image-wrapper {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .count-flex-block {
    align-self: flex-start;
    padding-top: 0;
  }

  .seperator-wrapper {
    width: 90%;
  }

  .nav-menu-wrapper {
    background-color: #111b37;
    padding-top: 5%;
    position: fixed;
    inset: 0%;
  }

  .footer-social-links-wrapper {
    display: flex;
  }

  .features-main-wrapper {
    grid-column-gap: 60px;
  }

  .image-steps-wrapper {
    min-width: 480px;
    max-width: 480px;
  }

  .point-213b {
    top: 3%;
  }

  .footer-flex-wrapper {
    flex-flow: column wrap;
    padding-bottom: 8%;
  }

  .footer-bottom-flex {
    grid-column-gap: 16px;
    grid-row-gap: 10px;
    flex-flow: column wrap;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: space-between;
    place-items: center;
    display: grid;
  }
}

@media screen and (max-width: 767px) {
  .text-full {
    color: var(--primary-orange);
    display: none;
  }

  .cart-container {
    max-width: 480px;
  }

  .ceo-grid {
    align-items: stretch;
    max-width: 100%;
  }

  .text-field-gray {
    text-align: left;
    margin-right: 0;
  }

  .footer-logo-link {
    margin-bottom: 1.5rem;
    padding-left: 0;
  }

  .project-circle {
    width: 90px;
    height: 90px;
  }

  .tower {
    width: 380px;
  }

  .footer-main-grid {
    flex-direction: column-reverse;
    align-items: stretch;
    display: flex;
  }

  .hero {
    padding-top: 233px;
  }

  .footer-link-main:hover {
    color: #667085;
  }

  .footer-grid-2 {
    grid-column-gap: 1.5rem;
  }

  .navigation-items {
    align-items: center;
  }

  .years-experience {
    font-size: 60vw;
  }

  .subhead-first.main {
    font-size: 29px;
    line-height: 1.3;
  }

  .footer-left-wrapper {
    max-width: 90%;
  }

  .sticky-top {
    position: relative;
    top: 0;
  }

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

  .form-single {
    flex-direction: row;
  }

  .menu-big {
    flex-direction: column;
    align-items: stretch;
    display: none;
  }

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

  .section.for-cta {
    min-height: 400px;
  }

  .display-2.for-fade {
    font-size: 40px;
  }

  .cart {
    min-height: auto;
  }

  .text-rotator {
    font-size: 75px;
  }

  .text-rotator.smaller {
    font-size: 47px;
  }

  .grid-about.project {
    flex-direction: column;
    padding-right: 20px;
    display: flex;
  }

  .nav-text-wrapper {
    height: auto;
  }

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

  .logo-flex {
    grid-column-gap: 48px;
    grid-row-gap: 48px;
  }

  .hero-2.for-inner {
    background-image: none;
    padding-top: 120px;
    padding-bottom: 120px;
  }

  .display-1 {
    font-size: 60px;
  }

  .display-1.for-inner {
    font-size: 70px;
  }

  .project-grid-main {
    grid-row-gap: 30px;
    flex-direction: column;
    display: flex;
  }

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

  .text-rotator-2 {
    font-size: 75px;
  }

  .text-rotator-3 {
    margin-left: -20%;
    font-size: 75px;
  }

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

  .label {
    max-width: 95%;
  }

  .form-grid {
    grid-column-gap: 18px;
    grid-row-gap: 18px;
    grid-template-columns: 1fr;
  }

  .mgtop40px {
    margin-top: 40px;
  }

  .div-block-3 {
    grid-template-columns: 1fr;
  }

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

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

  .home-1-title-banner {
    font-size: 48px;
  }

  .img-2-banner, .img-2-banner.home-1 {
    bottom: 20%;
    right: 42%;
  }

  .section-2 {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .section-2.bammer-home {
    padding-top: 120px;
  }

  .banner-content-wrapper {
    grid-row-gap: 40px;
  }

  .cicrle-banner {
    width: 400px;
    height: 400px;
    top: -12%;
    right: -42%;
  }

  .buttom-banner-wrapper {
    margin-top: 40px;
  }

  .buttom-banner-wrapper.margin-top-20-mobile {
    margin-top: 20px;
  }

  .footer-wrapper {
    grid-column-gap: 0px;
    grid-row-gap: 30px;
    flex-direction: column;
    justify-content: center;
  }

  .content-wrapper-footer {
    width: 100%;
  }

  .footer-copyright-2 {
    line-height: 1.5em;
  }

  .footer-social-icons-wrapper-2 {
    width: 100%;
  }

  .footer-links-wrapper {
    width: 85%;
  }

  .left-footer, .right-footer {
    justify-content: center;
    align-items: center;
  }

  .footer-bottom-wrapper {
    grid-row-gap: 40px;
    flex-wrap: wrap-reverse;
    justify-content: center;
  }

  .form-block {
    width: 100%;
  }

  .section-3 {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .section-3.about-section {
    padding-bottom: 60px;
  }

  .numbers-wrapper {
    margin-top: 40px;
  }

  .woman {
    width: 85%;
    margin-top: 30px;
    margin-bottom: 0;
  }

  .numbers {
    margin-bottom: 5px;
  }

  .right-content-wrapper {
    text-align: center;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  .width-90-desctop {
    text-align: center;
    width: 85%;
  }

  .left-content, .left-content.left-tablet {
    width: 100%;
  }

  .section-4 {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .section-4.light-with-img-bottom {
    padding-top: 60px;
  }

  .title-big-wrapper {
    width: 85%;
    margin-bottom: 40px;
  }

  .arrow-services {
    flex-direction: row;
  }

  .service-name._w-20 {
    width: 40%;
  }

  .services {
    width: 45%;
  }

  .arrow-services-2 {
    flex-direction: row;
  }

  .section-5 {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .section-5.light-with-img-bottom {
    padding-top: 60px;
  }

  .form-wrapper-home {
    grid-row-gap: 40px;
  }

  .form-block-home {
    width: 100%;
  }

  .secondary-team {
    padding-top: 0;
  }

  .circles {
    display: none;
    bottom: -16%;
  }

  .third-team {
    padding-top: 0;
  }

  .our-team-wrapper {
    grid-row-gap: 40px;
    grid-template-columns: 1fr;
  }

  .workflow-wrapper {
    flex-wrap: wrap;
    height: 450px;
  }

  .workflow-video-wrapper {
    width: 100%;
  }

  .background-video {
    height: 450px;
  }

  .title-central-wrap, .collection-list-wrapper-blog-home {
    width: 100%;
  }

  ._5-cards-grid {
    grid-template: "."
                   "."
                   "."
                   "."
                   / 1fr 1fr;
  }

  .footer-bottom-wrapper-2 {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }

  .logo-wrapper-alt.hide-on-home-about-desktop.w--current {
    top: 30px;
  }

  .hero-content-wrapper {
    text-align: center;
    align-items: center;
    max-width: 85%;
    top: -30px;
  }

  .steps-text-wrapper {
    grid-row-gap: 15px;
    flex-direction: column;
  }

  .steps-text-wrapper.opposite {
    flex-direction: column;
  }

  .circle-left-arrow {
    display: none;
  }

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

  .footer-links-text {
    flex-wrap: wrap;
  }

  .line-vertical-separator {
    order: -1;
  }

  .banner-content {
    justify-content: flex-start;
    align-items: center;
    margin-left: 0;
    margin-right: 1rem;
  }

  .locations-slider {
    width: 520px;
    max-width: 520px;
    height: 330px;
    max-height: 330px;
    margin-left: auto;
    margin-right: auto;
  }

  .features-card-wrapper {
    grid-row-gap: 10px;
  }

  .interactive-image-wrapper.wide-image {
    height: 400px;
    max-height: none;
  }

  .background-video-2 {
    min-height: 50vh;
    max-height: 50vh;
  }

  .banner-content-wrapper-2 {
    align-items: center;
  }

  .listings-cms-wrapper {
    justify-content: center;
  }

  .circle-right-arrow {
    display: none;
  }

  .locations-right-arrow {
    right: 86%;
  }

  .image-locations {
    max-height: 330px;
  }

  .locations-wrapper {
    width: 100%;
  }

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

  .wrapper-quarter {
    width: 100%;
    max-width: 100%;
  }

  .nav-menu-icon {
    font-size: 28px;
  }

  .text-block-86 {
    display: block;
  }

  .faq-dropdown-title {
    max-width: 275px;
  }

  .title-field-wrapper {
    margin-bottom: 15px;
  }

  .nav-menu {
    flex-direction: column;
    padding-bottom: 30px;
    padding-left: 0;
  }

  .fixed-form-wrapper {
    padding-top: 20px;
    box-shadow: 7px 7px 30px -10px #0000004d;
  }

  .numbers-row-count {
    flex-direction: column;
    width: 100%;
  }

  .fixed-contact-form {
    box-shadow: none;
    overflow: visible;
  }

  .nav-menu-link {
    padding-top: 10px;
    padding-bottom: 10px;
    display: inline-block;
  }

  .video-background-wrapper {
    min-height: 50vh;
    max-height: 50vh;
  }

  .banner-close-button {
    margin-left: 0;
  }

  .locations-card {
    max-height: 330px;
  }

  .numbers-card-body {
    margin-left: auto;
  }

  .footer-logo-link-2 {
    padding-top: 0%;
  }

  .office-tabs-grid {
    width: 100%;
  }

  .fixed-form-tab {
    background-color: #22a45a;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    box-shadow: 7px -7px 20px #0000001a;
  }

  .fixed-form-tab.kostoliste {
    background-image: none;
    background-position: 21px;
    background-repeat: no-repeat;
    background-size: 30px;
  }

  .locations-nav {
    z-index: 99;
    width: 100%;
    height: 100px;
    inset: auto auto 0% 0%;
  }

  .page-padding {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .features-text-wrapper.align-right.fade-in-animation, .features-text-wrapper.fade-in-animation {
    text-align: center;
  }

  .locations-title-wrapper {
    padding-left: 45px;
  }

  .list-item-wrapper {
    padding-top: 0%;
    padding-bottom: 0%;
  }

  .cta-text-wrapper {
    text-align: center;
    align-items: center;
    padding-left: 60px;
    padding-right: 60px;
  }

  .cta-text-wrapper.fade-in-animation {
    min-width: 0;
  }

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

  .features-image-wrapper {
    margin-left: 0;
    margin-right: 0;
  }

  .seperator-wrapper {
    width: 100%;
  }

  .nav-menu-wrapper {
    padding-top: 2%;
  }

  .point-214b {
    top: 55%;
    left: 57%;
  }

  .footer-social-links-wrapper {
    margin-top: 10px;
  }

  .image-steps-wrapper {
    min-width: 300px;
    max-width: 300px;
  }

  .footer-bottom-flex {
    justify-items: start;
  }
}

@media screen and (max-width: 479px) {
  .navigation-main {
    grid-template-columns: 1fr 1fr;
    padding: 4px 2% 4px 3%;
  }

  .cart-number {
    font-size: 12px;
  }

  .ceo-grid {
    max-width: 100%;
  }

  .footer {
    padding-top: 50px;
  }

  .text-field-gray {
    text-align: left;
    margin-bottom: 0;
    padding-left: 20px;
  }

  .text-gray {
    width: 30px;
    height: 30px;
    font-size: 12px;
    top: -1px;
  }

  .button-cart {
    margin-bottom: 7px;
  }

  .project-circle {
    width: 100px;
    height: 100px;
  }

  .photo-main.bacgrkound-video {
    min-height: 350px;
  }

  .divider-icon {
    margin-left: 10px;
    margin-right: 10px;
  }

  .tower {
    width: 260px;
  }

  .product-title {
    font-size: 16px;
  }

  .image-small-product {
    margin-bottom: 20px;
  }

  .footer-main-grid {
    grid-row-gap: 48px;
  }

  .button-with-animation.white {
    text-align: center;
  }

  .circle-absolute.hide {
    display: none;
  }

  .hero {
    padding-top: 141px;
    padding-bottom: 140px;
  }

  .scroll-down-wrapper {
    bottom: 30px;
  }

  .cart-quantity-first {
    font-size: 13px;
  }

  .remove-pop-up {
    top: 10px;
    right: 10px;
  }

  .view-project.w--current {
    width: 60px;
    height: 60px;
  }

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

  .footer-grid-2 {
    grid-row-gap: 2.5rem;
    grid-template-columns: 1fr;
  }

  .logo {
    width: 100px;
  }

  .subhead-center, .subhead-first {
    max-width: 100%;
    font-size: 22px;
  }

  .subhead-first.main {
    font-size: 23px;
  }

  .subscribe-form {
    width: 100%;
  }

  .view-work {
    width: 150px;
    height: 150px;
    font-size: 46px;
  }

  .text-line {
    font-size: 46px;
  }

  .form-single {
    align-items: center;
  }

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

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

  .section.for-cta {
    min-height: 300px;
  }

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

  .display-2 {
    font-size: 34px;
  }

  .display-2.for-fade {
    font-size: 24px;
  }

  .text-rotator.smaller {
    font-size: 27px;
  }

  .grid-about {
    grid-row-gap: 20px;
  }

  .grid-about.reverse {
    grid-row-gap: 50px;
  }

  .grid-about.project {
    grid-row-gap: 50px;
    padding-right: 20px;
  }

  .hamburger-text {
    font-size: 14px;
  }

  .hamburger-flex {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
  }

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

  .hero-2 {
    padding-top: 141px;
    padding-bottom: 159px;
  }

  .hero-2.for-inner {
    padding-top: 120px;
    padding-bottom: 120px;
  }

  .display-1 {
    font-size: 41px;
  }

  .display-1.for-inner {
    font-size: 49px;
  }

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

  .uppercase {
    font-size: 15px;
  }

  .info-flex {
    padding-left: 16px;
    padding-right: 16px;
  }

  .info-content {
    grid-column-gap: 15px;
    text-align: left;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .paragraph {
    font-weight: 400;
    line-height: 26px;
  }

  .text-rotator-2 {
    margin-left: 2%;
    font-size: 55px;
  }

  .text-rotator-3 {
    margin-left: -40%;
    font-size: 55px;
  }

  .text-rotator-3.top {
    margin-left: 20%;
  }

  .contact-form-left-side {
    padding-left: 0;
    padding-right: 0;
  }

  .contact-link-main {
    font-size: 16px;
    line-height: 26px;
  }

  .contact-details-flex {
    flex-direction: column;
    align-items: flex-start;
  }

  .label {
    font-size: 24px;
    line-height: 28px;
  }

  .contact-form-right-side {
    padding: 48px 24px;
  }

  .input {
    min-height: 54px;
    padding-left: 18px;
    padding-right: 18px;
  }

  .input::placeholder {
    font-size: 16px;
    line-height: 16px;
  }

  .text-area {
    padding-left: 18px;
    padding-right: 18px;
  }

  .text-area::placeholder {
    font-size: 16px;
    line-height: 24px;
  }

  .mgtop40px {
    margin-top: 40px;
  }

  .div-block-3 {
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 20px;
  }

  .margin-150px {
    margin-top: 100px;
  }

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

  .card-of-navigation {
    min-height: 250px;
  }

  .quick-navigation {
    grid-template-columns: 1fr;
    grid-template-areas: ".";
  }

  .home-1-title-banner {
    font-size: 38px;
    line-height: 42px;
  }

  .img-2-banner {
    bottom: 17%;
    right: 50%;
  }

  .img-2-banner.home-1 {
    bottom: 24%;
    right: 50%;
  }

  .banner-home {
    width: 85%;
    left: 10px;
  }

  .cicrle-banner {
    top: -18%;
  }

  .content-banner-home-1 {
    width: 100%;
  }

  .footer-brand-wrapper {
    flex-direction: column;
    width: auto;
  }

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

  .footer-copyright-2 {
    text-align: center;
    justify-content: center;
    width: 100%;
    line-height: 1.6em;
  }

  .footer-rights-2 {
    text-align: center;
    line-height: 1.6em;
  }

  .footer-social-wrapper {
    width: 100%;
  }

  .footer-social-icons-wrapper-2 {
    justify-content: center;
  }

  .footer-2 {
    text-align: left;
  }

  .footer-links-wrapper {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .footer-copyright-link {
    margin-left: 5px;
  }

  .left-footer, .right-footer {
    width: 100%;
  }

  .button-wrapper-section {
    margin-top: 40px;
  }

  .numbers-wrapper {
    width: 100%;
  }

  .woman {
    width: 100%;
    height: 450px;
  }

  .title-big-wrapper {
    width: 100%;
    margin-bottom: 40px;
  }

  .service-name._w-20 {
    width: 100%;
    margin-bottom: 20px;
  }

  .services {
    width: 100%;
    display: block;
  }

  .arrow-services-2 {
    flex-flow: column;
  }

  .section-5.img-background.hide {
    display: none;
  }

  .field-wrapper {
    flex-direction: column;
  }

  .form-block-home {
    width: 100%;
    min-height: 502px;
    padding: 20px;
  }

  .workflow-wrapper.hide {
    display: none;
  }

  .collection-item-blog-home {
    width: 100%;
  }

  .collection-list-blog-home {
    flex-flow: column;
  }

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

  .sidebar__category-badge {
    margin-bottom: -15px;
    margin-left: 2px;
    margin-right: 0;
    inset: auto auto 0% 0%;
  }

  .footer-bottom-wrapper-2 {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .logo-image.half-size {
    max-width: none;
    max-height: 30px;
  }

  .logo-wrapper-alt {
    top: 26px;
    left: 10%;
  }

  .logo-wrapper-alt.hide-on-home-about-desktop.w--current {
    top: 25px;
  }

  .hero-content-wrapper {
    align-items: center;
    max-width: 100%;
    margin-top: 120px;
    padding-left: 30px;
    padding-right: 30px;
  }

  .testimonial-client-wrapper {
    grid-row-gap: 15px;
    flex-flow: column wrap;
    justify-content: center;
    align-self: center;
    align-items: center;
  }

  .features-image-1 {
    min-width: 260px;
    max-width: 260px;
    min-height: 260px;
    max-height: 260px;
  }

  .steps-real-estate-wrapper {
    padding-left: 0;
    padding-right: 0;
  }

  .space-mid {
    min-height: 60px;
  }

  .button-flex {
    justify-content: space-around;
    align-items: center;
    margin-top: 10px;
    padding-bottom: 10px;
  }

  .footer-links-text {
    text-align: center;
    place-content: flex-start space-around;
    align-items: center;
  }

  .locations-text-wrapper {
    grid-row-gap: 15px;
    text-align: center;
    align-items: center;
    max-width: 100%;
    padding-left: 5%;
    padding-right: 5%;
  }

  .faq-title-wrapper {
    padding-left: 0;
    padding-right: 0;
  }

  .testimonial-flex {
    justify-content: space-around;
    align-items: center;
    margin-top: 10px;
    padding-bottom: 10px;
  }

  .listing-name {
    font-size: 16px;
  }

  .point-214a {
    width: 50px;
    height: 50px;
    top: 70%;
    left: 50%;
  }

  .locations-slider {
    width: 100%;
    max-width: 100%;
    height: 620px;
    max-height: 620px;
  }

  .steps-feature-wrapper-copy {
    display: none;
  }

  .features-card-wrapper {
    padding-left: 0;
    padding-right: 0;
  }

  .interactive-image-wrapper.wide-image {
    width: 110%;
    height: 300px;
    max-height: none;
    left: -5%;
  }

  .hero-image-slide-2 {
    min-height: 110vh;
    padding-left: 30px;
    padding-right: 30px;
  }

  .sidebar__location-info {
    width: 100%;
  }

  .listing-text-wrapper {
    padding-bottom: 15px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .hero-image-slide-1 {
    min-height: 110vh;
    padding-left: 30px;
    padding-right: 30px;
  }

  .listings-cms-wrapper {
    padding-left: 20px;
    padding-right: 20px;
  }

  .space-large {
    min-height: 90px;
  }

  .locations-title, .booking-text-field-ghost {
    align-self: center;
  }

  .locations-amount {
    align-self: flex-start;
  }

  .flex-footer {
    justify-content: space-around;
    align-items: center;
    margin-top: 10px;
    padding-bottom: 10px;
  }

  .testimonial-info-wrapper {
    margin-left: 0;
  }

  .locations-right-arrow {
    display: none;
  }

  .image-locations {
    width: 90%;
  }

  .title-wrapper {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }

  .steps-feature-wrapper {
    display: none;
  }

  .sidebar {
    max-width: 220px;
    padding: .5rem;
  }

  .listing-flex {
    justify-content: space-around;
    align-items: center;
  }

  .point-213a {
    width: 50px;
    height: 50px;
  }

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

  .faq-flex {
    justify-content: space-around;
    align-items: center;
    margin-top: 10px;
    padding-bottom: 10px;
  }

  .nav-menu-icon {
    font-size: 30px;
  }

  .sidebar__location-card {
    flex-direction: column;
    padding-bottom: .8rem;
  }

  .sidebar__location-card:hover {
    border-radius: 16px;
  }

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

  .nav-bar-container {
    min-height: 80px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .popup-info {
    width: 100%;
  }

  .faq-dropdown-title {
    max-width: 115px;
  }

  .title-field-wrapper {
    flex-direction: column;
    justify-content: center;
    align-self: flex-start;
    align-items: flex-start;
    width: 100%;
  }

  .footer-bottom-text {
    white-space: normal;
    flex-flow: column wrap;
    place-content: center;
    align-items: center;
    width: 80%;
    display: flex;
  }

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

  .nav-menu {
    flex-direction: column;
    padding-top: 15%;
    position: relative;
  }

  .fixed-form-wrapper {
    padding-top: 20px;
  }

  .sidebar__location-img {
    border-radius: 8px;
    width: 100%;
    height: 100%;
  }

  .hero-main-wrapper {
    min-height: 110vh;
  }

  .maps-demo-wrapper {
    margin: 0 10px;
  }

  .popup-title {
    font-size: 15px;
    font-weight: 600;
  }

  .testimonial-text-wrapper {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .point-215b {
    width: 50px;
    height: 50px;
    top: 26%;
    left: 80%;
  }

  .fixed-contact-form {
    width: auto;
    margin-left: 10px;
    margin-right: 10px;
    display: none;
    bottom: 0;
    left: 0;
    right: 0;
    overflow: visible;
  }

  .sidebar__location-title {
    font-size: 15px;
    font-weight: 600;
  }

  .video-background-wrapper {
    padding-left: 0;
    padding-right: 0;
  }

  .footer-text-wrapper {
    max-width: none;
  }

  .main-wrapper-landing {
    width: 100%;
  }

  .main-wrapper-landing.banner {
    padding-top: 70px;
  }

  .stars-wrapper {
    margin-left: auto;
    margin-right: auto;
  }

  .locations-card {
    flex-direction: column;
    max-height: 620px;
  }

  .footer-text-flex {
    text-align: center;
    flex-flow: column wrap;
    justify-content: center;
    align-self: center;
    align-items: center;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }

  .tab-panel {
    text-align: center;
    padding-left: 30px;
    padding-right: 30px;
  }

  .flex {
    justify-content: space-around;
    align-items: center;
    margin-top: 10px;
    padding-bottom: 10px;
  }

  .flex.align-center-justify-center {
    grid-row-gap: 3px;
    margin-top: 0;
    padding-bottom: 0;
  }

  .flex.align-center-justify-center.gap-15px.wrap {
    grid-row-gap: 5px;
    white-space: normal;
  }

  .location-image-wrapper {
    width: 100%;
    height: 110px;
  }

  .sidebar__location-address {
    font-size: 13px;
  }

  .footer-logo-link-2 {
    justify-content: center;
    display: flex;
  }

  .footer-logo-link-2.w--current {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .footer-content-wrapper {
    justify-content: center;
    align-items: center;
  }

  .testimonial-image-wrapper {
    flex-direction: column;
    justify-content: center;
    width: 100%;
  }

  .nav-menu-button {
    margin-right: 15px;
  }

  .icon-main {
    max-width: 100%;
  }

  .locations-left-arrow {
    display: none;
  }

  .fixed-form-tab {
    opacity: 1;
    background-color: #22a45a;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    width: 100%;
    padding-left: 55px;
    box-shadow: 7px -7px 20px #0000001a;
  }

  .fixed-form-tab.kostoliste {
    background-position: 21px;
  }

  .line-separator {
    min-width: 200px;
    max-width: 200px;
    display: none;
  }

  .nav-bar-wrapper {
    padding-right: 0;
  }

  .footer-link {
    text-align: center;
    font-size: 1em;
  }

  .locations-nav {
    display: block;
    position: relative;
    top: 15px;
    bottom: auto;
    left: auto;
  }

  .blog-title-wrapper {
    text-align: center;
  }

  .footer-text {
    text-align: center;
    font-size: 1em;
  }

  .features-text-wrapper {
    text-align: center;
    align-items: center;
  }

  .features-text-wrapper.align-right {
    align-items: center;
  }

  .subheading-flex {
    justify-content: space-around;
    align-items: center;
    margin-top: 10px;
    padding-bottom: 10px;
  }

  .point-215a {
    width: 50px;
    height: 50px;
    top: 35%;
    left: 65%;
  }

  .section-6 {
    overflow: hidden;
  }

  .phone-block {
    width: auto;
  }

  .faq-row {
    width: 90%;
    max-width: 90%;
  }

  .faq-content-wrapper {
    padding-left: 0;
    padding-right: 0;
  }

  .footer-links-wrapper-2 {
    flex-direction: column;
    grid-template: "."
    / 1fr 1fr;
    align-items: center;
    display: flex;
  }

  .locations-title-wrapper {
    text-align: center;
    align-items: center;
    padding-top: 30px;
    padding-left: 0;
  }

  .list-item-wrapper {
    padding-top: 2%;
    padding-bottom: 2%;
  }

  .cta-text-wrapper {
    padding-left: 30px;
    padding-right: 30px;
  }

  .cta-text-wrapper.fade-in-animation {
    min-width: 0;
  }

  .footer-links-title {
    text-align: center;
    font-size: 1.2rem;
  }

  .cta-wrapper {
    justify-content: space-around;
    align-items: center;
    margin-top: 10px;
    padding-bottom: 10px;
  }

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

  .seperator-wrapper, .wrapper-full {
    padding-left: 0;
    padding-right: 0;
  }

  .highlighter-border:hover {
    border-radius: 28px;
  }

  .nav-menu-wrapper {
    padding-top: 15%;
  }

  .point-214b {
    width: 50px;
    height: 50px;
    inset: 55% 35% 35% 60%;
  }

  .centered-on-mobile-small {
    text-align: center;
  }

  .footer-social-links-wrapper {
    justify-content: space-between;
  }

  .testimonial-tab {
    flex-direction: column;
  }

  .point-213b {
    width: 50px;
    height: 50px;
    top: 10%;
  }

  .footer-flex-wrapper {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .popup-address {
    font-size: 13px;
  }

  .footer-bottom-flex {
    grid-row-gap: 15px;
    flex-direction: column;
    grid-template-columns: 1fr;
  }

  .testimonials-wrapper {
    padding-left: 30px;
    padding-right: 30px;
  }

  .testimonial-icon.invert {
    display: none;
  }
}

#w-node-defe6a62-0ee6-4f01-b539-9938d025e11b-7ab74f4c, #w-node-_26630b55-c4c6-2ff4-a839-6dafd71990f1-7ab74f4c {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_16b0fe91-a6f2-d53d-e809-74d0c75bc1cc-7ab74f4c {
  grid-area: Area;
}

#w-node-_1cc85d51-5de4-d850-8c01-f9d4c38da80c-7ab74f4c {
  grid-area: Area-2;
}

#w-node-_880f4dbb-b9af-68e5-d3b6-c6a0a87a5762-7ab74f4c, #w-node-_880f4dbb-b9af-68e5-d3b6-c6a0a87a5768-7ab74f4c, #w-node-_880f4dbb-b9af-68e5-d3b6-c6a0a87a57da-7ab74f4c, #w-node-_880f4dbb-b9af-68e5-d3b6-c6a0a87a57ea-7ab74f4c, #w-node-bcc200b2-8d57-7251-0ac4-d7f6462adc0f-462adbfa, #w-node-d2f33e18-3947-a7f5-4529-a46ca935c278-462adbfa {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-d98edbe5-34a2-410a-941b-58863f95e1be-3f95e1bc {
  justify-self: start;
}

#w-node-d98edbe5-34a2-410a-941b-58863f95e1c1-3f95e1bc {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: end;
}

#w-node-_68953b5a-da59-56a2-429c-a33bd7bdc226-75017e99, #w-node-_68953b5a-da59-56a2-429c-a33bd7bdc226-35fb71e7 {
  place-self: auto;
}

#w-node-_8df979f0-accb-13bf-418e-0530cfc47668-cfc47666 {
  justify-self: start;
}

#w-node-_8df979f0-accb-13bf-418e-0530cfc4766b-cfc47666 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: end;
}

#w-node-_85cfd4cf-5590-696c-150d-806bf15f1eda-49769d0f, #w-node-_09fb3293-608a-8cb4-6754-a91c7da92abe-49769d0f, #w-node-_695ee298-2107-25ec-9953-6840d9181134-49769d0f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_68953b5a-da59-56a2-429c-a33bd7bdc226-bcd293f1 {
  place-self: auto;
}

#w-node-_04ebcf44-8235-b152-acbe-d409427747a0-9750cfd9, #w-node-_04ebcf44-8235-b152-acbe-d409427747a7-9750cfd9, #w-node-_04ebcf44-8235-b152-acbe-d409427747ae-9750cfd9, #w-node-_04ebcf44-8235-b152-acbe-d409427747b5-9750cfd9 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-a7f5c6c0-554a-c33e-7ed6-dd9ea0346504-9750cfd9 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-a7f5c6c0-554a-c33e-7ed6-dd9ea034651d-9750cfd9 {
  grid-area: span 1 / span 5 / span 1 / span 5;
}

#w-node-a7f5c6c0-554a-c33e-7ed6-dd9ea0346536-9750cfd9 {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-a7f5c6c0-554a-c33e-7ed6-dd9ea034654f-9750cfd9, #w-node-a7f5c6c0-554a-c33e-7ed6-dd9ea0346568-9750cfd9 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#house-map.w-node-_84295426-df2f-93d3-7b9f-8fa311e04549-3039d83e {
  grid-area: 1 / 1 / 3 / 2;
}

#w-node-_84295426-df2f-93d3-7b9f-8fa311e0464f-3039d83e, #w-node-_84295426-df2f-93d3-7b9f-8fa311e0476f-3039d83e {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_84295426-df2f-93d3-7b9f-8fa311e04795-3039d83e {
  grid-area: 1 / 1 / 2 / 2;
  justify-self: start;
}

#w-node-_84295426-df2f-93d3-7b9f-8fa311e047ab-3039d83e {
  grid-area: 1 / 2 / 2 / 3;
}

@media screen and (min-width: 1440px) {
  #w-node-_25182ebd-bfe5-0c86-57dc-8c703955fba9-3955fb91, #w-node-_9d41b444-51d0-892c-ac35-3f7f6b4692f5-bcd293f1, #w-node-f6926400-e552-7801-a55b-298d9df6bbf7-bcd293f1 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}

@media screen and (max-width: 991px) {
  #w-node-a7f5c6c0-554a-c33e-7ed6-dd9ea0346504-9750cfd9, #w-node-a7f5c6c0-554a-c33e-7ed6-dd9ea034651d-9750cfd9, #w-node-a7f5c6c0-554a-c33e-7ed6-dd9ea0346536-9750cfd9, #w-node-a7f5c6c0-554a-c33e-7ed6-dd9ea034654f-9750cfd9 {
    grid-column: span 1 / span 1;
  }

  #w-node-a7f5c6c0-554a-c33e-7ed6-dd9ea0346568-9750cfd9 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_16b0fe91-a6f2-d53d-e809-74d0c75bc1cc-7ab74f4c {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-_1cc85d51-5de4-d850-8c01-f9d4c38da80c-7ab74f4c {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-d98edbe5-34a2-410a-941b-58863f95e1be-3f95e1bc, #w-node-_8df979f0-accb-13bf-418e-0530cfc47668-cfc47666 {
    justify-self: start;
  }

  #w-node-a7f5c6c0-554a-c33e-7ed6-dd9ea0346568-9750cfd9 {
    grid-column: span 1 / span 1;
  }
}


@font-face {
  font-family: 'Pt Root Ui';
  src: url('../fonts/pt-root-ui_light.woff2') format('woff2'), url('../fonts/pt-root-ui_light.woff') format('woff'), url('../fonts/pt-root-ui_light.ttf') format('truetype'), url('../fonts/pt-root-ui_light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Pt Root Ui';
  src: url('../fonts/pt-root-ui_medium.woff2') format('woff2'), url('../fonts/pt-root-ui_medium.woff') format('woff'), url('../fonts/pt-root-ui_medium.ttf') format('truetype'), url('../fonts/pt-root-ui_medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Pt Root Ui';
  src: url('../fonts/pt-root-ui_regular.woff2') format('woff2'), url('../fonts/pt-root-ui_regular.woff') format('woff'), url('../fonts/pt-root-ui_regular.ttf') format('truetype'), url('../fonts/pt-root-ui_regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Pt Root Ui';
  src: url('../fonts/pt-root-ui_bold.woff2') format('woff2'), url('../fonts/pt-root-ui_bold.woff') format('woff'), url('../fonts/pt-root-ui_bold.ttf') format('truetype'), url('../fonts/pt-root-ui_bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}