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

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

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

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

@font-face {
  font-family: "Fa Sharp 300";
  src: url('../fonts/fa-sharp-light-300.ttf') format("truetype");
  font-weight: 300;
  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 100";
  src: url('../fonts/fa-thin-100.ttf') format("truetype");
  font-weight: 100;
  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: Fa6;
  src: url('../fonts/FA6-Regular.otf') format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Fa6 solid;
  src: url('../fonts/FA6-Solid.otf') format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Fa6 brands;
  src: url('../fonts/FA6-Brands.otf') format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Arrow right solid;
  src: url('../fonts/arrow-right-solid.svg') format("svg");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --black: #212128;
  --white: #fff;
  --primary: #0084b0;
  --silver: #b7b5b5;
  --third: #400;
  --secondary: #a2b3bb;
  --transparent: #fff0;
  --pale-grey: #ddd;
  --circle-clip: 70.7%;
}

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

.banner-header {
  color: var(--white);
  letter-spacing: -.5px;
  text-transform: uppercase;
  flex-direction: row;
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 33px;
  font-weight: 700;
  line-height: 40px;
  display: block;
}

.p {
  color: var(--white);
  width: 65%;
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 30px;
}

.button-outline {
  border: 1.5px solid var(--white);
  color: var(--white);
  background-color: #0000;
  border-radius: 20px 2px;
  margin-top: 20px;
  padding: 15px 32px;
  font-family: Poppins;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: all .2s ease-in-out;
  display: inline-block;
}

.button-outline:hover {
  border-width: 1.5px;
  border-color: var(--primary);
  background-color: var(--primary);
  color: var(--white);
}

.body-section {
  margin-top: 0;
  padding-top: 100px;
  padding-bottom: 100px;
}

.body-section.white {
  padding-top: 0;
  padding-bottom: 100px;
}

.body-section.form-section {
  padding-top: 100px;
  padding-bottom: 100px;
}

.body-section._0b {
  padding-bottom: 0;
}

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

.container {
  flex-direction: column;
  align-items: flex-start;
  width: 95%;
  max-width: 1500px;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.container.banner {
  width: 95%;
  max-width: 1500px;
}

.hero-bg-grad {
  background-image: linear-gradient(180deg, var(--black), #fff0), linear-gradient(to bottom, #00000052, #00000052), url('../images/Banner-Service.webp');
  background-position: 0 0, 0 0, 50% 65%;
  background-size: auto, auto, cover;
  width: 100%;
  height: 100vh;
  margin-top: 0;
  padding-top: 80px;
  padding-bottom: 0;
}

.left-section {
  flex-flow: column;
  align-items: flex-start;
  width: 80%;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  transition: all .2s ease-in-out;
  display: flex;
}

.service-grid {
  grid-column-gap: 38px;
  grid-row-gap: 38px;
  margin-top: 42px;
}

.service-div {
  border-bottom: 1px solid var(--white);
  height: auto;
  padding-bottom: 20px;
}

.service-top-image {
  background-image: url('../images/painting-and-decorating-service-box_1.webp');
  background-position: 50% 65%;
  background-size: cover;
  border-radius: 22px;
  justify-content: flex-end;
  align-items: flex-end;
  height: 425px;
  display: flex;
}

.service-top-image._2 {
  background-image: url('../images/commercial-painting-service-box_1.webp');
  background-position: 50%;
  background-size: cover;
  border-radius: 24px;
}

.service-top-image._3 {
  background-image: url('../images/exterior-painting-service-box.webp');
  background-position: 50%;
  background-size: cover;
}

.service-top-image._4 {
  background-image: url('../images/gallery_1.webp');
  background-position: 50%;
  background-size: cover;
}

.service-number {
  color: var(--primary);
  margin-top: 25px;
  font-family: Montserrat, sans-serif;
  font-size: 52px;
  font-weight: 500;
  line-height: 52px;
}

.service-box-wrapper {
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 10px;
  display: flex;
}

.service-header {
  color: var(--white);
  text-transform: uppercase;
  margin-top: 35px;
  margin-bottom: 40px;
  margin-right: 0;
  font-family: Montserrat, sans-serif;
  font-size: 27px;
  font-weight: 700;
}

.service-text {
  color: var(--white);
  margin-bottom: 0;
  font-size: 1.1rem;
  line-height: 1.7rem;
}

.service-text.link {
  color: var(--silver);
  letter-spacing: .5px;
  font-size: 15px;
  line-height: 20px;
  text-decoration: none;
  transition: color .45s ease-in-out;
}

.service-text.link:hover {
  color: var(--white);
}

.service-paragraph {
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 10px;
  margin-left: 24px;
  display: block;
}

.service-link {
  background-color: var(--primary);
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  width: 65px;
  height: 65px;
  margin-bottom: -5px;
  margin-right: -5px;
  text-decoration: none;
  transition: all .4s ease-in-out;
  display: flex;
  position: relative;
  bottom: 24px;
  right: 24px;
}

.service-link:hover {
  transform: scale(1.2);
}

.small-sub {
  color: var(--white);
  letter-spacing: 0;
  margin-bottom: 10px;
  font-family: Poppins;
  font-size: 16.5px;
  font-weight: 400;
}

.para {
  color: var(--white);
  width: 60%;
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 1.75;
}

.img-div {
  box-shadow: -15px 17px 0 0 var(--third);
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  align-self: stretch;
  align-items: stretch;
  width: 46%;
  display: flex;
}

.inner-img {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-size: cover;
  border-radius: 0;
  justify-content: flex-end;
  align-items: flex-end;
  width: 100%;
  height: 100%;
  display: flex;
  position: static;
}

.section-h1-wrapper.display-flex {
  justify-content: space-between;
  align-items: stretch;
  margin-top: 60px;
  display: flex;
}

.right-side {
  flex: 0 auto;
  width: 45%;
}

.right-side.content {
  width: 50%;
}

.right-side._w---100 {
  width: 100%;
}

.footer-col.large {
  margin-right: 60px;
}

.footer-list-items {
  padding-left: 0;
  list-style-type: none;
}

.footer-copy-text {
  color: var(--silver);
  text-align: right;
  border-bottom: 1px #dfdfdf;
  max-width: 800px;
  padding-bottom: 0;
  font-size: 14px;
}

.footer-link {
  color: var(--white);
  padding-top: 0;
  padding-bottom: 0;
  font-size: 17px;
  font-weight: 300;
  line-height: 32px;
  text-decoration: none;
  transition: all .45s ease-in-out;
}

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

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

.footer-wrapper {
  grid-column-gap: 35px;
  grid-row-gap: 35px;
  grid-template-rows: auto;
  grid-template-columns: 2.25fr 1.25fr 1.25fr 1.25fr;
  grid-auto-columns: 1fr;
  padding-bottom: 40px;
  display: grid;
}

.footer-section-title {
  color: #b7b5b5;
  margin-bottom: 20px;
  font-size: 1.35em;
  font-weight: 300;
}

.footer-section-title.white {
  color: var(--white);
  text-transform: uppercase;
  font-size: 1.8em;
}

.footer-section {
  border-top: 1px solid #e0e0e080;
  padding-top: 60px;
}

.footer-copy {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  color: #a9a9a9;
  border-top: 1px solid #ffffff80;
  flex-direction: row;
  grid-template-rows: auto;
  grid-template-columns: .25fr .75fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 40px;
  display: flex;
}

.footer-p {
  color: var(--white);
  margin-bottom: 20px;
  font-size: 16.5px;
  font-weight: 300;
  line-height: 32px;
}

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

.header-social-icon {
  color: var(--white);
  background-color: #0000;
  justify-content: center;
  align-items: center;
  margin-right: 28px;
  font-family: Fa6 brands, sans-serif;
  font-size: 1.8em;
  text-decoration: none;
  transition: all .2s ease-in-out;
  display: flex;
}

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

.header-social-icon.margin-right-none {
  color: var(--white);
  width: auto;
  height: auto;
  margin-right: 28px;
  font-size: 1.8em;
}

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

.full-width-image-section {
  background-image: linear-gradient(to right, #000000cf, #fff0), url('../images/ionut-vlad-idXQEOxhmvU-unsplash.jpeg');
  background-position: 0 0, 50% 60%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  background-attachment: scroll, fixed;
  justify-content: center;
  align-items: center;
  padding-top: 60px;
  padding-bottom: 60px;
  display: flex;
}

.full-width-image-section.para-img {
  background-image: linear-gradient(#0006, #0006), linear-gradient(90deg, #0009, #fff0), url('../images/IMG_7707.webp');
  background-position: 0 0, 0 0, 50%;
  background-repeat: repeat, repeat, repeat;
  background-size: auto, auto, cover;
  background-attachment: scroll, scroll, fixed;
  padding-top: 100px;
  padding-bottom: 100px;
}

.full-width-image-section.s1-2 {
  background-image: linear-gradient(#00000059, #00000059), linear-gradient(90deg, #0009, #fff0), url('../images/EJ28.webp');
  background-position: 0 0, 0 0, 50%;
  background-repeat: repeat, repeat, repeat;
  background-size: auto, auto, cover;
  background-attachment: scroll, scroll, fixed;
  padding-top: 100px;
  padding-bottom: 100px;
}

.full-width-image-section.s2-2 {
  background-image: linear-gradient(#00000059, #00000059), linear-gradient(90deg, #0009, #fff0), url('../images/EJ37.webp');
  background-position: 0 0, 0 0, 50%;
  background-repeat: repeat, repeat, repeat;
  background-size: auto, auto, cover;
  background-attachment: scroll, scroll, fixed;
  padding-top: 100px;
  padding-bottom: 100px;
}

.full-width-image-section.s3-2 {
  background-image: linear-gradient(#00000059, #00000059), linear-gradient(90deg, #0009, #fff0), url('../images/EJ12.webp');
  background-position: 0 0, 0 0, 50%;
  background-repeat: repeat, repeat, repeat;
  background-size: auto, auto, cover;
  background-attachment: scroll, scroll, fixed;
  padding-top: 140px;
  padding-bottom: 140px;
}

.div-full-width {
  flex: 0 auto;
  width: 100%;
}

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

.nav-cta-wrapper.margin-left-auto {
  justify-content: space-between;
  margin-right: 0;
}

.co-logo {
  width: 150px;
}

.navbar-4 {
  background-color: #0000;
  justify-content: center;
  align-items: center;
  width: 70%;
  display: flex;
}

.logo-link {
  width: auto;
}

.dropdown-link {
  background-color: var(--black);
  color: var(--white);
  text-align: left;
  font-size: 16.5px;
  transition: all .3s;
}

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

.contact-div-2 {
  justify-content: space-between;
  align-items: center;
  width: 92%;
  max-width: 1600px;
  display: flex;
}

.service-nav-text {
  color: var(--white);
  margin-right: 18px;
  transition: all .35s ease-in-out;
}

.service-nav-text:hover {
  color: var(--primary);
}

.contact-section {
  z-index: 100;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
  position: absolute;
}

.service-dropdown-arrow {
  color: var(--white);
}

.nav-link {
  color: var(--white);
  letter-spacing: 0;
  text-transform: none;
  background-color: #0000;
  padding-left: 20px;
  padding-right: 20px;
  font-size: 16.5px;
  font-weight: 300;
  transition: all .3s ease-in-out;
}

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

.nav-link.w--current {
  color: #fff;
}

.nav-link.dropdown {
  padding-left: 0;
  padding-right: 0;
}

.nav-menu-4 {
  width: 100%;
}

.banner-red {
  color: var(--primary);
  margin-left: 0;
  font-size: 26px;
  line-height: 28px;
}

.h1 {
  color: var(--white);
  text-transform: uppercase;
  margin-top: 10px;
  font-family: Montserrat, sans-serif;
  font-size: 44px;
  font-weight: 700;
  line-height: 70px;
}

.h1-red {
  color: var(--primary);
}

.white-section {
  background-color: var(--black);
  border-top: .5px #1b1b1b;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 100px;
  display: flex;
  position: static;
}

.white-section._100 {
  padding-bottom: 60px;
}

.white-section._0 {
  padding-top: 0;
}

.h2 {
  color: var(--white);
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 32px;
  font-weight: 500;
  line-height: 44px;
  overflow: visible;
}

.h2.b-30 {
  color: var(--white);
  text-transform: uppercase;
  margin-top: 5px;
  margin-bottom: 20px;
  font-family: Oswald, sans-serif;
  font-size: 36px;
  font-weight: 300;
}

.h3-large {
  color: #3b444d;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 2em;
  line-height: 1.5;
}

.h3-large.b-30 {
  color: var(--white);
  text-transform: uppercase;
  align-items: stretch;
  margin-top: 0;
  margin-bottom: 30px;
  font-family: Oswald, sans-serif;
  font-size: 4em;
  font-weight: 200;
  line-height: 1.3;
  display: flex;
}

.image {
  width: 200px;
}

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

.foot-div {
  width: 90%;
  max-width: 1500px;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
}

.list-head {
  color: var(--white);
  justify-content: center;
  align-items: center;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 15.5px;
  font-weight: 400;
  line-height: 20px;
  display: flex;
}

.list-head.bullet-font-icon-2 {
  margin-right: 10px;
}

.comments {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  max-width: none;
  margin-top: 40px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
}

.comment-column {
  border: 2px solid #c61f2f;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 420.009px;
  height: 685px;
  margin-left: 10px;
  margin-right: 10px;
  padding: 10px;
  display: flex;
}

.comment-column._2 {
  border-style: solid;
  border-color: #ffffff40;
  width: 100%;
  height: auto;
  margin-left: 0;
  padding: 20px;
}

.bullet-font-icon-2 {
  background-color: var(--primary);
  color: #fff;
  border-radius: 40px;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  margin-right: 0;
  font-family: Fa6 solid, sans-serif;
  font-size: 1em;
  font-weight: 100;
  display: flex;
}

.timeline {
  color: var(--white);
  text-align: left;
  width: 100%;
  margin-bottom: 20px;
  margin-left: 20px;
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
}

.single-comments {
  text-align: center;
  background-color: #0000;
  flex-direction: row;
  align-items: center;
  margin-bottom: 5px;
  padding: 0 20px;
  font-size: 16.5px;
  transition: all .2s ease-in-out;
  display: flex;
}

.single-comments:hover {
  transform: translate(15px);
}

.arrow {
  filter: invert();
  margin-top: 5px;
}

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

.form {
  color: var(--white);
  width: 100%;
  margin-top: 40px;
}

.top-links {
  color: var(--white);
  text-align: right;
  margin-bottom: 0;
  font-size: 16.5px;
  font-weight: 300;
  line-height: 26px;
  text-decoration: none;
  transition: all .45s ease-in-out;
}

.top-links:hover {
  color: var(--primary);
}

.top-container-black {
  background-color: #0000;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: none;
  padding-top: 5px;
  padding-bottom: 5px;
  display: flex;
}

.font-awsome {
  color: var(--white);
  text-align: center;
  margin-right: 8px;
  font-family: Fa6 solid, sans-serif;
  font-size: 16.5px;
  font-weight: 400;
}

.font-awsome.email {
  color: var(--white);
  font-family: Fa6 solid, sans-serif;
  font-size: 16.5px;
  font-weight: 400;
}

.top-div-2 {
  background-color: #0000;
  justify-content: space-between;
  width: 92%;
  max-width: 1600px;
  margin-top: 10px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.contact-top {
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  display: flex;
}

.background-image {
  background-image: linear-gradient(#00000059, #00000059), url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  background-attachment: scroll, fixed;
  min-height: 550px;
}

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

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

.hyperlink.h3-section {
  color: var(--white);
  font-weight: 800;
}

.content-section {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 60px;
  padding-bottom: 60px;
  padding-right: 0;
  display: flex;
}

.content-section.orange {
  background-color: var(--third);
}

.bold-text {
  color: var(--white);
  text-transform: uppercase;
}

.h3 {
  color: var(--white);
  text-align: center;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.6;
}

.h3.m-bottom-20 {
  color: #005cb9;
  margin-bottom: 20px;
}

.h3-div {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 90%;
  max-width: 1300px;
  display: flex;
}

.h3-logo {
  background-image: url('../images/realestate.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  width: 450dvh;
  min-height: 200px;
  margin-bottom: 20px;
  display: flex;
}

.h3-logo.w--current {
  background-image: url('../images/realestate.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  width: 450px;
  min-height: 150px;
  margin-bottom: 20px;
}

.list-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.top-links-2 {
  color: var(--white);
  text-align: right;
  margin-bottom: 0;
  font-size: 16.5px;
  font-weight: 300;
  line-height: 26px;
  text-decoration: none;
  transition: color .45s ease-in-out;
}

.top-links-2:hover {
  color: var(--primary);
}

.service-nav {
  z-index: 100;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
  position: static;
}

.button-fill-2 {
  color: #fdfdfd;
  background-color: #0000;
  border: 1.5px solid #fff;
  border-radius: 2px;
  margin-top: 20px;
  padding: 15px 32px;
  font-family: Poppins;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: all .2s ease-in-out;
  display: inline-block;
}

.button-fill-2:hover {
  color: #fff;
  background-color: #f91818;
  border-width: 1.5px;
  border-color: #f91818;
}

.button-fill-2.header {
  border-color: var(--primary);
  background-color: var(--primary);
  color: var(--white);
  margin-top: 0;
  margin-left: 0;
  padding: 10px 20px;
  font-size: 16px;
  transition-property: all;
  transition-duration: .45s;
}

.button-fill-2.header:hover {
  background-color: var(--black);
  color: #fff;
  border-color: #fff;
}

.top-container-black-2 {
  background-color: #0000;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: none;
  padding-top: 5px;
  padding-bottom: 5px;
  display: flex;
}

.service-navlink-2 {
  color: var(--white);
  letter-spacing: 0;
  text-transform: none;
  background-color: #0000;
  padding-left: 20px;
  padding-right: 20px;
  font-size: 16.5px;
  font-weight: 400;
  transition: all .45s ease-in-out;
}

.service-navlink-2:hover, .service-navlink-2.w--current {
  color: var(--primary);
}

.service-navlink-2.dropdown {
  padding-left: 0;
  padding-right: 0;
}

.co-logo-2 {
  width: 200px;
}

.service-banner {
  background-image: linear-gradient(#000000a6, #000000a6), url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  background-attachment: scroll, fixed;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 140px;
  padding-bottom: 140px;
  display: flex;
}

.service-ban-head {
  color: #fff;
  text-transform: uppercase;
  font-family: Oswald, sans-serif;
  font-size: 52px;
  line-height: 60px;
}

.service-ban-text {
  border-bottom: 6px dotted var(--primary);
  color: #fff;
  text-transform: uppercase;
  margin-top: 35px;
  margin-bottom: 0;
  padding-bottom: 5px;
  font-family: Montserrat, sans-serif;
  font-size: 42px;
  font-weight: 700;
  line-height: 42px;
}

.areas-we-coverr-section {
  width: 100%;
  margin-top: 20px;
}

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

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

.areas-list-item.areas-list-flex {
  color: var(--white);
  border-bottom: 1px solid #5f5f511f;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 10px;
  display: flex;
}

.font-icon {
  background-color: var(--primary);
  color: var(--white);
  border-radius: 50px;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  margin-right: 10px;
  font-family: Fa6 solid, sans-serif;
  display: flex;
}

.google-maps {
  background-color: var(--black);
  color: var(--white);
  width: 100%;
  margin-top: 25px;
  font-size: 15px;
}

.grid {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  width: 100%;
  margin-top: 40px;
  margin-bottom: 40px;
}

.contact-div-block {
  background-color: var(--primary);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 200px;
  padding-left: 30px;
  padding-right: 30px;
  display: flex;
}

.phone-icon {
  color: var(--white);
  font-family: Fa6 solid, sans-serif;
  font-size: 48px;
  line-height: 54px;
}

.text-block {
  color: var(--white);
  text-align: center;
  margin-top: 20px;
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
}

.contact-page-link {
  color: var(--white);
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
}

.form-new {
  color: var(--white);
  width: 100%;
  margin-top: 40px;
  font-size: 15px;
}

.sitemap-list {
  text-align: left;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  margin-top: 20px;
  display: flex;
}

.sitemap-link {
  color: #353535;
  margin-bottom: 20px;
  font-weight: 500;
  text-decoration: none;
}

.nav-link-text {
  color: var(--white);
  font-size: 15px;
  font-weight: 400;
  transition: color .45s ease-in-out;
}

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

.btn-underline {
  object-fit: fill;
  background-color: #fff;
  height: 2px;
  position: relative;
  box-shadow: inset 0 0 #c7a675;
}

.btn-underline.nav-underline {
  width: 0;
}

.btn-underline.nav-underline.sitempa {
  background-color: #282828;
}

.buttons {
  color: #000;
  letter-spacing: 1px;
  text-transform: uppercase;
  background-color: #fff;
  border: 1px #fff;
  border-radius: 0;
  height: auto;
  margin-right: 12px;
  padding: 15px 20px;
  font-size: 13px;
  font-weight: 400;
  line-height: 23px;
  transition: all .4s;
}

.buttons:hover {
  background-color: var(--primary);
  opacity: 1;
  color: #fff;
  border: 0 #0000;
  font-weight: 400;
  transform: translate(0, -1px);
}

.buttons.dark {
  border-style: none;
  border-color: var(--white);
  background-color: var(--primary);
  background-image: linear-gradient(198deg, var(--primary), var(--secondary));
  color: var(--white);
  border-radius: 50px;
  margin-top: 25px;
  margin-right: 0;
  padding: 20px 45px;
  font-size: 14px;
  font-weight: 700;
  line-height: 22px;
}

.buttons.dark:hover {
  border-style: none;
  border-color: var(--white);
  background-color: var(--black);
  transform: translate(0, -6px);
}

.buttons.dark.w--current:hover {
  background-color: var(--black);
}

.buttons.banner {
  background-color: var(--primary);
  color: var(--white);
  border-style: none;
  border-color: #000;
  border-radius: 10px 0;
  margin-right: 0;
  padding: 16px 40px;
  font-family: Poppins;
  line-height: 22px;
}

.buttons.banner:hover {
  background-color: var(--black);
  border-style: none;
  border-color: #53d7db;
  transform: translate(0, -6px);
}

.section {
  border-top: 1px solid #ebebeb;
  padding-top: 120px;
  padding-bottom: 120px;
  font-weight: 500;
  position: relative;
}

.section.cta {
  background-image: linear-gradient(to right, var(--white) 26%, #fff0 57%), url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  background-attachment: scroll, fixed;
  padding-top: 100px;
  padding-bottom: 100px;
}

.top-text {
  color: #d77474;
  text-align: center;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0;
  font-family: Poppins;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
}

.top-text.cta {
  color: #bb0606;
  text-align: left;
  text-align: left;
  padding-bottom: 0;
}

.sticky_btn_call {
  z-index: 1000;
  color: #f0f6f8;
  text-align: center;
  background-color: #0000;
  border-radius: 60px;
  justify-content: center;
  align-items: center;
  width: 125px;
  height: 80px;
  font-size: 1.9em;
  text-decoration: none;
  transition: all .2s ease-in-out;
  display: flex;
  position: fixed;
  top: auto;
  bottom: 20px;
  left: -14px;
}

.sticky_btn_call:hover {
  transform: scale(.9);
}

.lottie-animation {
  color: var(--white);
  width: auto;
  height: auto;
  font-size: 4em;
}

.btn-group {
  background-color: var(--secondary);
  align-items: center;
  margin-top: 30px;
  display: flex;
}

.gallery {
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  width: 100%;
  margin-top: 20px;
}

.lb-img {
  object-fit: cover;
  width: 100%;
  height: 260px;
}

.testimonials {
  margin-top: 20px;
}

.dropdown-toggle {
  color: var(--white);
  transition: all .3s;
}

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

.button {
  border: 1px solid var(--white);
  background-color: var(--white);
  color: var(--black);
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 20px 40px;
  font-size: 13px;
  line-height: 22px;
  text-decoration: none;
  transition: all .4s;
}

.button:hover {
  border-color: var(--primary);
  background-color: var(--primary);
  color: var(--white);
  transform: translate(0, -5px);
}

.button.email {
  border-color: var(--primary);
  background-color: var(--transparent);
  color: var(--white);
  margin-left: 20px;
}

.button.email:hover {
  border-color: var(--white);
}

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

.button.dark:hover {
  border-color: var(--white);
  background-color: var(--black);
}

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

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

.fs-cc-prefs_button.fs-cc-button-alt {
  color: #4353ff;
  background-color: #fff;
  border-color: #4353ff;
}

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

.fs-cc-prefs_text {
  color: #021a69;
  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 {
  background-color: var(--primary);
  color: #333;
  cursor: pointer;
  border-radius: 500px;
  flex-direction: column;
  padding: 10px;
  transition: color .2s;
  display: flex;
}

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

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

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

.fs-cc-prefs_close-icon {
  color: #021a7c;
  width: 16px;
  height: 16px;
}

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

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

.fs-cc-prefs_title {
  color: #021a69;
  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 {
  color: #4353ff;
  border-bottom: 2px solid #4353ff;
  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 {
  color: var(--black);
  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: flex;
  position: fixed;
  inset: auto auto 20px 20px;
}

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

.fs-cc-banner_button.fs-cc-button-alt {
  color: #4353ff;
  background-color: #f5f5f5;
  border-color: #4353ff;
}

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

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

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

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

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

.form-white-bg {
  color: var(--black);
  background-color: #fff;
  border-radius: 7px;
  justify-content: center;
  align-items: flex-start;
  width: 65%;
  padding: 20px;
  display: flex;
}

.button-2 {
  color: #000;
  letter-spacing: 1px;
  text-transform: uppercase;
  background-color: #fff;
  border: 1px #fff;
  border-radius: 0;
  height: auto;
  margin-right: 12px;
  padding-left: 24px;
  padding-right: 24px;
  font-size: 12px;
  font-weight: 400;
  line-height: 24px;
  transition: all .4s;
}

.button-2:hover {
  opacity: 1;
  color: #fff;
  background-color: #ac1313;
  border: 0 #0000;
  font-weight: 400;
  transform: translate(0, -1px);
}

.button-2.dark {
  color: #fff;
  background-color: #de0b0b;
  border-style: none;
  border-color: #000;
  border-radius: 0;
  margin-top: 25px;
  margin-right: 0;
  padding: 20px 40px;
  font-family: Poppins;
  line-height: 22px;
}

.button-2.dark:hover {
  color: #fff;
  background-color: #000;
  border-style: none;
  border-color: #53d7db;
  transform: translate(0, -6px);
}

.section-tittle-2 {
  color: #000;
  font-family: Poppins;
  font-size: 40px;
  font-weight: 500;
  line-height: 50px;
}

.section-tittle-2.cta {
  margin-top: 10px;
  margin-bottom: 0;
  padding-bottom: 0;
  font-size: 36px;
  line-height: 46px;
}

.container-2 {
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-start;
  width: 92%;
  max-width: 1600px;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.container-2.z {
  flex-flow: row;
}

.contact-left {
  width: 30%;
}

.contact-span-2 {
  color: #000;
  font-weight: 600;
  text-decoration: none;
}

.form-2 {
  width: 100%;
}

.cta-text-2 {
  color: #bb0606;
  margin-top: 10px;
  font-size: 16px;
  line-height: 22px;
}

.navbar {
  z-index: 4500;
  background-color: var(--transparent);
  mix-blend-mode: difference;
  background-image: linear-gradient(329deg, #0000, #fff 82%);
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 100%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  padding: 20px 3%;
  display: flex;
  position: fixed;
}

.link-block-2 {
  padding-top: 0;
  padding-bottom: 0;
}

.link-block {
  color: #fff;
  text-transform: capitalize;
  margin-left: auto;
  margin-right: auto;
  font-size: 40px;
  text-decoration: none;
}

.top-name {
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 22px;
  font-weight: 300;
  line-height: 1em;
}

.div-block {
  width: 50px;
}

.menu-parent {
  color: var(--white);
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  width: 50px;
  height: 50px;
  padding: 12px 0 8px;
  display: flex;
  overflow: hidden;
}

.menu-bar {
  background-color: #fff;
  border-radius: 100px;
  width: 100%;
  height: 2px;
  margin-bottom: 6px;
}

.image-2 {
  width: 150px;
}

.div-block-27 {
  flex-flow: row;
  align-items: flex-start;
  width: 100%;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 40px 3%;
  display: flex;
}

.text-span {
  color: var(--primary);
  margin-right: 15px;
  font-size: 14px;
  position: relative;
  top: -7px;
}

.div-block-32 {
  background-color: #fff;
  background-image: url('../images/ig.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 29px;
  border-radius: 100px;
  width: 48px;
  height: 48px;
  margin-right: 10px;
}

.div-block-32.s {
  color: var(--black);
  background-image: none;
  justify-content: center;
  align-items: center;
  width: 38px;
  height: 38px;
  font-family: "Fa Brands 400", sans-serif;
  text-decoration: none;
  transition: background-color .45s ease-in-out;
  display: flex;
}

.div-block-32.s:hover {
  background-color: var(--primary);
}

.button-4 {
  color: var(--primary);
  letter-spacing: -.5px;
  background-color: #3898ec00;
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 0;
  font-size: 15px;
  line-height: 2em;
  transition: color .45s ease-in-out;
}

.button-4:hover {
  color: var(--white);
}

.div-block-26 {
  flex-flow: column;
  width: 60%;
  display: flex;
}

.div-block-26._2 {
  flex-flow: column;
  justify-content: flex-end;
  align-items: flex-end;
  width: 40%;
  height: 100%;
  padding-top: 0;
}

.button-6 {
  filter: invert();
  color: #000;
  letter-spacing: -.5px;
  text-transform: capitalize;
  background-color: #3898ec00;
  background-image: url('../images/right-arrow-black_1right arrow black.png');
  background-position: 100% 51%;
  background-repeat: no-repeat;
  background-size: 11px;
  padding-right: 20px;
  font-size: 17px;
  transition: all .3s;
}

.button-6:hover {
  padding-right: 27px;
}

.button-3 {
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  background-color: #3898ec00;
  padding: 13px 20px;
  font-size: 13px;
  transition: color .3s;
}

.button-3:hover, .button-3.w--current {
  color: var(--primary);
}

.menu {
  z-index: 1500;
  background-color: var(--black);
  flex-flow: column;
  justify-content: flex-end;
  align-items: center;
  height: 100vh;
  display: none;
  position: fixed;
  inset: 0% 0% auto;
}

.div-block-30 {
  flex-flow: column;
  margin-right: 0;
  padding-top: 30px;
  display: flex;
}

.div-block-71 {
  margin-left: auto;
  margin-right: 0;
}

.div-block-31 {
  align-items: center;
  display: flex;
}

.text-block-7 {
  color: #fff;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-size: 13px;
  font-weight: 400;
}

.button-7 {
  letter-spacing: -1.5px;
  background-color: #3898ec00;
  padding-top: 3px;
  padding-bottom: 3px;
  padding-left: 0;
  font-size: 27px;
  line-height: 28px;
  transition: color .3s;
}

.button-7:hover, .button-7.w--current {
  color: var(--primary);
}

.div-block-29 {
  border-top: .5px solid #e7c5d7;
  justify-content: flex-start;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 10px;
  display: flex;
  position: relative;
}

.div-block-69 {
  justify-content: space-between;
  width: 100%;
  display: flex;
}

.div-block-28 {
  width: 100%;
  max-width: 100%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  padding-left: 3%;
  padding-right: 3%;
}

.fb-icon-menu {
  color: var(--black);
  text-align: center;
  font-size: 25px;
  text-decoration: none;
}

.div-block-7 {
  justify-content: space-between;
  align-items: center;
  width: 95%;
  max-width: 1500px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.paragraph {
  color: var(--white);
  margin-bottom: 10px;
  font-size: 17px;
  line-height: 30px;
}

.div-block-4 {
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  width: 50%;
  height: 100%;
  display: flex;
}

.div-block-4.r {
  z-index: 1;
  align-items: flex-end;
  padding-right: 0%;
  position: relative;
}

.div-block-4._w-100 {
  width: 100%;
}

.div-block-3 {
  justify-content: space-between;
  align-items: center;
  height: auto;
  padding-top: 100px;
  padding-bottom: 100px;
  display: block;
}

.div-block-5 {
  text-align: left;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  max-width: 100%;
  padding: 0 60px 0 0;
  display: block;
}

.div-block-5._0 {
  padding-right: 0;
}

.button-8 {
  z-index: 20;
  color: #000;
  text-transform: capitalize;
  background-color: #fff;
  border: 1px solid #868686;
  border-radius: 50px;
  margin-bottom: 2.5%;
  margin-right: 0%;
  padding: 20px 30px;
  font-size: 17px;
  position: relative;
  inset: auto 0% 0% auto;
}

.button-8:hover {
  color: #fff;
  background-color: #133a28;
  border-color: #133a28;
}

.button-8._1st {
  z-index: 10;
  border-color: var(--secondary);
  background-color: var(--secondary);
  color: #fff;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 90px;
  margin-top: 0;
  margin-bottom: 0%;
  margin-left: auto;
  padding: 22px 45px;
  font-size: 14px;
  font-weight: 600;
  transition: background-color .45s;
  position: relative;
}

.button-8._1st:hover {
  background-color: var(--black);
}

.button-8.second {
  z-index: 10;
  border-color: var(--white);
  color: #fff;
  letter-spacing: 1px;
  text-transform: uppercase;
  background-color: #fff0;
  border-radius: 90px;
  margin-top: 0;
  margin-bottom: 0%;
  margin-left: 20px;
  padding: 22px 45px;
  font-size: 14px;
  font-weight: 600;
  transition: all .45s;
  position: relative;
}

.button-8.second:hover {
  border-color: var(--secondary);
  background-color: var(--secondary);
}

.button-8.second-copy {
  z-index: 10;
  border-color: var(--secondary);
  background-color: var(--black);
  color: #fff;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 90px;
  margin-top: 0;
  margin-bottom: 0%;
  margin-left: 20px;
  padding: 22px 45px;
  font-size: 14px;
  font-weight: 600;
  transition: background-color .45s;
  position: relative;
}

.button-8.second-copy:hover {
  background-color: var(--secondary);
}

.button-8.grey {
  z-index: 10;
  border-color: var(--black);
  background-color: var(--black);
  color: #fff;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 90px;
  margin-top: 0;
  margin-bottom: 0%;
  margin-left: auto;
  padding: 22px 45px;
  font-size: 14px;
  font-weight: 600;
  transition: background-color .45s;
  position: relative;
}

.button-8.grey:hover {
  border-color: var(--white);
  background-color: var(--transparent);
  color: var(--white);
}

.button-8.h3-button {
  z-index: 10;
  border-color: var(--white);
  background-color: var(--transparent);
  color: #fff;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 90px;
  margin: 28px auto 0%;
  padding: 22px 45px;
  font-size: 14px;
  font-weight: 600;
  transition: background-color .45s;
  position: relative;
}

.button-8.h3-button:hover {
  border-color: var(--black);
  background-color: var(--black);
  color: var(--white);
}

.button-8.ban-ouline {
  z-index: 10;
  border-color: var(--white);
  color: #fff;
  letter-spacing: .2px;
  text-transform: uppercase;
  background-color: #fff0;
  border-radius: 90px;
  margin-top: 0;
  margin-bottom: 0%;
  margin-left: 20px;
  padding: 17px 32px;
  font-size: 14px;
  font-weight: 600;
  transition: background-color .45s;
  position: relative;
}

.button-8.ban-ouline:hover {
  background-color: var(--black);
}

.button-8.ban-full {
  z-index: 10;
  border-color: var(--secondary);
  background-color: var(--secondary);
  color: #fff;
  letter-spacing: .2px;
  text-transform: uppercase;
  border-radius: 90px;
  margin-top: 0;
  margin-bottom: 0%;
  margin-left: auto;
  padding: 17px 32px;
  font-size: 14px;
  font-weight: 600;
  transition: background-color .45s;
  position: relative;
}

.button-8.ban-full:hover {
  background-color: var(--black);
}

.h1-body {
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 3%;
  margin-left: 0;
  margin-right: auto;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.1em;
}

.h1-body.process {
  margin-bottom: 4%;
  font-size: 40px;
}

.div-block-6 {
  background-color: var(--secondary);
  background-image: linear-gradient(180deg, var(--primary), #fff0), url('../images/Minimalist-Seamless-Patterns.png');
  background-position: 0 0, 0 0;
  background-size: auto, contain;
  width: 88%;
  max-width: 100%;
  height: 60%;
  min-height: 550px;
  margin-bottom: -91px;
  margin-left: auto;
  margin-right: 0;
  padding: 79px;
  position: absolute;
}

.div-block-6._2 {
  background-color: #b3acac;
  background-image: url('../images/EJ17.webp');
  background-position: 46%;
  background-size: cover;
  width: 86%;
  height: 100%;
  min-height: 550px;
  margin-bottom: 2%;
  margin-right: 8%;
  position: absolute;
}

.div-block-6.home3 {
  background-color: #b3acac;
  background-image: url('../images/homepage---to-replace-image-of-vans_1.webp');
  background-position: 50%;
  background-size: cover;
  width: 100%;
  height: 100%;
  min-height: 800px;
  margin-bottom: 2%;
  margin-right: 3%;
  position: absolute;
}

.div-block-6._900 {
  min-height: 800px;
}

.div-block-6.s1 {
  background-color: #b3acac;
  background-image: url('../images/EJ40.webp');
  background-position: 50%;
  background-size: cover;
  width: 86%;
  height: 100%;
  min-height: 600px;
  margin-bottom: 2%;
  margin-right: 8%;
  position: absolute;
}

.div-block-6._600 {
  min-height: 600px;
}

.div-block-6.s2 {
  background-color: #b3acac;
  background-image: url('../images/EJ14.webp');
  background-position: 50%;
  background-size: cover;
  width: 86%;
  height: 100%;
  min-height: 600px;
  margin-bottom: 2%;
  margin-right: 8%;
  position: absolute;
}

.div-block-6.s3 {
  background-color: #b3acac;
  background-image: url('../images/EJ27.webp');
  background-position: 50%;
  background-size: cover;
  width: 86%;
  height: 100%;
  min-height: 600px;
  margin-bottom: 2%;
  margin-right: 8%;
  position: absolute;
}

.paragraph-2 {
  margin-bottom: 0;
  font-size: 16.5px;
  line-height: 1.7em;
}

.default-list {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 20px;
  padding-left: 0;
  list-style-type: none;
  display: grid;
}

.default-list.row-1 {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

.default-list.banner-60 {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  grid-template-columns: 1fr 1fr;
  width: 60%;
}

.default-list.row2 {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
}

.default-list.area {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  margin-top: 24px;
}

.default-list.row3 {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

.default-list.row4 {
  grid-column-gap: 3px;
  grid-row-gap: 3px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.default-list.site {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  margin-top: 24px;
}

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

.bullet-text {
  align-items: center;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 17px;
  font-weight: 400;
  line-height: 24px;
  display: flex;
}

.fa-deer {
  background-color: var(--white);
  color: var(--black);
  border-radius: 100px;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  margin-right: 10px;
  font-family: Fa6 solid, sans-serif;
  font-size: 18px;
  display: flex;
}

.service-arrow {
  font-family: "Fa Solid 900", sans-serif;
}

.heading-3-cta-section {
  background-color: #ef233c;
  background-image: linear-gradient(186deg, var(--silver), var(--pale-grey));
  padding-top: 50px;
  padding-bottom: 50px;
}

.heading-3-cta-section.gallery {
  margin-top: 0;
  padding-top: 100px;
  padding-bottom: 100px;
}

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

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

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

.content-h3-box.mid {
  align-items: center;
}

.heading-3-text {
  color: #fdfdfd;
  text-align: center;
  text-transform: uppercase;
  width: 65%;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.4;
}

.h3-company-name {
  background-color: var(--black);
  text-transform: capitalize;
  border-radius: 90px;
  margin-top: 20px;
  margin-bottom: 0;
  padding: 8px 32px;
  font-size: 18px;
  font-weight: 700;
  line-height: 32px;
}

.h2-2 {
  color: #fff;
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 32px;
  font-weight: 500;
  line-height: 44px;
  overflow: visible;
}

.h2-2.b-30 {
  color: #fff;
  text-transform: uppercase;
  width: 75%;
  margin-top: 5px;
  margin-bottom: 20px;
  font-size: 38px;
  font-weight: 700;
  line-height: 43px;
}

.para-2 {
  color: #fff;
  width: 60%;
  margin-bottom: 10px;
  font-size: 17px;
  line-height: 1.75;
}

.container-4 {
  flex-direction: column;
  align-items: flex-start;
  width: 95%;
  max-width: 1500px;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.btn-group-2 {
  margin-top: 20px;
}

.btn-group-2.top {
  margin-top: 42px;
}

.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;
  width: 100%;
  margin-top: 40px;
  margin-bottom: 20px;
  padding: 0 0 10px;
  transition-property: none;
  display: flex;
}

.contact-info-block.m-bottom-20.m-top-60 {
  border-bottom: 1px solid #1516230f;
  border-radius: 0;
  grid-template-columns: .25fr 1fr;
  margin-top: 20px;
  padding-bottom: 10px;
}

.contact-section-2 {
  background-color: var(--black);
  text-align: center;
  background-image: linear-gradient(#21212833, #21212833), url('../images/Shapes.svg');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  padding-top: 100px;
  padding-bottom: 100px;
}

.icon-7 {
  background-color: #fff;
  background-image: linear-gradient(279deg, var(--primary), var(--secondary));
  color: #cb181900;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  justify-content: center;
  align-items: center;
  font-family: Fa6 solid, sans-serif;
  font-size: 1.9em;
  line-height: 1.2;
  display: flex;
}

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

.left-contact.right {
  background-color: var(--black);
  border-radius: 6px;
  width: 50%;
  padding: 20px;
  box-shadow: 0 0 20px #080f3421;
}

.heading {
  color: #949494;
  font-size: 1.2em;
  font-weight: 400;
}

.heading.h3 {
  color: var(--black);
  text-align: left;
  text-transform: uppercase;
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
}

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

.icon-block {
  background-color: var(--white);
  border-radius: 50px;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  margin-right: 20px;
  display: flex;
}

.contact-form-wrapper {
  width: 100%;
}

.cta-text-contact {
  color: #fff;
  text-align: left;
  text-transform: capitalize;
  margin-bottom: 10px;
  font-size: 1.4em;
  font-weight: 700;
}

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

.contactform {
  color: #fff;
  width: 100%;
}

.cta-link {
  color: #fff;
  text-align: left;
  font-size: 1.2em;
  font-weight: 400;
  line-height: 1.75;
  text-decoration: none;
  transition: color .45s ease-in-out;
}

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

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

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

.heading-under-line {
  background-color: #fff;
  border-radius: 2px;
  width: 80px;
  height: 2.5px;
  margin-top: 20px;
  margin-bottom: 40px;
}

.container-5 {
  z-index: 2;
  width: 95%;
  max-width: 1500px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.social-link-2 {
  color: #fff;
  background-color: #ff5050;
  border: 1px solid #ff5050;
  border-radius: 20px;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  margin-left: 5px;
  margin-right: 5px;
  padding: 10px;
  font-size: 14px;
  text-decoration: none;
  transition: all .2s;
  display: flex;
}

.social-link-2:hover {
  color: #ff5050;
  background-color: #fff;
  border: 1px solid #ff5050;
}

.social-link-2.side {
  border-radius: 40px;
  width: 50px;
  height: 50px;
  margin-top: 4px;
  margin-bottom: 2px;
  margin-right: 20px;
  font-size: 18px;
}

.social-link-2.side._1 {
  border-color: var(--primary);
  background-color: var(--primary);
  width: 55px;
  height: 55px;
  font-family: Fa6 solid, sans-serif;
  transition-duration: .45s;
  transition-timing-function: ease-in-out;
}

.social-link-2.side._1:hover {
  border-color: var(--white);
  background-color: var(--white);
  color: var(--black);
}

.social-link-2.side.text-block-3 {
  border-color: var(--primary);
  background-color: var(--primary);
  width: 55px;
  height: 55px;
  font-family: Fa6 brands, sans-serif;
  transition-duration: .45s;
  transition-timing-function: ease-in-out;
}

.social-link-2.side.text-block-3:hover {
  border-color: var(--white);
  color: var(--black);
  background-color: #fff;
}

.social-link-2.side._2 {
  border-color: var(--primary);
  background-color: var(--primary);
  width: 55px;
  height: 55px;
  font-family: Fa6 solid, sans-serif;
  transition-duration: .45s;
  transition-timing-function: ease-in-out;
}

.social-link-2.side._2:hover {
  border-color: var(--white);
  color: var(--black);
  background-color: #fff;
}

.social-link-2.side._4 {
  border-color: var(--primary);
  background-color: var(--primary);
  width: 55px;
  height: 55px;
  font-family: Fa6 brands, sans-serif;
  transition-duration: .45s;
  transition-timing-function: ease-in-out;
}

.social-link-2.side._4:hover {
  border-color: var(--white);
  color: var(--black);
  background-color: #fff;
}

.circle-div-side {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
}

.side-social-brand {
  color: var(--black);
  font-size: 22px;
}

.side-socials {
  z-index: 999;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  width: 75px;
  height: 100%;
  display: flex;
  position: fixed;
  inset: 0% 0% 0% auto;
}

.side-socials.top {
  z-index: 1000;
  justify-content: center;
  height: 1%;
  top: 50%;
}

.side-social-text, .text-block-8 {
  color: var(--black);
  font-size: 22px;
}

.nav-section {
  z-index: 1500;
  background-color: var(--black);
  width: 100%;
  display: flex;
  position: fixed;
}

.image-3 {
  background-color: var(--primary);
  background-image: linear-gradient(180deg, var(--primary), var(--secondary));
  border-radius: 90px;
  width: 180px;
  margin-top: 20px;
  padding-left: 10px;
  padding-right: 10px;
}

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

.container-6 {
  width: 92%;
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.footer-grid {
  grid-template-rows: auto;
  grid-template-columns: 1.75fr .75fr 2fr .75fr 1fr;
}

.title {
  color: #fff;
  letter-spacing: 0;
  text-transform: uppercase;
  margin-bottom: 28px;
  font-size: 23px;
  font-weight: 700;
}

.footer-legal {
  border-top: 1px solid #7e828f17;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
  padding-top: 40px;
  font-size: 15px;
  display: flex;
}

.footer-legal.copyright {
  margin-top: 10px;
  padding-top: 0;
}

.legal {
  color: var(--white);
  letter-spacing: .5px;
  text-transform: none;
  line-height: 30px;
  text-decoration: none;
}

.legal:hover {
  color: #b7b5b5;
}

.social-link {
  background-color: var(--primary);
  background-image: linear-gradient(180deg, var(--primary), var(--secondary));
  color: var(--white);
  border: 1px #000;
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  margin-right: 10px;
  padding: 10px;
  font-family: Fa6 brands, sans-serif;
  font-size: 22px;
  text-decoration: none;
  transition: all .45s ease-in-out;
  display: flex;
}

.social-link:hover {
  background-color: #0000;
  border-style: none;
  border-color: #fff;
}

.footer-detail-left {
  align-items: center;
  width: 65%;
  min-height: 40px;
  display: flex;
}

.social-icon-wrap {
  margin-top: 20px;
  display: flex;
}

.footer-logo {
  width: 200px;
  margin-bottom: 25px;
}

.footer-link-2 {
  color: #fff;
  letter-spacing: 0;
  text-transform: none;
  margin-bottom: 7px;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-right: 6px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: color .5s ease-in-out;
}

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

.footer-link-2.no-red {
  line-height: 27px;
}

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

.footer-detail-right {
  justify-content: flex-end;
  align-items: center;
  width: 50%;
  min-height: 40px;
  display: flex;
}

.paragraph-3 {
  color: #fff;
  letter-spacing: .5px;
  text-transform: capitalize;
  width: 80%;
  font-size: 15px;
  line-height: 28px;
}

.brand-2 {
  width: 350px;
  padding-bottom: 0;
}

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

.brand-2.foot-new {
  width: auto;
  font-size: 20px;
  text-decoration: none;
}

.footer {
  background-color: var(--black);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 60px;
  text-decoration: none;
  display: flex;
  position: relative;
  overflow: hidden;
}

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

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

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

.primary-btn {
  z-index: 1;
  color: #f7f7f2;
  background-color: #343819;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  width: 200px;
  margin-top: 30px;
  margin-right: 20px;
  padding: 15px 0;
  text-decoration: none;
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.primary-btn.call {
  background-color: #fff;
  border: 1px solid #5f5f51;
  padding-top: 0;
  padding-bottom: 0;
}

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

.btn-text {
  z-index: 1;
  text-align: center;
  text-transform: uppercase;
  font-weight: 400;
  position: relative;
}

.btn-text.call {
  color: #252525;
  width: 100%;
  height: 100%;
  padding-top: 15px;
  padding-bottom: 15px;
  transition: all .2s;
}

.btn-text.call:hover {
  color: #fff;
}

.ripple {
  z-index: 0;
  color: #fff;
  background-color: #5f5f51;
  border-radius: 100%;
  width: 700px;
  height: 500px;
  position: absolute;
  inset: -200% -60% auto auto;
}

.ripple.call {
  background-color: #5f5f51;
  width: 565px;
}

.testemonials-text {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.works-texxt-lable {
  background-color: var(--black);
  color: var(--white);
  text-transform: uppercase;
  padding: 15px 30px;
  font-weight: 700;
  display: inline-block;
  position: absolute;
  inset: 40px auto auto 0;
}

.h2-wrap {
  align-items: center;
  margin-bottom: 10px;
  display: flex;
}

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

.testimonials-grid.work-gallery {
  flex-direction: column;
  grid-template-rows: minmax(auto, 1fr);
  grid-template-columns: 1fr;
  width: 100%;
  display: flex;
}

.h2-3 {
  color: #212121;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  padding-bottom: 10px;
  font-weight: 400;
}

.h2-3.h2-white {
  color: #f7f7f2;
  margin-left: 10px;
  padding-bottom: 0;
  font-size: 24px;
  font-weight: 600;
  line-height: 30px;
}

.h2-3.h2-white.lg-text {
  color: #f7f7f2;
  margin-top: 60px;
  margin-bottom: 40px;
  padding-bottom: 100px;
  padding-right: 60px;
  font-size: 44px;
  font-weight: 900;
  line-height: 1.3;
  display: block;
}

.h2-3.h2-white.lg-text.edit-padding {
  color: #fff;
  margin-top: 0;
  margin-bottom: 0;
  margin-left: auto;
  padding-bottom: 0;
  padding-right: 0;
  font-size: 28px;
  font-weight: 600;
}

.h2-title {
  color: #252525;
  text-transform: uppercase;
  margin: 0 10px;
  font-size: 40px;
  font-weight: 300;
}

.h2-title.white {
  color: #fff;
  line-height: 40px;
}

.h2-div {
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  margin-bottom: 20px;
  padding-bottom: 0;
  display: flex;
}

.works-1 {
  background-image: url('../images/IMG_7701.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 8px;
  align-items: flex-end;
  min-height: 625px;
  padding: 20px;
  transition: all .3s;
  display: flex;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 0 60px #15162300;
}

.works-1:hover {
  transform: scale(1.05);
  box-shadow: inset 0 -60px 200px #15162380;
}

.works-image-grid {
  padding-top: 60px;
}

.works-image-grid.grid {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  padding-top: 0;
  display: grid;
  position: relative;
  left: 0%;
}

.light-text-line {
  background-color: #5f5f51;
  width: 40px;
  height: 2px;
}

.works-2 {
  background-image: url('../images/EJ1.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 8px;
  align-items: flex-end;
  min-height: 580px;
  padding: 20px;
  transition: all .3s;
  display: flex;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 0 60px #15162300;
}

.works-2:hover {
  transform: scale(1.05);
  box-shadow: inset 0 -60px 200px #15162380;
}

.works-3 {
  background-image: url('../images/EJ13.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 8px;
  align-items: flex-end;
  min-height: 625px;
  padding: 20px;
  transition: all .3s;
  display: flex;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 0 60px #15162300;
}

.works-3:hover {
  transform: scale(1.05);
  box-shadow: inset 0 -60px 200px #15162380;
}

.foot-number {
  color: var(--primary);
  margin-right: 12px;
}

.cta-logo-link {
  margin-bottom: 28px;
}

.cta-logo {
  width: 145px;
}

.contact-details {
  justify-content: flex-start;
  align-items: center;
  margin-top: 10px;
  display: flex;
}

.fa-icon {
  margin-right: 4px;
  font-family: "Fa Solid 900", sans-serif;
  font-size: 18px;
}

.email-text-banner {
  background-color: var(--primary);
  color: var(--black);
  border-radius: 50px;
  padding: 10px 28px;
  font-size: 17px;
  font-weight: 600;
}

.email-text-banner.link {
  padding-left: 0;
  padding-right: 0;
  text-decoration: none;
}

.email-text-banner.second {
  margin-left: 10px;
}

.live-chat-top-text {
  color: var(--white);
  text-align: left;
  letter-spacing: 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 26px;
  position: static;
}

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

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

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

.live-chat-bottom-text {
  color: var(--white);
  font-size: 11px;
}

.live-chat-bottom-text.block {
  color: var(--black);
  margin-bottom: 5px;
  font-size: 13px;
  line-height: 20px;
}

.live-chat-bottom-text.bold {
  color: var(--black);
  margin-bottom: 5px;
  font-size: 12px;
  font-weight: 700;
  line-height: 24px;
}

.chat-section {
  background-color: var(--black);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 50%;
  padding: 16px 15px;
  display: flex;
  position: relative;
}

.whatsapp-icon {
  color: #fff;
  display: block;
}

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

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

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

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

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

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

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

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

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

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

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

.list-icon {
  flex: none;
  width: 40px;
  height: 40px;
  margin-right: 10px;
}

.list-icon.area {
  filter: grayscale();
  width: 24px;
  height: 24px;
}

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

.para-3.light-grey {
  color: var(--white);
  margin-bottom: 5px;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.7;
}

.hero-card {
  border-left: 5px solid var(--primary);
  background-color: #00000052;
  width: 85%;
  padding: 32px 25px;
}

.hero-intro-text {
  color: #227baf;
  margin-bottom: 20px;
  font-size: 2rem;
  line-height: 1.75;
}

.hero_btn {
  color: #101b22;
  background-color: #ffe135;
  padding: 20px 40px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
}

.hero_btn.outline-btn {
  background-color: var(--black);
  color: #f0f6f8;
  border: 1px #ffe135;
  border-radius: 50px;
  padding-top: 12px;
  padding-bottom: 12px;
  font-size: 15px;
  transition: all .2s ease-in-out;
}

.hero_btn.outline-btn:hover {
  border-left-color: var(--primary);
  background-color: var(--primary);
  color: #101b22;
}

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

.hero_btn.margin-top-40.margin-right-20 {
  background-color: var(--primary);
  text-transform: uppercase;
  border-radius: 50px;
  margin-top: 20px;
  margin-right: 20px;
  padding-top: 12px;
  padding-bottom: 12px;
  font-weight: 700;
  transition: all .2s ease-in-out;
}

.hero_btn.margin-top-40.margin-right-20:hover {
  background-color: var(--black);
  color: #fefefe;
}

.hero-large-text {
  text-transform: none;
  margin-bottom: 20px;
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 1.2;
}

.section-one.gradient {
  background-image: linear-gradient(294deg, var(--primary), var(--secondary));
}

.section-one.gradient.chnage-gradient {
  background-image: linear-gradient(270deg, var(--primary), #3993b2 45%, var(--silver) 87%);
}

.service-banner-new {
  background-image: linear-gradient(#00000080, #00000080), url('../images/Banner-Service.webp');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  background-attachment: scroll, scroll;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  height: 500px;
  display: flex;
}

.d-103-arrow {
  width: 15px;
  margin-top: 65px;
  margin-left: 10px;
  transform: rotate(10deg);
}

.d-103-card-wrapper {
  color: #fff;
  border: 1px solid #fff;
  border-radius: 5px;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  padding: 32px 40px;
  text-decoration: none;
  display: flex;
  position: relative;
  overflow: hidden;
}

.d-103-card-wrapper.bottom {
  height: auto;
}

.d-103-right-side {
  background-color: #0000;
  background-image: linear-gradient(180deg, var(--secondary), var(--primary));
  transform-origin: 0 100%;
  width: 50%;
  height: 120%;
  position: absolute;
  inset: auto 0% 0% 100%;
  transform: rotate(-10deg);
}

.demo-wrapper {
  flex-flow: row-reverse;
  flex: 0 auto;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-right: 0%;
  display: flex;
  position: relative;
}

.demo-container {
  background-color: var(--black);
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  width: 95%;
  max-width: 1500px;
  padding-top: 100px;
  padding-bottom: 100px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.demo-container.top0 {
  padding-top: 0;
}

.d-103-shape-placeholder {
  background-color: var(--primary);
  background-image: repeating-linear-gradient(180deg, var(--primary), var(--secondary));
  border-radius: 50%;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 700;
  display: flex;
}

.browser-demo {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-color: var(--black);
  flex-wrap: nowrap;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  place-content: flex-end center;
  align-items: center;
  display: grid;
  position: relative;
  overflow: hidden;
}

.d-103-section-home {
  justify-content: center;
  align-items: center;
  width: auto;
  display: flex;
}

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

.d-103-option-text {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: 700;
}

.h3-2 {
  color: var(--white);
  text-align: left;
  width: 100%;
  margin-top: 20px;
  margin-bottom: 32px;
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
}

.hww-more-2x1 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 20px;
  display: grid;
}

.how-we-work-content {
  background-color: #00000040;
  border-radius: 5px;
  width: 100%;
  padding: 30px 40px 40px;
}

.h2-4 {
  text-align: center;
  border-bottom: 4px solid #6fcf00;
  width: 100%;
  font-size: 38px;
  line-height: 60px;
}

.hww-icons {
  color: #fff;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  font-size: 35px;
  display: flex;
}

.scroll-stopper {
  width: 100%;
  height: 0;
  position: relative;
  top: -160px;
}

.box-icon {
  background-color: #6fcf00;
  border-radius: 60px;
  width: 80px;
  height: 80px;
}

.txt {
  text-align: center;
  background-color: #ffffff70;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  flex-direction: column;
  align-items: center;
  width: 100%;
  display: flex;
}

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

.hww-txt {
  text-align: justify;
  width: 80%;
  margin-top: 20px;
  margin-bottom: 20px;
}

.content-div {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 95%;
  max-width: 1500px;
  display: flex;
}

.h3-heading {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 400;
}

.hww-divide {
  width: 100%;
}

.list {
  margin-top: 10px;
  padding-left: 0;
}

.hww-img {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-size: cover;
  min-height: 350px;
}

.hww-img.home5 {
  background-image: url('../images/161855077.jpg');
}

.hww-img.home7 {
  background-image: url('../images/77546533.jpg');
}

.hww-img.home6 {
  background-image: url('../images/22151354.jpg');
}

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

.hww-bottom {
  text-align: center;
  background-color: #6fcf00;
  border-radius: 20px;
  width: 100%;
  height: 20px;
}

.hww-div {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.h3-icon {
  color: #fff;
  background-color: #6fcf00;
  border-radius: 60px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  font-size: 13px;
  display: flex;
}

.how-we-woirk-4x1 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 90%;
  padding-top: 20px;
  display: grid;
}

.h3-list {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  grid-template-rows: auto;
  grid-template-columns: .25fr 3fr;
  grid-auto-columns: 1fr;
  align-items: center;
  padding-bottom: 5px;
  transition: all .2s;
  display: grid;
}

.h3-list:hover {
  transform: translate(15px);
}

.content-break {
  background-color: var(--black);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 100px;
  display: flex;
}

.hww-button {
  background-color: #6fcf00;
  margin-top: 10px;
  margin-bottom: 20px;
}

.hww-boxes-container {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.para-large {
  font-size: 26px;
  font-weight: 500;
}

.overview_contain.u-container {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-flow: column;
  max-width: none;
  display: flex;
}

.overview_img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  clip-path: circle(var(--circle-clip) at 50% 50%);
}

.gold-section {
  background-color: var(--primary);
  height: 10px;
}

.area-map {
  filter: grayscale(45%);
  margin-top: 24px;
}

.gallery-grid {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  width: 100.001%;
}

.gallery-thumb {
  object-fit: cover;
  width: 100%;
  height: 400px;
}

.gallery-thumb:hover {
  box-shadow: 20px 20px 5px #000000c7;
}

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

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

.site-head-sub {
  margin-bottom: 40px;
  font-size: 32px;
  line-height: 40px;
}

.site-link {
  color: var(--white);
  font-weight: 500;
  text-decoration: none;
  transition: color .45s ease-in-out;
}

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

.text-block-6 {
  font-size: 16px;
}

.social-link-3 {
  color: #fff;
  background-color: #ff3639;
  border: 1px solid #ff3639;
  border-radius: 20px;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  margin-left: 5px;
  margin-right: 5px;
  padding: 10px;
  font-size: 14px;
  text-decoration: none;
  transition: all .2s;
  display: flex;
}

.social-link-3:hover {
  color: #ff3639;
  background-color: #fff;
  border: 1px solid #ff3639;
}

.social-link-3.side {
  border-radius: 40px;
  width: 50px;
  height: 50px;
  margin-top: 4px;
  margin-bottom: 2px;
  margin-right: 20px;
  font-size: 18px;
}

.social-link-3.side._5 {
  background-color: #b91619;
  border-color: #b91619;
}

.social-link-3.side._5:hover {
  background-color: #fff;
}

.social-link-3.side._2 {
  border-color: var(--primary);
  background-color: var(--primary);
  font-family: Fa6 solid, sans-serif;
}

.social-link-3.side._2:hover {
  border-color: var(--white);
  color: var(--black);
  background-color: #fff;
}

.social-link-3.side._4 {
  border-color: var(--secondary);
  background-color: var(--primary);
  font-family: "Fa Brands 400", sans-serif;
}

.social-link-3.side._4:hover {
  border-color: var(--white);
  color: var(--black);
  background-color: #fff;
}

.social-link-3.side.text-block-3 {
  border-color: var(--primary);
  background-color: var(--primary);
  font-family: "Fa Brands 400", sans-serif;
  font-size: 20px;
}

.social-link-3.side.text-block-3:hover {
  border-color: var(--white);
  color: var(--black);
  background-color: #fff;
}

.social-link-3.side._1 {
  border-color: var(--primary);
  background-color: var(--primary);
  font-family: Fa6 solid, sans-serif;
}

.social-link-3.side._1:hover {
  border-color: var(--white);
  color: var(--black);
  background-color: #fff;
}

.circle-div-side-2 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
}

@media screen and (min-width: 1280px) {
  .social-link:hover {
    border-color: #7e828fdb;
  }
}

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

@media screen and (max-width: 991px) {
  .banner-header {
    flex-direction: column;
    font-size: 36px;
    line-height: 42px;
  }

  .p {
    width: 100%;
  }

  .body-section, .body-section.form-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .left-section {
    width: 90%;
    margin-top: 20px;
  }

  .service-grid {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .service-div {
    width: 100%;
  }

  .service-top-image._2 {
    height: 375px;
  }

  .service-box-wrapper {
    justify-content: flex-start;
    width: 100%;
  }

  .service-paragraph {
    margin-left: 40px;
  }

  .para {
    width: 100%;
  }

  .img-div {
    width: 100%;
    min-height: 400px;
    margin-bottom: 40px;
  }

  .inner-img {
    margin-top: 60px;
  }

  .section-h1-wrapper.display-flex {
    flex-direction: column-reverse;
    margin-top: 40px;
  }

  .right-side, .right-side.content, .right-side._w---100 {
    width: 100%;
  }

  .footer-col.large {
    margin-right: 0;
  }

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

  .footer-wrapper {
    grid-column-gap: 12px;
    grid-row-gap: 32px;
    grid-template-columns: 1.25fr 1.25fr 1fr;
  }

  .footer-copy {
    flex-direction: column;
    place-content: center;
    justify-items: stretch;
    display: flex;
  }

  .footer-p {
    font-size: 1.25em;
  }

  .header-social-media {
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 0%;
    margin-bottom: 0;
  }

  .header-social-icon {
    color: #fdfdfd;
    background-color: #0000;
    border-right: 1px #353535;
    width: 10%;
    margin-right: 0;
  }

  .header-social-icon.margin-right-none {
    background-color: #0000;
    border-right-style: none;
    border-right-width: 0;
    width: 10%;
    margin-right: 0;
  }

  .full-width-image-section.s1-2, .full-width-image-section.s2-2, .full-width-image-section.s3-2 {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .div-full-width {
    width: 100%;
  }

  .navbar-4 {
    justify-content: flex-end;
    width: 90%;
  }

  .dropdown-link {
    text-align: right;
    padding: 20px 25px;
    font-size: 16px;
    display: block;
  }

  .contact-div-2 {
    flex-direction: row;
  }

  .nav-link {
    background-color: var(--black);
    text-align: right;
    width: 100%;
    font-size: 16px;
  }

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

  .menu-button {
    background-color: #0000;
  }

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

  .h1 {
    font-size: 50px;
  }

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

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

  .top-links {
    font-size: 16px;
    display: flex;
  }

  .font-awsome.email {
    display: block;
  }

  .top-div-2 {
    width: 95%;
  }

  .content-section.orange {
    background-color: var(--third);
  }

  .top-links-2 {
    font-size: 16px;
    display: flex;
  }

  .icon-5 {
    color: #fff;
  }

  .menu-button-2 {
    background-color: #f94d18;
  }

  .menu-button-2.w--open {
    background-color: #000;
  }

  .button-fill-2.header {
    margin-right: 0;
    display: none;
  }

  .service-navlink-2 {
    text-align: right;
    background-color: #000;
    width: 100%;
    font-size: 16px;
  }

  .service-banner {
    min-height: auto;
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .service-ban-text {
    font-size: 32px;
  }

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

  .google-maps {
    width: 100%;
  }

  .contact-div-block {
    padding-left: 20px;
    padding-right: 20px;
  }

  .text-block, .contact-page-link {
    font-size: 16px;
  }

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

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

  .section.cta {
    padding: 60px 20px;
  }

  .btn-group {
    margin-bottom: 50px;
  }

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

  .lb-img {
    height: 180px;
  }

  .dropdown-toggle {
    width: 100%;
  }

  .form-white-bg {
    width: 100%;
    margin-top: 40px;
  }

  .container-2.z {
    flex-flow: column;
  }

  .contact-left {
    width: 100%;
  }

  .div-block-27 {
    flex-flow: column;
    padding-bottom: 40px;
  }

  .div-block-26 {
    width: 100%;
  }

  .div-block-26._2 {
    width: 100%;
    padding-top: 1vh;
  }

  .button-6 {
    font-size: 16px;
  }

  .menu {
    display: none;
  }

  .button-7 {
    font-size: 25px;
  }

  .div-block-7 {
    flex-flow: column;
  }

  .div-block-4 {
    width: 100%;
  }

  .div-block-4.r {
    min-height: 600px;
  }

  .div-block-3 {
    padding-top: 60px;
    padding-bottom: 100px;
  }

  .h1-body {
    font-size: 31px;
    line-height: 1.2em;
  }

  .div-block-6.s1 {
    width: 95%;
    margin-top: 60px;
    margin-right: 5%;
    padding-left: 0;
    padding-right: 0;
  }

  .div-block-6._600 {
    margin-right: 2%;
  }

  .div-block-6.s2, .div-block-6.s3 {
    width: 95%;
    margin-top: 60px;
    margin-right: 5%;
    padding-left: 0;
    padding-right: 0;
  }

  .default-list.row-1, .default-list.banner-60, .default-list.row2, .default-list.area, .default-list.row3, .default-list.row4, .default-list.site {
    grid-template-columns: 1fr 1fr;
  }

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

  .h2-2.b-30 {
    width: 90%;
    font-size: 34px;
  }

  .para-2 {
    width: 100%;
  }

  .btn-group-2.top {
    margin-top: 28px;
    margin-bottom: 24px;
  }

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

  .left-contact {
    width: 100%;
  }

  .left-contact.right {
    width: 100%;
    margin-top: 40px;
  }

  .contact-section-wrapper.flex {
    flex-direction: column;
  }

  .container-5 {
    width: 90%;
  }

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

  .brand-2 {
    text-align: center;
    width: 500px;
  }

  .h2-wrap {
    margin-bottom: 10px;
    line-height: 1.3;
  }

  .h2-3.h2-white.lg-text.edit-padding {
    text-align: right;
    margin-left: 0;
    font-size: 28px;
  }

  .h2-div {
    flex-direction: column;
    align-items: flex-start;
  }

  .works-1 {
    width: 100%;
    min-width: 300px;
    min-height: 300px;
    margin-left: auto;
    margin-right: auto;
  }

  .works-image-grid.grid {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    grid-template-rows: 1fr auto;
    grid-template-columns: 1fr;
    margin-left: 0%;
    position: relative;
  }

  .works-2, .works-3 {
    width: 100%;
    min-width: 300px;
    min-height: 300px;
    margin-left: auto;
    margin-right: auto;
  }

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

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

  .service-banner-new {
    height: 450px;
    padding-top: 40px;
  }

  .d-103-card-wrapper {
    height: auto;
    margin-bottom: 40px;
  }

  .d-103-card-wrapper.bottom {
    margin-bottom: 0;
  }

  .demo-wrapper {
    flex-direction: column-reverse;
    flex: 0 auto;
    align-items: center;
    margin-top: 20px;
    margin-right: 0%;
  }

  .demo-container {
    clear: both;
    flex-flow: column;
    justify-content: center;
    padding-top: 60px;
    padding-bottom: 60px;
    display: flex;
    overflow: hidden;
  }

  .browser-demo {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-direction: column;
    justify-content: center;
    height: auto;
  }

  .d-103-section-home {
    clear: both;
    overflow: visible;
  }

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

  .hww-more-2x1 {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  .how-we-work-content {
    width: 100%;
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .content-div {
    width: 90%;
  }

  .hww-bottom {
    display: none;
  }

  .how-we-woirk-4x1 {
    grid-template-rows: auto auto auto auto;
    grid-template-columns: 1fr;
    width: 100%;
    display: none;
  }

  .content-break {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .hww-boxes-container {
    width: 100%;
  }

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

@media screen and (max-width: 767px) {
  .banner-header {
    margin-top: 60px;
    font-size: 48px;
  }

  .p {
    font-size: 15.5px;
  }

  .body-section, .body-section.form-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .hero-bg-grad {
    height: 100vh;
    padding-top: 0;
  }

  .left-section {
    width: 95%;
    padding-right: 0;
  }

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

  .section-h1-wrapper.display-flex {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    margin-top: 0;
  }

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

  .footer-copy-text {
    text-align: left;
  }

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

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

  .header-social-media {
    justify-content: center;
  }

  .full-width-image-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .dropdown-link, .nav-link {
    font-size: 15px;
  }

  .banner-red {
    margin-left: 0;
    font-size: 34px;
  }

  .h1 {
    font-size: 34px;
    line-height: 50px;
  }

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

  .h3-large.b-30 {
    font-size: 3.5em;
  }

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

  .timeline {
    text-align: left;
  }

  .top-links {
    font-size: 15px;
  }

  .top-container-black {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }

  .top-div-2 {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

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

  .top-links-2 {
    font-size: 15px;
  }

  .menu-button-2 {
    background-color: #f9b328;
  }

  .top-container-black-2 {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }

  .service-navlink-2 {
    font-size: 15px;
  }

  .service-banner {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .service-ban-text {
    text-align: center;
    width: 80%;
    line-height: 26px;
  }

  .contact-div-block {
    min-height: 180px;
  }

  .text-block, .contact-page-link {
    font-size: 18px;
  }

  .buttons {
    text-align: center;
  }

  .buttons.banner {
    display: none;
  }

  .section.cta {
    background-image: linear-gradient(to right, #dbdbdb 44%, #fff0), url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
    background-position: 0 0, 50% 33%;
    background-repeat: repeat, no-repeat;
    background-size: auto, cover;
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .btn-group {
    margin-bottom: 40px;
  }

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

  .lb-img {
    height: 150px;
  }

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

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

  .top-name {
    display: none;
  }

  .div-block-26._2 {
    padding-top: 5vh;
  }

  .button-7 {
    font-size: 21px;
    line-height: 1.1em;
  }

  .social-link-2.side {
    width: 60px;
    height: 60px;
    margin-left: 0;
  }

  .circle-div-side {
    display: none;
  }

  .side-socials {
    justify-content: flex-end;
    width: 80px;
    height: 80px;
    inset: auto 0% 0% auto;
  }

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

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

  .testimonials-grid {
    grid-template-rows: auto auto 81px;
    grid-template-columns: 1fr;
  }

  .h2-3.h2-white.lg-text.edit-padding {
    flex: 0 auto;
    margin-top: 10px;
    margin-left: 0;
    font-size: 24px;
  }

  .h2-title {
    font-size: 34px;
  }

  .h2-div {
    margin-bottom: 0;
  }

  .works-1, .works-2, .works-3 {
    min-width: 250px;
  }

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

  .demo-wrapper {
    margin-top: 140px;
    padding-left: 110px;
    padding-right: 110px;
  }

  .demo-container {
    background-image: url('../images/background.svg'), linear-gradient(to bottom, null, null);
    background-attachment: fixed, scroll;
    align-items: center;
    min-height: 100vh;
    display: block;
  }

  .browser-demo {
    flex-flow: column;
    justify-content: center;
    width: 100%;
    height: auto;
    margin-bottom: 100px;
    padding: 100px 30px;
  }

  .scroll-stopper {
    top: -180px;
  }

  .gallery-thumb {
    height: 300px;
  }

  .social-link-3.side {
    width: 60px;
    height: 60px;
    margin-left: 0;
  }

  .circle-div-side-2 {
    display: none;
  }
}

@media screen and (max-width: 479px) {
  .banner-header {
    flex-direction: column;
    width: 100%;
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 21px;
    line-height: 28px;
  }

  .p {
    width: 100%;
    font-size: 16px;
    line-height: 25px;
  }

  .button-outline {
    font-size: 14.5px;
  }

  .body-section {
    margin-top: 0;
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .body-section.white {
    padding-top: 20px;
    padding-bottom: 60px;
  }

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

  .container {
    width: 85%;
  }

  .hero-bg-grad {
    height: 100vh;
    padding-top: 0;
  }

  .left-section {
    width: 100%;
    margin-top: 0;
    padding-left: 5px;
    padding-right: 5px;
  }

  .service-grid {
    grid-template-rows: auto auto auto auto;
    grid-template-columns: 1fr;
    margin-top: 20px;
  }

  .service-div {
    height: auto;
  }

  .service-top-image, .service-top-image._2 {
    height: 250px;
  }

  .service-number {
    margin-top: 30px;
    margin-bottom: 20px;
    font-size: 50px;
    line-height: 50px;
  }

  .service-box-wrapper {
    flex-direction: column;
  }

  .service-header {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 24px;
    line-height: 30px;
  }

  .service-text {
    font-size: 1rem;
  }

  .service-paragraph {
    margin-left: 0;
  }

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

  .img-div {
    box-shadow: -8px 6px 0 0 var(--white);
    min-height: 250px;
    margin-top: 30px;
    margin-bottom: 0;
  }

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

  .section-h1-wrapper.display-flex {
    margin-top: 20px;
  }

  .footer-col {
    width: 100%;
  }

  .footer-col.large {
    margin-right: 0;
  }

  .footer-wrapper {
    grid-column-gap: 10px;
    grid-row-gap: 20px;
    text-align: center;
    grid-template-columns: 1.25fr;
    padding-bottom: 20px;
  }

  .footer-section-title.white {
    font-size: 1.6em;
  }

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

  .footer-copy {
    align-items: center;
    width: 100%;
  }

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

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

  .full-width-image-section.para-img, .full-width-image-section.s1-2, .full-width-image-section.s2-2, .full-width-image-section.s3-2 {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .nav-cta-wrapper.margin-left-auto {
    display: block;
  }

  .co-logo {
    width: 125px;
  }

  .navbar-4 {
    text-align: center;
    justify-content: center;
    width: 100%;
    display: flex;
  }

  .logo-link {
    text-align: center;
    width: 100%;
    margin-bottom: 10px;
  }

  .dropdown-link {
    text-align: center;
    font-size: 16px;
    display: block;
  }

  .contact-div-2 {
    flex-direction: column;
    width: 100%;
    max-width: none;
  }

  .service-nav-text {
    margin-left: 20px;
  }

  .contact-section {
    padding-top: 12px;
  }

  .nav-link {
    text-align: center;
    font-size: 16px;
  }

  .nav-link.w--current {
    text-align: center;
  }

  .icon-4 {
    color: var(--white);
    font-size: 32px;
  }

  .banner-red {
    margin-left: 0;
    font-size: 21px;
  }

  .h1 {
    margin-top: 0;
    font-size: 30px;
    line-height: 40px;
  }

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

  .white-section._100 {
    padding-top: 60px;
  }

  .h2.b-30 {
    font-size: 32px;
    font-weight: 300;
    line-height: 42px;
  }

  .h3-large.b-30 {
    font-size: 38px;
  }

  .image {
    width: 160px;
  }

  .footer-logo-link {
    margin-bottom: 0;
  }

  .list-head {
    text-align: left;
    font-size: 14.5px;
    line-height: 25px;
  }

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

  .comment-column._2 {
    grid-template-rows: auto auto auto;
    width: auto;
    height: auto;
    margin-left: 0;
    margin-right: 0;
    padding: 20px;
  }

  .bullet-font-icon-2 {
    flex: none;
  }

  .timeline {
    width: 100%;
    margin-top: 0;
    margin-left: 0;
    font-size: 14.5px;
  }

  .single-comments {
    margin-bottom: 0;
    padding-left: 10px;
    padding-right: 10px;
  }

  .top-links {
    text-align: center;
    line-height: 23px;
  }

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

  .top-container-black {
    flex-direction: column;
    padding-top: 0;
    display: none;
  }

  .font-awsome {
    margin-right: 10px;
    font-size: 20px;
  }

  .font-awsome.email {
    margin-left: 0;
    margin-right: 10px;
    font-size: 20px;
  }

  .contact-top {
    flex-direction: column;
    align-items: center;
    margin-top: 0;
  }

  .background-image {
    min-height: 400px;
  }

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

  .content-section.orange {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .h3 {
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.35;
  }

  .h3-logo, .h3-logo.w--current {
    width: 200px;
  }

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

  .top-links-2 {
    text-align: center;
    line-height: 23px;
  }

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

  .icon-5 {
    color: #fff;
    font-size: 32px;
  }

  .menu-button-2 {
    background-color: #0000;
  }

  .service-nav {
    padding-top: 12px;
  }

  .button-fill-2.header {
    margin-top: 10px;
    margin-bottom: 13px;
    font-size: 14px;
    display: none;
  }

  .top-container-black-2 {
    flex-direction: column;
    padding-top: 0;
  }

  .service-navlink-2 {
    text-align: center;
    font-size: 16px;
  }

  .service-navlink-2.w--current {
    text-align: center;
  }

  .co-logo-2 {
    width: 200px;
  }

  .service-banner {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .service-ban-head {
    text-align: center;
    font-size: 40px;
    line-height: 50px;
  }

  .service-ban-text {
    border-bottom-width: 4px;
    width: auto;
    margin-top: 20px;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 24px;
    line-height: 29px;
  }

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

  .contact-div-block {
    min-height: 200px;
  }

  .text-block, .contact-page-link {
    font-size: 16.5px;
  }

  .buttons {
    margin-bottom: 10px;
  }

  .buttons.dark {
    width: auto;
  }

  .buttons.banner {
    padding-top: 10px;
    padding-bottom: 10px;
    display: block;
  }

  .section.cta {
    background-image: linear-gradient(to right, var(--white) 44%, #fff0), url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
    background-position: 0 0, 50%;
    background-repeat: repeat, repeat;
    background-size: auto, cover;
    background-attachment: scroll, fixed;
    padding: 30px 10px;
  }

  .sticky_btn_call {
    width: 70px;
    height: auto;
    bottom: 1%;
    left: auto;
    right: 1%;
  }

  .btn-group {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 0;
  }

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

  .lb-img {
    height: 120px;
  }

  .dropdown-toggle {
    padding-left: 40px;
  }

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

  .button.email {
    width: 100%;
    margin-top: 10px;
    margin-left: 0;
  }

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

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

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

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

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

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

  .button-2 {
    margin-bottom: 10px;
  }

  .button-2.dark {
    width: auto;
  }

  .section-tittle-2 {
    font-size: 30px;
    line-height: 40px;
  }

  .section-tittle-2.cta {
    width: 100%;
    font-size: 30px;
    line-height: 36px;
  }

  .container-2 {
    width: 85%;
  }

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

  .cta-text-2 {
    width: 100%;
  }

  .navbar {
    flex-flow: column;
    padding-left: 4%;
  }

  .link-block-2 {
    width: 100px;
  }

  .link-block-2.w--current {
    width: 100px;
    margin-bottom: 10px;
  }

  .top-name {
    letter-spacing: 0;
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 19px;
    display: none;
  }

  .div-block {
    width: 40px;
  }

  .menu-parent {
    width: 40px;
    padding-left: 0;
  }

  .text-span {
    margin-right: 10px;
    font-size: 13px;
    top: -4px;
  }

  .button-4 {
    letter-spacing: 0;
  }

  .div-block-26._2 {
    padding-top: 1vh;
  }

  .button-6, .menu, .div-block-30.hide {
    display: none;
  }

  .button-7 {
    padding-top: 7px;
    padding-bottom: 7px;
    font-size: 18px;
    line-height: 22px;
  }

  .div-block-29 {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .div-block-7 {
    flex-flow: column;
  }

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

  .div-block-4 {
    width: 95%;
  }

  .div-block-4.r {
    width: 100%;
    min-height: 350px;
    margin-top: 0;
  }

  .div-block-3 {
    padding-top: 60px;
    padding-bottom: 80px;
  }

  .div-block-5 {
    width: auto;
    padding-right: 0;
  }

  .button-8 {
    position: relative;
  }

  .button-8._1st {
    padding: 16px 30px;
  }

  .button-8.second {
    margin-top: 20px;
    margin-left: 0;
    padding: 16px 30px;
  }

  .button-8.h3-button {
    text-align: center;
    letter-spacing: 0;
    padding: 10px 20px;
    font-size: 16px;
    line-height: 22px;
  }

  .button-8.ban-ouline {
    margin-top: 20px;
    margin-left: 0;
    padding: 16px 30px;
  }

  .button-8.ban-full {
    padding: 16px 30px;
  }

  .h1-body {
    margin-top: 0;
    font-size: 23px;
  }

  .h1-body.process {
    font-size: 24px;
  }

  .div-block-6 {
    min-height: 350px;
    margin-bottom: -41px;
  }

  .div-block-6._2 {
    width: 90%;
    min-height: 350px;
    max-height: 350px;
  }

  .div-block-6.home3 {
    width: 90%;
    min-height: 350px;
    max-height: 350px;
    padding-left: 0;
    padding-right: 0;
  }

  .div-block-6._900 {
    min-height: 350px;
    margin-bottom: -41px;
  }

  .div-block-6.s1 {
    width: 90%;
    min-height: 350px;
    max-height: 350px;
  }

  .div-block-6._600 {
    min-height: 350px;
    margin-bottom: -40px;
  }

  .div-block-6.s2, .div-block-6.s3 {
    width: 90%;
    min-height: 350px;
    max-height: 350px;
  }

  .default-list {
    grid-template-columns: 1fr;
    width: 100%;
  }

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

  .default-list.banner-60 {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .default-list.row2, .default-list.area, .default-list.row3, .default-list.row4, .default-list.site {
    grid-template-columns: 1fr;
  }

  .fa-deer {
    flex: none;
  }

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

  .container-3 {
    width: 92%;
  }

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

  .h2-2.b-30 {
    width: 95%;
    font-size: 24px;
    font-weight: 800;
    line-height: 28px;
  }

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

  .container-4 {
    width: 85%;
  }

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

  .contact-info-block.m-bottom-20 {
    flex-flow: column;
    place-items: center;
    width: 100%;
    margin-top: 20px;
    margin-bottom: 10px;
  }

  .contact-info-block.m-bottom-20.m-top-60 {
    flex-flow: column;
    place-items: center;
  }

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

  .icon-7 {
    width: 48px;
    height: 48px;
  }

  .left-contact.right {
    padding: 15px;
  }

  .heading.h3 {
    margin-bottom: 10px;
    font-size: 2em;
  }

  .icon-block {
    margin-bottom: 20px;
    margin-right: 0;
  }

  .cta-text-contact, .contact-info-text {
    text-align: center;
  }

  .cta-link, .cta-link.nohover {
    text-align: center;
    font-size: 1.1em;
  }

  .heading-under-line {
    margin-top: 0;
  }

  .circle-div-side {
    display: none;
  }

  .side-socials {
    justify-content: flex-end;
    height: 120px;
    inset: auto 0% 0% auto;
  }

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

  .footer-grid {
    grid-template-rows: auto auto auto;
  }

  .footer-legal {
    text-align: center;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 0;
  }

  .footer-legal.copyright {
    margin-top: 30px;
  }

  .legal {
    text-align: left;
    margin-bottom: 20px;
    margin-right: 0;
  }

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

  .footer-detail-left {
    width: auto;
  }

  .social-icon-wrap {
    margin-top: 10px;
  }

  .footer-logo {
    width: 165px;
  }

  .footer-link-2 {
    line-height: 24px;
  }

  .footer-detail-right {
    justify-content: flex-start;
    align-items: flex-start;
    margin-top: 10px;
  }

  .paragraph-3 {
    line-height: 30px;
  }

  .brand-2 {
    text-align: center;
    width: 100%;
  }

  .brand-2.w--current {
    padding-left: 20px;
    padding-right: 20px;
  }

  .footer {
    padding-top: 60px;
  }

  .primary-btn, .primary-btn.call {
    margin-top: 20px;
  }

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

  .works-texxt-lable {
    padding: 10px 15px;
    font-size: .9em;
  }

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

  .h2-3 {
    font-size: 24px;
  }

  .h2-3.h2-white.lg-text.edit-padding {
    text-align: left;
    margin-top: 10px;
    margin-left: 0;
    font-size: 18px;
  }

  .h2-title {
    margin-left: 0;
    font-size: 26px;
    font-weight: 500;
  }

  .h2-title.white {
    font-size: 24px;
  }

  .h2-div {
    margin-bottom: 0;
  }

  .works-1 {
    min-height: 350px;
  }

  .light-text-line {
    margin-right: 5px;
    display: none;
  }

  .works-2, .works-3 {
    min-height: 350px;
  }

  .contact-details {
    flex-flow: column;
    display: none;
  }

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

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

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

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

  .livechat-button {
    width: 90%;
  }

  .para-3 {
    font-weight: 300;
  }

  .para-3.light-grey {
    font-size: 15px;
  }

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

  .hero-intro-text {
    font-size: 22px;
  }

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

  .hero_btn.margin-top-40.margin-right-20 {
    text-align: center;
    width: 100%;
    margin-top: 20px;
    margin-right: 0;
    display: none;
  }

  .hero-large-text {
    font-size: 22px;
    font-weight: 600;
  }

  .d-103-card-wrapper.bottom {
    padding-left: 20px;
  }

  .d-103-right-side {
    width: 40%;
    height: 100%;
  }

  .demo-wrapper {
    align-items: center;
    margin-top: 40px;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .demo-container {
    padding-left: 10px;
    padding-right: 10px;
  }

  .browser-demo {
    width: 100%;
    margin-bottom: 0;
    padding: 0;
  }

  .hww-more-2x1 {
    flex-direction: column;
    display: flex;
  }

  .how-we-work-content {
    margin-top: 20px;
    padding: 20px;
  }

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

  .scroll-stopper {
    top: -210px;
  }

  .content-break {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .gallery-thumb {
    height: 175px;
  }
}

#w-node-_86dc6770-16cb-81fb-c036-7e9b77c027e6-c97aa7f1, #w-node-f144fa74-7035-038d-61cc-54a3e89c38a7-c97aa7f1, #w-node-_6eba55bf-997e-67b8-6385-042e8a8d2233-c97aa7f1, #w-node-_3ee81e69-aa64-9f71-f0c3-601841aae282-c97aa7f1, #w-node-_18020db0-11ac-9eb1-ca3a-c5fe4ba09717-c97aa7f1, #w-node-_18020db0-11ac-9eb1-ca3a-c5fe4ba0971a-c97aa7f1, #w-node-_18020db0-11ac-9eb1-ca3a-c5fe4ba0971d-c97aa7f1 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_82a57472-9644-f214-b065-4d0d013dab46-013dab43 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_82a57472-9644-f214-b065-4d0d013dab4d-013dab43 {
  grid-area: 1 / 3 / 2 / 4;
}

#w-node-_82a57472-9644-f214-b065-4d0d013dab72-013dab43 {
  grid-area: 1 / 4 / 2 / 6;
}

#w-node-_6e3f8b4e-6aa4-26b1-cb93-9576e70da796-e70da789, #w-node-_6e3f8b4e-6aa4-26b1-cb93-9576e70da79f-e70da789, #w-node-_6e3f8b4e-6aa4-26b1-cb93-9576e70da7a8-e70da789, #w-node-_6e3f8b4e-6aa4-26b1-cb93-9576e70da7b1-e70da789 {
  align-self: center;
}

#w-node-_89fedac6-fd55-6e51-7ad4-dd067a782866-8eb93f4f {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_04b86693-8885-c9d9-fa37-ef78fcbf4172-8eb93f4f, #w-node-_8a2340fe-a713-f412-6775-ae4adddcd443-8eb93f4f, #w-node-_7356a8d0-415d-bbea-936c-ad56c431be09-8eb93f4f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_834a4100-f200-fc2c-81a7-30f05faf6a4e-8eb93f4f {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_60fb960c-87e6-1171-dbc9-79d0efcaf19d-e19d183e {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_834a4100-f200-fc2c-81a7-30f05faf6a4e-e19d183e, #w-node-_589a15ec-7d4a-a58c-66f0-19f5da3a3fc2-4bb3944d {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_589a15ec-7d4a-a58c-66f0-19f5da3a3fc6-4bb3944d, #w-node-_589a15ec-7d4a-a58c-66f0-19f5da3a3fdd-4bb3944d, #w-node-_2ba0fdbb-aea1-c3b2-fbcc-4d5274d78cee-4bb3944d, #w-node-_4e29fe88-7f2a-3e3b-afd1-4a6e6c923e95-4bb3944d, #w-node-ee86ab19-b567-78ae-4062-1e9daaebb0fc-4bb3944d {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_834a4100-f200-fc2c-81a7-30f05faf6a4e-4bb3944d {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_9e835a27-ba1f-7896-3caa-39e5ec357dda-b8b14b7b, #w-node-_9f4c3bf4-083c-2a8f-b5fd-08d700bf0f4f-b8b14b7b, #w-node-_9724bd5f-fd41-23df-3d10-97702422b13c-b8b14b7b, #w-node-e3515f33-2894-7336-a13a-932b9f8f8524-b8b14b7b, #w-node-_52cab7d0-99b7-8f0e-5a26-c9b86aa80426-b8b14b7b, #w-node-a01077b2-b966-077a-8cbe-29d7c272efa0-b8b14b7b, #w-node-_7435e75d-7c28-5a3b-2d0e-d780e62d4969-b8b14b7b, #w-node-e853c83c-6900-5ff1-ee72-d5d42d1cc281-b8b14b7b, #w-node-_3ccbbd76-e86a-d557-99f3-9d5b233e5600-b8b14b7b, #w-node-_1cdf7deb-7f37-24e0-c571-5a6541e2a86c-b8b14b7b, #w-node-_0eec7239-ef8d-90dc-0f18-1bbd09be29f5-b8b14b7b, #w-node-c0e78174-2890-9a20-7ae7-b3ee5e3d0c46-b8b14b7b, #w-node-aa55e386-aae9-7fe0-bf7a-75d547b62633-b8b14b7b, #w-node-b07dbb01-b0c9-1b47-5918-421e61ec06ef-b8b14b7b, #w-node-_86fc251d-ac44-6160-8865-4e17e9259e2d-b8b14b7b, #w-node-_14843c19-6252-2aad-f0ee-0f7d8f487db6-b8b14b7b, #w-node-f53e28a1-d1a7-32f5-233a-dc5779f0520a-b8b14b7b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_834a4100-f200-fc2c-81a7-30f05faf6a4e-f8070ce0 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_24972dda-2e95-b4fa-08c2-c8819d0183c1-f8070ce0, #w-node-_7bc0b7e3-e926-2115-1883-6c4c1e03ed40-f8070ce0, #w-node-fbaa493e-02a5-ada3-5687-c6b4096c1bf9-f8070ce0, #w-node-_30e8f69c-c3d5-cf6a-ea9e-093a41b56854-f8070ce0, #w-node-fa1664b9-84ae-fd75-3902-2a8ce92be5f1-f8070ce0, #w-node-_00a5c715-b4d2-ba38-11d7-cc5cb48ec4d2-f8070ce0, #w-node-_46818ba6-26e3-2925-50e4-6f340db13eab-f8070ce0, #w-node-_9e835a27-ba1f-7896-3caa-39e5ec357dda-ec2b1645, #w-node-b5243a56-d429-2cfc-8f28-ce392fcb9404-ec2b1645, #w-node-_0c807325-b196-16e7-8bdc-ef4fdd22abae-ec2b1645, #w-node-_83d0ad0d-6f63-46bd-cda3-707f51c6502d-ec2b1645, #w-node-_2b4b215c-c02b-eccf-128d-4150be535ab9-ec2b1645, #w-node-_0158e500-0686-ca65-e1a0-e0bdb7a4ecc6-ec2b1645, #w-node-bcd65600-339b-6e5a-d2e2-7c49a61cca96-ec2b1645, #w-node-_9ea07c00-c2f0-ff23-5830-c0cff2cd4805-ec2b1645, #w-node-_5185045c-055e-8fdf-79c6-efa88365d95e-ec2b1645, #w-node-_969500fb-89c3-25b6-3b84-6ac4a5e0ca1a-ec2b1645 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

@media screen and (max-width: 991px) {
  #w-node-_86dc6770-16cb-81fb-c036-7e9b77c027e6-c97aa7f1 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_82a57472-9644-f214-b065-4d0d013dab46-013dab43 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_89fedac6-fd55-6e51-7ad4-dd067a782866-8eb93f4f {
    grid-area: span 2 / span 2 / span 2 / span 2;
  }

  #w-node-_8907ec77-71e2-7ae0-d138-26060b5f6875-8eb93f4f, #w-node-_80ae5fcf-93f1-95ad-0909-ce45fe668c6b-8eb93f4f, #w-node-f4a70f66-37cd-a051-ab51-038a32790b7e-8eb93f4f, #w-node-_18e48651-f081-595a-f3da-396236441936-8eb93f4f, #w-node-_8907ec77-71e2-7ae0-d138-26060b5f6875-e19d183e, #w-node-_80ae5fcf-93f1-95ad-0909-ce45fe668c6b-e19d183e, #w-node-f4a70f66-37cd-a051-ab51-038a32790b7e-e19d183e, #w-node-_18e48651-f081-595a-f3da-396236441936-e19d183e {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_589a15ec-7d4a-a58c-66f0-19f5da3a3fc2-4bb3944d {
    grid-area: span 2 / span 2 / span 2 / span 2;
  }

  #w-node-_8907ec77-71e2-7ae0-d138-26060b5f6875-4bb3944d, #w-node-_80ae5fcf-93f1-95ad-0909-ce45fe668c6b-4bb3944d, #w-node-_8907ec77-71e2-7ae0-d138-26060b5f6875-f8070ce0, #w-node-_80ae5fcf-93f1-95ad-0909-ce45fe668c6b-f8070ce0, #w-node-b7d30084-cce5-3f29-4a1f-f67f6f3f8eb4-f8070ce0, #w-node-_00915c50-853f-e5e9-b02b-68d85988944b-f8070ce0 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_18020db0-11ac-9eb1-ca3a-c5fe4ba09715-c97aa7f1 {
    justify-self: auto;
  }

  #w-node-_82a57472-9644-f214-b065-4d0d013dab46-013dab43 {
    grid-area: span 1 / span 3 / span 1 / span 3;
  }

  #w-node-_82a57472-9644-f214-b065-4d0d013dab4d-013dab43 {
    grid-area: 2 / 1 / 3 / 4;
  }

  #w-node-_82a57472-9644-f214-b065-4d0d013dab72-013dab43 {
    grid-area: 2 / 2 / 3 / 4;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_82a57472-9644-f214-b065-4d0d013dab46-013dab43 {
    grid-area: span 1 / span 3 / span 1 / span 3;
  }

  #w-node-_82a57472-9644-f214-b065-4d0d013dab4d-013dab43 {
    grid-area: 2 / 1 / 3 / 4;
  }

  #w-node-_82a57472-9644-f214-b065-4d0d013dab72-013dab43 {
    grid-area: 3 / 1 / 4 / 4;
  }

  #w-node-_6e3f8b4e-6aa4-26b1-cb93-9576e70da793-e70da789 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_6e3f8b4e-6aa4-26b1-cb93-9576e70da796-e70da789 {
    grid-area: span 1 / span 2 / span 1 / span 2;
    align-self: center;
  }

  #w-node-_6e3f8b4e-6aa4-26b1-cb93-9576e70da79c-e70da789 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_6e3f8b4e-6aa4-26b1-cb93-9576e70da79f-e70da789 {
    grid-area: span 1 / span 2 / span 1 / span 2;
    align-self: center;
  }

  #w-node-_6e3f8b4e-6aa4-26b1-cb93-9576e70da7a5-e70da789 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_6e3f8b4e-6aa4-26b1-cb93-9576e70da7a8-e70da789 {
    grid-area: span 1 / span 2 / span 1 / span 2;
    align-self: center;
  }

  #w-node-_6e3f8b4e-6aa4-26b1-cb93-9576e70da7ae-e70da789 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_6e3f8b4e-6aa4-26b1-cb93-9576e70da7b1-e70da789 {
    grid-area: span 1 / span 2 / span 1 / span 2;
    align-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 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 Sharp 400';
  src: url('../fonts/fa-sharp-regular-400.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Fa 300';
  src: url('../fonts/fa-light-300.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Fa Sharp 300';
  src: url('../fonts/fa-sharp-light-300.ttf') format('truetype');
  font-weight: 300;
  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 100';
  src: url('../fonts/fa-thin-100.ttf') format('truetype');
  font-weight: 100;
  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: 'Fa6';
  src: url('../fonts/FA6-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Fa6 solid';
  src: url('../fonts/FA6-Solid.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Fa6 brands';
  src: url('../fonts/FA6-Brands.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Arrow right solid';
  src: url('../fonts/arrow-right-solid.svg') format('svg');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}