:root {
  --fixed-colours--dead-white: white;
  --fixed-colours--dark: #0d1216;
  --fixed-colours--grey: #dedede;
  --fixed-colours--dark-orange: #ff8477;
  --fixed-colours--white: #e0e0e0;
  --fixed-colours--highlight: #ff4000;
  --color--text-light: #e0e0e0;
  --fixed-colours--light-orange: #fedfd0;
  --fixed-colours--light-blue: #e4f5ff;
  --color--background: #e0e0e0;
  --color--text: #0d1216;
  --color--toggle-offset: -7px;
  --dark--text-light: #e0e0e0;
  --dark--background: #0d1216;
  --dark--text: #e0e0e0;
  --dark--toggle-offset: 30px;
}

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

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

h1 {
  margin-top: 0;
  margin-bottom: 2vw;
  font-family: Merriweather, serif;
  font-size: 5rem;
  line-height: 1;
}

h2 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: Merriweather, serif;
  font-size: 1.75rem;
  font-weight: 700;
}

h3 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: bold;
  line-height: 30px;
}

p {
  margin-bottom: 0;
  font-size: 1rem;
}

.hero {
  background-image: url('../images/ai-eye-2.jpeg');
  background-position: 50% 70%;
  background-repeat: no-repeat;
  background-size: cover;
  flex-flow: column;
  justify-content: flex-end;
  align-items: center;
  height: 100vh;
  padding-bottom: 4vw;
  padding-left: 2vw;
  padding-right: 2vw;
  display: flex;
  position: relative;
}

.hero-text-wrap {
  width: 70%;
  margin-bottom: 6vw;
  position: absolute;
  inset: 25vh 0% auto 15%;
}

.heading {
  font-size: 5rem;
}

.white {
  color: #fff;
}

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

.hero-button-wrap {
  flex-flow: wrap;
  justify-content: space-around;
  align-items: center;
  margin-top: 2vw;
  display: flex;
}

.button {
  text-align: center;
  background-color: #ff4000;
  border-radius: 6px;
  transition: background-color .45s, color .45s;
}

.button:hover {
  color: #333;
  background-color: #00ff85;
}

.button.lrge {
  text-align: center;
  width: 40%;
  font-size: 1.5rem;
}

.code-wrap {
  background-color: #fff6ef;
  width: 90%;
  margin-left: 5vw;
  margin-right: 5vw;
}

.hero-code {
  width: 100%;
  margin-top: 0;
  margin-bottom: 4vw;
}

.google-reviews-wrap {
  z-index: 1;
  background-color: var(--fixed-colours--dead-white);
  padding: 2vw;
  position: relative;
}

.review-wrapper {
  overflow: hidden;
}

._30-second-quote-modal {
  z-index: 50;
  background-color: var(--fixed-colours--dark);
  justify-content: center;
  align-items: center;
  display: none;
  position: fixed;
  inset: 0%;
  overflow: auto;
}

._30-second-close {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  display: flex;
  position: absolute;
  inset: 2% 2% auto auto;
}

.close-text {
  color: #ddd;
  margin-bottom: 0;
  font-family: Varela Round, sans-serif;
  font-size: 3rem;
  line-height: 1;
  text-decoration: none;
}

.close-subtext {
  color: #ddd;
  text-decoration: none;
}

._30-second-text-box {
  background-color: #0000;
  flex-flow: column;
  justify-content: center;
  align-items: stretch;
  width: 60%;
  display: flex;
}

.white-2 {
  color: #fff;
}

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

.vs1 {
  border: 1px #000;
  width: 100%;
  height: 1vw;
}

.grey {
  color: var(--fixed-colours--grey);
  text-decoration: underline;
}

.toggle-font {
  z-index: 20;
  background-color: #000;
  border-radius: 7px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding: 1px 5px 5px;
  font-size: .9rem;
  display: flex;
  position: static;
  inset: auto auto 1.25% 1%;
}

.resize-wrap {
  z-index: 20;
  background-color: #000;
  justify-content: center;
  align-items: stretch;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
  position: static;
  inset: 0% 0% auto;
}

.bottom-wrap {
  z-index: 10;
  background-color: var(--fixed-colours--grey);
  justify-content: space-between;
  align-items: center;
  padding-left: 1vw;
  padding-right: 1vw;
  display: flex;
  position: fixed;
  inset: auto 0% 0%;
}

.toggle-wrapper {
  z-index: 10;
  background-color: #fff0;
  border-radius: 7px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 4px;
  font-size: .8rem;
  display: flex;
  position: static;
  inset: auto 1% .5% auto;
}

.toggle-wrap {
  background-color: #fff6ef;
  border: 1px solid #1d1f25;
  border-radius: 17px;
  justify-content: flex-start;
  align-items: center;
  width: 75px;
  height: 32px;
  padding: 3px;
  display: flex;
  position: relative;
}

.font-size-plus, .font-size-minus {
  color: #000;
  font-family: Oswald, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  text-decoration: none;
}

.font-text {
  color: #fff;
  text-align: center;
}

.link {
  color: #1d1f25;
}

.link:hover {
  color: #71259c;
}

.text-block {
  color: #1d1f25;
}

.bottom-content-wrap {
  justify-content: space-around;
  align-items: center;
  width: 50%;
  display: flex;
}

.bottom-contact {
  margin-bottom: 0;
}

.toggle-switch {
  background-color: #1d1f25;
  border: 1px #d4dfe2;
  border-radius: 20px;
  width: 35px;
  height: 35px;
  margin-left: 5px;
  position: relative;
  inset: auto auto auto -7px;
}

.separator {
  background-color: #000;
  width: 1px;
  margin-left: 10px;
  margin-right: 10px;
}

.text-resize-font {
  color: #fff;
  font-size: 1.5rem;
}

.hero-link {
  color: var(--fixed-colours--dark-orange);
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 1vw;
  display: block;
}

.hero-link:hover {
  color: var(--fixed-colours--dark-orange);
}

.hero-friction {
  width: 100%;
  color: var(--fixed-colours--white);
  text-align: center;
  padding-top: 5px;
  font-size: 1rem;
}

.button-wrap-hero {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.header {
  z-index: 25;
  justify-content: space-between;
  align-items: center;
  padding: 1vw 2vw;
  display: flex;
  position: fixed;
  inset: 0% 0% auto;
}

.brand {
  border: 1px solid var(--fixed-colours--white);
  text-decoration: none;
}

.brand-text {
  border: 2px none var(--fixed-colours--white);
  color: var(--fixed-colours--white);
  margin-bottom: 0;
  padding: 6px;
  font-family: Trebuchet MS, Lucida Grande, Lucida Sans Unicode, Lucida Sans, Tahoma, sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  text-decoration: none;
}

.grey-bg {
  background-color: var(--fixed-colours--grey);
  color: var(--fixed-colours--dark);
  padding: 1px 2px;
  display: inline;
}

.contact-wrap-hero {
  background-color: #0000004a;
  justify-content: center;
  align-items: center;
  display: flex;
}

.hero-contact-tem {
  color: var(--fixed-colours--white);
  justify-content: flex-start;
  align-items: center;
  margin-left: 2vw;
  padding-left: .5vw;
  padding-right: .5vw;
  text-decoration: none;
  transition: color .45s;
  display: flex;
}

.hero-contact-tem:hover {
  color: var(--fixed-colours--highlight);
}

.hero-contact-icon {
  margin-right: .6vw;
}

.hero-contact-text {
  color: var(--fixed-colours--white);
  margin-bottom: 0;
}

.spacer {
  height: 500px;
}

.bento-grid {
  grid-column-gap: 4vw;
  grid-row-gap: 4vw;
  grid-template-rows: auto auto auto auto auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  padding: 2vw;
  transform: rotate(-4deg);
}

.grid-wrap {
  background-color: var(--fixed-colours--dead-white);
  box-shadow: 4px 4px 20px -4px var(--fixed-colours--dark);
  border-radius: 16px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 2vw;
  display: flex;
  position: relative;
}

.grid-wrap.iphone {
  background-image: url('../images/william-hook-9e9PD9blAto-unsplash.jpg');
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: cover;
}

.grid-wrap.ipne-bg {
  background-image: url('../images/milad-fakurian-PGdW_bHDbpI-unsplash.jpg');
  background-position: 0 0;
  background-size: cover;
  justify-content: center;
  align-items: flex-start;
  padding-top: 3vw;
  display: flex;
}

.grid-wrap.google {
  background-image: url('../images/ahmed-shabana-Ltdq4myjrGs-unsplash.jpg');
  background-position: 30% 60%;
  background-repeat: no-repeat;
  background-size: auto;
}

.grid-wrap.abstract {
  background-image: url('../images/philip-oroni-EaFX0kRvXT8-unsplash.jpg');
  background-position: 50% 70%;
  background-repeat: no-repeat;
  background-size: cover;
}

.grid-wrap.leads {
  background-image: url('../images/pawel-czerwinski-f1s4onNqPHY-unsplash.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding-left: 22px;
  display: flex;
}

.grid-wrap.logo {
  background-color: var(--fixed-colours--dead-white);
  justify-content: center;
  align-items: center;
  display: flex;
}

.grid-wrap.dashboard {
  background-image: url('../images/del-dashboard.jpg');
  background-position: 0 0;
  background-size: cover;
  justify-content: center;
  align-items: flex-start;
  padding-top: 2vw;
  display: flex;
}

.grid-wrap.hosting {
  background-image: url('../images/6447e48e9eb5f113d84bf0b7_61f94093e174c97e0948f6c2_6193de453a167266a66b5f59_Your-files.jpeg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  justify-content: flex-end;
  align-items: flex-start;
  padding-top: 2vw;
  padding-right: 1vw;
  display: flex;
}

.grid-wrap.gwt {
  background-image: url('../images/6447e48d89e803a2e8241233_61f940910b91d2815dc2946e_6193d8579e26ca4c053025e9_search-console.jpeg');
  background-position: 0 0;
  background-size: auto;
  padding-top: 6vw;
  padding-left: 2vw;
}

.grid-wrap.small {
  padding: 1vw;
}

.grid-wrap.red-bg {
  background-color: var(--fixed-colours--dark-orange);
}

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

.dark-text {
  color: var(--fixed-colours--dark);
}

.brand-dark {
  border: 1px solid var(--fixed-colours--dark);
  text-decoration: none;
}

.brand-text-dark {
  border: 2px none var(--fixed-colours--white);
  color: var(--fixed-colours--white);
  margin-bottom: 0;
  padding: 6px;
  font-family: Trebuchet MS, Lucida Grande, Lucida Sans Unicode, Lucida Sans, Tahoma, sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  text-decoration: none;
}

.dark-logo {
  background-color: var(--fixed-colours--dark);
  padding-left: 7px;
  padding-right: 7px;
}

.brand-text-dark-design {
  border: 2px none var(--fixed-colours--white);
  color: var(--fixed-colours--white);
  margin-bottom: 0;
  padding: 6px;
  font-family: Trebuchet MS, Lucida Grande, Lucida Sans Unicode, Lucida Sans, Tahoma, sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  text-decoration: none;
}

.sureywebsite-text {
  background-color: var(--fixed-colours--dark);
  color: var(--fixed-colours--dead-white);
  padding-left: 2px;
}

.design-logo, .dark {
  color: var(--fixed-colours--dark);
}

.grid-wrap-auto-height {
  background-color: var(--fixed-colours--dead-white);
  border-radius: 16px;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  padding: 2vw;
  display: flex;
  box-shadow: 4px 5px 13px #0003;
}

.grid-wrap-auto-height.iphone {
  background-image: url('../images/william-hook-9e9PD9blAto-unsplash.jpg');
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: cover;
}

.grid-wrap-auto-height.ipne-bg {
  background-image: url('../images/milad-fakurian-PGdW_bHDbpI-unsplash.jpg');
  background-position: 0 0;
  background-size: cover;
  justify-content: center;
  align-items: flex-start;
  padding-top: 3vw;
  display: flex;
}

.grid-wrap-auto-height.google {
  background-image: url('../images/ahmed-shabana-Ltdq4myjrGs-unsplash.jpg');
  background-position: 30% 60%;
  background-repeat: no-repeat;
  background-size: auto;
}

.grid-wrap-auto-height.abstract {
  background-image: url('../images/philip-oroni-EaFX0kRvXT8-unsplash.jpg');
  background-position: 50% 70%;
  background-repeat: no-repeat;
  background-size: cover;
}

.grid-wrap-auto-height.leads {
  background-image: url('../images/pawel-czerwinski-f1s4onNqPHY-unsplash.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding-left: 22px;
  display: flex;
}

.grid-wrap-auto-height.logo {
  background-color: var(--fixed-colours--dead-white);
  justify-content: center;
  align-items: center;
  display: flex;
}

.grid-wrap-auto-height.dashboard {
  background-image: url('../images/del-dashboard.jpg');
  background-position: 0 0;
  background-size: cover;
  justify-content: center;
  align-items: flex-start;
  padding-top: 2vw;
  display: flex;
}

.grid-wrap-auto-height.hosting {
  background-image: url('../images/6447e48e9eb5f113d84bf0b7_61f94093e174c97e0948f6c2_6193de453a167266a66b5f59_Your-files.jpeg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  justify-content: flex-end;
  align-items: flex-start;
  padding-top: 2vw;
  padding-right: 1vw;
  display: flex;
}

.grid-wrap-auto-height.gwt {
  background-image: url('../images/6447e48d89e803a2e8241233_61f940910b91d2815dc2946e_6193d8579e26ca4c053025e9_search-console.jpeg');
  background-position: 0 0;
  background-size: auto;
  padding-top: 6vw;
  padding-left: 2vw;
}

.sticker {
  width: 50%;
  margin-bottom: 1vw;
}

.sticker.orange {
  background-color: var(--fixed-colours--light-orange);
  border-radius: 16px;
}

.sticker.blue {
  background-color: var(--fixed-colours--light-blue);
}

.sticker.blue.small {
  margin-bottom: 0;
}

.h2-bottom-marging {
  color: var(--fixed-colours--dark);
  font-size: 1.75rem;
  font-weight: 400;
  line-height: 1.2;
}

.h2-bottom-marging.small {
  margin-bottom: 0;
}

.h2-bottom-marging.white {
  color: var(--fixed-colours--dead-white);
}

.link-orange {
  color: var(--fixed-colours--highlight);
}

.sticker-text {
  margin-bottom: 0;
  font-family: Montserrat, sans-serif;
}

.sticker-top-text {
  text-transform: uppercase;
  font-size: .75rem;
  font-weight: 500;
  position: static;
  inset: 3% 0% auto 1%;
}

.bento-wrap {
  background-color: var(--fixed-colours--dark);
  padding-top: 0;
  padding-bottom: 8vw;
  display: none;
  overflow: hidden;
}

.paragraph {
  margin-bottom: 0;
}

.code-embed-2 {
  width: 100%;
  margin-top: 2vw;
  margin-bottom: 0;
  position: static;
  inset: auto 0% 0%;
}

.bento-button-wrap {
  justify-content: center;
  align-items: center;
  margin-top: 10vh;
  display: flex;
  transform: rotate(-4deg);
}

.free-analysis-modal {
  z-index: 50;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  background-color: #0a0a0ab5;
  justify-content: center;
  align-items: center;
  display: none;
  position: fixed;
  inset: 0%;
  overflow: auto;
}

.free-analysis-modal-close {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  display: flex;
  position: absolute;
  inset: 2% 2% auto auto;
}

.free-analysis-text-box {
  background-color: #0000;
  flex-flow: column;
  justify-content: center;
  align-items: stretch;
  width: 60%;
  display: flex;
}

.standard-wrap {
  padding: 2vw;
}

.standard-wrap.bg {
  background-color: #e9e9e9;
}

.standard-wrap.proposition {
  justify-content: center;
  align-items: center;
  display: flex;
}

.portfolio-grid {
  grid-column-gap: 2vw;
  grid-row-gap: 2vw;
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  transform: rotate(-4deg);
}

.portfolio-link-block {
  background-color: var(--fixed-colours--dead-white);
  border: 2px #ddd;
  border-radius: 13px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
}

.overlay-portfolio-desktop {
  z-index: 1;
  background-color: #318493;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-left: 2vw;
  padding-right: 2vw;
  display: flex;
  position: absolute;
  inset: 0%;
}

.portfolio-thumbnail {
  border: 1px solid #ddd;
  width: 100%;
}

.portfolio-text-wrap {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 1vw;
  display: flex;
}

.small {
  font-size: .8rem;
  line-height: 1.4;
}

.h2-portfolio-title {
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1.4;
}

.proposition-text-wrap {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 60%;
  display: flex;
}

.centre {
  text-align: center;
}

.vs2 {
  height: 2vw;
}

.code-embed-3 {
  display: none;
}

.faq_question-number {
  color: #1d1f25;
  justify-content: flex-start;
  align-items: center;
  width: 2rem;
  margin-right: 3rem;
  display: flex;
}

.faq_item {
  background-color: var(--fixed-colours--dead-white);
  cursor: pointer;
  border-bottom: 2px solid #ececf1;
  padding: 1rem 0;
}

.faq_question {
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.faq-plus {
  margin-bottom: 0;
  font-family: Varela Round, sans-serif;
  font-size: 3rem;
  font-weight: 400;
  line-height: 20px;
  position: relative;
  top: 9px;
}

.faq_component {
  grid-column-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: .5fr 1fr;
  grid-auto-flow: row;
}

.faq_questions-column {
  background-color: #fff6ef;
  margin-top: 0;
}

.faq_text-number {
  color: #1d1f25;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Merriweather, serif;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.4;
}

.text-style-link {
  color: #1d1f25;
  font-weight: 500;
  text-decoration: none;
}

.text-style-link.w--current {
  text-decoration: none;
}

.faq_icon {
  text-align: center;
  background-color: #fff6ef;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 1.5rem;
  height: 1.5rem;
  margin-left: 2rem;
  display: flex;
  position: relative;
  top: -2px;
}

.faq_answer {
  max-width: 50rem;
  overflow: hidden;
}

.standard-wrapper-faq {
  background-color: var(--fixed-colours--dead-white);
  flex-direction: column;
  padding-left: 3vw;
  padding-right: 3vw;
  display: flex;
}

.faq_answer-wrapper {
  margin-left: 5rem;
  overflow: hidden;
}

.faq_text-column {
  color: #1d1f25;
  flex-direction: column;
  height: auto;
  display: flex;
}

.faq_question-wrapper {
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: .5vw;
  display: flex;
}

.vs3 {
  width: 548%;
  height: 12vh;
}

.footer {
  background-color: var(--fixed-colours--dark);
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.footer_embed {
  color: #fff;
  background-color: #0000;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
  font-family: Montserrat, sans-serif;
  display: flex;
}

.thank-you-wrapper {
  background-color: var(--fixed-colours--dark);
  flex-flow: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  display: flex;
}

.thank-you-text-wrap {
  width: 65%;
}

.code-embed {
  background-color: #ededed00;
}

@media screen and (min-width: 1920px) {
  .hero-code {
    margin-top: 2vw;
  }

  .hero-contact-tem {
    font-size: 1.5rem;
  }

  .code-embed-2 {
    margin-top: 2vw;
  }

  .footer_embed {
    font-size: 1.25rem;
  }
}

@media screen and (max-width: 991px) {
  h3 {
    font-family: Merriweather, serif;
  }

  .hero-text-wrap {
    width: 90%;
    position: static;
  }

  .button._50 {
    width: 50%;
  }

  .bottom-content-wrap {
    justify-content: space-around;
    align-items: center;
    width: 50%;
    display: flex;
  }

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

  .portfolio-link-block.w--current {
    padding-top: 1vw;
    padding-bottom: 1vw;
  }

  .overlay-portfolio-desktop {
    background-color: #000000b3;
    font-size: 1rem;
    display: none;
  }

  .proposition-text-wrap {
    width: 90%;
  }

  .vs3 {
    width: 100%;
    height: 6vh;
  }
}

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

  .hero {
    justify-content: center;
    align-items: center;
  }

  .toggle-font {
    order: -9999;
  }

  .bottom-wrap {
    flex-flow: wrap;
    justify-content: space-around;
    padding-top: 2vw;
  }

  .bottom-content-wrap {
    flex-flow: column;
    order: -9999;
    justify-content: space-between;
    align-items: center;
    width: 40%;
    display: flex;
  }

  .portfolio-link-block {
    height: auto;
    margin-bottom: 2vw;
  }

  .faq_question-number {
    margin-right: 1rem;
  }

  .faq_component {
    grid-template-columns: 18fr;
  }

  .faq_answer-wrapper {
    margin-left: 0;
  }
}

@media screen and (max-width: 479px) {
  h1 {
    font-size: 2rem;
    line-height: 1.3;
  }

  .hero {
    height: 125vh;
  }

  .hero-button-wrap {
    flex-flow: column;
    justify-content: space-between;
    align-items: stretch;
  }

  .button {
    width: 100%;
    margin-top: 2vw;
  }

  .button._50 {
    width: 90%;
  }

  .toggle-font {
    order: 9999;
  }

  .font-text {
    text-align: center;
    font-size: .75rem;
  }

  .bottom-content-wrap {
    flex-flow: column;
    order: 0;
    width: 100%;
  }

  .header {
    flex-flow: wrap;
    padding-left: .5vw;
    padding-right: .5vw;
  }

  .brand {
    align-self: center;
    width: 100%;
  }

  .brand-text {
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .hero-contact-tem {
    flex-flow: row;
  }

  .standard-wrap.proposition {
    padding-left: 1vw;
    padding-right: 1vw;
  }

  .portfolio-grid {
    grid-column-gap: 4vw;
    grid-row-gap: 4vw;
    grid-template-columns: 1fr;
    transform: none;
  }

  .small {
    font-size: .9rem;
  }

  .faq_item {
    padding: 2rem 0;
  }

  .faq_icon {
    margin-left: 1.5rem;
  }

  .faq_answer-wrapper {
    padding-top: .5rem;
  }

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

  .footer_embed {
    font-size: 1rem;
  }

  .heading-2 {
    line-height: 1.3;
  }

  .text-block-2 {
    font-size: .8rem;
  }

  .code-embed {
    background-color: #ededed00;
  }
}

#w-node-a9b48397-bae2-5e43-bff7-fcb4489909c9-2d9fb820 {
  grid-area: 1 / 3 / 2 / 5;
}

#w-node-_6b2c95b2-aa56-f4f1-bb94-68b63d368e2d-2d9fb820 {
  grid-area: 1 / 1 / 3 / 3;
}

#w-node-_85da0a68-48a9-c59a-8caf-c3e7ec7e130a-2d9fb820 {
  grid-area: 3 / 5 / 4 / 7;
}

#w-node-ffabf593-ce0b-967a-80a8-9caed632e585-2d9fb820 {
  grid-area: 3 / 1 / 4 / 3;
}

#w-node-_276f4cdf-ca2d-7e91-e6f7-46142eaed4b5-2d9fb820 {
  grid-area: 4 / 1 / 6 / 3;
}

#w-node-d232fe19-fb7d-ea25-88de-86314795c35c-2d9fb820 {
  grid-area: 2 / 3 / 4 / 5;
}

#w-node-_7ce399a8-03fe-da05-3492-f03d321d5cb0-2d9fb820 {
  grid-area: 1 / 5 / 3 / 7;
}

#w-node-_0e090558-ad10-5817-1534-ac05634fcaa0-2d9fb820 {
  grid-area: 4 / 5 / 6 / 7;
}

#w-node-_0028570c-235a-912b-8ac7-453a336a665e-2d9fb820 {
  grid-area: 4 / 3 / 6 / 5;
}

#w-node-b7bf6331-2881-52bb-5be8-f1c3fd6a144d-2d9fb820 {
  align-self: start;
}

@media screen and (max-width: 991px) {
  #w-node-b7bf6331-2881-52bb-5be8-f1c3fd6a144d-2d9fb820 {
    grid-area: span 1 / span 2 / span 1 / span 2;
    align-self: start;
  }

  #w-node-b7bf6331-2881-52bb-5be8-f1c3fd6a1452-2d9fb820 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }
}


