:root {
  --container--main: 0px;
  --container--main-mobile: 0px;
  --site--width: 90rem;
  --site--margin: 3rem;
  --site--margin-mobile: 1rem;
  --container--full: 0px;
}

body {
  color: #161616;
  font-family: mundial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
}

h1 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 38px;
  font-weight: 700;
  line-height: 44px;
}

.navbar {
  background-color: #ddd0;
}

.copyright-privacy {
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  padding-bottom: 16px;
  display: flex;
}

.container {
  max-width: var(--container--main);
  margin-left: auto;
  margin-right: auto;
}

.hero__content-wrapper {
  flex-flow: column;
  align-items: center;
  padding-top: 32px;
  padding-bottom: 32px;
  display: flex;
}

.navbar-wrapper {
  justify-content: center;
  align-items: center;
  padding-top: 24px;
  padding-bottom: 24px;
  display: flex;
}

.hero__heading {
  text-align: center;
  letter-spacing: -2px;
  font-size: 3.5rem;
  font-weight: 600;
  line-height: 3.5rem;
}

.hero__heading-wrapper {
  flex-flow: column;
  align-items: center;
  margin-bottom: 1rem;
  display: flex;
}

.hero__description {
  color: #5f5f5f;
  text-align: center;
  letter-spacing: -1px;
  margin-bottom: 32px;
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 2rem;
}

.hero__description-form-wrapper {
  flex-flow: column;
  align-items: center;
  max-width: 725px;
  display: flex;
}

.form {
  background-color: #f5f5f5;
  border: 1px solid #d8d8d8;
  border-radius: 32px;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  padding: 4px;
  display: flex;
}

.text-field {
  background-color: #fff0;
  border: 0 solid #000;
  width: 256px;
  margin-bottom: 0;
  padding-left: 24px;
}

.text-field::placeholder {
  color: #000;
  font-weight: 300;
}

.submit-button {
  background-color: #fd7400;
  border-radius: 50px;
  padding: 16px 32px;
  transition: all .3s;
}

.submit-button:hover {
  background-color: #e36800;
}

.tab-link {
  background-color: #ddd0;
  background-image: linear-gradient(#fd740014, #fd740000);
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  width: 50%;
  height: 115px;
  padding: 0 16px;
  display: flex;
}

.tab-link.w--current {
  background-image: linear-gradient(#fd74003d, #fd740000);
  justify-content: center;
}

.tab-link__title {
  color: #272b30;
  font-size: 1.5rem;
  line-height: 1.5rem;
}

.tabs-menu {
  max-width: var(--site--width);
  padding-right: var(--site--margin);
  padding-left: var(--site--margin);
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.feature-image {
  max-width: 937px;
}

.tab-pane__content-wrapper {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  min-height: 310px;
  display: flex;
}

.highlight-wrapper {
  position: absolute;
  transform: translate(92px, -10px);
}

.social-icons__wrapper {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  display: flex;
}

.nav-link, .nav-menu.hidden {
  display: none;
}

.text-span {
  color: #fd7400;
  font-weight: 600;
}

.gradient-top {
  z-index: -900;
  position: fixed;
  inset: 0% 0% auto;
}

.gradient-bottom {
  z-index: -900;
  position: fixed;
  inset: auto 0% 0%;
}

.success-message {
  color: #0f691c;
  background-color: #d1ffd8;
  border-radius: 40px;
}

.error-message {
  color: #600a0a;
  background-color: #ffd9d9;
  border-radius: 20px;
}

.privacy-policy {
  color: #161616;
  padding: 8px;
  text-decoration: underline;
}

.privacy-section {
  padding-top: 88px;
  padding-bottom: 88px;
}

.div-block {
  padding: 8px;
}

.rich-text-block {
  padding-left: 256px;
  padding-right: 256px;
}

.div-block-2 {
  flex-flow: column;
  padding-left: 256px;
  padding-right: 256px;
  display: flex;
}

.privacy_commune-logo-wrapepr {
  margin-bottom: 32px;
}

.privacy_commune-logo-wrapepr.w--current {
  margin-bottom: 40px;
}

@media screen and (max-width: 991px) {
  .tab-link {
    height: 64px;
  }

  .feature-image {
    max-width: 88%;
  }

  .social-icons__wrapper {
    justify-content: center;
    align-items: center;
  }

  .nav-menu {
    background-color: #fff;
    padding: 24px;
  }

  .menu-button.w--open {
    background-color: #fff;
    border-radius: 16px;
  }

  .hero-section {
    overflow: hidden;
  }

  .rich-text-block, .div-block-2 {
    padding-left: 56px;
    padding-right: 56px;
  }
}

@media screen and (max-width: 767px) {
  .copyright-privacy {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex-flow: column;
    align-items: center;
  }

  .container {
    max-width: var(--container--main-mobile);
  }

  .navbar-wrapper {
    justify-content: flex-start;
    align-items: center;
  }

  .hero__heading {
    text-align: left;
    font-size: 2rem;
    line-height: 2.5rem;
  }

  .hero__heading-wrapper {
    justify-content: center;
    align-items: flex-start;
    width: 100%;
  }

  .hero__description {
    text-align: left;
    margin-bottom: 24px;
    font-size: 1.25rem;
    line-height: 1.4rem;
  }

  .form {
    border-radius: 18px 18px 27px 27px;
    flex-flow: column;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    padding-left: 4px;
    padding-right: 4px;
  }

  .text-field {
    border-radius: 50px;
    width: 100%;
    margin-bottom: 8px;
    padding-left: 16px;
  }

  .submit-button {
    width: 100%;
  }

  .features-section {
    padding-top: 8px;
  }

  .tab-link {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    height: 56px;
    padding-left: 32px;
    padding-right: 32px;
  }

  .tab-link__title {
    font-size: 1.125rem;
    line-height: 1.125rem;
  }

  .tabs-menu {
    padding-right: var(--site--margin-mobile);
    padding-left: var(--site--margin-mobile);
  }

  .tab-pane__content-wrapper {
    min-height: 220px;
  }

  .highlight-wrapper {
    transform: translate(70px, -2px);
  }

  .social-icons__wrapper {
    border-radius: 24px;
    justify-content: center;
    align-items: center;
    padding: 24px;
  }

  .wordmark {
    margin-top: 8px;
  }

  .nav-menu {
    background-color: #fff;
  }

  .form-block {
    width: 100%;
  }

  .rich-text-block, .div-block-2 {
    padding-left: 0;
    padding-right: 0;
  }

  .brand {
    padding-left: 0;
  }
}

@media screen and (max-width: 479px) {
  .hero__heading {
    font-size: 1.75rem;
    line-height: 1.75rem;
  }

  .hero__description {
    font-size: 1.1rem;
    line-height: 1.25rem;
  }

  .highlight-wrapper {
    width: 40px;
    height: 40px;
    transform: translate(32px, -11px);
  }
}


