:root {
  --white: white;
  --_size---container: 1280px;
  --black: #111;
  --light: #fafafa;
  --primary: #f75f00;
  --hover: #e75900;
  --grey: #202124;
  --_size---container-small: 1024px;
}

.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: #333;
  margin-bottom: 10px;
  font-family: Red Hat Display, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}

h1 {
  color: var(--white);
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 60px;
  font-weight: 700;
  line-height: 1.1;
}

h2 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.1;
}

a {
  transition: opacity .2s;
}

a:hover {
  opacity: .6;
}

.nav-container {
  max-width: var(--_size---container);
  grid-template-rows: auto;
  grid-template-columns: 1fr 2fr;
  grid-auto-columns: 1fr;
  align-items: center;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
  display: grid;
}

.navbar {
  background-color: var(--black);
  border-bottom: 1px solid #ffffff26;
  padding-top: .7rem;
  padding-bottom: .7rem;
  position: fixed;
  inset: 0% 0% auto;
}

.nav-logo {
  height: 34px;
}

.hero-section {
  justify-content: flex-start;
  align-items: center;
  height: 115vh;
  display: flex;
  position: relative;
}

.container {
  max-width: var(--_size---container);
  width: 100%;
  padding-left: 24px;
  padding-right: 24px;
}

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

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

.gradient {
  background-image: linear-gradient(180deg, transparent, var(--black));
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.gradient.white {
  background-image: linear-gradient(180deg, transparent 50%, var(--white));
}

.gradient.white.z-2 {
  z-index: 2;
}

.section {
  padding-top: 7rem;
  padding-bottom: 7rem;
}

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

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

.section.no-padding-bottom {
  padding-bottom: 0;
}

.hero-content {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  max-width: 700px;
  display: flex;
}

.underline {
  border-bottom: 6px solid var(--primary);
}

.underline.small {
  border-bottom-width: 2px;
}

.hero-subtitle {
  color: var(--light);
  margin-top: 1rem;
  margin-bottom: 2rem;
  font-size: 1.2rem;
}

.button {
  background-color: var(--primary);
  border-radius: 4px;
  padding: .7rem 2rem;
  transition: all .3s;
}

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

.nav-link {
  color: var(--white);
  padding: 1rem;
  font-size: .9rem;
  transition: all .2s, opacity .2s;
}

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

.footer {
  background-color: var(--black);
  padding-top: 6rem;
  padding-bottom: 4rem;
}

.title-wrapper {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-bottom: 4rem;
  display: grid;
}

.title-wrapper.flex-center {
  text-align: center;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

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

.title-left {
  width: 100%;
  max-width: 500px;
}

.subtitle {
  margin-bottom: 0;
}

.title-right {
  justify-content: flex-end;
  align-items: flex-end;
  display: flex;
}

.gallery {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.gallery.hidden {
  position: relative;
}

.lightbox-link {
  width: 100%;
  padding-top: 100%;
  position: relative;
}

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

.services {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

.service-item {
  background-color: #fff;
  border: 1px #fff;
  transition: all .15s ease-in;
  box-shadow: 0 15px 50px #00000005;
}

.service-item:hover {
  border-style: none;
  border-color: #d1d1d1;
  box-shadow: 0 20px 50px #0000001a;
}

.service-image-wrapper {
  aspect-ratio: 3 / 2;
  object-fit: fill;
  width: 100%;
  margin-bottom: 0;
  position: relative;
  overflow: hidden;
}

.service-content {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  background-color: #fff;
  flex-direction: column;
  align-items: flex-start;
  padding: 2rem 2rem 3rem;
  display: flex;
}

.overlay {
  background-color: var(--black);
  opacity: .35;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.overlay.z-1 {
  z-index: 1;
}

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

.hero-slider {
  z-index: -1;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.left-arrow, .icon, .right-arrow, .slide-nav {
  display: none;
}

.live-chat-close-icon---brix {
  z-index: -1;
  position: absolute;
}

.live-chat-bubble-subtext {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 22px;
}

.live-chat-bubble-subtext.whatsapp {
  color: #7f8d8a;
}

.live-chat-button {
  color: #fff;
  transform-style: preserve-3d;
  background-color: #4a3aff;
  border-radius: 60px;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-top: 16px;
  padding-bottom: 16px;
  font-size: 14px;
  font-weight: 700;
  line-height: 16px;
  text-decoration: none;
  transition: all .3s;
  display: flex;
  box-shadow: 0 6px 18px #0e0d6a24;
}

.live-chat-button:hover {
  background-color: #170f49;
  transform: scale3d(.94, .94, 1.01);
}

.live-chat-button.whatsapp {
  background-color: #25d366;
  box-shadow: 0 6px 18px #112d2d24;
}

.live-chat-message {
  background-color: #fff;
  border: 1px solid #eff0f6;
  border-radius: 36px 36px 36px 3px;
  margin-bottom: 14px;
  padding: 38px 38px 34px;
  box-shadow: 0 4px 16px #170f4912;
}

.live-chat-message.whatsapp {
  box-shadow: 0 4px 16px #14282b14;
}

.live-chat-bubble-title {
  color: #170f49;
  margin-bottom: 8px;
  font-size: 15px;
  font-weight: 700;
  line-height: 18px;
}

.live-chat-bubble-title.whatsapp {
  color: #142b26;
}

.live-chat-wrapper {
  z-index: 2;
  flex-direction: column;
  align-items: flex-end;
  max-width: 380px;
  display: flex;
  position: fixed;
  bottom: 48px;
  right: 32px;
}

.live-chat-wrapper.preview-page {
  position: fixed;
}

.live-chat-bubbble---brix {
  z-index: 1;
  cursor: pointer;
  transform-style: preserve-3d;
  background-color: #4a3aff;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  margin-top: 14px;
  transition: transform .3s;
  display: flex;
  box-shadow: 0 4px 8px #4a3aff14;
}

.live-chat-bubbble---brix:hover {
  transform: scale3d(.92, .92, 1.01);
}

.live-chat-bubbble---brix.whatsapp {
  background-color: #075e54;
  box-shadow: 0 4px 8px #ffffff1a;
}

.live-chat-avatar {
  border-radius: 50%;
  width: 60px;
  height: 60px;
}

.live-chat-content {
  align-items: flex-end;
  display: flex;
}

.live-chat-avatar-wrapper {
  border-radius: 50%;
  width: 60px;
  height: 60px;
  overflow: hidden;
  box-shadow: 0 4px 14px #170f491a;
}

.live-chat-content-left {
  margin-right: 18px;
}

.div-block-4 {
  z-index: 3;
  grid-column-gap: .7rem;
  grid-row-gap: .7rem;
  cursor: pointer;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: absolute;
  inset: 0%;
}

.text-block {
  color: var(--white);
  font-size: 1.2rem;
}

.about-contact-wrapper {
  grid-column-gap: 2.7rem;
  grid-row-gap: 1rem;
  flex-flow: wrap;
  align-items: center;
  margin-top: 4rem;
  display: flex;
}

.about-contact-item {
  grid-column-gap: .3rem;
  grid-row-gap: .3rem;
  color: var(--primary);
  grid-template-rows: auto;
  grid-template-columns: 24px 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  font-size: .9rem;
  text-decoration: none;
  display: grid;
}

.code-embed {
  width: 16px;
  height: 16px;
}

.footer-bottom {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 10rem;
  display: grid;
}

.footer-legal-text {
  color: var(--light);
  font-size: .9rem;
}

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

.div-block-5 {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  max-width: 400px;
  display: flex;
}

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

.footer-title {
  color: var(--white);
  font-weight: 500;
}

.link-2 {
  color: var(--light);
  text-decoration: none;
}

.footer-links-item {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

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

.image {
  height: 50px;
}

.div-block-6 {
  grid-column-gap: .7rem;
  grid-row-gap: .7rem;
  color: var(--white);
  align-items: center;
  margin-bottom: 2rem;
  font-size: .9rem;
  display: flex;
}

.code-embed-2 {
  height: 16px;
}

.badge {
  height: 100px;
  margin-top: 2rem;
}

.gallery-embed {
  color: var(--white);
  width: 16px;
  height: 18px;
}

.line-rounded-icon.link-icon-left {
  margin-right: 6px;
  display: inline-block;
}

.line-rounded-icon.success-message-check {
  margin-bottom: 6px;
  font-size: 22px;
}

.line-rounded-icon.success-message-check.large {
  margin-bottom: 16px;
  font-size: 80px;
  line-height: 88px;
}

.color-neutral-300 {
  color: #eff0f6;
}

.success-message {
  color: #4a3aff;
  background-color: #f3f2ff;
  border-radius: 24px;
  padding: 28px 28px 32px;
}

.text-area {
  color: var(--black);
  background-color: #fff;
  border: 1px solid #f0f0f0;
  min-height: 144px;
  padding: 16px 24px;
  font-size: 18px;
  line-height: 28px;
  transition: box-shadow .3s, color .3s, border-color .3s;
}

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

.text-area::placeholder {
  color: #33333380;
  font-size: 18px;
}

.icon-pagraph-wrapper {
  display: flex;
}

.link-wrapper {
  color: #211f54;
  transition: none;
  display: inline-block;
}

.link-wrapper:hover {
  color: #4a3aff;
}

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

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

.grid-2-columns {
  grid-column-gap: 28px;
  grid-row-gap: 28px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: grid;
}

.grid-2-columns.contact-v7 {
  grid-column-gap: 60px;
  grid-template-columns: 1fr 1fr;
  align-items: start;
}

.card {
  background-color: #fff;
  border: 1px solid #f0f0f0;
  box-shadow: 0 2px 7px #28282b0f;
}

.card.form {
  min-height: 620px;
  margin-bottom: 0;
  padding: 4rem 2rem;
}

.error-message {
  color: #ff5a65;
  text-align: center;
  background-color: #ffeff0;
  border-radius: 16px;
  margin-top: 20px;
  padding: 20px 24px;
}

.btn-primary {
  color: #fff;
  text-align: center;
  transform-style: preserve-3d;
  background-color: #4a3aff;
  border-radius: 48px;
  justify-content: center;
  padding: 26px 38px;
  font-weight: 700;
  line-height: 20px;
  text-decoration: none;
  transition: background-color .3s, transform .3s, color .3s;
}

.btn-primary:hover {
  color: #fff;
  background-color: #3324d5;
  transform: translate3d(0, -3px, .01px);
}

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

.input {
  color: var(--black);
  background-color: #fff;
  border: 1px solid #f0f0f0;
  min-height: 64px;
  margin-bottom: 0;
  padding: 16px 24px;
  font-size: 18px;
  line-height: 20px;
}

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

.input::placeholder {
  color: #33333380;
  font-size: 18px;
}

.subtitle-2 {
  color: #4a3aff;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 8px;
  font-weight: 700;
  line-height: 20px;
}

.link-text {
  transition: color .3s;
  display: inline-block;
}

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

.div-block-7 {
  margin-bottom: 2rem;
}

.brand {
  padding-left: 0;
}

@media screen and (min-width: 1440px) {
  .grid-2-columns.contact-v7 {
    grid-column-gap: 80px;
    grid-template-columns: 1fr 1.15fr;
  }

  .grid-2-columns.form {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
  }
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 54px;
  }

  h2 {
    font-size: 38px;
  }

  .hero-section {
    padding-top: 0;
  }

  .section {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

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

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

  .service-item {
    margin-bottom: 0;
  }

  .grid-2-columns.contact-v7 {
    grid-row-gap: 48px;
    grid-template-columns: 1fr;
  }

  .card.form {
    padding: 54px 32px;
  }

  .btn-primary {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .nav-menu {
    background-color: var(--grey);
    text-align: center;
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    padding-bottom: 1rem;
    display: flex;
  }

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

  .menu-button.w--open {
    background-color: var(--primary);
    border-radius: 6px;
  }

  .icon-2 {
    color: #fff;
  }
}

@media screen and (max-width: 767px) {
  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 36px;
    line-height: 1.2;
  }

  .section {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

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

  .services {
    flex-direction: column;
    display: flex;
  }

  .live-chat-wrapper {
    bottom: 24px;
    right: 24px;
  }

  .line-rounded-icon.success-message-check.large {
    font-size: 68px;
    line-height: 73px;
  }

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

  .grid-2-columns.form {
    grid-row-gap: 20px;
  }

  .card.form {
    padding: 56px 32px;
  }

  .btn-primary {
    padding: 20px 32px;
  }

  .input {
    min-height: 60px;
    padding-top: 16px;
    padding-bottom: 16px;
  }

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

@media screen and (max-width: 479px) {
  h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 32px;
    line-height: 1.3;
  }

  .hero-section {
    height: 100vh;
  }

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

  .hero-subtitle {
    font-size: 1.1rem;
  }

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

  .title-right {
    justify-content: flex-start;
    align-items: flex-end;
  }

  .service-content {
    padding: 1.5rem;
  }

  .live-chat-button {
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .live-chat-message {
    border-top-left-radius: 28px;
    border-top-right-radius: 28px;
    border-bottom-right-radius: 28px;
    padding: 34px 24px 30px;
  }

  .live-chat-wrapper {
    max-width: 100%;
    left: 24px;
  }

  .live-chat-bubbble---brix {
    width: 56px;
    height: 56px;
  }

  .live-chat-avatar-wrapper {
    display: none;
  }

  .live-chat-content-left {
    margin-right: 0;
  }

  .footer-bottom {
    text-align: center;
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .footer-grid {
    grid-column-gap: 4rem;
    grid-row-gap: 4rem;
    grid-template-columns: 1fr;
  }

  .line-rounded-icon.success-message-check.large {
    font-size: 58px;
    line-height: 64px;
  }

  .text-area {
    border-radius: 0;
  }

  .card.form {
    padding-left: 23px;
    padding-right: 23px;
  }

  .btn-primary {
    width: 100%;
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .input {
    border-radius: 0;
    font-size: 16px;
    line-height: 18px;
  }

  .input::placeholder {
    font-size: 16px;
    line-height: 16px;
  }

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

  .menu-button.w--open {
    padding: 10px;
  }
}

#w-node-_68313260-51dc-093f-2a65-da2892d00f5d-6e84e070 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_68313260-51dc-093f-2a65-da2892d00f5e-6e84e070 {
  justify-self: end;
}

#w-node-c248454a-84ed-9c67-06d3-9e7ed518e487-6e84e070 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-c248454a-84ed-9c67-06d3-9e7ed518e48b-6e84e070 {
  justify-self: start;
}

#w-node-e1969513-d191-882e-3998-cb09ab63f46f-6e84e070 {
  justify-self: end;
}

@media screen and (max-width: 991px) {
  #w-node-_66bb7a4d-3db5-366a-5e2b-0ec94b9323ab-6e84e070 {
    justify-self: end;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_68313260-51dc-093f-2a65-da2892d00f5d-6e84e070 {
    grid-area: 1 / 1 / 2 / 3;
  }

  #w-node-_66bb7a4d-3db5-366a-5e2b-0ec94b9323ab-6e84e070 {
    grid-area: 1 / 2 / 2 / 3;
  }

  #w-node-c248454a-84ed-9c67-06d3-9e7ed518e487-6e84e070 {
    grid-column: span 1 / span 1;
  }

  #w-node-_61653fb6-f483-103c-7fac-cb8de09c07ad-6e84e070, #w-node-e1969513-d191-882e-3998-cb09ab63f46f-6e84e070 {
    justify-self: center;
  }
}


