:root {
  --black: #000;
  --white: white;
  --orange: #e7581d;
  --green: #38502d;
  --level-1: #132015;
  --darkgrey: #898987;
  --light-slate-grey: #c5c5c4;
  --cyan\<deleted\|variable-bcf49e07\>: cyan;
  --lime-green\<deleted\|variable-fb8b8637\>: #3cc74e;
  --blue\<deleted\|variable-6ceeeb8f\>: #5221e6;
  --black-transparent: rgba(0, 0, 0, .5);
  --dark-grey: #222;
}

.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-form-formrecaptcha {
  margin-bottom: 8px;
}

.body {
  background-color: var(--black);
  font-family: Sen, sans-serif;
}

.wrapper {
  width: 100%;
  height: 100%;
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
}

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

.wrapper.grid-3_col {
  grid-column-gap: 24px;
  grid-row-gap: 48px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

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

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

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

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

.nav-bar {
  background-color: rgba(0, 0, 0, 0);
  padding-left: 72px;
  padding-right: 72px;
}

.nav-link {
  color: var(--white);
  padding: 32px 24px;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  transition: color .35s cubic-bezier(.165, .84, .44, 1);
}

.nav-link:hover {
  background-color: var(--orange);
  color: var(--white);
  font-weight: 700;
}

.nav-link:focus {
  border: 1px solid var(--green);
  background-color: var(--green);
  font-weight: 700;
}

.nav-link.button {
  background-color: var(--orange);
  color: var(--white);
  font-weight: 700;
  transition: background-color .35s cubic-bezier(.165, .84, .44, 1), color .35s cubic-bezier(.165, .84, .44, 1);
}

.nav-link.button:hover {
  background-color: var(--green);
}

.brand {
  margin-top: 32px;
  padding-left: 0;
}

.brand.w--current {
  margin-top: 1.5rem;
}

.logo {
  min-width: 5rem;
}

.hero-section {
  height: 100vh;
  padding-right: 40px;
  position: static;
}

.hero-image-box {
  height: 100vh;
  background-image: url('../images/Daniel-Kedinger-Transparent-Web.png');
  background-position: 50% 100%;
  background-repeat: no-repeat;
  background-size: contain;
  background-attachment: scroll;
}

.heading_76px {
  color: var(--white);
  margin-top: 0;
  margin-bottom: 32px;
  font-size: 76px;
  line-height: 110%;
}

.hero-text-block {
  margin-left: -64px;
}

.paragraph_18px {
  color: var(--white);
  font-size: 18px;
  line-height: 150%;
}

.paragraph_18px.dark-grey {
  color: var(--darkgrey);
}

.paragraph_18px.light-grey {
  color: var(--light-slate-grey);
}

.paragraph_18px.light-grey._40px-bottom_m {
  margin-bottom: 40px;
}

.paragraph_18px.light-grey._64px-bottom_m {
  margin-bottom: 64px;
}

.paragraph_18px.padding_2rem {
  margin-bottom: 2rem;
}

.hero-bg {
  z-index: -1;
  width: 65vw;
  height: 110vh;
  background-image: linear-gradient(to bottom, var(--darkgrey), var(--darkgrey));
  margin-top: -5px;
  position: absolute;
  top: 0%;
  bottom: auto;
  left: auto;
  right: 0%;
}

.white_50 {
  color: rgba(255, 255, 255, .5);
}

.experience-section {
  padding: 265px 72px 215px;
}

.overline_16px {
  color: var(--light-slate-grey);
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: 700;
  line-height: 150%;
  display: inline-block;
}

.overline_16px.uppercase {
  text-transform: uppercase;
}

.heading_55px {
  width: 100%;
  max-width: 780px;
  color: var(--white);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 55px;
  line-height: 110%;
  display: inline-block;
}

.heading_55px.black {
  color: var(--level-1);
}

.heading_55px.black._24px-bottom, .heading_55px._24px-bottom {
  margin-bottom: 24px;
}

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

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

.experience-grid {
  grid-column-gap: 24px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  margin-top: 40px;
}

.number {
  color: var(--light-slate-grey);
  margin-bottom: 8px;
  font-size: 3rem;
  font-weight: 400;
  line-height: 100%;
  display: block;
}

.heading_24px {
  color: var(--white);
  margin-top: 0;
  margin-bottom: 16px;
  font-size: 24px;
  font-weight: 700;
  line-height: 120%;
}

.heading_24px._64px-bottom_m {
  margin-bottom: 64px;
}

.experience-block {
  padding-right: 48px;
}

.paragraph_16px {
  color: var(--white);
  margin-bottom: 0;
  font-size: 16px;
  line-height: 150%;
  text-decoration: none;
}

.paragraph_16px.light-grey {
  color: var(--light-slate-grey);
}

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

.paragraph_16px.cyan {
  color: var(--cyan\<deleted\|variable-bcf49e07\>);
  transition: color .35s;
}

.paragraph_16px.cyan:hover {
  color: rgba(0, 255, 255, .85);
}

.paragraph_16px.padding-bottom {
  margin-bottom: 1rem;
}

.green {
  color: var(--lime-green\<deleted\|variable-fb8b8637\>);
}

.blue {
  color: #609bff;
}

.pink {
  color: #e95d90;
}

.mid-section {
  height: 600px;
  display: block;
}

.mid_left-block {
  background-color: #fff3e4;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding: 120px 72px;
  display: flex;
}

.mid_left-block.instagram {
  background-color: #fbe4ff;
}

.animated-link-button {
  border-bottom: 1px solid var(--darkgrey);
  color: var(--level-1);
  font-size: 16px;
  line-height: 40px;
  text-decoration: none;
  transition: color .35s cubic-bezier(.165, .84, .44, 1), padding .35s cubic-bezier(.165, .84, .44, 1), background-color .35s cubic-bezier(.165, .84, .44, 1);
  display: inline-block;
}

.animated-link-button:hover {
  background-image: linear-gradient(to bottom, var(--blue\<deleted\|variable-6ceeeb8f\>), var(--blue\<deleted\|variable-6ceeeb8f\>));
  color: var(--white);
  padding-left: 16px;
  padding-right: 16px;
}

.animated-link-button.white {
  color: var(--white);
}

.normal-wrapper._48px-right_p {
  padding-right: 48px;
}

.normal-wrapper._48px-right_p._80px-bottom_m {
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 80px;
  display: flex;
}

.normal-wrapper._120px-bottom_m {
  margin-bottom: 120px;
}

.normal-wrapper.flex-vertical_left_space-betwen {
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.normal-wrapper.flex-horizontal_left_top {
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.mid_image {
  background-image: url('../images/Philosophy.jpg');
  background-position: 50%;
  background-size: cover;
}

.mid_image.instagram {
  background-image: url('../images/Instagram.jpg');
  background-position: 50% 0;
}

.speaking-section {
  padding: 120px 72px;
}

.skill-icon {
  width: 7rem;
  max-width: 60px;
  color: var(--orange);
  margin-bottom: 1rem;
  padding-right: 1rem;
}

.logo-bar-section {
  display: block;
  overflow: hidden;
}

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

.logo-box {
  width: 24vw;
  height: 140px;
  border: 1px solid var(--level-1);
  justify-content: center;
  align-items: center;
  display: flex;
}

.projects-section {
  padding: 120px 72px;
  display: block;
}

.project-image {
  height: 400px;
  object-fit: cover;
}

.project-description {
  background-color: var(--level-1);
  padding: 40px 32px;
  position: relative;
}

.button-wrapper {
  height: 232px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.cta {
  border: 1px solid var(--orange);
  color: var(--white);
  background-color: rgba(56, 152, 236, 0);
  padding: 24px 32px;
  font-size: 18px;
  font-weight: 700;
  transition: box-shadow .35s cubic-bezier(.165, .84, .44, 1), background-color .35s cubic-bezier(.165, .84, .44, 1), transform .35s cubic-bezier(.165, .84, .44, 1);
}

.cta:hover {
  background-color: var(--orange);
  box-shadow: 0 20px 60px 0 var(--black-transparent);
  transform: translate(0, -5px);
}

.cta.uppercase {
  text-transform: uppercase;
}

.cta.solid {
  z-index: 800;
  border-color: var(--green);
  background-color: var(--orange);
  position: relative;
}

.cta.solid:hover {
  box-shadow: 0 20px 60px 0 var(--black-transparent);
}

.cta.transparent {
  background-color: var(--black-transparent);
}

.cta.green {
  z-index: 800;
  border-color: var(--black);
  background-color: var(--green);
  position: relative;
}

.project-wrapper {
  text-decoration: none;
  overflow: hidden;
}

.project-wrapper._24px-bottom_m {
  margin-bottom: 24px;
}

.dribbble-section {
  padding-top: 120px;
  padding-bottom: 120px;
  display: block;
}

.wrapper-v2 {
  width: 100%;
  height: 100%;
  max-width: 1076px;
  margin-left: auto;
  margin-right: auto;
}

.wrapper-v2.forms-grid {
  grid-column-gap: 24px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.brower-bar {
  height: 37px;
  background-color: var(--level-1);
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  justify-content: flex-start;
  align-items: center;
  padding-left: 16px;
  display: flex;
}

.dots {
  width: 12px;
  height: 12px;
  background-color: var(--light-slate-grey);
  border-radius: 100px;
  margin-right: 6px;
}

.dribbble-image {
  height: 640px;
  background-image: url('../images/Dribbble.jpg');
  background-position: 50%;
  background-repeat: repeat;
  background-size: 1024px;
  background-attachment: fixed;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
}

.testimonial-section {
  padding: 120px 72px;
  display: block;
}

.testimonial-block._120px-bottom_m {
  margin-bottom: 120px;
}

.testimonial-image {
  height: 360px;
  object-fit: cover;
}

.testimonial-text {
  border-right: 1px solid var(--darkgrey);
  border-bottom: 1px solid var(--darkgrey);
  border-left: 1px solid var(--darkgrey);
  padding: 64px;
}

.heading_18px {
  color: var(--white);
  margin-top: 0;
  margin-bottom: 16px;
  font-size: 18px;
  font-weight: 700;
  line-height: 120%;
}

.heading_18px.light-grey {
  color: var(--light-slate-grey);
}

.heading_18px.light-grey._4px-bottom_m {
  margin-bottom: 4px;
}

.testimonial-sticky-block {
  position: -webkit-sticky;
  position: sticky;
  top: 64px;
}

.tabs-section {
  padding: 120px 72px;
}

.tab {
  border: 1px solid var(--green);
  color: var(--white);
  background-color: rgba(221, 221, 221, 0);
  margin-right: 24px;
  padding: 12px 16px;
  font-size: 18px;
  font-weight: 700;
  transition: background-color .35s cubic-bezier(.165, .84, .44, 1);
}

.tab:hover {
  background-color: rgba(82, 33, 230, .2);
}

.tab.w--current {
  background-color: var(--green);
  text-transform: uppercase;
}

.tab-text {
  text-transform: uppercase;
}

.tab-menu {
  margin-bottom: 40px;
}

.tab-grid {
  height: 32vw;
  max-height: 630px;
  grid-column-gap: 24px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.tab-image {
  height: 40vh;
  max-height: 630px;
  object-fit: contain;
}

.forms-section {
  padding: 120px 72px;
}

.text-field {
  border: 1px solid var(--green);
  background-color: var(--black);
  color: var(--white);
  margin-top: 8px;
  margin-bottom: 2rem;
}

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

.text-field._100px {
  height: 100px;
  display: block;
}

.form-button {
  width: 100%;
  background-color: var(--green);
  padding-top: 24px;
  padding-bottom: 24px;
  font-size: 18px;
  font-weight: 700;
}

.success {
  background-color: var(--green);
}

.success-text {
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
}

.error-message {
  background-color: var(--orange);
}

.text-block {
  color: #fff;
}

.footer {
  height: 422px;
  background-color: var(--dark-grey);
  padding: 80px 72px;
}

.footer-logo {
  margin-bottom: 32px;
}

.social-icons {
  width: 1.5rem;
  color: var(--green);
  margin-right: 16px;
}

.social-icons.facebook {
  width: 1.5rem;
  color: #1877f2;
}

.social-icons.linkedin {
  width: 1.5rem;
  color: #0077b5;
}

.social-icons.x {
  width: 1.5rem;
  color: #fff;
}

.footer-link-block {
  border: 1px #000;
  text-decoration: none;
  display: block;
}

.footer-link {
  color: var(--white);
  padding-top: 16px;
  padding-bottom: 16px;
  font-size: 16px;
  transition: color .35s cubic-bezier(.165, .84, .44, 1);
}

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

.skills-wrapper._48px-right_p {
  padding-right: 48px;
}

.progress-bar {
  z-index: 100;
  width: 100%;
  height: 5px;
  background-color: var(--orange);
  transform-origin: 0%;
  position: fixed;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: 0%;
}

.arrow-div {
  width: 48px;
  height: 48px;
  background-color: var(--green);
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  top: auto;
  bottom: 0%;
  left: auto;
  right: 0%;
}

.banner {
  width: 100%;
  background-color: var(--blue\<deleted\|variable-6ceeeb8f\>);
  background-image: linear-gradient(to bottom, transparent, transparent), linear-gradient(to right, var(--blue\<deleted\|variable-6ceeeb8f\>), #8d21e6);
  justify-content: center;
  align-items: center;
  padding: 16px 24px;
  text-decoration: none;
  transition: background-color .35s cubic-bezier(.165, .84, .44, 1);
  display: block;
  position: static;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: 0%;
}

.banner:hover {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, .2), rgba(0, 0, 0, .2)), linear-gradient(to right, var(--blue\<deleted\|variable-6ceeeb8f\>), #8d21e6);
}

.banner-text {
  color: var(--white);
  text-align: center;
  font-size: 16px;
}

.mesh-orange {
  color: #ff511d;
}

.bbr-orange {
  color: #d7582c;
}

.cruce-blue {
  color: #5b92c0;
}

.light-slate-grey {
  color: var(--light-slate-grey);
}

.required {
  color: var(--orange);
  white-space: normal;
  word-break: normal;
  font-weight: 400;
}

.footer-logo-image {
  width: 8rem;
}

.footer-link-wrapper {
  flex-flow: column;
  align-items: stretch;
  padding-left: 1rem;
  padding-right: 1rem;
  display: flex;
}

.div-block {
  flex-direction: row;
  justify-content: flex-start;
  display: flex;
}

.website {
  color: var(--white);
  margin-bottom: 1rem;
  font-size: 16px;
  line-height: 150%;
  text-decoration: none;
  display: block;
}

.website.light-grey {
  color: var(--light-slate-grey);
}

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

.website.cyan {
  color: var(--cyan\<deleted\|variable-bcf49e07\>);
  transition: color .35s;
}

.website.cyan:hover {
  color: rgba(0, 255, 255, .85);
}

.website.padding-bottom {
  margin-bottom: 1rem;
}

.tab-grid-2col {
  height: 32vw;
  max-height: 630px;
  grid-column-gap: 24px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.cta-wrapper {
  justify-content: flex-start;
  margin-top: 3rem;
  display: flex;
}

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

.recaptcha {
  margin-bottom: 2rem;
}

@media screen and (max-width: 991px) {
  .wrapper.grid {
    max-width: none;
  }

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

  .wrapper.projects-grid {
    grid-row-gap: 48px;
    grid-template-columns: 1fr;
  }

  .wrapper.sticky-grid {
    grid-column-gap: 24px;
  }

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

  .nav-bar {
    padding-left: 32px;
    padding-right: 32px;
  }

  .hero-section {
    padding-right: 32px;
  }

  .hero-image-box {
    width: 100vw;
    background-position: 50% 100%;
    background-size: cover;
    margin-left: -11.4rem;
  }

  .heading_76px {
    font-size: 56px;
  }

  .hero-text-block {
    background-image: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5));
    margin-left: -12rem;
    padding: 2rem;
  }

  .experience-section {
    background-color: var(--black);
    padding: 150px 40px 80px;
  }

  .number {
    font-size: 3rem;
  }

  .experience-block {
    padding-right: 16px;
  }

  .mid_left-block, .speaking-section {
    padding: 80px 40px;
  }

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

  .logo-box {
    width: auto;
  }

  .projects-section {
    padding: 80px 40px;
  }

  .project-wrapper._24px-bottom_m {
    margin-bottom: 48px;
  }

  .dribbble-section {
    padding: 80px 40px;
  }

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

  .dribbble-image {
    height: 480px;
    background-size: cover;
  }

  .testimonial-section {
    padding: 80px 40px;
  }

  .testimonial-block._120px-bottom_m {
    margin-bottom: 64px;
  }

  .testimonial-text {
    padding: 32px;
  }

  .tabs-section {
    padding: 80px 40px;
  }

  .tab {
    margin-bottom: 1rem;
  }

  .tab-grid {
    height: 840px;
    max-height: none;
    grid-row-gap: 24px;
    grid-template-columns: 1fr 1fr;
    margin-bottom: 2rem;
  }

  .forms-section {
    padding: 80px 40px;
  }

  .footer {
    padding-left: 40px;
    padding-right: 40px;
  }

  .banner {
    display: block;
  }

  .banner-text {
    text-align: center;
    line-height: 130%;
  }

  .tab-grid-2col {
    height: 840px;
    max-height: none;
    grid-row-gap: 24px;
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (max-width: 767px) {
  .wrapper.grid {
    grid-row-gap: 0px;
    grid-template-columns: 1fr;
  }

  .wrapper.grid-3_col {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .wrapper.sticky-grid {
    grid-column-gap: 48px;
    grid-row-gap: 48px;
    grid-template-columns: 1fr;
  }

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

  .nav-bar {
    padding-left: 20px;
    padding-right: 0;
  }

  .nav-link {
    border-bottom: 1px solid rgba(255, 255, 255, .12);
  }

  .brand {
    margin-top: 24px;
  }

  .menu-button {
    padding: 24px 20px;
  }

  .menu-button.w--open {
    background-color: var(--black);
  }

  .nav-menu {
    background-color: var(--level-1);
  }

  .hero-section {
    height: auto;
    padding-right: 0;
  }

  .hero-image-box {
    height: 45vh;
    background-position: 50%;
    background-size: contain;
    margin-left: 0;
  }

  .heading_76px {
    margin-bottom: 16px;
    font-size: 32px;
  }

  .hero-text-block {
    background-image: linear-gradient(to bottom, var(--darkgrey), var(--darkgrey));
    margin-left: 0;
    padding: 48px 20px;
  }

  .hero-bg {
    display: none;
  }

  .experience-section {
    padding: 64px 20px;
  }

  .heading_55px {
    font-size: 32px;
  }

  .experience-grid {
    grid-row-gap: 40px;
    grid-template-columns: 1fr;
  }

  .experience-block {
    padding-right: 0;
  }

  .mid-section {
    height: auto;
    display: none;
  }

  .mid_left-block {
    height: 450px;
    padding: 48px 20px;
  }

  .normal-wrapper._48px-right_p {
    padding-right: 0;
  }

  .normal-wrapper._120px-bottom_m {
    margin-bottom: 64px;
  }

  .mid_image {
    height: 450px;
  }

  .speaking-section, .projects-section, .dribbble-section {
    padding: 64px 20px;
  }

  .wrapper-v2.forms-grid {
    grid-column-gap: 48px;
    grid-row-gap: 48px;
    grid-template-columns: 1fr;
  }

  .dribbble-image {
    background-size: cover;
  }

  .testimonial-section {
    padding: 64px 20px;
  }

  .testimonial-sticky-block {
    position: static;
  }

  .tabs-section {
    padding: 64px 20px;
  }

  .tab {
    justify-content: center;
    align-items: center;
    margin-right: 4px;
    display: flex;
  }

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

  .tab-grid {
    height: auto;
  }

  .tab-image {
    height: 360px;
  }

  .forms-section {
    padding: 64px 20px;
  }

  .footer {
    height: auto;
  }

  .skills-wrapper._48px-right_p {
    padding-right: 0;
  }

  .banner {
    padding-left: 20px;
    padding-right: 20px;
  }

  .tab-grid-2col {
    height: auto;
  }
}

@media screen and (max-width: 479px) {
  .wrapper.forms-grid {
    grid-template-columns: 1fr;
  }

  .logo {
    min-width: 3rem;
  }

  .hero-image-box {
    height: 35vh;
    background-position: 50% 100%;
  }

  .heading_76px {
    margin-bottom: 2rem;
  }

  .number {
    font-size: 2rem;
  }

  .normal-wrapper.flex-horizontal_left_top {
    flex-direction: column;
  }

  .cta {
    text-transform: uppercase;
  }

  .cta.solid, .cta.solid:hover {
    background-color: var(--orange);
  }

  .testimonial-text {
    padding: 24px;
  }

  .tab {
    margin-bottom: 0;
  }

  .tab-menu, .tab-grid {
    grid-template-columns: 1fr;
  }

  .image {
    color: var(--orange);
  }

  .footer-link-wrapper {
    padding-left: 0;
  }

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

#w-node-_3cb0f931-ad23-8f11-e7c9-7467d5aa3ec3-b3845753, #w-node-c07b73a0-4560-1829-def8-54c08f04f882-b3845753 {
  align-self: center;
}

#w-node-_4a8f1cb8-b5cc-dca3-1f15-df569cc0e59e-b3845753 {
  grid-area: span 2 / span 1 / span 2 / span 1;
}

#w-node-_6494a7c8-10f4-d824-2a5d-9eab7382e46a-b3845753, #w-node-_1648e196-95d8-a400-016f-1acbe2fb8a08-b3845753 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_2a9716ca-4096-3850-2d15-28cc733fbdd4-1e7d8e5d {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

@media screen and (max-width: 991px) {
  #w-node-_4a8f1cb8-b5cc-dca3-1f15-df569cc0e59e-b3845753 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_4a8f1cb8-b5cc-dca3-1f15-df569cc0e59e-b3845753 {
    grid-column: span 1 / span 1;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_2a9716ca-4096-3850-2d15-28cc733fbdd4-1e7d8e5d {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}


