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

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

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

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

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

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

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

:root {
  --white: #fff;
  --black: black;
  --primary: #161b1e;
  --secondary: grey;
  --third: #fcfcfc;
  --transparent: #fff0;
}

.w-checkbox {
  margin-bottom: 5px;
  padding-left: 20px;
  display: block;
}

.w-checkbox:before {
  content: " ";
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox:after {
  content: " ";
  clear: both;
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox-input {
  float: left;
  margin: 4px 0 0 -20px;
  line-height: normal;
}

.w-checkbox-input--inputType-custom {
  border: 1px solid #ccc;
  border-radius: 2px;
  width: 12px;
  height: 12px;
}

.w-checkbox-input--inputType-custom.w--redirected-checked {
  background-color: #3898ec;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/static/custom-checkbox-checkmark.589d534424.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-color: #3898ec;
}

.w-checkbox-input--inputType-custom.w--redirected-focus {
  box-shadow: 0 0 3px 1px #3898ec;
}

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

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

.body {
  background-color: var(--white);
  color: var(--black);
  font-family: Open Sans, sans-serif;
}

.nav-link {
  color: var(--white);
  text-transform: uppercase;
  border-right: 1px solid #0000001a;
  padding: 15px;
  font-size: 15px;
  font-weight: 400;
  transition: all .2s ease-in-out;
}

.nav-link:hover {
  background-color: var(--primary);
  color: var(--secondary);
}

.nav-link.w--current {
  color: var(--secondary);
  background-color: #1b1b1b;
}

.nav-link.contact-nav {
  background-color: var(--secondary);
  background-image: linear-gradient(180deg, var(--secondary), var(--white) 40%, var(--white) 60%, var(--secondary));
  color: var(--black);
  padding-top: 15px;
  padding-bottom: 15px;
  transition: all .2s ease-in-out;
}

.nav-link.contact-nav:hover {
  background-color: var(--black);
}

.nav-link.contact-nav.call-btn {
  display: none;
}

.drop-downmenu {
  z-index: 100;
}

.brand {
  margin-left: 10px;
  margin-right: 10px;
}

.nav-container {
  border-radius: 5px;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}

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

.dropdown-list {
  z-index: 100;
  margin-top: 20px;
}

.dropdown-list.w--open {
  background-color: #f0f6f8;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  min-width: 240px;
  margin-top: 0;
}

.navbar {
  background-color: #161b1e;
  border-radius: 5px;
  align-items: center;
  padding-left: 0;
  padding-right: 10px;
  display: flex;
  box-shadow: 0 2px 8px #0003;
}

.drop-down-link {
  text-transform: uppercase;
  border-bottom: 1px solid #1b1b1b0d;
  border-left: 5px solid #0000;
  padding-top: 25px;
  padding-bottom: 25px;
  padding-left: 15px;
  font-weight: 400;
  transition: all .4s cubic-bezier(.645, .045, .355, 1);
}

.drop-down-link:hover {
  border-left-color: var(--secondary);
  color: #fefefe;
  background-color: #1b1b1b;
  padding-left: 25px;
}

.drop-down-link.w--current {
  border-left-color: var(--white);
  background-color: var(--black);
  color: var(--white);
}

.drop-down-link.last {
  border-bottom-color: #1b1b1b00;
}

.navigatio-bar {
  z-index: 200;
  background-color: #1b1b1b03;
  border-radius: 5px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-top: 20px;
  padding-bottom: 20px;
  position: fixed;
  inset: 0 0% auto;
  overflow: visible;
}

.dropdown-toggle {
  padding-top: 25px;
  padding-bottom: 25px;
}

.dropdown-toggle.nav-link {
  color: var(--white);
  padding-top: 15px;
  padding-bottom: 15px;
  padding-right: 30px;
}

.dropdown-toggle.nav-link:hover {
  color: var(--secondary);
}

.hero-container {
  align-items: stretch;
  width: 100%;
  height: auto;
  display: flex;
}

.hero-intro-text {
  color: var(--secondary);
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 700;
  line-height: 35px;
}

.banner-text {
  color: var(--primary);
  text-transform: none;
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.2;
}

.p {
  font-size: 16px;
  line-height: 1.75;
}

.p.light {
  color: var(--white);
}

.p.light.testimonial-text {
  color: var(--white);
  margin-top: auto;
  margin-bottom: auto;
  font-size: 1rem;
  font-weight: 300;
}

.p._20b {
  margin-bottom: 20px;
}

.hero-section {
  background-color: #fff;
  background-image: linear-gradient(#fff0, #1b1b1b91), url('../images/front-of-new-house.webp');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  justify-content: center;
  align-items: stretch;
  min-height: 100vh;
  display: flex;
}

.hero-section.small {
  min-height: 60vh;
}

.hero_btn {
  background-color: var(--secondary);
  background-image: linear-gradient(180deg, var(--secondary), var(--white) 40%, var(--white) 60%, var(--secondary));
  color: var(--primary);
  text-transform: uppercase;
  border: 1px solid #000;
  margin-top: 0;
  margin-right: 20px;
  padding: 20px 40px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
}

.hero_btn.outline-btn {
  border: 1px solid var(--secondary);
  background-color: var(--white);
  background-image: none;
  transition: all .2s ease-in-out;
}

.hero_btn.outline-btn:hover {
  background-color: var(--secondary);
  color: var(--primary);
}

.hero-card {
  border-left: 5px solid var(--secondary);
  background-color: var(--white);
  width: 100%;
  max-width: 700px;
  margin-top: 100px;
  margin-left: 5%;
  padding: 25px;
}

.hero-content {
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.services-wrapper.display-grid {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  display: grid;
}

.section-info-title {
  color: var(--primary);
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: 400;
}

.section-info-title.large-text {
  color: var(--primary);
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 10px;
  padding-right: 10px;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.5;
}

.section-info-title.light {
  color: var(--white);
}

.services-section {
  background-color: var(--white);
  padding-top: 140px;
  padding-bottom: 0;
}

.services-desc {
  color: var(--black);
  font-size: 1rem;
  line-height: 1.75;
}

.services-text-block {
  border-bottom: 2px solid var(--primary);
  background-color: var(--white);
  padding: 60px 20px 20px;
  box-shadow: 1px 1px 3px #101b2240;
}

.services-button-group {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1.5fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
  display: grid;
}

.section-line {
  background-color: var(--primary);
  width: 30px;
  height: 1px;
  margin-right: 10px;
}

.section-line.large-line {
  background-color: var(--primary);
  width: 35px;
  margin-right: 0;
}

.section-line.light {
  background-color: #fefefe;
  background-color: var(--white);
}

.container {
  width: 90%;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.container.container-fluid {
  width: 98%;
  max-width: none;
}

.container.container-fluid._100 {
  width: 90%;
  max-width: 1400px;
}

.container.container-1600px {
  width: 90%;
  max-width: 1600px;
}

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

.container.display-flex.container-1600px.copy-flex {
  width: 90%;
  max-width: 1500px;
}

.container.display-flex.container-1600px.copy-flex.edit {
  width: 86%;
}

.services-title {
  color: var(--primary);
  text-transform: uppercase;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.5;
}

.services-title.price {
  color: var(--third);
  margin-bottom: 20px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}

.services-block {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  transition: transform .3s ease-in-out;
}

.services-block:hover {
  transform: translate(0, -20px);
}

.section-info-wrapper {
  align-items: center;
  display: flex;
  position: static;
}

.section-info-wrapper.text-center {
  text-align: center;
  justify-content: center;
  padding-bottom: 40px;
}

.services-image {
  z-index: 1;
  object-fit: cover;
  width: 1600px;
  height: 250px;
  margin-bottom: -40px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  box-shadow: 1px 1px 3px #101b2240;
}

.service-btn {
  background-color: var(--secondary);
  background-image: linear-gradient(180deg, var(--secondary), var(--white) 40%, var(--white) 60%, var(--secondary));
  color: var(--primary);
  text-align: center;
  border: 1px solid #000;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.75;
  text-decoration: none;
  transition: all .2s ease-in-out;
  display: flex;
}

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

.service-btn.blue {
  background-color: var(--primary);
  color: var(--white);
  background-image: none;
  padding: 10px 20px;
  display: inline-block;
}

.service-btn.blue:hover {
  background-color: var(--secondary);
  color: var(--black);
}

.section-heading-1-img {
  background-color: var(--white);
  padding-top: 100px;
  padding-bottom: 60px;
}

.section-heading-1-img.gradient {
  background-image: linear-gradient(#6d6d6d, #fff);
}

.section-h1-wrapper.display-flex {
  justify-content: space-between;
  display: flex;
}

.sm-inner-img {
  background-color: var(--secondary);
  color: var(--third);
  border-radius: 0;
  justify-content: center;
  align-items: center;
  width: 75%;
  height: 10%;
  margin-top: -25px;
  margin-bottom: 0;
  margin-right: -25px;
  padding-top: 10px;
  padding-bottom: 10px;
  display: flex;
}

.left-section-para-container.padding-top-20 {
  padding-top: 10px;
}

.left-section-para-container.padding-top-20.flex {
  align-items: center;
  width: 100%;
  height: auto;
  padding-top: 0;
  display: flex;
}

.project-img-title {
  text-align: center;
  font-size: 1.25rem;
  font-style: italic;
  font-weight: 400;
}

.left-text-area {
  width: 50%;
}

.left-text-area.paddint-tomp-bottom-40 {
  padding: 40px;
  position: relative;
}

.left-text-area.paddint-tomp-bottom-40._100 {
  width: 100%;
  padding: 100px 0 60px;
}

.left-text-area._100--width {
  width: 100%;
}

.haeding-1 {
  color: #101b22;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.2;
}

.haeding-1.margin-top-bottom-10 {
  color: var(--primary);
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 2rem;
}

.haeding-1.margin-top-bottom-10.white {
  color: var(--white);
}

.right-double-img {
  width: 48%;
}

.right-double-img.image {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  justify-content: flex-end;
  align-items: flex-start;
  display: flex;
}

.right-double-img.image.contact {
  background-image: none;
}

.right-double-img.image.map {
  background-image: none;
  flex-direction: column-reverse;
  align-items: flex-end;
}

.right-double-img.image.home-2 {
  background-image: url('../images/black-kitchen.webp');
}

.right-double-img.image.ext-1 {
  background-image: url('../images/finsihed-extension.webp');
}

.right-double-img.image.build-1 {
  background-image: url('../images/Bespoke-26.webp');
}

.right-double-img.image.ren-1 {
  background-image: url('../images/modern-bathroom.webp');
}

.right-double-img.image.barn-1 {
  background-image: url('../images/barn.webp');
}

.default-btn {
  color: #101b22;
  background-color: #ffe135;
  padding: 15px 40px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.75;
  text-decoration: none;
  transition: all .3s ease-in-out;
  display: inline-block;
}

.default-btn:hover {
  color: #fefefe;
  background-color: #101b22;
}

.default-btn.margin-top-40 {
  border: 1px solid var(--secondary);
  background-color: var(--secondary);
  background-image: linear-gradient(180deg, var(--secondary), var(--third) 40%, var(--third) 60%, var(--secondary));
  color: var(--black);
  margin-top: 40px;
}

.default-btn.margin-top-40:hover {
  border-color: var(--primary);
  background-color: var(--primary);
}

.default-btn.margin-top-40.hover-white:hover {
  color: #101b22;
  background-color: #fefefe;
}

.default-btn.margin-top-40 {
  text-transform: uppercase;
  margin-top: 40px;
  margin-right: 10px;
  font-size: 14px;
  font-weight: 600;
}

.default-btn.margin-top-40.white {
  background-color: var(--white);
}

.default-btn.margin-top-40.white:hover {
  background-color: var(--secondary);
  color: #1b1b1b;
}

.default-btn.margin-top-40.white.black {
  background-color: var(--white);
  color: var(--black);
}

.default-btn.margin-top-40.black {
  border-color: var(--primary);
  background-color: var(--primary);
  color: var(--white);
  background-image: none;
}

.default-btn.margin-top-40.black:hover {
  border-color: var(--secondary);
  background-color: var(--secondary);
  color: var(--black);
}

.section-hedaing-2-wrapper.display-flex {
  background-image: linear-gradient(to right, #fff0, var(--primary) 52%);
  justify-content: space-between;
  display: flex;
}

.section-hedaing-2-wrapper.display-flex.flex-reverse {
  background-image: linear-gradient(to right, var(--primary) 48%, #fff0);
  flex-direction: row-reverse;
}

.section-hedaing-2-wrapper.display-flex.gradiant-reverse {
  background-image: linear-gradient(to right, var(--primary) 48%, var(--transparent));
}

.section-hedaing-2-wrapper.display-flex.no-bg, .section-hedaing-2-wrapper.display-flex._00 {
  background-image: none;
}

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

.section-heading-2.m-top-10 {
  margin-top: 20px;
  margin-bottom: 0;
}

.section-heading-2.margin-bottom-20 {
  margin-bottom: 20px;
  padding-top: 100px;
}

.section-heading-2._100 {
  background-color: var(--black);
}

.heading-2-img-section {
  background-image: linear-gradient(to right, #fff0, #0009), url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  width: 50%;
  min-height: 500px;
}

.heading-2-img-section.min-height-300 {
  min-height: 300px;
}

.heading-2-img-section.min-height-300.img-edit {
  background-image: linear-gradient(90deg, #fff0, #16252e99), url('../images/bed.webp');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
}

.heading-2-img-section.home-3 {
  background-image: linear-gradient(90deg, #fff0, #0009), url('../images/loft-bathroom.webp');
}

.heading-2-img-section.home-3.build-2 {
  background-image: linear-gradient(90deg, #fff0, #0009), url('../images/garden-room.webp');
}

.heading-2-img-section.home-3.ren-2 {
  background-image: linear-gradient(90deg, #fff0, #0009), url('../images/loft-bathroom.webp');
}

.heading-2-img-section.home-3.barn-2 {
  background-image: linear-gradient(90deg, #fff0, #0009), url('../images/red-brick-barn.webp');
}

.heading-2-img-section.ext-2 {
  background-image: linear-gradient(90deg, #fff0, #0009), url('../images/working-on-landscape.webp');
}

.h2 {
  color: var(--primary);
  margin-top: 0;
}

.h2.h2-white {
  color: var(--white);
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 2rem;
  font-weight: 600;
}

.col-1 {
  flex-direction: column;
  justify-content: flex-start;
  width: 48%;
  margin-right: 10px;
  display: flex;
}

.col-1.flex-grid {
  display: none;
}

.bottom-img {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 4px;
  height: 45%;
  transition: all .2s ease-in-out;
  box-shadow: 1px 1px 3px #101b229c;
}

.bottom-img:hover {
  transform: translate(-10px);
}

.bottom-img.img-2 {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-size: cover;
}

.bottom-img.img-2:hover {
  transform: translate(10px);
}

.bottom-img.img-2.home-3 {
  background-image: url('../images/large-sink.webp');
  height: 50%;
}

.bottom-img.img-2.home-3.build-4 {
  background-image: url('../images/large-resin-driveway.webp');
}

.bottom-img.img-2.ext-5 {
  background-image: url('../images/inside-extension.webp');
}

.bottom-img.img-2.ren-5 {
  background-image: url('../images/Bespoke-Kitchen-2.webp');
}

.bottom-img.img-2.barn-5 {
  background-image: url('../images/conversatory-barn.webp');
  background-position: 50% 100%;
}

.bottom-img.home-2 {
  background-image: url('../images/side-of-garage.webp');
  height: 50%;
}

.bottom-img.home-2.build-5 {
  background-image: url('../images/plants-in-drive.webp');
}

.bottom-img.ext-4 {
  background-image: url('../images/walls.webp');
}

.bottom-img.ren-4 {
  background-image: url('../images/Bespoke-8.webp');
}

.bottom-img.barn-4 {
  background-image: url('../images/modern-barn.webp');
}

.col-2 {
  flex-direction: column-reverse;
  justify-content: flex-start;
  width: 48%;
  margin-top: 0;
  display: flex;
}

.right-img-grid {
  justify-content: space-between;
  width: 48%;
  display: flex;
}

.top-img {
  background-image: url('../images/272168413_1272168413.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  height: 45%;
}

.top-img.margin-top-10 {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-size: cover;
  border-radius: 4px;
  margin-top: 20px;
  transition: all .2s ease-in-out;
  box-shadow: 1px 1px 3px #101b229c;
}

.top-img.margin-top-10:hover {
  transform: translate(0, 10px);
}

.top-img.margin-top-10.home-4 {
  background-image: url('../images/modern-bathroom.webp');
  height: 50%;
}

.top-img.margin-top-10.home-4.build-6 {
  background-image: url('../images/modern-extension-to-old-house.webp');
}

.top-img.margin-top-10.ext-6 {
  background-image: url('../images/missingt-windows.webp');
}

.top-img.margin-top-10.ren-6 {
  background-image: url('../images/Bespoke-1.webp');
}

.top-img.margin-top-10.barn-6 {
  background-image: url('../images/barn-on-garden.webp');
}

.top-img.margin-bottom-10 {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-size: cover;
  border-radius: 4px;
  margin-bottom: 20px;
  transition: all .2s ease-in-out;
  box-shadow: 1px 1px 3px #101b229c;
}

.top-img.margin-bottom-10:hover {
  transform: translate(0, -10px);
}

.top-img.margin-bottom-10.home-1 {
  background-image: url('../images/Bespoke-26.webp');
  height: 50%;
}

.top-img.margin-bottom-10.home-1.build-3 {
  background-image: url('../images/froundations.webp');
}

.top-img.margin-bottom-10.ext-3 {
  background-image: url('../images/digging-grass.webp');
}

.top-img.margin-bottom-10.ren-3 {
  background-image: url('../images/mirror.webp');
}

.top-img.margin-bottom-10.barn-3 {
  background-image: url('../images/black-barn.webp');
}

.title-as-section {
  color: var(--primary);
  text-transform: uppercase;
  margin-left: 10px;
  font-size: 1.2em;
  font-weight: 700;
}

.title-as-section.w {
  color: var(--white);
}

.heading-3-btn {
  background-color: var(--white);
  color: var(--primary);
  text-transform: uppercase;
  padding: 15px 50px;
  font-size: 1em;
  font-weight: 600;
  line-height: 1.9;
  text-decoration: none;
  transition: all .2s ease-in-out;
  display: inline-block;
}

.heading-3-btn:hover {
  background-color: var(--primary);
  color: #fff;
}

.left-image {
  background-image: url('../images/Bespoke-26.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  width: 49.5%;
  min-height: 250px;
}

.heading-3-right-text {
  background-color: var(--secondary);
  background-image: url('../images/black-background.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  width: 49.5%;
  padding: 40px;
}

.heading-3-top-title {
  align-items: center;
  display: flex;
}

.light-text-line {
  background-color: var(--white);
  color: var(--white);
  width: 40px;
  height: 2px;
}

.heading-3-wrapper {
  justify-content: space-between;
  display: flex;
}

.h3-cta-text {
  color: var(--white);
  text-transform: uppercase;
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.2;
}

.heading-3-section {
  padding-top: 10px;
}

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

.div-block {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 4.5fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.footer-link {
  color: #f0f6f8;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.95;
  text-decoration: none;
  transition: all .3s ease-in-out;
}

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

.footer-link.black {
  color: #000;
}

.footer-col-text-title {
  border-bottom: 2px none var(--secondary);
  box-shadow: 0 1px 0 0 var(--secondary);
  color: #fff;
  text-transform: uppercase;
  padding-bottom: 0;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  display: inline-block;
}

.f-col.no-padding {
  padding-bottom: 0;
}

.footer-links-block {
  grid-column-gap: 16px;
  grid-row-gap: 9px;
  flex-flow: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  padding-top: 10px;
  display: grid;
}

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

.footer-section {
  background-color: var(--primary);
  margin-top: 10px;
  padding-top: 40px;
  padding-bottom: 40px;
}

.footer-copy-section {
  background-color: var(--primary);
  padding-top: 20px;
  padding-bottom: 100px;
}

.footer-copy-social {
  justify-content: flex-end;
  display: flex;
}

.footer-social-icon {
  border: 1px solid var(--secondary);
  background-color: var(--primary);
  background-image: linear-gradient(180deg, var(--secondary), var(--white) 40%, var(--white) 60%, var(--secondary));
  color: var(--black);
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  margin-left: 10px;
  margin-right: 10px;
  font-family: "Fa brands 400", sans-serif;
  font-size: 1.5rem;
  line-height: 1.5;
  text-decoration: none;
  transition: all .2s ease-in-out;
  display: flex;
}

.footer-social-icon:hover {
  background-color: var(--secondary);
  color: var(--black);
}

.footer-link-texts {
  color: var(--third);
  margin-bottom: 0;
  font-size: 1rem;
  line-height: 1.6;
}

.arrow-up {
  z-index: 1;
  background-color: #ffd900;
  justify-content: center;
  align-items: center;
  display: flex;
  position: fixed;
  inset: auto 1% 10px auto;
}

.socials {
  z-index: 100;
  background-image: linear-gradient(180deg, var(--secondary), var(--white) 40%, var(--white) 60%, var(--secondary));
  border: 1px solid #000;
  justify-content: center;
  align-items: center;
  display: flex;
  position: fixed;
  inset: auto auto 20px 6%;
}

.social-button {
  color: var(--primary);
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  font-family: "Fa brands 400", sans-serif;
  font-size: 18px;
  text-decoration: none;
  transition: background-color .2s;
  display: flex;
}

.social-button.phone {
  color: var(--black);
  background-color: #80808000;
  font-family: "Fa solid 900", sans-serif;
}

.arrow-up-2 {
  z-index: 1;
  background-color: var(--primary);
  justify-content: center;
  align-items: center;
  display: flex;
  position: fixed;
  bottom: 110px;
  right: 17px;
}

.back-to-top {
  background-color: var(--white);
  background-image: linear-gradient(180deg, var(--secondary), var(--white) 40%, var(--white) 60%, var(--secondary));
  color: var(--black);
  border: 1px solid #000;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  font-family: "Fa solid 900", sans-serif;
  font-size: 18px;
  text-decoration: none;
  transition: background-color .2s;
  display: flex;
}

.back-to-top:hover {
  background-color: var(--secondary);
}

.list {
  padding-left: 0;
}

.list._2-row {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 10px;
  display: grid;
}

.list._3-row {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.list-item {
  align-items: center;
  margin-bottom: 5px;
  display: flex;
}

.list-icon {
  color: #ffdb3a;
  background-image: url('../images/key_1key.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  flex: none;
  width: 32px;
  height: 32px;
  margin-right: 10px;
}

.bullet-list {
  color: var(--black);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 400;
}

.bullet-list.b {
  color: #000;
}

.bullet-list.white {
  color: var(--white);
}

.hyperlink {
  box-shadow: inset 0 -2px 0 0 var(--secondary);
  color: #000;
  text-decoration: none;
  transition: all .3s ease-in-out;
}

.hyperlink:hover {
  box-shadow: inset 0 -50px 0 0 var(--secondary);
  color: #fff;
}

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

.areas-list {
  padding-left: 0;
}

.areas-list.areas-grid {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.areas-list-item.areas-list-flex {
  color: #000;
  border-bottom: 1px solid #5f5f511f;
  align-items: center;
  padding-top: 0;
  padding-bottom: 5px;
  font-size: 16px;
  font-weight: 500;
  display: flex;
}

.font-icon {
  border: 1px solid var(--black);
  background-image: linear-gradient(180deg, var(--secondary), var(--third) 40%, var(--third) 60%, var(--secondary));
  color: #000;
  border-radius: 50px;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  margin-right: 10px;
  font-family: "Fa solid 900", sans-serif;
  display: flex;
}

.hyperlink-2 {
  color: #000;
  padding-left: 2.5px;
  padding-right: 2.5px;
  text-decoration: none;
  transition: all .3s ease-in-out;
  display: inline-block;
  box-shadow: inset 0 -2px #e5605c;
}

.hyperlink-2:hover {
  color: #f7f7f2;
  box-shadow: inset 0 -100px #e5605c;
}

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

.lb {
  border: 1px solid #000;
}

.contactform, .google-map {
  width: 100%;
}

.footer-links-block-2 {
  flex-direction: column;
  padding-top: 20px;
  display: flex;
}

.footer-links-block-2.remove {
  padding-top: 0;
}

.footer-link-2 {
  color: #f0f6f8;
  margin-bottom: 10px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.95;
  text-decoration: none;
  transition: all .3s ease-in-out;
  display: flex;
}

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

.footer-link-2.black {
  color: #000;
  margin-bottom: 5px;
}

.heading-2-img-section-2 {
  background-image: linear-gradient(to right, #fff0, #16252e99), url('../images/294173684_1294173684.webp');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  width: 50%;
  min-height: 500px;
}

.heading-2-img-section-2.home-1 {
  background-image: linear-gradient(90deg, #fff0, #16252e99), url('../images/loft.webp');
}

.section-info-wrapper-2 {
  align-items: center;
  display: flex;
  position: static;
}

.para {
  font-size: 1rem;
  line-height: 1.75;
}

.para.light {
  color: var(--white);
}

.default-btn-2 {
  background-color: var(--secondary);
  color: var(--black);
  padding: 15px 40px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.75;
  text-decoration: none;
  transition: all .3s ease-in-out;
  display: inline-block;
}

.default-btn-2:hover {
  color: #fefefe;
  background-color: #101b22;
}

.default-btn-2.margin-top-40 {
  text-transform: uppercase;
  margin-top: 40px;
  margin-right: 10px;
  font-size: 14px;
  font-weight: 600;
}

.default-btn-2.margin-top-40.hover-white {
  background-image: linear-gradient(180deg, var(--secondary), var(--white) 40%, var(--white) 60%, var(--secondary));
  text-transform: uppercase;
  margin-right: 10px;
  font-size: 14px;
  font-weight: 600;
}

.default-btn-2.margin-top-40.hover-white:hover {
  background-color: var(--white);
  color: var(--black);
}

.default-btn-2.margin-top-40.white {
  background-color: var(--white);
  color: var(--primary);
}

.default-btn-2.margin-top-40.white:hover {
  color: var(--black);
}

.heading-2-img-section-3 {
  background-image: linear-gradient(to right, #fff0, #16252e99), url('../images/294173684_1294173684.webp');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  width: 50%;
  min-height: 500px;
}

.heading-2-img-section-3.no-img {
  background-image: none;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.heading-2-img-section-3.no-img.grid-edit {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  align-content: center;
  align-items: center;
  display: grid;
}

.default-btn-3 {
  color: #101b22;
  background-color: #ffe135;
  padding: 15px 40px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.75;
  text-decoration: none;
  transition: all .3s ease-in-out;
  display: inline-block;
}

.default-btn-3:hover {
  color: #fefefe;
  background-color: #101b22;
}

.default-btn-3.margin-top-40 {
  text-transform: uppercase;
  margin-top: 40px;
  margin-right: 10px;
  font-size: 14px;
  font-weight: 600;
}

.default-btn-3.margin-top-40.hover-white {
  text-transform: uppercase;
  margin-right: 10px;
  font-size: 14px;
  font-weight: 600;
}

.default-btn-3.margin-top-40.hover-white:hover {
  color: #101b22;
  background-color: #fefefe;
}

.default-btn-3.margin-top-40.white {
  background-color: #fefefe;
}

.default-btn-3.margin-top-40.white:hover {
  color: #1b1b1b;
  background-color: #ffd900;
}

.contact-info-block {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  border-radius: 10px;
  grid-template-rows: auto;
  grid-template-columns: .25fr 1fr;
  grid-auto-columns: 1fr;
  padding: 0;
  transition: box-shadow .2s cubic-bezier(.455, .03, .515, .955);
  display: grid;
}

.contact-info-block.m-bottom-20 {
  border-bottom: 1px solid #15162314;
  border-radius: 0;
  margin-top: 40px;
  margin-bottom: 20px;
  padding: 0 0 10px;
  transition-property: none;
}

.contact-info-block.m-bottom-20.m-top-60 {
  border-bottom: 1px solid #1516230f;
  border-radius: 0;
  place-items: end stretch;
  margin-top: 0;
  padding-bottom: 10px;
}

.cta-text-contact {
  color: var(--primary);
  margin-bottom: 10px;
  font-size: 1.25em;
  font-weight: 600;
}

.icon-block {
  justify-content: center;
  align-items: center;
  margin-right: 20px;
  display: flex;
}

.contact-info-text {
  flex-direction: column;
  display: flex;
}

.cta-link {
  color: var(--primary);
  font-size: 1.1em;
  font-weight: 500;
  line-height: 1.75;
  text-decoration: none;
}

.contactform-embed {
  width: 100%;
  margin-top: 40px;
}

.contactform-embed.no-padd {
  margin-top: 0;
}

.icon {
  background-color: var(--primary);
  background-image: linear-gradient(180deg, var(--secondary), var(--white) 40%, var(--white) 60%, var(--secondary));
  border: 1px solid #000;
  border-radius: 100%;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  font-family: "Fa solid 900", sans-serif;
  font-size: 1.8em;
  line-height: 1.2;
  display: flex;
}

.header-contact {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  flex-direction: column;
  margin-right: auto;
  display: flex;
}

.header-contact.ffooter {
  margin-top: 10px;
}

.header-cont-info {
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 5px;
  display: flex;
}

.fa-icon {
  background-color: var(--secondary);
  color: var(--black);
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  margin-right: 10px;
  font-family: "Fa solid 900", sans-serif;
  font-size: 16px;
  display: flex;
}

.fa-icon.sm {
  background-image: linear-gradient(180deg, var(--secondary), var(--white) 40%, var(--white) 62%, var(--secondary));
  border-radius: 100px;
  width: 32px;
  height: 32px;
  margin-right: 5px;
  font-size: 16px;
}

.fa-icon.sm._10padd {
  flex: none;
  margin-right: 10px;
}

.header-link-cont {
  color: var(--white);
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 0;
  font-size: 14px;
  text-decoration: none;
  display: flex;
}

.header-link-cont:hover {
  color: var(--secondary);
}

.fs-cc-banner_trigger {
  display: none;
}

.fs-cc-prefs_button {
  border: 2px solid var(--primary);
  background-color: var(--primary);
  border-radius: 500px;
  margin-right: 8px;
  padding: 10px 20px;
  font-size: 15px;
  font-weight: 700;
}

.fs-cc-prefs_button.fs-cc-button-alt {
  border-color: var(--primary);
  color: var(--primary);
  background-color: #fff;
}

.fs-cc-prefs_checkbox-field {
  background-color: #ccc;
  border-radius: 999px;
  width: 44px;
  height: 24px;
  margin-bottom: 0;
  padding: 2px;
  display: flex;
  position: relative;
}

.fs-cc-prefs_checkbox {
  z-index: 1;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
  margin-top: 0;
  margin-left: 0;
  position: absolute;
  inset: 0%;
}

.fs-cc-banner_text {
  color: var(--primary);
  margin-right: 24px;
  line-height: 22px;
}

.fs-cc-banner_component {
  z-index: 998;
  background-color: var(--third);
  border-top: 1px solid #4353ff29;
  padding: 24px 32px;
  display: none;
  position: fixed;
  inset: auto 0% 0%;
}

.fs-cc-prefs_label {
  color: var(--primary);
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 32px;
  font-size: 16px;
  font-weight: 700;
}

.fs-cc-prefs_text {
  color: var(--black);
  font-size: 12px;
}

.fs-cc-prefs_toggle-wrapper {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  display: flex;
}

.fs-cc-manager_button {
  color: #333;
  cursor: pointer;
  background-color: #fff;
  border-radius: 500px;
  flex-direction: column;
  padding: 10px;
  transition: color .2s;
  display: flex;
}

.fs-cc-manager_button:hover {
  color: #4353ff;
}

.fs-cc-banner_container {
  align-items: center;
  width: 100%;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.fs-cc-prefs_option {
  border-bottom: 1px solid #33333326;
  padding-top: 16px;
  padding-bottom: 16px;
}

.fs-cc-prefs_close-icon {
  color: var(--primary);
  width: 16px;
  height: 16px;
}

.fs-cc-prefs_content {
  height: 100%;
  padding: 40px 32px;
  overflow: scroll;
}

.fs-cc-manager_icon {
  width: 32px;
  height: 32px;
}

.fs-cc-prefs_title {
  color: var(--primary);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2em;
}

.fs-cc-prefs_trigger {
  display: none;
}

.fs-cc-prefs_close {
  z-index: 1;
  color: #333;
  cursor: pointer;
  background-color: #f5f6ff;
  border-radius: 100%;
  padding: 10px;
  font-size: 20px;
  text-decoration: none;
  position: absolute;
  inset: -12px -12px auto auto;
  box-shadow: -1px 1px 12px #3333331a;
}

.fs-cc-manager_trigger {
  display: none;
}

.fs-cc-banner_text-link {
  border-bottom: 2px solid var(--primary);
  color: var(--primary);
  font-weight: 400;
  text-decoration: none;
}

.fs-cc-prefs_form {
  background-color: #fff;
  border-radius: 12px;
  width: 100%;
  max-width: 576px;
  height: 100%;
  max-height: 70vh;
  margin-bottom: 0;
  position: relative;
}

.fs-cc-prefs_submit-hide, .fs-cc-prefs_checkbox-label {
  display: none;
}

.fs-cc-prefs_component {
  z-index: 997;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  margin-bottom: 0;
  padding: 32px;
  display: none;
  position: fixed;
  inset: 0%;
}

.fs-cc-banner_close-icon {
  width: 24px;
  height: 24px;
}

.fs-cc-prefs_overlay {
  z-index: -1;
  background-color: #20202099;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.fs-cc-banner_buttons-wrapper {
  flex: none;
  grid-template-rows: auto;
  grid-template-columns: auto auto;
  grid-auto-columns: 1fr;
  align-items: center;
  display: flex;
}

.fs-cc-manager_component {
  z-index: 999;
  display: none;
  position: fixed;
  inset: auto auto 20px 20px;
}

.fs-cc-banner_button {
  border: 2px solid var(--primary);
  background-color: var(--primary);
  color: #fff;
  text-align: center;
  border-radius: 500px;
  min-width: 140px;
  margin-left: 16px;
  padding: 10px 20px;
  font-size: 16px;
}

.fs-cc-banner_button.fs-cc-button-alt {
  border-color: var(--primary);
  background-color: var(--third);
  color: var(--primary);
}

.fs-cc-banner_close {
  background-color: var(--white);
  opacity: 1;
  cursor: pointer;
  border-radius: 500px;
  margin-left: 12px;
  padding: 10px;
  box-shadow: 0 0 6px #0000004d;
}

.fs-cc-prefs_toggle {
  background-color: #fff;
  border-radius: 999px;
  width: 20px;
  height: 20px;
}

.fs-cc-prefs_buttons-wrapper {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-end;
  margin-top: 32px;
  margin-right: -8px;
  display: flex;
}

.fs-cc-prefs_space-medium {
  margin-bottom: 40px;
}

.fs-cc-prefs_space-small {
  margin-bottom: 12px;
}

.lottie {
  width: 150px;
  margin-bottom: 0;
  display: inline-flex;
}

.logo {
  width: auto;
  height: 100px;
  display: inline-flex;
}

.icon-2 {
  color: var(--white);
  margin-right: 10px;
}

.fmb {
  background-image: url('../images/FMB-horizontal.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  width: 100%;
  height: 80px;
}

.live-chat-top-text {
  letter-spacing: 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  position: static;
}

.live-chat-top-text.block {
  color: #494949;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 700;
}

.whatsapp-block {
  z-index: 3;
  flex-direction: column;
  align-items: flex-end;
  margin-bottom: 20px;
  margin-right: 20px;
  display: flex;
  position: fixed;
  inset: auto 0% 0% auto;
}

.live-icon {
  background-color: #00b94a;
  border-radius: 100%;
  width: 15px;
  height: 15px;
  position: absolute;
  inset: 2px auto auto 2px;
}

.live-chat-bottom-text {
  font-size: 10px;
}

.live-chat-bottom-text.block {
  margin-bottom: 5px;
  font-size: 12px;
  line-height: 24px;
}

.live-chat-bottom-text.bold {
  margin-bottom: 5px;
  font-size: 12px;
  font-weight: 600;
  line-height: 20px;
}

.chat-section {
  background-color: #b7b5b5;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 56%;
  padding: 16px 20px;
  display: flex;
  position: relative;
}

.small-whatsapp-icon {
  margin-right: 10px;
}

.live-chat-text {
  color: #fff;
  text-decoration: none;
}

.live-chat-link {
  border-radius: 0;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 25%;
  text-decoration: none;
  display: flex;
  position: relative;
}

.chat-block {
  background-color: #fff;
  border-radius: 8px;
  width: 100%;
  padding: 15px;
}

.whatsapp-container {
  z-index: 30;
  cursor: pointer;
  background-color: #000;
  border: 1px solid #ffffff4d;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 70px;
  transition: all .3s cubic-bezier(.45, .182, .111, .989);
  display: flex;
  position: relative;
  inset: auto 0% 0% auto;
}

.whatsapp-container:hover {
  background-color: #494949;
  transform: scale(1.05);
}

.whatsapp-chat {
  background-color: #fff;
  border: 1px solid #00000029;
  border-radius: 20px;
  flex-direction: column;
  align-items: center;
  width: 300px;
  max-width: 300px;
  height: 315px;
  margin-bottom: 16px;
  display: none;
  overflow: hidden;
}

.livechat-button {
  cursor: pointer;
  background-color: #000;
  border-radius: 200px;
  justify-content: center;
  align-items: center;
  width: 80%;
  height: 42px;
  text-decoration: none;
  transition: all .2s;
  display: flex;
}

.top-section-2 {
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 25%;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
}

.live-icon-chat {
  width: 40px;
  height: 40px;
  margin-right: 10px;
}

.testimonials {
  width: 100%;
  margin-top: 40px;
}

.splide__list {
  justify-content: flex-start;
  align-items: stretch;
  display: flex;
}

.splide__slide {
  flex: none;
  width: 33.3333%;
  height: 40vw;
  min-height: 41.88em;
  padding-left: .52em;
  padding-right: .52em;
}

.shape-4 {
  z-index: 0;
  align-items: flex-start;
  display: flex;
  position: fixed;
  inset: 0%;
}

.color {
  z-index: 0;
  background-color: #f3e5f5;
  position: fixed;
  inset: 0%;
}

.shape-5 {
  z-index: 0;
  justify-content: flex-end;
  align-items: flex-start;
  display: flex;
  position: fixed;
  inset: 0%;
}

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

.image {
  max-width: 40%;
}

.image-5 {
  max-width: 30%;
}

.shape-1 {
  z-index: 1;
  opacity: .7;
  background-color: #0000;
  justify-content: flex-end;
  align-items: flex-end;
  display: flex;
  position: fixed;
  inset: 0%;
}

.image-3 {
  max-width: 71%;
}

.background {
  z-index: 0;
  background-image: linear-gradient(24deg, #fff, #eee);
  display: block;
  position: fixed;
  inset: 0%;
}

.shape-2 {
  z-index: 1;
  justify-content: flex-start;
  align-items: flex-end;
  display: flex;
  position: fixed;
  inset: 0%;
}

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

.shape-3 {
  z-index: 1;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  margin-left: 4vw;
  display: flex;
  position: fixed;
  inset: 0%;
}

.wrapper {
  height: 170vw;
}

.container-2 {
  justify-content: space-around;
  align-items: flex-start;
  width: 100%;
  height: 100vh;
  padding-top: 60px;
  display: flex;
  position: sticky;
  inset: 0%;
  overflow: hidden;
}

.container-2.remove {
  height: auto;
  padding-top: 0;
}

.column {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 28vw;
  display: flex;
}

.img-wrapper {
  cursor: pointer;
  border-radius: 20px;
  margin-bottom: 1vw;
  position: relative;
  overflow: hidden;
}

.img {
  object-fit: cover;
  border-radius: 20px;
  width: 100%;
  position: relative;
}

.img.ln {
  height: 400px;
}

.h1-small {
  color: var(--secondary);
  font-weight: 300;
}

.bullet-icon {
  border: 1px solid var(--third);
  background-color: var(--primary);
  background-image: url('../images/bullet-icon.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 70%;
  border-radius: 100%;
  flex: none;
  width: 40px;
  height: 40px;
  margin-right: 5px;
  padding: 0;
}

.bullet-icon.white {
  border: 1px solid var(--third);
}

.overlay {
  z-index: 999999;
  background-color: var(--primary);
  flex-direction: row;
  justify-content: center;
  align-items: center;
  display: none;
  position: fixed;
  inset: 0%;
}

.circle {
  background-color: #f1f1f100;
  flex-flow: column;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 300px;
  height: 300px;
  display: flex;
}

.logo-overlay {
  background-image: url('../images/logo.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  justify-content: center;
  align-items: center;
  width: 400px;
  height: 300px;
  margin-top: 0;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.icon-wrapper {
  background-color: var(--primary);
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  padding: 11px;
  display: flex;
}

.modal-detail {
  color: #151c34;
  white-space: nowrap;
  font-weight: 600;
}

.modal-content {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 30px 38px 65px;
  display: flex;
}

.slide-navigation {
  color: #151c34;
  font-size: 10px;
  display: none;
  bottom: 10px;
}

.close {
  opacity: .5;
  transition: opacity .2s;
}

.close:hover {
  opacity: 1;
}

.modal-slider {
  background-color: #0000;
  height: 100%;
}

.modal-header {
  border-bottom: 1px solid #151c341a;
  justify-content: space-between;
  align-items: center;
  min-height: 55px;
  padding-left: 25px;
  padding-right: 25px;
  display: flex;
}

.slider-right {
  opacity: .5;
  color: #151c34;
  justify-content: center;
  align-items: center;
  padding: 4px 15px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  display: flex;
}

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

.modal-element {
  background-color: #fff;
  border-radius: 20px;
  width: 100%;
  max-width: 430px;
}

.left-arrow {
  display: none;
}

.modal-slide {
  color: #151c34;
}

.paragraph-standard {
  color: var(--primary);
  font-size: 16px;
  line-height: 1.5;
}

.icon-3 {
  width: 70px;
}

.module-header-left {
  width: 50%;
  height: 100%;
  display: flex;
}

.module-header-right {
  justify-content: flex-end;
  width: 50%;
  display: flex;
}

.right-arrow {
  display: none;
}

.modal-overlay {
  z-index: 999;
  background-color: #151c34e6;
  justify-content: center;
  align-items: center;
  padding-left: 3%;
  padding-right: 3%;
  display: flex;
  position: fixed;
  inset: 0%;
}

.popup-title {
  color: var(--black);
  margin-top: 10px;
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.6;
}

.close-icon {
  color: #fff;
  cursor: pointer;
  background-color: #0000;
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  width: 34px;
  height: 34px;
  font-size: 22px;
  display: flex;
  position: absolute;
  inset: 10px 10px auto auto;
}

.close-icon:hover {
  background-color: #0000;
}

.close-icon.circle {
  background-color: #111;
  font-family: "Fa solid 900", sans-serif;
  position: absolute;
}

.widget-block {
  z-index: 1000;
  background-color: var(--third);
  text-align: center;
  border-radius: 5px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 30%;
  padding: 60px 40px;
  display: none;
  position: fixed;
  inset: auto auto 3% 1%;
  box-shadow: 1px 1px 3px #0000002e;
}

.primary-btn {
  color: #fff;
  background-color: #ffa200;
  border-radius: 4px;
  margin-top: 20px;
  padding: 20px 40px;
  text-decoration: none;
  transition: background-color .3s ease-in-out;
  display: inline-block;
}

.primary-btn:hover {
  color: #000;
  background-color: #fff;
}

.primary-btn.hovr-black:hover {
  color: #f9f9f9;
  background-color: #080f34;
}

.primary-btn.hovr-black.margin-top-20 {
  margin-top: 20px;
}

.primary-btn.hovr-black.margin-top-20.mobil-btn {
  background-color: #fcb42d;
  display: block;
}

.pop-head {
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  padding-bottom: 10px;
  font-size: 24px;
  font-weight: 400;
  line-height: 39px;
}

.footer-brand-2 {
  text-decoration: none;
}

.text-span-2 {
  font-size: 30px;
  font-weight: 700;
}

.heading-3.white {
  color: var(--white);
}

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

.team-block {
  z-index: 3;
  background-color: var(--black);
  border-radius: 0;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 70px;
  display: flex;
  position: absolute;
  bottom: 0;
  right: 0;
}

.team-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.team-line-side {
  background-color: #fff;
  width: 2px;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 34px;
}

.team-line-bottom {
  background-color: #fff;
  width: 100%;
  height: 2px;
  position: absolute;
  bottom: 32px;
}

.team-grid-2 {
  grid-column-gap: 38px;
  grid-row-gap: 38px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  width: 100%;
  margin-bottom: 20px;
  padding-left: 0;
  padding-right: 0;
}

.team-text {
  margin-top: 32px;
}

.lightbox-link-3 {
  width: 100%;
  height: 360px;
  position: relative;
}

.team-name-2 {
  color: #000;
  letter-spacing: -.04em;
  text-transform: capitalize;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 28px;
  font-weight: 800;
  line-height: 32px;
}

.p-5 {
  color: #111;
  width: 100%;
  margin-bottom: 0;
  font-size: 1.1em;
  line-height: 1.7em;
}

.p-5.price-text {
  background-color: var(--black);
  color: var(--white);
  text-align: center;
  font-size: 18px;
  font-weight: 400;
  line-height: 2;
}

@media screen and (min-width: 1920px) {
  .hero-card {
    max-width: 850px;
  }

  .whatsapp-chat {
    display: none;
  }

  .livechat-button {
    transition: all .2s;
  }

  .livechat-button:hover {
    background-color: #000;
    transform: scale(1.05);
  }
}

@media screen and (max-width: 991px) {
  .nav-link {
    background-color: var(--white);
    color: var(--black);
  }

  .nav-link.contact-nav.call-btn {
    background-color: var(--secondary);
    color: var(--primary);
    margin-right: 0;
    padding-top: 20px;
    padding-bottom: 20px;
    display: block;
  }

  .drop-downmenu {
    width: 100%;
  }

  .nav-container {
    border-radius: 0;
    max-width: 1300px;
  }

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

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

  .navbar {
    border-radius: 0;
    width: 100%;
  }

  .drop-down-link {
    text-transform: uppercase;
  }

  .navigatio-bar {
    width: 100%;
  }

  .dropdown-toggle.nav-link {
    color: var(--black);
    width: 100%;
  }

  .dropdown-toggle.nav-link:hover {
    color: var(--secondary);
  }

  .hero-intro-text {
    line-height: 1.6;
  }

  .banner-text {
    font-size: 2rem;
  }

  .p.light.testimonial-text {
    font-size: 1.15rem;
  }

  .hero-section.small {
    min-height: 400px;
  }

  .hero-card {
    width: 90%;
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-content {
    justify-content: center;
    align-items: flex-end;
    padding-bottom: 60px;
  }

  .services-wrapper.display-grid {
    grid-template-columns: 1fr 1fr;
  }

  .services-section {
    padding-bottom: 0;
  }

  .container.container-fluid {
    width: 90%;
  }

  .container.container-fluid._100 {
    width: 100%;
  }

  .container.display-flex.container-1600px.copy-flex {
    text-align: center;
    flex-direction: column;
  }

  .section-heading-1-img {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .section-h1-wrapper.display-flex {
    flex-direction: column;
  }

  .left-text-area {
    width: 100%;
  }

  .left-text-area.paddint-tomp-bottom-40 {
    background-color: var(--primary);
    width: 100%;
  }

  .left-text-area.paddint-tomp-bottom-40.bg-white {
    background-color: #0000;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    padding-right: 0;
  }

  .left-text-area.paddint-tomp-bottom-40._100 {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }

  .right-double-img.image {
    width: 100%;
    max-width: 100%;
    height: 500px;
    margin-top: 100px;
  }

  .right-double-img.image.contact, .right-double-img.image.map {
    height: auto;
  }

  .right-double-img.image.home-2 {
    max-width: 100%;
  }

  .section-hedaing-2-wrapper.display-flex {
    background-image: none;
    flex-direction: column;
  }

  .section-hedaing-2-wrapper.display-flex.flex-reverse {
    flex-direction: column-reverse;
  }

  .section-hedaing-2-wrapper.display-flex._00 {
    background-color: var(--primary);
  }

  .section-heading-2.margin-bottom-20 {
    margin-bottom: 0;
  }

  .heading-2-img-section {
    width: 100%;
  }

  .right-img-grid {
    width: 100%;
    min-height: 500px;
    margin-top: 40px;
    padding-top: 0;
  }

  .heading-3-btn {
    text-align: center;
    width: 100%;
  }

  .left-image {
    width: 100%;
    margin-top: 10px;
  }

  .heading-3-right-text {
    width: 100%;
    margin-bottom: 30px;
  }

  .heading-3-wrapper {
    flex-direction: column-reverse;
  }

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

  .div-block {
    grid-row-gap: 0px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

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

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

  .footer-copy-social {
    margin-top: 20px;
  }

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

  .google-map, .heading-2-img-section-2, .heading-2-img-section-3 {
    width: 100%;
  }

  .heading-2-img-section-3.no-img.grid-edit {
    width: 100%;
    min-height: auto;
    margin-left: auto;
    margin-right: auto;
  }

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

  .icon-2 {
    color: var(--secondary);
  }

  .img.ln {
    height: 250px;
  }

  .widget-block {
    width: 55%;
  }

  .primary-btn.hovr-black.margin-top-20.mobil-btn {
    display: block;
  }

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

@media screen and (max-width: 767px) {
  .navigatio-bar {
    background-color: var(--primary);
    position: static;
  }

  .hero-section {
    height: auto;
    min-height: auto;
  }

  .hero-section.small {
    min-height: auto;
  }

  .hero-card {
    background-color: #ffffffd9;
    width: 90%;
    margin: 60px auto;
  }

  .hero-content {
    padding-bottom: 0;
  }

  .services-wrapper.display-grid {
    grid-template-columns: 1fr;
  }

  .services-section {
    padding-top: 40px;
  }

  .services-text-block {
    width: 95%;
    margin-left: auto;
    margin-right: auto;
  }

  .services-block {
    margin-bottom: 60px;
  }

  .services-image {
    height: 350px;
  }

  .section-heading-1-img {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .section-h1-wrapper.display-flex.flex-reverse {
    flex-direction: column-reverse;
  }

  .sm-inner-img {
    width: auto;
    margin-top: -10px;
    margin-right: -10px;
    padding-left: 40px;
    padding-right: 40px;
  }

  .left-text-area.paddint-tomp-bottom-40 {
    padding: 30px;
  }

  .left-text-area.paddint-tomp-bottom-40.bg-white {
    padding-top: 20px;
  }

  .left-text-area.paddint-tomp-bottom-40._100 {
    padding-top: 60px;
  }

  .right-double-img.image {
    margin-top: 0;
    margin-bottom: 40px;
  }

  .default-btn.margin-top-40 {
    text-align: center;
    width: 100%;
    margin-top: 20px;
  }

  .default-btn.margin-top-40.hover-white {
    display: block;
  }

  .default-btn.margin-top-40 {
    text-align: center;
    width: 100%;
  }

  .section-heading-2.margin-bottom-20 {
    padding-top: 10px;
  }

  .left-image {
    width: 100%;
    margin-top: 0;
  }

  .heading-3-right-text {
    width: 100%;
    margin-bottom: 0;
  }

  .heading-3-wrapper {
    flex-direction: column;
  }

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

  .f-col {
    border-bottom: 1px solid #f0f6f81f;
    padding-top: 10px;
    padding-bottom: 20px;
  }

  .f-col.no-padding {
    border-bottom-style: none;
    padding-top: 0;
    padding-bottom: 20px;
  }

  .footer-links-block {
    padding-top: 10px;
  }

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

  .arrow-up-2 {
    bottom: 100px;
  }

  .list._2-row {
    grid-template-columns: 1fr;
  }

  .list._3-row, .areas-list.areas-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-links-block-2 {
    padding-top: 10px;
  }

  .default-btn-2.margin-top-40, .default-btn-3.margin-top-40 {
    text-align: center;
    width: 100%;
  }

  .header-contact {
    display: none;
  }

  .header-contact.ffooter {
    display: flex;
  }

  .fs-cc-banner_container {
    flex-direction: column;
    align-items: flex-start;
  }

  .fs-cc-prefs_title {
    font-size: 20px;
  }

  .fs-cc-banner_text-link {
    margin-right: 8px;
  }

  .fs-cc-banner_buttons-wrapper {
    margin-top: 12px;
  }

  .fs-cc-banner_button {
    margin-left: 0;
    margin-right: 8px;
  }

  .fmb {
    text-align: left;
  }

  .footer-logo {
    height: 130px;
  }

  .splide__slide {
    width: 100%;
    min-height: 89em;
    padding-left: .92em;
    padding-right: .92em;
  }

  .wrapper {
    height: auto;
  }

  .h1-small {
    font-size: 1.8rem;
  }

  .logo-overlay {
    width: 300px;
  }

  .widget-block {
    width: 70%;
    padding-left: 30px;
    padding-right: 30px;
  }

  .pop-head {
    font-size: 24px;
    line-height: 32px;
  }

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

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

@media screen and (max-width: 479px) {
  .nav-link.contact-nav.call-btn {
    display: none;
  }

  .brand.w--current {
    margin-left: 0;
    margin-right: 0;
  }

  .navigatio-bar {
    padding-top: 40px;
  }

  .hero-intro-text {
    font-size: 1.3rem;
    line-height: 1.2;
  }

  .banner-text {
    font-size: 1.6rem;
    font-weight: 600;
  }

  .p {
    font-size: 14px;
  }

  .hero_btn {
    text-align: center;
    width: 100%;
    margin-right: 0;
  }

  .hero_btn.outline-btn {
    text-align: center;
    width: 100%;
    margin-top: 10px;
  }

  .hero-card {
    width: 90%;
    margin: 30px auto;
    padding-left: 10px;
    padding-right: 10px;
  }

  .section-info-title.large-text {
    font-size: 1.5rem;
  }

  .services-section {
    padding-top: 30px;
  }

  .container.container-fluid._100 {
    width: 100%;
  }

  .service-btn {
    font-weight: 400;
  }

  .section-heading-1-img {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .section-h1-wrapper.display-flex.flex-reverse {
    flex-direction: column-reverse;
  }

  .sm-inner-img {
    width: auto;
    height: auto;
    margin-top: 0;
    padding: 20px;
  }

  .left-section-para-container.padding-top-20 {
    padding-top: 0;
  }

  .project-img-title {
    font-size: 1rem;
  }

  .left-text-area.paddint-tomp-bottom-40 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .left-text-area.paddint-tomp-bottom-40._100 {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .haeding-1.margin-top-bottom-10 {
    color: #16252e;
    text-transform: uppercase;
    text-transform: uppercase;
    margin-top: 0;
    font-size: 22px;
  }

  .haeding-1.margin-top-bottom-10.white {
    color: #f0f6f8;
    margin-top: 0;
    margin-bottom: 20px;
  }

  .right-double-img.image {
    height: 300px;
    margin-top: 0;
    margin-bottom: 40px;
  }

  .section-heading-2.margin-bottom-20 {
    margin-bottom: 0;
    padding-top: 0;
  }

  .heading-2-img-section {
    min-height: 300px;
  }

  .h2 {
    font-size: 25px;
  }

  .h2.h2-white {
    text-transform: uppercase;
    font-size: 1.5rem;
    line-height: 1.2;
  }

  .col-1 {
    width: 100%;
    min-height: 300px;
    display: none;
  }

  .col-1.flex-grid {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    min-height: 480px;
    margin-bottom: 40px;
    display: grid;
  }

  .bottom-img {
    height: 100%;
  }

  .col-2 {
    width: 100%;
    min-height: 300px;
  }

  .right-img-grid {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex-direction: column;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .top-img.margin-top-10, .top-img.margin-bottom-10 {
    height: 100%;
  }

  .heading-3-btn {
    text-align: center;
    width: 100%;
  }

  .heading-3-right-text {
    padding: 20px;
  }

  .h3-cta-text {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.3;
  }

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

  .footer-link.black {
    font-size: 14px;
  }

  .f-col.no-padding {
    padding-bottom: 0;
  }

  .footer-section {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .socials {
    width: 50%;
    margin-left: auto;
    margin-right: auto;
    bottom: 10px;
    right: 5%;
  }

  .arrow-up-2 {
    bottom: 10px;
    right: 5%;
  }

  .list._3-row {
    grid-template-columns: 1fr;
  }

  .bullet-list, .bullet-list.b {
    font-size: 14px;
  }

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

  .areas-list-item.areas-list-flex {
    font-size: 14px;
  }

  .footer-link-2 {
    margin-bottom: 5px;
    font-size: 14px;
  }

  .footer-link-2.black {
    font-size: 14px;
  }

  .heading-2-img-section-2 {
    min-height: 250px;
  }

  .section-info-wrapper-2 {
    margin-bottom: 20px;
  }

  .para {
    font-weight: 300;
  }

  .default-btn-2.margin-top-40.hover-white, .default-btn-2.margin-top-40.white {
    margin-top: 10px;
  }

  .title-container-2 {
    margin-bottom: 0;
  }

  .heading-2-img-section-3 {
    min-height: 300px;
  }

  .heading-2-img-section-3.no-img.grid-edit {
    grid-template-columns: 1fr;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }

  .title-container-3 {
    margin-bottom: 20px;
  }

  .contact-info-block {
    padding: 25px;
  }

  .contact-info-block.m-bottom-20.m-top-60 {
    margin-bottom: 0;
  }

  .icon-block {
    margin-right: 10px;
  }

  .cta-link {
    font-size: 1em;
  }

  .contactform-embed {
    margin-top: 0;
  }

  .icon {
    width: 48px;
    height: 48px;
    font-size: 1em;
  }

  .fs-cc-prefs_button {
    margin-bottom: 8px;
  }

  .fs-cc-banner_text {
    margin-right: 0;
  }

  .fs-cc-prefs_content, .fs-cc-prefs_component {
    padding: 24px;
  }

  .fs-cc-banner_buttons-wrapper {
    text-align: center;
    flex-direction: column-reverse;
    align-items: center;
    width: 100%;
  }

  .fs-cc-banner_button {
    width: 100%;
    margin-bottom: 10px;
  }

  .fs-cc-banner_close {
    position: absolute;
    inset: -22px auto auto 5px;
  }

  .icon-2 {
    color: var(--secondary);
  }

  .whatsapp-block {
    margin-bottom: 10px;
    margin-right: 10px;
    inset: auto 0% 5% auto;
  }

  .live-icon {
    width: 12px;
    height: 13px;
  }

  .whatsapp-container {
    width: 65px;
    height: 65px;
    bottom: 10px;
    right: 0;
  }

  .whatsapp-chat {
    width: 280px;
    max-width: 280px;
    height: 40vh;
    position: relative;
  }

  .livechat-button {
    width: 90%;
  }

  .img.ln {
    height: 150px;
  }

  .h1-small {
    font-size: 1.6rem;
  }

  .logo-overlay {
    width: 100%;
  }

  .modal-content {
    padding-left: 30px;
    padding-right: 30px;
  }

  .widget-block {
    width: auto;
    height: auto;
    padding: 20px;
    right: 10px;
  }

  .primary-btn.hovr-black.margin-top-20.mobil-btn {
    display: block;
  }

  .pop-head {
    padding-bottom: 0;
    font-size: 20px;
    line-height: 28px;
  }

  .gallery-grid {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
  }
}

#w-node-d6208e5c-7bf4-8a48-020d-9460f199e262-f199e252 {
  align-self: center;
}

#w-node-d6208e5c-7bf4-8a48-020d-9460f199e269-f199e252 {
  align-self: end;
}

#w-node-d6208e5c-7bf4-8a48-020d-9460f199e26d-f199e252 {
  align-self: center;
}

#w-node-d6208e5c-7bf4-8a48-020d-9460f199e272-f199e252 {
  align-self: end;
}

#w-node-d6208e5c-7bf4-8a48-020d-9460f199e276-f199e252, #w-node-d6208e5c-7bf4-8a48-020d-9460f199e27f-f199e252, #w-node-_9d17d85b-7bfb-fd6d-79b7-ebbed86329f6-840fe0b4 {
  align-self: center;
}

#w-node-_9d17d85b-7bfb-fd6d-79b7-ebbed86329fd-840fe0b4 {
  align-self: end;
}

#w-node-_9d17d85b-7bfb-fd6d-79b7-ebbed8632a01-840fe0b4 {
  align-self: center;
}

#w-node-_9d17d85b-7bfb-fd6d-79b7-ebbed8632a06-840fe0b4 {
  align-self: end;
}

#w-node-_9d17d85b-7bfb-fd6d-79b7-ebbed8632a0a-840fe0b4, #w-node-_9d17d85b-7bfb-fd6d-79b7-ebbed8632a13-840fe0b4 {
  align-self: center;
}

#w-node-_07a3a222-233d-f17e-f780-224ca7f7f7a9-840fe0b7, #w-node-_016f4534-27ca-56c7-055e-ed720ecfce2f-840fe0b7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

@media screen and (max-width: 767px) {
  #w-node-_16fd28ea-0d74-c0aa-1bd6-41cc8c094d94-8c094d91 {
    justify-self: start;
  }
}

@media screen and (max-width: 479px) {
  #w-node-d6208e5c-7bf4-8a48-020d-9460f199e25e-f199e252 {
    align-self: center;
  }

  #w-node-d6208e5c-7bf4-8a48-020d-9460f199e25f-f199e252, #w-node-_9d17d85b-7bfb-fd6d-79b7-ebbed86329f3-840fe0b4 {
    place-self: stretch stretch;
  }
}


@font-face {
  font-family: 'Fa brands 400';
  src: url('../fonts/fa-brands-400.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Fa sharp solid 900';
  src: url('../fonts/fa-sharp-solid-900.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Fa 300';
  src: url('../fonts/fa-light-300.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Fa solid 900';
  src: url('../fonts/fa-solid-900.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Fa 100';
  src: url('../fonts/fa-thin-100.ttf') format('truetype');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Fa duotone 900';
  src: url('../fonts/fa-duotone-900.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Fa 400';
  src: url('../fonts/fa-regular-400.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}