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

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

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

:root {
  --primary-dark: #0e0e0e;
  --primary: #0b2936;
  --paragraph-gray: #535353;
  --primary-yellow: #cefe02;
  --primary-light: #f2f3ea;
  --light-gray: #799597;
  --radius-large: 32px;
  --dark-gray: #3c5459;
  --white: white;
  --radius-medium: 16px;
  --dark-gray-50: #afafaf80;
  --black\<deleted\|variable-66bd1c0d\>: black;
  --transparent: #fff0;
  --radius-small: 8px;
  --white-50: #ffffff80;
}

.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.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-layout-hflex {
  flex-direction: row;
  align-items: flex-start;
  display: flex;
}

.w-checkbox {
  margin-bottom: 5px;
  padding-left: 20px;
  display: block;
}

.w-checkbox:before {
  content: " ";
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox:after {
  content: " ";
  clear: both;
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox-input {
  float: left;
  margin: 4px 0 0 -20px;
  line-height: normal;
}

.w-checkbox-input--inputType-custom {
  border: 1px solid #ccc;
  border-radius: 2px;
  width: 12px;
  height: 12px;
}

.w-checkbox-input--inputType-custom.w--redirected-checked {
  background-color: #3898ec;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/static/custom-checkbox-checkmark.589d534424.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-color: #3898ec;
}

.w-checkbox-input--inputType-custom.w--redirected-focus {
  box-shadow: 0 0 3px 1px #3898ec;
}

.w-form-formradioinput--inputType-custom {
  border: 1px solid #ccc;
  border-radius: 50%;
  width: 12px;
  height: 12px;
}

.w-form-formradioinput--inputType-custom.w--redirected-focus {
  box-shadow: 0 0 3px 1px #3898ec;
}

.w-form-formradioinput--inputType-custom.w--redirected-checked {
  border-width: 4px;
  border-color: #3898ec;
}

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

body {
  color: var(--primary-dark);
  font-family: Schibsted Grotesk, sans-serif;
  font-size: 16px;
  line-height: 1.5em;
}

h1 {
  color: var(--primary-dark);
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Schibsted Grotesk, sans-serif;
  font-size: 58px;
  font-weight: 500;
  line-height: 1.2em;
}

h2 {
  color: var(--primary-dark);
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Schibsted Grotesk, sans-serif;
  font-size: 48px;
  font-weight: 500;
  line-height: 1.2em;
}

h3 {
  color: var(--primary-dark);
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Schibsted Grotesk, sans-serif;
  font-size: 36px;
  font-weight: 500;
  line-height: 1.3em;
}

h4 {
  font-size: 28px;
  font-weight: 500;
  line-height: 1.2em;
}

h5 {
  color: var(--primary-dark);
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Schibsted Grotesk, sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.2em;
}

h6 {
  color: var(--primary-dark);
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Schibsted Grotesk, sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2em;
}

p {
  color: var(--primary);
  margin-top: 10px;
  margin-bottom: 10px;
  line-height: 1.5em;
}

a {
  color: var(--primary);
  align-items: center;
  line-height: 1.2em;
  text-decoration: none;
  transition: color .3s;
}

ul {
  grid-row-gap: 15px;
  background-color: var(--paragraph-gray);
  color: var(--primary);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  flex-direction: column;
  margin-top: 10px;
  margin-bottom: 10px;
  padding-left: 20px;
  display: flex;
}

li {
  align-items: center;
  line-height: 1.4em;
}

img {
  max-width: 100%;
  display: inline-block;
}

label {
  margin-bottom: 10px;
  display: block;
}

blockquote {
  border-left: 4px solid var(--primary-yellow);
  text-align: center;
  margin-top: 25px;
  margin-bottom: 25px;
  padding: 30px 20px 10px;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.2em;
}

.section {
  padding-top: 80px;
  padding-bottom: 80px;
  position: relative;
}

.section.light-background {
  background-color: var(--primary-light);
}

.section.licensing-fonts {
  padding-top: 0;
  padding-bottom: 0;
}

.section.changelog-banner {
  background-color: var(--primary);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 450px;
  padding-top: 140px;
  display: flex;
}

.section.without-bottom-spacing {
  padding-bottom: 0;
}

.section.banner-testimonials {
  background-color: var(--primary);
  flex-direction: column;
  align-items: center;
  display: flex;
}

.section.without-space {
  padding-top: 0;
  padding-bottom: 0;
}

.section.shop-product-section {
  padding-top: 180px;
}

.section.overflow-visible {
  overflow: visible;
}

.section.without-space-dark-color {
  background-color: var(--primary);
  margin-bottom: -15px;
  padding-top: 15px;
  padding-bottom: 15px;
}

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

.section.banner-hero {
  background-color: var(--primary);
  padding: 100px 15px 15px;
}

.section.home-2 {
  background-color: var(--primary);
  padding-top: 120px;
  padding-left: 15px;
  padding-right: 15px;
  overflow: hidden;
}

.section.banner-hero-home {
  background-color: var(--primary);
  flex-direction: column;
  padding: 120px 15px 15px;
  display: flex;
  overflow: hidden;
}

.section.banner-inner {
  background-color: var(--primary);
  padding: 100px 15px 15px;
}

.section.light-background-padding {
  background-color: var(--primary-light);
  padding-bottom: 0;
}

.section.checkout {
  padding-top: 180px;
}

.base-container {
  flex-direction: column;
  align-items: center;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
}

.base-container.align-left {
  align-items: flex-start;
}

.base-container.relative-position {
  z-index: 1;
  position: relative;
}

.base-container.flex-horizontal {
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-large);
  background-color: var(--dark-gray);
  flex-direction: row;
  overflow: hidden;
}

.base-container.banner-home-3 {
  align-items: flex-start;
  width: 100%;
  padding-left: 0;
}

.grid-system-wrapper {
  flex-direction: column;
  width: 100%;
  margin-top: 40px;
  display: flex;
}

.grid-system {
  border-top: 1px solid #7c7c7c;
  justify-content: space-between;
  width: 80%;
  display: flex;
}

.grid-title {
  background-color: var(--primary);
  color: var(--white);
  border-left: 1px #a7a7a7;
  border-right: 1px solid #7c7c7c;
  justify-content: center;
  width: 19%;
  margin-top: 0;
  margin-bottom: 0;
  padding: 20px 10px;
  display: flex;
}

.grid-title.first-grid {
  background-color: var(--primary);
  border-left-style: solid;
  border-left-color: #7c7c7c;
  width: 24%;
  height: 100%;
  margin-top: 0;
}

.grid-description {
  border-bottom: 1px solid #a7a7a7;
  border-right: 1px solid #a7a7a7;
  justify-content: center;
  align-items: center;
  width: 19%;
  margin-top: 0;
  margin-bottom: 0;
  padding: 20px 10px;
  display: flex;
}

.grid-description.first-description {
  border-bottom: 1px solid #a7a7a7;
  border-left: 1px solid #a7a7a7;
  border-right: 1px solid #a7a7a7;
  width: 24%;
}

.grid-description.last-description {
  border-right-style: solid;
  border-right-width: 1px;
}

.spacing-system-column {
  padding-right: 20px;
}

.spacing-system-image {
  max-width: 80%;
}

.spacing-wrapper-mobile {
  width: 70%;
  margin-top: 30px;
  position: relative;
}

.typography-wrapper {
  margin-top: 30px;
}

.spacing-columns {
  margin-top: 40px;
}

.bottom-style-spacing-desktop {
  font-weight: 700;
  position: absolute;
  inset: auto 0% 10% auto;
}

.top-style-spacing-desktop {
  font-weight: 700;
  position: absolute;
  top: 8%;
  bottom: auto;
  right: 0;
}

.spacing-wrapper {
  width: 100%;
  margin-top: 30px;
  position: relative;
}

.middle-style-spacing-desktop {
  font-weight: 700;
  position: absolute;
  inset: 33% 0% auto auto;
}

.spasing-system-image-mobile {
  max-width: 70%;
}

.primary-style-guide {
  background-color: var(--primary);
  width: 75px;
  height: 75px;
}

.gray-style-guide {
  background-color: var(--light-gray);
  width: 75px;
  height: 75px;
}

.colors-container {
  grid-column-gap: 60px;
  justify-content: flex-start;
  margin-top: 40px;
  display: flex;
}

.color-container {
  grid-column-gap: 30px;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-top: 40px;
  display: flex;
}

.primary-light-style-guide {
  background-color: var(--primary-light);
  width: 75px;
  height: 75px;
  box-shadow: 0 0 15px #0000001a;
}

.white-style-guide {
  background-color: var(--white);
  width: 75px;
  height: 75px;
}

.headings-typography-wrapper {
  flex-flow: wrap;
  width: 47%;
  display: flex;
}

.headers-wrapper {
  width: 100%;
  margin-top: 10px;
}

.h1-tablet {
  font-size: 48px;
}

.h2-tablet {
  font-size: 42px;
}

.h1-mobile {
  font-size: 40px;
}

.h2-mobile {
  font-size: 36px;
}

.h3-mobile {
  font-size: 32px;
}

.style-guide-body-wrapper {
  flex-direction: column;
  align-items: flex-start;
  width: 47%;
  display: flex;
}

.style-guide-body-wrapper.last-child {
  margin-right: 0;
}

.primary-button {
  background-color: var(--primary-yellow);
  color: var(--primary);
  text-align: center;
  letter-spacing: .5px;
  text-transform: none;
  border-radius: 50px;
  padding: 18px 35px;
  font-size: 18px;
  transition: background-color .5s, color .5s;
  display: inline-block;
}

.primary-button:hover {
  background-color: var(--primary);
  opacity: 1;
  color: var(--primary-yellow);
}

.primary-button.full-width-mobile {
  display: block;
}

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

.primary-button.full {
  width: 100%;
}

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

.style-guide-div {
  grid-row-gap: 60px;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
}

.top-style-spacing-mobile {
  font-weight: 700;
  position: absolute;
  top: 5%;
  right: 0;
}

.middlr-style-spacing-mobile {
  font-weight: 700;
  position: absolute;
  top: 29%;
  right: 0;
}

.bottom-style-spacing-mobile {
  font-weight: 700;
  position: absolute;
  bottom: 7%;
  right: 0;
}

.grid-header {
  width: 100%;
  margin-top: 50px;
}

.link-wrapper {
  width: 50%;
  margin-top: 10px;
}

.nav-container {
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
}

.nav-menu {
  text-align: right;
  justify-content: flex-end;
  align-items: center;
}

.nav-link {
  color: var(--white);
  margin-top: 0;
  margin-bottom: 0;
}

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

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

.nav-dropdown-toggle {
  margin-left: 0;
  margin-right: 0;
  padding: 20px 10px;
  display: flex;
}

.nav-dropdown-icon {
  font-size: 16px;
  display: none;
}

.nav-dropdown-list {
  border: 1px solid var(--light-gray);
  background-color: var(--dark-gray);
  border-radius: 10px;
  width: 230px;
  padding: 15px 20px;
}

.nav-dropdown-list.w--open {
  padding-top: 20px;
  padding-bottom: 20px;
  box-shadow: 0 0 10px #0000000a;
}

.nav-dropdown-list.megamenu {
  width: 360px;
}

.nav-dropdown-list.megamenu.w--open {
  width: 600px;
  margin-left: -245px;
  display: flex;
}

.nav-dropdown-link-wrapper {
  flex-direction: column;
  align-items: center;
  padding-left: 0;
  padding-right: 0;
  display: flex;
  position: relative;
  overflow: hidden;
}

.nav-dropdown-link {
  color: var(--white);
  text-transform: capitalize;
  width: 100%;
  margin-left: -20px;
  padding: 8px 8px 8px 0;
  font-size: 16px;
  transition: all .3s;
  display: flex;
}

.nav-dropdown-link:hover {
  color: var(--primary-yellow);
  margin-left: 0;
}

.nav-dropdown-link.w--current {
  color: var(--primary-yellow);
}

.nav-item-title {
  color: var(--white);
  margin-top: 0;
  margin-bottom: 0;
  transition: color .3s;
}

.nav-item-title:hover {
  color: var(--primary-yellow);
}

.pages-banner {
  background-color: var(--primary);
  justify-content: center;
  align-items: center;
  min-height: 450px;
  display: flex;
}

.licensing-title-wrapper {
  border-bottom: 1px #5e5e5e80;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  display: flex;
}

.licensing-images-wrapper {
  border-top: 1px solid #5e5e5e80;
  width: 100%;
  padding-top: 40px;
}

.licensing-grid {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  border-bottom: 1px #5e5e5e80;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  width: 100%;
  padding-bottom: 60px;
}

.licensing-grid.last-child {
  border-bottom-style: none;
  padding-bottom: 0;
}

.licensing-image {
  border-radius: var(--radius-medium);
  transform: scale3d(1none, 1none, 1none);
  object-fit: cover;
  transform-style: preserve-3d;
  width: 100%;
  height: 320px;
  transition: transform .8s;
}

.licensing-image:hover {
  transform: scale(1.1);
}

.licensing-title {
  width: 100%;
  padding-bottom: 30px;
}

.licensing-image-link {
  border-radius: var(--radius-medium);
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.licensing-image-link:hover {
  opacity: 1;
}

.license-link {
  color: var(--primary-dark);
  letter-spacing: normal;
  margin-right: 50px;
  font-weight: 700;
}

.license-link:hover {
  color: var(--light-gray);
}

.license-link.last-child {
  margin-right: 0;
}

.banner-title {
  color: var(--white);
  text-align: center;
}

.licensing-heading {
  margin-bottom: 20px;
}

.licensing-icon-link-wrapper {
  margin-right: 25px;
}

.icon-style-guide {
  color: var(--primary);
  font-family: "Fa Brands 400 (6.4.2)", sans-serif;
  font-size: 24px;
}

.icon-style-guide.dribble {
  font-family: "Fa solid 900", sans-serif;
}

.licensing-fonts-wrapper {
  align-items: center;
  width: 100%;
  margin-top: 20px;
  display: flex;
}

.licensing-icon-link {
  margin-bottom: 20px;
}

.licensing-paragraph {
  width: 50%;
  margin-right: 40px;
}

.licensing-font-title {
  color: #5e5e5e80;
  text-transform: uppercase;
  font-weight: 400;
}

.licensing-icons-wrapper {
  margin-top: 30px;
  margin-bottom: 20px;
}

.utility-page-wrap {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin-bottom: 40px;
  padding-top: 40px;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
}

.utility-page-content {
  text-align: center;
  flex-direction: column;
  width: 280px;
  display: flex;
}

.utility-page-form {
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.password-image {
  width: 140px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.password-input {
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-large);
  min-width: 280px;
  min-height: 60px;
  margin-bottom: 10px;
  padding: 10px 20px;
  font-size: 16px;
  line-height: 1.2em;
}

.password-input:focus {
  border: 1px solid var(--primary);
}

.password-input::placeholder {
  color: var(--light-gray);
}

.password-title-wrapper {
  margin-bottom: 40px;
}

._404-paragraph {
  text-align: center;
  margin-top: 20px;
  margin-bottom: 40px;
}

._404-logo-wrapper {
  z-index: 2;
  justify-content: center;
  display: flex;
  position: absolute;
  inset: 40px 0% auto;
}

.text-center {
  text-align: center;
  max-width: 740px;
}

._404-content-wrapper {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 700px;
  display: flex;
}

.coming-soon-wrapper {
  flex-direction: column;
  align-items: center;
  max-width: 690px;
  margin-left: 0;
  margin-right: 40px;
  display: flex;
}

.changelog-heading {
  margin-bottom: 20px;
}

.coming-soon-form {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  flex-direction: row;
  display: flex;
}

.coming-soon-input {
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-large);
  min-width: 300px;
  height: auto;
  margin-bottom: 0;
  padding: 18px 24px;
  font-size: 16px;
}

.coming-soon-input:focus {
  border: 1px solid var(--primary);
  font-size: 16px;
}

.coming-soon-input::placeholder {
  color: var(--light-gray);
  font-size: 16px;
  line-height: 1em;
}

.coming-soon-paragraph {
  margin-top: 20px;
  margin-bottom: 40px;
}

.coming-soon-page-wrap {
  text-align: left;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
}

.coming-soon-heading {
  text-align: center;
  margin-top: 60px;
  font-size: 70px;
}

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

.nav-menu-wrapper {
  flex: 1;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.blog-template-wrapper {
  width: 100%;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}

.blog-template-pagination {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  align-items: center;
  margin-top: 60px;
  display: flex;
}

.prev-post-arrow {
  color: var(--dark-gray);
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 25px;
  font-family: "Fa solid 900", sans-serif;
}

.next-post-arrow {
  color: var(--dark-gray);
  margin-bottom: 0;
  margin-left: 25px;
  font-family: "Fa solid 900", sans-serif;
}

.blog-template-prev-button {
  flex: 1;
  display: flex;
}

.blog-template-next-button {
  flex: 1;
  justify-content: flex-end;
  display: flex;
}

.blog-template-pagination-link {
  align-items: center;
  width: auto;
  display: flex;
}

.blog-template-next {
  text-align: right;
}

.footer {
  background-color: var(--primary);
  text-align: center;
  align-items: flex-start;
  padding-top: 80px;
  padding-bottom: 60px;
}

.footer-bottom-wrapper {
  grid-row-gap: 5px;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
}

.section-title-wrapper {
  text-align: center;
  max-width: 740px;
  margin-bottom: 60px;
  margin-left: auto;
  margin-right: auto;
}

.section-subtitle {
  color: var(--paragraph-gray);
  text-transform: uppercase;
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 400;
}

.section-subtitle.small {
  color: var(--primary-yellow);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.section-subtitle.green {
  color: var(--primary-yellow);
  font-weight: 500;
}

.style-guide-buttons-wrapper {
  grid-column-gap: 40px;
  grid-row-gap: 30px;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  margin-top: 40px;
  display: flex;
}

.style-guide-button-wrapper {
  grid-row-gap: 20px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 47%;
  display: flex;
}

.style-guide-button-wrapper.last-child {
  margin-right: 0;
}

.text-button-icon {
  margin-top: 4px;
  margin-left: 5px;
  font-family: "Fa solid 900", sans-serif;
  font-size: 13px;
  line-height: 1;
}

.paragraph-large {
  font-size: 18px;
  line-height: 1.5em;
}

.paragraph-large.margin-bottom-medium {
  margin-bottom: 40px;
}

.paragraph-large.dark {
  color: var(--primary-dark);
}

.banner-title-wrapper {
  flex-direction: column;
  align-items: center;
  max-width: 760px;
  margin-top: 80px;
  display: flex;
}

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

.section-title-description {
  text-align: center;
  margin-top: 20px;
  font-size: 18px;
}

.pricing-plans-wrapper {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.pricing-plan-item {
  border: 1px solid var(--light-gray);
  background-color: var(--white);
  border-radius: 15px;
  flex-direction: column;
  align-items: center;
  padding: 40px 30px 30px;
  display: flex;
}

.pricing-plan-item.center {
  background-color: var(--primary-light);
  position: relative;
}

.pricing-plan-item.center-pricing {
  background-color: var(--white);
  position: relative;
}

.pricing-plan-list {
  background-color: var(--primary);
  width: 100%;
  margin-top: 20px;
  margin-bottom: 40px;
  padding-left: 0;
  list-style-type: none;
}

.pricing-plan-item-title {
  text-align: center;
  margin-top: 0;
  margin-bottom: 20px;
}

.pricing-plan-price-wrapper {
  align-items: flex-start;
  margin-top: 20px;
  display: flex;
}

.pricing-plan-price {
  color: var(--dark-gray);
  font-size: 56px;
}

.pricing-plan-currency-icon {
  color: var(--dark-gray);
  margin-right: 2px;
  font-family: Lato, sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 20px;
}

.comparing-table-wrapper {
  width: 100%;
  display: flex;
}

.comparing-table-features-wrapper {
  width: 33%;
  margin-right: 20px;
  display: none;
}

.comparing-table-plans-wrapper {
  width: 100%;
  display: flex;
}

.comparing-table-features-title {
  background-color: var(--light-gray);
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  align-items: center;
  min-height: 180px;
  padding-left: 40px;
  padding-right: 40px;
  display: flex;
}

.comparing-table-list-wrapper {
  padding-top: 10px;
  padding-left: 40px;
  padding-right: 40px;
}

.comparing-table-list {
  background-color: var(--primary);
  margin-bottom: 0;
  padding-left: 0;
}

.comparing-table-list-item {
  border-bottom: 1px solid #79959780;
  min-height: 56px;
  margin-bottom: 0;
  padding-top: 15px;
  padding-bottom: 15px;
  padding-left: 0;
  line-height: 1.5em;
}

.comparing-table-plan-title {
  background-color: var(--primary);
  text-align: center;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 180px;
  padding-left: 40px;
  padding-right: 40px;
  display: flex;
}

.comparing-table-plan {
  width: 33.33%;
  margin-right: 30px;
  transition: all .3s;
}

.comparing-table-plan:hover {
  box-shadow: 0 0 30px #1b354626;
}

.comparing-table-plan.last-child {
  margin-right: 0;
}

.comparing-table-content-wrapper {
  border-style: none solid solid;
  border-width: 1px;
  border-color: var(--light-gray);
  border-bottom-right-radius: 16px;
  border-bottom-left-radius: 16px;
  padding-top: 20px;
  padding-left: 40px;
  padding-right: 40px;
}

.comparing-table-content-item {
  text-align: center;
  border-bottom: 1px solid #79959780;
  min-height: 56px;
  padding-top: 5px;
  padding-bottom: 5px;
}

.comparing-table-tick-icon {
  color: var(--primary);
  font-family: "Fa solid 900", sans-serif;
}

.comparing-table-button-wrapper {
  padding-top: 50px;
  padding-bottom: 35px;
}

.comparing-table-content-item-title {
  margin-bottom: 0;
  font-size: 16px;
}

.workflow-profile-photo {
  object-fit: cover;
  border-radius: 50%;
  width: 100%;
  height: 100%;
}

.workflow-profile-description {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  margin-left: 20px;
  display: flex;
}

.workflow-profile-wrapper {
  flex-direction: row;
  align-items: center;
  margin-top: 40px;
  display: flex;
}

.workflow-content-wrapper {
  flex-direction: column;
  justify-content: center;
  width: 50%;
  padding-left: 40px;
  display: flex;
}

.workflow-video-wrapper {
  width: 50%;
}

.workflow-wrapper {
  display: flex;
}

.workflow-wrapper.align-start {
  align-items: flex-start;
}

.workflow-profile-photo-wrapper {
  width: 80px;
  height: 80px;
}

.workflow-profile-name {
  margin-bottom: 0;
}

.workflow-video {
  border-radius: var(--radius-medium);
  background-image: linear-gradient(#0000004d, #0000004d), url('../images/worker-is-cutting-wires.webp');
  background-position: 0 0, 50% 20%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  min-height: 400px;
  display: flex;
  position: relative;
}

.play-button {
  z-index: 5;
  background-color: var(--white);
  border-radius: 50%;
  width: 80px;
  height: 80px;
  position: absolute;
}

.workflow-quote {
  margin-top: 20px;
  margin-bottom: 0;
  font-size: 18px;
}

.accordion-toggle {
  white-space: normal;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  padding: 10px 0;
  display: flex;
}

.accordion-list {
  background-color: #0000;
  width: 100%;
  display: block;
  position: static;
  overflow: hidden;
}

.accordion-list.w--open {
  background-color: #0000;
  padding-top: 0;
  padding-bottom: 20px;
  display: block;
}

.accordion-wrapper {
  width: 100%;
  display: flex;
}

.accordion-wrapper.service-details {
  margin-top: 60px;
}

.accordion-item {
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-medium);
  background-color: var(--dark-gray);
  width: 100%;
  padding: 20px 30px;
  position: static;
  box-shadow: 0 0 20px #0000000f;
}

.accordion-icon {
  color: var(--white);
  margin-top: 10px;
  margin-bottom: 10px;
  margin-left: 20px;
  font-family: "Fa solid 900", sans-serif;
  font-size: 17px;
  line-height: 24px;
}

.accordion-wrap {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-direction: column;
  width: 50%;
  margin-right: 15px;
  display: flex;
}

.accordion-wrap.last-child {
  margin-right: 0;
}

.accordion-list-content {
  color: var(--white);
  margin-top: 0;
  margin-bottom: 0;
}

.accordion-title {
  color: var(--white);
}

.light-background {
  background-color: var(--light-gray);
}

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

.contacts-wrapper {
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.contacts-content-wrapper {
  width: 50%;
  padding-right: 60px;
}

.contacts-form-wrapper {
  border-radius: var(--radius-medium);
  background-color: var(--primary-light);
  flex: none;
  width: 50%;
  padding: 40px;
}

.contacts-divider {
  background-color: var(--dark-gray-50);
  width: 100%;
  height: 1px;
  margin-top: 30px;
  margin-bottom: 20px;
}

.contacts-detail {
  align-items: center;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 4px;
  display: flex;
}

.contacts-icon {
  color: var(--primary);
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 15px;
  font-family: "Fa solid 900", sans-serif;
}

.paragraph-no-margin {
  margin-top: 0;
  margin-bottom: 0;
}

.paragraph-no-margin:hover {
  color: var(--light-gray);
}

.paragraph-no-margin.color {
  color: var(--dark-gray);
  text-decoration: underline;
  transition: color .2s;
}

.paragraph-no-margin.color:hover {
  color: var(--light-gray);
}

.contacts-location-slider {
  background-color: #0000;
  height: auto;
  padding-right: 100px;
  position: relative;
}

.hidden {
  display: none;
}

.contacts-left-arrow {
  color: var(--primary);
  max-width: 40px;
  padding: 10px 15px;
  transition: color .3s;
  position: absolute;
  inset: 0% 60px auto auto;
}

.contacts-left-arrow:hover {
  color: var(--light-gray);
}

.contacts-right-arrow {
  color: var(--primary);
  max-width: 40px;
  padding: 10px 15px;
  transition: color .3s;
  inset: 0% 19px auto auto;
}

.contacts-right-arrow:hover {
  color: var(--light-gray);
}

.contacts-slider-arrow-icon {
  font-family: "Fa solid 900", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.contacts-arrows-divider {
  background-color: var(--light-gray);
  width: 1px;
  height: 20px;
  position: absolute;
  inset: 12px 60px auto auto;
}

.contacts-form-title {
  text-align: center;
  margin-top: 0;
  margin-bottom: 40px;
}

.without-top-spacing {
  padding-top: 0;
}

.search-result-item {
  margin-bottom: 30px;
}

.search-link {
  color: var(--dark-gray);
  margin-bottom: 10px;
  font-size: 18px;
  text-decoration: underline;
  transition: color .3s;
  display: inline-block;
}

.search-link:hover {
  opacity: .7;
}

.search-input {
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-large);
  height: auto;
  margin-bottom: 0;
  padding: 19px 22px;
  font-size: 16px;
  line-height: 1em;
}

.search-input:focus {
  border: 1px solid var(--primary);
}

.search-input::placeholder {
  color: var(--light-gray);
}

.search-result-wrapper {
  width: 100%;
  margin-top: 40px;
}

.search-section {
  margin-bottom: 60px;
  padding-top: 140px;
}

.testimonials-card-wrapper {
  z-index: 999;
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  width: 100%;
  display: grid;
  position: relative;
}

.service-details-content-wrapper {
  width: 70%;
  margin-right: 40px;
}

.accordion-wrap-one-column {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-direction: column;
  width: 100%;
  display: flex;
}

.service-details-sidebar-wrapper {
  border-radius: var(--radius-medium);
  background-color: var(--primary-light);
  flex-direction: column;
  align-items: flex-start;
  width: 30%;
  padding: 20px 40px 30px;
  display: flex;
  position: sticky;
  top: 110px;
}

.service-details-content {
  align-items: flex-start;
  display: flex;
  position: relative;
}

.service-details-sidebar-contacts {
  margin-top: 10px;
  margin-bottom: 30px;
}

.accordion-wrapper-one-column {
  justify-content: center;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.dark-gray-style-guide {
  background-color: var(--dark-gray);
  width: 75px;
  height: 75px;
}

.headings-container {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.service-list-item {
  position: relative;
}

.primary-button-white {
  background-color: var(--white);
  color: var(--primary);
  text-align: center;
  letter-spacing: .5px;
  border-radius: 50px;
  align-items: center;
  padding: 18px 35px;
  font-size: 18px;
  transition: background-color .5s;
}

.primary-button-white:hover {
  background-color: var(--primary-yellow);
}

.style-guide-content-wrapper {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex-wrap: nowrap;
  margin-top: 20px;
  display: flex;
}

.slide-3 {
  max-height: 580px;
}

.about-three-column-section {
  display: flex;
  overflow: hidden;
}

.about-first-column {
  background-color: var(--primary);
  width: 33.33%;
  padding: 80px 30px 80px 40px;
}

.about-second-column {
  background-image: url('../images/electrician-big.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  width: 33.33%;
}

.about-third-column {
  background-color: var(--primary-light);
  width: 33.33%;
  padding: 80px 40px 80px 30px;
}

.about-third-column-description {
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 18px;
}

.about-progress-bar-wrapper {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-direction: column;
  display: flex;
}

.progressbar-gray-line {
  background-color: var(--dark-gray-50);
  width: 100%;
  height: 4px;
}

.progress-bar-90 {
  background-color: var(--primary);
  width: 90%;
  height: 4px;
  margin-top: -4px;
  position: relative;
}

.about-progress-bar-active-element {
  background-color: var(--primary);
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
  width: 25px;
  height: 25px;
  position: absolute;
  inset: auto -10px 15px auto;
  transform: rotate(-45deg);
}

.progress-bar-number {
  color: var(--white);
  padding-top: 2px;
  padding-left: 5px;
  font-size: 12px;
  transform: rotate(45deg);
}

.progressbar-con {
  width: 100%;
}

.progress-bar-80 {
  background-color: var(--primary);
  width: 82%;
  height: 4px;
  margin-top: -4px;
  position: relative;
}

.about-tab-link {
  color: var(--white);
  background-color: #0000;
  flex-direction: column;
  align-items: center;
  width: 33.33%;
  margin-bottom: -12px;
  padding-top: 20px;
  padding-bottom: 4px;
  font-size: 19px;
  line-height: 32px;
  transition: all .3s;
  display: flex;
  position: relative;
}

.about-tab-link.w--current {
  color: var(--white);
  background-color: #0000;
  padding-top: 20px;
  padding-bottom: 4px;
  font-size: 24px;
}

.portfolio-tab-link {
  border: 1px solid var(--primary);
  border-radius: var(--radius-large);
  background-color: #0000;
  padding: 10px 30px;
  transition-property: background-color;
}

.portfolio-tab-link:hover {
  background-color: var(--primary-yellow);
}

.portfolio-tab-link.w--current {
  background-color: var(--primary-yellow);
  color: var(--primary);
}

.portfolio-tab-link.all-projects {
  margin-right: auto;
}

.tabs-menu {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  justify-content: space-between;
  margin-bottom: 40px;
  display: flex;
}

.portfolio-grid-collection-item {
  width: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 30px #00000014;
}

.template-empty-state {
  color: var(--primary);
  background-color: #0000;
  font-family: Lato, sans-serif;
  font-size: 16px;
}

.services-collection-list {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  display: flex;
}

.services-collection-item {
  width: 31.3%;
  display: inline-block;
}

.services-list-image {
  transform: scale3d(1none, 1none, 1none);
  object-fit: cover;
  transform-style: preserve-3d;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  width: 100%;
  height: 280px;
  transition: transform .8s;
}

.services-list-image:hover {
  transform: scale(1.1);
}

.services-image-wrapper {
  position: relative;
}

.services-content-wrapper {
  border-style: none solid solid;
  border-width: 1px;
  border-color: var(--light-gray);
  border-bottom-right-radius: 16px;
  border-bottom-left-radius: 16px;
  padding: 20px;
}

.services-title {
  color: var(--primary);
  font-size: 24px;
  font-weight: 500;
  transition: color .3s;
}

.services-title:hover {
  color: var(--light-gray);
}

.services-category {
  color: var(--dark-gray);
  width: 100%;
  margin-bottom: 15px;
  transition: color .3s;
  display: inline-block;
}

.services-category:hover {
  color: var(--light-gray);
}

.services-image-link {
  border-top: 1px solid var(--light-gray);
  border-right: 1px solid var(--light-gray);
  border-left: 1px solid var(--light-gray);
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  width: 100%;
  margin-bottom: -8px;
  overflow: hidden;
}

.progress-bar-98 {
  background-color: var(--primary);
  width: 98%;
  height: 4px;
  margin-top: -4px;
  position: relative;
}

.nav-dropdown-column {
  width: 33%;
}

.mb-20 {
  margin-bottom: 20px;
}

.play-button-icon {
  z-index: 7;
  margin-left: 4px;
  font-family: "Fa solid 900", sans-serif;
  font-size: 20px;
  position: relative;
}

.play-button-hover {
  z-index: 10;
  border: 3px solid var(--white);
  border-radius: 50%;
  width: 94px;
  height: 94px;
  transition: all .3s;
  position: absolute;
  transform: scale(.85);
}

.play-button-hover:hover {
  transform: scale(1);
}

.secondary-button {
  background-color: var(--primary);
  color: var(--primary-yellow);
  letter-spacing: .5px;
  border-radius: 50px;
  justify-content: center;
  padding: 18px 35px;
  font-size: 18px;
  transition: background-color .4s, border-color .5s, color .5s;
}

.secondary-button:hover {
  background-color: var(--primary-yellow);
  color: var(--primary);
}

.home-buttons-wrapper {
  grid-column-gap: 30px;
  margin-top: 40px;
  display: flex;
}

.navbar-absolute {
  background-color: var(--primary);
  width: 100%;
  padding-top: 15px;
  padding-bottom: 15px;
  position: fixed;
  inset: 0% 0% auto;
}

.testimonials {
  padding-top: 80px;
  padding-bottom: 80px;
}

.blog-section-title {
  text-align: center;
  margin-bottom: 60px;
  padding-left: 15px;
  padding-right: 15px;
}

.map-wrapper {
  position: relative;
}

.map-wrapper.home-page {
  width: 100%;
  margin-bottom: 60px;
}

.contacts-wrapper-grid {
  grid-column-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  padding-left: 30px;
  padding-right: 30px;
}

.section-title-center {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 780px;
  margin-bottom: 60px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.courses-collection {
  width: 100%;
}

.testimonials-card {
  grid-row-gap: 20px;
  border-radius: var(--radius-medium);
  background-color: var(--primary-light);
  flex-direction: column;
  width: 33.33%;
  margin-top: 20px;
  padding: 40px 30px;
  display: flex;
  position: relative;
}

.testimonials-card.width {
  width: auto;
}

.flex-testimonials-wrapper {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  align-items: stretch;
  width: 100%;
  margin-top: 10px;
  display: flex;
}

.review-name {
  margin-bottom: 0;
}

.author-image {
  object-fit: cover;
  object-position: 50% 0%;
  border-radius: 50%;
  width: 72px;
  height: 72px;
  margin-right: 15px;
  display: block;
}

.testimonial-icon {
  color: var(--primary);
  font-family: "Fa solid 900", sans-serif;
  font-size: 32px;
  line-height: 1;
  position: absolute;
  top: -20px;
}

.testimonial-icon.light {
  color: var(--light-gray);
}

.testimonials-author-horizontal {
  align-items: center;
  display: flex;
}

.testimonials-wrapper {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  align-items: stretch;
  width: 100%;
  margin-top: 10px;
  display: flex;
}

.portfolio-masonry-tabs {
  width: 100%;
}

.top-banner-button-wrapper {
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  margin-top: 38px;
  display: flex;
  position: relative;
}

.about-img {
  object-fit: cover;
  position: absolute;
}

.about-img._1 {
  z-index: 2;
  width: 350px;
  inset: 0% 0% auto 12%;
}

.about-img._5 {
  z-index: 4;
  width: 350px;
  inset: 60% 0% auto 24%;
}

.about-img._3 {
  z-index: 1;
  width: 300px;
  inset: 19% 4% 0% auto;
}

.about-img._4 {
  z-index: 5;
  width: 220px;
  inset: 47% 30% 0% 50%;
}

.about-img._2 {
  z-index: 3;
  width: 300px;
  inset: 31% auto 0% 2%;
}

.subtitle {
  border-bottom: 2px solid #80808026;
  margin-bottom: 30px;
  margin-right: 0;
  padding-bottom: 4px;
  display: inline-block;
}

.our-services-wrap {
  grid-row-gap: 20px;
  flex-direction: column;
  align-items: center;
  width: 33.33%;
  display: flex;
}

.home-content-banner {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 65%;
  display: flex;
}

.central-alignment-heaading {
  text-align: center;
  margin-bottom: 75px;
}

.heading-wrapper {
  margin-top: 40px;
  margin-bottom: 30px;
}

.content-wrapper {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 190px;
  display: flex;
}

.content {
  border-radius: 5px;
  margin-bottom: 30px;
  margin-left: 15px;
  margin-right: 15px;
}

.industries-block-wrapper {
  background-color: #0000;
  border-radius: 12px;
  flex-direction: column;
  justify-content: space-around;
  width: 100%;
  max-width: 35vw;
  padding-bottom: 30px;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  position: relative;
}

.industries-block-wrapper:hover {
  box-shadow: 0 10px 20px #14173326;
}

.banner-image {
  object-fit: cover;
  width: 98%;
  height: 96%;
  position: absolute;
  inset: auto;
}

.banner-image:hover {
  color: var(--black\<deleted\|variable-66bd1c0d\>);
}

.home-team-item {
  text-align: center;
  flex-direction: column;
  align-items: center;
  width: 31%;
  position: relative;
}

.home-subscribe {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  text-align: center;
  flex-direction: column;
  align-items: center;
  max-width: 860px;
  display: flex;
}

.about-team-slide {
  width: 23%;
  margin-right: 30px;
}

.hero-testimonials-mask {
  height: auto;
}

.about-6-projects-item {
  text-align: center;
  object-fit: cover;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 370px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.section-with-blue-bg {
  background-color: var(--primary);
  justify-content: center;
  display: flex;
}

.nav-dropdown-link-line {
  background-color: var(--primary-yellow);
  width: 16px;
  height: 2px;
  margin-right: 15px;
  display: inline-block;
}

.search {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  width: 100%;
  margin-top: 20px;
  margin-bottom: 0;
  display: flex;
}

.subtitle-2 {
  color: #fc8e44;
  border-bottom: 2px solid #80808026;
  margin-bottom: 30px;
  margin-right: 0;
  padding-bottom: 4px;
  display: inline-block;
}

.dropdown-nav-link {
  color: #999;
  margin-left: -20px;
  padding: 5px 0;
  font-family: Poppins;
  transition: color .2s;
  display: flex;
}

.dropdown-nav-link:hover, .dropdown-nav-link.w--current {
  color: #004ae2;
}

.check-icon {
  margin-right: 10px;
  font-family: "Fa solid 900", sans-serif;
}

.check-icon.yellow {
  color: var(--primary-yellow);
}

.slider {
  background-color: #0000;
  width: 60%;
  height: 100%;
  margin-top: 0;
  overflow: hidden;
}

.gallery-image-link {
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
  overflow: hidden;
}

.home-gallery-img-link {
  justify-content: center;
  display: flex;
  position: relative;
  overflow: hidden;
}

.menu-wrap {
  align-items: center;
  display: flex;
}

.rich-text-style h2 {
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 32px;
}

.rich-text-style h3 {
  margin-top: 25px;
  margin-bottom: 15px;
  font-size: 28px;
}

.rich-text-style h4 {
  margin-top: 25px;
  margin-bottom: 15px;
  font-size: 24px;
}

.rich-text-style h5 {
  margin-top: 20px;
  font-size: 22px;
}

.rich-text-style h6 {
  margin-top: 20px;
}

.rich-text-style ul {
  background-color: var(--primary);
  margin-top: 20px;
  margin-bottom: 20px;
}

.rich-text-style img {
  border-radius: var(--radius-medium);
  margin-top: 20px;
  margin-bottom: 20px;
}

.home-banner-left-arrow {
  align-items: center;
  height: 40px;
  display: flex;
  inset: 0% auto 0% 2%;
}

.home-23-team-item {
  width: 33%;
}

.link {
  cursor: pointer;
  font-size: 18px;
  position: relative;
}

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

.brand-tablet {
  display: none;
}

.brand.w--current {
  margin-bottom: 19px;
  margin-left: 36px;
}

.home-banner {
  flex-direction: column;
  align-items: flex-start;
  width: 55%;
  padding-top: 60px;
  padding-bottom: 60px;
  display: flex;
}

.shop-item-price {
  font-size: 18px;
}

.shop-price-wrapper {
  grid-column-gap: 15px;
  flex-flow: wrap;
  justify-content: flex-start;
  margin-top: 15px;
  margin-bottom: 30px;
  display: flex;
}

.shop-item-price-on-sale {
  color: var(--dark-gray);
  font-size: 18px;
  text-decoration: line-through;
}

.arrow-icon {
  font-family: "Fa solid 900", sans-serif;
  font-size: 16px;
}

.shop-details-block {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  border-radius: var(--radius-medium);
  background-color: var(--primary-light);
  flex-direction: column;
  width: 100%;
  margin-top: 80px;
  padding: 40px 50px 50px;
  display: flex;
}

.shop-image-lightbox-link {
  width: 100%;
  height: 100%;
}

.image-preview {
  object-fit: cover;
  width: 100%;
  height: 400px;
}

.image-preview.shop {
  border-radius: var(--radius-medium);
}

.shop-images-list {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.shop-image-item {
  width: 100%;
}

.shop-text-wrapper {
  grid-row-gap: 8px;
  flex-direction: column;
  display: flex;
}

.style-guide-subtitle {
  margin-bottom: 20px;
}

.footer-rights-wrapper {
  flex-wrap: wrap;
  display: flex;
}

.collection-list-wrapper-services {
  width: 100%;
}

.position-relative {
  width: 400px;
  position: relative;
}

.testimonials-bg-element {
  background-color: var(--primary);
  height: 30%;
  position: absolute;
  inset: 0% 0% auto;
}

.coming-soon-form-main {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  flex-flow: wrap;
  justify-content: center;
  display: flex;
}

.success-message {
  background-color: var(--transparent);
  color: var(--white);
  text-align: center;
}

.success-message.black {
  color: var(--primary-dark);
}

.error-message {
  color: var(--white);
  text-align: center;
  background-color: #0000;
  padding: 0;
}

.error-message.black {
  color: var(--primary-dark);
}

.typography-hero-wrapper {
  grid-row-gap: 60px;
  flex-direction: column;
  justify-content: space-between;
  margin-top: 40px;
  display: flex;
}

.primary-yellow-style-guide {
  background-color: var(--primary-yellow);
  width: 75px;
  height: 75px;
  box-shadow: 0 0 15px #0000001a;
}

.primary-button-with-icon {
  background-color: var(--primary);
  border-radius: 50px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  padding: 5px;
  text-decoration: none;
  display: flex;
  position: relative;
  overflow: hidden;
}

.button-text-wrap {
  z-index: 2;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
}

.button-text-item {
  color: var(--white);
  text-transform: none;
  font-size: 18px;
  text-decoration: none;
}

.bolt-icon-wrapper {
  background-color: var(--primary-yellow);
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  display: flex;
}

.bolt-icon {
  z-index: 2;
  width: 20px;
  position: relative;
}

.bolt-block {
  flex-direction: column;
  height: 20px;
  display: flex;
  overflow: hidden;
}

.underline {
  background-color: var(--primary);
  width: 100%;
  height: 2px;
  position: absolute;
  bottom: 0%;
}

.underline.geen {
  background-color: var(--white);
}

.underline.geen-nav {
  background-color: var(--primary-yellow);
}

.icon-link {
  color: var(--primary);
  cursor: pointer;
  font-size: 18px;
  position: relative;
}

.icon-link.margin-top-small {
  margin-top: 20px;
}

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

.text-block-link.green {
  color: var(--primary-yellow);
}

.banner-mask {
  z-index: 2;
  width: 100%;
  height: 380px;
  min-height: 550px;
  position: relative;
}

.banner-mask:hover {
  color: var(--black\<deleted\|variable-66bd1c0d\>);
}

.without-top-margin {
  margin-top: 0;
}

.section-text-wrapper {
  text-align: center;
  flex-direction: column;
  align-items: center;
  max-width: 740px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

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

.slider-our-services {
  background-color: var(--transparent);
  width: 100%;
  height: 100%;
  padding-left: 2%;
  position: relative;
  overflow: hidden;
}

.slider-content-wrapper {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
  grid-template-columns: .5fr auto;
  grid-auto-columns: 1fr;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.arrow-circle {
  border: 1px solid var(--dark-gray);
  color: var(--dark-gray);
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  font-size: 20px;
  font-weight: 600;
  transition: border-color .3s, background-color .3s;
  display: flex;
  top: auto;
  bottom: 0%;
  left: 2%;
}

.arrow-circle:hover {
  border-color: var(--primary-yellow);
  background-color: var(--primary-yellow);
}

.arrow-circle.right {
  right: 79%;
}

.arrow-circle.slider {
  border-color: var(--primary-yellow);
  color: var(--primary-yellow);
  transition: color .3s, border-color .3s, background-color .3s;
  bottom: 4%;
  left: auto;
  right: 0%;
}

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

.arrow-circle.slider-left {
  border-color: var(--primary-yellow);
  color: var(--primary-yellow);
  transition: color .3s, border-color .3s, background-color .3s;
  bottom: 4%;
  left: auto;
  right: 12%;
}

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

.text-color-white {
  color: #fff;
}

.text-color-white.margin-bottom-large {
  margin-bottom: 60px;
}

.text-color-white.without-margin {
  margin-top: 0;
  margin-bottom: 0;
}

.text-color-white.footer-margin-bottom-small {
  margin-bottom: 20px;
}

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

.image-banner {
  object-fit: contain;
  border-radius: 15px;
  width: 100%;
  height: 100%;
}

.cms-slide-content {
  flex-direction: column;
  justify-content: flex-start;
  align-self: stretch;
  align-items: flex-start;
  font-weight: 400;
  display: flex;
}

.banner-slide-image {
  height: 550px;
  position: relative;
  overflow: hidden;
}

.banner-slide {
  margin-right: 15px;
}

.heading-banner {
  color: var(--primary);
}

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

.heading-banner.color-margin {
  color: var(--white);
  margin-top: 0;
}

.intro-paragraph {
  color: var(--primary);
  font-size: 36px;
  font-weight: 500;
  line-height: 1.45;
}

.span-avatar {
  background-image: url('../images/team-member-2_1team member 2.webp');
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: cover;
  border: 1px solid #afafaf80;
  border-radius: 50px;
  width: 3.5rem;
  height: 3.5rem;
  margin-bottom: -.8rem;
  margin-left: .5rem;
  margin-right: .5rem;
  display: inline-block;
  position: relative;
  bottom: -.075rem;
}

.span-avatar.two {
  background-image: url('../images/team-member-1_1team member 1.webp');
}

.span-avatar.third {
  background-image: url('../images/team-member-6_1team member 6.webp');
}

.span-name {
  background-color: var(--primary-yellow);
  color: var(--primary);
  text-align: left;
  border-radius: 2rem;
  justify-content: center;
  align-items: center;
  width: 6.8rem;
  margin-left: -1rem;
  padding: .2rem .875rem;
  font-size: 14px;
  line-height: 1.5;
  display: inline-block;
  position: absolute;
  bottom: 3rem;
  left: -1.2rem;
  right: 0;
}

.big-container {
  background-image: linear-gradient(204deg, #0b29364d, #0b29366b), url('../images/night.webp');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  border-radius: 30px;
  margin-left: 15px;
  margin-right: 15px;
  padding: 80px 20px;
}

.features-icon-image {
  color: var(--primary-yellow);
  text-align: center;
  margin-bottom: 20px;
  font-family: "Fa solid 900", sans-serif;
  font-size: 36px;
  line-height: 1.2em;
}

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

.features-card {
  border: 1px solid var(--light-gray);
  background-color: var(--dark-gray);
  border-radius: 24px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  padding: 30px;
  display: flex;
  position: relative;
  overflow: hidden;
  box-shadow: 1px 1px 20px #0000001a;
}

.features-card.primary {
  background-color: var(--primary);
}

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

.flex-horizontal-justify-start.gap {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
}

.clients-image:hover {
  opacity: 1;
}

.clients-large-wrapper {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
}

.clients-xsmall-wrapper {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  border: 1px solid var(--light-gray);
  background-color: var(--dark-gray);
  border-radius: 70px;
  justify-content: center;
  align-items: center;
  padding: 13px 30px;
  display: flex;
}

.clients-xsmall-wrapper.white {
  background-color: var(--white);
}

.solutions-icon {
  color: var(--primary-yellow);
  text-align: center;
  font-family: "Fa solid 900", sans-serif;
  font-size: 28px;
  line-height: 1.2em;
}

.next-slide-image {
  opacity: .41;
  justify-content: center;
  align-items: center;
  width: 20%;
  display: flex;
  position: relative;
  overflow: hidden;
}

.image-next {
  object-fit: cover;
  object-position: 0% 50%;
  border-radius: 15px;
  width: 100%;
  height: 500px;
}

.inner-wrap {
  width: 100%;
}

.margin-bottom-small {
  margin-bottom: 20px;
}

.display-flex-horizontal {
  display: flex;
}

.button-hover {
  z-index: 10;
  border: 3px solid var(--primary-yellow);
  border-radius: 50%;
  width: 94px;
  height: 94px;
  transition: all .3s;
  position: absolute;
  transform: scale(.85);
}

.button-hover:hover {
  transform: scale(1);
}

.flex-horizontal-align-center {
  align-items: center;
  display: flex;
}

.flex-horizontal-align-center.mobile-display-block {
  align-items: flex-start;
  position: relative;
}

.video-center-wrapper {
  justify-content: center;
  align-items: center;
  width: 95px;
  height: 95px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: absolute;
  top: 45%;
  left: 0%;
  right: 0%;
}

.video-right-wrapper {
  justify-content: flex-start;
  width: 50%;
  padding-top: 60px;
  padding-left: 15px;
  display: flex;
}

.video-image-medium {
  object-fit: cover;
  height: 100%;
}

.video-left-wrapper {
  justify-content: flex-end;
  width: 50%;
  padding-right: 15px;
  display: flex;
}

.video-grid-wrapper {
  grid-column-gap: 60px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1.25fr 1fr;
  width: 100%;
}

.flex-vertical-justify-center {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.play-button-2 {
  z-index: 5;
  background-color: var(--primary-yellow);
  border-radius: 50%;
  width: 80px;
  height: 80px;
  position: absolute;
}

.quote-top-wrap {
  grid-row-gap: 20px;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.autor-photo {
  background-image: url('../images/Team-Member-5.jpg');
  background-position: 50% 0;
  background-size: cover;
  border-radius: 100%;
  width: 80px;
  height: 80px;
}

.autor-photo.autor-2 {
  background-image: url('../images/jayson-hinrichsen-cw92WXzhrmE-unsplash_1jayson-hinrichsen-cw92WXzhrmE-unsplash.webp');
}

.autor-photo.autor-4 {
  background-image: url('../images/vicky-hladynets-C8Ta0gwPbQg-unsplash_1vicky-hladynets-C8Ta0gwPbQg-unsplash.webp');
  background-position: 50%;
}

.autor-photo.autor-3 {
  background-image: url('../images/luis-villasmil-Z4rqvRpRj38-unsplash_1luis-villasmil-Z4rqvRpRj38-unsplash.webp');
}

.testimonials-slider-wrapper {
  z-index: 10;
  background-color: #0000;
  width: 100%;
  max-width: 650px;
  height: auto;
  margin-right: auto;
  position: relative;
}

.slider-title-name {
  color: var(--primary-yellow);
  margin-top: 0;
}

.lovely-visitor {
  color: #fff;
  margin-bottom: 0;
}

.section-testimonials {
  background-image: linear-gradient(113deg, var(--primary) 44%, #0f35900d), url('../images/map_1map.webp');
  background-position: 0 0, 100%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  background-attachment: scroll, scroll;
  border-radius: 30px;
  margin-left: 15px;
  margin-right: 15px;
  padding: 80px 20px;
  position: relative;
}

.testimonials-content {
  grid-row-gap: 30px;
  flex-direction: column;
  flex: 1;
  display: flex;
}

.testimonials-item-block {
  grid-column-gap: 50px;
  grid-row-gap: 40px;
  flex-direction: column;
  display: flex;
}

.testimonials-text {
  color: var(--white);
  font-size: 24px;
}

.display-none {
  display: none;
}

.list {
  grid-row-gap: 10px;
  color: #9e9e9e;
  -webkit-text-fill-color: inherit;
  background-color: #0000;
  background-clip: border-box;
  margin-top: 10px;
  padding-left: 0;
  overflow: hidden;
}

.list.margin-space-small {
  margin-top: 30px;
  margin-bottom: 20px;
}

.list-item {
  color: var(--primary-dark);
  line-height: 1.5em;
}

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

.block-button {
  margin-top: 30px;
  margin-right: 5px;
}

.block-button.extra-space {
  padding-bottom: 38px;
}

.left-slide-content {
  flex-direction: column;
  justify-content: flex-start;
  align-self: stretch;
  align-items: flex-start;
  width: 55%;
  margin-right: 40px;
  padding-bottom: 69px;
  font-weight: 400;
  display: flex;
}

.pricing-icon-image {
  color: var(--dark-gray);
  text-align: center;
  margin-bottom: 20px;
  font-family: "Fa solid 900", sans-serif;
  font-size: 36px;
  line-height: 1.2em;
}

.recommended {
  background-color: var(--primary);
  border-radius: 50px;
  padding: 10px 20px;
  position: absolute;
  top: -18px;
}

.margin-botton-large {
  margin-bottom: 60px;
}

.logo-image-company {
  filter: invert();
  align-self: flex-start;
  height: 40px;
}

.banner-form {
  margin-bottom: 10px;
}

.banner-form-text-field {
  border: 1px solid var(--dark-gray);
  background-color: var(--white);
  border-radius: 50px;
  height: auto;
  margin-bottom: 0;
  padding: 16px 70px 16px 28px;
  font-size: 18px;
  line-height: 1.5em;
}

.banner-form-text-field:focus {
  border-color: var(--primary-yellow);
}

.banner-form-text-field::placeholder {
  color: var(--dark-gray);
  font-size: 18px;
  line-height: 1.5em;
}

.banner-form-button {
  background-color: var(--primary-yellow);
  background-image: url('../images/flashlight-fill-1.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: auto;
  border-radius: 50px;
  width: 52px;
  height: 52px;
  padding: 16px;
  transition: background-color .3s;
  position: absolute;
  inset: 5px 5px 5px auto;
}

.banner-form-button:hover {
  background-color: var(--light-gray);
}

.paragraph-xsmall {
  color: var(--white);
  font-size: 16px;
  line-height: 1.2em;
}

.underlined-link {
  color: var(--primary-yellow);
  background-image: none;
  background-repeat: repeat;
  background-size: auto;
  background-attachment: scroll;
  font-size: 16px;
  line-height: 1.2em;
}

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

.cta-description {
  justify-content: center;
  width: 70%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.book-contacts-input {
  border: 1px solid var(--light-gray);
  background-color: #ffffff12;
  border-radius: 50px;
  height: auto;
  margin-bottom: 20px;
  padding: 16px 18px;
  font-size: 16px;
  transition: all .2s;
}

.book-contacts-input:focus {
  border: 1px solid var(--primary);
}

.book-contacts-input::placeholder {
  color: var(--dark-gray);
  font-size: 16px;
}

.news-info-content {
  text-align: left;
  flex-direction: column;
  flex: 1;
  justify-content: flex-start;
  align-items: flex-start;
  width: 55%;
  padding: 40px 20px 40px 40px;
  display: flex;
}

.select-field {
  border: 1px solid var(--light-gray);
  color: var(--dark-gray);
  background-color: #fff0;
  border-radius: 50px;
  height: auto;
  margin-bottom: 0;
  padding: 16px 18px;
  font-size: 16px;
}

.select-field:active {
  color: var(--primary-dark);
  font-size: 16px;
}

.select-field:focus {
  border-color: var(--primary);
  color: var(--primary-dark);
}

.select-field:focus-visible, .select-field[data-wf-focus-visible] {
  color: var(--primary-dark);
}

.form-book-contacts {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 420px;
  margin-bottom: 0;
  display: flex;
}

.subscribe-title {
  text-align: left;
  text-transform: none;
  width: 100%;
  margin-top: 0;
}

.book-contacts {
  width: 100%;
}

.field-label {
  color: var(--dark-gray);
  margin-bottom: 10px;
  font-weight: 500;
}

.hero-wrapper {
  border-radius: var(--radius-large);
  background-image: linear-gradient(90deg, #0b2936d9 15%, #0b29361a 82%), url('../images/night.webp');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  align-items: center;
  width: 100%;
  height: 100%;
  padding-top: 100px;
  padding-bottom: 100px;
  display: flex;
  overflow: hidden;
}

.description-banner {
  width: 90%;
  margin-top: 10px;
}

.secondary-button-with-icon {
  background-color: var(--dark-gray);
  border-radius: 50px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  padding: 5px;
  text-decoration: none;
  display: flex;
  position: relative;
  overflow: hidden;
}

.slider-image-block {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex: none;
  justify-content: center;
  width: 50%;
  display: flex;
}

.nav-item-with-line-block {
  position: relative;
}

.nav-text-link {
  margin: 10px 15px;
  transition: all .3s;
  position: relative;
}

.nav-text-link:hover {
  color: #fff;
}

.cart-block {
  display: flex;
}

.cart-button {
  background-color: var(--transparent);
}

.cart-button:hover {
  color: var(--primary-yellow);
}

.cart-quantity {
  color: var(--primary);
  margin-top: -20px;
  margin-left: -5px;
}

.button-tablet-block {
  margin-top: 40px;
  display: none;
}

.footer-copyright {
  color: var(--primary-light);
  width: 100%;
  font-size: 14px;
  display: inline;
}

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

.footer-logo-holder {
  color: #fff;
  margin-bottom: 10px;
}

.footer-logo-holder.w--current {
  color: #fff;
  padding-left: 0;
}

.footer-icon-links {
  border: 1px solid var(--primary-yellow);
  background-color: var(--transparent);
  color: var(--primary-yellow);
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  font-family: "Fa Brands 400 (6.4.2)", sans-serif;
  font-size: 18px;
  line-height: 15px;
  transition: background-color .3s;
  display: flex;
}

.footer-icon-links:hover {
  background-color: var(--primary-yellow);
  color: var(--primary);
}

.footer-wrapper {
  grid-column-gap: 40px;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 60px;
  display: flex;
}

.footer-links-wrapper {
  flex-direction: column;
  align-items: flex-start;
  width: 20%;
  display: flex;
}

.footer-links-wrapper.text-align-left-half-width {
  text-align: left;
  justify-content: center;
  align-items: center;
  width: 15%;
}

.footer-links-large-wrapper {
  flex-direction: column;
  align-items: flex-start;
  width: 25%;
  display: flex;
}

.nav-base-container-full-width {
  z-index: 100;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
  position: relative;
}

.footer-brand-description {
  color: var(--white);
  text-align: left;
}

.footer-contacts-icon {
  color: var(--primary-yellow);
  margin-right: 15px;
  font-family: "Fa solid 900", sans-serif;
}

.footer-rights {
  color: #f4f4f4;
  font-size: 14px;
}

.footer-logo-white {
  width: auto;
  max-width: 100%;
}

.all-contacts-wrapper {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.footer-logo-wrapper {
  grid-row-gap: 10px;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.footer-copyright-link {
  color: var(--primary-light);
  letter-spacing: .2px;
  margin-right: 5px;
  font-size: 14px;
  text-decoration: none;
  transition: all .2s;
  display: inline;
}

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

.work-hours {
  color: var(--white);
  text-align: left;
  max-width: 200px;
  margin-bottom: 0;
  font-size: 16px;
}

.footer-links {
  color: var(--white);
  transition: color .3s;
}

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

.footer-social-icons-wrapper {
  grid-column-gap: 30px;
  grid-row-gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
  display: flex;
}

.footer-social-icons-wrapper.small-gap-mobile-center {
  grid-column-gap: 15px;
}

.footer-brand-wrapper {
  flex-direction: column;
  align-items: flex-start;
  width: 30%;
  display: flex;
}

.footer-text-link {
  margin-top: 10px;
  margin-bottom: 10px;
  transition: all .3s;
  position: relative;
}

.footer-text-link:hover {
  color: #fff;
}

.success-message-black {
  background-color: var(--transparent);
  text-align: center;
}

.success-message-black.center {
  margin-top: auto;
  margin-bottom: auto;
}

.error-message-black {
  text-align: center;
  background-color: #0000;
  padding: 0;
}

.footer-second {
  background-color: var(--primary);
  text-align: center;
  align-items: flex-start;
  padding-top: 130px;
  padding-bottom: 60px;
}

.list-2 {
  background-color: var(--primary);
}

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

.button.is-secondary {
  color: var(--\<unknown\|relume-variable-color-neutral-1\>);
  background-color: #0000;
}

.button.is-link {
  color: var(--\<unknown\|relume-variable-color-neutral-1\>);
  background-color: #0000;
  border-style: none;
  padding: .25rem 0;
  line-height: 1;
  text-decoration: none;
}

.description-service {
  width: 95%;
}

.background-top {
  background-color: var(--primary);
  height: 70%;
  position: absolute;
  inset: 0% 0% auto;
}

.home-banner-mask-copy {
  justify-content: center;
  align-items: center;
  width: 45%;
  height: 100%;
  min-height: 500px;
  display: flex;
  position: relative;
}

.cta-mask {
  z-index: 2;
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: relative;
}

.cta-image {
  object-fit: cover;
  width: 95%;
  height: 96%;
  position: absolute;
  inset: auto;
}

.cta-banner-mask {
  justify-content: center;
  align-items: center;
  width: 45%;
  height: 100%;
  min-height: 520px;
  display: flex;
  position: relative;
}

.cta-wrapper {
  background-color: var(--primary-light);
  border-radius: 25px;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  display: flex;
  overflow: hidden;
}

.home-banner-wrapper {
  grid-column-gap: 40px;
  flex: 1;
  align-items: center;
  padding-left: 10px;
  display: flex;
}

.services-image-wrap {
  border-radius: var(--radius-large);
  width: 100%;
  height: 450px;
  margin-top: 60px;
  overflow: hidden;
}

.services-image-wrap.margin-botton {
  margin-top: 0;
  margin-bottom: 60px;
}

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

.home-our-services-wrapper {
  grid-column-gap: 70px;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.title-services-wrap {
  text-align: center;
  flex-direction: column;
  width: 80%;
  display: flex;
}

.home-btn-wrap {
  margin-top: 40px;
  display: flex;
}

.without-margin {
  margin-top: 0;
  margin-bottom: 0;
}

.content-banner {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 85%;
  display: flex;
}

.hero-image-wrapper {
  border-radius: var(--radius-large);
  background-image: linear-gradient(to right, #0b2936d9 15%, #0b29361a 82%);
  width: 100%;
  height: 350px;
  min-height: 350px;
  margin-top: 60px;
  position: relative;
  overflow: hidden;
}

.hero-image-wrapper.template {
  margin-top: 60px;
}

.image-home-banner {
  object-fit: cover;
  border-radius: 15px;
  width: 100%;
}

.background-block {
  background-image: linear-gradient(227deg, #0b2936e6, #0b29364d);
  position: absolute;
  inset: 0%;
}

.inner-content-banner {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 65%;
  display: flex;
}

.inner-wrapper {
  border-radius: var(--radius-large);
  background-image: linear-gradient(90deg, #0b2936d9 30%, #0b29368c 82%, #0b29361a), url('../images/night.webp');
  background-position: 0 0, 50% 30%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  align-items: center;
  width: 100%;
  height: 100%;
  padding-top: 80px;
  padding-bottom: 80px;
  display: flex;
  overflow: hidden;
}

.inner-wrapper.our-team {
  background-image: linear-gradient(90deg, #0b2936d9 30%, #0b29368c 100%, #0b29361a), url('../images/night.webp');
}

.inner-wrapper.services {
  background-image: linear-gradient(to right, #0b2936d9 30%, #0b29368c 100%, #0b29361a), url('../images/electrician-1920.webp');
}

.inner-wrapper.pricing {
  background-image: linear-gradient(to right, #0b2936d9 30%, #0b29368c 82%, #0b29361a), url('../images/electrician-big.webp');
}

.inner-wrapper.faq {
  background-image: linear-gradient(to right, #0b2936d9 30%, #0b29368c 82%, #0b29361a), url('../images/male-electrician-8works.webp');
}

.inner-wrapper.contact-us {
  background-image: linear-gradient(90deg, #0b2936d9 30%, #0b29368c 100%, #0b29361a), url('../images/team_1.webp');
  background-position: 0 0, 50%;
}

.inner-wrapper.blog {
  background-image: linear-gradient(to right, #0b2936d9 30%, #0b29368c 82%, #0b29361a), url('../images/male-electrician-works-switchboard.webp');
  min-height: 350px;
}

.inner-wrapper.blog-categories {
  background-image: linear-gradient(to right, #0b2936d9 30%, #0b29368c 100%, #0b29361a), url('../images/man-electrical-technician.webp');
  background-position: 0 0, 50%;
  min-height: 350px;
}

.inner-wrapper.shop {
  background-image: linear-gradient(to right, #0b2936d9 30%, #0b29368c 100%, #0b29361a), url('../images/male-electrician-worksdd.webp');
  min-height: 350px;
}

.inner-wrapper.shop-categories {
  background-image: linear-gradient(to right, #0b2936d9 30%, #0b29368c 100%, #0b29361a), url('../images/female-turning-light.webp');
  min-height: 350px;
}

.team-member-image {
  object-fit: cover;
  width: 100%;
  overflow: hidden;
}

.card-content-wrapper {
  background-color: var(--light-gray);
  -webkit-backdrop-filter: blur(11px);
  backdrop-filter: blur(11px);
  text-align: center;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 10px 30px 20px;
  display: flex;
  position: absolute;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.title-container {
  width: 50%;
}

.description-container {
  justify-content: flex-end;
  align-items: flex-end;
  width: 50%;
  padding-bottom: 10px;
  display: flex;
}

.text-container {
  grid-column-gap: 40px;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 40px;
  display: flex;
}

.our-team-grid {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-columns: 1fr 1fr 1fr;
  width: 100%;
}

.background-load-bottom {
  background-color: #fff;
  height: 50%;
  display: none;
  position: absolute;
  inset: auto 0% 0%;
}

.team-social-icon {
  color: var(--primary-dark);
  font-family: "Fa Brands 400 (6.4.2)", sans-serif;
  font-size: 18px;
  line-height: 1;
}

.team-social-icon:hover {
  color: var(--primary-yellow);
}

.team-member-card {
  border-radius: 10px;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.employee-position {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 18px;
}

.member-socials-wrap {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  justify-content: center;
  margin-top: 20px;
  display: flex;
}

.background-load-top {
  z-index: 25;
  background-color: #fff;
  height: 50%;
  display: none;
  position: absolute;
  inset: 0% 0% auto;
}

.team-member-card-image {
  color: #28382a;
  object-fit: cover;
  border-radius: 10px;
  min-width: 100%;
  height: 400px;
}

.inner-button-wrapper {
  grid-column-gap: 30px;
  margin-top: 50px;
  display: flex;
}

.background-botton {
  background-color: var(--primary);
  height: 75%;
  position: absolute;
  inset: auto 0% 0%;
}

.flex-justify-start {
  justify-content: flex-start;
  display: flex;
}

.category {
  color: var(--primary-yellow);
  text-transform: uppercase;
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 400;
  transition: color .3s;
}

.category:hover {
  color: var(--primary-light);
}

.primary-text {
  color: var(--primary-yellow);
}

.image-faq {
  border-radius: var(--radius-large);
  object-fit: cover;
  width: 100%;
  height: 700px;
}

.paragraph-faq {
  margin-bottom: 30px;
}

.text-contacts-input {
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-medium);
  background-color: #ffffff12;
  min-width: 100%;
  max-width: 100%;
  height: auto;
  min-height: 150px;
  max-height: 300px;
  margin-bottom: 0;
  padding: 16px 18px;
  font-size: 16px;
  transition: all .2s;
}

.text-contacts-input:focus {
  border: 1px solid var(--primary);
}

.text-contacts-input::placeholder {
  color: var(--dark-gray);
  font-size: 16px;
}

.book-contact-us {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: auto;
  min-height: 480px;
  margin-bottom: 0;
  display: flex;
}

.select-field-contact {
  border: 1px solid var(--light-gray);
  color: var(--dark-gray);
  background-color: #fff0;
  border-radius: 50px;
  height: auto;
  margin-bottom: 20px;
  padding: 16px 18px;
  font-size: 16px;
}

.select-field-contact:active {
  color: var(--primary-dark);
  font-size: 16px;
}

.select-field-contact:focus {
  border-color: var(--primary);
  color: var(--primary-dark);
}

.select-field-contact:focus-visible, .select-field-contact[data-wf-focus-visible] {
  color: var(--primary-dark);
}

.collection-list-wrapper-blog {
  width: 100%;
}

.blog-collection-list {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-wrap: wrap;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  width: 100%;
  display: flex;
}

.blog-collection-item {
  width: 31.3%;
  display: inline-block;
}

.blog-list-content-wrapper {
  border-style: none solid solid;
  border-width: 1px;
  border-color: var(--light-gray);
  border-bottom-right-radius: 16px;
  border-bottom-left-radius: 16px;
  padding: 20px;
}

.blog-title {
  color: var(--primary);
  font-size: 24px;
  font-weight: 500;
  transition: color .3s;
}

.blog-title:hover {
  color: var(--light-gray);
}

.blog-category {
  color: var(--dark-gray);
  width: 100%;
  margin-bottom: 15px;
  transition: color .3s;
  display: inline-block;
}

.blog-category:hover {
  color: var(--light-gray);
}

.shop-category {
  color: var(--dark-gray);
  width: 100%;
  margin-bottom: 15px;
  transition: color .3s;
  display: inline-block;
}

.shop-category:hover {
  color: var(--light-gray);
}

.flex-justify-end {
  flex-direction: row;
  justify-content: flex-end;
  align-items: flex-end;
  display: flex;
}

.collection-list-wrapper-shop {
  width: 100%;
}

.our-shop-collection-list {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-wrap: wrap;
  justify-content: flex-start;
  width: 100%;
  display: flex;
}

.our-shop-collection-list.center {
  justify-content: center;
}

.our-shop-collection-item {
  width: 31.3%;
  display: inline-block;
}

.shop-image-wrapper {
  position: relative;
}

.shop-image-link {
  border-top: 1px solid var(--light-gray);
  border-right: 1px solid var(--light-gray);
  border-left: 1px solid var(--light-gray);
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  width: 100%;
  margin-bottom: -8px;
  overflow: hidden;
}

.shop-content-wrapper {
  border-style: none solid solid;
  border-width: 1px;
  border-color: var(--light-gray);
  border-bottom-right-radius: 16px;
  border-bottom-left-radius: 16px;
  padding: 20px;
}

.shop-title {
  color: var(--primary);
  font-size: 28px;
  font-weight: 500;
  transition: color .3s;
}

.shop-title:hover {
  color: var(--light-gray);
}

.default-state {
  margin-bottom: 0;
}

.out-of-stock-state, .error-state {
  background-color: var(--white);
}

.add-to-cart {
  flex-direction: column;
  align-items: flex-end;
  display: flex;
}

.cart-container {
  border-radius: 32px;
}

.apple-pay, .pay-with-browser {
  border-radius: 50px;
  height: 60px;
}

.cart-quantity-2 {
  border-color: var(--light-gray);
}

.cart-quantity-2:hover, .cart-quantity-2:focus {
  border-color: var(--primary);
}

.image-cart {
  border-radius: var(--radius-medium);
  object-fit: cover;
  width: 90px;
  height: 90px;
}

.icon-pointer {
  cursor: pointer;
}

.link-hover {
  transition: color .3s;
}

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

.text-block-cart {
  color: var(--primary);
  font-size: 18px;
  font-weight: 600;
}

.subtotal {
  color: var(--primary);
  font-size: 20px;
}

.hover-slider-arrow {
  border: 1px solid #ffffff80;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 10vw;
  max-width: 120px;
  height: 10vw;
  max-height: 120px;
  display: flex;
}

.projects-arrow {
  z-index: 15;
  justify-content: flex-end;
  align-items: flex-end;
  width: 50%;
  min-height: 100vh;
  margin-top: auto;
  margin-bottom: auto;
  display: flex;
  top: 0;
  bottom: 0;
  overflow: visible;
}

.testimonial-slide {
  z-index: 20;
  position: relative;
}

.images-collection-item {
  width: 50%;
  display: flex;
}

.default-state-details {
  grid-column-gap: 30px;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0;
  display: flex;
}

.main-image-product {
  border-radius: var(--radius-small);
  object-fit: cover;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.buy-now-button {
  display: none;
}

.product-item-price-on-sale {
  color: var(--dark-gray);
  margin-top: 10px;
  font-size: 22px;
  text-decoration: line-through;
}

.field-label-products {
  margin-bottom: 5px;
  font-weight: 700;
}

.product-price-wrapper {
  grid-column-gap: 15px;
  flex-flow: wrap;
  display: flex;
}

.zoom-modal {
  z-index: 10;
  background-color: #fff;
  border-radius: 50%;
  width: 150px;
  height: 150px;
  position: relative;
  left: auto;
  right: auto;
  overflow: hidden;
  box-shadow: 0 5px 50px #333;
}

.product-image-zoomed {
  width: 100%;
  padding-top: 10px;
  transform: scale(2);
}

.details-content-block {
  grid-row-gap: 30px;
  flex-direction: column;
  width: 50%;
  display: flex;
}

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

.buttons-wrapper {
  grid-column-gap: 30px;
  grid-row-gap: 15px;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  width: 200px;
  display: flex;
}

.block-quantity {
  width: 100%;
}

.error-state-2 {
  background-color: #0000;
  margin-top: 0;
}

.heading-product {
  margin-top: 0;
  font-size: 54px;
}

.images-collection-list {
  grid-column-gap: 20px;
  display: flex;
}

.product-details-wrapper {
  grid-column-gap: 50px;
  flex-direction: row;
  width: 100%;
  display: flex;
  position: relative;
}

.quantity-block {
  border-top-style: none;
  border-right-style: none;
  border-bottom-color: var(--light-gray);
  background-color: #0000;
  border-left-style: none;
  border-radius: 0;
  width: 100%;
  height: 56px;
}

.quantity-block:hover {
  border-bottom-color: var(--primary);
}

.block-price-products {
  position: relative;
}

.empty-state-event {
  background-color: #0000;
}

.product-item-price {
  margin-top: 10px;
  font-size: 22px;
  font-weight: 500;
}

.small-image {
  border-radius: var(--radius-small);
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.lightbox-small-image {
  width: 100%;
  height: 150px;
}

.lightbox-main-image {
  width: 100%;
  height: 350px;
  position: relative;
}

.product-details-category {
  border: 1px solid var(--primary);
  border-radius: var(--radius-large);
  text-transform: uppercase;
  background-color: #fff;
  margin-top: 15px;
  margin-bottom: 5px;
  padding: 8px 20px;
  font-size: 14px;
  transition: background-color .3s, color .3s;
  display: inline-block;
}

.product-details-category:hover {
  background-color: var(--primary-yellow);
  color: var(--primary);
}

.more-image-block {
  grid-row-gap: 20px;
  flex-direction: column;
  width: 50%;
  height: 100%;
  display: flex;
  position: sticky;
  top: 40px;
}

.out-of-stock-state-2 {
  background-color: #0000;
  margin-top: 0;
}

.zoom-wrapper {
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  inset: 0%;
}

.button-primary {
  grid-column-gap: 5px;
  text-align: center;
  -webkit-text-fill-color: inherit;
  background-color: #0000;
  background-image: none;
  background-clip: border-box;
  border: 1px solid #fff3;
  border-radius: 0;
  justify-content: center;
  height: auto;
  min-height: 49px;
  padding: 15px 20px;
  transition: all .35s;
  display: flex;
  position: relative;
  overflow: hidden;
}

.button-primary:hover {
  color: #fff;
}

.product-item {
  cursor: pointer;
  flex-direction: column;
  display: flex;
  position: relative;
}

.product-item.right {
  z-index: 70;
  float: right;
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: flex;
}

.h2-title-tag {
  margin-top: 0;
  margin-bottom: 0;
}

.product-1-item {
  cursor: pointer;
  flex-direction: column;
  display: flex;
  position: relative;
}

.product-1-item.right {
  z-index: 70;
  float: right;
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: flex;
}

.product-item-003 {
  z-index: 70;
  cursor: pointer;
  flex-direction: column;
  display: flex;
  position: relative;
}

.licensing-image-link-2 {
  justify-content: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
  overflow: hidden;
}

.licensing-image-link-2:hover {
  opacity: 1;
}

.hover-circle-wrapper {
  z-index: 10;
  background-color: #0000;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 100%;
  height: 100%;
  max-height: 100%;
  padding: 60px;
  display: flex;
  position: absolute;
  inset: 0%;
}

.outline-hover-circle {
  z-index: 10;
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  border: 1px solid #fff3;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  display: flex;
  position: relative;
}

.shop-images-wrapper {
  margin-top: 40px;
}

.checkout-form {
  background-color: var(--white);
  min-height: auto;
  padding-top: 0;
  padding-bottom: 0;
}

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

.order-item-wrap {
  flex: 1;
  display: flex;
}

.paypal-checkout-form, .order-confirmation {
  background-color: var(--white);
  min-height: auto;
  padding-top: 0;
  padding-bottom: 0;
}

.order-items, .order-summary {
  margin-bottom: 0;
}

.text-block-404 {
  z-index: 2;
  color: var(--primary);
  font-size: 180px;
  font-weight: 700;
  line-height: 1.2em;
  position: relative;
}

.order-field {
  transition: border-color .3s;
}

.order-field:focus {
  border-color: var(--primary);
}

.nav-dropdown-icon-desktop {
  color: #fff;
  margin-left: 5px;
  margin-right: 0;
  font-size: 14px;
  display: block;
  position: relative;
}

.hire-popup {
  z-index: 1000;
  background-color: #1c276d;
  border-radius: 4px;
  width: 100%;
  max-width: 290px;
  position: fixed;
  inset: auto auto 5px 5px;
}

.hire-popup-wrap {
  grid-row-gap: 10px;
  flex-direction: column;
  padding: 15px;
  display: flex;
  position: relative;
}

.hire-popup-wrap:hover {
  color: #fff;
}

.hire-paragraph {
  color: var(--white);
  max-width: 93%;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.3em;
}

.hire-link {
  color: #fff;
  letter-spacing: 0;
  text-transform: none;
  -webkit-text-fill-color: inherit;
  background-image: none;
  background-clip: border-box;
  border-bottom: 0 #0000;
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.2em;
  text-decoration: underline;
  transition-property: none;
}

.hire-link:hover {
  opacity: 1;
  color: #fff;
  text-transform: none;
  border-bottom-color: #0000;
}

.hire-buttons-wrap {
  grid-column-gap: 20px;
  display: flex;
}

.hire-buttons {
  color: #fff;
  text-align: center;
  letter-spacing: 0;
  text-transform: none;
  -webkit-text-fill-color: inherit;
  background-image: none;
  background-clip: border-box;
  border: 1px solid #fff;
  border-radius: 4px;
  padding: 5px 15px;
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.2em;
}

.hire-buttons:hover {
  color: var(--white);
  border-color: #fff;
}

.hire-popup-close {
  cursor: pointer;
  padding: 10px 20px;
  position: absolute;
  top: -7px;
  right: -14px;
}

.close-popup-image {
  width: 12px;
  height: 12px;
}

.more-templates {
  z-index: 1000;
  color: #000;
  letter-spacing: 0;
  text-transform: none;
  -webkit-text-fill-color: inherit;
  background-color: #fff;
  background-image: none;
  background-clip: border-box;
  border: 1px solid #e4e4e4;
  border-radius: 4px;
  width: 140px;
  padding: 6px;
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 14px;
  transition-property: none;
  display: flex;
  position: fixed;
  inset: auto 12px 48px auto;
}

.more-templates:hover {
  opacity: 1;
  color: #000;
  border-color: #e4e4e4;
}

.buy-now-webflow-icon {
  margin-right: 8px;
}

.buy-this-template {
  z-index: 1000;
  color: #000;
  letter-spacing: 0;
  text-transform: none;
  -webkit-text-fill-color: inherit;
  background-color: #fff;
  background-image: none;
  background-clip: border-box;
  border: 1px solid #e4e4e4;
  border-radius: 4px;
  padding: 6px;
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 14px;
  transition-property: none;
  display: flex;
  position: fixed;
  inset: auto 12px 12px auto;
}

.buy-this-template:hover {
  opacity: 1;
  color: #000;
  border-color: #e4e4e4;
}

.text-orange {
  color: #fff;
}

.spacing-small {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.container {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: flex;
}

.text-block-cart-2 {
  color: #0b2936;
  font-size: 18px;
  font-weight: 600;
}

.image-cart-2 {
  object-fit: cover;
  border-radius: 16px;
  width: 90px;
  height: 90px;
}

.cart-quantity-3 {
  border-color: #799597;
}

.cart-quantity-3:hover, .cart-quantity-3:focus {
  border-color: #0b2936;
}

.error-state-3 {
  background-color: #fff;
}

.cart-button-2 {
  background-color: #fff0;
}

.cart-button-2:hover {
  color: #cefe02;
}

.cart-quantity-4 {
  color: #0b2936;
  margin-top: -20px;
  margin-left: -5px;
}

.link-hover-2 {
  transition: color .3s;
}

.link-hover-2:hover {
  color: #799597;
}

.primary-button-2 {
  color: #0b2936;
  text-align: center;
  letter-spacing: .5px;
  text-transform: none;
  background-color: #cefe02;
  border-radius: 50px;
  padding: 18px 35px;
  font-size: 18px;
  transition: background-color .5s, color .5s;
  display: inline-block;
}

.primary-button-2:hover {
  opacity: 1;
  color: #cefe02;
  background-color: #0b2936;
}

.primary-button-2.full {
  width: 100%;
}

.subtotal-2 {
  color: #0b2936;
  font-size: 20px;
}

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

.code-embed {
  max-width: 99.9999%;
}

.div-block-2 {
  width: 100%;
  max-width: 100%;
}

.rl-styleguide_empty-space {
  z-index: -1;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding: 2rem;
  display: flex;
  position: relative;
}

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

.rl-styleguide_background-color-list {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
}

.text-color-secondary {
  color: #000;
}

.icon-height-custom1 {
  height: 1.25rem;
}

.rl-styleguide_item {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  place-content: start;
  place-items: start;
  padding-bottom: 1rem;
  display: grid;
}

.rl-styleguide_item.is-stretch {
  grid-row-gap: 1rem;
  justify-items: stretch;
}

.text-weight-bold {
  font-weight: 700;
}

.spacer-xxlarge {
  width: 100%;
  padding-top: 5rem;
}

.padding-xlarge {
  padding: 4rem;
}

.text-color-white-2 {
  color: #fff;
}

.max-width-xxsmall {
  width: 100%;
  max-width: 20rem;
}

.padding-0 {
  padding: 0;
}

.rl-styleguide_header {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  padding-top: 3rem;
  padding-bottom: 3rem;
  display: flex;
}

.margin-xlarge {
  margin: 4rem;
}

.rl-styleguide_item-row {
  grid-column-gap: 1.5rem;
  grid-row-gap: 0rem;
  grid-template-rows: auto;
  grid-template-columns: 15rem 1fr;
  align-items: center;
}

.rl-styleguide_item-row.is-button-row {
  grid-template-columns: 19rem 1fr;
}

.padding-vertical, .padding-vertical.padding-tiny, .padding-vertical.padding-xhuge, .padding-vertical.padding-large, .padding-vertical.padding-xxsmall, .padding-vertical.padding-huge, .padding-vertical.padding-medium, .padding-vertical.padding-custom1, .padding-vertical.padding-xlarge, .padding-vertical.padding-0, .padding-vertical.padding-xxhuge, .padding-vertical.padding-custom2, .padding-vertical.padding-xxlarge, .padding-vertical.padding-xsmall, .padding-vertical.padding-custom3, .padding-vertical.padding-small {
  padding-left: 0;
  padding-right: 0;
}

.padding-xxlarge {
  padding: 5rem;
}

.icon-embed-custom1 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 1.25rem;
  height: 1.25rem;
  display: flex;
}

.text-color-black {
  color: #000;
}

.padding-left, .padding-left.padding-xxlarge, .padding-left.padding-custom3, .padding-left.padding-xsmall, .padding-left.padding-small, .padding-left.padding-0, .padding-left.padding-custom1, .padding-left.padding-medium, .padding-left.padding-xhuge, .padding-left.padding-large, .padding-left.padding-xxsmall, .padding-left.padding-huge, .padding-left.padding-tiny, .padding-left.padding-xlarge, .padding-left.padding-xxhuge, .padding-left.padding-custom2 {
  padding-top: 0;
  padding-bottom: 0;
  padding-right: 0;
}

.max-width-full {
  width: 100%;
  max-width: none;
}

.margin-top-auto {
  margin-top: auto;
}

.margin-bottom, .margin-bottom.margin-xhuge, .margin-bottom.margin-small, .margin-bottom.margin-large, .margin-bottom.margin-huge, .margin-bottom.margin-custom3, .margin-bottom.margin-xsmall, .margin-bottom.margin-tiny, .margin-bottom.margin-custom1, .margin-bottom.margin-0, .margin-bottom.margin-custom2, .margin-bottom.margin-xxlarge, .margin-bottom.margin-medium, .margin-bottom.margin-xlarge, .margin-bottom.margin-xxhuge, .margin-bottom.margin-xxsmall {
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
}

.text-color-primary {
  color: #000;
}

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

.spacer-medium {
  width: 100%;
  padding-top: 2rem;
}

.margin-xsmall {
  margin: 1rem;
}

.rl-styleguide_callout-heading-wrapper {
  font-size: 1.25rem;
  font-weight: 600;
}

.icon-1x1-medium {
  width: 3rem;
  height: 3rem;
}

.icon-height-large {
  height: 5rem;
}

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

.shadow-xxsmall {
  box-shadow: 0 1px 2px #0000000d;
}

.shadow-medium {
  box-shadow: 0 12px 16px -4px #00000014, 0 4px 6px -2px #00000008;
}

.global-styles {
  display: block;
  position: fixed;
  inset: 0% auto auto 0%;
}

.rl-styleguide_button-row {
  grid-column-gap: 1rem;
  display: flex;
}

.margin-right, .margin-right.margin-custom2, .margin-right.margin-medium, .margin-right.margin-0, .margin-right.margin-small, .margin-right.margin-xxhuge, .margin-right.margin-xxlarge, .margin-right.margin-large, .margin-right.margin-xxsmall, .margin-right.margin-huge, .margin-right.margin-xhuge, .margin-right.margin-tiny, .margin-right.margin-custom3, .margin-right.margin-custom1, .margin-right.margin-xlarge, .margin-right.margin-xsmall {
  margin-top: 0;
  margin-bottom: 0;
  margin-left: 0;
}

.padding-small {
  padding: 1.5rem;
}

.max-width-xxlarge {
  width: 100%;
  max-width: 80rem;
}

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

.spacer-huge {
  width: 100%;
  padding-top: 6rem;
}

.background-color-secondary {
  background-color: #eee;
}

.icon-embed-small {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 2rem;
  height: 2rem;
  display: flex;
}

.spacing-clean {
  margin: 0;
  padding: 0;
}

.class-label-column {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.pointer-events-none {
  pointer-events: none;
}

.icon-height-xsmall {
  height: 1.5rem;
}

.margin-vertical, .margin-vertical.margin-xxlarge, .margin-vertical.margin-0, .margin-vertical.margin-custom2, .margin-vertical.margin-xhuge, .margin-vertical.margin-medium, .margin-vertical.margin-custom3, .margin-vertical.margin-xxsmall, .margin-vertical.margin-custom1, .margin-vertical.margin-large, .margin-vertical.margin-xsmall, .margin-vertical.margin-xxhuge, .margin-vertical.margin-small, .margin-vertical.margin-xlarge, .margin-vertical.margin-tiny, .margin-vertical.margin-huge {
  margin-left: 0;
  margin-right: 0;
}

.heading-style-h1 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
}

.background-color-tertiary {
  background-color: #aaa;
}

.margin-tiny {
  margin: .25rem;
}

.text-style-strikethrough {
  text-decoration: line-through;
}

.form_radio-label {
  margin-bottom: 0;
}

.form_message-error {
  color: #b42318;
  background-color: #fef3f2;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  display: flex;
}

.icon-1x1-small {
  width: 2rem;
  height: 2rem;
}

.text-style-muted {
  opacity: .6;
}

.background-color-black {
  background-color: #000;
}

.rl-styleguide_ratio-bg {
  z-index: -1;
  background-color: #eee;
  min-width: 3rem;
  height: 100%;
  position: relative;
}

.icon-embed-xlarge {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 6.5rem;
  height: 6.5rem;
  display: flex;
}

.rl-styleguide_label {
  color: #1e51f7;
  white-space: nowrap;
  cursor: context-menu;
  background-color: #ebeffa;
  padding: .25rem .5rem;
  font-size: .75rem;
  display: inline-block;
}

.rl-styleguide_label.is-html-tag {
  color: #bb4198;
  background-color: #f9eff6;
}

.max-width-xlarge {
  width: 100%;
  max-width: 64rem;
}

.spacer-small {
  width: 100%;
  padding-top: 1.5rem;
}

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

.margin-huge {
  margin: 6rem;
}

.heading-style-h6 {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
}

.form_radio {
  align-items: center;
  margin-bottom: 0;
  padding-left: 1.125rem;
  display: flex;
}

.padding-tiny {
  padding: .25rem;
}

.hide {
  display: none;
}

.text-weight-xbold {
  font-weight: 800;
}

.background-color-primary {
  background-color: #fff;
}

.form_field-label {
  margin-bottom: .5rem;
  font-weight: 400;
}

.icon-embed-large {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 5rem;
  height: 5rem;
  display: flex;
}

.heading-style-h3 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
}

.shadow-large {
  box-shadow: 0 20px 24px -4px #00000014, 0 8px 8px -4px #00000008;
}

.button-2 {
  color: #fff;
  text-align: center;
  background-color: #000;
  border: 1px solid #000;
  padding: .75rem 1.5rem;
  text-decoration: none;
}

.button-2.is-secondary {
  color: #000;
  background-color: #0000;
}

.button-2.is-secondary.is-alternate {
  color: #fff;
  background-color: #0000;
}

.button-2.is-link {
  color: #000;
  background-color: #0000;
  border-style: none;
  padding: .25rem 0;
  line-height: 1;
  text-decoration: none;
}

.button-2.is-link.is-icon {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
}

.button-2.is-link.is-alternate {
  color: #fff;
  background-color: #0000;
}

.button-2.is-small {
  padding: .5rem 1.25rem;
}

.button-2.is-small.is-icon-only {
  padding-left: .5rem;
  padding-right: .5rem;
}

.button-2.is-tertiary {
  color: #000;
  background-color: #0000;
  border-color: #0000;
}

.button-2.is-alternate {
  color: #000;
  background-color: #fff;
  border-color: #fff;
}

.button-2.is-icon-only {
  padding-left: .75rem;
  padding-right: .75rem;
}

.button-2.is-icon {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  justify-content: center;
  align-items: center;
  display: flex;
}

.class-label-row {
  grid-column-gap: .25rem;
  grid-row-gap: .25rem;
  flex-wrap: wrap;
  align-items: center;
  display: flex;
}

.aspect-ratio-widescreen {
  aspect-ratio: 16 / 9;
}

.form_message-success-wrapper {
  padding: 0;
}

.rl-styleguide_nav-link {
  color: #fff;
  border-radius: .25rem;
  padding: .5rem 1rem;
  text-decoration: none;
}

.rl-styleguide_nav-link.w--current {
  color: #000;
  background-color: #fff;
}

.form_input {
  color: #000;
  background-color: #fff;
  border: 1px solid #000;
  border-radius: 0;
  height: auto;
  min-height: 2.75rem;
  margin-bottom: 0;
  padding: .5rem .75rem;
  font-size: 1rem;
  line-height: 1.6;
}

.form_input:focus {
  border-color: #000;
}

.form_input::placeholder {
  color: #0009;
}

.form_input.is-select-input {
  background-image: none;
}

.form_input.is-text-area {
  height: auto;
  min-height: 11.25rem;
  padding-top: .75rem;
  padding-bottom: .75rem;
  overflow: auto;
}

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

.shadow-small {
  box-shadow: 0 4px 8px -2px #0000001a, 0 2px 4px -2px #0000000f;
}

.text-weight-medium {
  font-weight: 500;
}

.form_form {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

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

.button-group {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  display: flex;
}

.button-group.is-center {
  justify-content: center;
}

.margin-top, .margin-top.margin-xxhuge, .margin-top.margin-0, .margin-top.margin-medium, .margin-top.margin-custom1, .margin-top.margin-custom3, .margin-top.margin-xlarge, .margin-top.margin-large, .margin-top.margin-custom2, .margin-top.margin-xhuge, .margin-top.margin-small, .margin-top.margin-xsmall, .margin-top.margin-tiny, .margin-top.margin-xxsmall, .margin-top.margin-huge, .margin-top.margin-xxlarge {
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
}

.spacer-tiny {
  width: 100%;
  padding-top: .25rem;
}

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

.pointer-events-auto {
  pointer-events: auto;
}

.margin-xxhuge {
  margin: 10rem;
}

.form_message-error-wrapper {
  margin-top: 1rem;
  padding: 0;
}

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

.shadow-xsmall {
  box-shadow: 0 1px 3px #0000001a, 0 1px 2px #0000000f;
}

.rl-styleguide_empty-box {
  z-index: -1;
  background-color: #eee;
  min-width: 3rem;
  height: 3rem;
  position: relative;
}

.aspect-ratio-square {
  aspect-ratio: 1;
}

.form_radio-icon {
  cursor: pointer;
  border: 1px solid #000;
  border-radius: 100px;
  width: 1.125rem;
  min-width: 1.125rem;
  height: 1.125rem;
  min-height: 1.125rem;
  margin-top: 0;
  margin-left: -1.125rem;
  margin-right: .5rem;
}

.form_radio-icon.w--redirected-checked {
  background-color: #fff;
  background-image: none;
  border-width: 6px;
  border-color: #000;
}

.form_radio-icon.w--redirected-focus {
  box-shadow: none;
  border-color: #000;
  margin-top: 0;
}

.rl-styleguide_icons-list {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-wrap: wrap;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
  display: grid;
}

.shadow-xxlarge {
  box-shadow: 0 32px 64px -12px #00000024;
}

.spacer-xhuge {
  width: 100%;
  padding-top: 7rem;
}

.spacer-xxhuge {
  width: 100%;
  padding-top: 10rem;
}

.margin-0 {
  margin: 0;
}

.heading-style-h5 {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
}

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

.aspect-ratio-landscape {
  aspect-ratio: 3 / 2;
}

.rl-styleguide_list {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  padding-bottom: 4rem;
}

.background-color-white {
  background-color: #fff;
}

.aspect-ratio-portrait {
  aspect-ratio: 2 / 3;
}

.max-width-medium {
  width: 100%;
  max-width: 35rem;
}

.padding-global {
  padding-left: 5%;
  padding-right: 5%;
}

.heading-style-h4 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
}

.form_field-wrapper {
  position: relative;
}

.padding-xhuge {
  padding: 7rem;
}

.padding-xxsmall {
  padding: .5rem;
}

.text-style-quote {
  border-left: .1875rem solid #000;
  margin-bottom: 0;
  padding: .75rem 1.25rem;
  font-size: 1.25rem;
  line-height: 1.5;
}

.margin-xhuge {
  margin: 7rem;
}

.text-style-nowrap {
  white-space: nowrap;
}

.padding-large {
  padding: 3rem;
}

.padding-horizontal, .padding-horizontal.padding-xsmall, .padding-horizontal.padding-small, .padding-horizontal.padding-xxlarge, .padding-horizontal.padding-huge, .padding-horizontal.padding-large, .padding-horizontal.padding-xhuge, .padding-horizontal.padding-medium, .padding-horizontal.padding-xxsmall, .padding-horizontal.padding-custom1, .padding-horizontal.padding-custom3, .padding-horizontal.padding-0, .padding-horizontal.padding-tiny, .padding-horizontal.padding-xlarge, .padding-horizontal.padding-xxhuge, .padding-horizontal.padding-custom2 {
  padding-top: 0;
  padding-bottom: 0;
}

.rl-styleguide_callout-link-wrapper-colors {
  background-image: linear-gradient(135deg, #ff744826, #ff484826 50%, #6248ff26), linear-gradient(#fff, #fff);
  border-radius: .6875rem;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: .75rem 1rem;
  display: flex;
}

.icon-1x1-xlarge {
  width: 6.5rem;
  height: 6.5rem;
}

.padding-xsmall {
  padding: 1rem;
}

.text-size-tiny {
  font-size: .75rem;
}

.icon-1x1-large {
  width: 5rem;
  height: 5rem;
}

.rl-styleguide_spacing {
  border: 1px dashed #000;
}

.text-color-alternate {
  color: #fff;
}

.text-size-large {
  font-size: 1.25rem;
}

.form_checkbox-label {
  margin-bottom: 0;
}

.text-style-allcaps {
  text-transform: uppercase;
}

.rl-styleguide_nav {
  z-index: 1000;
  background-color: #000;
  border-radius: .75rem;
  margin-top: 1rem;
  padding: .5rem;
  position: sticky;
  top: 1rem;
}

.rl-styleguide_callout-link_colors {
  background-color: #fff;
  background-image: linear-gradient(135deg, #ff7448, #ff4848 50%, #6248ff);
  border-radius: .75rem;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding: 1px;
  text-decoration: none;
  display: flex;
  overflow: hidden;
}

.rl-styleguide_heading {
  z-index: 4;
  color: #000;
  margin-bottom: 1.5rem;
  padding: .25rem .5rem;
  font-size: 3.5rem;
  font-weight: 700;
}

.icon-1x1-xxsmall {
  width: 1rem;
  height: 1rem;
}

.margin-xxlarge {
  margin: 5rem;
}

.rl-styleguide_subheading-small {
  font-size: 1rem;
  font-weight: 400;
}

.overflow-auto {
  overflow: auto;
}

.background-color-alternative {
  background-color: #000;
}

.text-style-link {
  color: #000;
  text-decoration: underline;
}

.icon-embed-medium {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 3rem;
  height: 3rem;
  display: flex;
}

.layer {
  justify-content: center;
  align-items: center;
  position: absolute;
  inset: 0%;
}

.spacer-xlarge {
  width: 100%;
  padding-top: 4rem;
}

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

.spacer-large {
  width: 100%;
  padding-top: 3rem;
}

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

.shadow-xlarge {
  box-shadow: 0 24px 48px -12px #0000002e;
}

.text-weight-normal {
  font-weight: 400;
}

.rl-styleguide_button-list {
  grid-column-gap: 1rem;
  grid-row-gap: 1.5rem;
  white-space: normal;
  grid-template-rows: auto;
  grid-template-columns: auto;
  grid-auto-columns: max-content;
  grid-auto-flow: row;
  place-items: center start;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  display: grid;
}

.spacer-xxsmall {
  width: 100%;
  padding-top: .5rem;
}

.icon-height-xxsmall {
  height: 1rem;
}

.form_checkbox-icon {
  cursor: pointer;
  border: 1px solid #000;
  border-radius: 0;
  width: 1.125rem;
  min-width: 1.125rem;
  height: 1.125rem;
  min-height: 1.125rem;
  margin-top: 0;
  margin-left: -1.25rem;
  margin-right: .5rem;
  transition: all .2s;
}

.form_checkbox-icon.w--redirected-checked {
  box-shadow: none;
  background-color: #000;
  background-size: 16px 16px;
  border-width: 1px;
  border-color: #000;
}

.form_checkbox-icon.w--redirected-focus {
  box-shadow: none;
  border-color: #000;
}

.rl-styleguide_spacing-all {
  display: none;
}

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

.icon-embed-xxsmall {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 1rem;
  height: 1rem;
  display: flex;
}

.spacer-xsmall {
  width: 100%;
  padding-top: 1rem;
}

.form_message-success {
  color: #027a48;
  background-color: #ecfdf3;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2.5rem;
  display: flex;
}

.padding-bottom, .padding-bottom.padding-custom2, .padding-bottom.padding-xxsmall, .padding-bottom.padding-xlarge, .padding-bottom.padding-small, .padding-bottom.padding-xsmall, .padding-bottom.padding-custom3, .padding-bottom.padding-xxlarge, .padding-bottom.padding-0, .padding-bottom.padding-medium, .padding-bottom.padding-tiny, .padding-bottom.padding-xhuge, .padding-bottom.padding-custom1, .padding-bottom.padding-large, .padding-bottom.padding-xxhuge, .padding-bottom.padding-huge {
  padding-top: 0;
  padding-left: 0;
  padding-right: 0;
}

.form_checkbox {
  align-items: center;
  margin-bottom: 0;
  padding-left: 1.25rem;
  display: flex;
}

.margin-xxsmall {
  margin: .5rem;
}

.icon-height-xlarge {
  height: 6.5rem;
}

.text-size-small {
  font-size: .875rem;
}

.padding-section-medium {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.margin-horizontal, .margin-horizontal.margin-medium, .margin-horizontal.margin-huge, .margin-horizontal.margin-custom1, .margin-horizontal.margin-large, .margin-horizontal.margin-custom3, .margin-horizontal.margin-small, .margin-horizontal.margin-0, .margin-horizontal.margin-xsmall, .margin-horizontal.margin-tiny, .margin-horizontal.margin-xxhuge, .margin-horizontal.margin-custom2, .margin-horizontal.margin-xxsmall, .margin-horizontal.margin-xlarge, .margin-horizontal.margin-xhuge, .margin-horizontal.margin-xxlarge {
  margin-top: 0;
  margin-bottom: 0;
}

.margin-left, .margin-left.margin-xxhuge, .margin-left.margin-tiny, .margin-left.margin-custom1, .margin-left.margin-xsmall, .margin-left.margin-xxsmall, .margin-left.margin-large, .margin-left.margin-huge, .margin-left.margin-xhuge, .margin-left.margin-xlarge, .margin-left.margin-custom3, .margin-left.margin-medium, .margin-left.margin-xxlarge, .margin-left.margin-0, .margin-left.margin-custom2, .margin-left.margin-small {
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 0;
}

.overflow-hidden {
  overflow: hidden;
}

.icon-1x1-custom1 {
  width: 1.25rem;
  height: 1.25rem;
}

.margin-large {
  margin: 3rem;
}

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

.margin-medium {
  margin: 2rem;
}

.overflow-scroll {
  overflow: scroll;
}

.text-style-italic {
  font-style: italic;
}

.padding-right, .padding-right.padding-xxlarge, .padding-right.padding-xlarge, .padding-right.padding-large, .padding-right.padding-huge, .padding-right.padding-xxsmall, .padding-right.padding-xxhuge, .padding-right.padding-0, .padding-right.padding-medium, .padding-right.padding-custom1, .padding-right.padding-xsmall, .padding-right.padding-tiny, .padding-right.padding-custom2, .padding-right.padding-xhuge, .padding-right.padding-custom3, .padding-right.padding-small {
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 0;
}

.rl-styleguide_subheading {
  z-index: 3;
  color: #000;
  background-color: #eee;
  border-radius: .75rem;
  margin-bottom: 1rem;
  padding: 1rem;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.icon-1x1-xsmall {
  width: 1.5rem;
  height: 1.5rem;
}

.text-size-medium {
  font-size: 1.125rem;
}

.padding-xxhuge {
  padding: 10rem;
}

.icon-embed-xsmall {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
}

.z-index-2 {
  z-index: 2;
  position: relative;
}

.align-center {
  margin-left: auto;
  margin-right: auto;
}

.heading-style-h2 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
}

.padding-medium {
  padding: 2rem;
}

.rl-styleguide_shadows-list {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  align-items: start;
}

.max-width-small {
  width: 100%;
  max-width: 30rem;
}

.padding-huge {
  padding: 6rem;
}

.margin-small {
  margin: 1.5rem;
}

.padding-top, .padding-top.padding-medium, .padding-top.padding-large, .padding-top.padding-xxlarge, .padding-top.padding-xhuge, .padding-top.padding-tiny, .padding-top.padding-custom1, .padding-top.padding-xxhuge, .padding-top.padding-xlarge, .padding-top.padding-custom2, .padding-top.padding-xxsmall, .padding-top.padding-xsmall, .padding-top.padding-custom3, .padding-top.padding-small, .padding-top.padding-huge, .padding-top.padding-0 {
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
}

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

.rl-styleguide_color-spacer {
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding: 1rem;
  display: flex;
}

.layout12_component {
  grid-column-gap: 5rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: grid;
}

.layout12_item-list {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  grid-template-rows: auto;
  padding-top: .5rem;
  padding-bottom: .5rem;
}

.layout12_image {
  width: 100%;
  height: 100%;
}

.residential_feature-1_component {
  grid-column-gap: 5rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: grid;
}

.residential_feature-1_item {
  display: flex;
}

.residential_feature-1_image {
  width: 100%;
  height: 100%;
}

.residential_feature-1_item-icon-wrapper {
  flex: none;
  align-self: flex-start;
  margin-right: 1rem;
}

.residential_feature-1_item-list {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  padding-top: .5rem;
  padding-bottom: .5rem;
  display: grid;
}

.button-3 {
  border: 1px solid var(--\<unknown\|relume-variable-color-neutral-1\>);
  background-color: var(--\<unknown\|relume-variable-color-neutral-1\>);
  color: var(--\<unknown\|relume-variable-color-neutral-2\>);
  text-align: center;
  padding: .75rem 1.5rem;
  text-decoration: none;
}

.button-3.is-secondary {
  color: var(--\<unknown\|relume-variable-color-neutral-1\>);
  background-color: #0000;
}

.button-3.is-link {
  color: var(--\<unknown\|relume-variable-color-neutral-1\>);
  background-color: #0000;
  border-style: none;
  padding: .25rem 0;
  line-height: 1;
  text-decoration: none;
}

.button-3.is-link.is-icon {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
}

.text-weight-semibold {
  font-weight: 600;
}

.residential_feature-3_component {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.residential_feature-3_item {
  text-align: center;
  flex-direction: column;
  align-items: center;
  width: 100%;
  display: flex;
}

.residential_feature-3_image {
  border-radius: 11px;
  width: 100%;
  height: 100%;
}

.residential_feature-3_list {
  grid-column-gap: 3rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  place-items: start center;
  margin-bottom: 1rem;
  display: grid;
}

.residential_feature-3_image-wrapper {
  width: 100%;
  position: relative;
}

.residential_faq_list {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 100%;
  grid-auto-columns: 100%;
  place-items: start stretch;
  display: grid;
}

.residential_faq_answer {
  color: var(--white);
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  overflow: hidden;
}

.residential_faq_icon-wrapper {
  align-self: flex-start;
  width: 2rem;
  display: flex;
}

.residential_faq_component {
  grid-column-gap: 2rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  display: grid;
}

.residential_faq_question {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  cursor: pointer;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  display: flex;
}

.residential_faq_accordion {
  border: 1px solid var(--\<unknown\|relume-variable-border-color-1\>);
  background-image: linear-gradient(to bottom, var(--primary), var(--primary));
  color: var(--white);
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
}

.cta1_image {
  color: var(--white);
  border-radius: 9px;
  width: 100%;
  height: 100%;
}

.cta1_component {
  grid-column-gap: 5rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: grid;
}

.button-4 {
  border: 1px solid var(--\<unknown\|relume-variable-color-neutral-1\>);
  background-color: var(--\<unknown\|relume-variable-color-neutral-1\>);
  color: var(--\<unknown\|relume-variable-color-neutral-2\>);
  text-align: center;
  padding: .75rem 1.5rem;
  text-decoration: none;
}

.button-4.is-secondary {
  color: var(--\<unknown\|relume-variable-color-neutral-1\>);
  background-color: #0000;
}

.button-5 {
  border: 1px solid var(--\<unknown\|relume-variable-color-neutral-1\>);
  background-color: var(--\<unknown\|relume-variable-color-neutral-1\>);
  color: var(--\<unknown\|relume-variable-color-neutral-2\>);
  text-align: center;
  padding: .75rem 1.5rem;
  text-decoration: none;
}

.button-5.is-secondary {
  color: var(--\<unknown\|relume-variable-color-neutral-1\>);
  background-color: #0000;
}

.button-5.is-secondary.is-alternate {
  color: var(--\<unknown\|relume-variable-color-neutral-2\>);
  background-color: #0000;
}

.button-5.is-link {
  color: var(--\<unknown\|relume-variable-color-neutral-1\>);
  background-color: #0000;
  border-style: none;
  padding: .25rem 0;
  line-height: 1;
  text-decoration: none;
}

.button-5.is-link.is-icon {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
}

.modal1_close-button {
  color: var(--white);
  position: absolute;
  top: 1rem;
  right: 1rem;
}

.show-mobile-landscape {
  display: none;
}

.modal1_content-wrapper {
  z-index: 99;
  background-color: var(--\<unknown\|relume-variable-color-neutral-2\>);
  flex-direction: column;
  justify-content: center;
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: 80%;
  padding: 6rem 4rem 4rem;
  position: relative;
  overflow: scroll;
}

.modal1_component {
  z-index: 99;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  margin-top: 52px;
  display: none;
  position: fixed;
  inset: 0%;
  overflow: visible;
}

.modal-content-replace-this-div {
  border: 2px dashed #0000001a;
  width: 100%;
  height: 150vh;
}

.modal1_background-overlay {
  z-index: -1;
  background-color: #000000eb;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

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

.modal1_close-button-2 {
  position: absolute;
  top: 1rem;
  right: 1rem;
}

.modal1_content-wrapper-2 {
  background-color: var(--\<unknown\|relume-variable-color-neutral-2\>);
  flex-direction: column;
  justify-content: center;
  width: 100%;
  max-width: 48rem;
  height: auto;
  max-height: 80vh;
  padding: 4rem;
  overflow: scroll;
}

.modal1_component-2 {
  z-index: 99;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  display: none;
  position: fixed;
  inset: 0%;
}

.modal1_background-overlay-2 {
  z-index: -1;
  background-color: #00000040;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.div-block-3 {
  overflow: scroll;
}

.layout194_component {
  grid-column-gap: 5rem;
  grid-row-gap: 4px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: grid;
}

.layout194_image {
  border-radius: 10px;
  width: 100%;
  height: 100%;
}

.layout1_image {
  width: 100%;
  height: 100%;
}

.layout1_component {
  grid-column-gap: 5rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: grid;
}

.layout90_image {
  width: 100%;
  height: 100%;
}

.layout90_component {
  grid-column-gap: 5rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  display: grid;
}

.team6_list {
  grid-column-gap: 3rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  place-items: start center;
  display: grid;
}

.team6_social {
  grid-column-gap: .875rem;
  grid-row-gap: .875rem;
  grid-template-rows: auto;
  grid-template-columns: max-content;
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
  align-self: center;
  margin-top: 1.5rem;
  display: grid;
}

.team6_image {
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 9px;
  width: 100%;
  height: 100%;
}

.social-icon {
  width: 1.5rem;
  height: 1.5rem;
}

.team6_item {
  text-align: center;
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.team6_image-wrapper {
  width: 100%;
  overflow: hidden;
}

.image-overlay-layer {
  z-index: 1;
  background-color: #00000080;
  position: absolute;
  inset: 0%;
}

.cta27_background-image-wrapper {
  z-index: -1;
  background-image: linear-gradient(#00000080, #00000080);
  position: absolute;
  inset: 0%;
}

.section_cta27 {
  position: relative;
}

.text-color-white-3 {
  color: var(--\<unknown\|relume-variable-color-neutral-2\>);
}

.cta27_background-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.layout22_component {
  grid-column-gap: 2.3rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: grid;
}

.layout22_image {
  width: 100%;
  height: 100%;
}

.layout213_component {
  grid-column-gap: 2.4rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: grid;
}

.layout213_image {
  width: 100%;
  height: 100%;
}

.container-2, .section-2 {
  background-color: var(--primary);
}

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

.privacy-banner {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-left: 0;
  display: flex;
}

.link-2 {
  color: var(--light-gray);
}

.tos-links {
  color: var(--white);
}

@media screen and (min-width: 1280px) {
  h1 {
    font-size: 68px;
  }

  .section {
    padding-top: 130px;
    padding-bottom: 130px;
  }

  .section.changelog-banner {
    padding-top: 160px;
  }

  .section.banner-testimonials {
    padding-bottom: 100px;
  }

  .section.shop-product-section {
    padding-top: 200px;
  }

  .section.home-2 {
    padding-bottom: 100px;
  }

  .base-container.banner-home-3 {
    padding-left: 15px;
    padding-right: 15px;
  }

  .spacing-system-column {
    padding-right: 30px;
  }

  .headings-typography-wrapper {
    width: 48%;
  }

  .style-guide-body-wrapper {
    margin-right: 60px;
  }

  .nav-dropdown-toggle {
    padding-left: 20px;
    padding-right: 20px;
  }

  .nav-dropdown-list.megamenu.w--open {
    margin-left: -170px;
  }

  .footer {
    padding-top: 100px;
  }

  .style-guide-buttons-wrapper {
    flex-wrap: nowrap;
    justify-content: space-between;
  }

  .style-guide-button-wrapper {
    width: auto;
  }

  .banner-title-wrapper.width {
    max-width: 781px;
    margin-top: 40px;
  }

  .pricing-plan-item-title {
    width: 85%;
  }

  .comparing-table-features-wrapper {
    display: block;
  }

  .comparing-table-plans-wrapper {
    width: 67%;
  }

  .comparing-table-list {
    padding-left: 20px;
  }

  .comparing-table-plan {
    margin-right: 15px;
  }

  .comparing-table-content-wrapper {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    flex-direction: column;
    display: flex;
  }

  .comparing-table-content-item-title {
    display: none;
  }

  .workflow-content-wrapper {
    padding-left: 70px;
  }

  .workflow-video-wrapper {
    max-height: none;
  }

  .workflow-quote {
    margin-top: 20px;
  }

  .contacts-content-wrapper {
    padding-right: 80px;
  }

  .without-top-spacing {
    padding-top: 0;
  }

  .search-section {
    margin-bottom: 80px;
    padding-top: 160px;
  }

  .testimonials-card-wrapper {
    grid-column-gap: 50px;
    grid-row-gap: 50px;
  }

  .about-first-column {
    padding-left: 80px;
    padding-right: 50px;
  }

  .about-third-column {
    padding-left: 50px;
    padding-right: 80px;
  }

  .about-progress-bar-active-element {
    margin-left: 20px;
  }

  .tabs-menu {
    margin-bottom: 60px;
  }

  .services-collection-item {
    width: 31.6%;
  }

  .services-list-image {
    height: 320px;
  }

  .services-content-wrapper {
    padding-bottom: 30px;
    padding-left: 30px;
    padding-right: 30px;
  }

  .services-category {
    margin-bottom: 20px;
  }

  .testimonials {
    padding-top: 130px;
    padding-bottom: 130px;
  }

  .blog-section-title {
    margin-bottom: 70px;
  }

  .map-wrapper {
    padding-right: 70px;
  }

  .section-title-center {
    margin-bottom: 70px;
  }

  .about-img._3 {
    width: 340px;
  }

  .about-img._4 {
    width: 280px;
  }

  .about-img._2 {
    width: 340px;
  }

  .home-content-banner {
    width: 60%;
  }

  .industries-block-wrapper {
    position: relative;
  }

  .banner-image {
    width: 80%;
  }

  .section-with-blue-bg {
    padding-left: 40px;
    padding-right: 40px;
  }

  .center-title {
    padding-right: 140px;
  }

  .home-banner {
    width: 50%;
  }

  .shop-details-block {
    margin-top: 120px;
  }

  .banner-mask {
    object-fit: contain;
    min-height: 600px;
  }

  .section-text-wrapper {
    max-width: 800px;
  }

  .slider-our-services {
    padding-left: 4%;
  }

  .slider-content-wrapper {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    grid-template-columns: .5fr auto;
  }

  .arrow-circle {
    left: 4%;
  }

  .image-banner {
    object-position: 100% 50%;
  }

  .banner-slide-image {
    height: 600px;
  }

  .big-container {
    padding-top: 130px;
    padding-bottom: 130px;
  }

  .features-card {
    padding-left: 30px;
    padding-right: 30px;
  }

  .features-card.primary {
    background-color: var(--primary);
  }

  .next-slide-image {
    width: 30%;
  }

  .video-grid-wrapper {
    grid-column-gap: 80px;
    overflow: hidden;
  }

  .testimonials-slider-wrapper {
    margin-right: 100px;
  }

  .section-testimonials {
    padding: 130px 40px;
  }

  .left-slide-content {
    padding-top: 60px;
  }

  .news-info-content {
    padding: 60px 80px 60px 60px;
  }

  .description-banner {
    width: 85%;
  }

  .description-banner.inner {
    width: 90%;
  }

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

  .cart-block {
    margin-right: 20px;
  }

  .description-service {
    width: 80%;
  }

  .home-banner-mask-copy {
    width: 50%;
  }

  .cta-mask {
    inset: 0%;
  }

  .home-banner-wrapper {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    padding-left: 40px;
  }

  .services-image-wrap {
    height: 500px;
  }

  .services-image-wrap.margin-botton {
    margin-bottom: 80px;
  }

  .home-our-services-wrapper {
    grid-column-gap: 70px;
  }

  .hero-image-wrapper {
    margin-top: 80px;
  }

  .inner-content-banner {
    width: 60%;
  }

  .inner-wrapper.blog, .inner-wrapper.blog-categories, .inner-wrapper.shop, .inner-wrapper.shop-categories {
    min-height: 450px;
  }

  .title-container {
    padding-right: 40px;
  }

  .text-container {
    grid-column-gap: 120px;
  }

  .inner-button-wrapper {
    margin-top: 60px;
  }

  .blog-category, .shop-category {
    margin-bottom: 20px;
  }

  .our-shop-collection-item {
    width: 31.6%;
  }

  .shop-content-wrapper {
    padding-bottom: 30px;
    padding-left: 30px;
    padding-right: 30px;
  }

  .product-details-wrapper {
    grid-column-gap: 80px;
  }

  .privacy-banner {
    width: 60%;
  }
}

@media screen and (min-width: 1440px) {
  h1, h2, h3, h4, h5, h6 {
    margin-bottom: 10px;
  }

  .section.home-2 {
    padding-top: 100px;
  }

  .about-first-column, .about-third-column {
    padding-top: 130px;
    padding-bottom: 130px;
  }

  .about-progress-bar-active-element {
    margin-left: 70px;
  }

  .about-img._1 {
    width: 380px;
  }

  .about-img._3 {
    width: 400px;
  }

  .about-img._4 {
    width: 300px;
  }

  .about-img._2 {
    width: 390px;
  }

  .our-services-wrap {
    align-items: center;
  }

  .banner-image {
    width: 75%;
  }

  .section-with-blue-bg {
    padding-left: 100px;
    padding-right: 100px;
  }

  .image-preview {
    height: 540px;
  }

  .banner-mask {
    height: 380px;
    min-height: 550px;
  }

  .slider-our-services {
    padding-left: 9%;
  }

  .arrow-circle {
    left: 9%;
  }

  .arrow-circle.right {
    right: 75%;
  }

  .home-banner-mask-copy {
    min-height: 380px;
  }

  .cta-banner-mask {
    min-height: 500px;
  }
}

@media screen and (min-width: 1920px) {
  .section.changelog-banner {
    padding-top: 180px;
  }

  .section.banner-hero {
    height: 100vh;
  }

  .section.home-2 {
    padding-top: 120px;
  }

  .section.banner-hero-home {
    padding-top: 140px;
  }

  .about-first-column {
    padding-left: 120px;
    padding-right: 80px;
  }

  .about-third-column {
    padding-left: 80px;
    padding-right: 120px;
  }

  .about-progress-bar-wrapper {
    max-width: 360px;
  }

  .about-progress-bar-active-element {
    margin-left: 80px;
  }

  .about-img._1 {
    width: 420px;
    left: 16%;
  }

  .about-img._3 {
    width: 430px;
    top: 20%;
    left: 54%;
  }

  .about-img._4 {
    left: 48%;
  }

  .banner-image {
    width: 98%;
  }

  .section-with-blue-bg {
    padding-left: 180px;
    padding-right: 180px;
  }

  .banner-mask {
    height: 100%;
  }

  .slider-our-services {
    padding-left: 20%;
  }

  .arrow-circle {
    bottom: 10%;
    left: 20%;
  }

  .arrow-circle.right {
    right: 67%;
  }

  .banner-slide-image {
    height: 700px;
  }

  .next-slide-image {
    width: 38%;
  }

  .image-next {
    height: 600px;
  }

  .list {
    list-style: none;
  }

  .block-button {
    margin-top: 40px;
  }

  .left-slide-content {
    width: 45%;
  }

  .slider-image-block {
    width: 55%;
  }

  .footer-second {
    padding-top: 160px;
  }

  .description-service {
    width: 75%;
  }

  .hero-image-wrapper {
    height: 500px;
    margin-top: 90px;
  }

  .hero-image-wrapper.template {
    height: 550px;
    margin-top: 80px;
  }

  .inner-wrapper.blog-categories {
    min-height: 500px;
  }
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 42px;
  }

  h3 {
    font-size: 32px;
  }

  blockquote {
    font-size: 28px;
  }

  .section.changelog-banner {
    min-height: 300px;
    padding-top: 100px;
  }

  .section.banner-testimonials {
    padding-bottom: 60px;
  }

  .section.shop-product-section {
    padding-top: 120px;
  }

  .section.banner-hero {
    padding-top: 70px;
  }

  .section.home-2 {
    padding-top: 80px;
  }

  .section.banner-hero-home {
    padding-top: 100px;
  }

  .section.banner-inner {
    padding-top: 70px;
  }

  .section.checkout {
    padding-top: 120px;
  }

  .grid-system {
    width: 100%;
  }

  .grid-description.first-description {
    text-align: center;
  }

  .spacing-system-image {
    width: 75%;
  }

  .spacing-wrapper-mobile {
    width: 70%;
  }

  .spacing-columns {
    flex-flow: wrap;
    display: flex;
  }

  .bottom-style-spacing-desktop {
    bottom: 6%;
  }

  .top-style-spacing-desktop {
    top: 4%;
  }

  .middle-style-spacing-desktop {
    top: 30%;
  }

  .spasing-system-image-mobile {
    width: 70%;
  }

  .colors-container {
    grid-row-gap: 20px;
    flex-wrap: wrap;
  }

  .style-guide-body-wrapper {
    width: 100%;
  }

  .primary-button {
    display: block;
  }

  .primary-button.margin-top {
    margin-top: 30px;
  }

  .top-style-spacing-mobile {
    top: 3%;
  }

  .middlr-style-spacing-mobile {
    top: 26%;
  }

  .bottom-style-spacing-mobile {
    bottom: 6%;
  }

  .nav-container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .nav-menu {
    background-color: var(--dark-gray);
    flex-direction: column;
    width: 320px;
    inset: 0% auto 0% 0%;
  }

  .menu-button {
    text-align: right;
    background-color: #0000;
    padding: 0;
  }

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

  .nav-link {
    width: 100%;
    display: flex;
  }

  .nav-dropdown {
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    width: 100%;
    transition: opacity .5s;
    display: flex;
    overflow: hidden;
  }

  .nav-dropdown-toggle {
    align-items: center;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 0;
    display: flex;
  }

  .nav-dropdown-icon {
    color: var(--white);
    margin-right: 1.5px;
    display: block;
    inset: 0% 0 0% auto;
  }

  .nav-dropdown-list {
    border-style: none;
    flex-direction: column;
    width: auto;
    padding: 0 40px 0 20px;
    display: flex;
    position: static;
  }

  .nav-dropdown-list.w--open {
    box-shadow: none;
    padding-top: 0;
    padding-bottom: 0;
    display: flex;
    position: static;
  }

  .nav-dropdown-list.megamenu {
    width: auto;
    height: 270px;
    padding-left: 20px;
    padding-right: 40px;
    overflow: scroll;
  }

  .nav-dropdown-list.megamenu.w--open {
    margin-left: 0;
  }

  .nav-dropdown-link-wrapper {
    flex-flow: wrap;
    padding-right: 0;
  }

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

  .nav-dropdown-link {
    margin-left: 0;
    margin-right: 0;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .close-menu-button, .close-menu-button.w--open {
    background-color: #0000;
    padding: 0 20px 0 0;
  }

  .nav-close-icon {
    z-index: 15;
    align-self: stretch;
  }

  .pages-banner {
    min-height: 300px;
  }

  .licensing-grid, .licensing-grid.last-child {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .licensing-paragraph {
    width: 100%;
  }

  .coming-soon-wrapper {
    align-items: center;
    margin-right: 0;
  }

  .coming-soon-paragraph {
    text-align: center;
    margin-bottom: 30px;
  }

  .coming-soon-heading {
    text-align: center;
    font-size: 56px;
  }

  .blog-template-pagination {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    margin-top: 40px;
  }

  .section-title-wrapper {
    max-width: 560px;
  }

  .section-title-wrapper.margin-botton {
    margin-bottom: 40px;
  }

  .banner-title-wrapper.width {
    margin-top: 60px;
  }

  .pricing-plans-wrapper {
    flex-wrap: wrap;
    grid-template-columns: 1fr 1fr;
  }

  .pricing-plan-item {
    max-width: 360px;
  }

  .comparing-table-plan {
    margin-right: 15px;
  }

  .comparing-table-button-wrapper {
    padding-top: 35px;
  }

  .workflow-content-wrapper.width {
    width: 100%;
    padding-left: 0;
  }

  .workflow-video-wrapper.width {
    width: 100%;
    margin-bottom: 40px;
  }

  .workflow-wrapper.align-start {
    flex-direction: column;
  }

  .workflow-quote {
    margin-top: 10px;
  }

  .accordion-wrapper.service-details {
    margin-top: 40px;
  }

  .contacts-wrapper {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    flex-direction: column;
    align-items: center;
  }

  .contacts-content-wrapper {
    width: 100%;
  }

  .contacts-form-wrapper {
    width: 80%;
    margin-left: 0;
    padding: 30px;
  }

  .contacts-location-slider {
    padding-right: 70px;
  }

  .contacts-left-arrow {
    right: 41px;
  }

  .contacts-right-arrow {
    right: 0;
  }

  .contacts-arrows-divider {
    right: 40px;
  }

  .contacts-form-title {
    margin-bottom: 20px;
  }

  .contacts-title {
    margin-bottom: 40px;
  }

  .search-input:focus {
    border: 1px solid var(--primary);
  }

  .search-section {
    margin-bottom: 40px;
    padding-top: 100px;
  }

  .testimonials-card-wrapper {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    grid-template-rows: 1fr auto;
    grid-template-columns: 1fr 1fr;
  }

  .service-details-content-wrapper {
    width: 65%;
    margin-right: 20px;
  }

  .service-details-sidebar-wrapper {
    width: 35%;
    padding-left: 30px;
    padding-right: 30px;
    top: 80px;
  }

  .headings-container {
    flex-wrap: wrap;
  }

  .primary-button-white:hover {
    opacity: 1;
  }

  .style-guide-content-wrapper {
    grid-row-gap: 20px;
    flex-wrap: wrap;
  }

  .style-guide-content-wrapper.no-wrap {
    flex-wrap: nowrap;
  }

  .about-three-column-section {
    flex-wrap: wrap;
  }

  .about-first-column, .about-second-column {
    width: 50%;
  }

  .about-third-column {
    width: 100%;
    padding-top: 60px;
    padding-bottom: 60px;
    padding-left: 40px;
  }

  .about-third-column-description {
    margin-bottom: 30px;
  }

  .portfolio-tab-link {
    padding-left: 20px;
    padding-right: 20px;
  }

  .services-collection-list {
    column-count: 2;
    padding-left: 0;
    padding-right: 0;
  }

  .services-collection-item {
    width: 47.8%;
  }

  .nav-dropdown-column {
    justify-content: center;
    width: 180px;
  }

  .home-buttons-wrapper {
    margin-top: 40px;
  }

  .testimonials {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .blog-section-title {
    margin-bottom: 60px;
  }

  .contacts-wrapper-grid {
    padding-left: 15px;
    padding-right: 15px;
  }

  .section-title-center {
    margin-bottom: 60px;
  }

  .testimonials-card {
    width: 47.6%;
  }

  .flex-testimonials-wrapper {
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 0;
  }

  .testimonials-wrapper {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
    flex-wrap: wrap;
    width: 80%;
    margin-top: 20px;
  }

  .about-img._1 {
    top: 7%;
    left: 15px;
  }

  .about-img._5 {
    top: 58%;
    bottom: 0;
    left: 60px;
  }

  .about-img._3 {
    width: 360px;
    top: 0%;
    right: 15px;
  }

  .about-img._4 {
    width: 240px;
    top: 57%;
    left: auto;
    right: 15px;
  }

  .about-img._2 {
    z-index: 5;
    top: 30%;
    left: 35%;
  }

  .subtitle {
    margin-bottom: 30px;
  }

  .home-content-banner {
    width: 70%;
  }

  .content {
    margin-bottom: 0;
  }

  .industries-block-wrapper {
    max-width: 45vw;
  }

  .about-team-slide {
    width: 100%;
  }

  .nav-dropdown-link-line {
    display: none;
  }

  .subtitle-2 {
    margin-bottom: 30px;
  }

  .dropdown-nav-link {
    color: #222;
    padding-top: 12px;
    padding-bottom: 12px;
    font-family: Lato, sans-serif;
    font-weight: 700;
  }

  .dropdown-nav-link.w--current {
    color: #004ae2;
  }

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

  .menu-wrap {
    background-color: var(--dark-gray);
    flex-direction: column;
    align-items: flex-start;
    padding-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
    display: flex;
  }

  .home-banner-left-arrow {
    inset: 20% auto auto 4%;
  }

  .tablet-menu {
    background-color: var(--dark-gray);
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 15px;
    display: flex;
  }

  .brand-tablet {
    display: block;
  }

  .home-banner {
    text-align: center;
    align-items: center;
    width: 85%;
    padding-top: 20px;
    padding-bottom: 60px;
  }

  .shop-details-block {
    padding: 30px;
  }

  .image-preview {
    height: 280px;
  }

  .testimonials-bg-element {
    height: 20%;
  }

  .coming-soon-form-main {
    justify-content: center;
  }

  .spacing-system-title {
    font-size: 25px;
  }

  .underline.geen-nav {
    display: none;
  }

  .banner-mask {
    height: 100%;
    min-height: 300px;
  }

  .section-text-wrapper {
    max-width: 700px;
  }

  .slider-our-services {
    height: auto;
    padding-left: 0%;
  }

  .slider-content-wrapper {
    flex-direction: column-reverse;
    grid-template-rows: auto;
    grid-template-columns: auto;
    margin-bottom: 100px;
  }

  .arrow-circle.right {
    right: 70%;
  }

  .arrow-circle.slider {
    width: 50px;
    margin-top: 0;
  }

  .cms-slide-content {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }

  .mask-banner {
    padding-left: 0;
  }

  .grid-3-columns {
    flex-wrap: wrap;
    grid-template-columns: 1fr 1fr;
    justify-content: center;
    display: flex;
  }

  .features-card {
    width: 47.6%;
  }

  .clients-xsmall-wrapper {
    max-width: 100%;
  }

  .next-slide-image {
    width: 50%;
  }

  .margin-bottom-small.center {
    text-align: center;
  }

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

  .testimonials-slider-wrapper {
    max-width: 100%;
    margin-right: auto;
  }

  .section-testimonials {
    background-image: linear-gradient(52deg, var(--primary) 44%, #0f35900d), url('../images/map_1map.webp');
    background-position: 0 0, 100%;
    background-repeat: repeat, no-repeat;
    background-size: auto, cover;
    background-attachment: scroll, scroll;
  }

  .left-slide-content {
    width: 100%;
    margin-right: 0;
  }

  .banner-form {
    width: 65%;
    max-width: none;
  }

  .news-info-content {
    border-top-left-radius: 0;
    border-bottom-right-radius: 10px;
    align-items: center;
    width: 100%;
    padding-top: 20px;
    padding-right: 40px;
  }

  .form-book-contacts {
    height: auto;
  }

  .subscribe-title {
    text-align: center;
    width: 75%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-wrapper {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .slider-image-block {
    width: 100%;
    padding-left: 60px;
  }

  .nav-text-link {
    margin-left: 0;
  }

  .block-button-header {
    display: none;
  }

  .cart-block {
    align-items: center;
    margin-right: 0;
  }

  .cart-button {
    padding-bottom: 0;
  }

  .button-tablet-block {
    display: block;
  }

  .footer-wrapper {
    grid-column-gap: 20px;
    grid-row-gap: 60px;
    flex-wrap: wrap;
  }

  .footer-links-wrapper {
    width: 30%;
  }

  .footer-links-wrapper.text-align-left-half-width {
    width: 25%;
  }

  .footer-links-large-wrapper {
    width: 35%;
  }

  .nav-base-container-full-width {
    z-index: 10;
  }

  .footer-logo-wrapper {
    width: 50%;
  }

  .footer-social-icons-wrapper {
    margin-top: 0;
  }

  .footer-brand-wrapper {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
  }

  .footer-text-link {
    margin-left: 0;
  }

  .description-service {
    width: 85%;
  }

  .background-top {
    height: 80%;
  }

  .home-banner-mask-copy {
    text-align: center;
    align-items: center;
    width: 60%;
    margin-top: 40px;
  }

  .cta-image {
    max-width: 360px;
  }

  .cta-banner-mask {
    text-align: center;
    align-items: center;
    min-height: 400px;
    margin-top: 30px;
  }

  .cta-wrapper {
    flex-direction: column-reverse;
  }

  .home-banner-wrapper {
    flex-direction: column-reverse;
    padding-right: 10px;
  }

  .services-image-wrap {
    height: 350px;
  }

  .home-our-services-wrapper {
    flex-wrap: wrap;
  }

  .title-services-wrap {
    width: 95%;
  }

  .content-banner {
    width: 100%;
  }

  .hero-image-wrapper {
    height: 280px;
    min-height: 170px;
  }

  .inner-content-banner {
    width: 85%;
  }

  .card-content-wrapper {
    bottom: -1%;
  }

  .text-container {
    grid-column-gap: 20px;
  }

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

  .inner-button-wrapper {
    margin-top: 40px;
  }

  .background-botton {
    height: 80%;
  }

  .image-faq {
    object-position: 50% 20%;
    height: 400px;
  }

  .book-contact-us {
    height: auto;
    min-height: auto;
  }

  .blog-collection-list {
    column-count: 2;
    padding-left: 0;
    padding-right: 0;
  }

  .blog-collection-item {
    width: 47.8%;
  }

  .our-shop-collection-list {
    column-count: 2;
    padding-left: 0;
    padding-right: 0;
  }

  .our-shop-collection-list.center {
    justify-content: center;
  }

  .our-shop-collection-item {
    width: 47.8%;
  }

  .hover-slider-arrow {
    width: 100%;
    max-width: 45px;
    height: 100%;
    max-height: 45px;
  }

  .projects-arrow {
    justify-content: flex-start;
    width: 60px;
    height: 60px;
    min-height: auto;
    margin-left: auto;
    margin-right: auto;
    inset: auto 0 100px 90px;
  }

  .details-content-block {
    width: 100%;
  }

  .add-to-cart-details {
    margin-top: 0;
  }

  .heading-product {
    font-size: 48px;
  }

  .product-details-wrapper {
    grid-row-gap: 40px;
    flex-direction: column;
  }

  .quantity-block {
    margin-bottom: 0;
  }

  .lightbox-small-image {
    height: 200px;
  }

  .more-image-block {
    width: 100%;
    position: static;
  }

  .zoom-wrapper, .hover-circle-wrapper {
    display: none;
  }

  .column {
    flex: 0 auto;
    width: 100%;
  }

  .row {
    flex-wrap: wrap;
  }

  .order-item-wrap {
    grid-column-gap: 5px;
    grid-row-gap: 5px;
    flex-wrap: wrap;
  }

  .text-block-price {
    margin-left: 16px;
  }

  .nav-dropdown-icon-desktop {
    margin-right: 1.5px;
    display: none;
    inset: 0% 0 0% auto;
  }

  .hire-popup {
    max-width: 380px;
  }

  .hire-popup-wrap {
    display: none;
  }

  .cart-button-2 {
    padding-bottom: 0;
  }

  .primary-button-2 {
    display: block;
  }

  .hide-tablet {
    display: none;
  }

  .spacer-xxlarge {
    padding-top: 4.5rem;
  }

  .padding-xlarge {
    padding: 3.5rem;
  }

  .margin-xlarge {
    margin: 3.5rem;
  }

  .padding-vertical {
    padding-left: 0;
    padding-right: 0;
  }

  .padding-xxlarge {
    padding: 4.5rem;
  }

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

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

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

  .spacer-huge {
    padding-top: 5rem;
  }

  .margin-vertical {
    margin-left: 0;
    margin-right: 0;
  }

  .heading-style-h1 {
    font-size: 3.25rem;
  }

  .margin-huge {
    margin: 5rem;
  }

  .heading-style-h3 {
    font-size: 2.25rem;
  }

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

  .margin-xxhuge {
    margin: 7.5rem;
  }

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

  .rl-styleguide_icons-list {
    grid-auto-flow: row;
  }

  .spacer-xhuge {
    padding-top: 6rem;
  }

  .spacer-xxhuge {
    padding-top: 7.5rem;
  }

  .heading-style-h4 {
    font-size: 1.75rem;
  }

  .max-width-full-tablet {
    width: 100%;
    max-width: none;
  }

  .padding-xhuge {
    padding: 6rem;
  }

  .margin-xhuge {
    margin: 6rem;
  }

  .padding-large {
    padding: 2.5rem;
  }

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

  .margin-xxlarge {
    margin: 4.5rem;
  }

  .spacer-xlarge {
    padding-top: 3.5rem;
  }

  .spacer-large {
    padding-top: 2.5rem;
  }

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

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

  .margin-horizontal {
    margin-top: 0;
    margin-bottom: 0;
  }

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

  .margin-large {
    margin: 2.5rem;
  }

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

  .padding-xxhuge {
    padding: 7.5rem;
  }

  .heading-style-h2 {
    font-size: 2.75rem;
  }

  .padding-huge {
    padding: 5rem;
  }

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

  .layout12_component, .residential_feature-1_component {
    grid-column-gap: 3rem;
    grid-template-columns: 1fr 1fr;
    grid-auto-flow: row;
    min-height: auto;
  }

  .residential_feature-3_list {
    grid-column-gap: 2rem;
  }

  .cta1_component {
    grid-row-gap: 4rem;
    grid-template-columns: 1fr;
    grid-auto-flow: row;
    min-height: auto;
  }

  .modal1_content-wrapper, .modal1_content-wrapper-2 {
    width: 90%;
    max-width: none;
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .layout194_component, .layout1_component {
    grid-column-gap: 3rem;
    grid-template-columns: 1fr 1fr;
    grid-auto-flow: row;
    min-height: auto;
  }

  .layout90_component {
    grid-column-gap: 3rem;
    grid-row-gap: 2rem;
  }

  .team6_list {
    grid-column-gap: 2rem;
  }

  .layout22_component, .layout213_component {
    grid-column-gap: 3rem;
    grid-template-columns: 1fr 1fr;
    grid-auto-flow: row;
    min-height: auto;
  }

  .privacy-banner {
    width: 85%;
  }
}

@media screen and (max-width: 767px) {
  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 28px;
  }

  h4 {
    font-size: 26px;
  }

  blockquote {
    font-size: 22px;
  }

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

  .section.banner-testimonials {
    padding-top: 80px;
  }

  .section.without-top-spacing {
    padding-top: 0;
  }

  .grid-system-wrapper {
    flex-direction: row;
    margin-top: 15px;
  }

  .grid-system {
    border-left: 1px solid #7c7c7c;
    flex-direction: column;
  }

  .grid-title {
    border-bottom: 1px solid #7c7c7c;
    border-right-style: none;
    width: 100%;
  }

  .grid-title.first-grid {
    border-left-style: none;
    border-right-style: none;
    width: 100%;
  }

  .grid-description {
    border-top: 1px solid #a7a7a7;
    border-bottom-style: none;
    border-right-width: 1px;
    align-items: center;
    width: 100%;
  }

  .grid-description.first-description {
    border-width: 1px 1px .5px 0;
    border-top-style: none;
    border-top-color: #a7a7a7;
    border-bottom-style: none;
    border-left-style: none;
    width: 100%;
  }

  .grid-description.last-description {
    border-bottom-style: solid;
    border-bottom-width: 1px;
    border-right-width: 1px;
  }

  .spacing-system-column {
    margin-top: 20px;
  }

  .spacing-wrapper-mobile {
    margin-top: 30px;
  }

  .typography-wrapper {
    margin-top: 20px;
  }

  .spacing-columns {
    margin-top: 0;
  }

  .bottom-style-spacing-desktop {
    bottom: 10%;
  }

  .top-style-spacing-desktop {
    top: 10%;
  }

  .spacing-wrapper {
    margin-top: 30px;
  }

  .middle-style-spacing-desktop {
    top: 34%;
  }

  .colors-container {
    margin-top: 20px;
  }

  .headings-typography-wrapper {
    width: 100%;
  }

  .headers-wrapper {
    width: 100%;
    margin-top: 10px;
  }

  .style-guide-body-wrapper, .primary-button.full-width-mobile, .primary-button.search-button {
    width: 100%;
  }

  .style-guide-div {
    grid-row-gap: 40px;
  }

  .top-style-spacing-mobile {
    top: 7%;
  }

  .middlr-style-spacing-mobile {
    top: 31%;
  }

  .bottom-style-spacing-mobile {
    bottom: 9%;
  }

  .grid-header {
    width: 100%;
    margin-top: 20px;
  }

  .link-wrapper {
    width: 100%;
    margin-bottom: 10px;
  }

  .nav-link {
    margin-left: 0;
  }

  .licensing-title-wrapper {
    margin-bottom: 20px;
  }

  .licensing-images-wrapper {
    padding-top: 10px;
  }

  .licensing-grid {
    grid-template-columns: 1fr 1fr;
    padding-bottom: 40px;
  }

  .licensing-grid.last-child {
    grid-template-columns: 1fr 1fr;
  }

  .licensing-title {
    padding-bottom: 20px;
  }

  .licensing-fonts-wrapper {
    flex-wrap: wrap;
  }

  .licensing-paragraph {
    width: 100%;
    margin-bottom: 20px;
    margin-right: 0;
  }

  .licensing-font-title {
    margin-bottom: 10px;
  }

  .licensing-icons-wrapper {
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .utility-page-content {
    width: 70%;
  }

  .password-image {
    width: 100px;
  }

  .password-input {
    min-width: auto;
  }

  ._404-paragraph {
    margin-bottom: 30px;
  }

  .coming-soon-wrapper {
    margin-left: 0%;
  }

  .coming-soon-input {
    min-width: 280px;
  }

  .coming-soon-heading {
    font-size: 44px;
  }

  .footer {
    padding-top: 60px;
  }

  .footer-bottom-wrapper {
    flex-wrap: wrap;
  }

  .section-title-wrapper {
    margin-bottom: 40px;
  }

  .style-guide-buttons-wrapper {
    flex-wrap: wrap;
    margin-top: 35px;
  }

  .style-guide-button-wrapper {
    width: 100%;
  }

  .style-guide-button-wrapper.last-child {
    margin-bottom: 0;
  }

  .banner-title-wrapper.width {
    margin-top: 40px;
  }

  .pricing-plans-wrapper {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .pricing-plan-item {
    max-width: none;
  }

  .pricing-plan-list {
    align-items: center;
  }

  .comparing-table-plans-wrapper {
    flex-wrap: wrap;
  }

  .comparing-table-plan-title {
    min-height: 140px;
  }

  .comparing-table-plan {
    width: 100%;
    margin-bottom: 30px;
    margin-right: 0;
  }

  .workflow-profile-wrapper {
    justify-content: center;
    margin-top: 20px;
  }

  .workflow-content-wrapper {
    text-align: center;
    width: 100%;
    margin-top: 40px;
    padding-left: 0;
  }

  .workflow-content-wrapper.width {
    margin-top: 0;
  }

  .workflow-video-wrapper {
    width: 100%;
  }

  .workflow-video-wrapper.width {
    margin-bottom: 30px;
  }

  .workflow-wrapper {
    flex-wrap: wrap;
  }

  .accordion-wrapper {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-direction: column;
  }

  .accordion-wrap {
    width: 100%;
    margin-right: 0;
  }

  .contacts-wrapper {
    flex-wrap: wrap;
  }

  .contacts-content-wrapper {
    width: 100%;
    padding-right: 0;
  }

  .contacts-form-wrapper {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }

  .contacts-location-slider {
    padding-right: 100px;
  }

  .contacts-title, .search-result-item {
    margin-bottom: 20px;
  }

  .testimonials-card-wrapper {
    column-count: 1;
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .service-details-content-wrapper {
    width: 100%;
    margin-right: 0;
  }

  .service-details-sidebar-wrapper {
    width: 100%;
    margin-top: 40px;
    position: static;
  }

  .service-details-content {
    flex-wrap: wrap;
  }

  .accordion-wrapper-one-column {
    width: 100%;
  }

  .headings-container {
    grid-row-gap: 30px;
  }

  .about-first-column {
    padding: 60px 15px;
  }

  .about-third-column {
    padding-top: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .about-tab-link.w--current {
    font-size: 20px;
  }

  .portfolio-tab-link.all-projects {
    margin-right: 0;
  }

  .tabs-menu {
    flex-wrap: wrap;
    justify-content: center;
  }

  .services-collection-list {
    column-count: 1;
    column-rule-width: 0px;
    column-gap: 30px;
  }

  .services-collection-item {
    width: 100%;
  }

  .services-collection-item:last-child {
    margin-bottom: 0;
  }

  .services-list-image, .services-image-link {
    width: 100%;
  }

  .home-buttons-wrapper.left {
    margin-top: 20px;
  }

  .testimonials {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .blog-section-title {
    margin-bottom: 40px;
  }

  .contacts-wrapper-grid {
    grid-column-gap: 20px;
    grid-row-gap: 40px;
    grid-template-columns: 1fr;
  }

  .section-title-center {
    margin-bottom: 40px;
  }

  .testimonials-card {
    width: 100%;
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .flex-testimonials-wrapper {
    width: 100%;
  }

  .testimonial-icon {
    top: -15px;
  }

  .testimonials-wrapper {
    width: 100%;
  }

  .about-img {
    width: 100%;
    max-height: 420px;
  }

  .about-img._1, .about-img._5, .about-img._3, .about-img._4, .about-img._2 {
    width: 100%;
    position: static;
  }

  .subtitle {
    line-height: 16px;
  }

  .our-services-wrap {
    grid-row-gap: 10px;
    width: 100%;
  }

  .home-content-banner {
    width: 100%;
  }

  .content-wrapper {
    flex-wrap: wrap;
    width: auto;
  }

  .industries-block-wrapper {
    max-width: none;
  }

  .home-team-item {
    width: 48%;
  }

  .search {
    flex-direction: column;
  }

  .subtitle-2 {
    line-height: 16px;
  }

  .rich-text-style h2 {
    font-size: 28px;
  }

  .rich-text-style h3 {
    font-size: 26px;
  }

  .home-banner-left-arrow {
    top: 6%;
  }

  .home-23-team-item {
    width: 70%;
  }

  .brand-tablet {
    justify-content: flex-start;
    padding-left: 0;
  }

  .brand {
    padding-left: 0;
  }

  .home-banner {
    width: 100%;
  }

  .shop-details-block {
    margin-top: 60px;
  }

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

  .typography-hero-wrapper {
    grid-row-gap: 40px;
    margin-top: 20px;
  }

  .arrow-circle {
    left: 3%;
  }

  .arrow-circle.right {
    right: 59%;
  }

  .text-color-white.margin-bottom-large {
    margin-bottom: 40px;
  }

  .image-banner {
    object-position: 80% 50%;
  }

  .banner-slide-image {
    width: 80%;
    height: 400px;
  }

  .intro-paragraph {
    width: 90%;
    font-size: 28px;
  }

  .span-avatar {
    margin-bottom: -1.7rem;
    bottom: .725rem;
  }

  .big-container {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .grid-3-columns {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .features-card {
    width: 100%;
  }

  .flex-horizontal-justify-start.mobile-justify-center {
    justify-content: center;
  }

  .next-slide-image {
    width: 20%;
  }

  .image-next {
    height: 300px;
  }

  .video-center-wrapper {
    top: 40%;
  }

  .video-right-wrapper {
    padding-top: 40px;
    padding-left: 10px;
  }

  .video-left-wrapper {
    padding-right: 10px;
  }

  .quote-top-wrap {
    align-items: center;
  }

  .section-testimonials {
    background-image: linear-gradient(63deg, var(--primary) 44%, #0f35900d), url('../images/map_1map.webp');
    background-position: 0 0, 100%;
    background-repeat: repeat, no-repeat;
    background-size: auto, cover;
    background-attachment: scroll, scroll;
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .testimonials-content {
    flex: none;
    width: 100%;
  }

  .margin-botton-large {
    margin-bottom: 40px;
  }

  .banner-form {
    width: 70%;
  }

  .cta-description {
    width: 90%;
  }

  .news-info-content {
    padding: 10px 15px 30px;
  }

  .subscribe-title {
    width: 90%;
  }

  .hero-wrapper {
    background-image: linear-gradient(to right, #0b2936e6 47%, #0b29361a), url('../images/male-electrician-works.webp');
    background-position: 0 0, 50%;
    background-repeat: repeat, no-repeat;
    background-size: auto, cover;
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .slider-image-block {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    padding-left: 0;
  }

  .footer-logo-holder {
    padding-left: 0;
  }

  .footer-wrapper {
    grid-row-gap: 40px;
  }

  .footer-links-wrapper {
    width: 40%;
  }

  .footer-links-wrapper.text-align-left-half-width {
    width: 46%;
  }

  .footer-links-large-wrapper {
    align-items: center;
    width: 100%;
  }

  .footer-brand-description {
    text-align: center;
  }

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

  .footer-social-icons-wrapper {
    width: 100%;
    margin-top: 30px;
  }

  .footer-brand-wrapper {
    flex-wrap: wrap;
  }

  .footer-brand-wrapper.mobile-landscape-justify-center {
    justify-content: center;
  }

  .button {
    margin-top: 0;
  }

  .description-service {
    width: 100%;
  }

  .home-banner-mask-copy {
    width: 80%;
    min-height: 300px;
  }

  .cta-banner-mask {
    width: 60%;
    min-height: 300px;
    margin-top: 20px;
  }

  .home-banner-wrapper {
    padding-left: 0;
    padding-right: 0;
  }

  .services-image-wrap {
    margin-top: 40px;
  }

  .services-image-wrap.margin-botton {
    margin-bottom: 40px;
  }

  .home-btn-wrap {
    margin-top: 30px;
    margin-bottom: 0;
  }

  .content-banner {
    width: 100%;
  }

  .hero-image-wrapper {
    height: 200px;
    margin-top: 40px;
  }

  .hero-image-wrapper.template {
    margin-top: 30px;
  }

  .inner-content-banner {
    width: 100%;
  }

  .inner-wrapper {
    background-image: linear-gradient(to right, #0b2936d9 30%, #0b29368c 100%, #0b29361a), url('../images/male-electrician-works-switchboard.webp');
    background-position: 0 0, 50%;
    background-repeat: repeat, no-repeat;
    background-size: auto, cover;
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .title-container {
    width: 100%;
  }

  .description-container {
    justify-content: flex-start;
    width: 100%;
  }

  .text-container {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-direction: column;
    margin-bottom: 30px;
  }

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

  .team-member-card-image {
    height: 500px;
  }

  .background-botton {
    height: 90%;
  }

  .blog-collection-list {
    column-count: 1;
    column-rule-width: 0px;
    column-gap: 30px;
  }

  .blog-collection-item {
    width: 100%;
  }

  .blog-collection-item:last-child {
    margin-bottom: 0;
  }

  .our-shop-collection-list {
    column-count: 1;
    column-rule-width: 0px;
    column-gap: 30px;
  }

  .our-shop-collection-item {
    width: 100%;
  }

  .our-shop-collection-item:last-child {
    margin-bottom: 0;
  }

  .shop-image-link {
    width: 100%;
  }

  .heading-product {
    font-size: 40px;
  }

  .product-details-wrapper {
    grid-row-gap: 40px;
  }

  .product-item, .product-item.right, .product-1-item, .product-1-item.right, .product-item-003 {
    width: 100%;
  }

  .text-block-404 {
    font-size: 140px;
  }

  .hire-popup {
    display: none;
  }

  .hire-buttons-wrap {
    grid-row-gap: 20px;
    flex-flow: column wrap;
    align-items: stretch;
  }

  .spacer-xxlarge {
    padding-top: 3rem;
  }

  .padding-xlarge {
    padding: 2.5rem;
  }

  .margin-xlarge {
    margin: 2.5rem;
  }

  .padding-vertical {
    padding-left: 0;
    padding-right: 0;
  }

  .padding-xxlarge {
    padding: 3rem;
  }

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

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

  .spacer-medium {
    padding-top: 1.5rem;
  }

  .margin-xsmall {
    margin: .75rem;
  }

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

  .padding-small {
    padding: 1.25rem;
  }

  .spacer-huge {
    padding-top: 3.5rem;
  }

  .margin-vertical {
    margin-left: 0;
    margin-right: 0;
  }

  .heading-style-h1 {
    font-size: 2.5rem;
  }

  .spacer-small {
    padding-top: 1.25rem;
  }

  .margin-huge {
    margin: 3.5rem;
  }

  .heading-style-h6 {
    font-size: 1.125rem;
  }

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

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

  .margin-xxhuge {
    margin: 5rem;
  }

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

  .spacer-xhuge {
    padding-top: 4rem;
  }

  .spacer-xxhuge {
    padding-top: 5rem;
  }

  .heading-style-h5 {
    font-size: 1.25rem;
  }

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

  .padding-xhuge {
    padding: 4rem;
  }

  .text-style-quote {
    font-size: 1.125rem;
  }

  .margin-xhuge {
    margin: 4rem;
  }

  .text-style-nowrap {
    white-space: normal;
  }

  .padding-large {
    padding: 2rem;
  }

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

  .padding-xsmall {
    padding: .75rem;
  }

  .text-size-large {
    font-size: 1.125rem;
  }

  .hide-mobile-landscape {
    display: none;
  }

  .margin-xxlarge {
    margin: 3rem;
  }

  .spacer-xlarge {
    padding-top: 2.5rem;
  }

  .spacer-large {
    padding-top: 2rem;
  }

  .spacer-xsmall {
    padding-top: .75rem;
  }

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

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

  .margin-horizontal {
    margin-top: 0;
    margin-bottom: 0;
  }

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

  .max-width-full-mobile-landscape {
    width: 100%;
    max-width: none;
  }

  .margin-large {
    margin: 2rem;
  }

  .margin-medium {
    margin: 1.5rem;
  }

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

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

  .padding-xxhuge {
    padding: 5rem;
  }

  .heading-style-h2 {
    font-size: 2.25rem;
  }

  .padding-medium {
    padding: 1.5rem;
  }

  .padding-huge {
    padding: 3.5rem;
  }

  .margin-small {
    margin: 1.25rem;
  }

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

  .padding-section-small {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .layout12_component, .residential_feature-1_component, .residential_feature-3_list {
    grid-row-gap: 3rem;
    grid-template-columns: 1fr;
  }

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

  .residential_faq_icon-wrapper {
    width: 1.75rem;
  }

  .residential_faq_component {
    grid-column-gap: 0rem;
    grid-row-gap: 1rem;
    grid-template-columns: 1fr;
  }

  .residential_faq_question {
    padding: 1rem 1.25rem;
  }

  .cta1_component {
    grid-row-gap: 3rem;
  }

  .show-mobile-landscape {
    display: block;
  }

  .modal1_content-wrapper {
    width: 100%;
    height: 100vh;
    max-height: none;
    padding-bottom: 7rem;
    padding-left: 5%;
    padding-right: 5%;
  }

  .modal1_component {
    align-items: flex-start;
  }

  .modal1_content-wrapper-2 {
    width: 100%;
    height: 100vh;
    max-height: none;
    padding-bottom: 7rem;
    padding-left: 5%;
    padding-right: 5%;
  }

  .modal1_component-2 {
    align-items: flex-start;
  }

  .layout194_component, .layout1_component {
    grid-row-gap: 3rem;
    grid-template-columns: 1fr;
  }

  .layout90_component {
    grid-column-gap: 1.25rem;
    grid-row-gap: 1.25rem;
    grid-template-columns: 1fr;
  }

  .team6_list {
    grid-row-gap: 3rem;
    grid-template-columns: 1fr;
  }

  .team6_image-wrapper {
    height: 100%;
  }

  .layout22_component, .layout213_component {
    grid-row-gap: 3rem;
    grid-template-columns: 1fr;
  }

  .privacy-banner {
    width: 100%;
  }
}

@media screen and (max-width: 479px) {
  .section.banner-testimonials {
    padding-bottom: 40px;
  }

  .grid-system-wrapper {
    flex-direction: row;
  }

  .grid-system {
    flex-direction: column;
    width: 50%;
  }

  .grid-title {
    align-items: center;
  }

  .grid-title.first-grid {
    text-align: center;
    flex: 1;
    width: 100%;
  }

  .grid-description {
    border-bottom-width: 1px;
    border-bottom-color: #fff3;
  }

  .grid-description.first-description {
    border-bottom: 1px #fff3;
    border-left-style: none;
    border-right-style: solid;
  }

  .grid-description.last-description {
    border-bottom-color: #a7a7a7;
  }

  .bottom-style-spacing-desktop {
    bottom: 8%;
  }

  .top-style-spacing-desktop {
    top: 7%;
  }

  .middle-style-spacing-desktop {
    top: 32%;
  }

  .primary-button.full-width-mobile {
    width: 100%;
  }

  .top-style-spacing-mobile {
    top: 5%;
  }

  .middlr-style-spacing-mobile {
    top: 28%;
  }

  .bottom-style-spacing-mobile {
    bottom: 8%;
  }

  .nav-menu {
    width: 90%;
  }

  .nav-dropdown-list.megamenu {
    padding-right: 0;
  }

  .licensing-title-wrapper {
    grid-column-gap: 20px;
    flex-wrap: wrap;
  }

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

  .license-link {
    margin-right: 15px;
  }

  .utility-page-content {
    width: 100%;
  }

  ._404-content-wrapper {
    padding-left: 15px;
    padding-right: 15px;
  }

  .coming-soon-form {
    flex-wrap: wrap;
    justify-content: center;
  }

  .coming-soon-input {
    min-width: auto;
  }

  .coming-soon-paragraph {
    text-align: center;
    margin-top: 10px;
    margin-bottom: 20px;
  }

  .coming-soon-heading {
    font-size: 32px;
  }

  .blog-template-pagination {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .blog-template-prev-button, .blog-template-next-button {
    flex: none;
    width: 100%;
  }

  .footer {
    text-align: left;
  }

  .footer-bottom-wrapper {
    flex-wrap: wrap;
  }

  .section-title-wrapper.margin-botton {
    margin-bottom: 30px;
  }

  .pricing-plan-item {
    padding: 20px 30px;
  }

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

  .comparing-table-plan.last-child {
    margin-bottom: 0;
  }

  .workflow-content-wrapper {
    margin-top: 20px;
  }

  .contacts-location-slider {
    padding-right: 70px;
  }

  .style-guide-content-wrapper.no-wrap {
    flex-wrap: wrap;
  }

  .about-first-column {
    text-align: center;
    width: 100%;
    padding-bottom: 40px;
  }

  .about-second-column {
    width: 100%;
    min-height: 280px;
  }

  .about-tab-link {
    font-size: 16px;
  }

  .about-tab-link.w--current {
    font-size: 18px;
  }

  .portfolio-tab-link {
    text-align: center;
  }

  .home-buttons-wrapper {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 30px;
  }

  .home-buttons-wrapper.left {
    justify-content: flex-start;
  }

  .section-title-center {
    margin-bottom: 20px;
  }

  .our-services-wrap, .home-team-item, .home-23-team-item {
    width: 100%;
  }

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

  .brand-tablet {
    padding-left: 0;
  }

  .footer-rights-wrapper {
    grid-row-gap: 5px;
    justify-content: center;
  }

  .position-relative {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }

  .coming-soon-form-main {
    flex-wrap: wrap;
    justify-content: center;
  }

  .slider-content-wrapper {
    padding-left: 18px;
    padding-right: 18px;
  }

  .arrow-circle {
    left: 4%;
  }

  .arrow-circle.right {
    right: 43%;
  }

  .arrow-circle.slider {
    bottom: 0%;
  }

  .arrow-circle.slider-left {
    bottom: 0%;
    right: 27%;
  }

  .image-banner {
    object-position: 50% 50%;
  }

  .banner-slide-image {
    width: 85%;
  }

  .intro-paragraph {
    width: 95%;
    font-size: 24px;
  }

  .span-avatar {
    width: 3rem;
    height: 3rem;
  }

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

  .features-icon-image {
    margin-bottom: 15px;
  }

  .features-card {
    padding-left: 20px;
    padding-right: 20px;
  }

  .clients-image {
    height: 30px;
  }

  .clients-large-wrapper {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .clients-xsmall-wrapper.white {
    padding: 10px 20px;
  }

  .next-slide-image {
    width: 15%;
  }

  .video-grid-wrapper {
    grid-row-gap: 30px;
    overflow: hidden;
  }

  .hero-testimonials-slide {
    margin-bottom: 100px;
  }

  .section-testimonials {
    background-image: linear-gradient(73deg, var(--primary) 44%, #0c2b41e0 66%, #0f35900d), url('../images/map_1map.webp');
    background-position: 0 0, 100%;
    background-repeat: repeat, no-repeat;
    background-size: auto, cover;
    background-attachment: scroll, scroll;
  }

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

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

  .list {
    list-style: none;
  }

  .pricing-icon-image.center {
    margin-top: 15px;
  }

  .banner-form {
    width: 100%;
  }

  .banner-form-text-field, .banner-form-text-field::placeholder {
    font-size: 18px;
  }

  .cta-description, .subscribe-title {
    width: 100%;
  }

  .hero-wrapper {
    background-image: linear-gradient(to right, #0b2936e6 60%, #0b293699), url('../images/male-electrician-works.webp');
    background-position: 0 0, 0%;
    background-repeat: repeat, no-repeat;
    background-size: auto, cover;
  }

  .description-banner {
    width: 100%;
  }

  .footer-copyright {
    text-align: center;
    justify-content: center;
    width: 100%;
    line-height: 1.6em;
  }

  .footer-links-wrap {
    align-items: center;
  }

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

  .footer-links-wrapper.text-align-left-half-width {
    text-align: center;
  }

  .footer-links-large-wrapper {
    align-items: center;
    width: 100%;
  }

  .footer-rights {
    text-align: center;
    line-height: 1.6em;
  }

  .all-contacts-wrapper.contact-wrapper-align-center {
    align-items: center;
  }

  .work-hours, .footer-links {
    text-align: center;
  }

  .footer-social-icons-wrapper {
    grid-column-gap: 30px;
    justify-content: center;
    margin-top: 30px;
  }

  .footer-social-icons-wrapper.small-gap-mobile-center {
    justify-content: center;
  }

  .footer-brand-wrapper {
    flex-direction: column;
  }

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

  .home-banner-mask-copy {
    width: 100%;
  }

  .cta-banner-mask {
    width: 80%;
  }

  .services-image-wrap {
    height: 250px;
  }

  .hero-image-wrapper {
    height: 170px;
  }

  .member-socials-wrap {
    margin-top: 10px;
  }

  .team-member-card-image {
    height: 400px;
  }

  .inner-button-wrapper {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 30px;
  }

  .cart-container {
    border-radius: 0;
  }

  .lightbox-small-image {
    height: 150px;
  }

  .lightbox-main-image {
    height: 300px;
  }

  .hover-circle-wrapper {
    padding: 40px;
  }

  .block-header {
    flex-direction: column;
    padding-bottom: 10px;
  }

  .div-block-2 {
    max-width: 110%;
  }

  .max-width-full-mobile-portrait {
    width: 100%;
    max-width: none;
  }

  .padding-vertical {
    padding-left: 0;
    padding-right: 0;
  }

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

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

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

  .margin-vertical {
    margin-left: 0;
    margin-right: 0;
  }

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

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

  .hide-mobile-portrait {
    display: none;
  }

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

  .margin-horizontal {
    margin-top: 0;
    margin-bottom: 0;
  }

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

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

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

  .layout12_component, .layout12_item-list, .residential_feature-1_component, .residential_feature-3_list, .residential_faq_component, .cta1_component {
    grid-template-columns: 1fr;
  }

  .modal1_component, .modal1_component-2 {
    display: none;
  }

  .layout194_component, .layout1_component, .layout90_component, .team6_list {
    grid-template-columns: 1fr;
  }

  .team6_image-wrapper {
    padding-top: 66%;
  }

  .layout22_component, .layout213_component {
    grid-template-columns: 1fr;
  }

  .text-block-405 {
    padding: 16px;
  }
}

#w-node-_04d0f5f7-6928-74d0-e05d-4114564a76c3-a5c51e5b, #w-node-_6a078d37-a03b-58b0-5746-bd390040e948-a5c51ea5, #w-node-_6a078d37-a03b-58b0-5746-bd390040e94a-a5c51ea5, #w-node-_6a078d37-a03b-58b0-5746-bd390040e94c-a5c51ea5, #w-node-_6a078d37-a03b-58b0-5746-bd390040e94e-a5c51ea5, #w-node-_6a078d37-a03b-58b0-5746-bd390040e950-a5c51ea5, #w-node-_6a078d37-a03b-58b0-5746-bd390040e953-a5c51ea5, #w-node-_6a078d37-a03b-58b0-5746-bd390040e955-a5c51ea5, #w-node-_6a078d37-a03b-58b0-5746-bd390040e957-a5c51ea5, #w-node-_6a078d37-a03b-58b0-5746-bd390040e959-a5c51ea5, #w-node-_6a078d37-a03b-58b0-5746-bd390040e95b-a5c51ea5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea260d-bd135639 {
  justify-self: start;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea260f-bd135639 {
  justify-self: center;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2623-bd135639 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2624-bd135639 {
  justify-self: start;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2628-bd135639 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2629-bd135639 {
  justify-self: start;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea262d-bd135639 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea262e-bd135639 {
  justify-self: start;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2632-bd135639 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2633-bd135639 {
  justify-self: start;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2637-bd135639 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2638-bd135639 {
  justify-self: start;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea263c-bd135639 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea263d-bd135639 {
  justify-self: start;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2647-bd135639 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2648-bd135639 {
  justify-self: start;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea264c-bd135639 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea264d-bd135639 {
  justify-self: start;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2651-bd135639 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2652-bd135639 {
  justify-self: start;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2656-bd135639 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2657-bd135639 {
  justify-self: start;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea265b-bd135639 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea265c-bd135639 {
  justify-self: start;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2660-bd135639 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2661-bd135639 {
  justify-self: start;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea266b-bd135639 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea266c-bd135639 {
  justify-self: start;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2670-bd135639 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2671-bd135639 {
  justify-self: start;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2675-bd135639 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2676-bd135639 {
  justify-self: start;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea267a-bd135639 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea267b-bd135639 {
  justify-self: start;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2684-bd135639 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2685-bd135639 {
  justify-self: start;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea268e-bd135639 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea268f-bd135639 {
  justify-self: start;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea26a1-bd135639 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea26a2-bd135639 {
  justify-self: start;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea26a6-bd135639 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea26a7-bd135639 {
  justify-self: start;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea26ab-bd135639 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea26ac-bd135639 {
  justify-self: start;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea26b0-bd135639 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea26b1-bd135639 {
  justify-self: start;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea26b5-bd135639 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea26b6-bd135639 {
  justify-self: start;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea26c0-bd135639 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea26c1-bd135639 {
  justify-self: start;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea26c5-bd135639 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea26c6-bd135639 {
  justify-self: start;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea26ca-bd135639 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea26cb-bd135639 {
  justify-self: start;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea26cf-bd135639 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea26d0-bd135639 {
  justify-self: start;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea26d4-bd135639 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea26d5-bd135639 {
  justify-self: start;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea26d9-bd135639 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea26da-bd135639 {
  justify-self: start;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea26e5-bd135639 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea26e6-bd135639 {
  justify-self: start;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea26ea-bd135639 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea26eb-bd135639 {
  justify-self: start;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea26ef-bd135639 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea26f0-bd135639 {
  justify-self: start;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea26f4-bd135639 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea26f5-bd135639 {
  justify-self: start;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea26f9-bd135639 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea26fa-bd135639 {
  justify-self: start;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea26fe-bd135639 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea26ff-bd135639 {
  justify-self: start;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2703-bd135639 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2704-bd135639 {
  justify-self: start;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2708-bd135639 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2709-bd135639 {
  justify-self: start;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea270d-bd135639 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea270e-bd135639 {
  justify-self: start;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2718-bd135639 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2719-bd135639 {
  justify-self: start;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea271d-bd135639 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea271e-bd135639 {
  justify-self: start;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2722-bd135639 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2723-bd135639 {
  justify-self: start;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea272a-bd135639 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea272b-bd135639 {
  justify-self: start;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea276c-bd135639, #w-node-_46807333-c889-78d8-3997-eaf2c8ea276f-bd135639, #w-node-_46807333-c889-78d8-3997-eaf2c8ea2770-bd135639, #w-node-_46807333-c889-78d8-3997-eaf2c8ea2773-bd135639, #w-node-_46807333-c889-78d8-3997-eaf2c8ea2774-bd135639, #w-node-_46807333-c889-78d8-3997-eaf2c8ea2777-bd135639, #w-node-_46807333-c889-78d8-3997-eaf2c8ea277b-bd135639, #w-node-_46807333-c889-78d8-3997-eaf2c8ea277c-bd135639, #w-node-_46807333-c889-78d8-3997-eaf2c8ea277f-bd135639, #w-node-_46807333-c889-78d8-3997-eaf2c8ea2780-bd135639, #w-node-_46807333-c889-78d8-3997-eaf2c8ea2783-bd135639, #w-node-_46807333-c889-78d8-3997-eaf2c8ea278a-bd135639 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea278b-bd135639 {
  justify-self: start;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2790-bd135639 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2791-bd135639 {
  justify-self: start;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2795-bd135639 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2796-bd135639 {
  justify-self: start;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea279a-bd135639 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea279b-bd135639 {
  justify-self: start;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea279f-bd135639 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea27a0-bd135639 {
  justify-self: start;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea27b0-bd135639, #w-node-_46807333-c889-78d8-3997-eaf2c8ea27b3-bd135639, #w-node-_46807333-c889-78d8-3997-eaf2c8ea27b4-bd135639, #w-node-_46807333-c889-78d8-3997-eaf2c8ea27b7-bd135639, #w-node-_46807333-c889-78d8-3997-eaf2c8ea27b8-bd135639, #w-node-_46807333-c889-78d8-3997-eaf2c8ea27bb-bd135639, #w-node-_46807333-c889-78d8-3997-eaf2c8ea27bc-bd135639, #w-node-_46807333-c889-78d8-3997-eaf2c8ea27c0-bd135639, #w-node-_46807333-c889-78d8-3997-eaf2c8ea27c3-bd135639, #w-node-_46807333-c889-78d8-3997-eaf2c8ea27c4-bd135639, #w-node-_46807333-c889-78d8-3997-eaf2c8ea27c7-bd135639, #w-node-_46807333-c889-78d8-3997-eaf2c8ea27c8-bd135639, #w-node-_46807333-c889-78d8-3997-eaf2c8ea27cb-bd135639, #w-node-_46807333-c889-78d8-3997-eaf2c8ea27d3-bd135639, #w-node-_46807333-c889-78d8-3997-eaf2c8ea27d4-bd135639 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea27d5-bd135639 {
  justify-self: start;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea27d7-bd135639, #w-node-_46807333-c889-78d8-3997-eaf2c8ea27da-bd135639, #w-node-_46807333-c889-78d8-3997-eaf2c8ea27db-bd135639 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea27dc-bd135639 {
  justify-self: start;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea27e0-bd135639, #w-node-_46807333-c889-78d8-3997-eaf2c8ea27e3-bd135639, #w-node-_46807333-c889-78d8-3997-eaf2c8ea27e4-bd135639 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea27e5-bd135639 {
  justify-self: start;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea27e9-bd135639, #w-node-_46807333-c889-78d8-3997-eaf2c8ea27ed-bd135639 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea27ee-bd135639 {
  justify-self: start;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea27f4-bd135639, #w-node-_46807333-c889-78d8-3997-eaf2c8ea27f7-bd135639, #w-node-_46807333-c889-78d8-3997-eaf2c8ea27f8-bd135639 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea27f9-bd135639 {
  justify-self: start;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea27fd-bd135639, #w-node-_46807333-c889-78d8-3997-eaf2c8ea2800-bd135639, #w-node-_46807333-c889-78d8-3997-eaf2c8ea2801-bd135639 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2802-bd135639 {
  justify-self: start;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2808-bd135639, #w-node-_46807333-c889-78d8-3997-eaf2c8ea280c-bd135639 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea280d-bd135639 {
  justify-self: start;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2811-bd135639, #w-node-_46807333-c889-78d8-3997-eaf2c8ea2814-bd135639, #w-node-_46807333-c889-78d8-3997-eaf2c8ea2819-bd135639, #w-node-_46807333-c889-78d8-3997-eaf2c8ea281a-bd135639 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea281b-bd135639 {
  justify-self: start;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea281f-bd135639, #w-node-_46807333-c889-78d8-3997-eaf2c8ea2822-bd135639, #w-node-_46807333-c889-78d8-3997-eaf2c8ea2823-bd135639 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2824-bd135639 {
  justify-self: start;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea282a-bd135639, #w-node-_46807333-c889-78d8-3997-eaf2c8ea282d-bd135639, #w-node-_46807333-c889-78d8-3997-eaf2c8ea282e-bd135639 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea282f-bd135639 {
  justify-self: start;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2835-bd135639, #w-node-_46807333-c889-78d8-3997-eaf2c8ea2838-bd135639, #w-node-_46807333-c889-78d8-3997-eaf2c8ea2839-bd135639 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea283a-bd135639 {
  justify-self: start;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2842-bd135639, #w-node-_46807333-c889-78d8-3997-eaf2c8ea2845-bd135639, #w-node-_46807333-c889-78d8-3997-eaf2c8ea2846-bd135639 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2847-bd135639 {
  justify-self: start;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2853-bd135639, #w-node-_46807333-c889-78d8-3997-eaf2c8ea2854-bd135639 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2855-bd135639 {
  justify-self: start;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2859-bd135639, #w-node-_46807333-c889-78d8-3997-eaf2c8ea285e-bd135639, #w-node-_46807333-c889-78d8-3997-eaf2c8ea285f-bd135639 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2860-bd135639 {
  justify-self: start;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2866-bd135639, #w-node-_46807333-c889-78d8-3997-eaf2c8ea286b-bd135639, #w-node-_46807333-c889-78d8-3997-eaf2c8ea286c-bd135639 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea286d-bd135639 {
  justify-self: start;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2873-bd135639, #w-node-_46807333-c889-78d8-3997-eaf2c8ea2878-bd135639, #w-node-_46807333-c889-78d8-3997-eaf2c8ea2879-bd135639 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea287a-bd135639 {
  justify-self: start;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2882-bd135639, #w-node-_46807333-c889-78d8-3997-eaf2c8ea2888-bd135639 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2889-bd135639 {
  justify-self: start;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea288f-bd135639, #w-node-_46807333-c889-78d8-3997-eaf2c8ea2894-bd135639, #w-node-_46807333-c889-78d8-3997-eaf2c8ea2895-bd135639 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2896-bd135639 {
  justify-self: start;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea289a-bd135639, #w-node-_46807333-c889-78d8-3997-eaf2c8ea289d-bd135639, #w-node-_46807333-c889-78d8-3997-eaf2c8ea289e-bd135639 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea289f-bd135639 {
  justify-self: start;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea28a5-bd135639, #w-node-_46807333-c889-78d8-3997-eaf2c8ea28a8-bd135639, #w-node-_46807333-c889-78d8-3997-eaf2c8ea28a9-bd135639 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea28aa-bd135639 {
  justify-self: start;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea28b0-bd135639, #w-node-_46807333-c889-78d8-3997-eaf2c8ea28b3-bd135639, #w-node-_46807333-c889-78d8-3997-eaf2c8ea28b4-bd135639 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea28b5-bd135639 {
  justify-self: start;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea28bd-bd135639, #w-node-_46807333-c889-78d8-3997-eaf2c8ea28c0-bd135639, #w-node-_46807333-c889-78d8-3997-eaf2c8ea28c1-bd135639 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea28c2-bd135639 {
  justify-self: start;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea28c8-bd135639, #w-node-_46807333-c889-78d8-3997-eaf2c8ea28cb-bd135639, #w-node-_46807333-c889-78d8-3997-eaf2c8ea28cc-bd135639 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea28cd-bd135639 {
  justify-self: start;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea28d5-bd135639, #w-node-_46807333-c889-78d8-3997-eaf2c8ea28d9-bd135639 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea28da-bd135639 {
  justify-self: start;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea28e0-bd135639, #w-node-_46807333-c889-78d8-3997-eaf2c8ea28e8-bd135639, #w-node-_46807333-c889-78d8-3997-eaf2c8ea28e9-bd135639, #w-node-_46807333-c889-78d8-3997-eaf2c8ea28ea-bd135639 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea28eb-bd135639 {
  justify-self: start;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea28ed-bd135639, #w-node-_46807333-c889-78d8-3997-eaf2c8ea28f0-bd135639, #w-node-_46807333-c889-78d8-3997-eaf2c8ea28f4-bd135639, #w-node-_46807333-c889-78d8-3997-eaf2c8ea28f5-bd135639, #w-node-_46807333-c889-78d8-3997-eaf2c8ea28f6-bd135639, #w-node-_46807333-c889-78d8-3997-eaf2c8ea28ff-bd135639, #w-node-_46807333-c889-78d8-3997-eaf2c8ea2900-bd135639, #w-node-_46807333-c889-78d8-3997-eaf2c8ea2901-bd135639, #w-node-_46807333-c889-78d8-3997-eaf2c8ea290a-bd135639, #w-node-_46807333-c889-78d8-3997-eaf2c8ea290b-bd135639, #w-node-_46807333-c889-78d8-3997-eaf2c8ea290c-bd135639 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea290d-bd135639 {
  justify-self: start;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2913-bd135639, #w-node-_46807333-c889-78d8-3997-eaf2c8ea2914-bd135639, #w-node-_46807333-c889-78d8-3997-eaf2c8ea2915-bd135639 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2916-bd135639 {
  justify-self: start;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2918-bd135639, #w-node-_46807333-c889-78d8-3997-eaf2c8ea291c-bd135639, #w-node-_46807333-c889-78d8-3997-eaf2c8ea291d-bd135639, #w-node-_46807333-c889-78d8-3997-eaf2c8ea291e-bd135639 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea291f-bd135639, #w-node-_46807333-c889-78d8-3997-eaf2c8ea2921-bd135639 {
  justify-self: start;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea298f-bd135639, #w-node-_46807333-c889-78d8-3997-eaf2c8ea2993-bd135639 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2994-bd135639 {
  justify-self: start;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2996-bd135639 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2998-bd135639 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2999-bd135639 {
  justify-self: start;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea299b-bd135639 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea299d-bd135639 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea299e-bd135639 {
  justify-self: start;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea29a0-bd135639 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea29a2-bd135639 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea29a3-bd135639 {
  justify-self: start;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea29a5-bd135639 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea29a7-bd135639 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea29a8-bd135639 {
  justify-self: start;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea29aa-bd135639 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea29ac-bd135639 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea29ad-bd135639 {
  justify-self: start;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea29af-bd135639, #w-node-_46807333-c889-78d8-3997-eaf2c8ea29b1-bd135639, #w-node-_46807333-c889-78d8-3997-eaf2c8ea29b3-bd135639, #w-node-_46807333-c889-78d8-3997-eaf2c8ea29b5-bd135639, #w-node-_46807333-c889-78d8-3997-eaf2c8ea29b7-bd135639 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea29b8-bd135639 {
  justify-self: start;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea29ba-bd135639, #w-node-_46807333-c889-78d8-3997-eaf2c8ea29bb-bd135639, #w-node-_46807333-c889-78d8-3997-eaf2c8ea29bd-bd135639 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea29be-bd135639 {
  justify-self: start;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea29c0-bd135639, #w-node-_46807333-c889-78d8-3997-eaf2c8ea29c1-bd135639, #w-node-_46807333-c889-78d8-3997-eaf2c8ea29c3-bd135639 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea29c4-bd135639 {
  justify-self: start;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea29c6-bd135639, #w-node-_46807333-c889-78d8-3997-eaf2c8ea29c7-bd135639, #w-node-_46807333-c889-78d8-3997-eaf2c8ea29c9-bd135639 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea29ca-bd135639 {
  justify-self: start;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea29cc-bd135639, #w-node-_46807333-c889-78d8-3997-eaf2c8ea29d2-bd135639, #w-node-_46807333-c889-78d8-3997-eaf2c8ea29d6-bd135639 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea29d7-bd135639 {
  justify-self: start;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea29d9-bd135639, #w-node-_46807333-c889-78d8-3997-eaf2c8ea29db-bd135639 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea29dc-bd135639 {
  justify-self: start;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea29de-bd135639 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea29e0-bd135639 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea29e1-bd135639 {
  justify-self: start;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea29e3-bd135639 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea29e5-bd135639 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea29e6-bd135639 {
  justify-self: start;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea29e8-bd135639 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea29ea-bd135639 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea29eb-bd135639 {
  justify-self: start;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea29ed-bd135639 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea29ef-bd135639 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea29f0-bd135639 {
  justify-self: start;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea29f2-bd135639 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea29f4-bd135639 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea29f5-bd135639 {
  justify-self: start;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea29f7-bd135639 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea29f9-bd135639 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea29fa-bd135639 {
  justify-self: start;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea29fc-bd135639 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea29fe-bd135639 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea29ff-bd135639 {
  justify-self: start;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2a01-bd135639 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2a03-bd135639 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2a04-bd135639 {
  justify-self: start;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2a06-bd135639 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2a08-bd135639 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2a09-bd135639 {
  justify-self: start;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2a0b-bd135639 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2a10-bd135639 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2a14-bd135639 {
  justify-self: start;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2a16-bd135639 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2a19-bd135639, #w-node-_46807333-c889-78d8-3997-eaf2c8ea2a1e-bd135639, #w-node-_46807333-c889-78d8-3997-eaf2c8ea2a23-bd135639, #w-node-_46807333-c889-78d8-3997-eaf2c8ea2a28-bd135639, #w-node-_46807333-c889-78d8-3997-eaf2c8ea2a2d-bd135639 {
  justify-self: start;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2a34-bd135639 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2a35-bd135639 {
  justify-self: start;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2a37-bd135639, #w-node-_46807333-c889-78d8-3997-eaf2c8ea2a38-bd135639, #w-node-_46807333-c889-78d8-3997-eaf2c8ea2a3a-bd135639 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2a3b-bd135639 {
  justify-self: start;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2a3d-bd135639, #w-node-_46807333-c889-78d8-3997-eaf2c8ea2a3e-bd135639, #w-node-_46807333-c889-78d8-3997-eaf2c8ea2a40-bd135639 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2a41-bd135639 {
  justify-self: start;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2a43-bd135639, #w-node-_46807333-c889-78d8-3997-eaf2c8ea2a44-bd135639, #w-node-_46807333-c889-78d8-3997-eaf2c8ea2a46-bd135639 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2a47-bd135639 {
  justify-self: start;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2a49-bd135639, #w-node-_46807333-c889-78d8-3997-eaf2c8ea2a4a-bd135639, #w-node-_46807333-c889-78d8-3997-eaf2c8ea2a4c-bd135639 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2a4d-bd135639 {
  justify-self: start;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2a4f-bd135639, #w-node-_46807333-c889-78d8-3997-eaf2c8ea2a50-bd135639, #w-node-_46807333-c889-78d8-3997-eaf2c8ea2a52-bd135639 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2a53-bd135639 {
  justify-self: start;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2a55-bd135639, #w-node-_46807333-c889-78d8-3997-eaf2c8ea2a56-bd135639, #w-node-_46807333-c889-78d8-3997-eaf2c8ea2a58-bd135639 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2a59-bd135639 {
  justify-self: start;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2a5b-bd135639, #w-node-_46807333-c889-78d8-3997-eaf2c8ea2a5c-bd135639, #w-node-_46807333-c889-78d8-3997-eaf2c8ea2a5e-bd135639 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2a5f-bd135639 {
  justify-self: start;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2a61-bd135639, #w-node-_46807333-c889-78d8-3997-eaf2c8ea2a62-bd135639, #w-node-_46807333-c889-78d8-3997-eaf2c8ea2a64-bd135639 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2a65-bd135639 {
  justify-self: start;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2a67-bd135639, #w-node-_46807333-c889-78d8-3997-eaf2c8ea2a68-bd135639, #w-node-_46807333-c889-78d8-3997-eaf2c8ea2a6a-bd135639 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2a6b-bd135639 {
  justify-self: start;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2a6d-bd135639, #w-node-_46807333-c889-78d8-3997-eaf2c8ea2a6e-bd135639, #w-node-_46807333-c889-78d8-3997-eaf2c8ea2a70-bd135639 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2a71-bd135639 {
  justify-self: start;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2a73-bd135639, #w-node-_46807333-c889-78d8-3997-eaf2c8ea2a74-bd135639, #w-node-_46807333-c889-78d8-3997-eaf2c8ea2a76-bd135639 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2a77-bd135639 {
  justify-self: start;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2a79-bd135639, #w-node-_46807333-c889-78d8-3997-eaf2c8ea2a7a-bd135639, #w-node-_46807333-c889-78d8-3997-eaf2c8ea2a7c-bd135639 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2a7d-bd135639 {
  justify-self: start;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2a7f-bd135639, #w-node-_46807333-c889-78d8-3997-eaf2c8ea2a80-bd135639, #w-node-_46807333-c889-78d8-3997-eaf2c8ea2a82-bd135639 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2a83-bd135639 {
  justify-self: start;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2a85-bd135639, #w-node-_46807333-c889-78d8-3997-eaf2c8ea2a86-bd135639, #w-node-_46807333-c889-78d8-3997-eaf2c8ea2a88-bd135639 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2a89-bd135639 {
  justify-self: start;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2a8b-bd135639, #w-node-_46807333-c889-78d8-3997-eaf2c8ea2a8c-bd135639, #w-node-_46807333-c889-78d8-3997-eaf2c8ea2a91-bd135639 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2a95-bd135639 {
  justify-self: start;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2a97-bd135639 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2a9a-bd135639, #w-node-_46807333-c889-78d8-3997-eaf2c8ea2a9f-bd135639, #w-node-_46807333-c889-78d8-3997-eaf2c8ea2aa4-bd135639, #w-node-_46807333-c889-78d8-3997-eaf2c8ea2aa9-bd135639, #w-node-_46807333-c889-78d8-3997-eaf2c8ea2aae-bd135639 {
  justify-self: start;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2ab5-bd135639 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2ab6-bd135639 {
  justify-self: start;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2ab8-bd135639, #w-node-_46807333-c889-78d8-3997-eaf2c8ea2ab9-bd135639, #w-node-_46807333-c889-78d8-3997-eaf2c8ea2abb-bd135639 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2abc-bd135639 {
  justify-self: start;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2abe-bd135639, #w-node-_46807333-c889-78d8-3997-eaf2c8ea2abf-bd135639, #w-node-_46807333-c889-78d8-3997-eaf2c8ea2ac1-bd135639 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2ac2-bd135639 {
  justify-self: start;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2ac4-bd135639, #w-node-_46807333-c889-78d8-3997-eaf2c8ea2ac5-bd135639, #w-node-_46807333-c889-78d8-3997-eaf2c8ea2ac7-bd135639 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2ac8-bd135639 {
  justify-self: start;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2aca-bd135639, #w-node-_46807333-c889-78d8-3997-eaf2c8ea2acb-bd135639, #w-node-_46807333-c889-78d8-3997-eaf2c8ea2acd-bd135639 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2ace-bd135639 {
  justify-self: start;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2ad0-bd135639, #w-node-_46807333-c889-78d8-3997-eaf2c8ea2ad1-bd135639, #w-node-_46807333-c889-78d8-3997-eaf2c8ea2ad3-bd135639 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2ad4-bd135639 {
  justify-self: start;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2ad6-bd135639, #w-node-_46807333-c889-78d8-3997-eaf2c8ea2ad7-bd135639, #w-node-_46807333-c889-78d8-3997-eaf2c8ea2ad9-bd135639 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2ada-bd135639 {
  justify-self: start;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2adc-bd135639, #w-node-_46807333-c889-78d8-3997-eaf2c8ea2add-bd135639, #w-node-_46807333-c889-78d8-3997-eaf2c8ea2adf-bd135639 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2ae0-bd135639 {
  justify-self: start;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2ae2-bd135639, #w-node-_46807333-c889-78d8-3997-eaf2c8ea2ae3-bd135639, #w-node-_46807333-c889-78d8-3997-eaf2c8ea2ae5-bd135639 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2ae6-bd135639 {
  justify-self: start;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2ae8-bd135639, #w-node-_46807333-c889-78d8-3997-eaf2c8ea2ae9-bd135639, #w-node-_46807333-c889-78d8-3997-eaf2c8ea2aeb-bd135639 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2aec-bd135639 {
  justify-self: start;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2aee-bd135639, #w-node-_46807333-c889-78d8-3997-eaf2c8ea2aef-bd135639, #w-node-_46807333-c889-78d8-3997-eaf2c8ea2af1-bd135639 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2af2-bd135639 {
  justify-self: start;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2af4-bd135639, #w-node-_46807333-c889-78d8-3997-eaf2c8ea2af5-bd135639, #w-node-_46807333-c889-78d8-3997-eaf2c8ea2af7-bd135639 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2af8-bd135639 {
  justify-self: start;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2afa-bd135639, #w-node-_46807333-c889-78d8-3997-eaf2c8ea2afb-bd135639, #w-node-_46807333-c889-78d8-3997-eaf2c8ea2afd-bd135639 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2afe-bd135639 {
  justify-self: start;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2b00-bd135639, #w-node-_46807333-c889-78d8-3997-eaf2c8ea2b01-bd135639, #w-node-_46807333-c889-78d8-3997-eaf2c8ea2b03-bd135639 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2b04-bd135639 {
  justify-self: start;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2b06-bd135639, #w-node-_46807333-c889-78d8-3997-eaf2c8ea2b07-bd135639, #w-node-_46807333-c889-78d8-3997-eaf2c8ea2b09-bd135639 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2b0a-bd135639 {
  justify-self: start;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2b0c-bd135639, #w-node-_46807333-c889-78d8-3997-eaf2c8ea2b0d-bd135639, #w-node-_46807333-c889-78d8-3997-eaf2c8ea2b12-bd135639, #w-node-_46807333-c889-78d8-3997-eaf2c8ea2b15-bd135639 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2b16-bd135639 {
  justify-self: start;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2b18-bd135639, #w-node-_46807333-c889-78d8-3997-eaf2c8ea2b19-bd135639, #w-node-_46807333-c889-78d8-3997-eaf2c8ea2b1b-bd135639 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2b1c-bd135639 {
  justify-self: start;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2b1e-bd135639, #w-node-_46807333-c889-78d8-3997-eaf2c8ea2b1f-bd135639, #w-node-_46807333-c889-78d8-3997-eaf2c8ea2b21-bd135639 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2b22-bd135639 {
  justify-self: start;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2b24-bd135639, #w-node-_46807333-c889-78d8-3997-eaf2c8ea2b25-bd135639, #w-node-_46807333-c889-78d8-3997-eaf2c8ea2b27-bd135639 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2b28-bd135639 {
  justify-self: start;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2b2a-bd135639, #w-node-_46807333-c889-78d8-3997-eaf2c8ea2b2b-bd135639, #w-node-_46807333-c889-78d8-3997-eaf2c8ea2b2d-bd135639 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2b2e-bd135639 {
  justify-self: start;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2b30-bd135639, #w-node-_46807333-c889-78d8-3997-eaf2c8ea2b31-bd135639, #w-node-_46807333-c889-78d8-3997-eaf2c8ea2b33-bd135639 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2b34-bd135639 {
  justify-self: start;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2b36-bd135639, #w-node-_46807333-c889-78d8-3997-eaf2c8ea2b37-bd135639, #w-node-_46807333-c889-78d8-3997-eaf2c8ea2b39-bd135639 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2b3a-bd135639 {
  justify-self: start;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2b3c-bd135639, #w-node-_46807333-c889-78d8-3997-eaf2c8ea2b3d-bd135639, #w-node-_46807333-c889-78d8-3997-eaf2c8ea2b3f-bd135639 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2b40-bd135639 {
  justify-self: start;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2b42-bd135639, #w-node-_46807333-c889-78d8-3997-eaf2c8ea2b43-bd135639, #w-node-_46807333-c889-78d8-3997-eaf2c8ea2b45-bd135639 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2b46-bd135639 {
  justify-self: start;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2b48-bd135639, #w-node-_46807333-c889-78d8-3997-eaf2c8ea2b49-bd135639, #w-node-_46807333-c889-78d8-3997-eaf2c8ea2b4b-bd135639 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2b4c-bd135639 {
  justify-self: start;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2b4e-bd135639, #w-node-_46807333-c889-78d8-3997-eaf2c8ea2b4f-bd135639, #w-node-_46807333-c889-78d8-3997-eaf2c8ea2b51-bd135639 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2b52-bd135639 {
  justify-self: start;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2b54-bd135639, #w-node-_46807333-c889-78d8-3997-eaf2c8ea2b55-bd135639, #w-node-_46807333-c889-78d8-3997-eaf2c8ea2c47-bd135639, #w-node-_46807333-c889-78d8-3997-eaf2c8ea2c4b-bd135639 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2c4c-bd135639 {
  justify-self: start;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2c50-bd135639, #w-node-_46807333-c889-78d8-3997-eaf2c8ea2c52-bd135639 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2c53-bd135639 {
  justify-self: start;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2c57-bd135639 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2c58-bd135639 {
  justify-self: start;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2c5c-bd135639 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2c5d-bd135639 {
  justify-self: start;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2c61-bd135639 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2c62-bd135639 {
  justify-self: start;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2c66-bd135639 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2c67-bd135639 {
  justify-self: start;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2c6b-bd135639 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2c6c-bd135639 {
  justify-self: start;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2c70-bd135639 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2c71-bd135639 {
  justify-self: start;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2c75-bd135639 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2c76-bd135639 {
  justify-self: start;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2c7a-bd135639 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2c7b-bd135639 {
  justify-self: start;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2c7f-bd135639 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2c80-bd135639 {
  justify-self: start;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2c83-bd135639 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2c84-bd135639 {
  justify-self: start;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2c88-bd135639 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2c89-bd135639 {
  justify-self: start;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2c8d-bd135639 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2c8e-bd135639 {
  justify-self: start;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2c92-bd135639 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2c93-bd135639 {
  justify-self: start;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2c97-bd135639 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2c98-bd135639 {
  justify-self: start;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2c9c-bd135639 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2c9d-bd135639 {
  justify-self: start;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2ca1-bd135639 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2ca2-bd135639 {
  justify-self: start;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2ca6-bd135639 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2ca7-bd135639 {
  justify-self: start;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2cab-bd135639 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2cac-bd135639 {
  justify-self: start;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2cb0-bd135639 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2cb1-bd135639 {
  justify-self: start;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2cb5-bd135639 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_46807333-c889-78d8-3997-eaf2c8ea2cb6-bd135639 {
  justify-self: start;
}

@media screen and (max-width: 767px) {
  #w-node-_4eb0b9e4-f320-6730-b42c-2758c6b566c4-a5c51de2 {
    order: -9999;
  }

  #w-node-_04d0f5f7-6928-74d0-e05d-4114564a76c3-a5c51e5b {
    justify-self: center;
  }

  #w-node-c94d2ec6-b764-5512-647f-774a3135fef4-a5c51e5b {
    order: -9999;
  }
}


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