:root {
  --primitive-colors--brand-color__1: #ffc400;
  --primitive-colors--brand-color__2: #00d800;
  --black-and-white--off-black: #1b1b1b;
  --primitive-colors--brand-color__3: #0301f9;
  --black-and-white--off-white: #f0f0f0;
  --black-and-white--white: #fff;
  --black-and-white--black: #000;
  --neutrals--gray-75: #bfbfbf;
  --neutrals--gray-50: gray;
  --neutrals--gray-25: #404040;
}

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

body {
  color: #333;
  font-family: Montserrat, sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}

h1 {
  text-align: center;
  text-transform: uppercase;
  width: 600px;
  margin-top: 0;
  margin-left: auto;
  margin-right: auto;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}

h2 {
  text-transform: capitalize;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
}

h3 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.2;
}

p {
  margin-bottom: 1em;
}

a {
  color: var(--primitive-colors--brand-color__1);
  text-decoration: underline;
}

a:hover {
  color: var(--primitive-colors--brand-color__2);
}

li {
  margin-bottom: 10px;
}

label {
  opacity: 1;
  text-transform: capitalize;
  margin-bottom: 5px;
  font-weight: 500;
  display: block;
}

.section {
  z-index: 1;
  color: var(--black-and-white--off-black);
  padding: 2em 1rem;
  position: relative;
}

.section.nav {
  z-index: 10;
  background-color: var(--primitive-colors--brand-color__3);
  padding-top: 1em;
  padding-bottom: 1em;
}

.section.s-hero {
  z-index: 1;
  justify-content: center;
  align-items: center;
  padding-top: 2em;
  padding-bottom: 2em;
  display: flex;
  position: relative;
  overflow: hidden;
}

.section.s-content__2 {
  background-color: var(--black-and-white--off-white);
}

.section.section-content {
  z-index: 1;
  position: relative;
}

.section.s-content__3 {
  background-color: var(--black-and-white--off-white);
  color: var(--black-and-white--white);
}

.section.s-content__5 {
  background-color: var(--black-and-white--off-white);
  color: var(--black-and-white--off-black);
}

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

.container.hero {
  z-index: 10;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  color: var(--black-and-white--white);
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.container.nav-container {
  margin-bottom: -70px;
}

.grid__col-2 {
  grid-column-gap: 4em;
  grid-row-gap: 4em;
  grid-template-rows: auto;
  align-items: start;
  justify-items: center;
}

.grid__col-2.gap--lg {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
}

.grid__col-2.v-contact {
  grid-column-gap: 2em;
  grid-row-gap: 2em;
  grid-template-columns: 1.5fr 1fr;
  align-items: start;
  justify-items: center;
}

.content-body.nav-contact-info__wrap {
  grid-column-gap: .5em;
  grid-row-gap: .5em;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  display: flex;
}

.content-body.module--image--wrapper {
  height: 500px;
}

.link-block--logo {
  background-color: #fff;
  border-radius: 16px;
  height: 200px;
  padding-left: 10px;
  padding-right: 10px;
}

.button--primary {
  border: 2px solid var(--primitive-colors--brand-color__1);
  background-color: var(--primitive-colors--brand-color__1);
  text-align: center;
  letter-spacing: .2rem;
  text-transform: uppercase;
  border-radius: 5px;
  padding: 20px 40px;
  font-size: 1.2rem;
  font-weight: 700;
}

.button--primary:hover {
  color: var(--primitive-colors--brand-color__2);
  background-color: #c55500;
}

.button--primary.pad-top--sm {
  margin-top: 20px;
}

.button--primary.pad-top--md {
  margin-top: 40px;
}

.button--primary.pad-top--md:hover {
  border-color: var(--black-and-white--white);
  color: var(--black-and-white--white);
  background-color: rgba(0, 0, 0, 0);
}

.sub-heading__hero {
  color: var(--primitive-colors--brand-color__3);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1;
}

.divider {
  background-color: var(--primitive-colors--brand-color__1);
  height: 4px;
}

.divider.size--sm {
  background-color: var(--primitive-colors--brand-color__2);
  width: 20%;
  margin-top: 1em;
  margin-bottom: 1em;
}

.material-icons {
  color: var(--primitive-colors--brand-color__1);
  margin-top: -4px;
  margin-right: 10px;
  font-family: MATERIAL ICONS, sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.5rem;
}

.u-list--vertical {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-direction: column;
  font-weight: 500;
  display: flex;
}

.list--item {
  display: flex;
}

.image {
  object-fit: cover;
  object-position: 50% 50%;
  width: 100%;
}

.section-bg__wrap {
  z-index: 1;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.section-img-bg {
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: none;
}

.section-img__hero {
  z-index: 3;
  opacity: .6;
  background-image: linear-gradient(#009102, #009102);
  display: block;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.img-logo {
  height: 100%;
}

.nav-social__wrap {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  display: flex;
}

.link-block__social {
  padding: 5px;
}

.link-block__social:hover {
  opacity: .5;
}

.icon-social {
  width: 25px;
  height: 25px;
}

.content-wrap__hero {
  grid-column-gap: .5em;
  grid-row-gap: .5em;
  flex-direction: column;
  align-items: flex-start;
  width: 50em;
  display: flex;
}

.content-wrap__hero.align-center {
  align-items: center;
  width: 100%;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.sub-heading__content {
  color: var(--black-and-white--white);
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1.2;
}

.section-hero__wrap {
  grid-column-gap: .5em;
  grid-row-gap: .5em;
  flex-direction: column;
  justify-content: flex-start;
  display: flex;
}

.section-img__content-1 {
  z-index: 3;
  background-image: linear-gradient(to bottom, var(--primitive-colors--brand-color__1), var(--primitive-colors--brand-color__1));
  opacity: .8;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.unsplash-image {
  object-fit: cover;
  object-position: 50% 50%;
  width: 100%;
  height: auto;
  display: block;
}

.section-img__content-2 {
  z-index: 3;
  background-image: linear-gradient(to bottom, var(--primitive-colors--brand-color__3), var(--primitive-colors--brand-color__3));
  opacity: .8;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.section-img__content-3 {
  z-index: 3;
  background-image: linear-gradient(to bottom, var(--primitive-colors--brand-color__3), var(--primitive-colors--brand-color__3));
  opacity: .7;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.grid__col-3 {
  grid-column-gap: 4em;
  grid-row-gap: 2em;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: start;
  justify-items: center;
}

.grid__col-3.gap--lg {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
}

.content-heading__wrap {
  grid-column-gap: .5em;
  grid-row-gap: .5em;
  flex-direction: column;
  justify-content: flex-start;
  display: flex;
}

.content-heading__wrap.align-center {
  align-items: center;
  max-width: 600px;
}

.f-field__wrap {
  width: 100%;
}

._2-field__wrap {
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  justify-content: space-between;
  width: 100%;
  display: flex;
}

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

.form__wrap {
  background-color: var(--black-and-white--white);
  width: 100%;
  min-width: 550px;
  margin-bottom: 0;
  padding: 3em 2em;
}

.text-field {
  background-color: var(--black-and-white--white);
  color: var(--black-and-white--off-black);
  font-weight: 500;
}

.text-area {
  background-color: var(--black-and-white--white);
  color: var(--black-and-white--off-black);
  min-width: 100%;
  max-width: 100%;
  min-height: 150px;
  max-height: 300px;
  font-weight: 500;
}

.info-heading {
  color: var(--black-and-white--off-black);
  text-transform: capitalize;
  font-weight: 700;
}

.business-info__card {
  grid-column-gap: 1.5em;
  grid-row-gap: 1.5em;
  background-color: var(--black-and-white--white);
  flex-direction: column;
  width: 100%;
  margin-bottom: 0;
  padding: 3em 2em;
  display: flex;
}

.contact-info__wrap {
  grid-column-gap: 2em;
  grid-row-gap: 2em;
  flex-direction: column;
  width: 100%;
  display: flex;
}

.map__wrap {
  width: 100%;
  height: 300px;
}

.section-5 {
  padding: 4rem 2rem;
  display: block;
  position: relative;
}

.module {
  grid-column-gap: .5em;
  grid-row-gap: .5em;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.module._w-50 {
  justify-content: flex-start;
  width: 100%;
}

.tab-h2 {
  text-transform: uppercase;
  font-size: 2rem;
  font-weight: 700;
  line-height: 2.5rem;
}

.container-2 {
  z-index: 2;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.tab-slide {
  background-color: #f3fafc;
  padding: 3em 2em;
}

.tab-button {
  background-color: var(--black-and-white--off-black);
  color: var(--black-and-white--off-white);
  letter-spacing: 1px;
  padding: 10px 20px;
  font-size: 1rem;
}

.tab-button.w--current {
  background-color: var(--primitive-colors--brand-color__1);
  color: #f3fafc;
  letter-spacing: 1px;
  padding: 10px 20px;
  font-size: 1rem;
}

.testi-img__wrap {
  background-color: #f3f7f8;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
}

.tab-h3 {
  text-transform: capitalize;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 2.5rem;
}

.tab-grid {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-items: center;
  display: grid;
}

.tab-content {
  grid-column-gap: .5em;
  grid-row-gap: .5em;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.form__hide {
  display: none;
}

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

.list-container {
  grid-column-gap: 2em;
  grid-row-gap: 2em;
  display: flex;
}

.section-6 {
  background-color: #701e19;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  padding-top: 64px;
  padding-bottom: 64px;
  display: flex;
}

.container-3 {
  background-color: #b4b3b3;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  max-width: 1200px;
  padding: 24px;
  display: flex;
}

._2-columns {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.module-2 {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  background-color: #f8f8f8;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  padding: 24px;
  display: flex;
}

.section-heading-2-about-us {
  color: #1b1b1b;
  text-transform: uppercase;
  font-family: Montserrat, sans-serif;
  font-size: 40px;
  font-weight: 800;
  line-height: 40px;
}

.error-83950114-f022-3172-2352-83b5a2300b0e {
  color: #fdb713;
  font-family: Montserrat, sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 24px;
}

.divider-2 {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.error-83950114-f022-3172-2352-83b5a2300b10 {
  color: #1b1b1b;
  font-family: Montserrat, sans-serif;
  font-size: 19px;
  font-weight: 400;
  line-height: 28.8px;
}

.column {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  background-color: #f8f8f8;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 548px;
  padding: 24px;
  display: flex;
}

.section-656a3d9e65d0044b8203edd7_img20-201-jpg {
  object-fit: cover;
}

.module-3 {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  background-color: #f8f8f8;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  padding: 24px;
  display: flex;
}

.divider-3 {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.map__wrapper {
  grid-column-gap: 1.5em;
  grid-row-gap: 1.5em;
  background-color: var(--black-and-white--white);
  flex-direction: column;
  width: 100%;
  margin-bottom: 0;
  padding: 0;
  display: flex;
}

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

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

.colored-divider {
  background-color: var(--primitive-colors--brand-color__3);
  height: 10px;
}

.questions-wrapper {
  background-color: var(--primitive-colors--brand-color__3);
  color: var(--black-and-white--white);
  text-align: center;
  border-radius: 500px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 400px;
  height: 400px;
  display: flex;
}

.questions-title {
  margin-bottom: 10px;
  font-size: 1.5rem;
  font-weight: 700;
}

.colmn-right {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-flow: column;
  display: flex;
}

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

.heading_title {
  text-align: center;
  flex-flow: column;
  margin-bottom: 2rem;
  display: flex;
}

@media screen and (max-width: 991px) {
  h2 {
    font-size: 2rem;
  }

  .grid__col-2 {
    grid-column-gap: 1em;
    grid-row-gap: 1em;
  }

  .grid__col-2.v-contact {
    grid-column-gap: 1em;
    grid-row-gap: 1em;
    grid-template-columns: 1.5fr 1fr;
  }

  .sub-heading__content {
    font-size: 1.4rem;
  }

  .grid__col-3 {
    grid-column-gap: 3em;
    grid-row-gap: 1em;
  }

  .form__wrap {
    min-width: 100%;
    padding: 2em 1em;
  }

  .business-info__card {
    padding: 2em 1em;
  }

  .module._w-50 {
    width: 100%;
  }

  .tab-grid {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
  }

  .list-container {
    grid-column-gap: 1em;
    grid-row-gap: 1em;
  }

  ._2-columns {
    flex-direction: column;
    align-items: center;
  }

  .questions-wrapper {
    width: 300px;
    height: 300px;
  }
}

@media screen and (max-width: 767px) {
  h1 {
    width: 100%;
  }

  .grid__col-2 {
    grid-column-gap: 2em;
    grid-row-gap: 2em;
  }

  .image {
    height: 250px;
  }

  .grid__col-3 {
    grid-column-gap: 2em;
  }

  .map__wrapper {
    padding: 2em 1.5em;
  }
}

@media screen and (max-width: 479px) {
  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.2rem;
  }

  p {
    font-size: 1rem;
  }

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

  .grid__col-2.v-contact {
    grid-template-columns: 1.5fr;
  }

  .sub-heading__hero {
    font-size: 1.3rem;
  }

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

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

  .section-5 {
    padding-left: .5rem;
    padding-right: .5rem;
  }

  .tab-slide {
    padding: 2em 1em;
  }

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

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

  .list-container {
    flex-direction: column;
  }

  .colmn-right {
    justify-content: flex-start;
    align-items: center;
  }
}

#w-node-d2e24305-b6b8-4794-8145-a1e42dfb0c6a-c8cde114 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_99250293-564d-17bf-74c9-7d59ea69ef84-c8cde114 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: center;
}

@media screen and (max-width: 479px) {
  #w-node-_99250293-564d-17bf-74c9-7d59ea69ef84-c8cde114 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}


@font-face {
  font-family: 'MATERIAL ICONS';
  src: url('../fonts/MaterialIcons-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}