@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;
  --secondary: #3979e3;
  --primary: #15428b;
  --third: #227baf;
  --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(--black);
  text-transform: uppercase;
  -webkit-text-fill-color: inherit;
  background-clip: border-box;
  border-right: 1px solid #0000001a;
  height: 100%;
  padding-top: 25px;
  padding-bottom: 25px;
  font-size: 1rem;
  font-weight: 400;
  transition: background-color .45s ease-in-out, color .45s ease-in-out;
}

.nav-link:hover {
  background-image: linear-gradient(180deg, var(--secondary), var(--primary));
  color: var(--white);
  -webkit-text-fill-color: inherit;
  background-clip: border-box;
}

.nav-link.w--current {
  color: #ffd900;
  background-color: #1b1b1b;
}

.nav-link.contact-nav {
  background-color: var(--secondary);
  background-image: linear-gradient(180deg, var(--secondary), var(--primary));
  color: var(--white);
  transition: all .2s ease-in-out;
}

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

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

.brand {
  margin-right: auto;
}

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

.nav-menu {
  text-align: right;
  height: 100%;
}

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

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

.navbar {
  background-color: var(--white);
  border-radius: 5px;
  align-items: center;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  overflow: visible;
  box-shadow: 0 2px 8px #0003;
}

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

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

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

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

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

.dropdown-toggle.nav-link {
  color: var(--black);
  padding-top: 25px;
  padding-bottom: 25px;
}

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

.dropdown-toggle.nav-link-2.s {
  padding-right: 20px;
}

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

.hero-intro-text {
  color: var(--secondary);
  margin-bottom: 20px;
  font-size: 2rem;
  line-height: 1.75;
}

.banner-text {
  background-image: linear-gradient(78deg, var(--secondary), var(--primary));
  color: var(--transparent);
  letter-spacing: -1px;
  text-transform: none;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 34px;
  font-weight: 700;
  line-height: 40px;
}

.banner-text._0 {
  margin-bottom: 0;
}

.p {
  letter-spacing: -.3px;
  font-size: 17px;
  line-height: 26px;
}

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

.p.light.max {
  color: var(--white);
  width: 65%;
  margin-top: 7px;
  margin-bottom: 7px;
  margin-left: 1rem;
  font-size: 1rem;
  font-weight: 300;
}

.hero-section {
  background-color: #fff;
  background-image: linear-gradient(#fff0, #1c242873), url('../images/Banner-3.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-section.service1 {
  background-image: linear-gradient(#fff0, #1c242873), url('../images/Service1.webp');
  min-height: 60vh;
}

.hero-section.service2 {
  background-image: linear-gradient(#fff0, #1c242873), url('../images/Easy-Access-Shower.webp');
  min-height: 60vh;
}

.hero-section.service3 {
  background-image: linear-gradient(#fff0, #1c242873), url('../images/Service3.webp');
  background-position: 0 0, 50% 25%;
  min-height: 60vh;
}

.hero-section.service4 {
  background-image: linear-gradient(#fff0, #1c242873), url('../images/Contact-Us.webp');
  min-height: 60vh;
}

.hero-section.area {
  background-image: linear-gradient(#fff0, #1c242873), url('../images/Testimonials.webp');
  min-height: 60vh;
}

.hero-section.test {
  background-image: linear-gradient(#fff0, #1c242873), url('../images/Testimonials-1.webp');
  min-height: 60vh;
}

.hero-section.gallery {
  background-image: linear-gradient(#fff0, #1c242873), url('../images/Gallery.webp');
  min-height: 60vh;
}

.hero-section.contact {
  background-image: linear-gradient(#fff0, #1c242873), url('../images/Gallery.webp');
  background-position: 0 0, 50%;
  min-height: 60vh;
}

.hero-section.site-map, .hero-section.gallery {
  background-image: linear-gradient(#fff0, #1c242873), url('../images/Site-Map.webp');
  background-position: 0 0, 50% 65%;
  min-height: 60vh;
}

.hero_btn {
  background-color: var(--secondary);
  color: var(--white);
  border-radius: 12px;
  margin-top: 40px;
  margin-right: 20px;
  padding: 20px 40px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
}

.hero_btn.outline-btn {
  background-color: var(--primary);
  color: var(--white);
  border: 1px #ffe135;
  transition: all .2s ease-in-out;
}

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

.hero-card {
  border-left: 8px solid var(--primary);
  background-color: #e6eef5bf;
  flex-flow: column;
  align-items: flex-start;
  width: 45%;
  margin-top: 100px;
  margin-left: 5%;
  padding: 20px 25px;
  display: flex;
}

.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 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 {
  background-image: linear-gradient(296deg, var(--secondary), var(--primary));
  color: var(--transparent);
  letter-spacing: -1.5px;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 10px;
  padding-right: 10px;
  font-size: 34px;
  font-weight: 700;
  line-height: 1.5;
}

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

.section-info-title.contact {
  letter-spacing: -1.5px;
  text-transform: uppercase;
  font-size: 34px;
  font-weight: 700;
  line-height: 34px;
}

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

.services-desc {
  color: var(--black);
  font-size: 16px;
  line-height: 28px;
}

.services-text-block {
  border-bottom: 4px solid var(--primary);
  background-color: var(--white);
  flex-flow: column;
  justify-content: space-between;
  height: 290px;
  padding: 40px 20px 20px;
  display: flex;
  box-shadow: 1px 1px 3px #101b2240;
}

.section-line {
  background-color: var(--primary);
  width: 30px;
  height: 2px;
  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: 1500px;
  margin-left: auto;
  margin-right: auto;
}

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

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

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

.services-title {
  color: var(--primary);
  letter-spacing: -1px;
  text-transform: uppercase;
  margin-top: 0;
  font-size: 22px;
  font-weight: 700;
  line-height: 22px;
}

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

.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: 100%;
  min-height: 300px;
  max-height: 300px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  box-shadow: 1px 1px 3px #101b2240;
}

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

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

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

.left-section-para-container.padding-top-20 {
  flex-flow: column;
  align-items: flex-start;
  width: 100%;
  padding-top: 10px;
  display: flex;
}

.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 {
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  width: 48%;
  display: flex;
}

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

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

.left-text-area._100 {
  width: 100%;
  padding: 40px;
  position: relative;
}

.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, .haeding-1.mob {
  background-image: linear-gradient(180deg, var(--secondary), var(--primary));
  color: var(--primary);
  letter-spacing: -1px;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  width: auto;
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 2rem;
  font-weight: 700;
}

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

.right-double-img.image {
  background-image: url('../images/Project1.webp');
  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.s1-2 {
  background-image: url('../images/Wet-Room2.webp');
  background-position: 50%;
  background-size: cover;
  justify-content: flex-end;
  align-items: flex-start;
  display: flex;
}

.right-double-img.s2-2 {
  background-image: url('../images/Accessible-2.webp');
  background-position: 50%;
  background-size: cover;
  justify-content: flex-end;
  align-items: flex-start;
  display: flex;
}

.right-double-img.s3-2 {
  background-image: url('../images/Shower2.webp');
  background-position: 50%;
  background-size: cover;
  justify-content: flex-end;
  align-items: flex-start;
  display: flex;
}

.right-double-img.s4-2 {
  background-image: url('../images/Handicap1.webp');
  background-position: 50%;
  background-size: cover;
  justify-content: flex-end;
  align-items: flex-start;
  display: flex;
}

.title-container {
  flex-flow: column;
  align-items: flex-start;
  display: flex;
}

.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);
  color: var(--black);
  margin-top: 40px;
}

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

.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.black {
  border-color: var(--primary);
  background-color: var(--primary);
  color: var(--white);
}

.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(90deg, var(--secondary), var(--primary));
  justify-content: space-between;
  display: flex;
}

.section-hedaing-2-wrapper.display-flex.gradiant-reverse {
  background-image: linear-gradient(90deg, var(--primary), var(--secondary));
}

.section-hedaing-2-wrapper.display-flex.no-bg {
  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: 90px;
  padding-bottom: 90px;
}

.heading-2-img-section {
  background-image: linear-gradient(90deg, #fff0, var(--transparent)), url('../images/banner8.webp');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  width: 50%;
  min-height: 500px;
}

.h2 {
  background-image: linear-gradient(180deg, var(--secondary), var(--primary));
  color: var(--transparent);
  letter-spacing: -1.5px;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 0;
  font-size: 34px;
  line-height: 40px;
}

.h2.h2-white {
  color: var(--white);
  -webkit-text-fill-color: inherit;
  background-image: none;
  background-clip: border-box;
  margin-top: 10px;
  font-size: 2rem;
  font-weight: 600;
}

.h2.h1 {
  color: var(--white);
  -webkit-text-fill-color: inherit;
  background-image: none;
  background-clip: border-box;
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 2rem;
  font-weight: 600;
}

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

.bottom-img {
  background-image: url('../images/Banner-7.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 4px;
  height: 45%;
  min-height: 200px;
  transition: all .2s ease-in-out;
  box-shadow: 1px 1px 11px #3350635c;
}

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

.bottom-img.img-2 {
  background-image: url('../images/Banner4.webp');
  background-position: 50%;
  background-size: cover;
  box-shadow: 1px 1px 11px #3350635c;
}

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

.col-2 {
  flex-direction: column-reverse;
  justify-content: flex-start;
  width: 48%;
  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('../images/Banner-5.webp');
  background-position: 50%;
  background-size: cover;
  border-radius: 4px;
  margin-top: 20px;
  transition: all .2s ease-in-out;
  box-shadow: 1px 1px 11px #3350635c;
}

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

.top-img.margin-bottom-10 {
  background-image: url('../images/Banner-6.webp');
  background-position: 50%;
  background-size: cover;
  border-radius: 4px;
  min-height: 200px;
  margin-bottom: 20px;
  transition: all .2s ease-in-out;
  box-shadow: 1px 1px 11px #3350635c;
}

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

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

.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/Banner-6.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);
  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: var(--black);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.95;
  text-decoration: none;
  transition: all .3s ease-in-out;
  display: inline-block;
}

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

.footer-link.black {
  color: #000;
  font-size: 15px;
}

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

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

.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(--white);
  margin-top: 10px;
  padding-top: 75px;
  padding-bottom: 60px;
}

.footer-copy-section {
  background-color: var(--white);
  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);
  color: var(--white);
  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.2rem;
  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-social-icon.solid {
  font-family: "Fa sharp solid 900", sans-serif;
}

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

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

.socials {
  z-index: 1000;
  background-color: var(--secondary);
  justify-content: center;
  align-items: center;
  display: flex;
  position: fixed;
  inset: auto auto 20px 3%;
}

.social-button {
  background-color: var(--secondary);
  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:hover {
  background-color: var(--black);
  color: var(--white);
}

.arrow-up-2 {
  z-index: 1000;
  background-color: var(--third);
  justify-content: center;
  align-items: center;
  display: flex;
  position: fixed;
  inset: auto auto 20px 20px;
}

.back-to-top {
  border: 1.5px solid var(--white);
  background-color: var(--third);
  color: var(--white);
  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 {
  border-color: var(--primary);
  background-color: var(--white);
  color: var(--primary);
}

.back-to-top.w--current {
  background-color: var(--third);
}

.hyperlink {
  box-shadow: inset 0 -2px 0 0 var(--white);
  color: var(--white);
  padding-left: 2.5px;
  padding-right: 2.5px;
  font-weight: 700;
  text-decoration: none;
  transition: all .45s ease-in-out;
}

.hyperlink:hover {
  box-shadow: inset 0 -100px 0 0 var(--white);
  color: var(--primary);
}

.hyperlink.blue {
  box-shadow: inset 0 -2px 0 0 var(--primary);
  color: var(--primary);
}

.hyperlink.blue:hover {
  box-shadow: inset 0 -100px 0 0 var(--primary);
  color: var(--white);
}

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

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

.footer-link-2.black.w--current {
  font-family: "Fa sharp solid 900", sans-serif;
}

.heading-2-img-section-2 {
  background-image: url('../images/banner9.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  width: 50%;
  min-height: 500px;
}

.heading-2-img-section-2.s1-1 {
  background-image: url('../images/Disability-Wet-Room.webp');
  background-position: 50%;
  background-size: cover;
}

.heading-2-img-section-2.s2-1 {
  background-image: url('../images/Accessible1.webp');
  background-position: 50%;
  background-size: cover;
}

.heading-2-img-section-2.s3-1 {
  background-image: url('../images/Shower1.webp');
  background-position: 100%;
  background-size: cover;
}

.heading-2-img-section-2.s4-1 {
  background-image: url('../images/Handicap2.webp');
  background-position: 50%;
  background-size: cover;
}

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

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

.para.light {
  color: var(--white);
  letter-spacing: -.3px;
  font-size: 17px;
  line-height: 30px;
}

.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: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  align-content: center;
  align-items: center;
  min-height: auto;
  display: grid;
}

.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);
  letter-spacing: -1px;
  text-transform: capitalize;
  margin-bottom: 10px;
  font-size: 1.4em;
  font-weight: 700;
}

.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(--black);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.75;
  text-decoration: none;
}

.main-form {
  width: 100%;
  margin-top: 20px;
}

.icon {
  background-color: var(--primary);
  background-image: linear-gradient(180deg, var(--secondary), var(--primary));
  color: var(--white);
  border-radius: 10px;
  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-cont-info {
  align-items: center;
  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(--primary));
  color: var(--white);
  width: 26px;
  height: 26px;
  margin-right: 5px;
  font-size: 12px;
}

.header-link-cont {
  color: var(--black);
  text-decoration: none;
}

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

.fs-cc-prefs_button {
  border: 2px solid var(--transparent);
  background-color: #4353ff;
  background-image: linear-gradient(180deg, var(--primary), var(--secondary));
  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;
  background-image: none;
}

.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: #616161;
  margin-right: 24px;
}

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

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

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

.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: #021a7c;
  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: #03052499;
  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(--transparent);
  background-color: #4353ff;
  background-image: linear-gradient(80deg, var(--primary), var(--secondary));
  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);
  color: var(--primary);
  background-color: #f5f5f5;
  background-image: none;
}

.fs-cc-banner_close {
  opacity: 1;
  cursor: pointer;
  background-color: #fff;
  border-radius: 500px;
  margin-left: 12px;
  padding: 10px;
  box-shadow: 1px 1px 12px #0000001a;
}

.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: 100px;
  display: inline-flex;
}

.h1-bold {
  font-weight: 400;
}

.heading-light {
  color: var(--secondary);
  font-size: 18px;
  font-weight: 400;
}

.image-3 {
  width: 175px;
}

.minimalist-text-wrapper {
  z-index: 1;
  width: 100%;
  height: auto;
  padding-left: 0;
  position: absolute;
}

.minimalist-padding-text {
  width: 100%;
  max-width: 1560px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 4rem;
  padding-right: 4rem;
}

.minimalist-curtain-block {
  width: 33.5%;
  height: 100%;
  position: absolute;
}

.minimalist-curtain-block.is-1 {
  z-index: 10;
  pointer-events: auto;
  transform-origin: 50% 0;
  background-color: #fff;
  inset: 0%;
}

.minimalist-curtain-block.is-3 {
  z-index: 10;
  transform-origin: 50% 0;
  background-color: #fff;
  inset: 0% 0% 0% 66.66%;
}

.minimalist-curtain-block.is-2 {
  z-index: 10;
  perspective-origin: 50%;
  transform-origin: 50% 100%;
  background-color: #fff;
  inset: 0% 0% 0% 33.33%;
  transform: rotate(180deg);
}

.minimalist-image-wrapper {
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: sticky;
  top: 0;
}

.minimalist-section {
  width: 100%;
  height: 95vh;
  min-height: auto;
  position: relative;
}

.minimalist-content {
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 95vh;
  display: flex;
  position: sticky;
  top: 0%;
  overflow: hidden;
}

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

.expert-section {
  background-color: var(--secondary);
  background-image: linear-gradient(99deg, var(--secondary), var(--primary));
  width: 100%;
  padding-top: 100px;
  padding-bottom: 100px;
}

.expert-list-item-line {
  background-color: var(--third);
  opacity: .4;
  width: 100%;
  height: 2px;
  position: relative;
}

.expert-list-item-number {
  color: var(--white);
  letter-spacing: -1px;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.5;
}

.expert-list-item-line-overlay {
  background-color: var(--white);
  width: 100%;
  height: 2px;
  position: absolute;
  top: 0%;
  left: 0%;
  right: 0%;
}

.container-large {
  width: 100%;
  max-width: 1560px;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
}

.expert-grid-container {
  z-index: 99;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  width: 100%;
  height: auto;
  display: grid;
  position: relative;
}

.expert-wrapper {
  align-items: center;
  width: 100%;
  max-width: 100vw;
  display: flex;
  position: sticky;
  top: 0;
  overflow: hidden;
}

.expert-list-item {
  grid-row-gap: 10px;
  flex-flow: column;
  padding-top: 10px;
  display: flex;
}

.expert-left-col-wrapper {
  z-index: 1;
  flex-flow: column;
  align-items: flex-start;
  margin-left: 0;
  display: flex;
}

.expert-list-item-line-wrapper {
  position: relative;
}

.expert-list-item-image {
  z-index: 9;
  object-fit: cover;
  width: 40%;
  max-width: none;
  height: 100%;
  max-height: none;
  display: block;
  position: absolute;
  top: 0%;
  left: 0%;
}

.expert-list-item-content-wrapper {
  grid-row-gap: 1.4rem;
  flex-flow: column;
  display: flex;
}

.expert-heading {
  color: var(--white);
  letter-spacing: -2px;
  margin-bottom: 16px;
  margin-left: 1rem;
  padding-left: 0;
  font-size: 54px;
  font-weight: 700;
  line-height: 58px;
}

.expert-list-item-text-wrapper {
  justify-content: space-between;
  margin-top: 1.4rem;
  text-decoration: none;
  display: flex;
}

.expert-bg-image-wrapper {
  z-index: 1;
  object-fit: cover;
  width: auto;
  max-width: 100%;
  display: flex;
  position: absolute;
  top: 0%;
  left: 0%;
  right: 0%;
  overflow: hidden;
}

.expert-content-wrapper {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.expert-bg-image-overlay {
  z-index: 2;
  background-color: #ffffff73;
  width: 100%;
  height: 100%;
  display: none;
  position: absolute;
  inset: 0%;
}

.expert-padding {
  width: 100%;
  height: 100%;
  padding-left: 1rem;
  padding-right: 2.5rem;
}

.space-huge {
  width: 100%;
  padding-top: 6rem;
  padding-bottom: 0;
  display: none;
}

.expert-list-item-text {
  color: var(--white);
  letter-spacing: -1px;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
}

.padding-section-large {
  width: 100%;
  height: 100%;
}

.button {
  color: #fff;
  text-align: center;
  background-color: #000;
  border-radius: 5px;
  padding: 10px;
  font-size: 14px;
  font-weight: 400;
}

.button.is-filled {
  color: #fcfcfc;
  background-color: #171d1e;
  border: 1px #000;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.button.is-filled.with-icon {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  background-color: var(--secondary);
  border-width: 1px;
  border-color: #0000;
  border-radius: 5px;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
  padding: 15px 20px;
  font-size: 15px;
  display: flex;
  overflow: hidden;
}

.button.is-filled.gallery {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  background-color: var(--secondary);
  border-width: 1px;
  border-color: #0000;
  border-radius: 5px;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
  margin-left: 1rem;
  padding: 15px 20px;
  font-size: 15px;
  display: flex;
  overflow: hidden;
}

.button.is-filled.border {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  border: 1px solid var(--primary);
  background-color: var(--secondary);
  background-image: linear-gradient(180deg, var(--secondary), var(--primary));
  border-radius: 5px;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
  padding: 15px 20px;
  font-size: 15px;
  display: flex;
  overflow: hidden;
}

.button.is-filled.cta {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  background-color: var(--primary);
  background-image: linear-gradient(189deg, var(--secondary), var(--primary));
  border-width: 1px;
  border-color: #0000;
  border-radius: 5px;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
  margin-left: auto;
  margin-right: auto;
  padding: 15px 20px;
  font-size: 16.5px;
  font-weight: 600;
  display: flex;
  overflow: hidden;
}

.btn_fourth-bg {
  background-color: #fcfcfc;
  position: absolute;
  inset: auto 0% 0%;
}

.button_arrow-block {
  z-index: 3;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.button_arrow-block.is-second {
  background-color: #fcfcfc;
  border-radius: 3px;
  padding: 5px;
  overflow: hidden;
}

.btn_fourth-text {
  z-index: 3;
  font-size: 16.5px;
  position: relative;
}

.button_arrow-active {
  opacity: 0;
  position: absolute;
  inset: 0% auto auto 0%;
}

.button_arrow-active.is-2 {
  top: 5px;
  left: 5px;
}

.overlay {
  background-color: #fff;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
  width: 20%;
  height: 4%;
  position: absolute;
  box-shadow: 0 1px 5px #00000012;
}

.underline {
  background-color: var(--secondary);
  width: 0%;
  height: 4px;
  position: absolute;
  inset: auto 0% 0%;
}

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

.container-2 {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 110px;
  padding-left: 10px;
  padding-right: 10px;
  display: flex;
}

.brand-2 {
  width: 110px;
  position: relative;
}

.brand-2.w--current {
  width: 115px;
}

.navbar-2 {
  background-color: #0000;
  justify-content: center;
  align-items: flex-start;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: fixed;
  inset: 50px 0% auto;
}

.nav-link-2 {
  letter-spacing: -.5px;
  text-transform: uppercase;
  padding: 26px 20px;
  font-size: 16px;
  font-weight: 600;
  transition: all .25s ease-in;
}

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

.nav-link-2.w--current {
  color: var(--black);
  text-decoration: none;
}

.nav-link-wrapper {
  position: relative;
}

.footer-top-2 {
  grid-column-gap: 4.7rem;
  grid-row-gap: 4.7rem;
  grid-template-rows: auto;
  grid-template-columns: 1.25fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 120px;
  padding-top: 0;
  padding-bottom: 100px;
  display: grid;
}

.footer-link-wrapper {
  grid-row-gap: 1rem;
  color: #f8f8f8;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 2rem;
  text-decoration: none;
  display: flex;
}

.footer-social-link-2 {
  background-color: var(--third);
  color: var(--white);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  font-family: "Fa solid 900", sans-serif;
  font-size: 18px;
  text-decoration: none;
  transition: all .5s linear;
  display: flex;
}

.footer-social-link-2:hover {
  background-color: var(--secondary);
  color: #fff;
}

.footer-social-link-2.brand {
  color: var(--white);
  font-family: "Fa brands 400", sans-serif;
  font-size: 20px;
  text-decoration: none;
  display: none;
}

.footer-link-item-2 {
  font-size: 16px;
  line-height: 26px;
}

.container-medium-4 {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.footer-component-one {
  background-color: var(--primary);
  margin-top: 150px;
}

.footer-component-one._0 {
  margin-top: 0;
}

.paragraph-large-38 {
  font-size: 1.125rem;
  line-height: 1.625rem;
}

.paragraph-large-38.copyright {
  color: var(--white);
  background-color: #0000;
  border-width: 0;
  padding-top: 0;
  padding-bottom: 0;
  font-size: 16px;
}

.heading-medium {
  color: #101117;
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
}

.heading-medium.color-gray {
  color: #fff;
  letter-spacing: -1px;
  font-size: 21px;
  line-height: 32px;
}

.call-to-action-box {
  background-color: var(--secondary);
  text-align: center;
  border: 0 solid #393e40;
  border-radius: 29px;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: -138px;
  padding-top: 70px;
  padding-bottom: 70px;
  display: flex;
}

.padding-global {
  border: 0 solid #000;
  border-radius: 0;
  padding-top: 0;
  padding-bottom: 0;
  font-style: normal;
  position: static;
}

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

.section-title-17 {
  color: #fff;
  width: 85%;
  margin: 0 auto;
  font-size: 38px;
  font-weight: 600;
  line-height: 44px;
}

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

.footer-social-wrap {
  grid-column-gap: .625rem;
  grid-row-gap: .625rem;
  margin-top: 32px;
  display: flex;
}

.footer-bottom-two {
  justify-content: space-between;
  align-items: center;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
}

.div-block-265 {
  position: relative;
}

.footer-container {
  background-color: var(--primary);
  max-width: 90%;
  margin-top: 0;
  padding-bottom: 0;
}

.paragraph-large {
  max-width: 45ch;
  font-size: 1.125rem;
  line-height: 1.625rem;
}

.paragraph-large.footer-about-text {
  color: #f8f8f8;
  text-transform: capitalize;
  max-width: 35ch;
  margin-bottom: 2rem;
  padding-top: 30px;
  font-size: 16px;
  line-height: 24px;
}

.paragraph-large.w {
  color: #f8f8f8;
  max-width: 48ch;
  font-size: 16px;
  line-height: 120%;
  text-decoration: none;
  transition: color .45s ease-in-out;
}

.paragraph-large.w:hover {
  color: #7facf7;
}

.padding-global-five {
  background-color: #0000;
  border-bottom: 0 solid #d9d9d9;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}

.padding-global-five.other {
  background-color: var(--secondary);
  background-image: none;
  padding-top: 30px;
  padding-bottom: 100px;
}

.call-to-action-btn-wrapper {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  padding-top: 32px;
  display: flex;
}

.image-4 {
  width: 200px;
}

.div-block-266 {
  flex-flow: column;
  align-items: center;
  display: flex;
}

.nav-info {
  background-color: var(--primary);
  background-image: linear-gradient(180deg, var(--secondary), var(--primary));
  height: 50px;
  padding-top: 15px;
  padding-bottom: 15px;
  position: static;
}

.nav-block {
  justify-content: space-between;
  align-items: center;
  width: 95%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.flex-row {
  justify-content: center;
  align-items: center;
  text-decoration: none;
  display: flex;
}

.flex-row.auto {
  margin-left: auto;
  margin-right: 15px;
}

.mr-15 {
  margin-right: 15px;
}

.tex-top {
  color: #fff;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: Open Sans, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 120%;
}

.live-chat-top-text {
  color: var(--primary);
  letter-spacing: -.7px;
  font-size: 15px;
  font-weight: 700;
  line-height: 26px;
  position: static;
}

.whatsapp-block {
  z-index: 30;
  flex-direction: column;
  align-items: flex-end;
  margin-bottom: 20px;
  margin-right: 20px;
  display: none;
  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: 12px;
  line-height: 17px;
}

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

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

.chat-section {
  background-color: #b7b5b5;
  background-image: url('../images/wa-background.webp');
  background-position: 50%;
  background-size: cover;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 50%;
  padding: 16px 15px;
  display: flex;
  position: relative;
}

.whatsapp-icon {
  filter: invert();
  color: #fff;
  width: 32px;
  display: block;
}

.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: #b4b4b45c;
  border-radius: 8px;
  width: 100%;
  padding: 15px;
}

.whatsapp-container {
  z-index: 30;
  border: 1px solid var(--white);
  background-color: var(--white);
  cursor: pointer;
  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: var(--white);
  transform: scale(1.05);
}

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

.livechat-button {
  background-color: #000;
  background-image: linear-gradient(280deg, var(--primary), var(--secondary));
  cursor: pointer;
  border-radius: 200px;
  justify-content: center;
  align-items: center;
  width: 80%;
  height: 42px;
  text-decoration: none;
  transition: all .2s;
  display: flex;
}

.livechat-button:hover {
  background-color: #326db1;
}

.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: 45px;
  height: 45px;
  margin-right: 10px;
}

.h1-light {
  font-weight: 300;
}

.default-bullet-list {
  margin-bottom: 0;
  padding-left: 20px;
}

.default-bullet-list.margin-b-t-20 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  margin-top: 15px;
  margin-bottom: 15px;
  padding-left: 0;
  list-style-type: none;
  display: grid;
}

.default-bullet-list.margin-b-t-20.list-grid {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 10px;
  margin-bottom: 10px;
  display: grid;
}

.default-bullet-list.margin-b-t-20.row1 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  margin-top: 10px;
  margin-bottom: 10px;
  display: grid;
}

.default-bullet-list.margin-b-t-20.area {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 10px;
  margin-bottom: 10px;
  display: grid;
}

.default-bullet-list.margin-b-t-20.list-grid-3 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 10px;
  margin-bottom: 10px;
  display: grid;
}

.default-bullet-list.margin-b-t-20.site-map {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  margin-top: 10px;
  margin-bottom: 10px;
  display: grid;
}

.list-item-2 {
  color: #787879;
  align-items: center;
  padding-top: 5px;
  padding-bottom: 5px;
  font-weight: 500;
  display: flex;
}

.list-item-2.white {
  color: #e4e4e4;
  padding-top: 0;
}

.list-item-2.w {
  color: var(--white);
}

.bullet-heading {
  color: var(--black);
  justify-content: center;
  align-items: center;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 17px;
  font-weight: 400;
  display: flex;
}

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

.icon-image {
  width: 32px;
  margin-right: 5px;
}

.icon-image.mag {
  width: 20px;
  margin-right: 10px;
}

.fa-solid {
  margin-left: 5px;
  font-family: "Fa sharp solid 900", sans-serif;
}

.card-bullet-item {
  color: #838383;
  align-items: center;
  padding-top: 5px;
  padding-bottom: 5px;
  font-weight: 500;
  list-style-type: none;
  display: flex;
}

.card-bullet-item.z {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
}

.features-grid_item {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  box-shadow: 9px 9px 0 0 var(--secondary);
  background-color: #0000002e;
  border: 1.2px dashed #000;
  border-radius: 18px;
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  margin-bottom: 1rem;
  padding: 2rem 1.5rem;
  display: flex;
  position: relative;
}

.features-grid_item._0 {
  text-align: left;
  margin-bottom: 0;
}

._1x3-grid-3 {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  justify-items: stretch;
  margin-top: 60px;
}

._1x3-grid-3._4 {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-columns: 1fr 1fr;
}

.text-subheader-padding {
  max-width: 45rem;
  margin-top: 1rem;
  margin-left: auto;
  margin-right: auto;
}

.text-subheader-padding.blue {
  max-width: 55rem;
  margin-top: 0;
}

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

.text-align-center.white {
  background-color: var(--white);
  border-radius: 8px;
  margin-top: 40px;
  padding-top: 14px;
  padding-bottom: 14px;
}

.text-align-center.top {
  margin-top: 60px;
}

.text-custom-gray {
  color: var(--white);
  margin-top: 20px;
  margin-bottom: 40px;
  font-size: 17px;
  line-height: 24px;
}

.text-custom-gray.box {
  color: var(--white);
  margin-top: 10px;
  margin-bottom: 0;
}

.text-custom-gray.blue {
  color: var(--primary);
  letter-spacing: -.5px;
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 600;
}

.heading-4 {
  color: var(--white);
  letter-spacing: -2px;
  text-transform: capitalize;
  margin-top: 0;
  margin-bottom: 25px;
  font-size: 50px;
  font-weight: 700;
  line-height: 55px;
}

.container-small, .container-large-3 {
  width: 100%;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
}

.padding-bottom {
  padding-top: 0;
  padding-left: 0;
  padding-right: 0;
}

.card-bullet {
  margin-top: 20px;
  padding-left: 0;
}

.text-size-medium-4 {
  font-size: 1.25rem;
}

.text-size-medium-4.text-weight-semibold {
  color: var(--white);
  letter-spacing: -1px;
  margin-top: 10px;
  margin-bottom: 0;
  font-size: 26px;
  font-weight: 700;
  line-height: 30px;
}

.text-size-medium-4.blue {
  color: var(--primary);
  letter-spacing: -1px;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 26px;
  font-weight: 700;
  line-height: 30px;
}

.text-size-medium-4.blue.low {
  margin-bottom: 10px;
}

.padding-section-large-3 {
  background-image: linear-gradient(133deg, var(--primary), var(--secondary));
  padding-top: 100px;
  padding-bottom: 100px;
}

.features-grid_feature-icon-div {
  box-shadow: 4px 7px 0 0 var(--secondary);
  background-color: #fff;
  border: 1px solid #9b9b9b;
  border-radius: 99px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 4rem;
  height: 4rem;
  display: flex;
  position: absolute;
  inset: -2rem 2rem auto auto;
}

.icon-height-medium {
  height: 2rem;
}

.icon-height-medium.is-high-z {
  z-index: 1;
  position: relative;
}

.padding-global-3 {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.h4-small {
  color: var(--white);
  margin-top: 20px;
  margin-bottom: 0;
  font-weight: 600;
  text-decoration: underline;
}

.bullet-heading-3 {
  color: var(--white);
  align-items: center;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 400;
  display: flex;
}

.card-icon-2 {
  color: var(--white);
  justify-content: center;
  align-items: center;
  margin-right: 8px;
  font-family: "Fa solid 900", sans-serif;
  display: flex;
}

.area-map {
  filter: grayscale(65%);
  width: 100%;
  margin-top: 20px;
  margin-bottom: 10px;
}

.to-follow {
  font-size: 25px;
  line-height: 30px;
}

.map-section {
  margin-bottom: -10px;
}

.contact-map {
  filter: grayscale(65%);
}

.site-link {
  color: var(--black);
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: color .45s ease-in-out;
}

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

.foot-link {
  opacity: .7;
  color: var(--white);
  text-decoration: none;
  transition: opacity .45s ease-in-out;
}

.foot-link:hover {
  opacity: 1;
}

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

.fs-cc-banner_close-2 {
  opacity: 1;
  cursor: pointer;
  background-color: #fff;
  border-radius: 500px;
  margin-left: 12px;
  padding: 10px;
  box-shadow: 1px 1px 12px #0000001a;
}

.fs-cc-prefs_component-2 {
  z-index: 1002;
  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_component-2 {
  z-index: 1000;
  background-color: #f5f6ff;
  border-top: 1px solid #4353ff29;
  padding: 24px 32px;
  display: none;
  position: fixed;
  inset: auto 0% 0%;
}

.text-block {
  color: var(--primary);
  font-family: "Fa sharp solid 900", sans-serif;
  font-size: 2rem;
}

@media screen and (min-width: 1920px) {
  .livechat-button:hover {
    background-color: #000;
    transform: scale(1.05);
  }
}

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

  .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 {
    flex-flow: column;
    align-items: stretch;
    width: 100%;
    display: flex;
  }

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

  .dropdown-list.w--open {
    flex-flow: column;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    min-width: auto;
    display: block;
    position: relative;
  }

  .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;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .navigatio-bar, .dropdown-toggle.nav-link {
    width: 100%;
  }

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

  .dropdown-toggle.nav-link-2.s {
    width: 100%;
  }

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

  .p.light.max {
    margin-left: 0;
    font-size: 1.15rem;
  }

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

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

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

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

  .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._100 {
    background-color: var(--primary);
    width: 100%;
  }

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

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

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

  .right-double-img.s1-2, .right-double-img.s2-2, .right-double-img.s3-2, .right-double-img.s4-2 {
    width: 100%;
    height: 500px;
    margin-top: 100px;
  }

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

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

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

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

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

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

  .minimalist-section {
    height: 80vh;
    margin-top: 60px;
  }

  .minimalist-content {
    height: 80vh;
  }

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

  .expert-list-wrapper {
    grid-row-gap: 1rem;
    flex-flow: column;
    display: flex;
  }

  .expert-grid-container {
    grid-row-gap: 1rem;
    flex-flow: column;
    justify-content: flex-start;
    align-items: stretch;
    display: flex;
  }

  .expert-wrapper {
    height: auto;
    min-height: 100vh;
    position: relative;
  }

  .expert-list-item {
    grid-column-gap: 2rem;
    flex-flow: row-reverse;
    padding-top: 0;
  }

  .expert-list-item.is-alternate {
    flex-flow: row;
  }

  .expert-list-item-line-wrapper {
    width: 100%;
  }

  .expert-list-item-image {
    object-fit: cover;
    width: 100%;
    max-width: 50%;
    height: 16.3em;
    max-height: 20em;
    margin-top: .2rem;
    position: relative;
  }

  .expert-list-item-content-wrapper {
    grid-row-gap: .75rem;
    flex: 1;
    align-items: flex-start;
  }

  .expert-heading {
    margin-left: 0;
    font-size: 40px;
    line-height: 44px;
  }

  .expert-list-item-text-wrapper {
    align-items: center;
    width: 100%;
  }

  .expert-bg-image-wrapper {
    justify-content: flex-end;
  }

  .space-huge {
    display: block;
  }

  .expert-list-item-text {
    font-size: 1.5rem;
    font-weight: 400;
  }

  .button.is-filled.gallery {
    margin-left: 0;
  }

  .underline {
    display: none;
  }

  .nav-menu-2 {
    background-color: var(--white);
    text-align: left;
  }

  .container-2 {
    flex-flow: row;
    height: auto;
  }

  .brand-2.w--current {
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .nav-link-2 {
    padding-top: 17px;
    padding-bottom: 17px;
  }

  .nav-link-wrapper {
    text-align: left;
  }

  .footer-top-2 {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
    grid-template-columns: 1fr 1.9fr;
    grid-auto-flow: row;
    place-items: start;
    padding-top: 0;
    padding-bottom: 60px;
    padding-left: 0;
  }

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

  .footer-social-link-2:hover {
    color: #000;
    -webkit-text-fill-color: inherit;
    background-clip: border-box;
  }

  .container-medium-4 {
    margin-left: auto;
    margin-right: auto;
  }

  .footer-component-one {
    margin-top: 100px;
  }

  .paragraph-large-38 {
    padding-top: 30px;
  }

  .paragraph-large-38.copyright {
    padding-top: 0;
    font-size: 16px;
    line-height: 26px;
  }

  .call-to-action-box {
    flex-flow: column;
    margin-top: -180px;
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .padding-global {
    padding-top: 0;
    padding-bottom: 0;
  }

  .section-title-17 {
    margin-left: auto;
    margin-right: auto;
    padding-top: 0;
    font-size: 26px;
    line-height: 38px;
  }

  .footer-subscribe {
    padding-top: 0;
  }

  .footer-bottom-two {
    justify-content: space-between;
    align-items: center;
  }

  .footer-container {
    padding-top: 100px;
  }

  .padding-global-five {
    border: 0 solid #000;
    border-bottom-color: #50504f;
    padding-left: 0;
    padding-right: 0;
  }

  .padding-global-five.other {
    border-bottom-width: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .call-to-action-btn-wrapper {
    text-align: right;
    justify-content: center;
    align-items: center;
    padding-top: 24px;
  }

  .tex-top {
    letter-spacing: 0;
    font-size: 13px;
  }

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

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

  .default-bullet-list.margin-b-t-20.list-grid, .default-bullet-list.margin-b-t-20.row1, .default-bullet-list.margin-b-t-20.area, .default-bullet-list.margin-b-t-20.list-grid-3, .default-bullet-list.margin-b-t-20.site-map {
    grid-template-columns: 1fr 1fr;
    width: 100%;
  }

  .features-grid_item {
    margin-bottom: 2rem;
  }

  ._1x3-grid-3 {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
    grid-template-columns: 1fr;
    margin-top: 20px;
  }

  ._1x3-grid-3._4 {
    grid-template-columns: 1fr;
  }

  .text-subheader-padding {
    margin-top: 0;
    margin-left: 0;
  }

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

  .text-align-center.white {
    margin-top: 20px;
    padding-left: 26px;
    padding-right: 26px;
  }

  .text-custom-gray {
    text-align: left;
  }

  .text-custom-gray.blue {
    text-align: center;
    font-size: 18px;
  }

  .heading-4 {
    text-align: left;
    margin-bottom: 10px;
    font-size: 34px;
    line-height: 40px;
  }

  .padding-bottom {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .text-size-medium-4.text-weight-semibold {
    margin-bottom: 10px;
  }

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

  .features-grid_feature-icon-div {
    right: 1rem;
  }
}

@media screen and (max-width: 767px) {
  .navigatio-bar {
    padding-bottom: 0;
    position: static;
  }

  .banner-text {
    font-size: 25px;
    line-height: 32px;
  }

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

  .p.light.max {
    margin-left: 0;
    font-size: 1rem;
  }

  .hero-section {
    min-height: 70vh;
  }

  .hero-section.service1, .hero-section.service2, .hero-section.service3, .hero-section.service4, .hero-section.area, .hero-section.test, .hero-section.gallery, .hero-section.contact, .hero-section.site-map, .hero-section.gallery {
    min-height: 45vh;
  }

  .hero-card {
    width: 90%;
    margin: 60px auto;
  }

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

  .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._100 {
    padding: 30px;
  }

  .left-text-area._100.bg-white {
    padding-top: 20px;
  }

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

  .right-double-img.s1-2, .right-double-img.s2-2, .right-double-img.s3-2, .right-double-img.s4-2 {
    height: 300px;
    margin-top: 32px;
    margin-bottom: 0;
  }

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

  .h2 {
    letter-spacing: -1px;
    font-size: 26px;
    line-height: 34px;
  }

  .h2.h2-white {
    letter-spacing: -1px;
    font-size: 28px;
  }

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

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

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

  .heading-2-img-section-2.s1-1, .heading-2-img-section-2.s2-1, .heading-2-img-section-2.s3-1, .heading-2-img-section-2.s4-1 {
    min-height: 300px;
  }

  .para.light {
    font-size: 16px;
    line-height: 28px;
  }

  .header-contact {
    display: none;
  }

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

  .expert-list-item-number {
    font-size: 1rem;
  }

  .expert-list-item-image {
    height: 13.1em;
  }

  .expert-heading {
    letter-spacing: -1.5px;
    font-size: 36px;
    line-height: 42px;
  }

  .expert-list-item-text {
    font-size: 1.2rem;
  }

  .button.is-filled.gallery {
    margin-left: 0;
  }

  .nav-menu-2 {
    height: auto;
  }

  .navbar-2 {
    position: absolute;
    top: 115px;
  }

  .footer-top-2 {
    grid-row-gap: 2.7rem;
    grid-template-columns: 1fr;
    margin-top: 60px;
    padding: 0 0 60px;
  }

  .container-medium-4 {
    display: block;
  }

  .paragraph-large-38.copyright {
    margin-bottom: .5rem;
    font-size: 1rem;
  }

  .call-to-action-box {
    text-align: center;
    border-bottom-width: 1px;
    flex-flow: column;
    padding-left: 20px;
    padding-right: 20px;
  }

  .padding-global {
    padding-top: 0;
    padding-bottom: 0;
    display: block;
  }

  .section-title-17 {
    width: 95%;
    margin-top: 0;
    font-size: 24px;
    line-height: 32px;
  }

  .footer-bottom-two {
    flex-flow: column;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .padding-global-five {
    border-bottom-width: 0;
    padding-left: 0;
    padding-right: 0;
    position: relative;
  }

  .padding-global-five.other {
    border-bottom-width: 0;
    padding-bottom: 60px;
  }

  .call-to-action-btn-wrapper {
    text-align: center;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    padding-top: 0;
    position: static;
  }

  .nav-info {
    height: auto;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .nav-block {
    flex-flow: column;
    justify-content: center;
  }

  .flex-row {
    margin-bottom: 15px;
  }

  .flex-row.auto {
    margin-left: 0;
    margin-right: 0;
  }

  .default-bullet-list.margin-b-t-20.list-grid {
    grid-template-columns: 1fr;
  }

  .features-grid_item {
    padding: 2rem;
  }

  ._1x3-grid-3 {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    grid-template-columns: 1fr;
  }

  .text-subheader-padding {
    max-width: 38rem;
  }

  .text-custom-gray, .text-custom-gray.box, .text-custom-gray.blue {
    font-size: 16px;
  }

  .heading-4 {
    letter-spacing: -1.5px;
    font-size: 28px;
    line-height: 34px;
  }

  .padding-bottom {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .padding-section-large-3 {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .padding-global-3 {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}

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

  .drop-down-link {
    padding-top: 12px;
    padding-bottom: 12px;
    font-size: 15px;
  }

  .hero-intro-text {
    font-size: 1.5rem;
  }

  .banner-text {
    font-size: 20px;
    font-weight: 600;
    line-height: 24px;
  }

  .banner-text._0 {
    font-size: 22px;
  }

  .p {
    font-size: 15px;
    font-weight: 400;
    line-height: 24px;
  }

  .p.light.max {
    width: 100%;
  }

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

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

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

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

  .section-info-title.contact {
    font-size: 28px;
    line-height: 32px;
  }

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

  .services-desc {
    font-size: 15px;
    line-height: 24px;
  }

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

  .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: 0;
    padding-left: 40px;
    padding-right: 40px;
  }

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

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

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

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

  .haeding-1.mob {
    color: var(--transparent);
    text-transform: uppercase;
    margin-top: 0;
    font-size: 22px;
    line-height: 28px;
  }

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

  .right-double-img.s1-2, .right-double-img.s2-2, .right-double-img.s3-2, .right-double-img.s4-2 {
    height: 300px;
  }

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

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

  .h2 {
    margin-bottom: 10px;
    font-size: 24px;
    line-height: 30px;
  }

  .h2.h2-white {
    text-transform: uppercase;
    margin-bottom: 10px;
    font-size: 20px;
    line-height: 25px;
  }

  .h2.h1 {
    text-transform: uppercase;
    margin-bottom: 10px;
    font-size: 1.4rem;
    line-height: 1.2;
  }

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

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

  .socials {
    bottom: 10px;
    right: 5%;
  }

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

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

  .para.light {
    font-size: 15px;
    font-weight: 400;
    line-height: 24px;
  }

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

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

  .heading-2-img-section-3.no-img.grid-edit {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    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 {
    justify-items: start;
    margin-bottom: 0;
    padding-bottom: 0;
  }

  .cta-text-contact {
    margin-bottom: 0;
    font-size: 20px;
    line-height: 28px;
  }

  .icon-block {
    justify-content: flex-start;
    margin-bottom: 15px;
    margin-right: 0;
  }

  .contact-info-text {
    align-items: flex-start;
  }

  .cta-link {
    font-size: 15px;
  }

  .main-form {
    margin-top: 0;
  }

  .icon {
    flex: none;
    width: 40px;
    height: 40px;
    font-size: 1.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;
  }

  .minimalist-padding-text {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .minimalist-section {
    height: 55vh;
    margin-top: 0;
  }

  .minimalist-content {
    height: 55vh;
  }

  .expert-list-item, .expert-list-item.is-alternate {
    flex-flow: column-reverse;
  }

  .expert-list-item-image {
    max-width: 100%;
  }

  .expert-heading {
    font-size: 26px;
    line-height: 32px;
  }

  .expert-padding {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .space-huge {
    padding-top: 0;
  }

  .button.is-filled.cta {
    margin-top: 20px;
  }

  .btn_fourth-text {
    font-size: 15px;
  }

  .navbar-2 {
    top: 100px;
  }

  .nav-link-2 {
    padding-top: 12px;
    padding-bottom: 12px;
    font-size: 15px;
  }

  .footer-top-2 {
    grid-column-gap: 4.6rem;
    grid-row-gap: 1.5rem;
    grid-template-columns: 1.9fr;
    grid-auto-flow: row;
    place-items: center start;
    padding: 0 0 40px;
  }

  .footer-link-wrapper {
    margin-top: 1rem;
  }

  .paragraph-large-38 {
    display: inline-block;
  }

  .paragraph-large-38.copyright {
    font-size: 15px;
    line-height: 26px;
  }

  .heading-medium.color-gray {
    letter-spacing: -.5px;
    margin-top: 20px;
    margin-bottom: 10px;
    display: inline-block;
  }

  .call-to-action-box {
    text-align: left;
    flex-flow: column;
    justify-content: center;
    align-items: flex-start;
    padding: 32px 20px 20px;
  }

  .padding-global {
    padding: 0;
  }

  .section-title-17 {
    text-align: center;
    width: 90%;
    margin-top: 0;
    font-size: 19px;
    font-weight: 400;
    line-height: 28px;
  }

  .footer-subscribe {
    margin-left: -3px;
  }

  .footer-bottom-two {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

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

  .footer-container._0 {
    padding-top: 0;
  }

  .paragraph-large.footer-about-text {
    margin-bottom: 0;
    padding-top: 15px;
    font-size: 15px;
  }

  .paragraph-large.w {
    font-size: 15.5px;
  }

  .padding-global-five {
    padding-left: 0;
    padding-right: 0;
  }

  .padding-global-five.other {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .call-to-action-btn-wrapper {
    text-align: center;
    flex-flow: row;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    margin-left: 0;
    padding-bottom: 0;
  }

  .image-4 {
    width: 160px;
  }

  .flex-row {
    margin-bottom: 10px;
  }

  .flex-row.top {
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .whatsapp-block {
    z-index: 999;
    margin-bottom: 10px;
    margin-right: 10px;
    inset: auto 0% 0% 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%;
  }

  .default-bullet-list.margin-b-t-20.list-grid, .default-bullet-list.margin-b-t-20.row1, .default-bullet-list.margin-b-t-20.area, .default-bullet-list.margin-b-t-20.list-grid-3, .default-bullet-list.margin-b-t-20.site-map {
    grid-template-columns: 1fr;
  }

  .bullet-heading {
    margin-top: 0;
    font-size: 15px;
    line-height: 24px;
  }

  .features-grid_item {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  ._1x3-grid-3 {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
    grid-template-columns: 1fr;
    justify-items: center;
  }

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

  .text-custom-gray {
    font-size: 16px;
    font-weight: 300;
  }

  .text-custom-gray.box {
    font-size: 15px;
    line-height: 24px;
  }

  .heading-4 {
    letter-spacing: -1px;
    font-size: 22px;
    line-height: 28px;
  }

  .container-large-3 {
    max-width: none;
  }

  .padding-bottom {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .text-size-medium-4.text-weight-semibold {
    text-align: left;
    font-size: 21px;
    line-height: 26px;
  }

  .text-size-medium-4.blue {
    text-align: left;
    font-size: 20px;
    line-height: 26px;
  }

  .text-size-medium-4.blue.low {
    font-size: 20px;
    line-height: 24px;
  }

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

  .features-grid_feature-icon-div {
    width: 3.5rem;
    height: 3.5rem;
  }

  .icon-height-medium.is-high-z {
    height: 1.8rem;
  }

  .h4-small {
    font-size: 17px;
  }

  .bullet-heading-3 {
    font-size: 15px;
    font-weight: 300;
  }

  .to-follow {
    font-size: 20px;
    line-height: 26px;
  }

  .site-link {
    font-size: 15px;
  }

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

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

#w-node-_43e83d6d-8287-9366-80cc-f3c511e571fb-f5931c82 {
  place-self: center start;
}

#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, #w-node-d6208e5c-7bf4-8a48-020d-9460f199e27f-f199e252 {
  align-self: center;
}

#w-node-_6d146b34-fdec-8cff-c4b2-938a852d90da-d6c02199, #w-node-_6d146b34-fdec-8cff-c4b2-938a852d90f7-d6c02199, #w-node-_6d146b34-fdec-8cff-c4b2-938a852d9114-d6c02199, #w-node-_6d146b34-fdec-8cff-c4b2-938a852d90da-315fa1d2, #w-node-_6d146b34-fdec-8cff-c4b2-938a852d90f7-315fa1d2, #w-node-_6d146b34-fdec-8cff-c4b2-938a852d9114-315fa1d2 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f4dbb465-cbe3-a20c-e6ca-d20bf40601c0-315fa1d2 {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-f4dbb465-cbe3-a20c-e6ca-d20bf40601c1-315fa1d2, #w-node-_6d146b34-fdec-8cff-c4b2-938a852d90da-fb774186, #w-node-_6d146b34-fdec-8cff-c4b2-938a852d90f7-fb774186, #w-node-_6d146b34-fdec-8cff-c4b2-938a852d9114-fb774186 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

@media screen and (max-width: 991px) {
  #w-node-_0e225753-f434-8756-98ab-03b24b9044ef-4b9044ca {
    align-self: start;
  }

  #w-node-f4dbb465-cbe3-a20c-e6ca-d20bf40601c0-315fa1d2 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}

@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 {
    grid-area: span 1 / span 2 / span 1 / span 2;
    place-self: stretch stretch;
  }

  #w-node-d6208e5c-7bf4-8a48-020d-9460f199e262-f199e252 {
    grid-area: span 1 / span 2 / span 1 / span 2;
    align-self: center;
  }

  #w-node-d6208e5c-7bf4-8a48-020d-9460f199e26a-f199e252 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-d6208e5c-7bf4-8a48-020d-9460f199e26d-f199e252 {
    grid-area: span 1 / span 2 / span 1 / span 2;
    align-self: center;
  }

  #w-node-d6208e5c-7bf4-8a48-020d-9460f199e27c-f199e252 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-d6208e5c-7bf4-8a48-020d-9460f199e27f-f199e252 {
    grid-area: span 1 / span 2 / span 1 / span 2;
    align-self: center;
  }

  #w-node-_6d146b34-fdec-8cff-c4b2-938a852d90d9-d6c02199, #w-node-_6d146b34-fdec-8cff-c4b2-938a852d90d9-315fa1d2, #w-node-_6d146b34-fdec-8cff-c4b2-938a852d90d9-fb774186, #w-node-_6d146b34-fdec-8cff-c4b2-938a852d90d9-e93b3bb5, #w-node-_18183bdb-9d2b-da7b-b6a0-e6a73aaf39a9-f26fd68e, #w-node-_6d146b34-fdec-8cff-c4b2-938a852d90d9-f26fd68e {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}


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