:root {
  --black: #d8d8d8;
  --orange: #c09d00;
  --white: white;
  --dark: #3d3d3d;
  --grey: #b9b9b9;
  --firebrick: #b23e32;
  --dim-grey: #5d6b77;
  --royal-blue: #506a8f;
}



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

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

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

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}
contact-info-wrapper
h1 {
  color: var(--black);
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 38px;
  font-weight: 700;
  line-height: 44px;
}

h2 {
  color: var(--orange);
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 3em;
  font-weight: 700;
  line-height: 36px;
}

h3 {
  color: var(--black);
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
}

h4 {
  color: var(--black);
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
}

p {
  color: #e0e0e0;
  margin-bottom: 10px;
  font-size: 1.1em;
}

a {
  color: var(--white);
  text-decoration: none;
}

strong {
  color: var(--white);
  font-weight: 700;
}

.navbar-no-shadow-container {
  z-index: 5;
  width: 100%;
  max-width: none;
  border-bottom: 1px solid var(--orange);
  background-color: #000;
  background-image: linear-gradient(6deg, #000, #2c2c2c 0%, #242424 0%, #000 0%, #777 90%, var(--orange));
  box-shadow: 0 0 20px -12px var(--orange);
  margin-left: auto;
  margin-right: auto;
  padding: 10px 20px;
}

.container-regular {
  width: 100%;
  max-width: 1400px;
  min-height: 30px;
  margin-left: auto;
  margin-right: auto;
}

.navbar-wrapper {
  color: var(--white);
  justify-content: space-between;
  align-items: flex-end;
  display: flex;
}

.nav-menu {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0;
  padding-bottom: 0;
  padding-left: 0;
  display: flex;
}

.nav-link {
  border-right: 1px solid var(--orange);
  border-left: 1px solid var(--orange);
  color: var(--white);
  letter-spacing: .25px;
  margin-left: 5px;
  margin-right: 0;
  padding: 0 20px;
  font-size: 1.3em;
  font-weight: 400;
  line-height: 1.2em;
  text-decoration: none;
  transition: all .2s cubic-bezier(.39, .575, .565, 1);
  display: block;
}

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

.nav-link:focus-visible {
  outline-offset: 0px;
  color: #0050bd;
  border-radius: 4px;
  outline: 2px solid #0050bd;
}

.nav-link[data-wf-focus-visible] {
  outline-offset: 0px;
  color: #0050bd;
  border-radius: 4px;
  outline: 2px solid #0050bd;
}

.nav-dropdown {
  margin-left: 5px;
  margin-right: 5px;
}

.nav-dropdown-toggle {
  letter-spacing: .25px;
  padding: 5px 30px 5px 10px;
  font-size: 14px;
  line-height: 20px;
}

.nav-dropdown-toggle:hover {
  color: rgba(26, 27, 31, .75);
}

.nav-dropdown-toggle:focus-visible {
  outline-offset: 0px;
  color: #0050bd;
  border-radius: 5px;
  outline: 2px solid #0050bd;
}

.nav-dropdown-toggle[data-wf-focus-visible] {
  outline-offset: 0px;
  color: #0050bd;
  border-radius: 5px;
  outline: 2px solid #0050bd;
}

.nav-dropdown-icon {
  margin-right: 10px;
}

.nav-dropdown-list {
  background-color: #fff;
  border-radius: 12px;
}

.nav-dropdown-list.w--open {
  padding-top: 10px;
  padding-bottom: 10px;
}

.nav-dropdown-link {
  padding-top: 5px;
  padding-bottom: 5px;
  font-size: 14px;
}

.nav-dropdown-link:focus-visible {
  outline-offset: 0px;
  color: #0050bd;
  border-radius: 5px;
  outline: 2px solid #0050bd;
}

.nav-dropdown-link[data-wf-focus-visible] {
  outline-offset: 0px;
  color: #0050bd;
  border-radius: 5px;
  outline: 2px solid #0050bd;
}

.nav-button-wrapper {
  margin-left: 120px;
}

.button-primary {
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  background-color: #1a1b1f;
  padding: 12px 25px;
  font-size: 12px;
  line-height: 20px;
  transition: all .2s;
}

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

.button-primary:active {
  background-color: #43464d;
}

.image {
  width: 130px;
  transition: all .125s cubic-bezier(.445, .05, .55, .95);
}

.image:hover {
  transform: translate(11px);
}

.body {
  background-color: #000;
  font-family: Ubuntu, Helvetica, sans-serif;
}

.hero-stack {
  min-height: 400px;
  background-color: #000;
  background-image: none;
  border: 1px #000;
  justify-content: center;
  align-items: flex-end;
  padding: 70px 30px 15px;
  display: flex;
  position: relative;
}

.hero-stack.nl {
  min-height: auto;
  background-image: linear-gradient(to right, #000, rgba(135, 135, 135, .31) 53%, #000), linear-gradient(to top, #000, rgba(255, 255, 255, 0)), radial-gradient(circle farthest-side at 50% -150%, #000, #3e3e3e 33%, #383838 39%, #212121 72%, rgba(49, 49, 49, .5) 92%, #000 99%), url('../images/IMG_6460.jpg');
  background-position: 0 0, 0 0, 0 0, 50%;
  background-size: auto, auto, auto, auto;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding-top: 60px;
}

.hero-stack._2 {
  height: 100vh;
  min-height: 1200px;
  background-image: radial-gradient(circle at 80% -30%, #000, rgba(29, 29, 29, .98) 71%, #000), url('../images/austris-augusts-52p1K0d0euM-unsplash.jpg'), radial-gradient(circle farthest-side at 120% -20%, #000, #3e3e3e 44%, #313131 52%, #212121 74%, #000);
  background-position: 0 0, 0 0, 0 0;
  background-size: auto, cover, auto;
  align-items: flex-start;
  margin-top: -93px;
  padding-top: 16vh;
  padding-bottom: 100px;
}

.hero-stack.spon {
  margin-top: -362px;
  padding-bottom: 0;
}

.container {
  width: auto;
  height: auto;
  max-width: none;
  min-height: auto;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  display: flex;
}

.hero-wrapper-two {
  height: 100%;
  max-width: 200px;
  text-align: center;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  margin-left: auto;
  margin-right: 0;
  display: flex;
}

.margin-bottom-24px {
  margin-bottom: 24px;
}

.button-primary-2 {
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  background-color: #1a1b1f;
  padding: 12px 25px;
  font-size: 12px;
  line-height: 20px;
  transition: all .2s;
}

.button-primary-2:hover {
  color: #fff;
  background-color: #32343a;
}

.button-primary-2:active {
  background-color: #43464d;
}

.hero-image {
  width: 100%;
  margin-top: 50px;
}

.logos-without-title {
  z-index: 1;
  width: 70%;
  max-width: none;
  clear: none;
  box-shadow: 0 0 40px -14px var(--orange);
  background-color: #4e4e4e;
  background-image: linear-gradient(#000, rgba(255, 255, 255, 0) 42%), linear-gradient(202deg, rgba(160, 160, 160, .36), rgba(255, 255, 255, 0)), linear-gradient(#020202, rgba(114, 95, 79, .41) 6%, rgba(109, 109, 109, 0) 11%, #221911), radial-gradient(circle, #424242, #aaa);
  border-top: 1px #000;
  border-bottom: 1px #e4ebf3;
  flex-direction: column;
  align-items: center;
  margin-left: auto;
  margin-right: 0;
  padding: 0 30px;
  display: flex;
  position: relative;
}

.logos-without-title.home {
  width: 100%;
  border-top-style: none;
  border-top-color: var(--orange);
  border-bottom-style: solid;
  border-bottom-color: var(--orange);
  background-image: linear-gradient(to bottom, #292929, rgba(255, 255, 255, .3) 2%, rgba(255, 255, 255, 0) 22%), linear-gradient(202deg, rgba(160, 160, 160, .36), rgba(255, 255, 255, 0)), linear-gradient(to bottom, #020202, rgba(114, 95, 79, .41) 6%, rgba(109, 109, 109, 0) 98%, var(--dark)), radial-gradient(circle farthest-corner at 50% 50%, #424242, #aaa);
  box-shadow: 0 0 100px -50px rgba(255, 255, 255, .82);
}

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

.clients-wrapper-three {
  width: 90%;
  height: auto;
  max-width: 1600px;
  background-image: linear-gradient(#fff, #fff);
  flex-flow: row;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: 0;
  padding: 40px;
  display: flex;
}

.clients-wrapper-three._2 {
  width: 100%;
  background-image: linear-gradient(#fff, #fff);
  border-top-left-radius: 16px;
  border-bottom-left-radius: 16px;
  flex-wrap: wrap;
  justify-content: space-around;
  margin-top: 20px;
  margin-bottom: -30px;
  padding: 20px 10px;
}

.clients-wrapper-three.h {
  width: 100%;
  background-image: none;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 30px;
}

.clients-image-three {
  width: 100%;
  max-width: 80px;
  margin-bottom: 0;
  margin-left: 0;
  margin-right: auto;
  padding-left: 12px;
}

.clients-image-three.small {
  width: auto;
  max-height: 45px;
  max-width: 160px;
  min-width: auto;
  margin: 20px 10px;
  padding-left: 0;
}

.clients-image-three.small.big {
  width: auto;
  max-height: none;
  max-width: 160px;
  margin-top: 15px;
  margin-bottom: 10px;
  padding-left: 0;
}

.clients-image-three.small.top {
  max-height: none;
  max-width: 300px;
  opacity: 1;
  margin-top: 20px;
  margin-left: 0;
}

.clients-image-three.small.top.home {
  margin-top: 40px;
  margin-bottom: 0;
}

.gallery-overview {
  color: var(--black);
  background-color: #000;
  background-image: radial-gradient(circle farthest-side at 50% 150%, #141414, #000 90%);
  border: 1px #000;
  padding: 0 5% 80px;
  position: relative;
}

.gallery-wrapper {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  display: grid;
}

.gallery-block {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.gallery-features-block {
  margin-top: 16px;
  margin-bottom: 24px;
}

.gallery-feature {
  background-image: url('../images/');
  background-position: 0%;
  background-repeat: no-repeat;
  background-size: 20px;
  margin-bottom: 8px;
  padding-left: 30px;
  font-size: 14px;
  line-height: 24px;
}

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

.gallery-image {
  width: 100%;
}

.fs-rangeslider_form {
  width: 100%;
  max-width: 720px;
  margin-bottom: 0;
}

.fs-rangeslider_handle {
  z-index: 1;
  width: 3rem;
  height: 3rem;
  cursor: grab;
  background-color: #5c2aff;
  border-radius: 100rem;
  flex: none;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 1px 1px 12px rgba(0, 0, 0, .2);
}

.fs-rangeslider_handle:focus {
  background-color: #5c2aff;
}

.fs-rangeslider_handle.is-pink {
  background-color: #dd30fc;
}

.fs-range_values {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-top: 2.5rem;
  padding-left: 0;
  padding-right: 0;
  display: flex;
}

.fs-rangeslider_wrapper {
  align-items: center;
  padding-top: 1rem;
  padding-bottom: 1rem;
  font-size: 1.5rem;
  display: block;
  position: relative;
}

.fs-rangeslider_track {
  height: 1rem;
  background-color: #1a1a1a;
  border-radius: 999rem;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.fs-rangeslider_handle-value {
  width: 4rem;
  text-align: center;
  margin-bottom: -3rem;
  margin-left: -.75rem;
  position: absolute;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: auto;
}

.fs-rangeslider_input {
  display: none;
}

.fs-rangeslider_fill {
  width: 20%;
  height: 100%;
  background-color: #835dff;
  background-image: linear-gradient(270deg, #dd30fc, #5c2aff);
  border-radius: 999px;
  position: absolute;
}

.hero-heading-right {
  min-height: auto;
  background-color: #000;
  border: 0 #000;
  padding: 0 30px;
  position: relative;
}

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

.container-3.n {
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  padding-bottom: 20px;
  padding-left: 0;
}

.hero-wrapper {
  justify-content: flex-start;
  align-items: flex-end;
  padding-bottom: 0;
  display: flex;
}

.hero-split {
  width: 50%;
  max-width: 50%;
  background-color: rgba(0, 0, 0, 0);
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  margin-left: 0;
  padding: 0;
  display: flex;
}

.hero-split.c {
  background-color: rgba(255, 157, 0, 0);
  align-items: flex-end;
  margin-left: 0;
  padding-left: 0;
}

.shadow-two {
  border: 1px #000;
}

.shadow-two.minus {
  width: 66%;
  margin-top: 0;
}

.margin-bottom-24px-2 {
  margin-bottom: 24px;
}

.button-primary-3 {
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  background-color: #1a1b1f;
  padding: 12px 25px;
  font-size: 12px;
  line-height: 20px;
  transition: all .2s;
}

.button-primary-3:hover {
  color: #fff;
  background-color: #32343a;
}

.button-primary-3:active {
  background-color: #43464d;
}

.h1 {
  color: var(--orange);
  margin-top: 0;
  font-weight: 700;
}

.h1.l20 {
  color: var(--white);
  letter-spacing: 2px;
  margin-top: 0;
  margin-bottom: 0;
  margin-left: -5px;
  font-size: 10em;
  line-height: 1em;
}

.pricing-items {
  border-bottom: 1px solid #e4ebf3;
  padding: 80px 30px;
  position: relative;
}

.pricing-wrapper-two {
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: -40px;
  padding-left: 148px;
  padding-right: 0;
  display: flex;
}

.pricing-card-two {
  width: 100%;
  max-width: none;
  background-color: rgba(0, 0, 0, 0);
  background-image: none;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  padding: 0;
  display: flex;
  position: relative;
}

.pricing-image-two {
  max-width: 30%;
  margin-right: 40px;
}

.pricing-content {
  width: 100%;
  background-color: rgba(0, 0, 0, 0);
  flex-direction: column;
  flex: 1;
  justify-content: space-around;
  margin-top: 40px;
  margin-bottom: 20px;
  padding: 0;
  display: flex;
}

.tagline {
  color: #b23e32;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 14px;
  margin-left: 0;
  padding-left: 0;
  padding-right: 0;
  font-size: 1.2em;
  line-height: 16px;
}

.tagline.nm {
  width: auto;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0;
  margin-left: 0;
  padding-right: 0;
  font-size: 1em;
  display: flex;
  position: relative;
}

.tagline.ab {
  opacity: .56;
  margin-top: -85px;
  margin-bottom: -86px;
  font-size: 2em;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0;
  transform: rotate(-90deg);
}

.pricing-info {
  width: 170px;
  height: 120px;
  min-width: auto;
  border: 1px #000;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  display: flex;
  position: relative;
}

.pricing-info.mb {
  width: 100%;
  height: auto;
  max-width: 400px;
  min-height: auto;
  text-align: left;
  border: 1px #000;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding-left: 0;
}

.pricing-divider-two {
  height: 1px;
  background-color: #181818;
  margin: 9px 0 16px;
}

.pricing-details {
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.pricing-block {
  margin-bottom: -10px;
}

.pricing-details-text {
  margin-bottom: 8px;
}

.footer-dark {
  border-top: 1px solid var(--orange);
  background-color: #000;
  background-image: radial-gradient(circle at 50% 100%, #141414, #000);
  border-bottom: 1px solid #e4ebf3;
  padding: 50px 30px 15px;
  position: relative;
}

.container-4 {
  width: auto;
  max-width: none;
  margin-left: auto;
  margin-right: auto;
}

.footer-wrapper {
  width: 90%;
  max-width: 1400px;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.footer-content {
  grid-column-gap: 70px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: auto;
  grid-auto-columns: 1fr;
  display: grid;
}

.footer-block {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  margin-top: 22px;
  display: flex;
}

.title-small {
  color: var(--black);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-size: 14px;
  font-weight: 700;
  line-height: 16px;
}

.footer-link {
  color: var(--grey);
  margin-top: 12px;
  margin-bottom: 6px;
  font-size: 14px;
  line-height: 16px;
  text-decoration: none;
}

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

.footer-social-block {
  justify-content: flex-start;
  align-items: center;
  margin-top: 12px;
  margin-left: -12px;
  display: flex;
}

.footer-social-link {
  margin-left: 12px;
}

.footer-divider {
  width: 300px;
  height: 1px;
  background-color: #2e2e2e;
  margin: 18px auto 13px;
}

.footer-copyright-center {
  color: var(--grey);
  text-align: center;
  text-transform: none;
  font-size: 14px;
  line-height: 16px;
}

.pb {
  color: var(--orange);
  text-align: left;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 22px;
  font-size: 2.2em;
  font-weight: 300;
}

.pb.nm {
  margin-left: 27px;
}

.pb.time {
  text-transform: none;
  margin-right: 54px;
  line-height: 100%;
  display: block;
}

.pb.time.a {
  margin-right: 0;
  padding-left: 0;
}

.sek {
  color: var(--orange);
  text-align: left;
  margin-left: 2px;
  margin-right: 20px;
  font-size: .8em;
  font-weight: 400;
}

.fs-rangeslider_track-copy {
  height: 1rem;
  background-color: #1a1a1a;
  border-radius: 999rem;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.paragraph {
  color: var(--black);
  margin-left: 20px;
}

.image-2 {
  width: 150px;
  transition: all .275s cubic-bezier(.445, .05, .55, .95);
}

.image-2:hover {
  transform: scale(1.2);
}

.heading {
  color: var(--orange);
  text-align: center;
  margin-top: 0;
  margin-bottom: 22px;
  font-size: 1em;
  font-weight: 400;
}

.heading-2 {
  color: var(--white);
  text-align: center;
  margin-bottom: 3px;
  margin-left: 0;
  font-size: 1.5em;
  font-weight: 300;
}

.div-block {
  width: 50%;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-left: 0;
  padding-top: 0;
  display: flex;
}

.div-block._40, .div-block._40-copy {
  width: 50%;
}

.div-block.lp {
  width: 40%;
  min-height: auto;
  clear: none;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 0;
  margin-left: -36px;
  padding-right: 0;
  position: relative;
}

.div-block.lp.nut {
  margin-bottom: -448px;
}

.conti {
  width: 90%;
  max-width: 1400px;
  margin-bottom: 20px;
  display: flex;
  position: relative;
}

.conti.vert {
  flex-direction: column;
  align-items: center;
  margin-bottom: 0;
}

.conti._2 {
  perspective: 1009px;
  justify-content: flex-end;
  align-items: flex-end;
  margin-top: 0;
  margin-bottom: 0;
  padding-bottom: 86px;
  position: relative;
  top: 60px;
}

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

.image-3 {
  width: 30px;
  margin-left: auto;
  margin-right: 5px;
}

.image-4 {
  width: 40px;
  margin-bottom: 0;
}

.heading-3 {
  width: 200px;
  text-align: center;
}

.text-block {
  color: var(--firebrick);
  margin-left: 0;
  padding-right: 0;
  font-size: .5em;
}

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

.button-standard {
  background-color: var(--orange);
  border: 2px #1355ff;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  padding: 14px 40px;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  transition: all .3s;
  display: flex;
}

.button-standard:hover {
  color: #1355ff;
  background-color: #fff;
}

.button-spacer {
  align-items: center;
  margin-top: 60px;
  display: flex;
}

.h3-heading {
  color: #061237;
  letter-spacing: -.04em;
  margin-top: 0;
  margin-bottom: 24px;
  font-size: 50px;
  font-weight: 800;
  line-height: 60px;
}

.heading-large {
  color: #fff;
  text-align: center;
  letter-spacing: 0;
  text-shadow: 0 4px 14px #000;
  margin-top: 8px;
  margin-bottom: 8px;
  margin-right: 10px;
  font-size: 2em;
  font-weight: 700;
  line-height: 32px;
}

.section-process {
  min-height: 720px;
  color: var(--black);
  background-color: #000;
  background-image: radial-gradient(circle at 100% 0, #252525, #000);
  align-items: center;
  padding: 170px 5%;
  display: flex;
  position: relative;
  overflow: hidden;
}

.grid-process-section {
  width: 100%;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-direction: row-reverse;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1.5fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: flex-start;
  padding-left: 40px;
  display: grid;
}

.card-process {
  width: 90%;
  border: 1px solid var(--orange);
  background-color: #fff;
  background-image: linear-gradient(to bottom, rgba(192, 167, 56, 0), rgba(192, 167, 56, 0)), linear-gradient(270deg, rgba(192, 167, 56, 0) 23%, rgba(54, 46, 8, .45)), radial-gradient(circle farthest-corner at 60% -40%, #493f15, var(--orange) 50%, #716221 52%, #96822c 69%, #5b4f1a 74%, #000);
  cursor: pointer;
  border-radius: 20px;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  padding: 7px 32px;
  transition: padding .3s cubic-bezier(.445, .05, .55, .95);
  display: flex;
}

.card-process:hover {
  padding: 23px;
}

.paragraph-large {
  max-width: 600px;
  color: var(--grey);
  letter-spacing: -.02em;
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 400;
  line-height: 32px;
}

.process-content {
  width: auto;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-right: 0;
  display: flex;
}

.process-content.pl {
  padding-left: 40px;
}

.process-icon {
  width: 60px;
  height: 60px;
  min-height: 60px;
  min-width: 60px;
  background-color: var(--orange);
  color: #fff;
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
  padding: 8px;
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
  display: flex;
}

.paragraph-standard {
  max-width: 600px;
  color: #fff;
  letter-spacing: -.02em;
  margin-bottom: 0;
  margin-right: 10px;
  font-size: 1.2em;
  font-weight: 400;
  line-height: 1.2em;
}

.title-large {
  color: #1355ff;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-size: 16px;
  font-weight: 600;
}

.grid-process-stacked {
  z-index: 1;
  width: 85%;
  grid-column-gap: 2.65em;
  grid-row-gap: 2.65em;
  perspective: 1010px;
  flex-direction: column;
  align-items: flex-start;
  padding-left: 0%;
  padding-right: 0%;
  display: flex;
  position: relative;
}

.h2 {
  margin-top: 0;
  font-size: 5em;
  line-height: 1.4em;
}

.div-block-2 {
  justify-content: flex-start;
  margin-bottom: -20px;
  padding-top: 20px;
  display: flex;
}

.heading-4 {
  color: var(--orange);
  margin: 0 10px 0 0;
  font-size: 1em;
  font-weight: 400;
}

.line {
  z-index: -1;
  width: 1px;
  height: 90%;
  background-color: var(--orange);
  position: absolute;
  top: 30px;
  left: 50%;
  right: auto;
}

.div-block-3 {
  width: 60%;
  position: relative;
}

.div-block-3.nosee {
  display: none;
}

.image-5 {
  width: 100%;
  height: auto;
  max-width: 450px;
  margin-left: -86px;
  position: relative;
  top: 0%;
  bottom: 0;
  left: auto;
  right: auto;
}

.div-block-4 {
  position: absolute;
  top: auto;
  bottom: auto;
  left: auto;
  right: 0%;
}

.div-block-4.u {
  top: auto;
  bottom: 0%;
  left: auto;
  right: 0%;
}

.slider {
  width: 100%;
  min-height: 33.33vw;
  background-color: rgba(0, 0, 0, 0);
  justify-content: center;
  align-items: center;
  display: flex;
}

.mask {
  width: 33.33%;
  height: 100%;
  min-height: 100%;
  overflow: visible;
}

.section {
  min-height: auto;
  justify-content: center;
  margin-bottom: 0;
  display: flex;
}

.section.nosee {
  display: none;
}

.slide {
  width: 100%;
  height: 100%;
  min-height: 100%;
  padding: 0 20px;
  overflow: hidden;
}

.image-6 {
  width: 100%;
  height: auto;
  max-width: none;
  display: block;
  position: relative;
  top: 0%;
  bottom: auto;
  left: auto;
  right: auto;
}

.text-f-13 {
  color: #000;
  white-space: nowrap;
  font-family: Oswald, sans-serif;
  font-size: 1.05em;
  font-weight: 300;
  line-height: 1;
}

.text-f-13.all-caps {
  letter-spacing: .15em;
  text-transform: uppercase;
}

.text-f-13.all-caps.light-grey-font {
  color: rgba(255, 255, 255, .6);
}

.heading-5 {
  white-space: nowrap;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 2.75em;
  font-weight: 400;
  line-height: 1;
}

.gradient-bg {
  z-index: -1;
  width: auto;
  height: 175%;
  margin: auto;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.slide-img {
  z-index: 0;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.swiper-wrapper {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  display: flex;
}

.swiper-wrapper.first-swiper-wrapper {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: flex;
}

.location {
  justify-content: center;
  align-items: center;
  margin-bottom: 1em;
  display: flex;
}

.slide-img-overlay {
  z-index: 1;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, .5) 65%, rgba(0, 0, 0, .75));
  position: absolute;
}

.slide-content {
  z-index: 2;
  width: 100%;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding-bottom: 3em;
  display: flex;
  position: absolute;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.carousel-arrow-oval {
  z-index: 3;
  width: 3.25em;
  height: 3.25em;
  background-color: #ff7a00;
  border-radius: 100%;
  margin-top: auto;
  margin-bottom: auto;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: auto;
}

.carousel-arrow-oval.next-arrow {
  top: 0%;
  bottom: 0%;
  left: auto;
  right: 0%;
}

.carousel-arrow-icon {
  z-index: 4;
  width: auto;
  height: 1.25em;
  flex: none;
  justify-content: center;
  align-items: center;
  position: relative;
}

.slider-2 {
  margin-bottom: 4em;
  position: relative;
  overflow: visible;
}

.carousel-arrow {
  align-items: center;
  padding-top: 1em;
  padding-bottom: 1em;
  padding-left: 1em;
  display: flex;
  position: relative;
}

.carousel-arrow.arrow-next {
  padding-left: 0;
  padding-right: 1em;
}

.carousel-arrows {
  z-index: 4;
  width: 100%;
  flex: none;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  justify-items: end;
  display: flex;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.slide-2 {
  width: 100%;
  justify-content: center;
  align-items: flex-end;
  display: flex;
  position: relative;
}

.slide-divider {
  width: 4em;
  height: .1em;
  background-color: #ff7a00;
  margin-top: 2em;
}

.swiper-slide {
  opacity: .9;
  filter: grayscale();
  color: rgba(255, 255, 255, .5);
  align-items: center;
  display: flex;
}

.carousel-arrow-w {
  height: 100%;
  cursor: pointer;
  flex: none;
  justify-content: flex-start;
  align-items: center;
  display: flex;
  position: relative;
}

.carousel-arrow-w.arrow-next {
  margin-right: 2em;
}

.carousel-arrow-w.arrow-previous {
  margin-left: 2em;
}

.swiper.first-swiper {
  width: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.paragraph-2 {
  font-size: 2em;
  line-height: 1.4em;
}

.downer {
  height: 100px;
  background-color: var(--orange);
  flex-direction: row;
  flex: 0 auto;
  justify-content: flex-start;
  align-items: center;
  padding-left: 40px;
  display: flex;
  position: absolute;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.heading-6 {
  color: #7c7c7c;
  font-size: 2em;
  font-weight: 300;
}

.inner {
  width: auto;
  flex: none;
  align-self: auto;
  display: flex;
}

.inner.arrow {
  width: auto;
}

.inner.right {
  width: 80%;
  justify-content: space-around;
  margin-left: 0%;
  padding-left: 10%;
}

.h3 {
  color: #fff;
  text-shadow: 0 1px 10px rgba(255, 255, 255, .15);
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 0;
  font-size: 3em;
}

.h3.links {
  opacity: 1;
  color: #fff;
  cursor: pointer;
  font-size: 1.5em;
}

.h3.links:hover {
  opacity: 1;
}

.icon {
  width: 40px;
  height: 40px;
  color: var(--white);
  justify-content: center;
  align-items: center;
  font-size: 30px;
  display: flex;
}

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

.paragraph-3 {
  max-width: 320px;
  font-size: 1.3em;
  line-height: 1.4em;
}

.socials {
  perspective: 807px;
  background-image: url('../images/kk.svg');
  background-position: 25%;
  background-repeat: no-repeat;
  background-size: 50%;
  justify-content: center;
  padding-right: 0;
  display: flex;
}

.image-7 {
  width: 250px;
  background-image: radial-gradient(circle closest-side, #d0d0d0 19%, rgba(255, 255, 255, 0));
  margin-left: 25%;
  padding: 0 20px;
}

.link {
  color: var(--orange);
  margin-bottom: 10px;
  font-size: 1.3em;
  font-weight: 300;
  text-decoration: underline;
}

.image-8 {
  width: 350px;
}

.div-block-5 {
  background-color: #000;
  background-image: radial-gradient(circle at -30% 80%, #202020, #000);
  padding-top: 130px;
  padding-bottom: 40px;
}

.heading-7 {
  color: var(--orange);
  margin-top: 0;
}

.form-block {
  max-width: 300px;
}

.form-wrap {
  max-width: 700px;
  background-color: #000;
  background-image: radial-gradient(circle at -30% 40%, rgba(255, 255, 255, .98), rgba(240, 240, 240, .98) 74%, rgba(227, 227, 227, .98) 78%, rgba(250, 250, 250, .98) 82%, #696969);
  border-radius: 16px;
  margin-left: 30px;
  margin-right: 30px;
  padding: 20px 40px;
}

.text-field-large {
  min-height: 150px;
  border: 1px solid #c4cee8;
  border-radius: 9px;
}

.text-field-large:hover {
  border-width: 1px;
  border-color: var(--orange);
}

.text-field-large:active, .text-field-large:focus {
  border-width: 2px;
  border-color: var(--orange);
}

.display-normal {
  color: var(--grey);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.1;
}

.form-block-2 {
  margin-left: auto;
  margin-right: auto;
  display: none;
}

.button-wrap-right {
  justify-content: flex-end;
  margin-top: 32px;
  display: flex;
}

.form-section-touch {
  min-height: 100vh;
  background-color: #effaf8;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 196px 3% 140px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.submit-button {
  background-color: var(--orange);
  color: #fff;
  border-radius: 8px;
  padding: 20px 40px;
  font-size: 16px;
  font-weight: 500;
  transition: all .3s;
}

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

.container-6 {
  width: 100%;
  max-width: 1280px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  padding-top: 0;
  padding-left: 0;
}

.field-wrap {
  margin-bottom: 24px;
}

.text-field {
  min-height: 56px;
  border: 1px solid #c4cee8;
  border-radius: 9px;
  transition: all .2s;
}

.text-field:hover {
  border-width: 1px;
  border-color: var(--orange);
}

.text-field:active {
  border-width: 2px;
  border-color: var(--orange);
}

.text-field:focus {
  border-width: 2px;
  border-color: #5f30e2;
}

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

.text-field[data-wf-focus-visible] {
  border-color: var(--orange);
}

.title-wrap {
  width: 100%;
  color: #7b88a8;
  text-align: left;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  margin-bottom: 32px;
  display: flex;
  position: relative;
}

.heading-8 {
  color: var(--orange);
}

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

.paragraph-5 {
  color: var(--black);
  font-size: 1.2em;
}

.lol {
  height: 100px;
  background-color: var(--orange);
  flex-direction: row;
  flex: 0 auto;
  justify-content: flex-start;
  align-items: center;
  padding-left: 40px;
  display: none;
  position: absolute;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.section-2 {
  width: 66%;
  flex-direction: column;
  align-items: flex-start;
  margin-left: auto;
  padding-left: 0;
  display: flex;
}

.body-2 {
  background-color: #000;
}

.section-3 {
  min-height: 80vh;
  padding-top: 40px;
  padding-bottom: 40px;
  font-family: Ubuntu, Helvetica, sans-serif;
}

.text-span-2 {
  letter-spacing: -.1px;
  margin-bottom: 2px;
  font-size: 1.1em;
  font-weight: 500;
  display: block;
}

.bold-text {
  color: var(--orange);
  font-size: .95em;
  font-weight: 700;
}

.pspan {
  color: var(--grey);
  font-size: .9em;
}

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

.sponlink {
  transition: all .175s cubic-bezier(.39, .575, .565, 1);
}

.sponlink:hover {
  transform: scale(1.1);
}

.slider-3 {
  width: 100%;
  height: 100%;
  max-height: none;
}

.slide-3, .mask-2 {
  max-height: 100%;
}

.slide-nav {
  display: none;
}

.heading-9 {
  color: var(--dark);
  margin-top: 0;
  margin-bottom: 0;
}

.heading-10 {
  color: var(--dark);
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 400;
}

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

.contact-info-wrapper {
  width: auto;
  max-width: none;
  grid-column-gap: 16px;
  grid-row-gap: 20px;
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-end;
  align-items: stretch;
  display: flex;
}

.contact-info {
  height: 110px;
  max-width: 500px;
  background-color: var(--orange);
  background-image: radial-gradient(circle farthest-corner at -200% 400%, rgba(255, 255, 255, 0) 80%, rgba(255, 255, 255, .14) 85%, rgba(255, 255, 255, .02)), radial-gradient(circle farthest-side at -80% 100%, var(--orange), #504202 41%, var(--orange) 80%, var(--orange));
  box-shadow: inset 5px 0 8px 0 var(--orange);
  border-radius: 3px;
  justify-content: flex-start;
  align-items: center;
  padding: 16px 30px;
  transition: all .375s cubic-bezier(.39, .575, .565, 1);
  display: flex;
  position: relative;
}

.contact-info:hover {
  margin-left: 30px;
}

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

.contact-icon {
  z-index: 0;
  width: 45px;
  cursor: pointer;
  margin-right: 20px;
  padding-right: 0;
  transition: all .275s cubic-bezier(.39, .575, .565, 1);
  position: relative;
  transform: scale(1);
}

.contact-icon:hover {
  transform: scale(1.1);
}

.contact-text {
  z-index: 2;
  color: #fafafa;
  flex-direction: row;
  justify-content: center;
  align-self: center;
  align-items: center;
  display: flex;
  position: relative;
}

.contact-text-span {
  color: var(--white);
  order: 0;
  margin-right: 15px;
  font-size: 1.5em;
  font-weight: 300;
  line-height: 25px;
  display: block;
}

.contact-text-link {
  color: #fafafa;
  letter-spacing: .07em;
  margin-top: 0;
  margin-bottom: 0px;
  font-size: 15px;
  font-weight: 400;
  line-height: 100%;
  text-decoration: none;
  display: block;
}

.contact-text-link:hover {
  text-decoration: none;
}

@media screen and (min-width: 1280px) {
  .clients-wrapper-three._2 {
    flex-wrap: nowrap;
  }

  .div-block-5 {
    padding-top: 182px;
  }

  .contact-text {
    font-weight: 600;
  }
}

@media screen and (min-width: 1920px) {
  .div-block.lp {
    width: 50%;
    margin-left: 0;
  }

  .grid-process-section {
    justify-items: stretch;
  }

  .process-content {
    width: auto;
  }

  .slider-2 {
    margin-bottom: 8em;
  }

  .image-8 {
    width: 400px;
  }

  .section-2 {
    width: 60%;
  }

  .contact-info {
    border-radius: 0;
  }

  .contact-text-span, .contact-text-link {
    font-family: Montserrat, sans-serif;
  }
}

@media screen and (max-width: 991px) {
  .nav-menu-wrapper {
    background-color: rgba(0, 0, 0, 0);
  }

  .nav-menu {
    background-color: rgba(255, 255, 255, 0);
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    padding-left: 0;
    display: flex;
  }

  .nav-link {
    padding-left: 20px;
    padding-right: 20px;
    font-size: 1.2em;
  }

  .nav-dropdown-list.shadow-three.w--open {
    position: absolute;
  }

  .nav-button-wrapper {
    width: 100%;
    margin-left: 0;
  }

  .menu-button {
    padding: 12px;
  }

  .menu-button.w--open {
    color: #fff;
    background-color: #a6b1bf;
  }

  .hero-stack._2 {
    min-height: auto;
    padding-left: 0;
    padding-right: 0;
  }

  .container {
    max-width: 728px;
  }

  .logos-without-title {
    flex-direction: column;
    padding-left: 0;
    padding-right: 0;
    display: flex;
  }

  .logos-without-title.home {
    background-image: linear-gradient(to bottom, #292929, rgba(255, 255, 255, 0) 22%), linear-gradient(202deg, rgba(160, 160, 160, .36), rgba(255, 255, 255, 0)), linear-gradient(to bottom, #020202, rgba(114, 95, 79, .41) 6%, rgba(109, 109, 109, 0) 98%, var(--dark)), radial-gradient(circle farthest-corner at 50% 50%, #424242, #aaa);
  }

  .container-2 {
    max-width: 728px;
  }

  .clients-wrapper-three {
    width: 100%;
    padding-top: 40px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .clients-wrapper-three._2 {
    width: 60%;
    border-top-left-radius: 16px;
    border-top-right-radius: 0;
    border-bottom-left-radius: 16px;
    flex-direction: column;
    margin-bottom: -1px;
    padding: 4px 0;
  }

  .clients-image-three {
    margin-bottom: 30px;
  }

  .clients-image-three.small {
    max-height: 70px;
    max-width: 130px;
    margin-bottom: 30px;
    padding-left: 0;
  }

  .clients-image-three.small.big {
    width: auto;
    max-height: 80px;
    max-width: 130px;
    margin-bottom: 30px;
  }

  .clients-image-three.small.top {
    max-width: 250px;
    margin-top: 0;
    margin-bottom: 0;
  }

  .clients-image-three.small.top.home {
    margin-left: 0;
    margin-right: 0;
  }

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

  .container-3 {
    max-width: 728px;
  }

  .hero-wrapper {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: -40px;
  }

  .hero-split {
    max-width: 100%;
    margin-bottom: 40px;
  }

  .h1.l20 {
    font-size: 5em;
  }

  .pricing-card-two {
    align-items: center;
    padding: 0 24px;
  }

  .pricing-image-two {
    margin-right: 20px;
  }

  .container-4 {
    max-width: 728px;
  }

  .footer-content {
    grid-column-gap: 60px;
  }

  .pb {
    font-size: 1.5em;
  }

  .div-block.lp {
    width: 50%;
    margin-bottom: 0;
    padding-top: 0;
  }

  .div-block.lp.nut {
    margin-bottom: -616px;
  }

  .conti._2 {
    align-items: flex-end;
  }

  .heading-3 {
    width: 110px;
    margin-top: 0;
    margin-bottom: 0;
  }

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

  .section-process {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .grid-process-section {
    flex-direction: column;
    grid-template-columns: 1fr;
    align-items: center;
    padding-left: 0;
    display: flex;
  }

  .process-content {
    width: auto;
    max-width: 700px;
    align-items: flex-start;
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 40px;
    padding-right: 40px;
  }

  .process-content.pl {
    align-items: flex-start;
  }

  .process-content.pl.enter {
    align-items: center;
  }

  .h2 {
    margin-top: 20px;
    font-size: 3em;
  }

  .div-block-2 {
    margin-bottom: 20px;
    padding-top: 0;
  }

  .div-block-2._2 {
    padding-top: 69px;
  }

  .image-5 {
    margin-left: 0;
    margin-right: 0;
    position: relative;
  }

  .slider-2 {
    display: flex;
  }

  .downer {
    height: auto;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 20px;
  }

  .heading-6 {
    font-size: 1.5em;
  }

  .inner.arrow {
    margin-bottom: 20px;
  }

  .inner.right {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding-left: 0%;
  }

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

  .paragraph-3.enter {
    text-align: center;
  }

  .socials {
    width: 60%;
    justify-content: center;
    align-items: stretch;
    padding-left: 25%;
    padding-right: 0;
  }

  .image-8 {
    width: auto;
    max-width: 380px;
  }

  .div-block-5 {
    background-image: radial-gradient(circle at -30% 80%, #202020, #000);
    margin-top: -209px;
    padding-top: 230px;
  }

  .form-wrap {
    margin-left: auto;
    margin-right: auto;
  }

  .lol {
    height: auto;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 20px;
  }

  .section-2 {
    align-items: center;
  }

  .container-8 {
    padding-left: 10px;
    padding-right: 10px;
  }

  .contact-info-wrapper {
    width: 100%;
    max-width: 100%;
    grid-row-gap: 16px;
    flex-direction: column;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    margin-top: -25px;
  }

  .contact-info {
    height: auto;
    text-align: center;
    flex-direction: column;
    justify-content: center;
    padding: 24px 0;
  }

  .contact-icon {
    margin-right: 0;
  }

  .contact-text {
    margin-top: 10px;
    display: block;
  }

  .contact-text-span {
    font-family: Montserrat, sans-serif;
  }

  .contact-text-link {
    font-family: Montserrat, sans-serif;
  }
}

@media screen and (max-width: 767px) {
  .navbar-brand {
    padding-left: 0;
  }

  .nav-menu {
    flex-direction: column;
    padding-bottom: 0;
    padding-left: 0;
  }

  .nav-link {
    padding-top: 0;
    padding-bottom: 0;
    display: inline-block;
  }

  .nav-dropdown {
    flex-direction: column;
    align-items: center;
    display: flex;
  }

  .nav-dropdown-toggle {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .nav-dropdown-list.shadow-three {
    box-shadow: 0 8px 50px rgba(0, 0, 0, .05);
  }

  .nav-dropdown-list.shadow-three.w--open {
    position: relative;
  }

  .nav-dropdown-list.shadow-three.mobile-shadow-hide {
    box-shadow: none;
  }

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

  .hero-stack {
    padding: 60px 15px;
  }

  .hero-stack._2 {
    min-height: 800px;
  }

  .logos-without-title {
    padding: 0 15px;
  }

  .logos-without-title.home {
    background-image: linear-gradient(to bottom, #292929, rgba(255, 255, 255, 0) 22%), linear-gradient(202deg, rgba(160, 160, 160, .36), rgba(255, 255, 255, 0)), linear-gradient(to bottom, #020202, rgba(114, 95, 79, .41) 6%, rgba(109, 109, 109, 0) 98%, rgba(109, 109, 108, .01) 99%, var(--dark)), radial-gradient(circle farthest-corner at 50% 50%, #424242, #aaa);
  }

  .clients-wrapper-three {
    height: 500px;
    flex-direction: column;
    justify-content: space-around;
    margin-bottom: 0;
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 0;
  }

  .clients-wrapper-three._2 {
    width: 60%;
    margin-top: 0;
  }

  .clients-wrapper-three.h {
    padding-left: 0;
  }

  .clients-image-three {
    margin-bottom: 30px;
    margin-left: 20px;
    margin-right: 20px;
  }

  .clients-image-three.small {
    max-height: 40px;
    max-width: 150px;
    margin-left: 10px;
  }

  .clients-image-three.small.big {
    max-height: 65px;
    max-width: 280px;
    margin-left: 0;
  }

  .clients-image-three.small.top {
    max-width: 220px;
  }

  .clients-image-three.small.top.home {
    margin-bottom: 20px;
  }

  .gallery-overview, .hero-heading-right, .pricing-items {
    padding: 60px 15px;
  }

  .pricing-card-two {
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    margin-left: -35px;
    padding-left: 0;
  }

  .pricing-image-two {
    max-width: 100%;
    margin-bottom: 30px;
    margin-right: 0;
  }

  .pricing-content {
    padding-left: 30px;
  }

  .footer-dark {
    padding-left: 15px;
    padding-right: 15px;
  }

  .footer-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .footer-content {
    grid-template-columns: 1fr;
    margin-top: 40px;
  }

  .footer-block {
    align-items: center;
  }

  .footer-link:hover {
    color: rgba(26, 27, 31, .75);
  }

  .footer-social-block {
    margin-top: 20px;
    margin-left: -20px;
  }

  .footer-social-link {
    margin-left: 20px;
  }

  .footer-divider {
    margin-top: 60px;
  }

  .div-block {
    margin-left: 0;
  }

  .div-block.lp {
    width: 60%;
    margin-bottom: 0;
    margin-left: -56px;
    padding-top: 0;
  }

  .div-block.lp.nut {
    margin-bottom: -540px;
  }

  .section-process {
    padding-top: 120px;
  }

  .grid-process-section {
    flex-direction: column;
    align-items: center;
  }

  .process-content {
    padding-left: 45px;
    padding-right: 45px;
  }

  .process-content.pl {
    align-items: center;
    padding-left: 0;
  }

  .process-content.pl.enter {
    padding-right: 0;
  }

  .grid-process-stacked {
    grid-template-columns: 1fr;
  }

  .h2 {
    margin-top: 10px;
  }

  .div-block-2 {
    margin-bottom: 10px;
    padding-top: 30px;
  }

  .div-block-2._2 {
    padding-top: 20px;
  }

  .image-5 {
    margin-left: -58px;
  }

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

  .socials {
    width: 100%;
    margin-bottom: 20px;
  }

  .image-7 {
    width: 180px;
  }

  .image-8 {
    max-width: 360px;
  }

  .div-block-5 {
    margin-top: -198px;
    padding-top: 266px;
  }

  .form-wrap {
    padding-left: 25px;
    padding-right: 25px;
  }

  .container-6 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .section-2 {
    flex-direction: column;
  }

  .container-7 {
    padding-left: 20px;
    padding-right: 20px;
  }

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

@media screen and (max-width: 479px) {
  .nav-menu {
    flex-direction: column;
  }

  .nav-link {
    padding: 0 10px;
    font-size: 1.1em;
  }

  .nav-button-wrapper {
    width: auto;
  }

  .image {
    width: 110px;
  }

  .hero-stack._2 {
    height: auto;
    padding-top: 93px;
    padding-bottom: 40px;
    overflow: hidden;
  }

  .container {
    max-width: none;
  }

  .logos-without-title {
    padding-bottom: 30px;
  }

  .logos-without-title.home {
    background-image: linear-gradient(to bottom, #292929, rgba(255, 255, 255, 0) 22%), linear-gradient(202deg, rgba(160, 160, 160, .36), rgba(255, 255, 255, 0)), linear-gradient(to bottom, #020202, rgba(114, 95, 79, .41) 6%, rgba(109, 109, 109, 0) 98%, rgba(109, 109, 108, .01) 99%, var(--dark)), radial-gradient(circle farthest-corner at 50% 50%, #424242, #aaa);
    padding-bottom: 60px;
  }

  .container-2 {
    max-width: none;
  }

  .clients-wrapper-three {
    height: 500px;
    grid-column-gap: 20px;
    grid-row-gap: 30px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-items: center;
    margin-bottom: 0;
    padding-top: 20px;
    padding-left: 0;
    display: flex;
  }

  .clients-wrapper-three._2 {
    width: 60%;
    height: auto;
    border-radius: 16px;
    flex-wrap: nowrap;
    justify-content: space-around;
    margin-bottom: 0;
    margin-left: auto;
    margin-right: auto;
    padding-top: 30px;
    padding-bottom: 30px;
    padding-left: 0;
  }

  .clients-image-three {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .clients-image-three.small {
    max-height: 45px;
    max-width: 140px;
  }

  .clients-image-three.small.big {
    max-height: 70px;
    max-width: 140px;
  }

  .clients-image-three.small.top {
    max-width: 280px;
    margin-left: 0;
    margin-right: 0;
  }

  .clients-image-three.small.top.home {
    margin-bottom: 60px;
  }

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

  .container-3 {
    max-width: none;
  }

  .h1.l20 {
    text-align: center;
    margin-left: 0;
  }

  .pricing-card-two {
    margin-left: 0;
    padding: 0 15px 15px;
  }

  .pricing-content {
    padding-left: 0;
  }

  .pricing-info {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .pricing-details {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: -10px;
  }

  .pricing-block {
    margin-bottom: 10px;
  }

  .footer-dark {
    padding-bottom: 39px;
  }

  .container-4 {
    max-width: none;
  }

  .div-block {
    width: 100%;
    align-items: center;
  }

  .div-block.lp {
    width: 100%;
    margin-bottom: 0;
    margin-left: -22px;
    padding-top: 0;
  }

  .div-block.lp.nut {
    margin-bottom: 0;
  }

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

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

  .h3-heading {
    font-size: 48px;
  }

  .card-process {
    flex-direction: column;
  }

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

  .process-content {
    align-items: flex-start;
    padding-left: 35px;
    padding-right: 35px;
  }

  .process-content.pl.enter {
    padding-right: 0;
  }

  .process-icon {
    margin-bottom: 24px;
    margin-right: 0;
  }

  .h2 {
    font-size: 3em;
  }

  .div-block-2 {
    padding-top: 30px;
  }

  .div-block-2._2 {
    padding-top: 21px;
  }

  .image-5 {
    max-width: 250px;
    min-height: 372px;
    min-width: 250px;
    margin-left: 0;
  }

  .text-f-13, .text-f-13.all-caps.light-grey-font {
    font-size: 1.2em;
  }

  .heading-5 {
    font-size: 3.25em;
  }

  .carousel-arrows {
    margin-top: 2.5em;
  }

  .carousel-arrow-w.arrow-next {
    margin-right: 1em;
  }

  .carousel-arrow-w.arrow-previous {
    margin-left: 1em;
  }

  .downer {
    display: none;
  }

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

  .inner.arrow {
    align-items: center;
  }

  .h3 {
    line-height: 1.1em;
  }

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

  .socials {
    justify-content: center;
    padding-left: 0%;
  }

  .link {
    margin-top: 10px;
  }

  .image-8 {
    width: 100%;
    max-width: 280px;
  }

  .div-block-5 {
    padding-top: 259px;
  }

  .form-wrap {
    padding-left: 15px;
    padding-right: 15px;
  }

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

  .text-field[data-wf-focus-visible] {
    border-color: var(--orange);
  }

  .lol {
    display: block;
    position: relative;
  }

  .section-2 {
    width: 100%;
  }

  .contact-info-wrapper {
    width: 100%;
    align-items: stretch;
  }

  .contact-info {
    flex-direction: column;
    align-items: center;
    padding: 40px 15px;
  }

  .contact-icon {
    margin-bottom: 10px;
    margin-right: 0;
  }
}

#w-node-fe0b57df-b560-6ac1-8294-13d76c45daf3-06b99dc0, #w-node-fe0b57df-b560-6ac1-8294-13d76c45daf4-06b99dc0, #w-node-fe0b57df-b560-6ac1-8294-13d76c45daf5-06b99dc0, #w-node-fe0b57df-b560-6ac1-8294-13d76c45daf6-06b99dc0, #w-node-fe0b57df-b560-6ac1-8294-13d76c45daf7-06b99dc0, #w-node-fe0b57df-b560-6ac1-8294-13d76c45daf8-06b99dc0, #w-node-fe0b57df-b560-6ac1-8294-13d76c45daf9-06b99dc0, #w-node-fe0b57df-b560-6ac1-8294-13d76c45dafa-06b99dc0, #w-node-_1eb836bd-c78b-aa9d-c502-9a738cbb86e8-06b99dc0, #w-node-_1eb836bd-c78b-aa9d-c502-9a738cbb86e9-06b99dc0, #w-node-_1eb836bd-c78b-aa9d-c502-9a738cbb86ea-06b99dc0, #w-node-_1eb836bd-c78b-aa9d-c502-9a738cbb86eb-06b99dc0, #w-node-_1eb836bd-c78b-aa9d-c502-9a738cbb86ec-06b99dc0, #w-node-_1eb836bd-c78b-aa9d-c502-9a738cbb86ed-06b99dc0, #w-node-_1eb836bd-c78b-aa9d-c502-9a738cbb86ee-06b99dc0, #w-node-_1eb836bd-c78b-aa9d-c502-9a738cbb86ef-06b99dc0, #w-node-ee794775-351e-ef90-c9d3-5970f313e81f-f313e819 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}


