:root {
  /* colors */
  --white: #f9f3ed;
  --light-orange: #FBF7F1;
  --light-blue: #CDD8DB;
  --light-brown: #E8E1D4;

  --dark-brown: #3F3A33;
  --joy-brown-bg: #1e0b07;
  --mint: #77A39A;
  --light-red: #BC6B62;

  /* text */
  --dark-text: var(--dark-brown);
  --light-text: var(--light-brown);

  --font-size: 16px;
  --nav-height: 61px;

  --gutter: 30px;
  --mobile-gutter: 21px;

  --loaded-anim-duration: 1s;

  /* breakpoints */
  /* these cannot be used in media queries, they're just here for reference */
  /* per kristen: values are <= variable */
  --small-screen: 414px;
  --med-screen: 1024px;
  --large-screen: 1440px;
  --xl-screen: 2800px;
}

body {
  /* set dark as default text color */
  color: var(--dark-text);
  font-family: "Founders Grotesk Regular";
  font-size: var(--font-size);
}

body.no-scroll {
  overflow: hidden;
  height: 100%;
}

button {
  outline: 0;
}

nav {
  padding: 0 var(--mobile-gutter);
  display: flex;
  flex-grow: 0;
  flex-direction: column;
  position: relative;
}

nav:not(.below-fold):after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  border-bottom: 1px solid var(--light-text);
  -webkit-transition: width var(--loaded-anim-duration) ease;
  -webkit-transition-delay: 0.5s;
  transition: width var(--loaded-anim-duration) ease;
  transition-delay: 0.5s;
}

nav.loaded:after {
  width: 100%;
}

nav .desktop.user-actions a {
  position: relative;
}

nav:not(.below-fold) .desktop.user-actions a:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 0;
  border-left: 1px solid var(--light-text);
  -webkit-transition: height var(--loaded-anim-duration) ease;
  -webkit-transition-delay: 0.5s;
  transition: height var(--loaded-anim-duration) ease;
  transition-delay: 0.5s;
}

nav.loaded .desktop.user-actions a:before {
  height: 100%;
}

nav .nav__toggle .open {
  display: block;
}

nav .mobile-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 61px;
}

#mobile-nav {
  background-color: var(--mint);
  position: fixed;
  height: 100vh;
  width: calc(100vw + 1px);
  top: 0;
  right: calc(100vw + 2px);
  bottom: 0;
  transition: right 0.33s cubic-bezier(0.77,0.2,0.05,1.0);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

#mobile-nav.active {
  right: 0;
}

#mobile-nav .heading {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  height: var(--nav-height);
  padding-left: var(--mobile-gutter);
  padding-right: var(--mobile-gutter);
  width: 100%;
  box-sizing: border-box;
}

#mobile-nav .links ul {
  list-style: none;
  padding-left: 0;
}

#mobile-nav .links ul li {
  font-size: 36px;
  letter-spacing: 1.13px;
  line-height: 43px;
  text-align: center;
  margin-top: 18px;
  margin-bottom: 18px;
}

#mobile-nav .links ul li a {
  color: var(--dark-text);
  text-decoration: none;
}

#mobile-nav .mobile-user-actions {
  display: flex;
  flex-direction: column;
  width: 100%;
}

#mobile-nav .mobile-user-actions .sign-up,
#mobile-nav .mobile-user-actions .login-in {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
}
#mobile-nav .mobile-user-actions .login-in {
  position: relative;
  left: -9px;
}

#mobile-nav .mobile-user-actions img {
  margin-right: 10px;
}

#mobile-nav .mobile-user-actions a {
  color: var(--dark-text);
  font-size: 26px;
  letter-spacing: 0.81px;
  text-decoration: none;
  display: flex;
  justify-content: center;
  box-sizing: border-box;
  padding: 20px;
  border-top: 1px solid var(--dark-brown);
}

nav .desktop-nav {
  display: none;
}

nav .user-actions {
  display: none;
}

@media screen and (min-width: 769px) {
  nav {
    height: var(--nav-height);
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    padding: 0 var(--gutter);
  }

  nav .mobile-header {
    width: auto;
  }

  nav .nav__toggle {
    display: none;
  }

  nav .desktop-nav {
    display: block;
  }

  nav .desktop.user-actions {
    display: flex;
    align-self: stretch;
    align-items: center;
  }
}

nav .logo {
  width: 80px;
  height: auto;
}

nav ul {
  list-style: none;
  padding-left: 0;
}

nav ul li {
  display: inline-block;
  padding-left: 10px;
  padding-right: 10px;
}


nav ul li a {
  font-family: "Founders Grotesk Regular";
  letter-spacing: 0.5px;
  color: var(--light-text);
  text-decoration: none;
}

nav ul li a:hover {
  text-decoration: underline;
}

nav.below-fold ul li a {
  color: var(--dark-text);
}

nav.below-fold {
  border-bottom: 1px solid var(--dark-brown);
}

nav .user-actions a {
  color: var(--light-text);
  text-decoration: none;
}

nav.below-fold .user-actions a {
  color: var(--dark-text);
}

nav .user-actions .sign-up, nav .user-actions .login-in {
  display: flex;
  align-items: center;
  line-height: 61px;
  margin-left: 10px;
  margin-right: 10px;
}

nav .user-actions .sign-up span, nav .user-actions .login-in span {
  text-decoration: underline;
}

nav .user-actions .sign-up img, nav .user-actions .login-in img {
  height: 35px;
  width: 35px;
  margin-right: 10px;
}

@media screen and (min-width: 769px) {
  nav ul li {
    padding-left: 20px;
    padding-right: 20px;
  }

  nav .user-actions .sign-up,
  nav .user-actions .login-in {
    margin-left: 20px;
    margin-right: 20px;
  }
  nav .user-actions .sign-up img,
  nav .user-actions .login-in img {
    margin-right: 15px;
  }
}

.body.stick-nav {
  padding-top: var(--nav-height);
}

.body.stick-nav nav.below-fold {
  position: fixed;
  top: 0;
  width: 100%;
  box-sizing: border-box;
  z-index: 2;
}


.overview nav, .overview .intro {
  color: var(--dark-text);
  background-color: var(--mint);
}

.overview .intro h2,
.overview .benefits-module h2,
.features .intro h2,
.pricing .intro h2,
#newsletter .intro h2 {
  font-family: "Founders Grotesk Semibold";
  font-size: 18px;
  letter-spacing: 0.01px
}

.overview .intro h1 {
  font-family: "Founders Grotesk Medium";
  font-size: 35px;
  line-height: 46px;
  width: 336px;
  letter-spacing: -0.11px;
  font-weight: 500;
  text-align: center;
  margin-top: 56px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (min-width: 769px) {
  .overview .intro h1 {
    font-size: 46px;
    line-height: 64px;
    width: 683px;
    letter-spacing: -0.14px;
    text-align: center;
    margin-top: 89px;
  }
}

.overview .intro p {
  font-family: "Founders Grotesk Medium";
  font-size: 16px;
  line-height: 26px;
  width: 334px;
  letter-spacing: 0;
  text-align: center;
  margin-bottom: 96px;
  margin-top: 0;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (min-width: 769px) {
  .overview .intro p {
    width: 488px;
    margin-bottom: 136px;
  }
}

/* hack for sign up for waiting list */
.overview .intro .newsletter-form {
  font-family: "Founders Grotesk Medium";
  font-size: 16px;
  line-height: 26px;
  width: 334px;
  letter-spacing: 0;
  text-align: center;
  margin-bottom: 96px;
  margin-top: -96px;
  margin-left: auto;
  margin-right: auto;
}

/* hack for sign up for waiting list */
@media screen and (min-width: 769px) {
  .overview .intro .newsletter-form {
    width: 488px;
    margin-top: -136px;
    margin-bottom: 136px;
  }
}


.overview .intro {
  display: flex;
  flex-direction: column;
  padding-left: var(--mobile-gutter);
  padding-right: var(--mobile-gutter);
}

@media screen and (min-width: 769px) {
  .overview .intro {
    padding-left: var(--gutter);
    padding-right: var(--gutter);
  }
}

.overview .benefits-module {
  background-color: var(--light-orange);
  flex-direction: column;
}

.overview .benefits-module > h2 {
  position: absolute;
  margin-left: var(--mobile-gutter);
}

@media screen and (min-width: 769px) {
  .overview .benefits-module > h2 {
    margin-left: var(--gutter);
  }
}

.overview .benefits-module [class^="benefit-"] {
  display: flex;
  flex-direction: column;
}

.overview .benefits-module [class^="benefit-"] .image {
  text-align: center;
}

.overview .benefits-module [class^="benefit-"] .image img {
  max-width: 700px;
}

.overview .benefits-module [class^="benefit-"] .desc {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 0;
}

@media screen and (max-width: 768px) {
  .overview .benefits-module [class^="benefit-"] .image,
  .overview .benefits-module [class^="benefit-"] .desc {
    border-bottom: 1px solid var(--dark-text);
  }
}


.overview .benefits-module [class^="benefit-"] .desc h1 {
  font-family: "Founders Grotesk Medium";
  font-weight: 500;
  font-size: 35px;
  letter-spacing: -0.11px;
  line-height: 46px;
  margin-top: 49px;
}

@media screen and (min-width: 769px) {
  .overview .benefits-module [class^="benefit-"] .desc h1 {
    font-size: 46px;
    letter-spacing: -0.14px;
    line-height: 64px;
  }
}

.overview .benefits-module [class^="benefit-"] .desc p {
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 49px;
}

.overview .benefits-module [class^="benefit-"] .desc p,
.overview .benefits-module [class^="benefit-"] .desc h1 {
  width: 336px;
}

@media screen and (min-width: 769px) {
  .overview .benefits-module [class^="benefit-"] .desc p,
  .overview .benefits-module [class^="benefit-"] .desc h1 {
    width: 405px;
  }
}

/* at med-screen and above, display picture and text side by side. */
@media screen and (min-width: 769px) {
  .overview .benefits-module [class^="benefit-"] {
    flex-direction: row;
  }

  .overview .benefits-module [class^="benefit-"] .image,
  .overview .benefits-module [class^="benefit-"] .desc {
    width: 50%;
  }

  /* .overview .benefits-module [class^="benefit-"] .image {

  } */

  .overview .benefits-module [class^="benefit-"] .desc {
    text-align: left;
    border-left: 1px solid var(--dark-brown);
    border-bottom: 1px solid var(--dark-brown);
  }
}

.overview .benefits-module [class^="benefit-"] img {
  width: 100%;
}

.overview .benefits-module .benefits.scroll-images {
  display: none;
}

.overview .benefits-module .benefits.scroll-images .image {
  transition: background 0.3s;
}

.overview .benefits-module .benefits.scroll-images .desc {
  border: 0;
}

#benefits-module {
  display: flex;
}

#mobile-benefits-module {
  display: none;
}

@media screen and (max-width: 767px) {
  #benefits-module {
    display: none;
  }

  #mobile-benefits-module {
    display: flex;
  }
}

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

.features .intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--dark-brown);
}

.features .intro h2 {
  align-self: flex-start;
  margin-left: var(--mobile-gutter);
}

@media screen and (min-width: 769px) {
  .features .intro h2 {
    margin-left: var(--gutter);
  }
}

.features .intro h1 {
  font-family: "Founders Grotesk Medium";
  font-weight: 500;
  font-size: 35px;
  letter-spacing: -0.11px;
  line-height: 46px;
  width: 334px;
  text-align: center;
}

@media screen and (min-width: 769px) {
  .features .intro h1 {
    font-size: 46px;
    letter-spacing: -0.14px;
    line-height: 64px;
    width: 500px;
  }
}

.features .intro p {
  font-size: 16px;
  letter-spacing: 0;
  line-height: 26px;
  text-align: center;
  width: 334px;
  margin-bottom: 131px;
}

@media screen and (min-width: 769px) {
  .features .intro p {
    width: 446px;
    margin-bottom: 166px;
  }
}

.features .tools {
  display: grid;
  grid-gap: 1px;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--light-text);
}

@media screen and (min-width: 769px) {
  .features .tools {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.features .tools > div {
  display: flex;
  flex-direction: column;
  padding: var(--mobile-gutter);
  background-color: var(--dark-brown);
}

@media screen and (min-width: 769px) {
  .features .tools > div {
    justify-content: flex-end;
    height: 533px;
    padding: 34px 38px;
  }
}

.features .tools > div h3 {
  font-family: "Founders Grotesk Medium";
  font-weight: 500;
  letter-spacing: 0;
  font-size: 18px;
  line-height: 28px;
}

@media screen and (min-width: 769px) {
  .features .tools > div h3 {
    font-size: 30px;
    line-height: 46px;
  }
}

.features .tools > div p {
  font-size: 16px;
  letter-spacing: 0;
  line-height: 26px;
}

@media screen and (min-width: 769px) {
  .features .tools > div .icon {
    flex-grow: 1;
  }
}

#pricing button {
    transition: 0.5s background-color;
}

#pricing button:hover {
    background-color: #47837A;
}

.pricing {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: url("../images/pricing/pricing-s.jpg");
  background-size: cover;
}

@media screen and (min-width: 768px) {
  .pricing {
    background: url("../images/pricing/pricing-m.jpg");
    background-size: cover;
  }
}

@media screen and (min-width: 1024px) {
  .pricing {
    background: url("../images/pricing/pricing-l.jpg");
    background-size: cover;
  }
}

@media screen and (min-width: 1440px) {
  .pricing {
    background: url("../images/pricing/pricing-xl.jpg");
    background-size: cover;
  }
}

.pricing .mobile-heading-image {
  width: 100%;
}

/* don't display heading image above tablet portrait */
@media screen and (min-width: 769px) {
  .pricing .mobile-heading-image {
    display: none;
  }
}

.pricing button {
    cursor: pointer;
}
.pricing .intro h1 {
  font-family: "Founders Grotesk Medium";
  font-weight: 500;
  font-size: 35px;
  line-height: 46px;
  letter-spacing: -0.11px;
  text-align: center;
  width: 334px;
  margin-top: 95px;
  margin-bottom: 130px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (min-width: 769px) {
  .pricing .intro h1 {
    width: 568px;
    font-size: 46px;
    line-height: 64px;
    letter-spacing: -0.14px;
    margin-top: 122px;
    margin-bottom: 155px;
    text-align: left;
    margin-left: 0;
  }
}

.pricing .intro, .pricing .options {
  display: inline-block;
  background-color: var(--light-orange);
}

.pricing .intro, .pricing .option {
  box-sizing: border-box;
}

.pricing .intro {
  width: 375px;
  padding-left: var(--mobile-gutter);
  padding-right: var(--mobile-gutter);
  border-bottom: 1px solid var(--dark-brown);
}

@media screen and (min-width: 376px) {
  .pricing .intro, .pricing .option {
    width: 414px;
  }
}

@media screen and (min-width: 415px) {
  .pricing .intro, .pricing .option {
    width: 768px;
  }
}

@media screen and (min-width: 769px) {
  .pricing .intro, .pricing .option {
    width: 661px;
    padding-left: var(--gutter);
    padding-right: var(--gutter);
  }
}

.pricing .option {
  height: 570px;
  padding-left: var(--mobile-gutter);
  padding-right: var(--mobile-gutter);
  border-bottom: 1px solid var(--dark-brown);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

@media screen and (min-width: 769px) {
  .pricing .option {
    width: 661px;
    padding-left: var(--gutter);
    padding-right: var(--gutter);
  }
}

.pricing .option.trial {
  background-color: var(--light-blue);
}

.pricing .option .body {
  font-size: 17px;
  letter-spacing: 0;
  line-height: 27px;
  margin-bottom: 20px;
  width: 334px;
}

@media screen and (min-width: 769px) {
  .pricing .option .body {
    width: 329px;
  }
}

.pricing .option button {
  font-family: "Founders Grotesk Medium";
  font-weight: 500;
  background-color: var(--mint);
  color: var(--dark-text);
  border: 0;
  height: 55px;
  line-height: 55px;
  width: 244px;
  margin-bottom: 60px;
}

.pricing .option button.trial {
  background-color: var(--light-red);
}

.pricing .option .option__details {
  width: 100%;
/*  display: flex;*/
  flex-direction: row;
  justify-content: space-between;
  flex-grow: 1;
}

.pricing .option .option__details h3,
.pricing .option .option__details .price {
    margin-top: 25px;
    margin-bottom: 0em;
    line-height: 1;
}

@media screen and (min-width: 769px) {
  .pricing .option .option__details h3,
  .pricing .option .option__details .price {
    margin-top: 35px;
  }
}

.pricing .option .option__details h3 {
  font-size: 18px;
  letter-spacing: 0.01px;
}

.pricing .option .option__details .price {
  font-family: "Founders Grotesk Medium";
  font-weight: 500;
  letter-spacing: 0.03px;
  font-size: 42px;
  line-height: 50px;
}

@media screen and (min-width: 769px) {
  .pricing .option .option__details .price {
    margin-right: 60px;
  }
}

.pricing .option .option__details .price .per {
  font-family: "Founders Grotesk Regular";
  font-size: 16px;
  letter-spacing: -0.24px;
  line-height: 19px;
}

#desktop-pricing {
  display: flex;
}

#mobile-pricing {
  display: none;
}

@media screen and (max-width: 767px) {
  #desktop-pricing {
    display: none;
  }

  #mobile-pricing {
    display: flex;
  }
}

#mobile-pricing .intro,
#mobile-pricing .options,
#mobile-pricing .option {
  width: 100%;
}

#newsletter {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid var(--light-text);
}

#newsletter .intro h2 {
  margin-left: var(--mobile-gutter);
}

@media screen and (min-width: 769px) {
  #newsletter .intro h2 {
    margin-left: var(--gutter);
  }
}

#newsletter .sign-up {
  margin-bottom: 92px;
  padding-left: var(--mobile-gutter);
  padding-right: var(--mobile-gutter);
  margin-left: auto;
}

@media screen and (min-width: 1025px) {
  #newsletter .sign-up {
    margin-left: calc(50% + 15px);
    padding-left: 0;
    padding-right: 0;
  }
}

#newsletter .sign-up h1 {
  font-family: "Founders Grotesk Medium";
  font-weight: 500;
  font-size: 35px;
  line-height: 46px;
  letter-spacing: -0.11px;
}

@media screen and (min-width: 769px) {
  #newsletter .sign-up h1 {
    font-size: 46px;
    letter-spacing: -0.14px;
    line-height: 64px;
    width: 450px;
  }
}

#newsletter .sign-up .newsletter-form {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-sizing: border-box;
}

#newsletter .sign-up .newsletter-form label {
  font-family: "Founders Grotesk Semibold";
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.13px;
  line-height: 22px;
}

#newsletter .sign-up .newsletter-form label[for=terms] {
  font-family: "Founders Grotesk Regular";
  font-weight: 400;
  font-size: 16px;
  letter-spacing: -0.11px;
  line-height: 19px;
}

#newsletter .sign-up .newsletter-form label[for=terms] a {
  color: var(--light-text);
}

#newsletter .sign-up .newsletter-form input[type=email],
#newsletter .sign-up .newsletter-form input[type=text] {
  color: var(--light-text);
  background: none;
  border: 1px solid var(--light-text);
  align-self: stretch;
  height: 56px;
  line-height: 56px;
  font-size: 21px;
  padding-left: 11px;
  padding-right: 11px;
}

@media screen and (min-width: 769px) {
  #newsletter .sign-up .newsletter-form input[type=email],
  #newsletter .sign-up .newsletter-form input[type=text] {
    align-self: auto;
    width: 450px;
  }
}

#newsletter .sign-up .newsletter-form input[type=checkbox] {
  margin-top: 21px;
}

#newsletter .sign-up .newsletter-form input:hover,
#newsletter .sign-up .newsletter-form input:focus,
#newsletter .sign-up .newsletter-form input:active {
  border-radius: 0;
  outline: 0;
}

#mc_embed_signup .button,
#newsletter .sign-up .newsletter-form button {
  color: var(--dark-text);
  background-color: var(--light-brown);
  border-radius: unset;
  font-family: "Founders Grotesk Medium";
  font-size: var(--font-size);
  border: 0;
  height: 55px;
  line-height: 55px;
  width: 244px;
  margin-top: 38px;
}


#newsletter, footer {
  color: var(--light-text);
  background-color: var(--dark-brown);
}

footer .info {
  display: flex;
  flex-direction: column;
}

@media screen and (min-width: 769px) {
  footer .info {
    flex-direction: row;
  }

}

footer .info .logo-and-address, footer .info .links, footer .info .user-actions {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}

footer .info .logo-and-address .logo {
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--light-text);
  flex-grow: 1;
}

footer .info .logo-and-address .address {
  display: flex;
  justify-content: center;
  border-bottom: 1px solid var(--light-text);
  text-align: center;
  margin-top: 40px;
  padding-bottom: 40px;
  flex-grow: 1;
}

@media screen and (min-width: 769px) {
  footer .info .logo-and-address .address {
    margin-top: 84px;
    padding-bottom: 84px;
    text-align: left;
  }
}

footer .info .logo-and-address .address .addr1,
footer .info .logo-and-address .address .addr2,
footer .info .logo-and-address .address .city-state {
  font-family: "Founders Grotesk Regular";
  font-size: 16px;
  letter-spacing: -0.11px;
  line-height: 26px;
}

footer .info .logo-and-address .address .phone,
footer .info .logo-and-address .address .email {
  margin-top: 30px;
}

footer .info .logo-and-address .address .email a {
  color: var(--light-text);
  text-decoration: none;
}

footer .info .logo-and-address .logo img {
  width: 168px;
  margin-top: 33px;
  margin-bottom: 33px;
}

@media screen and (min-width: 769px) {
  footer .info .logo-and-address .logo img {
    margin-top: 84px;
    margin-bottom: 84px;
  }
}

footer .info .links {
  display: flex;
  justify-content: center;
  align-items: center;
  border-left: 1px solid var(--light-text);
  border-right: 1px solid var(--light-text);
  border-bottom: 1px solid var(--light-text);
}

@media screen and (max-width: 768px) {
  footer .info .links {
    border-left: 0;
    border-right: 0;
  }
}

footer .info .links ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

footer .info .links li {
  margin-bottom: 40px;
  text-align: center;
}

footer .info .links li:first-child {
  margin-top: 40px;
}

footer .info .links a {
  font-family: "Founders Grotesk Semibold";
  font-size: 18px;
  letter-spacing: 0.56px;
  line-height: 22px;
  color: var(--light-text);
  text-decoration: none;
}

footer .user-actions {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid var(--light-text);
}

footer .user-actions a {
  color: var(--light-text);
  text-decoration: none;
}

footer .user-actions .link-with-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid var(--light-text);
  padding-top: 16px;
  padding-bottom: 16px;
  box-sizing: border-box;
}

@media screen and (min-width: 769px) {
  footer .user-actions .link-with-icon {
    height: 232px;
  }
}

footer .user-actions .link-with-icon .link-text {
  font-family: "Founders Grotesk Semibold";
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.56px;
  margin-left: 25px;
}

footer .user-actions .social-links {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
  flex-grow: 1;
  min-height: 85px;
}

footer .user-actions .social-links .instagram,
footer .user-actions .social-links .linkedin {
  font-size: 18px;
  letter-spacing: 0.56px;
  line-height: 22px;
}

footer .copyright {
  padding-top: 20px;
  padding-bottom: 20px;
  font-size: 18px;
  letter-spacing: -0.13px;
  line-height: 25px;
  padding-left: var(--mobile-gutter);
  padding-right: var(--mobile-gutter);
}

footer .copyright a {
  color: var(--light-text);
}

@media screen and (min-width: 769px) {
  footer .copyright {
    padding-left: calc(12% + 15px);
  }
}

.blog-postst {
  font-size: 18px;
  max-width: 60em;
  margin: auto auto;
}

input[type="submit"]
{
    cursor: pointer;
}

s
{
    text-decoration-thickness: 3px;
}


.schedule-demo a:hover {
    background-color: #47837A;
}

.schedule-demo a {
    display: inline-block;
    color: var(--dark-text);
    text-decoration: none;
    background-color: var(--mint);
    height: 55px;
    line-height: 55px;
    width: 244px;
    font-family: "Founders Grotesk Medium";
    font-weight: 500;
    cursor: pointer;
    text-align: center;
}

.pricing .option .schedule-demo a
{
    margin-bottom: 3em;
}
