@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: #2685bf;
  --primary: #2685bf;
  --black: black;
  --light-blue: #95c2e5;
  --light-grey: #ccc;
  --pale-grey: #ddd;
  --grey: #00000091;
}

.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 {
  background-color: var(--white);
  color: var(--secondary);
  font-family: Montserrat, sans-serif;
}

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

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

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

.announcement-link {
  color: var(--white);
  font-weight: 400;
  text-decoration: none;
  transition: all .3s ease-in-out;
}

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

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

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

.announcement-icon {
  color: var(--white);
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  font-family: "Fa 300", 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;
}

.dropdown-menu-link.w--current {
  border-left-color: var(--secondary);
  color: var(--primary);
}

.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 {
  margin-left: 2px;
  margin-right: 2px;
  padding: 10px 14px;
  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(--black);
}

.header-social-icon {
  border: 2px solid var(--secondary);
  background-color: var(--secondary);
  color: var(--white);
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  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 {
  border: 2px solid var(--secondary);
  background-color: var(--white);
  color: var(--secondary);
  border-radius: 11px;
}

.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: 100;
  background-color: var(--white);
  width: 100%;
  padding-top: 15px;
  padding-bottom: 15px;
  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(#00000080, #00000080), url('../images/Main-Banner.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);
  text-transform: uppercase;
  border-radius: 4px;
  margin-top: 0;
  margin-right: 20px;
  padding: 15px 40px;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.5;
  text-decoration: none;
  transition: all .2s ease-in-out;
  display: inline-block;
}

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

.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: 80vh;
  position: static;
}

.slide-2 {
  background-image: linear-gradient(#00000080, #00000080), url('../images/Tyre.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.blue {
  background-color: var(--primary);
}

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

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

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

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

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

.inner-img {
  background-image: url('../images/IMG_0239.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%;
  display: flex;
  position: static;
}

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

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

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

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

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

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

.card-bullet.col3 {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

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

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

.card-icon.w {
  background-color: var(--white);
  color: var(--secondary);
  flex: none;
}

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

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

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

.bullet-icon {
  text-align: left;
  background-image: url('../images/tire-rugged-solid.svg');
  background-position: 50%;
  background-size: cover;
  width: 100px;
  height: 100px;
  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/road-sharp-solid.svg');
  margin-left: 0;
}

.bullet-icon.kitchen {
  background-image: url('../images/truck-front-sharp-solid.svg');
  margin-left: 0;
  margin-right: auto;
}

.bullet-block-title {
  color: #212529;
  text-align: left;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.2em;
  font-weight: 700;
  line-height: 1.75;
}

.bullet-block-title.w {
  color: var(--white);
  margin-bottom: 20px;
}

.bullet-list-services {
  background-color: #f0f3f7;
  padding-top: 100px;
  padding-bottom: 100px;
}

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

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

.bullet-list-grid._3 {
  grid-template-columns: 1fr 1fr 1fr;
  margin-top: 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);
  text-transform: uppercase;
  border-radius: 4px;
  margin-top: 20px;
  padding: 10px 20px;
  font-weight: 800;
  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;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 30px;
  transition: all .2s ease-in-out;
  display: flex;
  box-shadow: 1px 1px 3px #0000000d;
}

.bullet-block:hover {
  transform: translate(0, -5px);
}

.bullet-heading {
  color: var(--black);
  text-align: left;
  align-items: center;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  display: flex;
}

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

.inner-text-content {
  width: 68%;
  max-width: 1400px;
  margin-left: 60px;
  margin-right: auto;
}

.container-fluid.display-flex {
  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;
}

.heading-3-cta-section {
  background-color: var(--primary);
  background-image: linear-gradient(#00000080, #00000080), url('../images/CTA.webp');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  background-attachment: scroll, fixed;
  justify-content: center;
  align-items: center;
  padding-top: 60px;
  padding-bottom: 60px;
  display: flex;
}

.h3-wrapper {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

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

.heading-3-text {
  color: var(--white);
  text-align: center;
  text-transform: uppercase;
  flex-flow: column;
  margin-bottom: 20px;
  padding-right: 0;
  font-size: 24px;
  font-weight: 800;
  line-height: 32px;
  display: block;
}

.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;
  font-weight: 800;
  transition-duration: .45s;
  display: flex;
}

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

.brand-bands {
  background-color: var(--black);
  padding-top: 60px;
  padding-bottom: 60px;
}

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

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

.footer-desc {
  color: var(--white);
  font-size: 1em;
}

.footer-col {
  width: 30%;
}

.footer-link {
  color: var(--white);
  text-transform: uppercase;
  cursor: pointer;
  font-size: 15.5px;
  font-weight: 500;
  text-decoration: none;
  transition: color .45s ease-in-out;
}

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

.contact-block-1 {
  border-right: 1px solid var(--white);
  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;
}

.footer-social-media {
  background-color: var(--black);
  color: var(--white);
  border: 2px solid #000;
  border-radius: 10px;
  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(--secondary);
  color: var(--black);
}

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

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

.footer-menu-text {
  color: var(--white);
  margin-bottom: 20px;
  font-size: 1.5em;
  font-style: italic;
  font-weight: 800;
}

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

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

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

.contact-info-link {
  color: var(--white);
  font-size: 15px;
  font-weight: 400;
  line-height: 24px;
  text-decoration: none;
  display: inline-block;
}

.contact-info-link.right {
  border-left: 1px solid var(--white);
  margin-left: 10px;
  padding-left: 10px;
}

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

.scroll-up {
  z-index: 1000;
  border: 2px solid var(--white);
  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;
}

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

._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/IMG_0478.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 4px;
  flex-flow: row;
  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/IMG_0163.webp');
}

.services-link-box._2 {
  background-image: url('../images/IMG_0476.webp');
  background-position: 50% 20%;
}

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

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

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

.service-box-title.link {
  background-color: var(--primary);
  color: var(--white);
  text-transform: uppercase;
  font-weight: 700;
}

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

.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: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
  position: relative;
}

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

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

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

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

.page-top.s1 {
  background-image: linear-gradient(#00000080, #00000080), url('../images/IMG_0163.webp');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  background-attachment: scroll, fixed;
}

.page-top.s2 {
  background-image: linear-gradient(#00000080, #00000080), url('../images/IMG_0476.webp');
  background-position: 0 0, 50% 45%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  background-attachment: scroll, fixed;
}

.page-top.s3 {
  background-image: linear-gradient(#00000080, #00000080), url('../images/IMG_0914.webp');
  background-position: 0 0, 50% 25%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  background-attachment: scroll, fixed;
}

.page-top.s4 {
  background-image: linear-gradient(#00000080, #00000080), url('../images/IMG_0478.webp');
  background-position: 0 0, 50% 25%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  background-attachment: scroll, fixed;
}

.page-top.area {
  background-image: linear-gradient(#00000080, #00000080), url('../images/IMG_0665.webp');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  background-attachment: scroll, fixed;
}

.page-top.gallery {
  background-image: linear-gradient(#00000080, #00000080), url('../images/IMG_1037.webp');
  background-position: 0 0, 50% 20%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  background-attachment: scroll, fixed;
}

.page-top.test {
  background-image: linear-gradient(#00000080, #00000080), url('../images/IMG_0472.webp');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  background-attachment: scroll, fixed;
}

.page-top.contact {
  background-image: linear-gradient(#00000080, #00000080), url('../images/IMG_0400.webp');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  background-attachment: scroll, fixed;
}

.page-top.site-map {
  background-image: linear-gradient(#00000080, #00000080), url('../images/IMG_0291-2.webp');
  background-position: 0 0, 50% 40%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  background-attachment: scroll, fixed;
}

.co-logo {
  max-width: none;
  height: 100px;
}

.h1 {
  color: var(--white);
  text-transform: capitalize;
  align-items: center;
  font-size: 42px;
  font-weight: 800;
  line-height: 48px;
  display: block;
}

.p {
  color: var(--white);
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
}

.h2 {
  color: var(--black);
  text-transform: uppercase;
  margin-top: 30px;
  font-size: 30px;
  font-weight: 800;
  line-height: 1.2;
}

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

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

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

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

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

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

.footer-list {
  color: var(--white);
  font-size: 16px;
  line-height: 25px;
}

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

.backtotop {
  height: 0;
}

.dropdown-toggle {
  margin-top: 0;
  margin-left: 2px;
  margin-right: 2px;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 14px;
  font-weight: 600;
  transition: all .3s;
}

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

.co-desc {
  color: var(--white);
  text-transform: capitalize;
  font-size: 15px;
  font-weight: 400;
  line-height: 25px;
}

.h3-logo {
  height: 130px;
}

.h3-logo-link {
  margin-bottom: 25px;
}

.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: #151623;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-size: 1.25em;
  font-weight: 800;
}

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

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

.heading-2-img-section {
  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.no-img {
  background-image: none;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

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

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

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

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

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

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

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

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

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

.cta-link {
  color: #000c;
  font-size: 1.1em;
  font-weight: 500;
  line-height: 1.75;
  text-decoration: none;
  transition: color .45s ease-in-out;
}

.cta-link:hover {
  color: var(--primary);
}

.cta-link.no-hover {
  color: #000c;
  transition-property: none;
}

.cta-link.no-hover:hover {
  color: var(--black);
}

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

.main-form {
  width: 100%;
}

.icon-2 {
  background-color: var(--black);
  color: #f9f9f9;
  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;
}

.section-2-text-content-2 {
  background-color: var(--secondary);
  width: 50%;
  padding: 50px 0;
}

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

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

.section-2-img-full-2.s2-2 {
  background-image: url('../images/a2.webp');
  background-position: 25%;
  background-size: cover;
}

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

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

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

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

.default-btn-2 {
  color: #fdfdfd;
  background-color: #ffd166;
  padding: 15px 40px;
  font-weight: 600;
  text-decoration: none;
  transition: all .2s ease-in-out;
  display: inline-block;
}

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

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

.default-btn-2.margin-top-20.light-btn {
  color: var(--secondary);
  background-color: #fdfdfd;
  border-color: #fdfdfd;
  margin-top: 20px;
}

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

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

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

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

.page-loader {
  z-index: 5000;
  background-color: var(--white);
  justify-content: center;
  align-items: center;
  display: none;
  position: fixed;
  inset: 0%;
}

.lottie-animation-2 {
  width: 40%;
}

.hyperlink {
  box-shadow: inset 0 -2px 0 0 var(--secondary);
  color: var(--secondary);
  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(--secondary);
  color: var(--white);
}

.hyperlink.w--current {
  color: var(--secondary);
}

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

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

.text-block-5 {
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
}

.bold-text, .bold-text-2, .bold-text-3 {
  text-transform: uppercase;
}

.home-map {
  filter: grayscale(70%);
  margin-bottom: -10px;
}

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

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

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

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

.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 {
  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-prefs_overlay {
  z-index: -1;
  background-color: #03172499;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.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-prefs_toggle-wrapper {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  display: flex;
}

.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-manager_component {
  z-index: 999;
  display: none;
  position: fixed;
  inset: auto auto 100px 20px;
}

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

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

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

.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_space-medium {
  margin-bottom: 40px;
}

.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-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_trigger {
  display: none;
}

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

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

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

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

.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-prefs_checkbox-label {
  display: none;
}

.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_content {
  height: 100%;
  padding: 40px 32px;
  overflow: scroll;
}

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

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

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

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

.area-map._20 {
  filter: grayscale(70%);
  margin-top: 25px;
}

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

.g-thumb {
  object-fit: cover;
  width: 100%;
  height: 325px;
}

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

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

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

.cookies {
  width: 32px;
  min-width: 32px;
  height: 32px;
  min-height: 32px;
}

@media screen and (min-width: 1920px) {
  .test-slider {
    position: static;
  }

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

@media screen and (max-width: 991px) {
  .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-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);
  }

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

  .nav-link {
    background-color: var(--primary);
    color: var(--white);
    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);
    color: var(--black);
    border-right: 1px solid #3535353d;
    width: 33.3%;
    height: auto;
    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);
    text-align: left;
    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;
    font-size: 1.2em;
  }

  .nav-toggle {
    border-radius: 6px;
    margin-right: 10px;
  }

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

  .nav {
    background-color: #353535;
    height: 100%;
    margin-bottom: auto;
  }

  .navbar-2 {
    justify-content: space-between;
  }

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

  .hero-content {
    width: 70%;
  }

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

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

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

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

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

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

  .bullet-list-grid {
    grid-template-columns: 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-contact-info {
    flex-direction: column;
  }

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

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

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

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

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

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

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

  .heading-2-img-section, .left-text-area {
    width: 100%;
  }

  .left-text-area.paddint-tomp-bottom-40 {
    background-color: #101b22;
    width: 100%;
  }

  .left-text-area.paddint-tomp-bottom-40.bg-white {
    background-color: #0000;
  }

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

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

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

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

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

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

  .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;
    display: grid;
  }

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

  .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: 50vh;
  }

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

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

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

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

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

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

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

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

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

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

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

  .h1 {
    font-size: 38px;
  }

  .p {
    margin-bottom: 20px;
  }

  .button-div {
    width: 100%;
    display: flex;
  }

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

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

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

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

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

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

  .g-thumb {
    height: 300px;
  }
}

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

  .announcement-link {
    font-size: 14px;
    line-height: 16px;
  }

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

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

  .announcement-contact-info {
    justify-content: center;
  }

  .announcement-contact-info.margin-right-20 {
    text-align: center;
    justify-content: 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%;
  }

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

  .nav-link.w--current {
    color: var(--white);
  }

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

  .header-social-icon {
    color: var(--secondary);
    border-radius: 0;
  }

  .header-social-icon:hover {
    background-color: var(--secondary);
    border-radius: 0;
  }

  .nav-toggle {
    margin-right: 0;
  }

  .navbar-2 {
    flex-flow: column;
    align-items: center;
  }

  .navbar {
    padding-bottom: 0;
    display: flex;
  }

  .slider-arrow {
    display: none;
  }

  .hero-content {
    width: 85%;
  }

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

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

  .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 {
    box-shadow: 7px 7px 0 0 var(--primary);
    margin-bottom: 20px;
  }

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

  .card-bullet.area, .card-bullet.col3 {
    grid-template-columns: 1fr;
  }

  .card-bullet.col2 {
    grid-column-gap: 6px;
    grid-row-gap: 6px;
    grid-template-columns: 1fr;
  }

  .card-icon {
    flex: none;
  }

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

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

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

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

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

  .bullet-heading {
    line-height: 24px;
  }

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

  .heading-3-text {
    margin-bottom: 20px;
    font-size: 1.1em;
    line-height: 26px;
  }

  .h3-cta-btns {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex-wrap: wrap;
    grid-template-rows: 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-desc {
    line-height: 12px;
  }

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

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

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

  .contact-icon {
    display: none;
  }

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

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

  .services-link-box {
    min-height: 250px;
  }

  .service-box-title {
    padding-top: 10px;
    padding-bottom: 10px;
  }

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

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

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

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

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

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

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

  .page-top.s1 {
    background-image: linear-gradient(#00000080, #00000080), url('../images/IMG_0163.webp');
    background-position: 0 0, 50%;
    background-repeat: repeat, no-repeat;
    background-size: auto, cover;
    background-attachment: scroll, scroll;
    min-height: 240px;
  }

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

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

  .page-top.s4 {
    background-image: linear-gradient(#00000080, #00000080), url('../images/IMG_0478.webp');
    background-position: 0 0, 50% 25%;
    background-repeat: repeat, no-repeat;
    background-size: auto, cover;
    background-attachment: scroll, scroll;
    min-height: 240px;
  }

  .page-top.area {
    background-image: linear-gradient(#00000080, #00000080), url('../images/IMG_0665.webp');
    background-position: 0 0, 50%;
    background-repeat: repeat, no-repeat;
    background-size: auto, cover;
    background-attachment: scroll, scroll;
    min-height: 240px;
  }

  .page-top.gallery {
    background-image: linear-gradient(#00000080, #00000080), url('../images/IMG_1037.webp');
    background-position: 0 0, 50% 20%;
    background-repeat: repeat, no-repeat;
    background-size: auto, cover;
    background-attachment: scroll, scroll;
    min-height: 240px;
  }

  .page-top.test {
    background-image: linear-gradient(#00000080, #00000080), url('../images/IMG_0472.webp');
    background-position: 0 0, 50%;
    background-repeat: repeat, no-repeat;
    background-size: auto, cover;
    background-attachment: scroll, scroll;
    min-height: 240px;
  }

  .page-top.contact {
    background-image: linear-gradient(#00000080, #00000080), url('../images/IMG_0400.webp');
    background-position: 0 0, 50%;
    background-repeat: repeat, no-repeat;
    background-size: auto, cover;
    background-attachment: scroll, scroll;
    min-height: 240px;
  }

  .page-top.site-map {
    background-image: linear-gradient(#00000080, #00000080), url('../images/IMG_0291-2.webp');
    background-position: 0 0, 50%;
    background-repeat: repeat, no-repeat;
    background-size: auto, cover;
    background-attachment: scroll, scroll;
    min-height: 240px;
  }

  .h1 {
    text-align: center;
    font-size: 24px;
    line-height: 1.2;
  }

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

  .h2 {
    text-align: left;
    margin-top: 10px;
    font-size: 24px;
    line-height: 28px;
  }

  .p-dark, .sub-head {
    text-align: left;
  }

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

  .button-div {
    flex-direction: column;
    margin-top: 0;
  }

  .h3-logo {
    height: 100px;
  }

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

  .contact-info-block.m-bottom-20.m-top-60 {
    align-items: center;
  }

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

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

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

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

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

  .page-loader {
    display: none;
  }

  .lottie-animation-2 {
    width: 90%;
  }

  .text-block-5 {
    text-align: center;
    font-size: 16px;
    line-height: 24px;
  }

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

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

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

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

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

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

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

  .fs-cc-manager_button {
    padding: 8px;
  }

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

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

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

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

#w-node-d6413dd0-3c87-6e39-046e-f27dfe230065-03962e47, #w-node-d6413dd0-3c87-6e39-046e-f27dfe230082-03962e47, #w-node-d6413dd0-3c87-6e39-046e-f27dfe23009f-03962e47 {
  place-self: auto;
}

#w-node-_5d7a501f-c3c6-3913-bd63-bb004b5ef96b-4b5ef962 {
  place-self: end;
}

#w-node-_85e78aa5-1568-1653-407b-9e73dc4265bc-dc4265b3 {
  align-self: end;
}

#w-node-_85e78aa5-1568-1653-407b-9e73dc4265c0-dc4265b3 {
  align-self: center;
}

#w-node-_85e78aa5-1568-1653-407b-9e73dc4265c6-dc4265b3 {
  align-self: end;
}

#w-node-_85e78aa5-1568-1653-407b-9e73dc4265ca-dc4265b3, #w-node-_85e78aa5-1568-1653-407b-9e73dc4265d3-dc4265b3, #w-node-_85e78aa5-1568-1653-407b-9e73dc4265e0-dc4265b3 {
  align-self: center;
}

#w-node-d6413dd0-3c87-6e39-046e-f27dfe230065-35d76e60 {
  grid-area: span 1 / span 2 / span 1 / span 2;
  place-self: auto;
}

#w-node-d6413dd0-3c87-6e39-046e-f27dfe230065-e7c6f4d4, #w-node-ff3347ea-fdd4-8824-9099-9d41c5cced73-e7c6f4d4, #w-node-ce64bb2c-5623-0421-6b37-bf8a2c06385c-e7c6f4d4 {
  grid-area: span 1 / span 3 / span 1 / span 3;
  place-self: auto;
}

#w-node-d6413dd0-3c87-6e39-046e-f27dfe230065-eba457e7, #w-node-a3cb0a95-3a91-7806-ea08-b32978ddd1ac-eba457e7, #w-node-_8b6ca65a-e7c2-1ead-dd6f-0c144ad26453-eba457e7, #w-node-d6413dd0-3c87-6e39-046e-f27dfe230065-f073c664, #w-node-a3cb0a95-3a91-7806-ea08-b32978ddd1ac-f073c664, #w-node-_781ddc5a-ad9f-ef08-9021-0f994224ef01-f073c664, #w-node-_69d79f06-d0fb-7828-4901-d108122049f7-f073c664, #w-node-_69d79f06-d0fb-7828-4901-d108122049fd-f073c664, #w-node-_69d79f06-d0fb-7828-4901-d10812204a03-f073c664 {
  place-self: auto;
}

#w-node-f3665959-f544-e640-d9f8-06afb7e641b6-04c244e7, #w-node-_092ccf63-ec7b-c1ae-b580-37de6dc2562a-04c244e7, #w-node-_2b76defb-9ba3-8c02-1d3c-6529e71e5d41-04c244e7, #w-node-f0d5cfdf-049b-232c-7ef6-0280951fccd8-04c244e7, #w-node-_508c3c13-8535-3883-cc65-4aa50a46dee8-04c244e7, #w-node-_50f2befb-88ee-88d8-a857-05b3009f5fdc-04c244e7, #w-node-cabdb933-9ade-a0a0-be80-2b9808a5b91c-04c244e7, #w-node-_23f8a69e-8f7b-d585-b03b-dd65e2ff7e63-04c244e7, #w-node-_3cbf521c-d4c2-b751-b3cc-cab9e935cebf-04c244e7, #w-node-_5673dc02-7a26-ce24-f402-98657f02cac5-04c244e7, #w-node-f76fffbd-23d3-2d4a-3c79-f9312d7cef60-04c244e7, #w-node-_5031ce6a-9807-c70b-0d75-f91976d70804-04c244e7, #w-node-d7474df7-3c06-f9a6-a1b6-fe61e2758e11-04c244e7, #w-node-feb72e0d-f040-4c09-85ce-59b52e8e0a1d-04c244e7, #w-node-_23a0c3db-0563-d636-655c-0d8d6d3bace3-04c244e7, #w-node-_0e443760-5c95-9dcc-46d9-198d309bba65-04c244e7, #w-node-_5f4cb023-3439-bc27-1293-4f66d4a48c79-04c244e7, #w-node-_3749229b-5c54-6c73-5210-3846279cab7d-04c244e7, #w-node-_3d8506f2-6fea-103b-19bc-d3313faeab3e-04c244e7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

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

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

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

  #w-node-_5d7a501f-c3c6-3913-bd63-bb004b5ef96a-4b5ef962 {
    justify-self: auto;
  }

  #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-_70385179-4d1c-3a17-8fc3-115a5e6d55f1-5e6d55df {
    grid-area: span 2 / span 1 / span 2 / span 1;
    place-self: center;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_5d7a501f-c3c6-3913-bd63-bb004b5ef96a-4b5ef962 {
    grid-area: span 1 / span 1 / span 1 / span 1;
    justify-self: auto;
  }

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

  #w-node-_70385179-4d1c-3a17-8fc3-115a5e6d55f1-5e6d55df {
    grid-area: span 1 / span 1 / span 1 / span 1;
    place-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;
}