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

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

:root {
  --white: #fff;
  --secondary: #1f2027;
  --primary: #e77836;
  --black: #9f9f9f;
  --light-grey: #dbdfe6;
  --pale-grey: #f6f9ff;
}

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

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

.body {
  background-color: var(--white);
  color: var(--secondary);
  font-family: Montserrat, sans-serif;
}

.announcement-contact {
  color: var(--white);
  background-color: #252279;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  padding: 5px 20px;
  font-weight: 600;
  text-decoration: none;
  transition: all .3s ease-in-out;
  display: flex;
}

.announcement-contact:hover {
  color: #212529;
}

.announcement-time {
  color: var(--white);
  text-transform: uppercase;
  font-size: 1em;
  font-weight: 400;
}

.announcement-bar {
  z-index: 999;
  background-color: var(--primary);
  color: var(--secondary);
  position: sticky;
  inset: 0% 0% auto;
}

.announcement-link {
  color: var(--white);
  letter-spacing: .7px;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 400;
  text-decoration: none;
  transition: all .3s ease-in-out;
}

.announcement-link:hover {
  color: var(--white);
  text-transform: uppercase;
}

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

.container.announcement-container {
  width: 90%;
  max-width: none;
}

.container._100 {
  width: 100%;
  max-width: none;
}

.container._1296 {
  width: 100%;
  max-width: 1340px;
}

.announcement-icon {
  width: 35px;
  height: 35px;
  color: var(--white);
  justify-content: center;
  align-items: center;
  font-family: "Fa solid 900", sans-serif;
  font-size: 1em;
  font-weight: 300;
  line-height: 1.5;
  display: flex;
}

.announcement-contact-info {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.announcement-contact-info.margin-right-20 {
  margin-right: 20px;
  padding-top: 5px;
  padding-bottom: 5px;
}

.announcement-wrapper {
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
}

.header-social-media {
  display: flex;
}

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

.nav-menu.margin-auto {
  justify-content: space-between;
  width: 100%;
}

.dropdown-menu-link {
  background-color: #fff;
  border-left: 5px solid #0000;
  padding-top: 20px;
  padding-bottom: 20px;
  transition: all .2s ease-in-out;
}

.dropdown-menu-link:hover {
  border-left: 5px solid var(--primary);
  color: #353535;
}

.brand {
  color: #fff;
  align-items: center;
  font-size: 2em;
  font-weight: 700;
  text-decoration: none;
  display: flex;
}

.brand.footer {
  margin-bottom: 20px;
}

.dropdown-list {
  border-radius: 6px;
  width: 300px;
}

.dropdown-list.w--open {
  background-color: #fff;
  border-radius: 6px;
  width: auto;
  margin-top: 19px;
  overflow: visible;
}

.nav-link {
  padding-top: 10px;
  padding-bottom: 10px;
  font-weight: 600;
  transition: all .3s ease-in-out;
}

.nav-link:hover {
  color: var(--primary);
  background-color: #0000;
  border-radius: 6px;
}

.nav-link.w--current {
  color: var(--primary);
  font-weight: 700;
}

.header-social-icon {
  width: 35px;
  height: 35px;
  color: var(--primary);
  background-color: #0000;
  border-radius: 32px;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
  font-family: "Fa brands 400", sans-serif;
  font-size: 1.2em;
  text-decoration: none;
  transition: all .2s ease-in-out;
  display: flex;
}

.header-social-icon:hover {
  background-color: var(--primary);
  color: var(--white);
}

.header-social-icon.margin-right-none {
  margin-right: 0;
}

.dropdown-link {
  margin-left: 0;
  margin-right: 0;
  padding-top: 0;
  padding-bottom: 0;
  font-weight: 600;
  transition: all .3s ease-in-out;
  display: inline-block;
}

.dropdown-link:hover {
  color: var(--primary);
  background-color: #0000;
}

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

.navbar-2 {
  background-color: #0000;
  justify-content: space-between;
  width: 100%;
  display: flex;
}

.navbar {
  z-index: 998;
  background-color: var(--white);
  width: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
  position: relative;
}

.slider-arrow {
  background-color: var(--secondary);
  border-radius: 6px;
  width: 50px;
  height: 50px;
  margin-left: 10px;
  margin-right: 10px;
  transition: all .2s ease-in-out;
  display: inline-block;
}

.slider-arrow:hover {
  background-color: var(--primary);
}

.slide {
  background-image: linear-gradient(#00000061, #00000061), url('../images/Roof-6.webp');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
}

.hero-content {
  text-align: center;
  width: 60%;
}

.button {
  background-color: var(--primary);
  color: var(--white);
  border-radius: 4px;
  margin-top: 20px;
  margin-right: 20px;
  padding: 15px 40px;
  font-size: 16px;
  line-height: 1.5;
  text-decoration: none;
  transition: all .2s ease-in-out;
  display: inline-block;
}

.button:hover {
  transform: scale(.95);
}

.button.book-today {
  color: var(--white);
}

.slider-inner-content {
  z-index: 2;
  justify-content: center;
  align-items: center;
  height: 100%;
  display: flex;
  position: absolute;
  inset: 0%;
}

.hero-section {
  height: 100%;
  position: relative;
}

.hero-slider {
  min-height: 83vh;
  position: static;
}

.slide-2 {
  background-image: linear-gradient(#00000061, #00000061), url('../images/Ban1_1.webp');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
}

.arrow-icon {
  font-size: .6em;
}

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

.default-btn {
  background-color: var(--black);
  color: var(--light-grey);
  margin-top: 10px;
  padding: 15px 40px;
  font-weight: 600;
  text-decoration: none;
  transition: all .2s ease-in-out;
  display: inline-block;
}

.default-btn:hover {
  transform: scale(.95);
}

.default-btn.margin-top-20 {
  text-align: center;
  background-color: #ef233c;
  border: 1px solid #ef233c;
  margin-top: 0;
}

.default-btn.margin-top-20.light-btn {
  color: #ef233c;
  background-color: #fdfdfd;
  border-color: #fdfdfd;
  margin-top: 20px;
}

.section-design-1-h1 {
  padding-top: 100px;
  padding-bottom: 100px;
}

.section-design-1-h1._60 {
  padding-top: 60px;
  padding-bottom: 0;
}

.section-design-1-h1._0b {
  padding-bottom: 0;
}

.top-text {
  color: var(--primary);
  font-size: 1.25em;
  font-weight: 400;
  line-height: 1.95;
}

.left-section {
  flex: 0 auto;
  width: 48%;
}

.left-section._100 {
  width: 100%;
}

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

.btn-wrapper {
  padding-top: 20px;
}

.right-section {
  width: 50%;
  box-shadow: 9px -9px 0 0 var(--primary);
  align-self: stretch;
  align-items: stretch;
  display: flex;
}

.right-section.swap {
  box-shadow: -9px 9px 0 0 var(--primary);
}

.para {
  color: #838383;
  margin-bottom: 10px;
  font-size: 15px;
  line-height: 1.75;
}

.para.para-white {
  color: #fdfdfd;
}

.inner-img {
  background-image: url('../images/homepage-berkhamsted_s-local-building-company.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 0;
  justify-content: flex-end;
  align-items: flex-end;
  width: 100%;
  height: 100%;
  min-height: 500px;
  display: flex;
  position: static;
}

.inner-img.map {
  background-image: none;
  height: auto;
}

.inner-img.s1-1 {
  background-image: url('../images/our-services-page-building-company-in-st-albans.webp');
  background-position: 50%;
  background-size: cover;
}

.inner-img.s2-1 {
  background-image: url('../images/Gallery34.webp');
  background-position: 50%;
  background-size: cover;
}

.inner-img.s3-1 {
  background-image: url('../images/Gallery12.webp');
  background-position: 100%;
  background-size: cover;
}

.inner-img.s4-1 {
  background-image: url('../images/garage-conversions-page---garage-conversions-in-berkhamsted.webp');
  background-position: 50%;
  background-size: cover;
}

.inner-img.s5-1 {
  background-image: url('../images/Gallery33.webp');
  background-position: 50%;
  background-size: cover;
}

.card-bullet {
  padding-left: 0;
}

.card-bullet.grid2 {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.card-bullet.grid4 {
  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: 20px;
  margin-bottom: 0;
  display: grid;
}

.card-bullet.grid3 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 20px;
  margin-bottom: 20px;
  display: grid;
}

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

.card-icon.white {
  color: var(--white);
}

.top-title-content {
  text-align: center;
}

.top-title-content.left {
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.heading-2-title {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 2em;
  line-height: 1.9;
}

.heading-2-title.heading-white {
  color: #fdfdfd;
  margin-bottom: 20px;
  font-weight: 800;
  line-height: 1.5;
}

.heading-2-title.h3-small {
  color: #fdfdfd;
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 1.55em;
  font-weight: 800;
  line-height: 1.5;
}

.heading-2-title.h3-small-black {
  color: var(--secondary);
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 1.55em;
  font-weight: 800;
  line-height: 1.5;
}

.heading-2-title.white-left {
  color: #fdfdfd;
  text-align: left;
  margin-bottom: 20px;
  font-weight: 800;
  line-height: 1.5;
}

.bullet-icon {
  text-align: left;
  background-image: url('../images/chimney-sharp-solid.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 75px;
  width: 100px;
  height: 90px;
  margin-bottom: 10px;
  margin-left: 0;
  margin-right: auto;
  font-family: "Fa solid 900", sans-serif;
  font-size: 4em;
  line-height: 1.5;
  display: inline-block;
}

.bullet-icon.plastering {
  background-image: url('../images/screwdriver-wrench-solid.svg');
  height: 90px;
}

.bullet-icon.kitchen {
  background-image: url('../images/trowel-bricks-solid.svg');
  background-repeat: no-repeat;
  background-size: 75px;
  height: 90px;
  margin-left: 0;
}

.bullet-icon.conversions {
  background-image: url('../images/garage-solid.svg');
  height: 90px;
}

.bullet-block-title {
  color: var(--secondary);
  text-align: left;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.5em;
  font-weight: 800;
  line-height: 1.75;
}

.bullet-list-services {
  background-color: var(--pale-grey);
  padding-top: 100px;
  padding-bottom: 100px;
}

.bullet-list-services.grey {
  background-color: var(--secondary);
  padding-top: 80px;
  padding-bottom: 80px;
}

.bullet-list-services.white {
  padding-top: 80px;
  padding-bottom: 80px;
}

.bullet-list-services.orange {
  background-color: var(--primary);
  background-image: linear-gradient(#e7783699, #e7783699), url('../images/Bacjground-Terxture.webp');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  padding-top: 80px;
  padding-bottom: 80px;
}

.bullet-list-grid {
  grid-column-gap: 45px;
  grid-row-gap: 45px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 40px;
  display: grid;
}

.bullet-list-grid._3 {
  grid-column-gap: 21px;
  grid-row-gap: 21px;
  grid-template-columns: 1fr 1fr 1fr;
}

.bullet-list-grid._2 {
  grid-column-gap: 25px;
  grid-row-gap: 25px;
  margin-bottom: 40px;
}

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

.bullet-block-btn {
  background-color: var(--primary);
  color: var(--white);
  border-radius: 4px;
  margin-top: 20px;
  padding: 10px 20px;
  font-weight: 500;
  text-decoration: none;
  transition: all .2s ease-in-out;
  display: inline-block;
}

.bullet-block-btn:hover {
  transform: scale(.95);
}

.bullet-block {
  background-color: var(--white);
  text-align: left;
  border-radius: 4px;
  flex-flow: column;
  align-items: flex-start;
  padding: 30px;
  transition: all .2s ease-in-out;
  display: flex;
  box-shadow: 1px 1px 3px #0000000d;
}

.bullet-block:hover {
  background-color: var(--pale-grey);
  transform: translate(0, -5px);
}

.bullet-block.orange {
  background-color: var(--primary);
}

.bullet-heading {
  color: var(--secondary);
  align-items: center;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 15px;
  font-weight: 400;
  line-height: 22px;
  display: flex;
}

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

.inner-text-content {
  flex-flow: column;
  align-items: flex-start;
  width: 68%;
  max-width: 1400px;
  margin-left: 60px;
  margin-right: auto;
  display: flex;
}

.container-fluid.display-flex {
  background-color: var(--primary);
  display: flex;
}

.section-2-img-full {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  width: 50%;
  min-height: 500px;
}

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

.section-2-text-content {
  background-color: var(--primary);
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 50%;
  padding-top: 40px;
  padding-bottom: 40px;
  display: flex;
}

.section-2-text-content._100 {
  width: 90%;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.heading-3-cta-section {
  background-color: var(--primary);
  padding-top: 100px;
  padding-bottom: 100px;
}

.heading-3-cta-section.contactform {
  background-color: #e70004;
}

.h3-wrapper {
  align-items: center;
  display: flex;
}

.content-h3-box {
  justify-content: space-between;
  align-items: center;
  width: 70%;
  display: flex;
}

.content-h3-box._100 {
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
}

.heading-3-text {
  color: var(--white);
  padding-right: 0;
  font-size: 1.6em;
  font-weight: 600;
  line-height: 1.25;
}

.h3-cta-btns {
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 34%;
  display: flex;
}

.h3-cta-call-btn {
  background-color: var(--white);
  color: var(--primary);
  margin-right: 20px;
  padding: 15px 20px;
  font-size: 1em;
  font-weight: 600;
  text-decoration: none;
  transition: all .2s ease-in-out;
  display: inline;
}

.h3-cta-call-btn.btn-outline {
  border: 1px solid var(--light-grey);
  color: var(--white);
  background-color: #0000;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-right: 0;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
}

.h3-cta-call-btn.btn-outline:hover {
  color: var(--primary);
  background-color: #fdfdfd;
}

.brand-bands {
  background-color: var(--pale-grey);
  padding-top: 40px;
  padding-bottom: 40px;
}

.brand-band-wrapper {
  justify-content: space-between;
  display: flex;
}

.brand-icon {
  color: #bdbdbd;
  font-family: "Fa brands 400", sans-serif;
  font-size: 5em;
  line-height: 1;
  display: inline-block;
}

.footer-col {
  width: 30%;
}

.footer-col._00 {
  width: 100%;
}

.contact-block-1 {
  border-right: 1px solid var(--black);
  flex: 0 auto;
  justify-content: center;
  align-items: center;
  width: 33%;
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
}

.contact-block-1.border-none {
  border-right-style: none;
  align-items: center;
}

.contact-block-1._100 {
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  padding-left: 20px;
}

.contact-block-1._100.nobord {
  border-right-style: none;
  padding-top: 0;
  padding-bottom: 20px;
}

.contact-block-1.right {
  border-right-style: none;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  padding-left: 20px;
}

.contact-block-1.right.nobord {
  border-right-style: none;
  padding-top: 0;
  padding-bottom: 20px;
}

.footer-social-media {
  background-color: var(--primary);
  color: #fff;
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  margin-right: 10px;
  font-family: "Fa brands 400", sans-serif;
  text-decoration: none;
  transition: all .2s ease-in-out;
  display: flex;
}

.footer-social-media:hover {
  background-color: var(--light-grey);
  color: var(--primary);
}

.footer-social-media.margin-right-none {
  margin-right: 0;
}

.footer-mid-content {
  justify-content: space-between;
  padding-top: 60px;
  display: flex;
}

.contact-info-text {
  color: var(--secondary);
}

.footer-section {
  background-color: var(--secondary);
  padding-top: 200px;
  padding-bottom: 0;
}

.footer-section.notop {
  padding-top: 40px;
  padding-left: 20px;
  padding-right: 20px;
}

.footer-menu-text {
  color: var(--primary);
  margin-bottom: 20px;
  font-size: 1.6em;
  font-weight: 800;
}

.contact-type-title {
  color: var(--primary);
  text-transform: uppercase;
  margin-bottom: 10px;
  font-size: 1.2em;
  font-weight: 700;
  line-height: 1.2;
}

.contact-type-title.red {
  color: var(--primary);
}

.footer-contact-info {
  border: 1px solid var(--black);
  justify-content: space-between;
  align-items: center;
  padding: 10px 30px;
  display: flex;
}

.footer-contact-info.vert {
  flex-flow: row;
  padding-left: 20px;
  padding-right: 20px;
}

.footer-contact-info.vert.contact {
  border-style: none;
  margin-top: 40px;
  padding-left: 0;
  padding-right: 0;
}

.contact-icon {
  background-color: var(--primary);
  width: 60px;
  height: 60px;
  color: var(--white);
  justify-content: center;
  align-items: center;
  margin-right: 20px;
  font-family: "Fa solid 900", sans-serif;
  font-size: 1.5em;
  line-height: 1;
  display: flex;
}

.contact-icon.ct-us {
  background-color: var(--black);
}

.contact-info-link {
  color: var(--white);
  font-size: 1em;
  font-weight: 500;
  line-height: 1.25;
  text-decoration: none;
  display: inline-block;
}

.contact-info-link.black {
  color: var(--secondary);
}

.footer-copy {
  border-top: 1px solid #ffffff17;
  margin-top: 100px;
  padding-top: 20px;
  padding-bottom: 20px;
}

.footer-social-media-block {
  justify-content: flex-start;
  padding-top: 20px;
  display: flex;
}

.footer-copy-link {
  color: var(--white);
  cursor: pointer;
  transition: all .2s ease-in-out;
}

.scroll-up {
  z-index: 1000;
  background-color: var(--primary);
  border-radius: 6px;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  text-decoration: none;
  display: flex;
  position: fixed;
  inset: auto 10px 10px auto;
  box-shadow: 0 2px 5px #00000078;
}

.scroll-arrow-up {
  color: var(--white);
  justify-content: center;
  align-items: center;
  font-family: "Fa solid 900", sans-serif;
  font-size: 1.5em;
  font-style: normal;
  line-height: 1;
  text-decoration: none;
}

.services-section {
  padding: 20px 20px 0;
}

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

.services-link-box {
  background-image: url('../images/Kitchen_1.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 4px;
  justify-content: center;
  align-items: flex-end;
  min-height: 350px;
  padding: 20px;
  text-decoration: none;
  display: flex;
}

.services-link-box._1 {
  background-image: url('../images/Services-Main_1.webp');
  background-position: 50%;
}

.services-link-box._2 {
  background-image: url('../images/Loft-Conversion_1.webp');
}

.services-link-box._4 {
  background-image: url('../images/Conversion_1.webp');
}

.services-link-box._5 {
  background-image: url('../images/Refurbishment_1.webp');
}

.service-box-title {
  background-color: var(--white);
  color: var(--secondary);
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 1px;
  margin-top: 0;
  margin-bottom: 0;
  padding: 20px;
  font-size: 13px;
  font-weight: 600;
  line-height: 20px;
  text-decoration: none;
}

.service-box-title.link {
  background-color: var(--primary);
  color: var(--white);
  font-weight: 500;
}

.mask {
  height: auto;
  min-height: 250px;
}

.who-made-comment {
  align-items: center;
  margin-top: 40px;
  display: flex;
}

.quote-symbol {
  color: var(--primary);
  justify-content: flex-end;
  margin-left: auto;
  padding-bottom: 40px;
  font-family: "Fa solid 900", sans-serif;
  font-size: 60px;
  display: flex;
  position: relative;
}

.underline {
  background-color: #fb6749;
  border-radius: 6px;
  width: 60%;
  height: 5px;
  line-height: 30px;
  position: absolute;
  inset: 15px 0 auto auto;
}

.underline.testemonials-underline {
  flex: 0 auto;
  width: 20%;
  position: relative;
  left: 0%;
  right: 0;
}

.underline.testemonials-underline.orange {
  background-color: var(--primary);
  width: 30%;
  position: absolute;
  top: 0;
}

.underline.testemonials-underline.gray {
  background-color: var(--light-grey);
  width: 100%;
}

.left-arrow {
  background-color: var(--pale-grey);
  border-radius: 6px;
  justify-content: center;
  align-items: center;
  height: 25%;
  transition: all .3s ease-in-out;
  display: flex;
  inset: auto auto 0% 0%;
}

.left-arrow:hover {
  background-color: var(--primary);
  transform: scale(.95);
}

.customer-title {
  color: var(--secondary);
}

.testemonial-content-everything {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.container-2 {
  width: 90%;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 60px;
  padding-bottom: 0;
}

.container-2.test-container {
  padding-top: 0;
}

.testimonials-grid {
  grid-column-gap: 40px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
  position: relative;
}

.right-arrow {
  background-color: var(--pale-grey);
  border-radius: 6px;
  justify-content: center;
  align-items: center;
  height: 25%;
  margin-left: 100px;
  transition: all .3s ease-in-out;
  display: flex;
  inset: auto auto 0% 0%;
}

.right-arrow:hover {
  background-color: var(--primary);
  color: #fff;
  transform: scale(.95);
}

.slide-nav {
  display: block;
  position: absolute;
}

.slide-3 {
  background-color: var(--white);
  height: auto;
  padding: 15px;
}

.testemonials {
  padding-top: 100px;
  padding-bottom: 140px;
}

.text-block-3 {
  color: var(--secondary);
  flex: none;
  margin-top: 0;
  font-family: "Fa solid 900", sans-serif;
  font-size: 26px;
  display: block;
  position: static;
  inset: 0%;
}

.test-slider {
  position: static;
}

.sub-heading {
  color: var(--primary);
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  padding-bottom: 10px;
  font-size: 1.25rem;
  font-weight: 700;
}

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

.block-quote {
  border-left-style: none;
  margin-bottom: 0;
  padding: 0;
  font-size: 18px;
  font-style: italic;
  font-weight: 500;
  line-height: 28px;
}

.heading-2 {
  color: var(--secondary);
  margin-top: 0;
  margin-bottom: 10px;
  padding-right: 0;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
}

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

.slider-2 {
  background-color: var(--white);
  height: auto;
  position: static;
}

.customer-img {
  background-image: url('../images/vicky-hladynets-C8Ta0gwPbQg-unsplash_1vicky-hladynets-C8Ta0gwPbQg-unsplash.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 50%;
  min-width: 80px;
  min-height: 80px;
  margin-right: 10px;
}

.page-top {
  background-image: linear-gradient(#00000059, #00000059), url('../images/Ban1_1.webp');
  background-position: 0 0, 50% 100%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  background-attachment: scroll, fixed;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  min-height: 320px;
  padding-top: 20px;
  display: flex;
}

.image {
  width: 260px;
  height: auto;
}

.h1 {
  color: var(--white);
  text-transform: uppercase;
  align-items: center;
  margin-bottom: 20px;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.1;
  display: block;
}

.p {
  color: var(--white);
  font-size: 17px;
  line-height: 25px;
}

.h2 {
  color: var(--secondary);
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 34px;
  font-weight: 500;
  line-height: 1.1;
}

.h2.white {
  color: var(--white);
  margin-bottom: 20px;
  font-weight: 500;
}

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

.h2._20.w {
  color: var(--white);
}

.h2._20.topo {
  color: var(--white);
  margin-top: 45px;
}

.h2.white {
  text-align: left;
  margin-top: 0;
  font-weight: 800;
}

.h2.left {
  text-align: left;
}

.p-dark {
  color: #000;
  font-size: 15px;
  line-height: 24px;
}

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

.p-dark.l {
  text-align: left;
}

.p-dark.white-copy {
  color: var(--white);
  text-align: left;
}

.sub-head {
  font-size: 18px;
}

.h2-title {
  justify-content: center;
  width: 90%;
  display: flex;
}

.button-div {
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  display: flex;
}

.button-div.left {
  justify-content: flex-start;
  margin-top: 40px;
}

.container-block {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}

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

.h2-dark {
  color: var(--white);
  margin-top: 0;
  margin-bottom: 20px;
  line-height: 42px;
}

.footer-list {
  width: 80%;
  color: var(--light-grey);
  font-weight: 500;
}

.service-box-heading-container {
  display: flex;
}

.backtotop {
  height: 0;
}

.dropdown-toggle {
  margin-top: 0;
  padding: 0;
  font-weight: 600;
  transition: all .3s;
}

.dropdown-toggle:hover {
  color: var(--primary);
}

.co-desc {
  color: var(--white);
  font-size: 15px;
}

.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: #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(--primary);
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 32px;
  font-size: 16px;
  font-weight: 700;
}

.fs-cc-prefs_text {
  color: var(--secondary);
  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-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_option {
  border-bottom: 1px solid #33333326;
  padding-top: 16px;
  padding-bottom: 16px;
}

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

.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(--secondary);
  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: block;
  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);
  color: var(--primary);
  background-color: #f5f5f5;
}

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

.bottom-link {
  color: var(--white);
  margin-bottom: 20px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  display: block;
}

.bottom-link.black, .bottom-link.black.w--current {
  color: var(--secondary);
  text-align: left;
}

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

.list.area {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  margin-top: 10px;
}

.list-item {
  align-items: center;
  display: flex;
}

.bullet-icon-2 {
  color: #000;
  background-color: #fff;
  border: 2px solid #afafaf;
  border-radius: 5px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  font-size: 18px;
  display: flex;
}

.bullet-icon-2.round {
  width: 40px;
  height: 40px;
  color: var(--primary);
  -webkit-text-fill-color: inherit;
  background-clip: content-box;
  border-style: none;
  border-color: #5f5f5f;
  border-radius: 20px;
  flex: none;
  margin-right: 10px;
  font-family: "Fa solid 900", sans-serif;
}

.fa-2 {
  color: var(--primary);
  flex: none;
  font-size: 18px;
}

.bullet-heading-2 {
  color: #111;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 15px;
  font-weight: 400;
  line-height: 24px;
}

.map {
  width: 100%;
}

.lb {
  border: 1px solid var(--primary);
}

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

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

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

.contact-right {
  position: static;
}

.white-bubble-btn {
  z-index: 20;
  border: 1px none var(--white);
  background-color: var(--white);
  height: 45px;
  color: var(--secondary);
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 0;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  padding-left: 1.4rem;
  padding-right: 1.4rem;
  font-size: .7rem;
  font-weight: 800;
  text-decoration: none;
  display: flex;
  position: relative;
  overflow: hidden;
}

.white-bubble-btn.banner {
  margin-left: 0;
  margin-right: 6px;
}

.white-bubble-btn.banner-10 {
  margin-left: 6px;
}

.white-bubble-btn.red-banner {
  background-color: var(--primary);
  color: var(--white);
  margin-left: 0;
  margin-right: 6px;
}

.white-bubble-btn.outline {
  border-style: solid;
  border-color: var(--primary);
  margin-left: 6px;
}

.white-bubble-btn.top-pad {
  background-color: var(--primary);
  color: var(--white);
  margin-top: 10px;
  margin-left: 0;
  margin-right: 6px;
}

.white-bubble-btn.grey {
  color: var(--primary);
  margin-top: 10px;
  margin-left: 0;
  font-size: .8rem;
}

.white-bubble-btn._25 {
  color: var(--primary);
  margin-top: 25px;
  margin-left: 0;
  font-size: .8rem;
}

.white-bubble-btn._10 {
  background-color: var(--primary);
  color: var(--white);
  margin-top: 15px;
  margin-left: 0;
  margin-right: 6px;
}

.secondary-btn-text {
  z-index: 20;
  color: var(--primary);
  position: relative;
}

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

.button-hover-circle {
  z-index: 5;
  background-color: #fff;
  border-radius: 100%;
  width: 125%;
  height: 400%;
  position: absolute;
  inset: auto auto -400% -16px;
}

.button-hover-circle.dark, .button-hover-circle.grey {
  background-color: var(--secondary);
  border-radius: 0%;
}

.h1-light {
  font-size: 42px;
  font-weight: 400;
}

.nav-item-img {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-color: #0000;
  border-bottom: 1px solid #cacaca;
  grid-template-rows: auto;
  grid-template-columns: 1fr auto;
  grid-auto-columns: 1fr;
  align-content: center;
  height: 100%;
  padding: 30px 18px 30px 24px;
  font-size: .9rem;
  text-decoration: none;
  transition: box-shadow .4s cubic-bezier(.25, .46, .45, .94);
  display: grid;
  position: relative;
  overflow: hidden;
}

.nav-item-img:hover {
  box-shadow: 0 12px 36px -8px #3540751a;
}

.paragraph-small {
  max-width: 450px;
  color: var(--secondary);
  letter-spacing: -.2px;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 400;
}

.arrow-down {
  width: 15px;
  height: 15px;
  margin-left: 8px;
  margin-right: 7px;
}

.feature-wrap {
  border-radius: 10px;
  align-items: flex-start;
  padding: 15px 12px;
  text-decoration: none;
  transition: all .3s;
  display: flex;
}

.feature-wrap:hover {
  background-color: var(--pale-grey);
}

.feature-wrap.w--current {
  background-color: var(--light-grey);
}

.dropdown-list-2 {
  background-color: #0000;
}

.dropdown-list-2.w--open {
  z-index: 7;
  border-radius: 0;
  min-width: 550px;
  padding-top: 15px;
}

.navigation-link {
  color: #546681;
  flex-direction: row;
  align-items: center;
  padding: 10px 10px 10px 20px;
  font-size: 16px;
  text-decoration: none;
  transition: color .2s;
  display: flex;
}

.navigation-link:hover {
  color: #484dff;
}

.dropdown-list-wrap {
  z-index: 9;
  background-color: #fff;
  border-radius: 15px;
  padding: 15px 12px;
  display: flex;
  position: relative;
  overflow: visible;
  box-shadow: 1px 1px 9px #2c3e501a;
}

.dropdown-column {
  flex-direction: column;
  justify-content: flex-start;
  width: 50%;
  display: flex;
}

.feature-content-wrap {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.navigation-text {
  color: var(--secondary);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.short-title {
  color: var(--secondary);
  margin-bottom: 2px;
  font-size: 15px;
  font-weight: 600;
  line-height: 22px;
}

.feature-icon {
  width: 26px;
  margin-right: 10px;
}

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

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

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

.hyperlink.white {
  box-shadow: inset 0 -2px 0 0 var(--white);
  color: var(--white);
  font-weight: 700;
}

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

.section-2-h2-w-img-vid {
  padding-top: 0;
  padding-bottom: 0;
}

.para-2 {
  color: #838383;
  margin-bottom: 10px;
  font-size: 15px;
  line-height: 1.75;
}

.para-2.para-white {
  color: #fdfdfd;
  line-height: 1.6;
}

.section-2-img-full-2 {
  background-image: url('../images/homepage-about-us.webp');
  background-position: 50%;
  background-size: cover;
  width: 50%;
  min-height: 500px;
}

.section-2-img-full-2.s2-3 {
  background-image: url('../images/loft-conversions-page---types-of-loft-conversion.webp');
  background-position: 50%;
  background-size: cover;
}

.section-2-img-full-2.s3-3 {
  background-image: url('../images/house-extensions-page---types-of-home-extensions.webp');
  background-position: 50%;
  background-size: cover;
}

.section-2-img-full-2.s5-3 {
  background-image: url('../images/Gallery28.webp');
  background-position: 50%;
  background-size: cover;
}

.section-2-img-full-2.s1-2 {
  background-image: url('../images/our-services-page---your-local-builder.webp');
  background-position: 50% 100%;
  background-size: cover;
}

.section-2-img-full-2.s4-3 {
  background-image: url('../images/Garage-Conversion-N1.webp');
  background-position: 80%;
  background-size: cover;
}

.section-2-text-content-2 {
  background-color: var(--primary);
  background-image: linear-gradient(#e7783699, #e7783699), url('../images/Bacjground-Terxture.webp');
  background-position: 0 0, 100%;
  background-size: auto, cover;
  width: 50%;
  padding: 50px 0;
}

.call-to-action-box {
  background-color: var(--primary);
  text-align: center;
  background-image: linear-gradient(#e77836bf, #e77836bf), url('../images/Bacjground-Terxture.webp');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  border: 0 solid #393e40;
  border-radius: 29px;
  flex-flow: row;
  justify-content: center;
  width: 90%;
  max-width: 1340px;
  margin-top: -250px;
  margin-left: auto;
  margin-right: auto;
  padding: 60px;
  display: block;
}

.call-to-action-box.service {
  margin-top: -350px;
}

.padding-global {
  border: 0 solid #000;
  border-radius: 0;
  width: 100%;
  margin-left: 10px;
  padding: 0 0 0;
  font-style: normal;
  position: static;
}

.section-title-17 {
  color: #fff;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 33px;
  font-weight: 600;
  line-height: 43px;
}

.container-medium {
  width: 100%;
  max-width: 1340px;
  margin-top: 60px;
  margin-left: auto;
  margin-right: auto;
}

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

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

.footer-contact-section-splash {
  background-color: #fff;
  background-image: linear-gradient(#ffffff73, #ffffff73);
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  min-width: 80vw;
  padding: 80px 7%;
  display: flex;
  position: relative;
}

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

.underline-button-2 {
  filter: invert();
  justify-content: flex-start;
  align-items: center;
  margin-top: 15px;
  padding: 5px;
  text-decoration: none;
  display: flex;
}

.orange-section {
  background-color: var(--secondary);
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 40px;
  display: flex;
}

.accredation-grid {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  grid-template-rows: auto;
  width: 90%;
  max-width: 1400px;
}

.trust {
  height: 90px;
  margin-left: 20px;
}

.fmb {
  height: 90px;
}

.hero-large-text-2 {
  text-transform: none;
  margin-bottom: 20px;
  font-size: 32px;
  font-weight: 800;
  line-height: 1.1;
}

.hero-large-text-2._10 {
  color: var(--white);
  margin-bottom: 10px;
  font-size: 40px;
  font-weight: 800;
}

.gallery-section-2 {
  background-color: var(--primary);
  background-image: linear-gradient(#e7783699, #e7783699), url('../images/Bacjground-Terxture.webp');
  background-position: 0 0, 100%;
  background-size: auto, cover;
  padding: 80px 5%;
  display: flex;
  overflow: hidden;
}

.work-grid {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  margin-top: 40px;
}

.container-large-4 {
  width: 100%;
  max-width: 100rem;
  margin-left: auto;
  margin-right: auto;
}

.work-component-3 {
  background-image: linear-gradient(#00000052, #fff0), url('../images/Project3_1.webp');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  min-height: 525px;
  padding: 2rem 2rem 2rem 0;
  text-decoration: none;
  display: flex;
  position: relative;
}

.work-component-1 {
  background-image: linear-gradient(#00000052, #fff0), url('../images/homepage-latest-projects-property-renovations.webp');
  background-position: 0 0, 0%;
  background-size: auto, cover;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  min-height: 525px;
  padding: 2rem 2rem 2rem 0;
  text-decoration: none;
  display: flex;
  position: relative;
}

.work-component-2 {
  background-image: linear-gradient(#00000052, #fff0), url('../images/Project1_1.webp');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  min-height: 525px;
  padding: 2rem 2rem 2rem 0;
  text-decoration: none;
  display: flex;
  position: relative;
}

.work-component-2:hover {
  background-image: linear-gradient(#00000052, #fff0), url('../images/Project1_1.webp');
}

.margin-bottom-2 {
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
}

.text-color-white-2 {
  background-color: var(--secondary);
  color: var(--white);
  margin-bottom: 10px;
  padding: 4px 20px;
  font-size: 16px;
  font-weight: 700;
  line-height: 30px;
}

.max-width-xsmall {
  width: 100%;
  max-width: 16rem;
}

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

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

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

.wa-icon {
  color: var(--primary);
  font-family: "Fa brands 400", sans-serif;
  font-size: 36px;
  line-height: 34px;
}

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

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

.livechat-button-2 {
  background-color: var(--primary);
  cursor: pointer;
  border-radius: 200px;
  justify-content: center;
  align-items: center;
  width: 80%;
  height: 42px;
  text-decoration: none;
  transition: all .45s ease-in-out;
  display: flex;
}

.livechat-button-2:hover {
  background-color: #1a1a1a;
}

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

.whatsapp-block-2 {
  z-index: 10001;
  flex-direction: column;
  align-items: flex-end;
  margin-bottom: 15px;
  margin-right: 15px;
  display: none;
  position: fixed;
  top: auto;
  bottom: 0%;
  right: 0;
}

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

.whatsapp-container-2 {
  z-index: 30;
  cursor: pointer;
  background-color: #fff;
  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;
  box-shadow: 0 2px 5px #0009;
}

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

.live-chat-bottom-text-2 {
  color: var(--secondary);
  font-size: 12px;
  line-height: 16px;
}

.live-chat-bottom-text-2.bold {
  color: #1a1a1a;
  margin-bottom: 5px;
  font-size: 12px;
  font-weight: 600;
  line-height: 24px;
}

.live-chat-bottom-text-2.block {
  color: #1a1a1a;
  margin-bottom: 5px;
  font-size: 13px;
  line-height: 24px;
}

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

.chat-section-2 {
  background-color: #fff;
  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 20px;
  display: flex;
  position: relative;
}

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

.live-chat-top-text-2 {
  color: var(--secondary);
  letter-spacing: 0;
  font-size: 14px;
  font-weight: 800;
  line-height: 26px;
  position: static;
}

.live-chat-text-2 {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
}

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

.fs-cc-prefs_component-2 {
  z-index: 1000;
  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%;
}

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

.radio-button-field {
  grid-column-gap: 10px;
  cursor: pointer;
  background-color: #353535;
  border: 1px solid #ffffff2e;
  border-radius: 20px;
  align-items: center;
  padding: 4px 25px 5px;
  transition: all .275s;
  display: flex;
}

.radio-button-field:hover {
  background-color: #4b4b4b;
  border-color: #ffffff8a;
}

.radio-button-field.middle {
  margin-left: 12px;
  margin-right: 12px;
}

.title-div {
  text-align: center;
  max-width: 750px;
  margin-bottom: 40px;
  margin-left: auto;
  margin-right: auto;
}

.card-title-heading {
  color: #173861;
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.1;
}

.card-title-heading.white {
  color: #fff;
  margin-bottom: 0;
}

.paragraph-2 {
  opacity: .8;
  margin-top: 10px;
  font-family: Montserrat, sans-serif;
  font-size: 1rem;
  line-height: 1.2;
}

.section-contact {
  z-index: 1;
  color: #fff;
  text-align: center;
  background-color: #e8e8e8;
  background-image: url('../images/texture.jpg');
  background-position: 0 0;
  background-size: 80px;
  border: 1px solid #5c5c5c;
  border-radius: 30px;
  width: 100%;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding: 60px;
  transition: all .2s;
  position: relative;
  box-shadow: 0 0 30px #ffffff1f, inset 0 -20px 20px -5px #0003;
}

.contact-div {
  justify-content: center;
  margin-top: 32px;
  display: flex;
}

.button25_line-2-2 {
  background-color: #fff;
  width: 3px;
  height: 20px;
  position: absolute;
}

.sticky-icon-brand {
  color: #fff;
  font-size: 20px;
}

.menu-link {
  background-color: #eca355;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  padding: 0;
  position: absolute;
}

.menu-link.blog {
  background-color: #fff0;
  background-image: linear-gradient(90deg, var(--primary), #faaf45);
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  font-family: "Fa brands 400", sans-serif;
  text-decoration: none;
  display: flex;
}

.menu-link.contact {
  background-color: #fff0;
  background-image: linear-gradient(90deg, var(--primary), #faaf45);
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  padding: 0;
  font-family: "Fa brands 400", sans-serif;
  text-decoration: none;
  display: flex;
}

.menu-link.about {
  background-color: #eca35500;
  background-image: linear-gradient(90deg, var(--primary), #faaf45);
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  font-family: "Fa solid 900", sans-serif;
  text-decoration: none;
  display: flex;
}

.menu-link.home {
  background-color: #eca35500;
  background-image: linear-gradient(90deg, var(--primary), #faaf45);
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  font-family: "Fa sharp solid 900", sans-serif;
  text-decoration: none;
  display: flex;
}

.sticky-icon-solid {
  color: #fff;
  font-size: 20px;
  text-decoration: none;
}

.button25_line-1-2 {
  background-color: #fff;
  width: 20px;
  height: 3px;
}

.menu-button-animation {
  background-image: linear-gradient(90deg, var(--primary), #faaf45);
  cursor: pointer;
  border-radius: 50%;
  justify-content: center;
  align-self: center;
  align-items: center;
  width: 40px;
  height: 40px;
  display: flex;
  position: relative;
  box-shadow: 0 6px 5px #0006;
}

.menu-button-2 {
  z-index: 1001;
  justify-content: center;
  align-self: auto;
  align-items: center;
  margin-top: auto;
  margin-bottom: auto;
  margin-right: 10px;
  display: flex;
  position: fixed;
  top: 400px;
  left: auto;
  right: 0%;
}

.content-left {
  flex-flow: column;
  align-items: flex-start;
  display: flex;
}

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

.content-right.s1-2 {
  background-image: url('../images/our-services-page---replace-image-under-our-building-services.webp');
  height: 100%;
}

.content-right.s2-2 {
  background-image: url('../images/Gallery31.webp');
  background-position: 50% 100%;
  height: 100%;
}

.content-right.s3-2 {
  background-image: url('../images/house-extensions-page---replace-image-under-our-extension-services.webp');
  height: 100%;
}

.content-right.s5-2 {
  background-image: url('../images/property-refurbishments-page---our-home-refurbishment-service.webp');
  height: 100%;
}

.content-right.s4-2 {
  background-image: url('../images/Garage-Conversion.webp');
  background-position: 50% 100%;
  height: 100%;
  min-height: 500px;
}

.cta-space {
  height: 150px;
}

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

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

.or-div {
  width: 100%;
}

.headlylb {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  text-decoration: none;
  display: block;
  position: relative;
}

.previous-hover-div {
  z-index: 5;
  opacity: 0;
  justify-content: center;
  align-items: center;
  transition: opacity .2s;
  display: flex;
  position: absolute;
  inset: 0%;
}

.previous-hover-div:hover {
  opacity: 1;
  background-color: #2c3e5000;
}

.hover-text {
  width: 100%;
  height: 100%;
  color: var(--secondary);
  text-align: center;
  letter-spacing: .5px;
  text-transform: uppercase;
  background-color: #e77836d9;
  justify-content: center;
  align-items: center;
  padding: 20px 40px;
  font-size: 26px;
  font-weight: 800;
  line-height: 32px;
  display: flex;
}

.hover-text:hover {
  background-color: #e7783600;
}

.lb-image {
  object-fit: cover;
  width: 100%;
  height: 425px;
  display: block;
}

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

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

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

.mag {
  color: var(--primary);
  margin-right: 4px;
  font-family: "Fa solid 900", sans-serif;
}

.name-div {
  background-color: var(--primary);
  width: 100%;
  height: auto;
  padding-top: 20px;
  padding-bottom: 20px;
  position: absolute;
  inset: auto 0% 0%;
}

.name-split {
  color: var(--secondary);
  text-transform: uppercase;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  font-weight: 600;
  display: flex;
}

.link-block {
  text-decoration: none;
}

.button-left {
  color: #fff;
  text-transform: uppercase;
  background-color: #008081;
  border-radius: 0;
  padding: 16px 40px;
  font-size: 17px;
  font-weight: 600;
  transition: all .45s ease-in-out;
}

.button-left:hover {
  color: #008081;
  background-color: #fff;
}

.button-left.smaller {
  padding-left: 20px;
  padding-right: 20px;
}

.button-left.smaller._100 {
  background-color: var(--primary);
  cursor: pointer;
  padding: 10px;
  font-size: 14px;
}

.button-left.smaller._100:hover {
  color: var(--secondary);
}

.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: var(--primary);
  font-family: "Fa solid 900", sans-serif;
  inset: 2% auto auto 2%;
}

.widget-block {
  z-index: 1000;
  background-color: var(--white);
  text-align: center;
  border-radius: 5px;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  width: 430px;
  height: auto;
  padding: 20px;
  display: none;
  position: fixed;
  inset: 0% 0% 0% auto;
  overflow: auto;
  box-shadow: 1px 1px 3px #0000002e;
}

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

.footer-brand.popup {
  height: auto;
}

.header-social {
  margin-left: 0;
}

.small-form {
  width: 100%;
}

.header-social-link {
  color: #fff;
  background-color: #d41b27;
  padding: 7px 7.2px;
  font-size: 18px;
  text-decoration: none;
  transition: all .3s ease-in-out;
  display: inline-block;
}

.header-social-link:hover {
  color: #ffffff80;
}

.header-social-link.m-left-10 {
  background-color: var(--primary);
  margin-left: 10px;
  padding: 8px;
  font-family: "Fa brands 400", sans-serif;
}

.header-social-link.m-left-10:hover {
  color: var(--secondary);
  -webkit-text-stroke-color: #008081;
  background-color: #fff;
}

.header-social-link.m-left-10.solid {
  background-color: var(--primary);
  padding: 8px;
  font-family: "Fa solid 900", sans-serif;
  font-size: 16px;
}

.header-social-link.m-left-10.solid:hover {
  color: var(--secondary);
  background-color: #fff;
}

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

.pop-head.big {
  border-bottom: 1px solid var(--primary);
  color: var(--primary);
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 700;
}

.pop-head.small {
  color: var(--primary);
  font-size: 19px;
  line-height: 21px;
}

.image-10 {
  width: 150px;
  display: block;
}

.pop-link {
  color: var(--secondary);
  font-weight: 600;
}

@media screen and (min-width: 1280px) {
  .announcement-bar {
    z-index: 809;
  }

  .widget-block {
    z-index: 99999999;
    display: none;
  }

  .pop-head.big {
    margin-bottom: 20px;
  }

  .image-10 {
    width: 120px;
  }
}

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

@media screen and (max-width: 991px) {
  .announcement-link {
    letter-spacing: .1px;
    font-size: 13px;
    line-height: 18px;
  }

  .container.announcement-container {
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
  }

  .container.nav-fluid {
    width: 100%;
    padding: 0;
  }

  .announcement-contact-info.margin-right-20 {
    flex: none;
  }

  .announcement-contact-info.margin-right-20.mobile-display-none {
    display: none;
  }

  .announcement-wrapper {
    flex-direction: row;
  }

  .header-social-media {
    justify-content: space-around;
  }

  .nav-menu {
    background-color: #fff;
    width: 100%;
    margin-top: 20px;
  }

  .nav-menu.margin-auto {
    flex-direction: column;
    justify-content: flex-start;
    height: auto;
    margin-top: 0;
  }

  .dropdown-menu-link {
    color: var(--black);
    background-color: #0000;
  }

  .dropdown-menu-link:hover {
    color: var(--black);
  }

  .brand.w--current {
    justify-content: center;
  }

  .dropdown-list.w--open {
    background-color: #f7f7f7;
    border-radius: 0;
    margin-top: 0;
  }

  .nav-link {
    background-color: var(--white);
    color: var(--secondary);
    margin-left: 0;
    margin-right: 0;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .nav-link:hover {
    background-color: var(--secondary);
    color: var(--white);
    border-radius: 0;
  }

  .header-social-icon {
    background-color: var(--white);
    width: 33.3%;
    height: auto;
    color: var(--secondary);
    border-right: 1px solid #3535353d;
    border-radius: 0;
    margin-right: 0;
    padding-top: 20px;
    padding-bottom: 20px;
    font-size: 22px;
  }

  .header-social-icon:hover {
    color: var(--white);
  }

  .header-social-icon.margin-right-none {
    background-color: var(--white);
    color: var(--secondary);
    text-align: left;
    border-radius: 0;
    font-size: 22px;
  }

  .header-social-icon.margin-right-none:hover {
    background-color: var(--primary);
    color: var(--white);
  }

  .dropdown-link {
    color: #fff;
    border-bottom: 1px solid #0000000d;
    border-radius: 0;
    width: 100%;
  }

  .dropdown-link:hover {
    color: #fff;
    background-color: #ef233c;
    border-radius: 0;
  }

  .dropdown-link.w--open {
    color: #fff;
    background-color: #ef233c;
  }

  .dropdown-link.no-border {
    background-color: var(--primary);
    color: var(--white);
    border-bottom-style: none;
  }

  .dropdown-link.no-border:hover {
    background-color: var(--secondary);
  }

  .burger-menu {
    color: #353535;
    text-align: center;
    font-size: 1.2em;
  }

  .nav-toggle {
    border-radius: 6px;
    margin-right: 10px;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .nav-toggle.w--open {
    background-color: var(--white);
  }

  .nav {
    background-color: var(--white);
    height: 100%;
    margin-bottom: auto;
  }

  .navbar-2 {
    flex-flow: column;
    justify-content: space-between;
    padding-top: 10px;
  }

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

  .slider-arrow {
    width: 42px;
    height: 42px;
  }

  .hero-content {
    width: 70%;
  }

  .hero-slider {
    min-height: 79vh;
  }

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

  .default-btn {
    margin-right: auto;
  }

  .default-btn.margin-top-20 {
    width: 100%;
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
  }

  .section-design-1-h1 {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .left-section {
    width: 100%;
  }

  .left-section.swap {
    padding-left: 0;
  }

  .btn-wrapper {
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    padding-top: 10px;
    display: flex;
  }

  .right-section {
    width: 100%;
    margin-bottom: 40px;
  }

  .right-section.padd {
    margin-top: 40px;
  }

  .right-section.swap {
    box-shadow: -7px 7px 0 0 var(--primary);
  }

  .inner-img {
    min-height: 500px;
  }

  .inner-img.map {
    min-height: auto;
  }

  .bullet-list-services {
    padding-top: 60px;
    padding-bottom: 60px;
  }

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

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

  .bullet-block-btn {
    margin-top: 10px;
  }

  .bullet-block {
    padding: 20px;
  }

  .inner-text-content {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }

  .container-fluid.display-flex {
    flex-direction: column;
  }

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

  .section-2-text-content {
    justify-content: center;
    align-items: center;
    width: 100%;
    display: flex;
  }

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

  .h3-wrapper {
    flex-direction: column;
  }

  .content-h3-box {
    width: 100%;
  }

  .heading-3-text {
    text-align: center;
    font-size: 21px;
  }

  .h3-cta-btns {
    justify-content: center;
    width: 60%;
    padding-top: 20px;
    display: flex;
  }

  .contact-block-1 {
    border-bottom: 1px #8a8a8a;
    border-right-style: none;
    justify-content: flex-start;
    width: 100%;
  }

  .contact-block-1.border-none {
    border-bottom-style: none;
  }

  .footer-mid-content {
    padding-left: 40px;
    padding-right: 40px;
  }

  .footer-contact-info {
    flex-direction: column;
  }

  .footer-contact-info.vert {
    flex-flow: column;
  }

  .footer-copy {
    margin-top: 0;
    margin-bottom: 0;
    padding-bottom: 100px;
    padding-left: 40px;
    padding-right: 40px;
  }

  .scroll-up {
    z-index: 1;
  }

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

  .left-arrow {
    background-color: var(--primary);
    color: #fff;
    bottom: -25%;
    left: auto;
    right: 15%;
  }

  .customer-title {
    font-size: 1.2rem;
  }

  .testimonials-grid {
    flex-direction: column;
    grid-template-columns: 1fr;
    display: flex;
  }

  .right-arrow {
    background-color: var(--primary);
    inset: auto 0% -25% auto;
  }

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

  .block-quote {
    font-size: 16px;
  }

  .heading-2 {
    padding-right: 0;
  }

  .slider-2 {
    position: relative;
  }

  .image {
    width: 200px;
  }

  .h1 {
    font-size: 32px;
  }

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

  .h2._20, .h2.white, .p-dark {
    text-align: left;
  }

  .container-block {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .dropdown-toggle {
    width: 100%;
    color: var(--white);
    margin-left: 0;
    margin-right: 0;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .dropdown-toggle:hover {
    color: var(--white);
  }

  .list-item {
    align-items: center;
  }

  .bullet-icon-2.round {
    width: 32px;
    height: 32px;
  }

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

  .h1-light {
    font-size: 32px;
  }

  .navigation-dropdown {
    width: 100%;
  }

  .feature-wrap {
    flex-direction: column;
    padding: 12px 15px;
  }

  .dropdown-list-2.w--open {
    width: 100%;
    min-width: auto;
  }

  .navigation-link {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .dropdown-list-wrap {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .short-title {
    margin-bottom: 0;
  }

  .feature-icon {
    width: 22px;
    margin-bottom: 10px;
  }

  .section-2-img-full-2, .section-2-text-content-2 {
    width: 100%;
  }

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

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

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

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

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

  .footer-contact-section-splash {
    padding-left: 5%;
    padding-right: 5%;
  }

  .hero-large-text-2 {
    font-size: 2rem;
  }

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

  .container-large-4 {
    width: 100%;
    max-width: 100rem;
  }

  .work-component-3, .work-component-1 {
    background-position: 50%;
    background-size: cover;
  }

  .work-component-1:hover {
    background-position: 0 0, 50%;
  }

  .work-component-2 {
    background-position: 50%;
    background-size: cover;
  }

  .margin-bottom-2 {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

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

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

  .whatsapp-block-2 {
    margin-bottom: 15px;
    display: flex;
  }

  .card-title-heading {
    font-size: 2.2rem;
  }

  .section-contact {
    width: 95%;
    padding: 60px;
  }

  .content-right.s1-2, .content-right.s2-2, .content-right.s3-2, .content-right.s5-2, .content-right.s4-2 {
    min-height: 500px;
  }

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

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

  .button-left {
    padding-left: 25px;
    padding-right: 25px;
    font-size: 15px;
  }

  .header-social {
    border-top: 1px #f7f7f733;
    justify-content: flex-start;
    margin-left: 0;
    display: block;
  }

  .header-social-link.m-left-10.solid {
    margin-left: 0;
  }
}

@media screen and (max-width: 767px) {
  .announcement-contact {
    justify-content: center;
    align-items: center;
    margin-left: auto;
    padding: 20px 40px;
  }

  .announcement-bar {
    position: static;
  }

  .container.announcement-container {
    padding-top: 0;
    padding-bottom: 0;
    position: static;
  }

  .container.nav-fluid {
    padding-top: 0;
  }

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

  .announcement-contact-info.margin-right-20 {
    margin-right: 0;
    padding-bottom: 0;
  }

  .announcement-contact-info.margin-right-20.mobile-display-none {
    margin-right: 10px;
  }

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

  .brand.footer.w--current {
    justify-content: flex-start;
  }

  .navbar {
    padding-top: 10px;
    padding-bottom: 0;
  }

  .slider-arrow {
    display: none;
  }

  .hero-content {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 83%;
    display: flex;
  }

  .button {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 50%;
    margin-top: 0;
    padding-left: 20px;
    padding-right: 20px;
    display: flex;
  }

  .slider-inner-content {
    height: auto;
  }

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

  .default-btn {
    flex-direction: row;
    display: flex;
  }

  .section-design-1-h1 {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .right-section {
    margin-top: 40px;
    margin-bottom: 0;
  }

  .right-section.swap {
    margin-top: 0;
    margin-bottom: 40px;
  }

  .inner-img {
    min-height: 350px;
  }

  .card-bullet.grid2, .card-bullet.grid4, .card-bullet.grid3 {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    grid-template-columns: 1fr;
  }

  .bullet-list-services {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .bullet-list-grid {
    grid-template-columns: 1fr;
    margin-top: 40px;
  }

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

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

  .h3-cta-btns {
    width: 100%;
  }

  .brand-band-wrapper {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-items: center;
    display: grid;
  }

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

  .footer-mid-content {
    flex-direction: column;
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }

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

  .footer-copy {
    margin-top: 40px;
    margin-bottom: 0;
    padding-bottom: 100px;
    padding-left: 20px;
    padding-right: 20px;
  }

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

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

  .quote-symbol {
    margin-left: 0;
    padding-bottom: 10px;
    padding-right: 0;
    line-height: 1;
    position: static;
  }

  .underline {
    width: 50%;
  }

  .left-arrow {
    width: 80px;
    height: 80px;
    margin-top: 20px;
    margin-left: auto;
    padding-top: 0;
    bottom: -5%;
    right: 20%;
  }

  .container-2 {
    padding-top: 20px;
  }

  .testimonials-grid {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    margin-left: auto;
    margin-right: auto;
  }

  .right-arrow {
    width: 80px;
    height: 80px;
    bottom: -5%;
  }

  .slide-3 {
    margin-left: auto;
    margin-right: auto;
  }

  .testemonials {
    padding-bottom: 150px;
  }

  .test-slider {
    width: 95%;
    position: static;
  }

  .heading-2 {
    font-size: 1.5rem;
    line-height: 1.4;
  }

  .slider-2 {
    justify-content: center;
    align-items: center;
    display: block;
    position: static;
  }

  .h1 {
    font-size: 28px;
  }

  .p {
    margin-bottom: 20px;
  }

  .h2 {
    font-size: 32px;
  }

  .button-div {
    width: 100%;
    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;
  }

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

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

  .contact-right {
    width: 95%;
    position: static;
  }

  .h1-light {
    font-size: 28px;
  }

  .section-2-img-full-2 {
    min-height: 350px;
  }

  .call-to-action-box {
    text-align: center;
    border-bottom-width: 1px;
    flex-flow: column;
    margin-top: -150px;
    padding: 60px 30px;
  }

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

  .section-title-17 {
    margin-top: 0;
    font-size: 26px;
    line-height: 34px;
  }

  .container-medium {
    display: block;
  }

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

  .footer-contact-section-splash {
    min-width: 100vw;
    padding-left: 5%;
    padding-right: 5%;
  }

  .gallery-section-2 {
    padding: 60px 1.25rem;
  }

  .work-component-3, .work-component-1, .work-component-2 {
    min-height: 500px;
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .margin-bottom-2 {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

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

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

  .radio-button-field {
    text-align: center;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .card-title-heading {
    font-size: 1.6rem;
  }

  .card-title-heading.white {
    margin-bottom: 0;
  }

  .section-contact {
    padding: 40px;
  }

  .contact-div {
    flex-flow: column;
  }

  .menu-button-animation {
    width: 55px;
    height: 55px;
  }

  .content-right.s1-2, .content-right.s2-2, .content-right.s3-2, .content-right.s5-2, .content-right.s4-2 {
    min-height: 350px;
  }

  .cta-space {
    height: 300px;
  }

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

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

  .button-left {
    padding-top: 13px;
    padding-bottom: 14px;
  }

  .button-left.smaller._100 {
    text-align: center;
    width: 100%;
  }

  .widget-block {
    height: 435px;
    padding-left: 30px;
    padding-right: 30px;
  }

  .header-social {
    border-top-style: none;
    margin-bottom: 20px;
    margin-left: 0;
    display: flex;
  }

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

@media screen and (max-width: 479px) {
  .announcement-contact {
    width: 100%;
    margin-top: 10px;
    margin-bottom: 10px;
    margin-right: auto;
    padding: 15px 20px;
  }

  .announcement-link {
    letter-spacing: .25px;
  }

  .container.announcement-container {
    padding-top: 1px;
  }

  .announcement-icon {
    width: 30px;
    height: 30px;
    font-size: 1.2em;
  }

  .announcement-contact-info.margin-right-20 {
    text-align: center;
    font-size: 14px;
  }

  .announcement-wrapper {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    line-height: 17px;
  }

  .nav-menu.margin-auto {
    border-top: 1px solid #0000000d;
    width: 100%;
  }

  .brand {
    justify-content: center;
  }

  .slider-arrow {
    display: none;
  }

  .hero-content {
    width: 85%;
  }

  .button {
    text-align: center;
    width: 100%;
    margin-bottom: 10px;
    margin-left: 0;
    margin-right: 0;
    padding-left: 20px;
    padding-right: 20px;
    display: block;
  }

  .button.book-today {
    width: 37%;
  }

  .default-btn {
    text-align: center;
    justify-content: center;
    width: 100%;
  }

  .section-design-1-h1 {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .top-text {
    margin-bottom: 10px;
    line-height: 1.7;
  }

  .btn-wrapper {
    flex-direction: column;
  }

  .right-section {
    margin-bottom: 0;
  }

  .inner-img {
    min-height: 250px;
  }

  .heading-2-title.heading-white, .heading-2-title.h3-small, .heading-2-title.h3-small-black {
    font-size: 1.7em;
  }

  .heading-2-title.white-left {
    font-size: 1.7em;
    line-height: 1.3;
  }

  .bullet-block-title {
    line-height: 1.35;
  }

  .bullet-list-services, .bullet-list-services.grey, .bullet-list-services.orange {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .bullet-list-grid {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    margin-top: 30px;
  }

  .bullet-block-btn {
    margin-top: 5px;
  }

  .section-2-text-content {
    flex-direction: row;
    padding-top: 30px;
    padding-bottom: 30px;
    display: flex;
  }

  .heading-3-text {
    margin-bottom: 20px;
    font-size: 1.3em;
  }

  .h3-cta-btns {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex-wrap: wrap;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .h3-cta-call-btn {
    text-align: center;
    flex: none;
    width: 100%;
    margin-right: 0;
  }

  .h3-cta-call-btn.btn-outline {
    flex: none;
  }

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

  .contact-block-1 {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .contact-block-1._100, .contact-block-1.right {
    padding-left: 0;
  }

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

  .footer-contact-info {
    padding-left: 13px;
  }

  .contact-icon {
    display: none;
  }

  .contact-info-link {
    line-height: 1.4;
  }

  .footer-copy {
    margin-top: 20px;
    margin-bottom: 0;
    padding-left: 28px;
  }

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

  .services-link-box {
    min-height: 250px;
    padding-left: 0;
    padding-right: 0;
  }

  .services-link-box._2, .services-link-box._4, .services-link-box._5 {
    padding-left: 0;
    padding-right: 0;
  }

  .service-box-title {
    letter-spacing: 0;
    padding: 10px;
    font-size: 11px;
  }

  .quote-symbol {
    padding-bottom: 10px;
    padding-right: 0;
    font-size: 2rem;
  }

  .underline {
    width: 30%;
  }

  .testemonials-text {
    line-height: 1;
  }

  .left-arrow {
    width: 60px;
    height: 60px;
    bottom: -10%;
  }

  .testemonial-content-everything {
    padding-right: 0;
  }

  .container-2.test-container {
    width: 95%;
  }

  .testimonials-grid {
    grid-column-gap: 0px;
    grid-row-gap: 20px;
  }

  .right-arrow {
    width: 60px;
    height: 60px;
    bottom: -10%;
  }

  .slide-3 {
    padding: 0;
  }

  .testemonials {
    padding-top: 40px;
    padding-bottom: 155px;
    overflow: hidden;
  }

  .text-block-3 {
    font-size: 22px;
  }

  .sub-heading {
    font-size: 1.125rem;
  }

  .block-quote {
    font-size: .95rem;
  }

  .heading-2 {
    font-size: 1rem;
  }

  .slider-2 {
    width: 100%;
  }

  .page-top {
    background-image: linear-gradient(to bottom, null, null), url('../images/Ban1_1.webp');
    background-attachment: scroll, scroll;
    min-height: 250px;
  }

  .image {
    width: 200px;
  }

  .h1 {
    text-align: center;
    margin-top: 0;
    font-size: 28px;
    line-height: 1.2;
  }

  .p {
    font-size: 14px;
    line-height: 23px;
  }

  .h2 {
    margin-top: 0;
    font-size: 24px;
  }

  .h2._20.w {
    margin-top: 0;
  }

  .slide-nav-2 {
    display: none;
  }

  .button-div {
    flex-direction: column;
  }

  .button-div.left {
    align-items: flex-start;
    margin-top: 20px;
    margin-bottom: 0;
  }

  .button-div.c {
    flex-flow: column;
  }

  .h2-dark {
    font-size: 24px;
    line-height: 32px;
  }

  .footer-list {
    line-height: 24px;
  }

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

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

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

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

  .bottom-link {
    font-size: 14px;
  }

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

  .bullet-heading-2 {
    text-align: left;
  }

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

  .white-bubble-btn {
    align-self: center;
    height: 45px;
    margin-top: .5rem;
    margin-bottom: .5rem;
    margin-left: 0;
    display: flex;
  }

  .white-bubble-btn.banner-10 {
    margin-left: 0;
  }

  .white-bubble-btn.red-banner {
    margin-top: .25rem;
    margin-bottom: .25rem;
    margin-right: 0;
  }

  .white-bubble-btn.red-banner.no-auto {
    justify-content: center;
    align-items: center;
    margin-right: auto;
  }

  .white-bubble-btn.red-banner.no-auto.w--current, .white-bubble-btn.red-banner.a {
    margin-right: auto;
  }

  .white-bubble-btn.outline {
    justify-content: flex-start;
    margin-top: .25rem;
    margin-left: 0;
    margin-right: auto;
  }

  .white-bubble-btn.top-pad, .white-bubble-btn.grey, .white-bubble-btn._25 {
    margin-right: auto;
  }

  .white-bubble-btn._10 {
    margin-top: .25rem;
    margin-bottom: .25rem;
    margin-right: auto;
  }

  .h1-light {
    font-size: 20px;
  }

  .nav-item-img {
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .feature-wrap {
    flex-flow: row;
  }

  .dropdown-list-2.w--open {
    padding-top: 0;
  }

  .dropdown-list-wrap {
    flex-flow: column;
  }

  .dropdown-column {
    width: 100%;
  }

  .short-title {
    font-size: 14px;
    line-height: 17px;
  }

  .section-2-img-full-2.s2-3, .section-2-img-full-2.s3-3, .section-2-img-full-2.s5-3, .section-2-img-full-2.s1-2, .section-2-img-full-2.s4-3 {
    min-height: 250px;
  }

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

  .call-to-action-box.service {
    margin-top: 0;
  }

  .padding-global {
    padding: 0;
  }

  .section-title-17 {
    text-align: center;
    margin-top: 0;
    font-size: 18px;
    line-height: 25px;
  }

  .div-block-265 {
    padding-left: 16px;
    padding-right: 16px;
  }

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

  .footer-contact-section-splash {
    padding: 15% 5%;
  }

  .trust {
    height: 80px;
    margin-left: 0;
  }

  .fmb {
    height: 70px;
  }

  .hero-large-text-2 {
    margin-bottom: 5px;
    font-size: 28px;
    font-weight: 800;
    line-height: 1.1;
  }

  .hero-large-text-2._10 {
    font-size: 28px;
  }

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

  .work-grid {
    width: 100%;
  }

  .container-large-4 {
    width: 95%;
  }

  .work-component-3 {
    min-height: 22rem;
    padding: 2rem 1rem 2rem 0;
  }

  .work-component-1 {
    width: 100%;
    min-height: 22rem;
    padding: 2rem 1rem 2rem 0;
  }

  .work-component-1:hover {
    background-position: 50%;
    background-size: cover;
  }

  .work-component-2 {
    min-height: 22rem;
    padding: 2rem 1rem 2rem 0;
  }

  .margin-bottom-2 {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .text-color-white-2 {
    margin-bottom: 5px;
    padding: 6px 10px;
    font-size: 15px;
    font-weight: 600;
    line-height: 20px;
  }

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

  .work-component-wrapper {
    font-size: 13px;
  }

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

  .wa-icon {
    font-size: 30px;
  }

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

  .livechat-button-2 {
    width: 90%;
  }

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

  .whatsapp-container-2 {
    width: 58px;
    height: 58px;
    bottom: 10px;
    left: auto;
    right: 10px;
  }

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

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

  .fs-cc-banner_component-2 {
    display: none;
  }

  .radio-button-field {
    padding-left: 10px;
    padding-right: 10px;
    font-size: 13px;
  }

  .card-title-heading.white {
    margin-bottom: 0;
    font-size: 1.2rem;
    line-height: 1.2em;
  }

  .section-contact {
    width: 100%;
    max-width: none;
    padding: 35px 15px;
  }

  .button25_line-2-2 {
    width: 2.5px;
    height: 22px;
  }

  .menu-link.blog, .menu-link.contact, .menu-link.about {
    width: 55px;
    height: 55px;
  }

  .menu-link.home {
    width: 50px;
    height: 50px;
  }

  .button25_line-1-2 {
    width: 22px;
    height: 2.5px;
  }

  .menu-button-animation {
    width: 52px;
    height: 52px;
    padding: 10px;
    box-shadow: 0 6px 5px #00000040;
  }

  .menu-button-2 {
    margin-right: 5px;
  }

  .content-right.s1-2, .content-right.s2-2, .content-right.s3-2, .content-right.s5-2, .content-right.s4-2 {
    min-height: 250px;
  }

  .cta-space {
    display: none;
  }

  .hover-text {
    font-size: 22px;
    line-height: 28px;
  }

  .lb-image {
    height: 290px;
  }

  .button-left {
    display: none;
  }

  .button-left.smaller._100 {
    justify-content: center;
    align-items: center;
    display: flex;
  }

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

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

#w-node-d4cfa3ce-90fc-4f46-dfba-4b32c68b8bbf-12bf4509 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-adbea63c-d41c-c327-4198-4a5a8d58accf-12bf4509 {
  grid-area: span 2 / span 1 / span 2 / span 1;
}

#w-node-_5a1d9f18-e588-56e6-d6ed-7ae3c4649e06-12bf4509, #w-node-_2ee52069-c011-2593-2af0-b82ee0617beb-12bf4509, #w-node-_1f81431f-3fd4-ce50-9f9a-783d355c4949-12bf4509 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-d6413dd0-3c87-6e39-046e-f27dfe230065-12bf4509, #w-node-d6413dd0-3c87-6e39-046e-f27dfe230082-12bf4509, #w-node-d6413dd0-3c87-6e39-046e-f27dfe23009f-12bf4509, #w-node-_86d18613-b8a3-9cbd-239e-c4c2439cd0d6-12bf4509 {
  place-self: auto;
}

#w-node-cacd03f4-6e2f-1c4c-7b8a-467327a56b7c-12bf4509 {
  place-self: center end;
}

#w-node-ffdaca62-699e-3202-4437-a6fcb3db8260-12bf4509 {
  place-self: center start;
}

#w-node-_5d7a501f-c3c6-3913-bd63-bb004b5ef965-4b5ef962, #w-node-_13d81069-cf3c-437c-f776-487d5abf5a6b-4b5ef962 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-c0bc289f-8808-d366-9df1-782857c90a1c-e514dc9c, #w-node-c0bc289f-8808-d366-9df1-782857c90a3d-e514dc9c {
  place-self: auto;
}

#w-node-c0bc289f-8808-d366-9df1-782857c90a5e-e514dc9c {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: auto;
}

#w-node-_9556d136-1149-e0dc-fb8a-3c26655518dd-0e223495, #w-node-_9556d136-1149-e0dc-fb8a-3c26655518e2-0e223495 {
  place-self: auto;
}

@media screen and (max-width: 991px) {
  #w-node-adbea63c-d41c-c327-4198-4a5a8d58accf-12bf4509 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_1f81431f-3fd4-ce50-9f9a-783d355c4949-12bf4509 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-c0bc289f-8808-d366-9df1-782857c90a5e-e514dc9c {
    grid-area: span 1 / span 2 / span 1 / span 2;
    place-self: auto;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_1f81431f-3fd4-ce50-9f9a-783d355c4949-12bf4509 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_70385179-4d1c-3a17-8fc3-115a5e6d55e7-5e6d55df {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-_70385179-4d1c-3a17-8fc3-115a5e6d55ec-5e6d55df {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-c0bc289f-8808-d366-9df1-782857c90a5e-e514dc9c {
    grid-area: span 1 / span 1 / span 1 / span 1;
    place-self: auto;
  }
}

@media screen and (max-width: 479px) {
  #w-node-cacd03f4-6e2f-1c4c-7b8a-467327a56b7c-12bf4509, #w-node-ffdaca62-699e-3202-4437-a6fcb3db8260-12bf4509 {
    grid-area: span 1 / span 2 / span 1 / span 2;
    place-self: center;
  }

  #w-node-_70385179-4d1c-3a17-8fc3-115a5e6d55e7-5e6d55df {
    justify-self: center;
  }

  #w-node-_70385179-4d1c-3a17-8fc3-115a5e6d55ec-5e6d55df {
    grid-area: 2 / 1 / 3 / 2;
    justify-self: center;
  }
}


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