.blackBG {
  background-color: #303735;
}

.whiteBG {
  background-color: #fff;
}

.gray1BG {
  background-color: #F0F3F4;
}

.gray2BG {
  background-color: #F2F9F7;
}

.gray3BG {
  background-color: #eeeeee;
}

.gray4BG {
  background-color: #B2B2B2;
}

.gray5BG {
  background-color: #5A5A5A;
}

.greenBG {
  background-color: #32D57C;
}

.neonGreenBG {
  background-color: #51FF83;
}

.paleGreenBG {
  background-color: #98EABD;
}

.purpleBG {
  background-color: #9756FF;
}

.neonPurpleBG {
  background-color: #7C31F4;
}

.palePurpleBG {
  background-color: #8C5FF4;
}

.vibrantGreenBG {
  background-color: #31D57C;
}

.vibrantPurpleBG {
  background-color: #7C31F4;
}

.vibrantBlueBG {
  background-color: #02B8EB;
}

.vibrantRedBG {
  background-color: #F53F3A;
}

.vibrantOrangeBG {
  background-color: #FFA147;
}

.button {
  display: inline-block;
  font-family: "proxima-nova";
  color: #fff;
  background-color: #9756FF;
  border: 0;
  border-radius: 50rem;
  padding: 15rem 45rem 13rem 45rem;
  margin: 20rem 0;
  -webkit-transition: 0.1s ease-in;
  transition: 0.1s ease-in;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 14rem;
  line-height: 1.2;
  letter-spacing: 1rem;
  text-decoration: none !important;
  cursor: pointer;
  text-align: center;
  -webkit-box-shadow: 0rem 1rem 12rem 0 rgba(48, 55, 53, 0.1);
          box-shadow: 0rem 1rem 12rem 0 rgba(48, 55, 53, 0.1);
}
.button:hover, .button:focus {
  background-color: #803ee9;
  color: #fff;
  text-decoration: none !important;
}
.button:hover {
  text-decoration: none !important;
}

.button-small {
  display: inline-block;
  font-family: "proxima-nova";
  color: #fff;
  background-color: #9756FF;
  border: 0;
  border-radius: 50rem;
  padding: 15rem 45rem 13rem 45rem;
  margin: 20rem 0;
  -webkit-transition: 0.1s ease-in;
  transition: 0.1s ease-in;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 14rem;
  line-height: 1.2;
  letter-spacing: 1rem;
  text-decoration: none !important;
  cursor: pointer;
  text-align: center;
  -webkit-box-shadow: 0rem 1rem 12rem 0 rgba(48, 55, 53, 0.1);
          box-shadow: 0rem 1rem 12rem 0 rgba(48, 55, 53, 0.1);
  padding: 8rem 20rem 7rem 20rem;
  font-size: 12rem;
  line-height: 1.2;
}
.button-small:hover, .button-small:focus {
  background-color: #803ee9;
  color: #fff;
  text-decoration: none !important;
}
.button-small:hover {
  text-decoration: none !important;
}

.button-stroked {
  display: inline-block;
  font-family: "proxima-nova";
  color: #9756FF;
  background-color: transparent;
  border: solid 2rem #9756FF;
  border-radius: 50rem;
  padding: 13rem 30rem 10rem 30rem;
  margin: 20rem 0;
  -webkit-transition: 0.1s ease-in;
  transition: 0.1s ease-in;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.25rem;
  text-decoration: none !important;
  cursor: pointer;
}
.button-stroked:hover, .button-stroked:focus {
  background-color: #803ee9;
  color: #fff;
  text-decoration: none !important;
}
.button-stroked:hover {
  text-decoration: none !important;
}

.button-stroked-small {
  display: inline-block;
  font-family: "proxima-nova";
  color: #9756FF;
  background-color: transparent;
  border: solid 2rem #9756FF;
  border-radius: 50rem;
  padding: 13rem 30rem 10rem 30rem;
  margin: 20rem 0;
  -webkit-transition: 0.1s ease-in;
  transition: 0.1s ease-in;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.25rem;
  text-decoration: none !important;
  cursor: pointer;
  padding: 8rem 20rem 7rem 20rem;
  font-size: 12rem;
  line-height: 1.2;
}
.button-stroked-small:hover, .button-stroked-small:focus {
  background-color: #803ee9;
  color: #fff;
  text-decoration: none !important;
}
.button-stroked-small:hover {
  text-decoration: none !important;
}

.button-text {
  font-weight: 800;
  text-transform: uppercase;
  margin: 20rem 0 10rem;
  padding-bottom: 10rem;
  cursor: pointer;
  position: relative;
  letter-spacing: 0.8rem;
}
.button-text:before {
  content: "";
  width: calc(100% + 25rem);
  height: 2rem;
  background: #9756FF;
  position: absolute;
  bottom: 5px;
  -webkit-transition: 0.25s ease-in;
  transition: 0.25s ease-in;
}
.button-text:after {
  position: absolute;
  display: inline-block;
  content: "";
  background-image: url("https://blog.greenlight.guru/hubfs/GG22_theme-files/button-assets/purpleArrow_sym.svg");
  background-size: contain;
  background-repeat: no-repeat;
  top: 5rem;
  right: -25rem;
  width: 18rem;
  height: 14rem;
  -webkit-transition: 0.25s ease-in;
  transition: 0.25s ease-in;
}
@media (max-width: 580px) {
  .button-text:after {
    top: 2rem;
  }
}
.button-text:hover, .button-text:focus {
  opacity: 0.7;
  text-decoration: none !important;
}
.button-text:hover:before, .button-text:focus:before {
  width: calc(100% + 30rem);
  bottom: 8rem;
}
.button-text:hover:after, .button-text:focus:after {
  right: -30rem;
}
@media (max-width: 580px) {
  .button-text {
    font-size: 13rem;
  }
}
.button-text:hover {
  text-decoration: none !important;
}

.button-text-small {
  font-weight: 800;
  text-transform: uppercase;
  margin: 20rem 0 10rem;
  padding-bottom: 10rem;
  cursor: pointer;
  position: relative;
  letter-spacing: 0.8rem;
  font-size: 13rem;
}
.button-text-small:before {
  content: "";
  width: calc(100% + 25rem);
  height: 2rem;
  background: #9756FF;
  position: absolute;
  bottom: 5px;
  -webkit-transition: 0.25s ease-in;
  transition: 0.25s ease-in;
}
.button-text-small:after {
  position: absolute;
  display: inline-block;
  content: "";
  background-image: url("https://blog.greenlight.guru/hubfs/GG22_theme-files/button-assets/purpleArrow_sym.svg");
  background-size: contain;
  background-repeat: no-repeat;
  top: 5rem;
  right: -25rem;
  width: 18rem;
  height: 14rem;
  -webkit-transition: 0.25s ease-in;
  transition: 0.25s ease-in;
}
@media (max-width: 580px) {
  .button-text-small:after {
    top: 2rem;
  }
}
.button-text-small:hover, .button-text-small:focus {
  opacity: 0.7;
  text-decoration: none !important;
}
.button-text-small:hover:before, .button-text-small:focus:before {
  width: calc(100% + 30rem);
  bottom: 8rem;
}
.button-text-small:hover:after, .button-text-small:focus:after {
  right: -30rem;
}
@media (max-width: 580px) {
  .button-text-small {
    font-size: 13rem;
  }
}
.button-text-small:before {
  content: "";
  width: calc(100% + 20rem);
  height: 2rem;
  bottom: 3px;
}
.button-text-small:after {
  background-image: url("https://blog.greenlight.guru/hubfs/GG22_theme-files/button-assets/purpleSmallArrow_sym.svg");
  top: 3rem;
  right: -20rem;
  width: 13rem;
  height: 10rem;
}
.button-text-small:hover, .button-text-small:focus {
  text-decoration: none !important;
}
.button-text-small:hover:before, .button-text-small:focus:before {
  width: calc(100% + 25rem);
  bottom: 5rem;
}
.button-text-small:hover:after, .button-text-small:focus:after {
  right: -25rem;
}
.button-text-small:hover {
  text-decoration: none !important;
}

.button-text-pale {
  font-weight: 800;
  text-transform: uppercase;
  margin: 20rem 0 10rem;
  padding-bottom: 10rem;
  cursor: pointer;
  position: relative;
  letter-spacing: 0.8rem;
  color: #C9A7FF;
}
.button-text-pale:before {
  content: "";
  width: calc(100% + 25rem);
  height: 2rem;
  background: #9756FF;
  position: absolute;
  bottom: 5px;
  -webkit-transition: 0.25s ease-in;
  transition: 0.25s ease-in;
}
.button-text-pale:after {
  position: absolute;
  display: inline-block;
  content: "";
  background-image: url("https://blog.greenlight.guru/hubfs/GG22_theme-files/button-assets/purpleArrow_sym.svg");
  background-size: contain;
  background-repeat: no-repeat;
  top: 5rem;
  right: -25rem;
  width: 18rem;
  height: 14rem;
  -webkit-transition: 0.25s ease-in;
  transition: 0.25s ease-in;
}
@media (max-width: 580px) {
  .button-text-pale:after {
    top: 2rem;
  }
}
.button-text-pale:hover, .button-text-pale:focus {
  opacity: 0.7;
  text-decoration: none !important;
}
.button-text-pale:hover:before, .button-text-pale:focus:before {
  width: calc(100% + 30rem);
  bottom: 8rem;
}
.button-text-pale:hover:after, .button-text-pale:focus:after {
  right: -30rem;
}
@media (max-width: 580px) {
  .button-text-pale {
    font-size: 13rem;
  }
}
.button-text-pale:hover, .button-text-pale:focus {
  text-decoration: none !important;
  color: #C9A7FF !important;
}
.button-text-pale:before {
  background: #C9A7FF !important;
}
.button-text-pale:after {
  background-image: url("https://blog.greenlight.guru/hubfs/GG22_theme-files/button-assets/palePurpleArrow_sym.svg") !important;
}
.button-text-pale:hover {
  text-decoration: none !important;
}

.button-text-pale-small {
  font-weight: 800;
  text-transform: uppercase;
  margin: 20rem 0 10rem;
  padding-bottom: 10rem;
  cursor: pointer;
  position: relative;
  letter-spacing: 0.8rem;
  font-size: 13rem;
  color: #C9A7FF;
}
.button-text-pale-small:before {
  content: "";
  width: calc(100% + 25rem);
  height: 2rem;
  background: #9756FF;
  position: absolute;
  bottom: 5px;
  -webkit-transition: 0.25s ease-in;
  transition: 0.25s ease-in;
}
.button-text-pale-small:after {
  position: absolute;
  display: inline-block;
  content: "";
  background-image: url("https://blog.greenlight.guru/hubfs/GG22_theme-files/button-assets/purpleArrow_sym.svg");
  background-size: contain;
  background-repeat: no-repeat;
  top: 5rem;
  right: -25rem;
  width: 18rem;
  height: 14rem;
  -webkit-transition: 0.25s ease-in;
  transition: 0.25s ease-in;
}
@media (max-width: 580px) {
  .button-text-pale-small:after {
    top: 2rem;
  }
}
.button-text-pale-small:hover, .button-text-pale-small:focus {
  opacity: 0.7;
  text-decoration: none !important;
}
.button-text-pale-small:hover:before, .button-text-pale-small:focus:before {
  width: calc(100% + 30rem);
  bottom: 8rem;
}
.button-text-pale-small:hover:after, .button-text-pale-small:focus:after {
  right: -30rem;
}
@media (max-width: 580px) {
  .button-text-pale-small {
    font-size: 13rem;
  }
}
.button-text-pale-small:before {
  content: "";
  width: calc(100% + 20rem);
  height: 2rem;
  bottom: 3px;
}
.button-text-pale-small:after {
  background-image: url("https://blog.greenlight.guru/hubfs/GG22_theme-files/button-assets/purpleSmallArrow_sym.svg");
  top: 3rem;
  right: -20rem;
  width: 13rem;
  height: 10rem;
}
.button-text-pale-small:hover, .button-text-pale-small:focus {
  text-decoration: none !important;
}
.button-text-pale-small:hover:before, .button-text-pale-small:focus:before {
  width: calc(100% + 25rem);
  bottom: 5rem;
}
.button-text-pale-small:hover:after, .button-text-pale-small:focus:after {
  right: -25rem;
}
.button-text-pale-small:hover, .button-text-pale-small:focus {
  text-decoration: none !important;
  color: #C9A7FF !important;
}
.button-text-pale-small:before {
  background: #C9A7FF !important;
}
.button-text-pale-small:after {
  background-image: url("https://blog.greenlight.guru/hubfs/GG22_theme-files/button-assets/palePurpleSmallArrow_sym.svg") !important;
}
.button-text-pale-small:hover {
  text-decoration: none !important;
}

.button-white {
  font-weight: 800;
  text-transform: uppercase;
  margin: 20rem 0 10rem;
  padding-bottom: 10rem;
  cursor: pointer;
  position: relative;
  letter-spacing: 0.8rem;
  margin: 20rem 0;
  padding: 15rem 60rem 13rem 45rem;
  background-color: #fff;
  border-radius: 50rem;
  letter-spacing: 0.8rem;
}
.button-white:before {
  content: "";
  width: calc(100% + 25rem);
  height: 2rem;
  background: #9756FF;
  position: absolute;
  bottom: 5px;
  -webkit-transition: 0.25s ease-in;
  transition: 0.25s ease-in;
}
.button-white:after {
  position: absolute;
  display: inline-block;
  content: "";
  background-image: url("https://blog.greenlight.guru/hubfs/GG22_theme-files/button-assets/purpleArrow_sym.svg");
  background-size: contain;
  background-repeat: no-repeat;
  top: 5rem;
  right: -25rem;
  width: 18rem;
  height: 14rem;
  -webkit-transition: 0.25s ease-in;
  transition: 0.25s ease-in;
}
@media (max-width: 580px) {
  .button-white:after {
    top: 2rem;
  }
}
.button-white:hover, .button-white:focus {
  opacity: 0.7;
  text-decoration: none !important;
}
.button-white:hover:before, .button-white:focus:before {
  width: calc(100% + 30rem);
  bottom: 8rem;
}
.button-white:hover:after, .button-white:focus:after {
  right: -30rem;
}
@media (max-width: 580px) {
  .button-white {
    font-size: 13rem;
  }
}
.button-white:before {
  display: none;
}
.button-white:after {
  right: 35rem;
  top: 19rem;
}
.button-white:hover:after, .button-white:focus:after {
  right: 30rem;
}
.button-white:hover {
  text-decoration: none !important;
}

.button-white-small {
  font-weight: 800;
  text-transform: uppercase;
  margin: 20rem 0 10rem;
  padding-bottom: 10rem;
  cursor: pointer;
  position: relative;
  letter-spacing: 0.8rem;
  font-size: 13rem;
  margin: 20rem 0;
  padding: 5rem 30rem 3rem 15rem;
  background-color: #fff;
  border-radius: 50rem;
  letter-spacing: 0.8rem;
}
.button-white-small:before {
  content: "";
  width: calc(100% + 25rem);
  height: 2rem;
  background: #9756FF;
  position: absolute;
  bottom: 5px;
  -webkit-transition: 0.25s ease-in;
  transition: 0.25s ease-in;
}
.button-white-small:after {
  position: absolute;
  display: inline-block;
  content: "";
  background-image: url("https://blog.greenlight.guru/hubfs/GG22_theme-files/button-assets/purpleArrow_sym.svg");
  background-size: contain;
  background-repeat: no-repeat;
  top: 5rem;
  right: -25rem;
  width: 18rem;
  height: 14rem;
  -webkit-transition: 0.25s ease-in;
  transition: 0.25s ease-in;
}
@media (max-width: 580px) {
  .button-white-small:after {
    top: 2rem;
  }
}
.button-white-small:hover, .button-white-small:focus {
  opacity: 0.7;
  text-decoration: none !important;
}
.button-white-small:hover:before, .button-white-small:focus:before {
  width: calc(100% + 30rem);
  bottom: 8rem;
}
.button-white-small:hover:after, .button-white-small:focus:after {
  right: -30rem;
}
@media (max-width: 580px) {
  .button-white-small {
    font-size: 13rem;
  }
}
.button-white-small:before {
  content: "";
  width: calc(100% + 20rem);
  height: 2rem;
  bottom: 3px;
}
.button-white-small:after {
  background-image: url("https://blog.greenlight.guru/hubfs/GG22_theme-files/button-assets/purpleSmallArrow_sym.svg");
  top: 3rem;
  right: -20rem;
  width: 13rem;
  height: 10rem;
}
.button-white-small:hover, .button-white-small:focus {
  text-decoration: none !important;
}
.button-white-small:hover:before, .button-white-small:focus:before {
  width: calc(100% + 25rem);
  bottom: 5rem;
}
.button-white-small:hover:after, .button-white-small:focus:after {
  right: -25rem;
}
.button-white-small:before {
  display: none;
}
.button-white-small:after {
  right: 13rem;
  top: 9rem;
}
.button-white-small:hover:after, .button-white-small:focus:after {
  right: 10rem;
}
.button-white-small:hover {
  text-decoration: none !important;
}

.button-dark {
  display: inline-block;
  font-family: "proxima-nova";
  color: #fff;
  background-color: #9756FF;
  border: 0;
  border-radius: 50rem;
  padding: 15rem 45rem 13rem 45rem;
  margin: 20rem 0;
  -webkit-transition: 0.1s ease-in;
  transition: 0.1s ease-in;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 14rem;
  line-height: 1.2;
  letter-spacing: 1rem;
  text-decoration: none !important;
  cursor: pointer;
  text-align: center;
  -webkit-box-shadow: 0rem 1rem 12rem 0 rgba(48, 55, 53, 0.1);
          box-shadow: 0rem 1rem 12rem 0 rgba(48, 55, 53, 0.1);
  background-color: #303735;
}
.button-dark:hover, .button-dark:focus {
  background-color: #803ee9;
  color: #fff;
  text-decoration: none !important;
}
.button-dark:hover, .button-dark:focus {
  background-color: #9756FF;
}

.button-dark-small {
  display: inline-block;
  font-family: "proxima-nova";
  color: #fff;
  background-color: #9756FF;
  border: 0;
  border-radius: 50rem;
  padding: 15rem 45rem 13rem 45rem;
  margin: 20rem 0;
  -webkit-transition: 0.1s ease-in;
  transition: 0.1s ease-in;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 14rem;
  line-height: 1.2;
  letter-spacing: 1rem;
  text-decoration: none !important;
  cursor: pointer;
  text-align: center;
  -webkit-box-shadow: 0rem 1rem 12rem 0 rgba(48, 55, 53, 0.1);
          box-shadow: 0rem 1rem 12rem 0 rgba(48, 55, 53, 0.1);
  padding: 8rem 20rem 7rem 20rem;
  font-size: 12rem;
  line-height: 1.2;
  background-color: #303735;
}
.button-dark-small:hover, .button-dark-small:focus {
  background-color: #803ee9;
  color: #fff;
  text-decoration: none !important;
}
.button-dark-small:hover, .button-dark-small:focus {
  background-color: #9756FF;
}

.button-stroked-white {
  display: inline-block;
  font-family: "proxima-nova";
  color: #9756FF;
  background-color: transparent;
  border: solid 2rem #9756FF;
  border-radius: 50rem;
  padding: 13rem 30rem 10rem 30rem;
  margin: 20rem 0;
  -webkit-transition: 0.1s ease-in;
  transition: 0.1s ease-in;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.25rem;
  text-decoration: none !important;
  cursor: pointer;
  color: #fff;
  border-color: #fff;
}
.button-stroked-white:hover, .button-stroked-white:focus {
  background-color: #803ee9;
  color: #fff;
  text-decoration: none !important;
}
.button-stroked-white:hover {
  background-color: #fff;
  color: #303735;
}

.button-stroked-white-small {
  display: inline-block;
  font-family: "proxima-nova";
  color: #9756FF;
  background-color: transparent;
  border: solid 2rem #9756FF;
  border-radius: 50rem;
  padding: 13rem 30rem 10rem 30rem;
  margin: 20rem 0;
  -webkit-transition: 0.1s ease-in;
  transition: 0.1s ease-in;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.25rem;
  text-decoration: none !important;
  cursor: pointer;
  color: #fff;
  border-color: #fff;
  padding: 8rem 20rem 7rem 20rem;
  font-size: 12rem;
  line-height: 1.2;
}
.button-stroked-white-small:hover, .button-stroked-white-small:focus {
  background-color: #803ee9;
  color: #fff;
  text-decoration: none !important;
}
.button-stroked-white-small:hover {
  background-color: #fff;
  color: #303735;
}

.arrowContain {
  margin: 50rem auto;
  max-width: 1024rem;
  padding: 10% 20% 10% 10% !important;
  position: relative;
  background-color: #F2F9F7 !important;
  -webkit-clip-path: polygon(0 20%, 90% 20%, 91% 0, 100% 50%, 86% 100%, 87% 80%, 0 80%);
          clip-path: polygon(0 20%, 90% 20%, 91% 0, 100% 50%, 86% 100%, 87% 80%, 0 80%);
  border: none !important;
}
@media (max-width: 768px) {
  .arrowContain {
    -webkit-clip-path: none;
            clip-path: none;
    padding: 40rem 40rem 40rem 36rem;
    margin-left: auto;
    border-left: 4rem solid #9756FF !important;
  }
}
@media (max-width: 580px) {
  .arrowContain {
    padding: 30rem 20rem 30rem 16rem;
  }
}
.arrowContain > * {
  background: none !important;
  border: none !important;
  color: #303735;
  padding: 0 !important;
  margin: 0 !important;
}
.arrowContain br {
  display: none;
}
.arrowContain a {
  color: #303735;
  font-weight: 700 !important;
}
.arrowContain span {
  color: #9756FF;
}
.arrowContain span:hover {
  color: #803ee9;
  text-decoration: underline;
}

html {
  font-size: 1px;
}

/* auto scale down elements on mobile */
@media (max-width: 580px) {
  html {
    font-size: 1px;
  }
}

/* auto scale up elements on large displays */
@media (min-width: 2560px) {
  html {
    font-size: 1px;
  }
}

section.u4m-subscribe {
  background-color: #F2F9F7;
  -webkit-clip-path: polygon(0% 20%, 90% 20%, 91% 0, 100% 50%, 86% 100%, 87% 80%, 0% 80%);
          clip-path: polygon(0% 20%, 90% 20%, 91% 0, 100% 50%, 86% 100%, 87% 80%, 0% 80%);
}
.author-listing section.u4m-subscribe {
  display: none;
}
@media (max-width: 768px) {
  section.u4m-subscribe {
    -webkit-clip-path: none;
            clip-path: none;
  }
}
section.u4m-subscribe.reverse-text {
  color: #fff;
}
section.u4m-subscribe div.inner {
  float: none;
  margin-left: auto;
  margin-right: auto;
  max-width: 1340rem;
  padding-left: 20rem;
  padding-right: 20rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 150rem 20rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 1024px) {
  section.u4m-subscribe div.inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media (max-width: 768px) {
  section.u4m-subscribe div.inner {
    padding: 50rem 20rem;
    margin: 50rem 0;
  }
}
section.u4m-subscribe div.inner div.left {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
}
section.u4m-subscribe div.inner div.left h2 {
  font-family: "proxima-nova";
  font-size: 60rem;
  font-weight: 800;
  letter-spacing: 0.25rem;
  margin-bottom: 20rem;
  line-height: 1.2;
  margin-top: 0;
  letter-spacing: 2rem;
  margin-bottom: 0;
}
@media (max-width: 580px) {
  section.u4m-subscribe div.inner div.left h2 {
    font-size: 38rem;
    margin-bottom: 20rem;
  }
}
@media (max-width: 1024px) {
  section.u4m-subscribe div.inner div.left h2 {
    text-align: center;
  }
}
@media (max-width: 580px) {
  section.u4m-subscribe div.inner div.left h2 {
    margin-bottom: 50rem;
  }
}
@media (max-width: 1024px) {
  section.u4m-subscribe div.inner div.left p {
    text-align: center;
  }
}
section.u4m-subscribe div.inner div.right {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
}
@media (max-width: 1024px) {
  section.u4m-subscribe div.inner div.right {
    margin-top: 50rem;
  }
}
@media (max-width: 580px) {
  section.u4m-subscribe div.inner div.right {
    margin-top: 0;
  }
}
section.u4m-subscribe div.inner div.right span div.submitted-message {
  text-align: center;
}
section.u4m-subscribe div.inner div.right span div.submitted-message p {
  font-weight: bold;
}
section.u4m-subscribe div.inner div.right span h3 {
  width: 100%;
  font-family: "proxima-nova";
  font-size: 24rem;
  line-height: 1.4;
  letter-spacing: 0.25rem;
  margin-bottom: 20rem;
  margin-top: 0rem;
  margin-bottom: 0;
}
@media (max-width: 580px) {
  section.u4m-subscribe div.inner div.right span h3 {
    font-size: 17rem;
  }
}
@media (max-width: 1024px) {
  section.u4m-subscribe div.inner div.right span h3 {
    font-size: 20rem;
  }
}
section.u4m-subscribe div.inner div.right span h3 + div {
  width: 100%;
}
section.u4m-subscribe div.inner div.right span div form {
  position: relative;
  margin-bottom: 0;
  margin-left: 75rem;
}
@media (max-width: 580px) {
  section.u4m-subscribe div.inner div.right span div form {
    margin-left: 0;
  }
}
section.u4m-subscribe div.inner div.right span div form div.hs_email {
  position: relative;
  margin-bottom: 10rem;
}
section.u4m-subscribe div.inner div.right span div form div.hs_email label[id^=label-email],
section.u4m-subscribe div.inner div.right span div form div.hs_email label[id*=" label-email"] {
  font-family: "proxima-nova";
  font-size: 16rem;
  line-height: 1.6;
  letter-spacing: 0.25rem;
  margin-bottom: 20rem;
  position: absolute;
  top: -15rem;
  left: 20rem;
}
@media (max-width: 580px) {
  section.u4m-subscribe div.inner div.right span div form div.hs_email label[id^=label-email],
section.u4m-subscribe div.inner div.right span div form div.hs_email label[id*=" label-email"] {
    font-size: 15rem;
  }
}
@media (max-width: 580px) {
  section.u4m-subscribe div.inner div.right span div form div.hs_email label[id^=label-email],
section.u4m-subscribe div.inner div.right span div form div.hs_email label[id*=" label-email"] {
    top: -45rem;
    left: 0;
  }
}
section.u4m-subscribe div.inner div.right span div form div.hs-richtext {
  width: 80%;
  margin-left: 20rem;
  margin-bottom: 0;
  text-align: center;
}
section.u4m-subscribe div.inner div.right span div form div.hs-richtext p {
  font-family: "proxima-nova";
  font-size: 12rem;
  line-height: 1.6;
  letter-spacing: 0.35rem;
  margin-bottom: 10rem;
  letter-spacing: 1rem;
  margin-bottom: 0;
}
@media (max-width: 580px) {
  section.u4m-subscribe div.inner div.right span div form div.hs-richtext p {
    font-size: 12rem;
  }
}
section.u4m-subscribe div.inner div.right span div form > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 580px) {
  section.u4m-subscribe div.inner div.right span div form > div {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
section.u4m-subscribe div.inner div.right span div form div.input {
  width: 85%;
  position: relative;
}
section.u4m-subscribe div.inner div.right span div form div.input input {
  border: 0;
  padding: 16rem 26rem;
  border-radius: 8rem;
  -webkit-box-shadow: -10rem 4rem 15rem 0 rgba(0, 0, 0, 0.1);
          box-shadow: -10rem 4rem 15rem 0 rgba(0, 0, 0, 0.1);
  outline: 0;
}
@media not all and (-webkit-min-device-pixel-ratio: 0), not all and (min-resolution: 0.001dpcm) {
  @supports (-webkit-appearance: none) {
    section.u4m-subscribe div.inner div.right span div form div.input input {
      padding: 13rem 26rem;
    }
  }
}
@media (max-width: 580px) {
  section.u4m-subscribe div.inner div.right span div form div.input input {
    padding: 15rem 12rem;
  }
  @media not all and (-webkit-min-device-pixel-ratio: 0), not all and (min-resolution: 0.001dpcm) {
    @supports (-webkit-appearance: none) {
      section.u4m-subscribe div.inner div.right span div form div.input input {
        padding: 13rem 26rem;
      }
    }
  }
}
section.u4m-subscribe div.inner div.right span div form div.input input::-webkit-input-placeholder {
  font-family: "proxima-nova";
  font-size: 16rem;
  line-height: 1.6;
  letter-spacing: 0.25rem;
  margin-bottom: 20rem;
  color: #303735;
  margin-bottom: 0;
}
section.u4m-subscribe div.inner div.right span div form div.input input::-moz-placeholder {
  font-family: "proxima-nova";
  font-size: 16rem;
  line-height: 1.6;
  letter-spacing: 0.25rem;
  margin-bottom: 20rem;
  color: #303735;
  margin-bottom: 0;
}
section.u4m-subscribe div.inner div.right span div form div.input input:-ms-input-placeholder {
  font-family: "proxima-nova";
  font-size: 16rem;
  line-height: 1.6;
  letter-spacing: 0.25rem;
  margin-bottom: 20rem;
  color: #303735;
  margin-bottom: 0;
}
section.u4m-subscribe div.inner div.right span div form div.input input::-ms-input-placeholder {
  font-family: "proxima-nova";
  font-size: 16rem;
  line-height: 1.6;
  letter-spacing: 0.25rem;
  margin-bottom: 20rem;
  color: #303735;
  margin-bottom: 0;
}
section.u4m-subscribe div.inner div.right span div form div.input input::placeholder {
  font-family: "proxima-nova";
  font-size: 16rem;
  line-height: 1.6;
  letter-spacing: 0.25rem;
  margin-bottom: 20rem;
  color: #303735;
  margin-bottom: 0;
}
@media (max-width: 580px) {
  section.u4m-subscribe div.inner div.right span div form div.input input::-webkit-input-placeholder {
    font-size: 15rem;
  }
  section.u4m-subscribe div.inner div.right span div form div.input input::-moz-placeholder {
    font-size: 15rem;
  }
  section.u4m-subscribe div.inner div.right span div form div.input input:-ms-input-placeholder {
    font-size: 15rem;
  }
  section.u4m-subscribe div.inner div.right span div form div.input input::-ms-input-placeholder {
    font-size: 15rem;
  }
  section.u4m-subscribe div.inner div.right span div form div.input input::placeholder {
    font-size: 15rem;
  }
}
section.u4m-subscribe div.inner div.right span div form input.hs-button {
  position: absolute;
  top: -12rem;
  right: 50rem;
  padding: 26rem 45rem;
  background-color: #9756FF;
  -webkit-clip-path: polygon(10% 16%, 86% 16%, 87% 0, 100% 50%, 79% 100%, 80% 84%, 0% 84%);
          clip-path: polygon(10% 16%, 86% 16%, 87% 0, 100% 50%, 79% 100%, 80% 84%, 0% 84%);
  font-family: "proxima-nova";
  font-size: 14rem;
  line-height: 1.6;
  letter-spacing: 0.35rem;
  margin-bottom: 20rem;
  color: #fff;
  font-weight: 900;
  border: 0;
  text-transform: uppercase;
  margin-bottom: 0;
  z-index: 2;
  -webkit-transition: 0.3s ease right;
  transition: 0.3s ease right;
  cursor: pointer;
}
@media (max-width: 580px) {
  section.u4m-subscribe div.inner div.right span div form input.hs-button {
    font-size: 13rem;
  }
}
section.u4m-subscribe div.inner div.right span div form input.hs-button:hover {
  right: 45rem;
}
@media (max-width: 580px) {
  section.u4m-subscribe div.inner div.right span div form input.hs-button {
    /*position: static;
            margin-top: 30rem;*/
    right: 0;
    padding-left: 20rem;
  }
  section.u4m-subscribe div.inner div.right span div form input.hs-button:hover {
    right: 0;
  }
}
section.u4m-subscribe div.inner div.right span div form .hs-error-msgs {
  position: absolute;
  top: -50rem;
  color: #303735;
  font-weight: bold;
  font-size: 12rem;
  width: 100%;
  margin: 0;
  padding-left: 0;
  list-style: none;
}
@media (max-width: 580px) {
  section.u4m-subscribe div.inner div.right span div form .hs-error-msgs {
    position: static;
  }
}
section.u4m-subscribe div.inner div.right span div form .hs-error-msgs li {
  margin: 0;
}
section.u4m-subscribe div.inner div.right span div form .hs-error-msgs li label {
  display: block;
  padding-left: 26rem;
}
@media (max-width: 580px) {
  section.u4m-subscribe div.inner div.right span div form .hs-error-msgs li label {
    padding-left: 0;
    padding-top: 10rem;
    text-align: center;
  }
}
section.u4m-subscribe div.inner div.right span div form .hs_error_rollup {
  display: none;
}