@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: black;
  --primary: #1c1c1c;
  --hover-color: #a39161;
  --primary-light: #fcf8f4;
  --areas: #1d160480;
  --white: white;
  --dark-light: #fbf4ec;
  --borders-color: #e9ddce;
  --green: #23752ce6;
}

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

@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: Montserrat, sans-serif;
  font-size: 16px;
  line-height: 1em;
}

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

h2 {
  color: var(--primary-dark);
  text-transform: capitalize;
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Raleway, sans-serif;
  font-size: 50px;
  font-weight: 500;
  line-height: 1.2em;
}

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

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

h5 {
  color: var(--primary-dark);
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Raleway, 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: Raleway, sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2em;
}

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

a {
  border-bottom: 1px solid var(--primary);
  color: var(--primary);
  align-items: center;
  line-height: 1.2em;
  text-decoration: none;
  transition: border-color .3s, color .3s;
  display: inline-block;
}

a:hover {
  border-bottom-color: var(--hover-color);
  color: var(--hover-color);
}

ul {
  grid-row-gap: 15px;
  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-top: 3px solid var(--primary);
  border-left: 3px solid var(--primary);
  text-align: left;
  margin-top: 25px;
  margin-bottom: 25px;
  padding: 20px 30px;
  font-size: 30px;
  font-weight: 600;
  line-height: 1.2;
}

.section {
  width: 100vw;
  padding: 42px 40px 0;
  position: relative;
}

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

.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;
  padding-top: 160px;
  display: flex;
}

.section.banner-our-team {
  background-color: var(--primary-light);
  background-image: linear-gradient(#00000080, #00000080), url('../images/pexels-photo-2_1.avif');
  background-position: 0 0, 20% 0;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  background-attachment: scroll, fixed;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 50vh;
  padding-top: 160px;
  display: flex;
}

.section.banner-service {
  background-image: linear-gradient(#00000080, #00000080);
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  height: 550px;
  padding-top: 203px;
  padding-bottom: 0;
  display: flex;
  overflow: hidden;
}

.section.pricing-banner {
  background-image: linear-gradient(#00000080, #00000080), url('../images/pricing-Banner-2_1pricing Banner (2).webp');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  background-attachment: scroll, scroll;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 160px;
  display: flex;
}

.section.contacts-banner {
  background-color: var(--primary-light);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 85px;
  padding-left: 40px;
  padding-right: 40px;
  display: flex;
}

.section.banner-faq {
  background-color: var(--primary);
  background-image: url('../images/Lign-BG_1.avif');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 1024px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 160px;
  display: flex;
}

.section.banner-testimonials {
  background-color: var(--primary-light);
  flex-direction: column;
  align-items: center;
  padding-top: 160px;
  padding-bottom: 0;
  display: flex;
}

.section.about-us-banner {
  background-color: var(--primary);
  background-image: linear-gradient(#0000008f, #0000008f), url('../images/pexels-scottwebb-137581_1.avif');
  background-position: 0 0, 50%;
  background-repeat: repeat, repeat;
  background-size: auto, cover;
  background-attachment: scroll, fixed;
  justify-content: center;
  align-items: center;
  height: 50vh;
  padding-top: 160px;
  display: flex;
  position: static;
}

.section.about-us-banner.personnel {
  background-image: linear-gradient(#0006, #0006), url('../images/2151340101_1.avif');
}

.section.about-us-banner.blog {
  background-image: linear-gradient(#00000061, #00000061), url('../images/2151340101_1.avif');
  background-position: 0 0, 50% 0;
}

.section.portfolio-grid-banner {
  background-color: var(--primary);
  background-image: url('../images/Lign-BG_1.avif');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 1024px;
  justify-content: center;
  align-items: center;
  padding-top: 160px;
  display: flex;
}

.section.without-top-spacing.padding {
  padding-top: 80px;
}

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

.section.bg {
  background-image: url('../images/Lign-BG_1.avif');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 1024px;
}

.section.bg-without-bottom-spacing {
  z-index: 100;
  background-image: none;
  background-repeat: repeat;
  background-size: auto;
  padding-bottom: 104px;
  position: static;
}

.section.bg-without-bottom-spacing._2 {
  background-image: none;
  background-repeat: repeat;
  background-size: auto;
  height: 450px;
  padding-top: 0;
  padding-bottom: 0;
}

.section.home-1-banner {
  min-height: auto;
  padding-top: 160px;
  overflow: hidden;
}

.section.light-bg-with-bottom-100px, .section.light-bg-with-top-100px {
  background-color: var(--primary-light);
}

.section.light-bg-with-top-100px-bottom-0px {
  background-color: var(--primary-light);
  padding-bottom: 0;
}

.section.home-2-banner {
  padding-top: 160px;
  padding-bottom: 0;
}

.section.home-3-banner {
  align-items: center;
  min-height: 100vh;
  padding-top: 160px;
  padding-left: 50px;
  padding-right: 50px;
  display: flex;
  overflow: hidden;
}

.section.blog-banner {
  background-image: url('../images/Lign-BG_1.avif');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 1024px 100%;
  padding-top: 160px;
  padding-bottom: 0;
}

.section.blog-banner.less-padding {
  padding-top: 47px;
}

.section.blog-details-banner {
  background-color: var(--primary-light);
  padding-top: 177px;
  padding-bottom: 0;
}

.section.services-banner {
  padding-top: 160px;
}

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

.section.portfolio-details {
  padding-top: 160px;
  overflow: hidden;
}

.section.shop-banner {
  background-image: linear-gradient(#00000080, #00000080), url('../images/Shop-Banner-1_1Shop Banner (1).webp');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  padding-top: 160px;
}

.section.prodeuct-details-banner {
  padding-top: 180px;
  overflow: hidden;
}

.section.services-banner {
  background-color: var(--primary);
  background-image: linear-gradient(to bottom, var(--areas), var(--areas)), url('../images/2149345548_1.avif');
  background-position: 0 0, 50%;
  background-repeat: repeat, repeat;
  background-size: auto, cover;
  background-attachment: scroll, fixed;
  justify-content: center;
  align-items: center;
  height: 60vh;
  padding-top: 109px;
  padding-bottom: 0;
  display: flex;
}

.section.services-banner-copy {
  padding-top: 78px;
}

.base-container {
  z-index: 100;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  max-width: 1300px;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 49px;
  padding-left: 0;
  padding-right: 0;
  display: flex;
  position: static;
}

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

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

.base-container.background-grey {
  background-image: linear-gradient(#00000061, #00000061);
  max-width: 100vw;
  padding-top: 30px;
  padding-bottom: 30px;
}

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

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

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

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

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

.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: 52px;
}

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

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

.primary-button {
  background-color: var(--primary);
  color: var(--white);
  text-align: center;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  white-space: nowrap;
  word-break: keep-all;
  border: 1px solid #000;
  margin-bottom: 13px;
  padding: 16px 15px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1em;
  transition: all .3s;
  display: inline-block;
}

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

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

.primary-button.pagination {
  margin-top: 30px;
}

.primary-button.full-w {
  justify-content: center;
  width: 100%;
  display: flex;
}

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

.primary-button.hover-white-bg {
  margin-bottom: 0;
}

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

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

.navbar {
  border-top: 1px solid var(--borders-color);
  border-bottom: 1px solid var(--borders-color);
  background-color: #0000;
  width: 100%;
  padding-top: 15px;
  padding-bottom: 15px;
  position: fixed;
  inset: 0% 0% auto;
}

.navbar.white-bg {
  border-style: none;
  width: 100vw;
}

.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;
  flex: 1;
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.nav-link {
  border-bottom-style: none;
  margin-left: 5px;
  margin-right: 5px;
  padding: 15px 5px;
  font-size: 15px;
  line-height: 1em;
}

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

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

.nav-dropdown-toggle {
  margin-left: 0;
  margin-right: 0;
  padding: 15px 13px;
}

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

.nav-dropdown-list {
  background-color: #fff;
  border: 1px solid #0000002e;
  width: 200px;
  padding: 15px 20px;
}

.nav-dropdown-list.w--open {
  width: 350px;
  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: 540px;
  padding: 18px;
  display: flex;
  left: -245px;
}

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

.nav-dropdown-link {
  text-transform: capitalize;
  border-bottom-style: none;
  width: 100%;
  margin-left: -20px;
  padding: 8px 0 8px 20px;
  font-size: 15px;
  transition: all .3s;
  display: flex;
}

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

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

.nav-item-title {
  color: var(--primary-dark);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 15px;
  font-weight: 400;
  line-height: 1em;
  transition: color .3s;
}

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

.pages-banner {
  background-color: var(--dark-light);
  justify-content: center;
  align-items: center;
  padding-top: 160px;
  padding-bottom: 80px;
  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 {
  object-fit: cover;
  width: 100%;
  height: 320px;
}

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

.licensing-image-link {
  border-bottom-style: none;
  border-bottom-width: 0;
  width: 100%;
  height: 100%;
}

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

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

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

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

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

.licensing-icon-link-wrapper {
  border: 1px solid var(--primary-dark);
  background-color: var(--primary);
  color: var(--white);
  justify-content: center;
  width: 30px;
  height: 30px;
  font-size: 16px;
  transition: background-color .3s, border-color .3s, color .3s;
  display: flex;
}

.licensing-icon-link-wrapper:hover {
  border-color: var(--primary-dark);
  background-color: var(--white);
  color: var(--primary-dark);
}

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

.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-paragraph.last-item {
  margin-right: 0;
}

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

.licensing-icons-wrapper {
  grid-column-gap: 25px;
  margin-top: 30px;
  margin-bottom: 20px;
  display: flex;
}

.utility-page-wrap {
  background-color: var(--primary-light);
  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(--borders-color);
  min-width: 280px;
  min-height: 50px;
  margin-bottom: 10px;
  padding: 16px 28px;
  font-size: 16px;
  line-height: 1.2em;
}

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

.password-input::placeholder {
  color: var(--primary-dark);
}

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

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

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

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

._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: flex-start;
  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(--borders-color);
  min-width: 300px;
  height: 50px;
  margin-bottom: 0;
  padding: 16px 28px;
  font-size: 16px;
  line-height: 1em;
}

.coming-soon-input:focus {
  border: 1px solid var(--hover-color);
}

.coming-soon-input::placeholder {
  color: var(--primary-dark);
  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 {
  margin-top: 113px;
  font-size: 70px;
}

.nav-menu-wrapper {
  z-index: 666;
  flex: 1;
  justify-content: space-between;
  align-items: center;
  display: flex;
  position: relative;
}

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

.blog-template-image {
  object-fit: cover;
  width: 100%;
  max-height: 500px;
}

.blog-template-date {
  color: var(--hover-color);
  font-weight: 500;
}

.footer {
  background-color: var(--dark-light);
  text-align: center;
  flex-flow: column;
  align-items: flex-start;
  padding: 39px 40px 24px;
  display: flex;
}

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

.footer-rights {
  color: var(--primary-dark);
  font-size: 12px;
  font-weight: 500;
}

.footer-copyright {
  color: var(--primary-dark);
  text-align: left;
  flex: 1;
  width: 50%;
  font-size: 12px;
  font-weight: 500;
  display: block;
}

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

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

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

.team-card-image {
  color: var(--primary);
  object-fit: cover;
  width: 100%;
  min-width: 100%;
  height: 310px;
}

.team-card-content-wrapper {
  background-color: var(--primary-light);
  text-align: left;
  padding: 10px 20px;
}

.team-member-position {
  color: #525252;
  font-size: 18px;
}

.team-social-links-wrapper {
  grid-column-gap: 20px;
  justify-content: center;
  display: flex;
}

.team-social-icon {
  color: var(--primary);
  border-bottom-style: none;
  border-bottom-width: 0;
  font-family: "Fa Brands 400 (6.4.2)", sans-serif;
  font-size: 20px;
}

.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: 10px;
  font-family: "Fa solid 900", sans-serif;
  font-size: 13px;
  line-height: 1;
}

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

.paragraph-large.mt-0 {
  margin-top: 0;
}

.paragraph-large.white {
  z-index: 5;
  color: var(--white);
  font-size: 16px;
  position: relative;
}

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

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

.pricing-plan-item {
  padding: 20px 30px 30px;
}

.pricing-plan-item.central-item {
  background-color: var(--white);
}

.pricing-plan-list {
  margin-top: 20px;
  margin-bottom: 30px;
}

.pricing-plan-item-title {
  margin-top: 0;
  margin-bottom: 0;
}

.pricing-plan-price-wrapper {
  border-bottom: 1px solid var(--borders-color);
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
  margin-bottom: 30px;
  padding-bottom: 20px;
  display: flex;
}

.pricing-plan-price {
  font-size: 56px;
}

.pricing-plan-currency-icon {
  margin-right: 2px;
  font-size: 20px;
  font-weight: 700;
  line-height: 20px;
}

.accordion-toggle {
  white-space: normal;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  padding: 1px 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-item {
  border: 1px solid var(--borders-color);
  background-color: var(--white);
  width: 100%;
  margin-bottom: 15px;
  padding: 15px 20px;
  position: static;
}

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

.accordion-list-content {
  margin-top: 0;
  margin-bottom: 0;
}

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

.coming-soon-image {
  object-fit: cover;
  max-width: 480px;
  height: 65%;
}

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

.hidden {
  display: none;
}

.footer-wrapper {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  display: flex;
}

.white-text {
  color: #fff;
  font-size: 62px;
}

.white-text.smaller-text {
  font-size: 44px;
}

.button-header {
  background-color: #0000;
  align-items: center;
  margin-left: 15px;
  display: flex;
}

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

.button-header.tablet {
  display: none;
}

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

.search-link {
  margin-bottom: 10px;
  font-size: 18px;
  transition: all .3s;
  display: inline-block;
}

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

.search-input {
  border: 1px solid var(--borders-color);
  height: auto;
  margin-bottom: 0;
  padding: 16px 28px;
  font-size: 16px;
  line-height: 1em;
}

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

.search-input::placeholder {
  color: var(--primary-dark);
}

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

.search-section {
  padding-top: 160px;
  padding-bottom: 80px;
}

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

.accordion-wrap-one-column {
  width: 100%;
}

.service-details-sidebar-wrapper {
  z-index: 2;
  border: 1px solid var(--borders-color);
  background-color: var(--primary-light);
  width: auto;
  margin-bottom: 26px;
  padding: 10px 30px;
  position: static;
  top: 110px;
}

.service-details-sidebar-wrapper.second-item {
  z-index: 1;
  padding-top: 20px;
  padding-bottom: 20px;
  top: 439px;
}

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

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

.accordion-wrapper-one-column {
  justify-content: center;
  width: 100%;
  padding-top: 46px;
  padding-bottom: 46px;
}

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

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

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

.overflow-hidden {
  overflow: hidden;
}

.primary-button-white {
  border: 1px solid var(--white);
  background-color: var(--white);
  color: var(--primary);
  text-align: center;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  align-items: center;
  padding: 16px 28px;
  font-weight: 500;
  line-height: 1em;
  transition: all .3s;
}

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

.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-3-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-3-tab-link.w--current {
  color: var(--white);
  background-color: #0000;
  padding-top: 20px;
  padding-bottom: 4px;
  font-size: 24px;
}

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

.portfolio-masonry-image-wrapper {
  position: relative;
}

.project-template-info-wrap {
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

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

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

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

.secondary-button {
  border: 1px solid var(--primary);
  color: var(--primary);
  text-align: center;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  background-color: #0000;
  padding: 16px 28px;
  font-weight: 500;
  line-height: 1em;
  transition: all .3s;
}

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

.testimonials-image {
  object-fit: cover;
  border-radius: 50%;
  width: 100%;
  height: 100%;
}

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

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

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

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

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

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

.item-overlay {
  grid-row-gap: 10px;
  flex-direction: column;
  justify-content: flex-end;
  display: flex;
  position: relative;
  inset: 0%;
}

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

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

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

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

.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);
  width: 16px;
  height: 2px;
  margin-right: 15px;
  display: inline-block;
}

.search {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  width: 100%;
  margin-top: 20px;
  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;
}

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

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

.menu-wrap {
  z-index: 666;
  align-items: center;
  display: flex;
  position: relative;
}

.rich-text-style {
  color: var(--green);
  text-decoration: none;
}

.rich-text-style h2 {
  margin-bottom: 15px;
}

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

.rich-text-style h4 {
  margin-top: 30px;
}

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

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

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

.rich-text-style img {
  margin-top: 20px;
  margin-bottom: 10px;
}

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

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

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

.brand-tablet {
  display: none;
}

.brand {
  border-bottom-style: none;
}

.form {
  flex-direction: column;
  width: 100%;
  height: 100%;
  display: flex;
}

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

.details-page-title {
  font-size: 60px;
}

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

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

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

.borders-links-footer {
  border-top: 1px solid var(--borders-color);
  border-bottom: 1px solid var(--borders-color);
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-top: 60px;
  margin-bottom: 29px;
  padding-top: 8px;
  padding-bottom: 8px;
  display: flex;
}

.links-pages-footer-wrapper {
  grid-column-gap: 30px;
  display: flex;
}

.social-icon {
  border: 1px solid var(--primary);
  background-color: var(--primary);
  color: var(--white);
  justify-content: center;
  width: 30px;
  height: 30px;
  font-family: "Fa Brands 400 (6.4.2)", sans-serif;
  line-height: 1em;
  transition: background-color .2s, color .3s;
  display: flex;
}

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

.footer-socila-wtapper {
  grid-column-gap: 30px;
  display: flex;
}

.page-link-footer {
  border-bottom-style: none;
}

.submit-wrapper {
  text-align: left;
  width: 55%;
}

.footer-logo-link {
  border-bottom-style: none;
  margin-bottom: 60px;
  margin-right: auto;
}

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

.paragraph-footer {
  width: 85%;
}

.form-footer {
  align-items: center;
  width: 100%;
  display: flex;
}

.form-footer.other {
  flex-flow: column;
}

.text-field {
  border: 1px solid var(--borders-color);
  min-height: 68px;
  margin-bottom: 0;
  margin-right: -40px;
  padding-top: 16px;
  padding-bottom: 16px;
  padding-left: 28px;
}

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

.text-field::placeholder {
  color: var(--primary-dark);
}

.form-block-footer {
  flex-direction: column;
  align-items: center;
  width: 100%;
  min-height: 68px;
  margin-top: 20px;
  margin-bottom: 0;
  display: flex;
}

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

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

.info-company {
  border-bottom: 1px none var(--primary-dark);
  color: var(--primary-dark);
  text-decoration: none;
  transition: border-color .3s, color .3s;
}

.info-company:hover {
  border-bottom-color: var(--hover-color);
  color: var(--hover-color);
}

.info-company.left {
  text-align: left;
}

.links-footer-wrapper {
  grid-row-gap: 30px;
  flex-direction: column;
  width: 30%;
  display: flex;
}

.links-footer-wrapper.service-details {
  width: auto;
}

.success-message-footer {
  text-align: center;
  background-color: #0000;
  min-height: 68px;
}

.error-message-footer {
  width: 100%;
}

.logo-header {
  width: 300px;
  height: auto;
  position: absolute;
}

.logo-header.secondo-logo {
  position: relative;
}

.title-wrapper {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 50px;
  display: flex;
}

.title-wrap {
  width: 56%;
}

._w-100 {
  width: 100%;
}

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

.collection-list-service._4-columns {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.collection-item-s {
  border: 1px solid var(--borders-color);
  background-color: var(--dark-light);
  flex-direction: column;
  padding: 20px 25px 30px;
  display: flex;
}

.link-block {
  border-bottom-style: none;
}

.line-service {
  background-color: var(--primary);
  width: 45%;
  height: 2px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.link-service {
  margin-top: 30px;
}

.services-name {
  transition: color .3s;
}

.services-name:hover {
  color: var(--hover-color);
}

.services-name.h3 {
  font-size: 24px;
}

.contact-block {
  background-image: linear-gradient(to bottom, var(--areas), var(--areas)), url('../images/pasted-svg-468881x385.svg');
  text-align: center;
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, 90%;
  background-attachment: scroll, fixed;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 60px 100px;
  display: flex;
}

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

.button-contact-wrap {
  margin-top: 50px;
}

.numbers-info-wrapper {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  text-align: center;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  place-items: center;
  width: 100%;
}

.numbers-info-wrapper._2 {
  grid-template-columns: 1fr 1fr;
}

.big-numbers {
  color: var(--primary);
  font-size: 76px;
  font-weight: 700;
  line-height: 1em;
}

.number-info-wrap {
  flex-direction: column;
  display: flex;
}

.info-title-wrapper {
  grid-column-gap: 40px;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  margin-bottom: 50px;
  padding-left: 30px;
  padding-right: 30px;
  display: flex;
}

.title-info-wrap {
  width: 55%;
}

.paragraph-title {
  width: 45%;
}

.team-home-wrapper {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  width: 100%;
}

.title-team {
  flex-direction: column;
  padding-right: 100px;
  display: flex;
}

.team-info-wrap {
  width: 100%;
  height: 100%;
  position: relative;
}

.team-member-photo {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.button-big-wrapper {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  overflow: hidden;
}

.subtitle-all-caps {
  color: var(--hover-color);
  text-transform: uppercase;
  font-size: 18px;
}

.circle-button {
  border: 1px solid var(--primary);
  text-transform: uppercase;
  border-radius: 100px;
  justify-content: center;
  width: 200px;
  height: 200px;
  transition: all .3s;
  display: flex;
}

.circle-button:hover {
  border-color: var(--primary);
  background-color: var(--primary);
  color: var(--white);
  transform: scale(1.1);
}

.client-wrapper-home {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: .6fr 1.4fr;
  align-items: center;
  width: 100%;
}

.title-client {
  color: var(--primary);
  font-size: 22px;
  font-weight: 600;
  line-height: 1em;
}

.loop-clients-wrapper {
  width: 100%;
  overflow: hidden;
}

.scroller {
  align-content: flex-end;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  overflow: hidden;
}

.logo-loop {
  filter: grayscale();
  object-fit: contain;
  width: 160px;
  margin-left: 40px;
  margin-right: 40px;
}

.info-project {
  justify-content: space-between;
  display: flex;
}

.link-block-project {
  z-index: 10;
  border-bottom-style: none;
  border-bottom-width: 0;
  width: 100%;
  transition-property: all;
  position: relative;
}

.link-block-project:hover {
  transform: scale(.95);
}

.project-photo {
  object-fit: cover;
  width: 100%;
  height: 450px;
}

.number-project {
  color: var(--primary-dark);
  font-size: 20px;
  font-weight: 600;
}

.collection-item-project {
  border-right: 1px solid #000;
  flex-flow: column;
  height: 100%;
  padding-left: 15px;
  padding-right: 15px;
  display: block;
}

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

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

.project-wrapper._4-columns.hidden {
  display: flex;
}

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

.mt-20 {
  margin-top: 20px;
}

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

.link-block-project-name {
  border-bottom-style: none;
}

.links-project {
  padding-bottom: 40px;
  padding-left: 40px;
  position: absolute;
  inset: auto auto 0% 0%;
}

.big-info-project {
  width: 100%;
  height: auto;
  margin-top: 20px;
  position: relative;
  overflow: hidden;
}

.big-info-project.mb-20, .big-info-project.mt-0 {
  margin-top: 0;
}

.project-info {
  z-index: 10;
  border-bottom-color: var(--white);
  color: var(--white);
  transition: border-color .3s, color .3s;
  position: relative;
}

.project-info:hover {
  border-bottom-color: var(--borders-color);
  color: var(--borders-color);
}

.bg-project {
  background-color: #0009;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.collection-list-wrapper-project-center {
  margin-top: 40px;
}

.collection-list-wrapper-project {
  width: 100%;
  margin-bottom: 22px;
  padding: 13px 0;
}

.collection-list-wrapper-project.recent-projects {
  width: 100%;
}

.img-banner {
  object-fit: cover;
  object-position: 10% 50%;
  width: 100%;
  height: 100%;
}

.img-banner.project-img {
  object-position: 50% 50%;
}

.img-banner.product-details {
  object-position: 50% 50%;
  width: auto;
  height: 80%;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.banner-home-1-wrapper {
  width: 50%;
  height: 100%;
  position: absolute;
  inset: 82px 0% 0% auto;
  overflow: hidden;
}

.banner-home-1-wrapper.services-banner {
  height: 440px;
}

.banner-home-1-wrapper.product-details {
  top: 83px;
}

.bg-home-banner {
  z-index: 1;
  background-color: var(--primary);
  width: 50%;
  height: 100%;
  position: absolute;
  inset: 0% 0% 0% auto;
}

.bg-home-banner.left {
  inset: 0% auto 0% 0%;
}

.home-1-wrapper {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  grid-template-rows: auto;
  width: 100%;
}

.home-1-wrapper.dervice-content {
  align-content: end;
  align-self: center;
  align-items: end;
}

.content-banner-home-1 {
  flex-direction: column;
  display: flex;
}

.button-wrap-banner {
  margin-top: 50px;
}

.get-in-touch-link {
  background-color: #a3916161;
  border-bottom-style: none;
  border-bottom-width: 0;
  width: 100%;
  padding-top: 43px;
  padding-bottom: 43px;
  display: flex;
  position: static;
  inset: auto auto 0% 0%;
  overflow: hidden;
}

.get-in-touch-link.about-page {
  padding-top: 40px;
  padding-bottom: 40px;
}

.loop-block {
  flex: none;
  align-items: center;
  transition: opacity .3s;
  display: flex;
}

.loop-block:hover {
  opacity: .6;
}

.text-loop {
  flex: none;
  align-items: center;
  margin-right: 7px;
  display: flex;
}

.line-contact {
  margin-left: 15px;
  margin-right: 15px;
  line-height: 1em;
}

.contact {
  font-weight: 600;
  line-height: 1em;
}

.about-info-wrapper {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  grid-template-rows: auto;
  grid-template-columns: 1.1fr .8fr;
  place-items: center stretch;
  width: 100%;
}

.left-info {
  flex-direction: column;
  display: flex;
}

.project-name {
  font-size: 22px;
  transition: color .3s;
}

.project-name:hover {
  color: var(--hover-color);
}

.project-name.h3 {
  font-size: 28px;
}

.right-info {
  flex-direction: column;
  padding-bottom: 10px;
  display: flex;
}

.img {
  object-fit: cover;
  width: 100%;
  height: 500px;
  margin-top: 10px;
}

.title-wrapper-center {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 75%;
  margin-bottom: 50px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

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

.collection-item-blog-home {
  background-color: var(--primary-light);
  padding-bottom: 30px;
}

.link-blog-name {
  border-bottom-style: none;
  border-bottom-width: 0;
}

.link-blog-img {
  border-bottom-style: none;
  width: 100%;
}

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

.info-blog {
  margin-top: 20px;
  padding-left: 15px;
  padding-right: 15px;
}

.blog-name {
  transition: color .3s;
}

.blog-name:hover {
  color: var(--hover-color);
}

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

.slider-banner {
  width: 100%;
  height: 100%;
}

.slide-nav-banner {
  height: auto;
  font-size: 13px;
  inset: auto 17px 12% auto;
}

.slide-nav-banner.product-slide {
  bottom: 15%;
}

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

.img-banner-2 {
  object-fit: cover;
  width: 100%;
  height: 450px;
}

.content-banner-2-wrapper {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  margin-bottom: 80px;
  display: flex;
}

.content-banner-2-wrapper.service-banner {
  margin-bottom: 60px;
}

.title-banner-2-wrapper {
  width: 70%;
}

.info-banner-2-wrap {
  flex-direction: column;
  justify-content: space-between;
  width: 30%;
  display: flex;
}

.play-video-banner-2 {
  z-index: 5;
  border: 5px solid var(--white);
  background-color: var(--primary);
  border-radius: 100px;
  justify-content: center;
  width: 120px;
  height: 120px;
  transition-property: border-color;
  display: flex;
  position: absolute;
  inset: 49% auto auto;
}

.play-video-banner-2:hover {
  border-color: var(--borders-color);
}

.play-video-banner-2.service-banner {
  top: -13%;
}

.lines-play {
  border: 1px dashed var(--white);
  border-radius: 100px;
  width: 90px;
  height: 90px;
  position: absolute;
  inset: 10px;
}

.line-banner-2 {
  background-color: var(--borders-color);
  width: 75%;
  height: 2px;
  margin-bottom: 55px;
  margin-left: auto;
}

.banner-3-img {
  object-fit: cover;
  object-position: 80% 0%;
  width: 100%;
  min-height: 100vh;
  position: absolute;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.gradient-bg {
  background-image: linear-gradient(90deg, #000c 14%, #e9ddce00);
  width: 100%;
  min-height: 100%;
  position: absolute;
  inset: 0%;
}

.banner-3-content-wrap {
  z-index: 10;
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  grid-template-rows: auto;
  grid-template-columns: 1.5fr .5fr;
  width: 100%;
  display: flex;
  position: relative;
}

.text-content-wrap {
  flex-direction: column;
  width: 73%;
  display: flex;
}

.inline-block {
  width: 100%;
  display: inline-block;
}

.line-banner {
  background-color: var(--hover-color);
  width: 70%;
  height: 1px;
  margin-top: 30px;
  margin-bottom: 30px;
}

.arrow-link {
  border-bottom-style: none;
  border-bottom-width: 20px;
  width: 45px;
  height: 100px;
  transition-property: opacity;
  position: absolute;
  inset: auto 6% 6% auto;
}

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

.arrow-down {
  object-fit: cover;
  object-position: 50% 100%;
  width: 100%;
  height: 100%;
}

.faq-s-wrapper {
  grid-column-gap: 40px;
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.left-title-wrapper {
  text-align: center;
  flex-direction: column;
  width: 100%;
  display: flex;
  position: static;
  top: 110px;
}

.about-wrapper {
  grid-column-gap: 60px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  width: 100%;
}

.info-wrapper {
  flex-direction: column;
  display: flex;
}

.img-wrapper-info {
  background-image: url('../images/pexels-andre-furtado-43594-3127932_1.avif');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.img-wrapper-info.personnel {
  background-image: url('../images/2150454500_1.avif');
}

.img-wrapper-info.personnel-2 {
  background-image: url('../images/2150454502_1.avif');
}

.numbers-wrapper {
  background-color: var(--dark-light);
  justify-content: space-between;
  margin-top: 20px;
  padding: 30px;
  display: flex;
}

.number {
  font-size: 45px;
  font-weight: 700;
  line-height: 1em;
}

.number-info {
  flex-direction: column;
  display: flex;
}

.info-number {
  margin-top: 15px;
  font-size: 20px;
  line-height: 1em;
}

.line-numbers {
  background-color: var(--borders-color);
  width: 2px;
  height: 100%;
}

.paragraph-wrapper {
  grid-column-gap: 30px;
  justify-content: space-between;
  align-items: flex-end;
  display: flex;
}

.paragraph-3 {
  width: 78%;
}

.review-wrapper {
  width: 100%;
  height: 400px;
  display: flex;
  position: relative;
}

.review-wrapper._1300px {
  max-width: 1300px;
}

.slider-testimonials {
  background-color: #0000;
  align-self: center;
  width: 60%;
  height: auto;
  margin-top: 20px;
  margin-bottom: 70px;
}

.left-arrow-testimonials {
  color: var(--primary);
  width: 40px;
  height: 40px;
  font-size: 22px;
  transition: color .3s;
  inset: auto auto -30% 0%;
}

.left-arrow-testimonials:hover {
  color: var(--hover-color);
}

.right-arrow-testimonials {
  color: var(--primary);
  width: 40px;
  height: 40px;
  font-size: 22px;
  transition: color .3s;
  inset: auto auto -30% 8%;
}

.right-arrow-testimonials:hover {
  color: var(--hover-color);
}

.review-img-bg {
  object-fit: cover;
  width: 50%;
  height: 100%;
  position: absolute;
  inset: 0% 0% 0% auto;
}

.mask-testimonials {
  width: 100%;
}

.slide-review {
  background-color: #fcf8f4db;
  padding: 20px 30px 30px;
}

.info-client-wrap {
  grid-column-gap: 15px;
  align-items: center;
  margin-top: 30px;
  display: flex;
}

.client-img {
  border-radius: 100px;
  width: 60px;
}

.name-client {
  font-size: 18px;
  font-weight: 600;
}

.collection-list-services {
  grid-column-gap: 40px;
  grid-row-gap: 0px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.collection-item-service {
  border-bottom: 1px solid var(--borders-color);
  padding-top: 0;
  padding-bottom: 0;
}

.service-home-wrapper {
  border-bottom-style: none;
  border-bottom-width: 0;
  justify-content: space-between;
  padding-right: 10px;
  display: flex;
  overflow: hidden;
}

.service-home-wrapper.white {
  color: var(--white);
  height: 100%;
  padding-top: 21px;
  padding-bottom: 21px;
}

.info-service-wrap {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  align-items: flex-end;
  display: flex;
}

.service-name {
  margin-top: 0;
  margin-bottom: 0;
}

.service-name.h3 {
  font-size: 24px;
}

.service-name.white {
  color: var(--white);
  font-size: 18px;
  font-weight: 300;
}

.number-services {
  margin-bottom: 4px;
}

.arrow-service {
  width: 26px;
}

.arrow-service.other-arrow {
  position: static;
  inset: auto 0% 0% auto;
}

.link-block-name-project {
  border-bottom-style: none;
  border-bottom-width: 0;
  position: absolute;
  inset: auto auto 20px 30px;
}

.name-project {
  color: var(--white);
  transition: color .3s;
}

.name-project:hover {
  color: var(--borders-color);
}

.link-block-img-project {
  width: 100%;
  height: 560px;
  overflow: hidden;
}

.overlay-bg {
  background-color: #00000080;
  position: absolute;
  inset: 0%;
}

.img-project {
  object-fit: cover;
  object-position: 50% 60%;
  width: 100%;
  height: 100%;
}

.team-member-wrapper {
  background-color: #0009;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  padding-bottom: 30px;
  padding-left: 30px;
  padding-right: 30px;
  display: flex;
  position: absolute;
  inset: 0%;
}

.position-team {
  color: var(--white);
}

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

.social-team {
  color: var(--primary-light);
  border-bottom-style: none;
  border-bottom-width: 0;
  font-family: "Fa Brands 400 (6.4.2)", sans-serif;
  font-size: 18px;
}

.social-team-wrap {
  grid-column-gap: 15px;
  display: flex;
}

.team-details {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.margin-bottom-medium {
  margin-bottom: 30px;
}

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

.flex-vertical-card {
  grid-row-gap: 15px;
  flex-direction: column;
  display: flex;
}

.flex-vertical-card:hover {
  background-position: 50% 20%;
}

.flex-vertical-card.with-gap {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
}

.collection-list-blog-2 {
  grid-column-gap: 40px;
  grid-row-gap: 50px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.collection-list-blog-2.banner {
  grid-template-columns: 1fr;
}

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

.right-banner-wrap {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.right-banner-wrap.banner-left {
  justify-content: flex-end;
  align-items: flex-start;
}

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

.flex-horizontal-align-center.with-gap {
  grid-column-gap: 15px;
  grid-row-gap: 20px;
  flex: 1;
  align-items: center;
  margin-bottom: 0;
}

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

.collection-list-wrapper-blog.mt-30 {
  margin-top: 30px;
}

.column-wrapper {
  width: 40%;
}

.column-wrapper.blog {
  width: 100%;
  margin-top: 23px;
}

.banner-wrap {
  grid-column-gap: 60px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  width: 100%;
  display: grid;
}

.banner-wrap.banner-news {
  grid-column-gap: 60px;
  grid-template-columns: 1.05fr 1fr;
  align-items: stretch;
}

.banner-wrap.thank-you {
  margin-bottom: 50px;
}

.collection-item-3 {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.link-blog-2.banner {
  width: 100%;
  height: 320px;
}

.image-blog {
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: opacity .3s;
}

.image-blog:hover {
  opacity: .8;
}

.info-blog-2 {
  flex-direction: column;
  align-items: flex-start;
  margin-top: 20px;
  display: flex;
}

.blog-name-2 {
  transition: color .3s;
}

.blog-name-2:hover {
  color: var(--hover-color);
}

.recent-link-img-blog {
  width: 25%;
  height: 100%;
}

.recent-img-blog {
  object-fit: cover;
  width: 100%;
  height: 110px;
  transition: opacity .3s;
  display: inline-block;
}

.recent-img-blog:hover {
  opacity: .8;
}

.recent-info-blog-wrap {
  flex-direction: column;
  align-items: flex-start;
  width: 68%;
  display: flex;
}

.blog-name-3 {
  transition: color .3s;
}

.blog-name-3:hover {
  color: var(--hover-color);
}

.date-blog {
  color: var(--hover-color);
  font-size: 15px;
}

.blog-link-img {
  width: 100%;
  height: 300px;
  margin-bottom: 20px;
  overflow: hidden;
}

.blog-img-2 {
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: opacity .3s;
}

.blog-img-2:hover {
  opacity: .8;
}

.blog-name-small {
  transition: color .3s;
}

.blog-name-small:hover {
  color: var(--hover-color);
}

.link-block-blog {
  border-bottom-style: none;
  border-bottom-width: 0;
  display: block;
}

.info-blog-details {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.line-details-blog {
  background-color: var(--borders-color);
  width: 60%;
  height: 2px;
}

.img-testimonial {
  width: 45px;
  height: 45px;
  margin-right: 15px;
}

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

.info-testimonial {
  margin-top: 20px;
  display: flex;
}

.review-testimonial {
  border: 1px solid var(--borders-color);
  padding: 10px 20px 20px;
}

.review-wrap-2 {
  grid-column-gap: 30px;
  width: 100%;
  display: flex;
}

.testimonials-author-2 {
  flex-direction: column;
  justify-content: center;
  padding-bottom: 10px;
  display: flex;
}

.testimonials-author-2.pt-0 {
  padding-bottom: 0;
}

.review-volumns-wrapper {
  grid-column-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  width: 100%;
}

.video-background {
  background-image: linear-gradient(to bottom, var(--areas), var(--areas)), url('../images/2150520602_1.avif');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  background-attachment: scroll, fixed;
  justify-content: center;
  align-items: center;
  height: 450px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.number-service {
  color: var(--borders-color);
  font-size: 38px;
  font-weight: 500;
}

.grid-4 {
  grid-column-gap: 20px;
  grid-template-rows: auto;
  grid-template-columns: .7fr 1.3fr;
  width: 100%;
  display: flex;
}

.grid-4.no-grid {
  justify-content: center;
  align-items: center;
  display: flex;
}

.info-pricing-wrapper {
  flex-direction: column;
  width: 100%;
  display: flex;
}

.title-info-pricing-wrap {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 60%;
  display: flex;
}

.mt-30 {
  margin-top: 30px;
}

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

.button-info-wrap {
  margin-top: 30px;
}

.price-wrapper {
  display: flex;
}

.without-line {
  border-bottom-style: none;
  border-bottom-width: 0;
}

.without-line.pointer {
  cursor: pointer;
}

.links-contact-wrap {
  grid-row-gap: 20px;
  flex-direction: column;
  width: 100%;
  margin-top: 50px;
  display: flex;
}

.link-contact {
  grid-column-gap: 10px;
  align-items: center;
  display: flex;
}

.success-message-contact {
  background-color: var(--green);
  position: static;
  inset: 0%;
}

.contacts-input-2 {
  border: 1px solid var(--borders-color);
  opacity: 1;
  color: #000;
  background-color: #fff;
  height: 60px;
  padding: 16px 28px;
  font-size: 16px;
  font-weight: 400;
  transition: all .2s;
}

.contacts-input-2:focus {
  border-color: var(--hover-color);
}

.contacts-input-2::placeholder {
  color: var(--primary);
  font-size: 16px;
}

.contact-form-wrapper {
  background-color: #fff;
  padding: 40px;
}

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

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

.contacts-textarea-2 {
  border: 1px solid var(--borders-color);
  min-width: 100%;
  max-width: 100%;
  min-height: 200px;
  max-height: 100%;
  margin-bottom: 30px;
  padding: 16px 28px;
  font-size: 16px;
  font-weight: 400;
}

.contacts-textarea-2:focus {
  border-color: var(--hover-color);
}

.contacts-textarea-2::placeholder {
  color: var(--primary);
  font-size: 16px;
}

.projects-home-4 {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  width: 100%;
}

.collection-list-project-home-4 {
  grid-row-gap: 60px;
  flex-direction: column;
  display: flex;
}

.mt-80 {
  margin-top: 80px;
}

.with-line {
  border-top: 1px solid var(--borders-color);
  justify-content: space-between;
  margin-top: 20px;
  padding-top: 30px;
  display: flex;
}

.service {
  color: #616161;
}

.service-text {
  color: var(--hover-color);
  margin-top: 15px;
}

.service-text.mt-0 {
  margin-top: 0;
}

.poject-heading {
  font-size: 56px;
}

.info-project-wrapper {
  grid-row-gap: 10px;
  border-top: 1px solid var(--borders-color);
  flex-direction: column;
  justify-content: space-between;
  margin-top: 10px;
  padding-top: 20px;
  display: flex;
}

.collection-list-3 {
  grid-column-gap: 30px;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.arrow-down-header {
  padding-left: 5px;
  font-family: "Fa solid 900", sans-serif;
  font-size: 12px;
  line-height: 12px;
  display: inline-block;
}

.cart-button {
  background-color: #0000;
  padding: 0;
}

.shop {
  color: var(--primary);
  transition: color .3s;
}

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

.cart-quantity {
  background-color: var(--hover-color);
  color: var(--white);
  border-radius: 0;
  min-width: 16px;
  height: 16px;
  margin-left: 0;
  padding-left: 4px;
  padding-right: 4px;
  line-height: 16px;
  position: absolute;
  inset: -82% 0% auto auto;
}

.shop-wrapper {
  margin-left: 10px;
  margin-right: 10px;
}

.collection-list-products {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.collection-list-products.details {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

.product-name {
  transition: color .3s;
}

.product-name:hover {
  color: var(--hover-color);
}

.collection-item-product {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.price-shop {
  color: var(--hover-color);
  margin-top: 10px;
  font-size: 22px;
  font-weight: 600;
}

.link-block-product {
  border: 1px solid var(--borders-color);
  width: 100%;
  height: 320px;
  overflow: hidden;
}

.link-block-product:hover {
  border-color: var(--hover-color);
}

.product {
  object-fit: cover;
  width: 65%;
  height: 100%;
}

.product-wrapper {
  width: 100%;
  height: auto;
  margin-bottom: 15px;
  padding-bottom: 15px;
  position: relative;
  overflow: hidden;
}

.add-to-cart {
  position: absolute;
  inset: auto 0% 0%;
}

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

.remove-button {
  border-bottom-style: none;
  border-bottom-width: 0;
}

.mt-7 {
  margin-top: 7px;
}

.cart-quantity-2 {
  border-color: var(--borders-color);
  background-color: var(--white);
  border-radius: 0;
}

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

.checkout-form {
  background-color: #0000;
  min-height: auto;
  padding-top: 160px;
  padding-bottom: 60px;
}

.sticky-checkout {
  top: 110px;
}

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

.email {
  border-color: var(--borders-color);
  color: var(--primary);
  background-color: #0000;
  border-radius: 0;
  height: auto;
  padding: 16px 28px;
  font-size: 16px;
  line-height: 1em;
}

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

.block-header {
  border-color: var(--borders-color);
}

.block-content {
  border-right-color: var(--borders-color);
  border-bottom-color: var(--borders-color);
  border-left-color: var(--borders-color);
}

.full-name {
  border-color: var(--borders-color);
  color: var(--primary);
  background-color: #0000;
  border-radius: 0;
  height: auto;
  padding: 16px 28px;
  font-size: 16px;
  line-height: 1em;
}

.full-name:focus {
  border-color: var(--hover-color);
}

.street-address {
  border-color: var(--borders-color);
  background-color: #0000;
  border-radius: 0;
  height: auto;
  padding: 16px 28px;
  font-size: 16px;
  line-height: 1em;
}

.street-address:focus {
  border-color: var(--hover-color);
}

.street-address-2 {
  border-color: var(--borders-color);
  background-color: #0000;
  border-radius: 0;
  height: auto;
  padding: 16px 28px;
  font-size: 16px;
  line-height: 1em;
}

.street-address-2:focus {
  border-color: var(--hover-color);
}

.city {
  border-color: var(--borders-color);
  background-color: #0000;
  border-radius: 0;
  height: auto;
  padding: 16px 28px;
  font-size: 16px;
  line-height: 1em;
}

.city:focus {
  border-color: var(--hover-color);
}

.state-province {
  border-color: var(--borders-color);
  background-color: #0000;
  border-radius: 0;
  height: auto;
  padding: 16px 28px;
  font-size: 16px;
  line-height: 1em;
}

.state-province:focus {
  border-color: var(--hover-color);
}

.zip-postal-code {
  border-color: var(--borders-color);
  background-color: #0000;
  border-radius: 0;
  height: auto;
  padding: 16px 28px;
  font-size: 16px;
  line-height: 1em;
}

.zip-postal-code:focus {
  border-color: var(--hover-color);
}

.country {
  border-color: var(--borders-color);
  background-color: #0000;
  border-radius: 0;
  height: auto;
  padding: 16px 28px;
  line-height: 1em;
}

.country:focus {
  border-color: var(--hover-color);
}

.card-number-2 {
  border-color: var(--borders-color);
  background-color: #0000;
  border-radius: 0;
  height: 53px;
  padding: 16px 28px;
}

.card-number-2:focus {
  border-color: var(--hover-color);
}

.card-number-2::placeholder {
  color: var(--primary);
}

.expiration-date {
  border-color: var(--borders-color);
  background-color: #0000;
  border-radius: 0;
  height: 53px;
  padding: 16px 28px;
}

.expiration-date:focus {
  border-color: var(--hover-color);
}

.expiration-date::placeholder {
  color: var(--primary);
}

.security-code {
  border-color: var(--borders-color);
  background-color: #0000;
  border-radius: 0;
  height: 53px;
  padding: 16px 28px;
}

.security-code:focus {
  border-color: var(--hover-color);
}

.security-code::placeholder {
  color: var(--primary);
}

.checkbox {
  margin-top: 0;
}

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

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

.price {
  color: var(--hover-color);
  font-weight: 500;
}

.paypal-checkout-form, .order-confirmation {
  background-color: #0000;
  min-height: auto;
  padding-top: 160px;
  padding-bottom: 60px;
}

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

.lightbox {
  cursor: pointer;
  border-bottom-style: none;
  border-bottom-width: 0;
}

.link-5 {
  border: 1px solid var(--primary-dark);
  background-color: var(--primary-dark);
  color: var(--white);
  margin-bottom: 10px;
  padding: 6px 18px;
  transition: background-color .3s, border-color .3s, color .3s;
}

.link-5:hover {
  border-color: var(--primary-dark);
  background-color: var(--white);
  color: var(--primary-dark);
}

.price-big {
  color: var(--hover-color);
  margin-top: 30px;
  font-size: 30px;
  font-weight: 600;
  line-height: 1em;
}

.default-state-3 {
  grid-column-gap: 20px;
  align-items: center;
  margin-bottom: 0;
  display: flex;
}

.quantity {
  border-color: var(--borders-color);
  background-color: var(--white);
  border-radius: 0;
  height: 50px;
  margin-bottom: 0;
}

.quantity:focus {
  border-color: var(--hover-color);
}

.add-to-cart-2 {
  margin-top: 40px;
}

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

.lightbox-link-2 {
  border-bottom-style: none;
  border-bottom-width: 0;
  align-items: flex-start;
  height: 100%;
  display: flex;
}

._404-heading {
  color: var(--hover-color);
  font-size: 160px;
  font-weight: 600;
  line-height: 1em;
}

.search-result-list {
  grid-row-gap: 30px;
  flex-direction: column;
  display: flex;
}

.search-heading {
  font-size: 68px;
}

.license-link-2 {
  color: #0e0e0e;
  letter-spacing: normal;
  margin-right: 50px;
  font-weight: 700;
}

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

.hire-popup {
  z-index: 1000;
  text-transform: none;
  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;
  letter-spacing: 0;
  text-transform: none;
  flex-direction: column;
  padding: 15px;
  display: flex;
  position: relative;
}

.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: 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-buttons:hover {
  color: #fff;
  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: #f69c20;
}

.bold-text, .bold-text-2 {
  color: var(--hover-color);
}

.services-content-wrapper {
  width: 100%;
  margin-left: 8px;
  margin-right: 8px;
}

.services-content-wrapper.with-margin {
  margin-top: 50px;
}

.services-content-wrapper._1:hover {
  background-image: linear-gradient(to bottom, var(--areas), var(--areas)), url('../images/3499_1.avif');
  background-position: 0 0, 50%;
  background-size: auto, cover;
}

.services-content-wrapper._4:hover {
  background-image: linear-gradient(to bottom, var(--areas), var(--areas)), url('../images/2151066955_1.avif');
  background-position: 0 0, 50%;
  background-size: auto, cover;
}

.our-services-divider {
  background-color: var(--hover-color);
  min-width: 50px;
  height: 1px;
  transition: background-color .3s;
}

.services-description-wrap {
  width: 45%;
}

.our-services-title-wrap {
  grid-column-gap: 10px;
  align-items: center;
  width: 100%;
  display: flex;
}

.our-services-conten-wrap {
  width: 100%;
  margin-bottom: 37px;
  display: flex;
}

.our-services-decription {
  color: var(--primary);
  margin-top: 20px;
}

.services-title-wrap {
  align-items: center;
  width: 65%;
  display: flex;
}

.services-content-item {
  border: 1px solid #5d5959;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  min-height: 400px;
  padding: 30px 30px 0;
  transition: all .3s;
  display: flex;
  position: relative;
}

.services-content-item:hover {
  transform: translate(0, 15px);
}

.services-content-item.third-item:hover {
  background-image: url('../images/Soffits_1Soffits.webp');
}

.services-content-item.second-item:hover {
  background-image: url('../images/Flat-Roofing_1Flat Roofing.webp');
}

.services-content-item._2:hover {
  background-image: linear-gradient(#a3916180, #a3916180), url('../images/396-1_1.avif');
}

.services-content-item._2.mt-50 {
  margin-top: 50px;
}

.services-content-item._2.mt-50:hover {
  background-image: linear-gradient(to bottom, var(--areas), var(--areas)), url('../images/396-1_1.avif');
  background-position: 0 0, 50%;
  background-size: auto, cover;
}

.services-content-item._3:hover {
  background-image: linear-gradient(to bottom, var(--areas), var(--areas)), url('../images/2314_1.avif');
  background-size: auto, cover;
}

.services-content-item._5:hover {
  background-image: linear-gradient(#a3916180, #a3916180), url('../images/396-1_1.avif');
}

.services-content-item._5.mt-50 {
  margin-top: 50px;
}

.services-content-item._5.mt-50:hover {
  background-image: linear-gradient(to bottom, null, null), url('../images/2149270210_1.avif');
}

.services-content-item.mt-50 {
  margin-top: 50px;
}

.services-content-item.mt-50._5:hover {
  background-image: linear-gradient(to bottom, var(--areas), var(--areas)), url('../images/2149270210_1.avif');
  background-position: 0 0, 0 0;
  background-repeat: repeat, repeat;
  background-size: auto, cover;
}

.services-content-item.mt-50._8:hover {
  background-image: linear-gradient(to bottom, var(--areas), var(--areas)), url('../images/3552_1.avif');
  background-position: 0 0, 0 0;
  background-repeat: repeat, repeat;
  background-size: auto, cover;
}

.services-content-item._6:hover {
  background-image: linear-gradient(to bottom, var(--areas), var(--areas)), url('../images/1772_1.avif');
  background-position: 0 0, 50%;
  background-size: auto, cover;
}

.services-content-item._9:hover {
  background-image: linear-gradient(to bottom, var(--areas), var(--areas)), url('../images/5688_1.avif');
  background-position: 0 0, 0%;
  background-size: auto, cover;
}

.services-content-item._1:hover {
  background-image: linear-gradient(to bottom, var(--areas), var(--areas)), url('../images/3499_1.avif');
  background-position: 0 0, 0 0;
  background-size: auto, cover;
}

.services-content-item._7:hover {
  background-image: linear-gradient(to bottom, var(--areas), var(--areas)), url('../images/2150911443_1.avif');
  background-position: 0 0, 0 0;
  background-size: auto, cover;
}

.services-content-item._4:hover {
  background-image: linear-gradient(to bottom, var(--areas), var(--areas)), url('../images/2151066955_1.avif');
  background-position: 0 0, 50%;
  background-size: auto, cover;
}

.design-content-wrap {
  width: 50%;
}

.design-content-wrap._100 {
  width: 100%;
}

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

.section-2.shorter {
  padding-top: 80px;
  padding-left: 35px;
  padding-right: 35px;
}

.services-text-wrapper {
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  margin-bottom: 30px;
  display: flex;
}

.our-services-title {
  color: var(--hover-color);
  font-size: 22px;
}

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

.base-container-2 {
  z-index: 999;
  flex-direction: column;
  align-items: center;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 0;
  padding-left: 0;
  padding-right: 0;
  display: flex;
}

.empty-state {
  background-color: #0000;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.33em;
  display: block;
}

.our-services-content-wrap {
  border-bottom-color: var(--hover-color);
}

.our-services-number-wrap {
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  display: flex;
}

.our-services-number {
  border: 1px none var(--white);
  color: var(--hover-color);
  text-shadow: none;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 130px;
}

.cover-image {
  z-index: 5;
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.list-text {
  color: #efeef5;
  max-width: 20em;
  font-size: 1.1em;
  line-height: 1.5em;
}

.button-inner {
  z-index: 10;
  background-color: #45934f;
  border-radius: 3px;
  justify-content: center;
  align-items: center;
  padding: 1.4em 3.1em;
  font-size: 1em;
  display: flex;
  position: relative;
}

.circle-in-list {
  border-radius: 15px;
  flex-direction: column;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 3em;
  height: 3em;
  margin-right: 2.5em;
  display: flex;
  position: relative;
}

.button-pattern {
  z-index: 1;
  opacity: .25;
  background-image: url('../images/diagonal-lines-blue.svg');
  background-position: 50%;
  background-size: .5em;
  border-radius: 3px;
  position: absolute;
  inset: 0%;
}

.sticky-column-1 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: auto;
  height: 800px;
  min-height: auto;
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
  position: sticky;
  top: 0;
}

.max-width-4 {
  max-width: 36em;
}

.heading {
  text-align: left;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 5em;
  font-weight: 500;
  line-height: 1.2em;
}

.heading.in-sticky-sec {
  color: #fff;
  text-align: left;
  margin-bottom: 1em;
  font-size: 3.2em;
  font-weight: 400;
  line-height: 1.5em;
}

.main-button {
  z-index: 10;
  color: #fff;
  letter-spacing: .1em;
  text-transform: uppercase;
  border: 1px solid #a0ffba54;
  border-radius: 3px;
  padding: .8em;
  font-weight: 500;
  transition: border .4s;
  position: relative;
}

.main-button:hover {
  border-color: #a0bcffa8;
}

.list-content {
  padding-top: .3em;
}

.container {
  z-index: 21;
  width: 100%;
  max-width: 1600px;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
  position: static;
}

.circle-background {
  z-index: 2;
  background-color: var(--hover-color);
  border-radius: 15px;
  width: 100%;
  height: 100%;
  position: absolute;
}

.buttons-in-sticky-sec {
  grid-column-gap: 1.5em;
  grid-row-gap: 1.5em;
  flex-wrap: wrap;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.list-title {
  color: #007446;
  margin-bottom: .7em;
  font-size: 1.5em;
  font-weight: 600;
  line-height: 1.2em;
}

.list-title.is-white-color {
  color: #fff;
}

.custom-list-icon {
  z-index: 10;
  object-fit: contain;
  width: 1em;
  height: 1em;
  font-size: 1.4em;
  position: absolute;
}

.custom-list-wrap {
  z-index: 10;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 281px;
  padding-bottom: 116px;
  display: flex;
  position: relative;
}

.hero-bg-gradient {
  z-index: 7;
  background-image: linear-gradient(180deg, transparent 35%, var(--areas));
  position: absolute;
  inset: 0%;
}

.list-block {
  z-index: 10;
  justify-content: flex-start;
  align-items: flex-start;
  padding-bottom: 4.5em;
  display: flex;
  position: relative;
  overflow: hidden;
}

.list-block.in-company {
  max-width: 25em;
  padding-bottom: 6em;
}

.list-block.in-company.less-padding {
  padding-bottom: 2.5em;
}

.sticky-column-2 {
  color: #fff;
  flex-direction: column;
  flex: 1;
  justify-content: center;
  align-items: center;
  max-width: 35em;
  padding-top: 80vh;
  padding-bottom: 80vh;
  padding-left: 6em;
  display: flex;
  position: relative;
}

.sticky-column-2.other-height {
  justify-content: flex-start;
  align-items: center;
  max-width: 60%;
  height: 800px;
  min-height: auto;
  padding-top: 26vh;
  padding-bottom: 0;
  padding-left: 0;
  overflow: auto;
}

.button-title {
  font-size: 1em;
}

.absolute-block {
  z-index: 1;
  height: 100%;
  margin-top: 0;
  position: absolute;
  inset: 0%;
}

.min-100vh-sec {
  z-index: 0;
  background-color: #0000;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 800px;
  min-height: auto;
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
  position: relative;
}

.button-icon {
  object-fit: contain;
  width: 1em;
  height: 1em;
  margin-left: 1em;
  font-size: 1.2em;
}

.list-line {
  opacity: .35;
  background-image: url('../images/diagonal-lines-blue.svg');
  background-position: 0 0;
  background-size: .5em;
  border-left: 1px solid #45934f;
  border-right: 1px solid #45934f;
  width: .6em;
  height: 100%;
  position: absolute;
  top: .1em;
  left: 1.2em;
}

.list-line.is-2nd {
  opacity: .3;
  background-image: url('../images/diagonal-lines-white.svg');
  border-left-color: #afc7ff;
  border-right-color: #afc7ff;
}

.flex-for-sticky {
  z-index: 2;
  grid-column-gap: 0em;
  grid-row-gap: 0em;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-around;
  align-items: flex-start;
  width: 100%;
  height: 800px;
  padding-left: 40px;
  padding-right: 40px;
  display: flex;
  position: relative;
  overflow: auto;
}

.section-3 {
  z-index: 10;
  width: 100vw;
  position: relative;
  overflow: hidden;
}

.section-3.sticky-sec {
  z-index: 20;
  margin-top: 0;
  position: static;
  overflow: visible;
}

.sticky-100vh-block-2 {
  z-index: 2;
  height: 100vh;
  position: sticky;
  top: 0;
}

.sticky-100vh-block-2.other-height {
  height: 800px;
}

.hero-bg-color {
  z-index: 15;
  background-color: var(--areas);
  mix-blend-mode: multiply;
  position: absolute;
  inset: 0%;
}

.image-animation-trigger {
  z-index: 10;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: absolute;
  overflow: hidden;
}

.image-animation-trigger._3d-for-image {
  width: 115%;
  height: 115%;
  position: absolute;
}

.company-content {
  z-index: 20;
  flex-direction: column;
  justify-content: flex-start;
  align-self: center;
  align-items: flex-start;
  max-width: 17em;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
}

.company-content.is-white-color {
  color: #fff;
  max-width: none;
}

.company-title {
  z-index: 5;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 1em;
  font-size: 2.1em;
  font-weight: 600;
  line-height: 1.2em;
  display: inline-block;
  position: relative;
}

.grid-icon-large {
  z-index: 20;
  object-fit: contain;
  width: 2em;
  height: auto;
  font-size: 7em;
  position: relative;
}

.grid-2 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-columns: 1fr 1fr 1fr;
  padding: 50px;
}

.opacity-70 {
  opacity: .7;
}

.background-pattern {
  z-index: 1;
  background-color: var(--borders-color);
  background-image: none;
  background-size: auto;
  position: absolute;
  inset: 0%;
}

.content-grid-block-3 {
  z-index: 10;
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  min-height: 35em;
  padding: 4em;
  display: grid;
  position: relative;
  overflow: hidden;
}

.content-grid-block-3.with-bg-blue {
  background-color: var(--hover-color);
  min-height: 25em;
  padding: 0;
}

.content-grid-block-1 {
  z-index: 10;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 25em;
  min-height: 25em;
  padding: 4em;
  display: flex;
  position: relative;
  overflow: hidden;
}

.light-weight {
  font-weight: 200;
}

.grid-main-bg {
  z-index: 2;
  background-color: var(--hover-color);
  position: absolute;
  inset: 0%;
}

.grid-main-bg.with-opacity {
  background-color: var(--white);
  opacity: .5;
  color: #d8ffdd;
}

.grid-main-bg.different-color-on-tab {
  background-color: var(--hover-color);
}

.animation-color-bg {
  z-index: 15;
  background-color: var(--dark-light);
  width: 450%;
  height: 100%;
  display: none;
  position: absolute;
  transform: skew(-60deg);
}

.company-title-2 {
  z-index: 20;
  text-transform: uppercase;
  max-width: 4em;
  font-size: 3.3em;
  font-weight: 600;
  position: relative;
}

.company-title-2.is-white {
  color: #fff;
  font-size: 2em;
}

.grid-content-3 {
  color: #202020;
  text-align: left;
  max-width: 18em;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4em;
}

.grid-icon-2 {
  object-fit: contain;
  width: 1em;
  height: 1em;
  margin-bottom: 1em;
  font-size: 2em;
}

.content-grid-block-2 {
  background-color: var(--hover-color);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 22em;
  padding: 4em;
  display: flex;
  position: relative;
}

.grid-content-2 {
  z-index: 10;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.company-subtitle {
  color: #efeef5;
  line-height: 1.6em;
}

.section-4 {
  z-index: 10;
  width: 100vw;
  position: relative;
  overflow: hidden;
}

._3d-block {
  z-index: 8;
  background-color: var(--areas);
  perspective: 1000px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: absolute;
  inset: 0%;
  overflow: hidden;
}

.list {
  z-index: 5;
  color: var(--white);
  position: relative;
}

.vertical-inscription {
  color: #b69931;
  text-align: center;
  width: 120px;
  margin-top: 0;
  margin-bottom: 0;
  position: absolute;
  inset: 0% auto 0% 10px;
  transform: rotate(-90deg);
}

.leadership-title {
  color: #fff;
}

.leadership-title.bigger {
  font-size: 46px;
}

.home-features-wrap {
  text-align: center;
  background-color: #fff;
  width: 25%;
  padding: 20px;
  transition: box-shadow .5s;
  box-shadow: 0 0 30px #0f5cfa00;
}

.home-features-wrap:hover {
  box-shadow: 0 0 30px #0f5cfa14;
}

.home-features-wrap.cntact-us-2 {
  background-color: #00000054;
  width: 15%;
  padding-top: 39px;
  padding-bottom: 39px;
}

.main-title-wrapper {
  justify-content: flex-start;
  align-items: stretch;
  padding-left: 35px;
  display: flex;
  position: relative;
}

.main-title-wrapper.leadership {
  padding-left: 0;
}

.white-description-leadership {
  color: #fff;
  width: 100%;
  margin-bottom: 0;
  font-size: 19px;
}

.red-h1-title {
  color: #b69931;
  font-size: 50px;
}

.red-h1-title:hover {
  color: #b69931;
}

.base-container-3 {
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin-top: 0;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  padding-right: 0;
  display: flex;
  position: relative;
}

.home-features-wrapper {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  width: 100%;
  display: flex;
}

.home-features-wrapper.contacts-2 {
  justify-content: space-between;
}

.services-wrapper {
  width: 100%;
  margin-top: 40px;
  display: flex;
}

.heading-50 {
  color: #f2f1f1;
}

.heading-50._3 {
  white-space: normal;
  word-break: break-all;
}

.section-5 {
  padding: 80px 40px 80px 53px;
  position: relative;
}

.section-5.contacts-2-banner {
  background-image: linear-gradient(0deg, #000, #0000 38%), linear-gradient(#202020ab, #202020ab), url('../images/2150520602_1.avif');
  background-position: 0 0, 0 0, 50%;
  background-size: auto, auto, cover;
  background-attachment: scroll, scroll, fixed;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 107px 40px 119px;
  display: flex;
}

.ruc-container {
  width: 60%;
  margin-right: auto;
}

.text-span-2 {
  color: var(--hover-color);
}

.bold-text-3 {
  word-break: normal;
}

.primary-red-button {
  color: #fff;
  letter-spacing: 1px;
  background-color: #ff6d20;
  border: 1px solid #ff6d20;
  padding: 15px 30px;
  font-weight: 400;
  transition-property: all;
  transition-duration: .3s;
}

.primary-red-button:hover {
  color: #010524;
  background-color: #fff;
  border-color: #fff;
}

.primary-red-button.header-button {
  letter-spacing: 1px;
  height: auto;
  padding: 8px 7px;
  font-size: 12px;
  font-weight: 900;
  line-height: 14px;
  transition-duration: .45s;
}

.primary-red-button.header-button:hover {
  color: #fff;
  background-color: #010524;
  border-color: #010524;
}

.section-6 {
  padding: 80px 20px;
  position: relative;
}

.section-6.home-13-get-started {
  background-image: linear-gradient(90deg, #000 12%, #0000), linear-gradient(#00031f24, #00031f24), url('../images/2150454499_1.avif');
  background-position: 0 0, 0 0, 50% 0;
  background-size: auto, auto, cover;
  background-attachment: scroll, scroll, fixed;
  padding: 98px 20px;
}

.section-6.home-13-get-started._2 {
  background-image: linear-gradient(#050401b8, #050401b8), url('../images/2150454499_1.avif');
  background-position: 0 0, 50% 0;
  background-size: auto, cover;
  background-attachment: scroll, fixed;
  padding-left: 40px;
  padding-right: 40px;
}

.base-container-4 {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 0;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
}

.vertical-inscription-2 {
  color: #ff6d20;
  text-align: center;
  width: 120px;
  margin-top: 0;
  margin-bottom: 0;
  position: absolute;
  inset: 0% auto 0% 10px;
  transform: rotate(-90deg);
}

.vertical-inscription-2.secondary-sections {
  left: 0;
}

.get-started-wrapper {
  grid-row-gap: 30px;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.main-title-wrapper-2 {
  justify-content: flex-start;
  align-items: stretch;
  padding-left: 0;
  display: flex;
  position: relative;
}

.text-white {
  color: #fff;
}

.red-h2-text {
  color: #ff6d20;
}

.paragraph-our-benefits {
  color: #fff;
  font-size: 19px;
}

.get-started-text-wrap {
  width: 70%;
}

.intro-item-wrap {
  grid-column-gap: 20px;
  display: flex;
}

.section-7 {
  padding: 131px 20px;
  position: relative;
}

.base-container-5 {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 0;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
}

.vertical-inscription-3 {
  color: #ff6d20;
  text-align: center;
  width: 120px;
  margin-top: 0;
  margin-bottom: 0;
  position: absolute;
  inset: 0% auto 0% 10px;
  transform: rotate(-90deg);
}

.vertical-inscription-3.secondary-sections {
  left: 0;
}

.vertical-inscription-3.secondary-sections.other {
  left: -22px;
}

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

.main-title-wrapper-3 {
  justify-content: flex-start;
  align-items: stretch;
  padding-left: 0;
  display: flex;
  position: relative;
}

.register-container {
  grid-column-gap: 20px;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  display: flex;
  position: relative;
}

.register-text {
  width: 400px;
}

.circle-work-green {
  border: 1px solid #113331;
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  width: 46px;
  height: 46px;
  display: flex;
}

.circle-work-green.item-1 {
  border-color: #ff6d20;
  flex: none;
}

.how-it-work-block {
  width: 520px;
}

.work-stages-wrapper {
  margin-top: 40px;
}

.number-container {
  grid-row-gap: 20px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.intro-line-image {
  filter: brightness(200%);
  margin-top: 56px;
  margin-bottom: 10px;
  padding-left: 23px;
  position: absolute;
  inset: 0% auto 0% 0%;
}

.name-3 {
  margin-top: 5px;
  font-size: 16px;
}

.right-process-wrapp {
  grid-column-gap: 16px;
  grid-row-gap: 20px;
  background-image: url('../images/WhatsApp-Image-2024-05-31-at-1.36.00-PM_1.avif');
  background-position: 50%;
  background-size: cover;
  flex-direction: column;
  flex: 1;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  display: block;
}

.number-1 {
  color: #ff6d20;
}

.text-span-3 {
  color: var(--hover-color);
}

.h6-subtitle {
  text-transform: capitalize;
  background-color: #77cc6d42;
  border-radius: 60px;
  margin-top: 0;
  margin-bottom: 0;
  padding: 7px 24px;
  display: inline-block;
}

.h6-subtitle.work-process {
  background-color: #77cc6d33;
  border-radius: 4px;
  align-self: flex-start;
  margin-bottom: 30px;
}

.tab-content-home-4 {
  flex-direction: column;
  justify-content: center;
  width: 100%;
  max-width: 720px;
  height: 100%;
  display: flex;
}

.full-width-panel {
  background-color: #fff;
  align-items: center;
  width: 100%;
  height: 100%;
  padding-left: 15px;
  padding-right: 56px;
  display: flex;
  position: relative;
}

.top-white-con {
  background-color: #fff;
  height: 0%;
  position: absolute;
  inset: 0% 0% auto;
}

.video-cover {
  align-items: center;
  width: 50vw;
  display: flex;
  position: absolute;
  inset: 0% auto 0% 0%;
  overflow: visible;
}

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

.print-hero-photo {
  background-image: url('../images/WhatsApp-Image-2024-05-23-at-3.07.08-PM_1.avif');
  background-position: 80%;
  background-size: cover;
  position: absolute;
  inset: 0%;
}

.print-hero-photo.printing {
  background-image: url('../images/2149182042.jpg');
  background-position: 0%;
  background-attachment: fixed;
}

.print-hero-photo.design {
  background-image: url('../images/2881_1.avif');
  background-position: 100%;
  background-attachment: fixed;
}

.print-hero-photo.web {
  background-image: url('../images/2151340101_1.avif');
  background-position: 0%;
  background-size: auto;
  background-attachment: fixed;
}

.section-video-content {
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  padding-top: 0;
  padding-bottom: 0;
  position: relative;
  overflow: hidden;
}

.video-grid-wrapper {
  z-index: 20;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: 1fr;
  grid-template-columns: minmax(15px, 15px) minmax(auto, 1170px) minmax(15px, 15px);
  grid-auto-rows: auto;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  width: 100%;
  display: flex;
  position: relative;
}

.primary-button-2 {
  color: #1d2d29cc;
  text-align: center;
  letter-spacing: .5px;
  background-color: #77cc6d;
  border: 2px solid #77cc6d;
  border-radius: 4px;
  justify-content: center;
  align-items: center;
  min-width: 120px;
  padding: 10.5px 28px;
  transition: all .5s;
  display: flex;
}

.primary-button-2:hover {
  opacity: 1;
  color: #1d2d29cc;
  background-color: #0000;
}

.content-grid {
  grid-column-gap: 0px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  width: 100%;
  display: grid;
  position: relative;
}

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

.outline {
  border: 1px solid #77cc6d;
  border-radius: 100%;
  margin: 9px;
  position: absolute;
  inset: 0%;
}

.history-intro {
  grid-column-gap: 16px;
  grid-row-gap: 36px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  padding: 80px 40px;
  display: flex;
}

.animation-con {
  z-index: 5;
  justify-content: center;
  align-items: flex-end;
  display: flex;
  position: absolute;
  inset: 0%;
}

.bottom-white-con {
  background-color: #fff;
  height: 0%;
  position: absolute;
  inset: auto 0% 0%;
}

.no-margin {
  text-transform: none;
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7em;
}

.no-margin.font-24pt {
  font-size: 24px;
}

.no-margin.font-24pt.bold {
  font-weight: 500;
}

.no-margin.font-24pt.bold.even-bigger-font {
  color: var(--hover-color);
  font-size: 32px;
  font-weight: 600;
}

.space-text {
  margin-top: 20px;
  margin-bottom: 40px;
  font-size: 16px;
  font-weight: 400;
}

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

.lightbox-link {
  z-index: 30;
  background-color: #fff;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 140px;
  height: 140px;
  margin-left: -70px;
  text-decoration: none;
  display: flex;
  position: absolute;
  inset: auto auto auto 0%;
}

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

.lightbox-link.hidden {
  display: none;
}

.circle-link-hover {
  background-color: #77cc6d;
  border-radius: 100%;
  width: 100%;
  height: 100%;
  display: none;
  position: absolute;
  inset: 0%;
}

.clip-content {
  width: 100vw;
  position: relative;
  overflow: hidden;
}

.print-image-wrap {
  justify-content: flex-start;
  align-items: flex-end;
  width: 100%;
  height: 100%;
  padding-left: 30px;
  padding-right: 30px;
  display: flex;
  position: absolute;
  inset: 0%;
  overflow: hidden;
}

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

.heading-51 {
  font-size: 38px;
}

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

.link-6 {
  font-size: 12px;
}

.div-block {
  height: 300px;
  position: absolute;
  inset: 0%;
}

.heading-52 {
  color: #fffc;
}

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

.image {
  width: 100%;
}

.div-block-2 {
  z-index: 2;
  background-image: linear-gradient(#00000080, #00000080);
  justify-content: flex-start;
  align-items: flex-end;
  width: 100vw;
  height: auto;
  padding: 168px 45px 45px;
  display: flex;
  position: absolute;
  inset: 0%;
}

.div-block-3 {
  width: 35%;
  position: sticky;
  top: 172px;
}

.text-block-14 {
  text-align: center;
  margin-top: 16px;
  margin-bottom: 16px;
  font-size: 22px;
  font-weight: 600;
  line-height: 24px;
}

.form-2 {
  z-index: 10;
  background-color: #ffffffbd;
  border: 6px solid #f2d201;
  flex: none;
  width: auto;
  height: 100%;
  margin-bottom: 0;
  padding: 2em .9em;
  position: relative;
  overflow: hidden;
}

.form-error-link {
  color: #0a223f;
  text-decoration: underline;
}

.process-image-wrapper {
  flex-flow: column;
  order: 1;
  justify-content: center;
  align-items: center;
  width: 55%;
  display: flex;
}

.form-inner {
  flex-flow: wrap;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  display: flex;
}

.form-inner.hidden {
  margin-top: 12px;
  margin-bottom: 12px;
  display: flex;
}

.form-success-message-2 {
  color: #fff;
  background-color: #45934f;
  border: 1px solid #f1fff8;
  width: 100%;
  padding: 5em 3em;
}

.home-primary-button {
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  color: #000;
  text-transform: uppercase;
  cursor: pointer;
  background-color: #f2d201;
  border-radius: 60px;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 40px;
  padding: 12px 21px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1em;
  transition: color .4s, background-color .4s;
  display: flex;
}

.home-primary-button:hover {
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  background-color: #fff;
}

.home-primary-button.other {
  background-color: var(--primary-dark);
  color: var(--white);
  border-radius: 0;
  margin-bottom: 14px;
}

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

.form-field {
  z-index: 5;
  color: #000;
  background-color: #0000;
  border: 1px solid #0000;
  border-bottom-color: #5d5959;
  min-height: 2.5em;
  margin-top: 0;
  margin-bottom: 9px;
  padding: 0 0 0 7.5em;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.1em;
  transition: border-color .5s;
  position: relative;
}

.form-field:hover {
  border-bottom-color: #0c389f;
}

.form-field:focus {
  background-color: #0000;
  border-color: #0000 #0000 #1b243ab3;
}

.form-field::placeholder {
  color: #333;
  font-size: .7em;
  font-weight: 300;
}

.form-field.address {
  padding-left: 6.1em;
}

.form-field.other {
  color: #000;
  border-bottom-color: #5d5959;
  min-height: 2.5em;
  margin-bottom: 7px;
  padding-left: 4.7em;
  font-size: 14px;
  line-height: 16px;
}

.form-field.other:hover {
  border-bottom-color: #000;
}

.form-field.text-area {
  border-bottom-color: #5d5959;
  min-height: 6em;
  padding-top: 1.4em;
  padding-left: 0;
}

.form-field.text-area:hover {
  border-bottom-color: #000;
}

.form-item {
  align-items: flex-start;
  width: 100%;
  font-size: 14px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.form-item:hover {
  border-bottom-color: #fff;
}

.form-item.is-area-text {
  align-items: flex-start;
  margin-bottom: 1.3em;
  padding-top: 1em;
}

.form-label {
  z-index: 11;
  color: #3b3b3b;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 0;
  font-size: 1em;
  font-weight: 500;
  line-height: 1.2em;
  position: absolute;
  top: .9em;
  left: 0;
}

.form-error-message {
  background-color: #ffccd5;
  border: 1px solid #c9184a;
  padding: 2em;
}

.form-success-title {
  color: #fff;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  font-size: 2.1em;
  font-weight: 300;
  line-height: 1.2em;
}

.form-error-paragraph {
  color: #191c1f;
  line-height: 1.6;
}

.form-success-icon {
  object-fit: contain;
  width: 1em;
  height: 1em;
  margin-bottom: .5em;
  margin-left: auto;
  margin-right: auto;
  font-size: 2.3em;
  display: block;
}

.form-block {
  width: 100%;
}

.div-block-4 {
  height: 120px;
  font-weight: 600;
  position: absolute;
  inset: 0%;
  box-shadow: 0 2px 18px -3px #0003;
}

.div-block-9 {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding: 92px 40px 91px;
  display: flex;
}

.div-block-9.hidden {
  display: none;
}

.text-accent {
  color: var(--hover-color);
}

.html-embed-5 {
  margin-top: 33px;
}

.logo {
  margin-top: 41px;
  transition: all .3s, color .3s;
}

.logo:hover {
  transform: scale(1.2);
}

.form-block-contacts-2 {
  width: 100%;
  margin-bottom: 0;
}

.form-3 {
  grid-row-gap: 30px;
  flex-direction: column;
  width: 100%;
  height: 100%;
  display: flex;
}

.inputs-wrapper {
  grid-column-gap: 30px;
  display: flex;
}

.contacts-input {
  color: #132121;
  background-color: #fff;
  border: 1px solid #010f3433;
  border-radius: 10px;
  height: 65px;
  margin-bottom: 0;
  padding: 20px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1em;
  transition: all .2s;
}

.contacts-input:focus {
  color: #4b83c0;
  border: 1px solid #4b83c0;
}

.contacts-input::placeholder {
  color: #132121;
}

.contacts-textarea {
  border: 1px solid #010f3433;
  border-radius: 10px;
  min-width: 100%;
  max-width: 100%;
  min-height: 150px;
  max-height: 100%;
  margin-bottom: 0;
  padding: 20px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1em;
}

.contacts-textarea:focus {
  border: 1px solid #4b83c0;
}

.contacts-textarea::placeholder {
  color: #132121;
}

.primary-button-3 {
  color: #fff;
  text-align: center;
  text-transform: none;
  background-color: #4b83c0;
  border: 1px solid #4b83c0;
  border-radius: 70px;
  padding: 20px 40px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1em;
  transition: all .3s;
  display: inline-block;
}

.primary-button-3:hover {
  opacity: 1;
  color: #4b83c0;
  background-color: #fff;
}

.success-message {
  color: #4b83c0;
  background-color: #fff;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
}

.error-message-2 {
  color: #ac3535;
  text-align: center;
  background-color: #0000;
  padding: 0;
  font-size: 14px;
}

.collection-list-4 {
  width: 100%;
  height: 100%;
  margin-left: 0;
  margin-right: 0;
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
}

.div-block-10 {
  text-align: center;
  align-self: center;
  width: 100%;
  margin-top: 50px;
}

.section-8 {
  width: 100vw;
  height: 500px;
}

.div-block-11 {
  display: flex;
}

.section-9 {
  width: 100vw;
  padding: 68px 40px;
}

.list-item {
  margin-bottom: 20px;
}

.bold-text-4 {
  font-size: 18px;
  font-weight: 500;
}

.heading-53 {
  color: var(--white);
  font-size: 38px;
}

.container-2 {
  width: 100%;
  max-width: none;
  padding-left: 40px;
}

.map {
  width: 100vw;
}

.div-block-12 {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  text-align: center;
  flex-flow: column;
  justify-content: center;
  align-self: center;
  align-items: center;
  width: 16%;
  height: 80%;
  margin-left: 20px;
  display: flex;
}

.header-right {
  align-items: center;
  margin-left: auto;
  margin-right: 0;
  display: flex;
}

.header-right.mobile-hidden {
  text-align: center;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-bottom: -16px;
  margin-left: 0;
}

.link-7 {
  border-bottom-style: none;
  align-self: center;
  margin-left: 0;
  font-size: 26px;
  text-decoration: none;
}

.link-7:hover {
  border-bottom-style: none;
  font-size: 28px;
  text-decoration: none;
}

.text-span-5 {
  color: #f2f1f1;
  justify-content: center;
  align-items: flex-start;
  font-weight: 500;
  text-decoration: none;
  transition: all .375s;
  display: flex;
}

.text-span-5:hover {
  color: var(--primary-dark);
  letter-spacing: .2px;
  -webkit-text-stroke-color: var(--primary-dark);
  font-size: 28px;
  text-decoration: none;
}

.div-block-56 {
  justify-content: center;
  width: 100%;
  display: flex;
}

.error-message-color {
  color: #fff;
  text-align: center;
  background-color: #ef3b31;
  height: auto;
  margin-top: 20px;
  padding-top: 20px;
  padding-bottom: 20px;
}

.text-field-contact {
  color: #000;
  background-color: #0000;
  border: 1px #eaeaea;
  border-bottom: 1px solid #babdc2;
  width: 100%;
  margin-bottom: 20px;
  margin-left: 6px;
  margin-right: 6px;
  font-size: 14px;
  line-height: 24px;
}

.text-field-contact:hover {
  border-bottom-color: #142335;
}

.text-field-contact::placeholder, .text-field-contact.other-text-colour, .text-field-contact.other-text-colour:focus-visible, .text-field-contact.other-text-colour[data-wf-focus-visible] {
  color: #000;
}

.form-block-5 {
  width: 100%;
  padding-left: 18px;
  padding-right: 18px;
}

.form-block-5.outline-outside {
  border: 8px solid var(--hover-color);
  background-color: #ebe5d6;
  flex-direction: column;
  align-items: center;
  width: auto;
  padding-top: 18px;
  padding-bottom: 15px;
  display: flex;
}

.text-area {
  color: #000;
  background-color: #fff0;
  border: 1px #000;
  border-bottom: 1px solid #babec3;
  height: 100px;
  min-height: 130px;
  padding-top: 8px;
  font-size: 14px;
}

.text-area:hover {
  border-bottom-color: #142335;
}

.text-area::placeholder {
  color: #000;
}

.form-4 {
  color: #000;
  flex-direction: column;
  align-items: center;
  width: 100%;
  display: flex;
}

.modal-close {
  color: #fff;
  text-align: center;
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 18px;
}

.modal {
  z-index: 2147483647;
  color: #000;
  background-color: #000000d9;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100vw;
  min-width: auto;
  height: auto;
  padding: 26px 146px 0;
  display: none;
  position: fixed;
  inset: 0%;
  overflow: scroll;
}

.success-message-color {
  color: #fff;
  background-color: #00b3ac;
}

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

.left-alignment.smaller-text {
  letter-spacing: 1px;
  font-size: 32px;
}

.div {
  width: 70%;
  height: 50%;
}

.div.less {
  height: auto;
  overflow: scroll;
}

.image-84 {
  margin-bottom: 9px;
}

.flex-form {
  color: #000;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.button-wrapper-2 {
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 300px;
  margin-top: 30px;
  display: flex;
}

.button-wrapper-2.product {
  flex-direction: row;
  justify-content: center;
  margin-top: 20px;
}

.list-item-2 {
  margin-top: 18px;
  margin-bottom: 18px;
}

.image-86 {
  margin-top: 31px;
  margin-bottom: 31px;
}

.div-block-57 {
  background-image: linear-gradient(#000, #0000);
  height: 300px;
  position: absolute;
  inset: 0%;
}

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

.div-block-61 {
  z-index: 1;
  background-color: var(--primary);
  height: 115px;
  position: fixed;
  inset: 0% 0% auto;
}

.empty-state-2 {
  background-color: #fff;
}

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

.dropdown-list {
  padding: 6px;
}

.dropdown-list.w--open {
  background-color: var(--white);
  width: 300px;
  padding: 20px;
}

.dropdown-list.smaller.w--open {
  width: 180px;
}

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

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

@media screen and (min-width: 1280px) {
  h1 {
    line-height: 1em;
  }

  .section {
    padding-top: 130px;
    padding-bottom: 130px;
  }

  .section.changelog-banner, .section.banner-our-team, .section.banner-service, .section.pricing-banner, .section.contacts-banner {
    padding-top: 200px;
  }

  .section.banner-faq {
    background-size: 1200px;
    padding-top: 200px;
  }

  .section.banner-testimonials {
    padding-top: 200px;
  }

  .section.about-us-banner {
    background-image: linear-gradient(#0000008f, #0000008f), url('../images/pexels-scottwebb-137581_1.avif');
    background-position: 0 0, 50% 0;
    background-repeat: repeat, no-repeat;
    background-size: auto, cover;
    background-attachment: scroll, scroll;
  }

  .section.portfolio-grid-banner {
    background-size: 1200px;
    padding-top: 200px;
  }

  .section.bg, .section.bg-without-bottom-spacing {
    background-size: 1200px;
  }

  .section.home-1-banner {
    min-height: 100vh;
  }

  .section.light-bg-with-bottom-100px {
    padding-bottom: 100px;
  }

  .section.light-bg-with-top-100px, .section.light-bg-with-top-100px-bottom-0px {
    padding-top: 100px;
  }

  .section.home-3-banner {
    padding-top: 180px;
  }

  .section.blog-banner {
    background-size: 1200px;
    padding-top: 180px;
  }

  .section.services-banner {
    padding-top: 200px;
  }

  .section.section-mt-60 {
    padding-top: 100px;
  }

  .section.portfolio-details, .section.shop-banner, .section.prodeuct-details-banner {
    padding-top: 200px;
  }

  .section.mt-100 {
    padding-top: 100px;
  }

  .section.services-banner {
    background-size: 1200px;
  }

  .section.services-banner-copy {
    padding-top: 200px;
  }

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

  .headings-typography-wrapper {
    width: 48%;
  }

  .style-guide-body-wrapper {
    margin-right: 60px;
  }

  .nav-link {
    padding-left: 13px;
    padding-right: 13px;
  }

  .nav-dropdown-toggle {
    padding-left: 20px;
    padding-right: 20px;
  }

  .nav-dropdown-list.megamenu.w--open {
    left: -190px;
  }

  .pages-banner {
    padding-top: 200px;
    padding-bottom: 130px;
  }

  .blog-template-image {
    max-height: 600px;
  }

  .footer {
    padding-top: 62px;
  }

  .style-guide-buttons-wrapper {
    flex-wrap: nowrap;
    justify-content: space-between;
  }

  .style-guide-button-wrapper {
    width: auto;
  }

  .pricing-plans-wrapper {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }

  .pricing-plan-item {
    padding-left: 40px;
    padding-right: 40px;
  }

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

  .search-section {
    padding-top: 180px;
    padding-bottom: 130px;
  }

  .service-details-content-wrapper {
    width: 68%;
  }

  .service-details-sidebar-wrapper {
    width: auto;
    padding-left: 40px;
    padding-right: 40px;
  }

  .accordion-wrapper-one-column {
    width: 100%;
  }

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

  .industries-block-wrapper {
    position: relative;
  }

  .section-with-blue-bg {
    padding-left: 40px;
    padding-right: 40px;
  }

  .center-title {
    padding-right: 140px;
  }

  .title-wrap {
    flex-direction: column;
    display: flex;
  }

  .contact-block {
    padding: 80px 120px;
  }

  .big-numbers {
    font-size: 90px;
  }

  .paragraph-title {
    width: 40%;
  }

  .subtitle-all-caps {
    margin-bottom: 10px;
  }

  .scroller {
    max-width: 1150px;
  }

  .project-photo {
    height: 500px;
  }

  .img-banner {
    object-fit: cover;
    object-position: 5% 50%;
  }

  .img-banner.product-details {
    margin-left: auto;
    margin-right: auto;
    display: block;
    position: relative;
    top: 55px;
  }

  .banner-home-1-wrapper.services-banner {
    height: 100%;
  }

  .banner-home-1-wrapper.product-details {
    top: 50px;
  }

  .content-banner-home-1 {
    padding-right: 33px;
  }

  .get-in-touch-link {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .get-in-touch-link.about-page {
    padding-top: 100px;
  }

  .about-info-wrapper {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
    grid-template-columns: 1.1fr .9fr;
  }

  .img {
    height: auto;
  }

  .title-wrapper-center {
    width: 62%;
  }

  .collection-list-blog-home {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }

  .link-blog-img {
    overflow: hidden;
  }

  .info-blog {
    margin-top: 10px;
    padding-left: 30px;
    padding-right: 30px;
  }

  .slide-nav-banner {
    bottom: 13%;
    right: 20px;
  }

  .slide-nav-banner.product-slide {
    bottom: 12%;
    right: 33px;
  }

  .img-banner-2 {
    height: 520px;
  }

  .content-banner-2-wrapper {
    width: 100%;
    margin-bottom: 100px;
  }

  .content-banner-2-wrapper.service-banner {
    margin-bottom: 20px;
  }

  .title-banner-2-wrapper {
    width: 60%;
  }

  .info-banner-2-wrap {
    width: 35%;
  }

  .play-video-banner-2 {
    top: 45%;
  }

  .play-video-banner-2.service-banner {
    top: -10%;
  }

  .line-banner-2 {
    margin-bottom: 95px;
  }

  .line-banner-2.service-line {
    margin-bottom: 55px;
  }

  .banner-3-img {
    width: 100%;
  }

  .text-content-wrap {
    width: 65%;
  }

  .arrow-link {
    bottom: 7%;
    right: 7%;
  }

  .numbers-wrapper {
    padding-left: 40px;
    padding-right: 40px;
  }

  .number {
    font-size: 50px;
  }

  .review-wrapper {
    grid-template-rows: auto;
    width: 100%;
    display: flex;
  }

  .slider-testimonials {
    margin-bottom: 75px;
  }

  .review-img-bg {
    width: 58%;
  }

  .slide-review {
    padding: 30px 50px 40px;
  }

  .collection-list-services {
    grid-column-gap: 60px;
  }

  .link-block-img-project {
    height: 600px;
  }

  .collection-list-blog-2 {
    grid-column-gap: 40px;
    grid-row-gap: 60px;
  }

  .banner-wrap {
    grid-column-gap: 80px;
  }

  .banner-wrap.banner-news {
    grid-column-gap: 80px;
    grid-template-columns: 1.05fr 1fr;
  }

  .link-blog-2 {
    width: 100%;
  }

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

  .blog-link-img {
    height: 340px;
  }

  .video-background {
    background-image: linear-gradient(to bottom, var(--areas), var(--areas)), url('../images/13787_1.avif');
    background-attachment: scroll, fixed;
    height: 600px;
  }

  .grid-4 {
    grid-column-gap: 80px;
  }

  .title-info-pricing-wrap {
    padding-right: 40px;
  }

  .projects-home-4 {
    grid-column-gap: 60px;
  }

  .mt-80 {
    margin-top: 100px;
  }

  .poject-heading {
    font-size: 62px;
  }

  .info-project-wrapper {
    margin-top: 20px;
    padding-top: 30px;
  }

  .cart-quantity {
    right: -6%;
  }

  .cart {
    margin-left: 10px;
    margin-right: 10px;
  }

  .collection-list-products {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    grid-template-columns: 1fr 1fr 1fr;
  }

  .link-block-product, .product-wrapper {
    height: 350px;
  }

  .checkout-form, .paypal-checkout-form, .order-confirmation {
    padding-top: 180px;
    padding-bottom: 110px;
  }

  .paragraph-banner-details {
    width: 95%;
  }

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

  .container {
    height: 100%;
  }

  .white-description-leadership {
    width: 85%;
  }

  .red-h1-title {
    font-size: 55px;
    font-weight: 700;
    line-height: 1.4em;
  }

  .red-h1-title:hover {
    color: #b69931;
  }

  .base-container-3 {
    margin-top: 0;
  }

  .section-5 {
    padding-top: 130px;
    padding-bottom: 130px;
    padding-left: 70px;
  }

  .section-5.contacts-2-banner {
    padding-top: 160px;
  }

  .section-6, .section-7 {
    padding-top: 80px;
    padding-bottom: 130px;
  }

  .content-wrapper-item {
    justify-content: space-around;
  }

  .process-title {
    width: 90%;
  }

  .how-it-work-block {
    width: 570px;
  }

  .full-width-panel {
    padding-left: 3.5em;
  }

  .print-hero-photo.design {
    background-attachment: fixed;
  }

  .history-intro {
    padding-top: 130px;
    padding-bottom: 130px;
  }

  .no-margin {
    width: 95%;
  }

  .div-block-2 {
    bottom: 0;
  }
}

@media screen and (min-width: 1440px) {
  h1, h2, h3, h4, h5, h6 {
    margin-bottom: 10px;
  }

  .section.light-background {
    padding-top: 137px;
    padding-bottom: 137px;
  }

  .section.about-us-banner {
    background-image: linear-gradient(#0000008f, #0000008f), url('../images/pexels-scottwebb-137581_1.avif');
    background-position: 0 0, 50%;
    background-repeat: repeat, repeat;
    background-size: auto, cover;
    background-attachment: scroll, fixed;
  }

  .section.services-banner {
    background-image: linear-gradient(to bottom, var(--areas), var(--areas)), url('../images/2149345548_1.avif');
    background-position: 0 0, 50%;
    background-repeat: repeat, repeat;
    background-size: auto, cover;
    background-attachment: scroll, fixed;
  }

  .nav-link {
    padding-left: 8px;
    padding-right: 8px;
  }

  .nav-dropdown-list.megamenu.w--open {
    left: -110px;
  }

  .blog-template-image {
    object-position: 50% 40%;
    max-height: 640px;
  }

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

  .section-with-blue-bg {
    padding-left: 100px;
    padding-right: 100px;
  }

  .img {
    height: auto;
  }

  .slide-nav-banner.product-slide {
    right: 41px;
  }

  .img-banner-2 {
    height: 580px;
  }

  .play-video-banner-2 {
    top: 43%;
  }

  .banner-wrap {
    grid-template-columns: 1.1fr 1fr;
  }

  .banner-wrap.banner-news {
    grid-column-gap: 70px;
    grid-template-columns: 1fr 1.05fr;
  }

  .video-background {
    background-image: linear-gradient(to bottom, var(--areas), var(--areas)), url('../images/13787_1.avif');
    background-position: 0 0, 0%;
    background-repeat: repeat, no-repeat;
    background-size: auto, cover;
    background-attachment: scroll, fixed;
  }

  .base-container-2 {
    max-width: 1300px;
  }

  .section-5.contacts-2-banner {
    padding-top: 140px;
  }

  .section-6.home-13-get-started {
    padding-top: 118px;
    padding-bottom: 118px;
  }

  .section-7 {
    padding-top: 151px;
    padding-bottom: 151px;
  }

  .full-width-panel {
    padding-left: 7.5em;
  }

  .play-icon {
    display: block;
  }

  .image {
    width: 100%;
  }

  .div-block-2 {
    bottom: 0;
  }
}

@media screen and (min-width: 1920px) {
  h1 {
    font-size: 80px;
  }

  h2 {
    font-size: 54px;
  }

  h3 {
    font-size: 38px;
  }

  .section.about-us-banner {
    background-image: linear-gradient(to bottom, null, null), url('../images/'), url('../images/Lign-BG_1.avif');
    background-size: auto, cover, auto;
    padding-top: 180px;
  }

  .section.home-1-banner, .section.home-2-banner {
    padding-top: 220px;
  }

  .section.home-3-banner, .section.blog-banner {
    padding-top: 200px;
  }

  .section.services-banner {
    background-image: linear-gradient(to bottom, var(--areas), var(--areas)), url('../images/2149345548_1.avif'), url('../images/Lign-BG_1.avif');
    background-size: auto, cover, auto;
    padding-top: 180px;
  }

  .nav-link {
    font-size: 18px;
  }

  .nav-dropdown-list.megamenu.w--open {
    left: 0;
  }

  .blog-template-image {
    object-position: 50% 35%;
    max-height: 700px;
  }

  .service-details-content-wrapper {
    margin-right: 60px;
  }

  .service-details-sidebar-wrapper {
    padding-left: 35px;
    padding-right: 35px;
  }

  .accordion-wrapper-one-column {
    width: 100%;
  }

  .about-img._1 {
    width: 420px;
    left: 16%;
  }

  .about-img._3 {
    width: 430px;
    top: 20%;
    left: 54%;
  }

  .about-img._4 {
    left: 48%;
  }

  .section-with-blue-bg {
    padding-left: 180px;
    padding-right: 180px;
  }

  .details-page-title {
    font-size: 64px;
  }

  .logo-header {
    width: 90%;
  }

  .scroller {
    max-width: 1150px;
  }

  .banner-home-1-wrapper.services-banner {
    width: 47%;
  }

  .banner-home-1-wrapper.product-details {
    width: 45%;
  }

  .home-1-wrapper.dervice-content {
    grid-template-columns: 1.2fr 1fr;
  }

  .about-info-wrapper {
    grid-template-columns: 1.3fr .9fr;
  }

  .img {
    height: auto;
  }

  .slide-nav-banner.product-slide {
    bottom: 14%;
    right: 46px;
  }

  .img-banner-2 {
    height: 660px;
  }

  .title-banner-2-wrapper {
    width: 67%;
  }

  .play-video-banner-2 {
    top: 44%;
  }

  .line-banner-2 {
    margin-bottom: 130px;
  }

  .text-content-wrap {
    width: 70%;
  }

  .arrow-link {
    right: 9%;
  }

  .review-img-bg {
    width: 56%;
  }

  .banner-wrap {
    grid-template-columns: 1.2fr 1fr;
  }

  .banner-wrap.banner-news {
    grid-column-gap: 90px;
    grid-template-columns: 1.1fr 1fr;
    grid-auto-flow: column;
  }

  .video-background {
    background-image: linear-gradient(to bottom, var(--areas), var(--areas)), url('../images/13787_1.avif');
    background-attachment: scroll, fixed;
  }

  .poject-heading {
    font-size: 64px;
  }

  ._404-heading {
    font-size: 180px;
  }

  .search-heading {
    font-size: 72px;
  }

  .services-content-wrapper {
    width: 100%;
  }

  .our-services-divider {
    background-color: #f2d201;
    min-width: 99px;
  }

  .services-content-item._2:hover {
    background-image: linear-gradient(to bottom, var(--areas), var(--areas)), url('../images/396-1_1.avif');
    background-position: 0 0, 50%;
    background-repeat: repeat, no-repeat;
    background-size: auto, cover;
  }

  .services-content-item._3:hover {
    background-image: linear-gradient(to bottom, var(--areas), var(--areas)), url('../images/2314_1.avif');
    background-position: 0 0, 50%;
    background-repeat: repeat, no-repeat;
    background-size: auto, cover;
  }

  .services-content-item._5:hover {
    background-image: linear-gradient(to bottom, var(--areas), var(--areas)), url('../images/396-1_1.avif');
    background-position: 0 0, 50%;
    background-repeat: repeat, no-repeat;
    background-size: auto, cover;
  }

  .services-content-item._6:hover, .services-content-item._9:hover {
    background-image: linear-gradient(to bottom, var(--areas), var(--areas)), url('../images/2314_1.avif');
    background-position: 0 0, 50%;
    background-repeat: repeat, no-repeat;
    background-size: auto, cover;
  }

  .section-2.shorter {
    padding-top: 149px;
  }

  .our-services-number {
    border-width: 0;
  }

  .hero-bg-color {
    background-color: #051a0b82;
  }

  .section-5.contacts-2-banner {
    padding-top: 160px;
  }

  .tab-content-home-4 {
    max-width: 600px;
  }

  .full-width-panel {
    justify-content: center;
  }
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 52px;
  }

  h2 {
    font-size: 42px;
  }

  blockquote {
    font-size: 26px;
  }

  .section {
    padding: 76px 25px;
  }

  .section.light-background {
    padding: 65px 30px 45px;
  }

  .section.changelog-banner {
    padding-top: 130px;
  }

  .section.banner-our-team {
    height: auto;
    padding-top: 182px;
  }

  .section.banner-service {
    height: 500px;
    padding-top: 130px;
    padding-bottom: 0;
  }

  .section.pricing-banner, .section.contacts-banner {
    padding-top: 130px;
  }

  .section.banner-faq {
    background-size: 100%;
    padding-top: 130px;
  }

  .section.banner-testimonials {
    padding-top: 130px;
  }

  .section.about-us-banner {
    background-image: linear-gradient(#0000008f, #0000008f), url('../images/pexels-scottwebb-137581_1.avif');
    background-position: 0 0, 0 0;
    background-repeat: repeat, repeat;
    background-size: auto, cover;
    background-attachment: scroll, scroll;
    height: auto;
    padding-top: 147px;
    padding-bottom: 138px;
  }

  .section.portfolio-grid-banner {
    background-size: 100%;
    padding-top: 130px;
  }

  .section.bg {
    background-size: 100%;
  }

  .section.bg-without-bottom-spacing {
    background-size: 100%;
    padding-left: 30px;
    padding-right: 30px;
  }

  .section.home-1-banner {
    padding-top: 130px;
    padding-bottom: 0;
  }

  .section.light-bg-with-bottom-100px {
    padding-left: 20px;
    padding-right: 20px;
  }

  .section.home-2-banner {
    padding-top: 130px;
  }

  .section.home-3-banner {
    min-height: auto;
    padding-top: 140px;
  }

  .section.blog-banner {
    background-size: 100%;
    padding-top: 130px;
  }

  .section.blog-details-banner {
    padding-top: 168px;
  }

  .section.services-banner {
    padding-top: 130px;
  }

  .section.section-mt-60 {
    padding-top: 31px;
  }

  .section.portfolio-details, .section.shop-banner {
    padding-top: 130px;
  }

  .section.prodeuct-details-banner {
    padding-top: 130px;
    padding-bottom: 0;
  }

  .section.services-banner {
    background-image: linear-gradient(to bottom, var(--areas), var(--areas)), url('../images/2149345548_1.avif');
    background-position: 0 0, 50%;
    background-repeat: repeat, no-repeat;
    background-size: auto, cover;
    background-attachment: scroll, scroll;
    height: auto;
    padding-top: 160px;
    padding-bottom: 150px;
  }

  .section.services-banner-copy {
    padding-top: 41px;
  }

  .base-container {
    max-width: 1300px;
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .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 {
    margin-bottom: 0;
    display: block;
  }

  .top-style-spacing-mobile {
    top: 3%;
  }

  .middlr-style-spacing-mobile {
    top: 26%;
  }

  .bottom-style-spacing-mobile {
    bottom: 6%;
  }

  .nav-container {
    max-width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }

  .nav-menu {
    z-index: 9999;
    background-color: var(--primary-light);
    flex-direction: column;
    width: 320px;
    position: fixed;
    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%;
    margin-left: 0;
    margin-right: 0;
    padding: 10px 0;
    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 {
    margin-right: 1.5px;
    display: block;
    inset: 0% 0 0% auto;
  }

  .nav-dropdown-list {
    background-color: var(--primary-light);
    border-style: none;
    flex-direction: column;
    width: auto;
    padding: 0 0 0 13px;
    display: flex;
    position: relative;
  }

  .nav-dropdown-list.w--open {
    box-shadow: none;
    width: auto;
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 20px;
    display: flex;
    position: static;
  }

  .nav-dropdown-list.megamenu {
    width: auto;
    height: 270px;
    padding-left: 20px;
    padding-right: 20px;
    overflow: scroll;
  }

  .nav-dropdown-list.megamenu.w--open {
    padding-top: 0;
    padding-bottom: 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: 5px;
    padding-bottom: 5px;
    padding-left: 0;
  }

  .nav-dropdown-link:hover {
    padding-left: 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;
  }

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

  .pages-banner {
    padding-top: 135px;
  }

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

  .nav-menu-wrapper {
    z-index: 1;
  }

  .blog-template-image {
    max-height: 380px;
  }

  .footer-bottom-wrapper {
    flex-direction: column;
  }

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

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

  .pricing-plans-wrapper {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    flex-wrap: wrap;
    grid-template-columns: 1fr 1fr;
  }

  .pricing-plan-item {
    max-width: 360px;
  }

  .coming-soon-image {
    height: auto;
    display: none;
  }

  .footer-wrapper {
    grid-row-gap: 60px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .white-text {
    font-size: 48px;
  }

  .white-text.smaller-text {
    font-size: 34px;
  }

  .button-header {
    display: none;
  }

  .button-header.tablet {
    margin-top: 40px;
    margin-left: 0;
    display: flex;
  }

  .button-header.tablet:hover {
    padding-bottom: 0;
  }

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

  .search-section {
    padding-top: 130px;
  }

  .service-details-content-wrapper {
    width: 100%;
  }

  .service-details-sidebar-wrapper {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 49%;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    position: static;
    top: 20px;
  }

  .service-details-content {
    grid-row-gap: 40px;
    flex-direction: column;
  }

  .service-details-sidebar-contacts {
    margin-bottom: 40px;
  }

  .accordion-wrapper-one-column {
    width: 100%;
  }

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

  .project-template-info-wrap.tablet-center {
    justify-content: center;
    align-items: center;
  }

  .nav-dropdown-column {
    justify-content: center;
    width: 180px;
  }

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

  .home-4-testimonials-wrapper {
    grid-column-gap: 60px;
    grid-row-gap: 40px;
    flex-wrap: wrap;
    width: 80%;
    margin-top: 20px;
  }

  .testimonials-wrapper-2 {
    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;
  }

  .projects-list-about {
    grid-row-gap: 30px;
    flex-wrap: wrap;
  }

  .content {
    margin-bottom: 0;
  }

  .industries-block-wrapper {
    max-width: 45vw;
  }

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

  .menu-wrap {
    background-color: var(--primary-light);
    flex-direction: column;
    align-items: flex-start;
    margin-top: 16px;
    padding-top: 15px;
    padding-left: 20px;
    padding-right: 20px;
    display: flex;
  }

  .home-banner-left-arrow {
    inset: 20% auto auto 4%;
  }

  .tablet-menu {
    background-color: var(--primary-light);
    justify-content: space-between;
    align-items: center;
    padding-top: 25px;
    padding-bottom: 55px;
    padding-left: 15px;
    display: flex;
  }

  .image-burger {
    font-size: 22px;
  }

  .brand-tablet {
    border-bottom-style: none;
    display: block;
  }

  .details-page-title {
    font-size: 48px;
  }

  .coming-soon-form-main {
    justify-content: center;
  }

  .spacing-system-title {
    font-size: 25px;
  }

  .submit-wrapper {
    text-align: center;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 37px;
    display: flex;
  }

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

  .form-block-footer {
    width: 100%;
  }

  .info-company-wrapper {
    justify-content: center;
    align-items: flex-start;
    width: 100%;
  }

  .info-company.left {
    text-align: center;
    width: 100%;
  }

  .links-footer-wrapper {
    grid-row-gap: 40px;
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  .links-footer-wrapper.service-details {
    text-align: left;
    width: 100%;
  }

  .logo-header {
    width: 300px;
    max-width: none;
  }

  .title-wrap {
    width: 65%;
  }

  .collection-list-service {
    flex-wrap: wrap;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .collection-item-s {
    width: 47%;
  }

  .contact-block {
    padding: 36px 80px;
  }

  .big-numbers {
    font-size: 68px;
  }

  .info-title-wrapper {
    padding-left: 0;
    padding-right: 0;
  }

  .title-team {
    padding-bottom: 20px;
  }

  .circle-button {
    width: 160px;
    height: 160px;
  }

  .client-wrapper-home {
    grid-template-columns: .9fr 1.1fr;
  }

  .logo-loop {
    margin-left: 20px;
    margin-right: 20px;
  }

  .link-block-project:hover {
    transform: scale(1);
  }

  .project-photo {
    height: 200px;
  }

  .number-project {
    font-size: 16px;
  }

  .collection-item-project.details {
    width: 47%;
  }

  .project-wrapper {
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding-left: 0;
    padding-right: 0;
    display: flex;
  }

  .button-buttom-wrap {
    margin-top: 0;
  }

  .links-project {
    padding-bottom: 20px;
    padding-left: 20px;
  }

  .big-info-project {
    height: auto;
  }

  .project-info {
    font-size: 14px;
  }

  .bg-project {
    background-color: #0000;
    background-image: linear-gradient(#0000, #000c 74%, #000);
    height: 20%;
    inset: auto 0% 0%;
  }

  .collection-list-wrapper-project-center {
    width: 47%;
  }

  .collection-list-wrapper-project {
    width: auto;
  }

  .img-banner.product-details {
    height: 100%;
    margin-top: 0;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }

  .banner-home-1-wrapper {
    width: 100%;
    height: 400px;
    position: relative;
    top: 0;
  }

  .banner-home-1-wrapper.services-banner {
    height: 420px;
  }

  .banner-home-1-wrapper.project {
    width: 80%;
    height: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .banner-home-1-wrapper.product-details {
    height: 420px;
    top: 0;
  }

  .home-1-wrapper {
    grid-template-columns: 1fr;
    place-items: center;
    margin-bottom: 60px;
  }

  .home-1-wrapper.dervice-content {
    align-items: center;
  }

  .content-banner-home-1 {
    text-align: center;
    justify-content: center;
    align-items: center;
  }

  .content-banner-home-1.service-banner {
    justify-content: center;
    align-items: flex-start;
    width: 100%;
  }

  .get-in-touch-link {
    width: 100%;
    position: static;
  }

  .about-info-wrapper {
    flex-flow: column;
    display: flex;
  }

  .project-name {
    font-size: 16px;
  }

  .right-info {
    width: 100%;
    height: 500px;
  }

  .img {
    height: auto;
  }

  .collection-list-blog-home {
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .collection-item-blog-home {
    width: 47%;
  }

  .slide-nav-banner {
    font-size: 15px;
    bottom: 5%;
    right: 20px;
  }

  .slide-nav-banner.product-slide {
    bottom: 6%;
  }

  .img-banner-2 {
    height: 380px;
  }

  .content-banner-2-wrapper {
    text-align: center;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 95%;
    margin-bottom: 100px;
  }

  .content-banner-2-wrapper.service-banner {
    margin-bottom: 20px;
  }

  .title-banner-2-wrapper {
    width: 100%;
  }

  .info-banner-2-wrap {
    width: 95%;
  }

  .play-video-banner-2 {
    top: 50%;
  }

  .line-banner-2 {
    margin-top: 30px;
    margin-bottom: 10px;
    margin-right: auto;
  }

  .banner-3-img {
    min-height: 100%;
  }

  .arrow-link {
    width: 40px;
    height: 80px;
  }

  .faq-s-wrapper {
    grid-row-gap: 60px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .left-title-wrapper {
    text-align: center;
    position: static;
  }

  .about-wrapper {
    grid-column-gap: 40px;
    display: block;
  }

  .img-wrapper-info {
    background-position: 60%;
    height: 300px;
    margin-bottom: 18px;
    padding-bottom: 0;
  }

  .numbers-wrapper {
    text-align: center;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .line-numbers {
    width: 100%;
    height: 2px;
    margin-top: 20px;
    margin-bottom: 20px;
  }

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

  .slider-testimonials {
    width: 80%;
  }

  .left-arrow-testimonials {
    bottom: -20%;
  }

  .right-arrow-testimonials {
    bottom: -20%;
    left: 16%;
  }

  .collection-list-services {
    grid-column-gap: 30px;
    flex-direction: column;
    display: flex;
  }

  .link-block-img-project {
    height: 520px;
  }

  .team-member-wrapper {
    height: auto;
    padding: 10px 20px 20px;
    inset: auto 0% 0%;
  }

  .flex-vertical-card {
    background-image: none;
  }

  .margin-bottom-large {
    margin-bottom: 0;
  }

  .right-banner-wrap {
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  .right-banner-wrap.banner-left {
    align-items: flex-start;
  }

  .flex-horizontal-align-center.with-gap {
    grid-column-gap: 20px;
  }

  .column-wrapper {
    width: 100%;
  }

  .column-wrapper.blog {
    width: 100%;
    margin-top: 0;
  }

  .banner-wrap {
    grid-row-gap: 60px;
    text-align: center;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    display: flex;
  }

  .banner-wrap.banner-news {
    grid-column-gap: 40px;
    grid-row-gap: 50px;
    text-align: left;
    flex-direction: column;
    justify-content: flex-start;
    width: 100%;
    margin-bottom: 0;
  }

  .recent-link-img-blog {
    width: 30%;
  }

  .review {
    width: 100%;
  }

  .review-wrap-2 {
    grid-row-gap: 30px;
    flex-direction: column;
  }

  .review-volumns-wrapper {
    flex-wrap: wrap;
  }

  .video-background {
    background-position: 0%;
    background-attachment: scroll;
    height: 400px;
  }

  .grid-4 {
    grid-column-gap: 40px;
    flex-flow: column;
    grid-template-columns: .8fr 1.2fr;
  }

  .title-info-pricing-wrap {
    width: auto;
  }

  .links-contact-wrap {
    align-items: center;
  }

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

  .poject-heading {
    font-size: 48px;
  }

  .info-project-wrapper {
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  .collection-list-3 {
    grid-row-gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .arrow-down-header {
    display: none;
  }

  .cart-button, .shop {
    font-size: 18px;
  }

  .cart-quantity {
    top: -60%;
  }

  .cart {
    font-size: 18px;
  }

  .shop-wrapper {
    flex: 1;
    justify-content: flex-end;
    margin-right: 10px;
    display: flex;
  }

  .shop-wrapper.hidden {
    display: none;
  }

  .collection-list-products.details {
    flex-wrap: wrap;
    grid-template-columns: 1fr;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .collection-item-product.details {
    width: 47%;
  }

  .link-block-product {
    padding-bottom: 10px;
  }

  .product-wrapper {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 30px;
  }

  .default-state-2 {
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .checkout-form {
    padding-top: 130px;
  }

  .sticky-checkout {
    top: 70px;
  }

  .row, .item-order-wrap {
    flex-direction: column;
  }

  .price {
    margin-top: 10px;
    margin-left: 15px;
  }

  .paypal-checkout-form, .order-confirmation {
    padding-top: 130px;
  }

  .paragraph-banner-details {
    width: 85%;
  }

  .lightbox-link-2 {
    height: 100%;
  }

  ._404-heading {
    font-size: 120px;
  }

  .search-heading {
    font-size: 56px;
  }

  .hire-popup {
    max-width: 380px;
  }

  .hire-popup-wrap {
    display: none;
  }

  .services-content-wrapper {
    width: 100%;
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .services-content-wrapper.with-margin {
    width: auto;
    margin-bottom: 25px;
  }

  .services-content-wrapper._25, .services-description-wrap {
    width: auto;
  }

  .our-services-conten-wrap {
    grid-row-gap: 0px;
    flex-wrap: wrap;
    margin-bottom: 0;
  }

  .services-title-wrap {
    width: auto;
  }

  .services-content-item._2.mt-50, .services-content-item.mt-50._5, .services-content-item.mt-50._8 {
    margin-top: 0;
  }

  .design-content-wrap {
    width: auto;
  }

  .services-text-wrapper {
    flex-flow: column;
  }

  .base-container-2 {
    padding-top: 6px;
    padding-left: 0;
    padding-right: 0;
  }

  .list-text {
    max-width: none;
    font-size: 1.15em;
  }

  .sticky-column-1 {
    width: 100%;
    height: auto;
    min-height: auto;
    padding-top: 2.6em;
    padding-bottom: 0;
    position: relative;
  }

  .max-width-4 {
    max-width: none;
  }

  .heading.in-sticky-sec {
    margin-bottom: .9em;
    font-size: 2.4em;
    line-height: 1.4em;
  }

  .container {
    padding-left: 2.4em;
    padding-right: 2.4em;
  }

  .list-title {
    font-size: 1.4em;
  }

  .custom-list-wrap {
    padding-top: 47px;
  }

  .list-block.in-company {
    max-width: 31em;
  }

  .list-block.in-company.less-padding {
    width: 100%;
  }

  .sticky-column-2 {
    flex: 0 auto;
    width: 100%;
    max-width: none;
    margin-left: auto;
    margin-right: auto;
    padding: 8em 6em 12em 0;
  }

  .flex-for-sticky {
    flex-wrap: wrap;
    height: auto;
  }

  .company-title {
    font-size: 1.8em;
  }

  .grid-icon-large {
    font-size: 5em;
  }

  .grid-2 {
    padding-left: 20px;
    padding-right: 20px;
    display: block;
  }

  .content-grid-block-3 {
    padding: 2.5em;
  }

  .content-grid-block-1 {
    min-height: auto;
    padding: 2.5em;
  }

  .company-title-2 {
    font-size: 2.9em;
  }

  .content-grid-block-2 {
    margin-bottom: 30px;
  }

  .vertical-inscription {
    text-align: left;
    position: static;
    transform: rotate(0);
  }

  .home-features-wrap {
    width: 47%;
    box-shadow: 0 0 30px #0f5cfa14;
  }

  .home-features-wrap:hover {
    box-shadow: 0 0 30px #0f5cfa00;
  }

  .home-features-wrap.cntact-us-2 {
    width: 48.5%;
  }

  .main-title-wrapper {
    flex-direction: column;
    padding-left: 0;
  }

  .home-features-wrapper {
    flex-wrap: wrap;
    justify-content: center;
  }

  .home-features-wrapper.contacts-2 {
    grid-row-gap: 23px;
  }

  .section-5.contacts-2-banner {
    padding-top: 77px;
  }

  .ruc-container {
    width: auto;
  }

  .primary-red-button.header-button {
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
    display: flex;
  }

  .section-6 {
    padding-bottom: 30px;
    padding-left: 25px;
    padding-right: 25px;
  }

  .section-6.home-13-get-started {
    padding-bottom: 58px;
    padding-left: 30px;
    padding-right: 30px;
  }

  .base-container-4 {
    padding-left: 0;
    padding-right: 0;
  }

  .vertical-inscription-2 {
    text-align: left;
    position: static;
    transform: rotate(0);
  }

  .main-title-wrapper-2 {
    flex-direction: column;
    padding-left: 0;
  }

  .paragraph-our-benefits {
    font-size: 16px;
  }

  .get-started-text-wrap {
    width: auto;
  }

  .section-7 {
    padding: 61px 30px 30px;
  }

  .base-container-5 {
    padding-left: 0;
    padding-right: 0;
  }

  .vertical-inscription-3 {
    text-align: left;
    position: static;
    transform: rotate(0);
  }

  .content-wrapper-item {
    grid-column-gap: 30px;
    flex-flow: column;
    position: relative;
  }

  .main-title-wrapper-3 {
    flex-direction: column;
    padding-left: 0;
  }

  .process-title {
    width: 100%;
  }

  .register-text {
    width: 90%;
  }

  .how-it-work-block {
    width: auto;
  }

  .number-container {
    grid-row-gap: 25px;
  }

  .right-process-wrapp {
    background-position: 51%;
    order: 1;
    min-height: 500px;
    margin-top: 27px;
  }

  .tab-content-home-4 {
    max-width: 100%;
  }

  .full-width-panel {
    width: 100%;
    padding: 0 15px;
  }

  .video-cover {
    justify-content: center;
    width: auto;
    height: 300px;
    position: relative;
  }

  .play-icon {
    margin-top: 3px;
    margin-left: 0;
    font-size: 20px;
  }

  .print-hero-photo {
    background-position: 50% 0;
  }

  .print-hero-photo.printing {
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .video-grid-wrapper {
    grid-row-gap: 48px;
  }

  .content-grid {
    grid-row-gap: 0px;
    flex-direction: column-reverse;
    grid-template-columns: 1fr 1fr 1fr;
    display: flex;
  }

  .history-intro {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .lightbox-link {
    width: 120px;
    height: 120px;
    margin-left: auto;
    margin-right: auto;
    inset: -60px 0% auto;
  }

  .print-image-wrap {
    text-align: center;
    justify-content: center;
    align-items: center;
  }

  .heading-52 {
    text-align: left;
    font-size: 42px;
  }

  .paragraph-4 {
    text-align: left;
    font-size: 13px;
  }

  .image {
    min-height: 600px;
  }

  .div-block-2 {
    padding-top: 215px;
    padding-bottom: 0;
  }

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

  .text-block-14 {
    line-height: 1.2em;
  }

  .form-2 {
    width: auto;
    padding-top: 1.1em;
    padding-bottom: 1.1em;
  }

  .process-image-wrapper {
    width: 45%;
  }

  .form-field {
    min-height: auto;
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 5.8em;
    font-size: 14px;
    line-height: 14px;
  }

  .form-field.other {
    padding-left: 4.4em;
  }

  .form-field.text-area {
    min-height: 6em;
    padding-top: .6em;
  }

  .form-item {
    font-size: 1.1em;
  }

  .form-item.is-area-text {
    margin-bottom: .4em;
  }

  .form-label {
    font-size: .6em;
    font-weight: 500;
    top: 1.2em;
  }

  .heading-5 {
    font-size: 36px;
  }

  .section-8 {
    height: 400px;
  }

  .section-9 {
    padding-bottom: 0;
    padding-left: 25px;
    padding-right: 25px;
  }

  .heading-53 {
    font-size: 32px;
  }

  .div-block-12 {
    z-index: 99;
    width: 30%;
    position: relative;
  }

  .header-right.mobile-hidden {
    margin-bottom: 0;
    margin-right: 0;
  }

  .text-span-5 {
    font-size: 24px;
    line-height: 20px;
  }

  .modal {
    padding-top: 48px;
    padding-left: 11px;
    padding-right: 11px;
    display: none;
  }

  .left-alignment.smaller-text {
    font-size: 26px;
  }

  .image-84 {
    max-width: 35%;
  }

  .heading-62 {
    font-size: 32px;
  }

  .dropdown-list {
    display: none;
    position: relative;
  }

  .dropdown-list.w--open {
    background-color: #fff0;
    padding-top: 0;
    padding-bottom: 3px;
    padding-left: 7px;
  }

  .dropdown-list.smaller.w--open {
    padding-left: 4px;
  }

  .dropdown-toggle {
    width: 100%;
    padding-top: 12px;
    padding-bottom: 12px;
    padding-left: 0;
  }

  .dropdown-toggle.w--open {
    width: 100%;
    padding-top: 9px;
    padding-bottom: 9px;
    padding-left: 0;
  }

  .collection-list-wrapper-2, .collection-list-5, .collection-list-wrapper-3 {
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  h1 {
    font-size: 46px;
  }

  h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 32px;
  }

  blockquote {
    padding-left: 20px;
    padding-right: 20px;
    font-size: 24px;
  }

  .section {
    padding: 42px 24px 60px;
  }

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

  .section.changelog-banner {
    padding-top: 110px;
  }

  .section.banner-our-team {
    padding-top: 168px;
  }

  .section.banner-service, .section.pricing-banner, .section.contacts-banner {
    padding-top: 110px;
  }

  .section.banner-faq {
    padding-top: 100px;
  }

  .section.banner-testimonials {
    padding-top: 110px;
  }

  .section.about-us-banner {
    padding-top: 157px;
    padding-bottom: 60px;
  }

  .section.portfolio-grid-banner {
    padding-top: 110px;
  }

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

  .section.bg {
    background-image: none;
    background-position: 0 0;
    background-repeat: repeat;
    background-size: auto;
  }

  .section.bg-without-bottom-spacing {
    padding-bottom: 53px;
  }

  .section.home-1-banner, .section.home-2-banner {
    padding-top: 110px;
  }

  .section.home-3-banner {
    flex-direction: column;
    padding-top: 151px;
    padding-bottom: 40px;
  }

  .section.blog-banner {
    background-image: none;
    background-position: 0 0;
    background-repeat: repeat;
    background-size: auto;
    padding-top: 110px;
  }

  .section.blog-details-banner, .section.services-banner {
    padding-top: 110px;
  }

  .section.section-mt-60 {
    padding-top: 40px;
  }

  .section.portfolio-details, .section.shop-banner {
    padding-top: 110px;
  }

  .section.prodeuct-details-banner {
    padding-top: 110px;
    padding-bottom: 0;
  }

  .section.services-banner {
    padding-top: 157px;
    padding-bottom: 59px;
  }

  .section.services-banner-copy {
    padding-top: 34px;
  }

  .base-container {
    max-width: none;
  }

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

  .navbar.white-bg {
    background-color: var(--white);
  }

  .nav-link {
    margin-left: 0;
  }

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

  .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-paragraph.last-item {
    margin-bottom: 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: 240px;
  }

  .coming-soon-heading {
    margin-top: 62px;
    font-size: 44px;
  }

  .blog-template-wrapper {
    margin-bottom: 30px;
  }

  .blog-template-image {
    max-height: 320px;
  }

  .footer {
    padding-top: 27px;
    padding-bottom: 8px;
  }

  .footer-bottom-wrapper {
    flex-wrap: wrap;
  }

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

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

  .pricing-plans-wrapper {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .pricing-plan-item {
    max-width: none;
    padding-top: 0;
    padding-bottom: 0;
  }

  .pricing-plan-item.central-item {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .pricing-plan-price-wrapper {
    margin-top: 0;
  }

  .footer-wrapper {
    grid-column-gap: 50px;
    justify-content: center;
  }

  .white-text {
    font-size: 32px;
  }

  .white-text.smaller-text {
    font-size: 26px;
  }

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

  .service-details-content-wrapper {
    width: 100%;
    margin-right: 0;
  }

  .service-details-sidebar-wrapper {
    width: 100%;
  }

  .service-details-sidebar-wrapper.second-item {
    padding-left: 0;
    padding-right: 0;
  }

  .service-details-content {
    flex-wrap: wrap;
    width: 100%;
  }

  .accordion-wrapper-one-column {
    width: 100%;
    padding-top: 0;
  }

  .headings-container {
    grid-row-gap: 30px;
  }

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

  .primary-button-white {
    font-size: 14px;
  }

  .about-3-tab-link.w--current {
    font-size: 20px;
  }

  .project-template-info-wrap {
    margin-bottom: 20px;
  }

  .project-template-info-wrap.tablet-center {
    margin-bottom: 0;
  }

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

  .home-4-testimonials-wrapper {
    grid-row-gap: 30px;
    width: 100%;
  }

  .testimonials-wrapper-2 {
    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%;
  }

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

  .content-wrapper {
    flex-wrap: wrap;
    width: auto;
  }

  .industries-block-wrapper {
    max-width: none;
  }

  .home-9-team-item {
    width: 48%;
  }

  .search {
    flex-direction: column;
  }

  .subtitle-2 {
    line-height: 16px;
  }

  .menu-wrap {
    overflow: hidden;
  }

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

  .details-page-title {
    font-size: 40px;
  }

  .typography-hero-wrapper {
    grid-row-gap: 40px;
    margin-top: 20px;
  }

  .borders-links-footer {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    flex-direction: column;
    margin-top: 40px;
    margin-bottom: 40px;
  }

  .links-pages-footer-wrapper {
    justify-content: center;
  }

  .submit-wrapper {
    text-align: center;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    display: flex;
  }

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

  .form-block-footer {
    width: 100%;
    margin-top: 30px;
  }

  .logo-header {
    position: relative;
  }

  .logo-header.secondo-logo {
    display: none;
  }

  .title-wrapper {
    grid-row-gap: 30px;
    text-align: center;
    flex-direction: column;
    justify-content: center;
  }

  .title-wrap, .collection-item-s {
    width: 100%;
  }

  .line-service {
    width: 75%;
  }

  .contact-block {
    padding: 38px 50px;
  }

  .button-contact-wrap {
    margin-top: 30px;
  }

  .numbers-info-wrapper {
    flex-direction: column;
    display: flex;
  }

  .info-title-wrapper {
    text-align: center;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
  }

  .title-info-wrap, .paragraph-title {
    width: 100%;
  }

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

  .title-team {
    text-align: center;
    justify-content: center;
    align-items: center;
    padding-bottom: 40px;
    padding-right: 0;
  }

  .client-wrapper-home {
    text-align: center;
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .scroller {
    width: 360px;
    max-width: 100%;
  }

  .logo-loop {
    width: 120px;
    margin-left: 10px;
    margin-right: 10px;
  }

  .link-block-project {
    width: 100%;
  }

  .collection-item-project {
    border-bottom: 1px solid #000;
    border-right-style: none;
    width: 100%;
    margin-top: 20px;
    padding-bottom: 14px;
  }

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

  .collection-list-wrapper-project-center {
    width: 100%;
    margin-top: 0;
  }

  .collection-list-wrapper-project {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }

  .img-banner {
    height: 300px;
  }

  .img-banner.project-img, .img-banner.h-100 {
    height: 100%;
  }

  .banner-home-1-wrapper {
    height: 300px;
  }

  .banner-home-1-wrapper.services-banner {
    height: 100%;
  }

  .banner-home-1-wrapper.project {
    width: 100%;
  }

  .banner-home-1-wrapper.product-details {
    height: 340px;
  }

  .home-1-wrapper {
    margin-bottom: 50px;
  }

  .home-1-wrapper.dervice-content {
    margin-bottom: 0;
  }

  .content-banner-home-1.service-banner {
    width: 100%;
  }

  .button-wrap-banner {
    margin-top: 30px;
  }

  .get-in-touch-link {
    padding-bottom: 60px;
  }

  .get-in-touch-link.about-page {
    padding-top: 60px;
  }

  .about-info-wrapper {
    grid-row-gap: 0px;
    grid-template-columns: 1fr;
    place-items: center start;
  }

  .right-info {
    align-items: flex-start;
    height: auto;
  }

  .img {
    height: 320px;
  }

  .title-wrapper-center {
    width: 100%;
    margin-bottom: 40px;
  }

  .collection-item-blog-home {
    width: 100%;
  }

  .img-banner-2 {
    height: 280px;
  }

  .content-banner-2-wrapper {
    width: 100%;
    margin-bottom: 70px;
  }

  .info-banner-2-wrap {
    width: 100%;
  }

  .play-video-banner-2 {
    width: 100px;
    height: 100px;
    top: 61%;
    right: auto;
  }

  .play-video-banner-2.service-banner {
    top: -35px;
  }

  .lines-play {
    width: 70px;
    height: 70px;
  }

  .line-banner-2 {
    width: 100%;
  }

  .banner-3-content-wrap {
    justify-content: center;
    align-items: center;
  }

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

  .line-banner {
    margin: 20px auto;
  }

  .arrow-link {
    width: 30px;
    height: 60px;
    margin-top: 30px;
    position: relative;
    bottom: 0%;
    right: auto;
  }

  .arrow-link.w--current {
    display: none;
  }

  .faq-s-wrapper {
    grid-row-gap: 40px;
  }

  .about-wrapper {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    text-align: center;
    grid-template-columns: 1fr;
    place-items: center;
  }

  .info-wrapper {
    text-align: center;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
  }

  .img-wrapper-info {
    width: 100%;
    height: 260px;
    margin-bottom: 40px;
  }

  .numbers-wrapper {
    width: 100%;
  }

  .paragraph-wrapper {
    grid-row-gap: 30px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .paragraph-3 {
    width: 100%;
  }

  .slider-testimonials {
    width: 90%;
    margin-top: 60px;
    margin-left: auto;
    margin-right: auto;
  }

  .left-arrow-testimonials {
    font-size: 24px;
    inset: auto 18% -20% auto;
  }

  .right-arrow-testimonials {
    font-size: 24px;
    inset: auto 0% -20% auto;
  }

  .review-img-bg {
    object-position: 50% 80%;
    width: 100%;
    height: 90%;
  }

  .flex-vertical-card {
    margin-left: 0;
    margin-right: 0;
  }

  .flex-vertical-card.with-gap {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }

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

  .margin-bottom-large {
    margin-bottom: 0;
  }

  .flex-horizontal-align-center.with-gap {
    flex-direction: column;
  }

  .column-wrapper.blog {
    text-align: left;
    width: 100%;
  }

  .banner-wrap {
    width: 100%;
  }

  .banner-wrap.banner-news {
    grid-row-gap: 30px;
    text-align: center;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 0;
  }

  .info-blog-2.blog-page {
    text-align: left;
  }

  .recent-link-img-blog {
    width: 100%;
  }

  .recent-img-blog {
    height: 200px;
  }

  .recent-info-blog-wrap {
    grid-column-gap: 5px;
    grid-row-gap: 5px;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    display: flex;
  }

  .video-background {
    width: 96%;
  }

  .grid-4 {
    grid-column-gap: 30px;
    grid-row-gap: 40px;
    grid-template-columns: 1.2fr;
  }

  .info-pricing-wrapper {
    text-align: center;
    align-items: center;
  }

  .title-info-pricing-wrap {
    text-align: center;
    justify-content: center;
    align-items: center;
  }

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

  .button-info-wrap {
    margin-top: 20px;
  }

  .links-contact-wrap {
    margin-top: 30px;
  }

  .link-contact {
    justify-content: center;
    align-items: flex-start;
    width: 100%;
  }

  .contact-form-wrapper {
    padding-left: 26px;
    padding-right: 26px;
  }

  .projects-home-4 {
    grid-template-columns: 1fr;
  }

  .collection-list-project-home-4 {
    grid-row-gap: 40px;
  }

  .mt-80 {
    margin-top: 0;
  }

  .with-line {
    margin-top: 10px;
    padding-top: 20px;
  }

  .poject-heading {
    font-size: 42px;
  }

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

  .collection-item-product.details {
    width: 100%;
  }

  .checkout-form {
    padding-top: 110px;
    padding-bottom: 40px;
  }

  .sticky-checkout {
    position: static;
  }

  .paypal-checkout-form, .order-confirmation {
    padding-top: 110px;
    padding-bottom: 40px;
  }

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

  .price-big {
    margin-top: 20px;
  }

  ._404-heading {
    font-size: 100px;
  }

  .search-result-list {
    grid-row-gap: 20px;
  }

  .search-heading {
    font-size: 46px;
  }

  .hire-popup {
    display: none;
  }

  .hire-buttons-wrap {
    grid-row-gap: 20px;
    flex-flow: column wrap;
    align-items: stretch;
  }

  .services-content-wrapper {
    margin-top: 0;
    margin-bottom: 0;
  }

  .services-content-wrapper.with-margin {
    margin-top: 0;
  }

  .services-description-wrap {
    width: 100%;
  }

  .our-services-conten-wrap {
    grid-row-gap: 40px;
  }

  .services-title-wrap, .design-content-wrap {
    width: 100%;
  }

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

  .services-text-wrapper {
    grid-row-gap: 10px;
    flex-wrap: wrap;
  }

  .base-container-2 {
    max-width: none;
    padding-top: 25px;
    padding-left: 0;
    padding-right: 0;
  }

  .list-text {
    font-size: 1em;
  }

  .circle-in-list {
    width: 2.6em;
    height: 2.6em;
    margin-right: 2em;
  }

  .sticky-column-1 {
    padding-top: 4.2em;
  }

  .heading.in-sticky-sec {
    text-align: left;
    margin-bottom: .7em;
    font-size: 2em;
  }

  .list-content {
    padding-top: 0;
  }

  .container {
    padding-bottom: 18px;
    padding-left: 2.3em;
    padding-right: 2.3em;
  }

  .list-title.is-white-color {
    margin-bottom: -.3em;
  }

  .custom-list-wrap {
    padding-bottom: 5px;
  }

  .sticky-column-2 {
    padding-bottom: 10em;
    padding-left: 10vw;
    padding-right: 10vw;
  }

  .list-line {
    left: 1em;
  }

  .company-content {
    max-width: 20em;
  }

  .grid-2 {
    border-bottom: 1px solid #064dfa4d;
    grid-template-columns: 1fr 1fr;
  }

  .content-grid-block-3.with-bg-blue {
    grid-auto-flow: row;
    padding-left: 1em;
    padding-right: 1em;
  }

  .content-grid-block-1 {
    margin-bottom: 20px;
    padding-left: 2em;
    padding-right: 2em;
  }

  .grid-main-bg.different-color-on-tab {
    background-color: #1d263a;
  }

  .company-title-2.is-white {
    max-width: none;
  }

  .content-grid-block-2 {
    background-color: var(--hover-color);
  }

  .company-subtitle {
    max-width: none;
  }

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

  .leadership-title.bigger {
    font-size: 32px;
  }

  .home-features-wrap, .home-features-wrap.cntact-us-2 {
    width: 100%;
  }

  .main-title-wrapper {
    align-items: center;
  }

  .white-description-leadership {
    width: 100%;
  }

  .services-wrapper {
    column-count: 1;
    flex-wrap: wrap;
  }

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

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

  .section-6 {
    padding: 35px 20px 60px;
  }

  .section-6.home-13-get-started._2 {
    padding-top: 67px;
  }

  .vertical-inscription-2 {
    text-align: center;
  }

  .vertical-inscription-2.secondary-sections {
    text-align: left;
  }

  .get-started-wrapper {
    text-align: center;
    flex-direction: column;
    align-items: center;
  }

  .main-title-wrapper-2 {
    justify-content: flex-start;
    align-items: flex-start;
  }

  .text-white, .paragraph-our-benefits {
    text-align: left;
  }

  .get-started-text-wrap {
    width: 100%;
  }

  .section-7 {
    padding: 35px 20px 60px;
  }

  .vertical-inscription-3 {
    text-align: center;
  }

  .vertical-inscription-3.secondary-sections {
    text-align: left;
  }

  .content-wrapper-item {
    grid-row-gap: 30px;
    flex-direction: column-reverse;
  }

  .main-title-wrapper-3 {
    justify-content: flex-start;
    align-items: flex-start;
  }

  .process-title {
    text-align: left;
    width: 100%;
  }

  .how-it-work-block {
    order: 1;
    width: 100%;
  }

  .number-container {
    grid-row-gap: 20px;
  }

  .right-process-wrapp {
    flex: 0 auto;
    height: 300px;
  }

  .full-width-panel {
    padding-left: 0;
    padding-right: 0;
  }

  .video-cover {
    height: 250px;
  }

  .play-icon {
    font-size: 18px;
  }

  .history-intro {
    padding: 41px 20px;
  }

  .no-margin.font-24pt.bold.even-bigger-font {
    line-height: 1.2em;
  }

  .lightbox-link {
    width: 100px;
    height: 100px;
    top: -50px;
  }

  .print-image-wrap {
    padding-left: 15px;
    padding-right: 15px;
  }

  .div-block {
    height: 500px;
  }

  .heading-52 {
    text-align: left;
    font-size: 32px;
  }

  .image {
    max-width: none;
  }

  .div-block-2 {
    z-index: 8;
    justify-content: flex-start;
    align-items: flex-end;
    padding-top: 130px;
    display: flex;
  }

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

  .form-2 {
    width: auto;
    margin-bottom: 26px;
    margin-left: 0;
    margin-right: 0;
    padding-left: 1.1em;
    padding-right: 1.1em;
    display: block;
  }

  .process-image-wrapper {
    order: 1;
    width: 100%;
  }

  .form-field {
    padding-top: 1.7em;
    padding-bottom: 1.4em;
    padding-left: 5.3em;
    font-size: .8em;
  }

  .form-field::placeholder {
    font-size: .9em;
  }

  .form-field.text-area {
    padding-top: 1.1em;
  }

  .form-item {
    width: 100%;
  }

  .form-label {
    font-size: .6em;
    top: 1.8em;
  }

  .heading-5 {
    font-size: 28px;
  }

  .collection-list-4 {
    flex-flow: column;
  }

  .section-8 {
    height: 300px;
  }

  .section-9 {
    padding-left: 15px;
    padding-right: 15px;
  }

  .heading-53 {
    font-size: 24px;
  }

  .map {
    height: 300px;
  }

  .div-block-12 {
    justify-content: center;
    align-items: flex-end;
    width: auto;
  }

  .header-right.mobile-hidden {
    justify-content: flex-end;
    align-items: center;
  }

  .text-span-5 {
    color: var(--hover-color);
  }

  .form-block-5.outline-outside {
    padding-left: 10px;
    padding-right: 10px;
  }

  .modal {
    padding-top: 47px;
    padding-left: 0;
    padding-right: 0;
    display: none;
  }

  .left-alignment.smaller-text {
    font-size: 26px;
  }

  .div.less {
    width: 85%;
  }

  .image-84 {
    max-width: 40%;
  }

  .button-wrapper-2.product {
    margin-top: 0;
  }

  .heading-54 {
    width: 100%;
    font-size: 28px;
  }

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

  .bold-text-5 {
    font-size: .8em;
  }

  .heading-55 {
    font-size: 28px;
  }

  .heading-56 {
    font-size: 26px;
  }

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

  .heading-62 {
    font-size: 22px;
  }

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

  .heading-63 {
    font-size: 36px;
  }

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

  .link-9 {
    border-bottom-style: none;
    text-decoration: none;
  }

  .div-block-60 {
    width: 90%;
  }
}

@media screen and (max-width: 479px) {
  h1 {
    font-size: 42px;
  }

  li {
    font-size: 14px;
  }

  blockquote {
    font-size: 22px;
  }

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

  .section.light-background {
    padding: 28px 15px 26px;
  }

  .section.banner-our-team {
    padding-top: 186px;
    padding-bottom: 35px;
  }

  .section.banner-service {
    height: 500px;
    padding-top: 0;
  }

  .section.contacts-banner {
    padding-top: 31px;
    padding-left: 14px;
    padding-right: 14px;
  }

  .section.about-us-banner {
    padding-top: 186px;
  }

  .section.bg-without-bottom-spacing {
    padding-left: 15px;
    padding-right: 15px;
  }

  .section.home-3-banner {
    padding-top: 184px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .section.blog-details-banner {
    padding-top: 161px;
  }

  .section.services-banner {
    padding-top: 198px;
  }

  .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 {
    padding: 12px 7px;
  }

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

  .navbar.white-bg {
    background-color: var(--white);
    height: 140px;
  }

  .nav-container {
    height: auto;
    margin-top: -11px;
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .nav-menu {
    padding-top: 0;
  }

  .menu-button {
    top: 21px;
  }

  .nav-link {
    width: 99%;
  }

  .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 {
    margin-top: 39px;
    font-size: 32px;
  }

  .nav-menu-wrapper {
    justify-content: space-between;
    align-items: flex-start;
    height: 140px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .blog-template-image {
    max-height: 280px;
  }

  .footer {
    text-align: left;
    padding-bottom: 11px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .footer-bottom-wrapper {
    flex-wrap: wrap;
    margin-top: 0;
  }

  .footer-rights {
    text-align: center;
    font-size: 10px;
    line-height: 1.6em;
  }

  .footer-copyright {
    text-align: center;
    justify-content: center;
    width: 100%;
    font-size: 10px;
    line-height: 1.6em;
  }

  .footer-copyright-link {
    margin-left: 5px;
  }

  .team-card-image {
    object-position: 50% 0%;
    height: 420px;
  }

  .pricing-plan-item {
    padding-left: 30px;
    padding-right: 30px;
  }

  .accordion-item {
    padding-left: 11px;
    padding-right: 11px;
  }

  .accordion-list-content {
    font-size: 14px;
  }

  .accordion-title {
    font-size: 16px;
  }

  .footer-wrapper {
    grid-row-gap: 50px;
  }

  .white-text {
    font-size: 28px;
  }

  .white-text.smaller-text {
    font-size: 22px;
  }

  .service-details-sidebar-wrapper {
    padding-left: 20px;
    padding-right: 20px;
  }

  .accordion-wrapper-one-column {
    padding-top: 0;
  }

  .primary-button-white {
    font-size: 12px;
  }

  .style-guide-content-wrapper.no-wrap {
    flex-wrap: wrap;
  }

  .about-3-tab-link {
    font-size: 16px;
  }

  .about-3-tab-link.w--current {
    font-size: 18px;
  }

  .section-title-center {
    margin-bottom: 20px;
  }

  .our-services-wrap, .home-9-team-item {
    width: 100%;
  }

  .menu-wrap {
    top: -55px;
  }

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

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

  .tablet-menu {
    padding-top: 17px;
  }

  .brand-tablet {
    padding-left: 0;
  }

  .brand.w--current {
    width: 75%;
  }

  .details-page-title {
    text-align: center;
  }

  .coming-soon-form-main {
    flex-wrap: wrap;
    justify-content: center;
  }

  .links-pages-footer-wrapper {
    grid-column-gap: 40px;
    grid-row-gap: 10px;
    flex-wrap: wrap;
    align-items: center;
  }

  .footer-socila-wtapper {
    grid-column-gap: 40px;
  }

  .page-link-footer, .page-link-footer.w--current {
    font-size: 12px;
  }

  .footer-logo-img, .paragraph-footer {
    width: 100%;
  }

  .logo-header {
    width: 100%;
    height: auto;
  }

  .logo-header.secondo-logo {
    height: auto;
    display: none;
  }

  .contact-block {
    padding: 20px 12px 30px;
  }

  .white-paragraph {
    font-size: 12px;
  }

  .big-numbers {
    font-size: 60px;
  }

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

  .button-big-wrapper {
    padding-top: 40px;
  }

  .subtitle-all-caps {
    font-size: 12px;
  }

  .circle-button {
    width: 160px;
    height: 160px;
  }

  .logo-loop {
    width: 120px;
  }

  .collection-item-project.details {
    width: 100%;
  }

  .collection-list-wrapper-project {
    margin-bottom: 0;
    padding-bottom: 0;
  }

  .banner-home-1-wrapper {
    height: 200px;
  }

  .banner-home-1-wrapper.product-details {
    height: 360px;
  }

  .home-1-wrapper.dervice-content {
    margin-bottom: 12px;
  }

  .get-in-touch-link {
    padding-top: 28px;
    padding-bottom: 28px;
  }

  .line-contact {
    margin-left: 10px;
    margin-right: 10px;
  }

  .contact {
    font-size: 22px;
  }

  .img {
    height: 220px;
  }

  .title-wrapper-center {
    width: 100%;
  }

  .slide-nav-banner {
    font-size: 14px;
  }

  .slide-nav-banner.product-slide {
    bottom: 3%;
  }

  .img-banner-2 {
    height: 180px;
  }

  .play-video-banner-2 {
    border-width: 4px;
    width: 85px;
    height: 85px;
    top: 72%;
  }

  .lines-play {
    width: 65px;
    height: 65px;
    margin: auto;
    inset: 5px;
  }

  .img-wrapper-info {
    height: 240px;
  }

  .img-wrapper-info.personnel {
    background-position: 50% 0;
    height: 360px;
  }

  .numbers-wrapper {
    width: 100%;
  }

  .review-wrapper._1300px {
    max-width: none;
    height: auto;
  }

  .slider-testimonials {
    margin-top: 34px;
    margin-bottom: 69px;
  }

  .left-arrow-testimonials {
    bottom: -15%;
    right: 63%;
  }

  .right-arrow-testimonials {
    bottom: -15%;
    right: 24%;
  }

  .slide-review {
    text-align: center;
    padding-left: 11px;
    padding-right: 11px;
  }

  .info-client-wrap {
    grid-row-gap: 15px;
    flex-direction: column;
    justify-content: center;
  }

  .service-home-wrapper.white {
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .service-name.white {
    font-size: 14px;
  }

  .link-block-img-project {
    height: 440px;
  }

  .flex-vertical-card {
    padding-left: 20px;
    padding-right: 20px;
  }

  .flex-vertical-card.with-gap {
    grid-row-gap: 40px;
    padding-left: 0;
    padding-right: 0;
  }

  .flex-horizontal-align-center.with-gap {
    grid-row-gap: 10px;
    flex-wrap: wrap;
  }

  .column-wrapper.blog {
    text-align: left;
  }

  .banner-wrap {
    grid-row-gap: 40px;
    width: 100%;
  }

  .recent-link-img-blog {
    width: 100%;
    height: 200px;
  }

  .recent-img-blog {
    height: 100%;
  }

  .recent-info-blog-wrap {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-direction: column-reverse;
    width: 100%;
  }

  .line-details-blog {
    width: 50%;
  }

  .review-testimonial {
    text-align: center;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .testimonials-author-2 {
    padding-bottom: 0;
  }

  .review-volumns-wrapper {
    grid-row-gap: 30px;
    grid-template-columns: 1fr;
  }

  .video-background {
    background-image: linear-gradient(to bottom, null, null);
    width: 94%;
    height: 200px;
  }

  .number-service {
    font-size: 32px;
  }

  .title-info-pricing-wrap {
    width: 100%;
  }

  .contacts-input-2 {
    height: 50px;
    padding: 5px 14px;
    font-size: 14px;
  }

  .contact-form-wrapper {
    padding: 20px;
  }

  .contacts-textarea-2 {
    padding-left: 16px;
    padding-right: 16px;
    font-size: 12px;
  }

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

  .price-big {
    font-size: 26px;
  }

  .search-heading {
    font-size: 42px;
  }

  .license-link-2 {
    margin-right: 15px;
  }

  .services-content-wrapper {
    width: 100%;
  }

  .services-content-wrapper.with-margin {
    margin-top: 0;
  }

  .our-services-conten-wrap {
    grid-row-gap: 30px;
    margin-bottom: 30px;
  }

  .services-content-item {
    padding-left: 14px;
    padding-right: 14px;
  }

  .services-content-item._3 {
    min-height: 300px;
  }

  .section-2.shorter {
    padding-left: 13px;
    padding-right: 13px;
  }

  .base-container-2 {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .list-text {
    font-size: .8em;
  }

  .button-overlap {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    display: flex;
  }

  .circle-in-list {
    width: 2.3em;
    height: 2.3em;
    margin-right: 1.5em;
  }

  .sticky-column-1 {
    padding-top: 4.1em;
    padding-bottom: 1.1em;
  }

  .heading.in-sticky-sec {
    font-size: 1.3em;
  }

  .main-button {
    min-width: 80%;
  }

  .container {
    padding-left: 0;
    padding-right: 0;
  }

  .buttons-in-sticky-sec {
    width: 100%;
  }

  .list-title.is-white-color {
    font-size: 1em;
  }

  .list-block {
    padding-bottom: 3em;
  }

  .sticky-column-2 {
    padding-top: 6em;
  }

  .list-line {
    left: .8em;
  }

  .flex-for-sticky {
    padding-left: 15px;
    padding-right: 15px;
  }

  .company-title {
    font-size: 1.4em;
  }

  .grid-icon-large {
    font-size: 5em;
  }

  .content-grid-block-3 {
    min-height: 22em;
    padding-top: 5em;
    padding-bottom: 5em;
  }

  .content-grid-block-3.with-bg-blue {
    grid-column-gap: 4em;
    grid-row-gap: 4em;
    grid-template-columns: 1fr;
    margin-bottom: 20px;
  }

  .content-grid-block-1 {
    height: 18em;
    min-height: auto;
    padding: 0 .9em;
  }

  .content-grid-block-2 {
    padding-left: 1.1em;
    padding-right: 1.1em;
  }

  .leadership-title.bigger {
    font-size: 24px;
  }

  .home-features-wrap.cntact-us-2 {
    width: 100%;
  }

  .section-5.contacts-2-banner {
    padding-left: 15px;
    padding-right: 15px;
  }

  .primary-red-button.header-button {
    padding: 5px 4px;
  }

  .primary-red-button.curved {
    border-radius: 100px;
  }

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

  .section-6.home-13-get-started {
    padding: 48px 20px;
  }

  .section-6.home-13-get-started._2 {
    padding-left: 19px;
    padding-right: 19px;
  }

  .base-container-4 {
    max-width: none;
  }

  .vertical-inscription-2.secondary-sections {
    text-align: left;
  }

  .text-white {
    font-size: 28px;
    line-height: 32px;
  }

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

  .base-container-5 {
    max-width: none;
  }

  .vertical-inscription-3.secondary-sections {
    text-align: left;
  }

  .register-text {
    width: 100%;
  }

  .number-container {
    grid-row-gap: 18px;
  }

  .intro-line-image {
    margin-top: 66px;
    margin-bottom: 20px;
  }

  .name-3 {
    font-size: 14px;
  }

  .right-process-wrapp {
    height: 200px;
    min-height: 150px;
  }

  .tab-content-home-4 {
    justify-content: flex-start;
  }

  .video-cover {
    min-height: 275px;
  }

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

  .no-margin.font-24pt.bold.even-bigger-font {
    font-size: 24px;
  }

  .white-color {
    font-size: 32px;
  }

  .link-6 {
    font-size: 10px;
  }

  .heading-52 {
    text-align: left;
    font-size: 28px;
  }

  .div-block-2 {
    padding-top: 166px;
    padding-left: 19px;
    padding-right: 19px;
  }

  .text-block-14 {
    font-size: 16px;
    line-height: 22px;
  }

  .form-2 {
    width: auto;
    padding: 5vw;
    display: block;
  }

  .home-primary-button {
    width: 90%;
    display: flex;
  }

  .form-field {
    padding-left: 5.1em;
  }

  .form-field::placeholder {
    font-size: .75em;
  }

  .form-field.other {
    padding-left: 3.2em;
  }

  .form-item.is-area-text {
    margin-bottom: .7em;
  }

  .form-label {
    font-size: 10px;
    top: 1.8em;
  }

  .form-error-message {
    padding: 1.7em;
  }

  .form-success-title {
    font-size: 1.2em;
  }

  .form-error-paragraph {
    font-size: 1em;
  }

  .div-block-4 {
    height: 140px;
  }

  .div-block-9 {
    padding-top: 45px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .heading-5 {
    text-align: center;
    font-size: 26px;
  }

  .logo {
    justify-content: center;
    align-self: center;
    align-items: center;
    display: flex;
  }

  .image-85 {
    max-width: 80%;
  }

  .inputs-wrapper {
    grid-row-gap: 30px;
    flex-direction: column;
  }

  .contacts-input {
    height: 45px;
    font-size: 14px;
  }

  .primary-button-3 {
    padding: 12px 24px;
    font-size: 16px;
  }

  .section-9 {
    padding-top: 33px;
  }

  .heading-53 {
    font-size: 18px;
  }

  .container-2 {
    padding-left: 0;
  }

  .map {
    height: 200px;
  }

  .div-block-12 {
    z-index: 99999999;
    flex-flow: row;
    width: 100%;
    height: auto;
    margin-top: 11px;
    margin-left: 0;
    display: flex;
    position: absolute;
    inset: 49% 0% auto;
  }

  .header-right {
    justify-content: center;
    align-items: center;
  }

  .header-right.mobile-hidden {
    justify-content: center;
    align-items: center;
    width: auto;
  }

  .link-7 {
    color: #f2f1f1;
    font-size: 16px;
  }

  .link-7:hover {
    color: #ff6d20;
  }

  .text-span-5 {
    color: var(--hover-color);
    font-size: 16px;
    display: block;
  }

  .text-span-5:hover {
    font-size: 18px;
  }

  .text-field-contact {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    font-size: 12px;
  }

  .form-block-5 {
    padding-left: 0;
    padding-right: 0;
  }

  .form-block-5.outline-outside {
    width: 100%;
    height: auto;
    padding-top: 6px;
    padding-left: 7px;
    padding-right: 7px;
    overflow: scroll;
  }

  .text-area {
    color: #000;
    font-size: 14px;
  }

  .form-4 {
    align-items: center;
  }

  .modal {
    padding-top: 33px;
    display: none;
  }

  .left-alignment {
    line-height: .9em;
  }

  .left-alignment.smaller-text {
    margin-bottom: 18px;
    font-size: 16px;
  }

  .div.less {
    width: 95%;
    height: 90%;
  }

  .image-84 {
    max-width: 55%;
    margin-top: 16px;
  }

  .flex-form {
    flex-direction: column;
    width: 100%;
  }

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

  .heading-55 {
    font-size: 22px;
  }

  .heading-57, .heading-58 {
    font-size: 28px;
  }

  .heading-59 {
    font-size: 32px;
  }

  .heading-60 {
    font-size: 28px;
  }

  .heading-61 {
    font-size: 26px;
  }

  .column {
    padding-left: 0;
    padding-right: 0;
  }

  .heading-62 {
    font-size: 22px;
  }
}

#w-node-_4762a95a-466d-977a-c493-1e042f8616f1-8c74c1c9, #w-node-c0d7cc51-d2eb-d482-9db0-1ae2bfc85562-8c74c1c9, #w-node-_87b21fb1-ecd5-d9b7-e7de-ad2e3e184468-8c74c1c9, #w-node-a17b69a8-5de5-d899-823a-184725bc31a2-8c74c1c9, #w-node-a17b69a8-5de5-d899-823a-184725bc31b1-8c74c1c9 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_736d89c6-9939-e7a5-8f88-147a087180f4-087180f0 {
  align-self: start;
}

#w-node-b5020d3d-339d-b438-f54d-b1050bfa4b67-8c74c1aa, #w-node-_5edb772a-e947-bde3-e4f5-77c70d7e856d-8c74c1aa, #w-node-_826cdcd1-1cbf-8e64-55a1-d8c7b36211f2-8c74c1aa, #w-node-_826cdcd1-1cbf-8e64-55a1-d8c7b36211f5-8c74c1aa, #w-node-_826cdcd1-1cbf-8e64-55a1-d8c7b36211fa-8c74c1aa, #w-node-_826cdcd1-1cbf-8e64-55a1-d8c7b3621200-8c74c1aa {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_826cdcd1-1cbf-8e64-55a1-d8c7b3621205-8c74c1aa, #w-node-_86d7bcd4-64fc-a478-de99-f76590ffaaf9-8c74c1b6 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_1ee9b6a1-c7d2-e5d0-fcee-39610b1b81e5-8c74c1b9, #w-node-f4a53ed1-6b23-cf9f-d2c4-451c761d1f52-8c74c1c3, #w-node-f4a53ed1-6b23-cf9f-d2c4-451c761d1f5a-8c74c1c3, #w-node-_1289b977-0d63-760c-6945-a986bb579b55-8c74c1c3, #w-node-_1289b977-0d63-760c-6945-a986bb579b5e-8c74c1c3, #w-node-b5020d3d-339d-b438-f54d-b1050bfa4b67-2e3b51a6, #w-node-_5edb772a-e947-bde3-e4f5-77c70d7e856d-2e3b51a6, #w-node-_09d0b959-60e7-da80-9aa6-26ba9cf64e4f-2e3b51a6, #w-node-_09d0b959-60e7-da80-9aa6-26ba9cf64e4e-2e3b51a6, #w-node-_00e39829-81c9-0f66-8733-a85ad597134d-2e3b51a6, #w-node-_00e39829-81c9-0f66-8733-a85ad5971355-2e3b51a6, #w-node-d2ecff50-aff4-0699-aabf-1657adc9da36-2e3b51a6, #w-node-d2ecff50-aff4-0699-aabf-1657adc9da3e-2e3b51a6 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-ed725c7e-9c33-c9b8-f809-12395c3b1946-2e3b51a6 {
  grid-area: 1 / 2 / 2 / 4;
}

#w-node-ed725c7e-9c33-c9b8-f809-12395c3b1947-2e3b51a6 {
  grid-area: 1 / 3 / 2 / 5;
}

#w-node-ed725c7e-9c33-c9b8-f809-12395c3b1952-2e3b51a6 {
  grid-area: span 1 / span 2 / span 1 / span 2;
  justify-self: start;
}

#w-node-ed725c7e-9c33-c9b8-f809-12395c3b195f-2e3b51a6 {
  grid-area: 1 / 2 / 2 / 4;
}

#w-node-ed725c7e-9c33-c9b8-f809-12395c3b1960-2e3b51a6 {
  order: -9999;
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-ed725c7e-9c33-c9b8-f809-12395c3b1966-2e3b51a6 {
  grid-area: 1 / 3 / 2 / 5;
  justify-self: start;
}

#w-node-ed725c7e-9c33-c9b8-f809-12395c3b1973-2e3b51a6 {
  grid-area: 1 / 2 / 2 / 4;
}

#w-node-ed725c7e-9c33-c9b8-f809-12395c3b1974-2e3b51a6 {
  grid-area: 1 / 3 / 2 / 5;
}

#w-node-ed725c7e-9c33-c9b8-f809-12395c3b197f-2e3b51a6 {
  grid-area: span 1 / span 2 / span 1 / span 2;
  justify-self: start;
}

#w-node-_784560f2-e9e0-4ed1-cd53-148d233056ce-2e3b51a6 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_580f8400-1f02-435b-b164-387cbecf0d62-d04d763b, #w-node-_580f8400-1f02-435b-b164-387cbecf0d62-7f1f10ad, #w-node-_580f8400-1f02-435b-b164-387cbecf0d62-633e8635, #w-node-_580f8400-1f02-435b-b164-387cbecf0d62-633ea5fa, #w-node-_580f8400-1f02-435b-b164-387cbecf0d62-02c7a005, #w-node-_580f8400-1f02-435b-b164-387cbecf0d62-f119a7af, #w-node-_580f8400-1f02-435b-b164-387cbecf0d62-4651d287, #w-node-_580f8400-1f02-435b-b164-387cbecf0d62-910c379b, #w-node-_580f8400-1f02-435b-b164-387cbecf0d62-0c7466eb, #w-node-_580f8400-1f02-435b-b164-387cbecf0d62-8932d6b0, #w-node-_580f8400-1f02-435b-b164-387cbecf0d62-13753fc7, #w-node-_580f8400-1f02-435b-b164-387cbecf0d62-1cad5e65, #w-node-_580f8400-1f02-435b-b164-387cbecf0d62-d6ef813d, #w-node-_580f8400-1f02-435b-b164-387cbecf0d62-fcc85a9d, #w-node-_580f8400-1f02-435b-b164-387cbecf0d62-02cb4a83, #w-node-_580f8400-1f02-435b-b164-387cbecf0d62-29321d87, #w-node-_580f8400-1f02-435b-b164-387cbecf0d62-5951c615, #w-node-_580f8400-1f02-435b-b164-387cbecf0d62-18908b79, #w-node-_580f8400-1f02-435b-b164-387cbecf0d62-f70ae5c8, #w-node-_580f8400-1f02-435b-b164-387cbecf0d62-d48f2b5d, #w-node-_580f8400-1f02-435b-b164-387cbecf0d62-10de2e01, #w-node-_580f8400-1f02-435b-b164-387cbecf0d62-351fc36c, #w-node-_580f8400-1f02-435b-b164-387cbecf0d62-bc307112, #w-node-_580f8400-1f02-435b-b164-387cbecf0d62-dcbde099, #w-node-_580f8400-1f02-435b-b164-387cbecf0d62-306cedc8, #w-node-_580f8400-1f02-435b-b164-387cbecf0d62-79ec241d, #w-node-_580f8400-1f02-435b-b164-387cbecf0d62-59523547, #w-node-_580f8400-1f02-435b-b164-387cbecf0d62-ec1608c2, #w-node-_580f8400-1f02-435b-b164-387cbecf0d62-495cf243, #w-node-_580f8400-1f02-435b-b164-387cbecf0d62-1dbabfb5, #w-node-_580f8400-1f02-435b-b164-387cbecf0d62-daf97ab3 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_1434ce48-8709-e243-3473-aed67cd12122-ac7d8d7f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

@media screen and (min-width: 1920px) {
  #w-node-ed725c7e-9c33-c9b8-f809-12395c3b1966-2e3b51a6 {
    grid-area: 1 / 3 / 2 / 5;
  }

  #w-node-_580f8400-1f02-435b-b164-387cbecf0d62-d04d763b, #w-node-_580f8400-1f02-435b-b164-387cbecf0d62-7f1f10ad, #w-node-_580f8400-1f02-435b-b164-387cbecf0d62-633e8635, #w-node-_580f8400-1f02-435b-b164-387cbecf0d62-633ea5fa, #w-node-_580f8400-1f02-435b-b164-387cbecf0d62-02c7a005, #w-node-_580f8400-1f02-435b-b164-387cbecf0d62-f119a7af, #w-node-_580f8400-1f02-435b-b164-387cbecf0d62-4651d287, #w-node-_580f8400-1f02-435b-b164-387cbecf0d62-910c379b, #w-node-_580f8400-1f02-435b-b164-387cbecf0d62-0c7466eb, #w-node-_580f8400-1f02-435b-b164-387cbecf0d62-8932d6b0, #w-node-_580f8400-1f02-435b-b164-387cbecf0d62-13753fc7, #w-node-_580f8400-1f02-435b-b164-387cbecf0d62-1cad5e65, #w-node-_580f8400-1f02-435b-b164-387cbecf0d62-d6ef813d, #w-node-_580f8400-1f02-435b-b164-387cbecf0d62-fcc85a9d, #w-node-_580f8400-1f02-435b-b164-387cbecf0d62-02cb4a83, #w-node-_580f8400-1f02-435b-b164-387cbecf0d62-29321d87, #w-node-_580f8400-1f02-435b-b164-387cbecf0d62-5951c615, #w-node-_580f8400-1f02-435b-b164-387cbecf0d62-18908b79, #w-node-_580f8400-1f02-435b-b164-387cbecf0d62-f70ae5c8, #w-node-_580f8400-1f02-435b-b164-387cbecf0d62-d48f2b5d, #w-node-_580f8400-1f02-435b-b164-387cbecf0d62-10de2e01, #w-node-_580f8400-1f02-435b-b164-387cbecf0d62-351fc36c, #w-node-_580f8400-1f02-435b-b164-387cbecf0d62-bc307112, #w-node-_580f8400-1f02-435b-b164-387cbecf0d62-dcbde099, #w-node-_580f8400-1f02-435b-b164-387cbecf0d62-306cedc8, #w-node-_580f8400-1f02-435b-b164-387cbecf0d62-79ec241d, #w-node-_580f8400-1f02-435b-b164-387cbecf0d62-59523547, #w-node-_580f8400-1f02-435b-b164-387cbecf0d62-ec1608c2, #w-node-_580f8400-1f02-435b-b164-387cbecf0d62-495cf243, #w-node-_580f8400-1f02-435b-b164-387cbecf0d62-1dbabfb5, #w-node-_580f8400-1f02-435b-b164-387cbecf0d62-daf97ab3 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}

@media screen and (min-width: 1440px) {
  #w-node-ed725c7e-9c33-c9b8-f809-12395c3b1952-2e3b51a6 {
    grid-area: span 1 / span 2 / span 1 / span 2;
    justify-self: start;
  }

  #w-node-ed725c7e-9c33-c9b8-f809-12395c3b1966-2e3b51a6 {
    grid-area: 1 / 3 / 2 / 5;
    justify-self: start;
  }

  #w-node-ed725c7e-9c33-c9b8-f809-12395c3b197f-2e3b51a6 {
    grid-area: span 1 / span 2 / span 1 / span 2;
    justify-self: start;
  }
}

@media screen and (max-width: 991px) {
  #w-node-ed725c7e-9c33-c9b8-f809-12395c3b1947-2e3b51a6 {
    grid-column: 1 / 4;
  }

  #w-node-ed725c7e-9c33-c9b8-f809-12395c3b1952-2e3b51a6 {
    grid-area: 2 / 1 / 3 / 4;
  }

  #w-node-ed725c7e-9c33-c9b8-f809-12395c3b1960-2e3b51a6 {
    grid-column: 1 / 4;
  }

  #w-node-ed725c7e-9c33-c9b8-f809-12395c3b1966-2e3b51a6 {
    grid-area: 2 / 1 / 3 / 4;
  }

  #w-node-ed725c7e-9c33-c9b8-f809-12395c3b1974-2e3b51a6 {
    grid-column: 1 / 4;
  }

  #w-node-ed725c7e-9c33-c9b8-f809-12395c3b197f-2e3b51a6 {
    grid-area: 2 / 1 / 3 / 4;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_826cdcd1-1cbf-8e64-55a1-d8c7b36211fa-8c74c1aa, #w-node-_826cdcd1-1cbf-8e64-55a1-d8c7b3621200-8c74c1aa, #w-node-_826cdcd1-1cbf-8e64-55a1-d8c7b3621216-8c74c1aa, #w-node-_826cdcd1-1cbf-8e64-55a1-d8c7b362121b-8c74c1aa, #w-node-_826cdcd1-1cbf-8e64-55a1-d8c7b3621220-8c74c1aa {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }
}


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