@font-face {
  font-family: 'Circular Book';
  src: url('fonts/CircularStd-Book.woff') format('woff');
}
@font-face {
  font-family: 'Circular Medium';
  src: url('fonts/CircularStd-Medium.woff') format('woff');
}
@font-face {
  font-family: 'Circular Bold';
  src: url('fonts/CircularStd-Bold.woff') format('woff');
}

body, html {
  overflow-x: hidden;
}

body {
  background: white;
  box-sizing: border-box;
  font-family: 'Circular Book';
  font-size: 18px;
  position: relative;
  margin: 0;
  padding: 0;
}

.wrapper {
  margin: 0 auto;
  max-width: 1200px;
  padding: 0px 50px 50px;
}

button, a {
  cursor: pointer;
}

.hide {
  opacity: 0;
  pointer-events: none;
}

.show {
  opacity: 1;
  pointer-events: all;
}

.white-text {
  color: white !important;
}

.special-underline {
  text-decoration: underline;
  text-decoration-color: #ffb148 !important;
}

.small-text {
  font-size: 12px;
  margin-top: 0;
  padding-left: 15px;
}

.hide, .show {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: 100px;
  padding: 25px 0px;
  margin-bottom: 2rem;
}

.header__cta {
  padding: 10px 20px;
  font-size: 18px !important;
  text-decoration: none !important;
}

.header__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.header__logo img {
  width: 30px;
  height: 30px;
  margin-top: 13px;
}

.header__logo p {
  margin-left: 15px;
}

.header__links ul {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0;
}

.header__links li ~ li {
  margin-left: 30px;
}

.hero {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 30rem;
}

.hero > * {
  width: 50%;
}

.hero__right {
  bottom: 0;
}

#home .wrapper {
  padding: 0 50px 0;
}

.hero__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-left: 10%;
}

.hero__heading {
  font-size: 3.5rem;
  width: 25rem;
}

.remove-a {
  text-decoration: none !important;
}

.cta {
  height: 55px;
  width: 280px;
  border-radius: 60px;
  background: #6D30FF;
  background-image: -webkit-linear-gradient(110deg, #6D30FF 13%, #FF3ECC 200%);
  background-image: -o-linear-gradient(110deg, #6D30FF 13%, #FF3ECC 200%);
  background-image: linear-gradient(200deg, #6D30FF 13%, #FF3ECC 200%);
  box-shadow: 0 2px 40px 0 rgba(211, 138, 248, 0.55);
  border: 0;
  font-size: 22px;
  color: white;
}

.hero__cta {
  margin-bottom: 1.5rem;
  background: #ffb148;
  box-shadow: 0 2px 40px 0 rgba(0,0,0, 0.15);
  color: #831dc1;
  font-family: 'Circular Medium';
}

#try {
  width: 280px;
}

.terms-privacy {
  margin-top: 2rem;
  font-size: 16px;
}

.link {
  text-align: center;
  text-decoration: underline;
  color: #B137E7;
}

.hero__cta span {
  text-decoration: line-through;
}

.hero__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.notes {
  margin-top: 2rem;
  width: 25em;
}

.features-row {
  display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-flex: 0;
       -ms-flex: 0 0 33.3333%;
           flex: 0 0 33.3333%;
  margin: 3rem 0;
}

.features__item {
  text-align: center;
  -webkit-box-flex: 0;
       -ms-flex: 0 0 33.3333%;
           flex: 0 0 33.3333%;
  margin: 2rem 0;
}

.features__image {
  width: 3rem;
  height: 3rem;
}

.tick {
  width: 2.5rem;
  padding-right: 15px;
}

.features__title {
  font-family: 'Circular Bold';
  font-size: 22px;
}

.features__text {
  font-size: 18px;
  padding-top: 0;
  width: 75%;
  margin: 0 auto;
  margin-top: -10px;
  line-height: 1.4;
}

#home {
  background-image: -webkit-linear-gradient(110deg, #6D30FF 13%, #FF3ECC 200%);
  background-image: -o-linear-gradient(110deg, #6D30FF 13%, #FF3ECC 200%);
  background-image: linear-gradient(200deg, #6D30FF 13%, #FF3ECC 200%);
  /*background: #9d34de;*/
}

#features {
  margin-top: 4rem;
}

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

#contact {
  text-align: center;
}

.contact__cta {
  background: rgba(170,64,230);
  box-shadow: 0 2px 40px 0 rgba(151, 54, 202, 0.25);
  font-family: 'Circular Medium';
}

#mc_embed_signup { 
 font-family:  "Open Sans", sans-serif !important;
 padding: 10 20px;
 font-size: 16px !important;
}

#mc_embed_signup #mce-FNAME, #mce-EMAIL {
  border: none #ccc !important;
  border-left: 10px solid #ccc !important;
  background-color: rgb(245, 245, 245);
  height: 45px;
  padding: 10px 5px;
  font-size: 16px;
  line-height: 1.3333333;
}

#mc_embed_signup #mce-FNAME:focus, #mce-EMAIL:focus {
  border-left: 10px solid #9d34de !important;
}

#mc-embedded-subscribe {
  height: 44px !important;
  width: 100% !important;
  background-color: #9d34de !important;
  font-weight: bold !important;
  font-family: "Open Sans", sans-serif;
  font-size: 1.05em !important;
}

.gdprRequired {
    margin: 0 0 20px !important;
    padding: 0 !important;
}

.checkbox.subfield {
  font-size: 16px;
}

.av-checkbox {
  margin-right: 7px !important;
}

.form-terms {
  font-size: 11px;
  text-align: center;
}

.form-terms a {
  color: #9d34de;
  text-decoration: none !important;
}

.mc-field-group {
  width: 100% !important;
  margin-top: 5px;
}

.close-modal {
  top: -20px !important;
}

#mc-embedded-subscribe:hover {
  background-color: rgba(183,65,235) !important;
}

#mc-embedded-subscribe-form {
  padding: 0 !important;
}

.modal-form__heading {
  font-weight: 700;
  font-size: 1.6em;
  text-align: center;
  margin-bottom: 25px !important;
}

.modal-form__label {
  font-weight: bold;
  font-family: "Open Sans", sans-serif;
  padding-bottom: 3px;
}

.modal {
  border-top: 10px solid #9d34de !important;
  background-color: #fff !important;
  border-radius: 2px !important;
  outline: 0 !important;
  padding: 0 !important;
  width: 100%;
}

/*confirmation page*/
.confirmation-wrapper {
  width: 100%;
  height: 100%;
  display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.confirmation-box {
  width: 25rem;
  text-align: center;
}

.conf-image {
  width: 5rem;
  height: 5rem;
}

.conf-heading {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.conf-text {
  font-size: 16px;
  margin-bottom: .5rem;
}

.conf-btn {
  background: rgba(170,64,230);
  box-shadow: 0 2px 40px 0 rgba(151, 54, 202, 0.25);
  font-family: 'Circular Medium';
}

.bf-notes {
  margin-top: 8rem;
}

.big-feature {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  margin-bottom: 8rem;
}

.big-feature__img {
  width: 100%;
}

.big-feature__heading {
  font-size: 2.5rem;
  font-family: 'Circular Book';
  margin-bottom: 5px;
}

.big-feature__text {
  line-height: 1.4;
  margin-bottom: 10px;
}

.bf-images .big-feature__img {
  width: 100%;
  transform: unset;
}

.bf-themes .big-feature__img {
  width: 70%;
  transform: unset;
}
.bf-themes .big-feature__content {
  transform: unset;
}
.bf-themes {
  margin-bottom: 4rem;
}

.big-feature__img-box {
  text-align: center;
}

.big-feature__link {
  font-size: 1rem;
  color: #AA3FE6 !important;
}

@media (min-width: 1000px) {
  .big-feature {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
        flex-direction: row;
    text-align: left;
  }
  .big-feature > * {
    width: 50%;
  }
  .big-feature__content {
    width: 40%;
    transform: translateX(4rem);
  }
  .big-feature--flipped {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
        flex-direction: row-reverse;
  }
  .big-feature--flipped .big-feature__img {
    transform: translateX(5rem);
  }
  .big-feature--flipped .big-feature__content {
    transform: translateX(-4rem);
  }
  .bf-notes .big-feature__content {
    margin-top: -4rem;
  }
  .bf-themes .big-feature__content {
    width: 50%;
  }
}

@media (min-width: 768px and max-width: 1000px) {
  .big-feature__img {
    width: 80% !important;
  }
}

@media (max-width: 1000px) {
  .hero {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: unset;
    margin-bottom: 2rem;
  }
  .hero > * {
    width: 100%;
    text-align: center;
    padding-left: 0;
  }
  .hero__right {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .hero__heading {
    width: 100%;
    font-size: 3rem;
  }
  .hero__cta {
    margin: 0 auto;
    margin-bottom: 1.5rem;
  }
  #try {
    margin: 0 auto;
  }
  .features__title {
    width: unset;
  }
  
  .features-row, .features__item {
    -webkit-box-flex: 0;
       -ms-flex: 0 0 50%;
           flex: 0 0 50%;
  }
}


@media (max-width: 720px) {
  .header__links ul {
    margin-top: 1.5rem;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .hero__left {
    padding-left: 0;
  }
  .features__item, #get {
    margin-left: 0;
    margin-right: 0;
    text-align: center;
  }
}

@media (max-width: 500px) {
  .header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: unset;
  }
  .header__links ul {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .hero__left {
    padding-left: 0;
  }
  .notes {
    width: 20rem;
  }
  .preview {
    width: 22rem;
  }
  
  .features-row, .features__item {
    -webkit-box-flex: 0;
       -ms-flex: 0 0 100%;
           flex: 0 0 100%;
  }
  
  .cta {
    width: 100%;
  }
  
  .confirmation-box {
    width: 100%;
    padding: 10px;
  }
}






