@charset "UTF-8";
.hide-desktop {
  display: none !important; }

.hide-mobile {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important; }

@media (max-width: 771px) {
  .hide-desktop {
    display: block !important; }
  .hide-mobile {
    display: none !important; } }

h1, h2, h3, h4, h5, h6 {
  color: #4A4A4A;
  font-family: var(--primary-font);
  font-weight: normal;
  margin: 0; }

h1, .h1 {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.5; }
  @media screen and (max-width: 320px) {
    h1, .h1 {
      font-size: 0.75rem; } }

h2, .h2 {
  line-height: 1.5;
  font-size: 1.5rem; }
  @media screen and (max-width: 320px) {
    h2, .h2 {
      font-size: 0.75rem; } }

h3, .h3 {
  font-size: 1rem; }
  @media screen and (max-width: 320px) {
    h3, .h3 {
      font-size: 0.25rem; } }

h4, .h4 {
  font-size: 1rem; }
  @media screen and (max-width: 320px) {
    h4, .h4 {
      font-size: 0.25rem; } }

.text-left {
  text-align: left; }

.text-center {
  text-align: center; }

.text-right {
  text-align: right; }

.text-justify {
  text-align: justify; }

.text-transparentize {
  opacity: .5; }

p {
  margin: 0 0 1rem; }
  p.lead {
    font-size: 1.5rem;
    font-weight: 300; }

:root {
  --border-width-base: 1px;
  --layout-base: 8px;
  --transition-base: .2s;
  --primary-font: 'Montserrat', sans-serif;
  --general-font: 'Montserrat', sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-size: calc(var(--layout-base)*2); }

*, *:before, *:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

body {
  color: #4A4A4A;
  font-family: var(--general-font);
  font-size: .875rem;
  background-color: #FFFCFB; }

table, td {
  border: 1px solid; }

@media (max-width: 425px) {
  .container.no-padding {
    padding-right: 0px;
    padding-left: 0px; }
    .container.no-padding > .row {
      margin-right: 0;
      margin-left: 0; }
      .container.no-padding > .row > .col, .container.no-padding > .row > [class*=col-] {
        padding-right: 0;
        padding-left: 0; } }

@media (max-width: 320px) {
  :root {
    font-size: calc(var(--layout-base)*1.75); } }

.about {
  margin-bottom: -3.5rem;
  padding: 5rem 0 0 0; }
  .about h1 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 2rem; }
    .about h1:before, .about h1:after {
      content: '';
      width: 5rem;
      height: .25rem;
      border-radius: .125rem;
      background-color: #0188FF; }
    @media (max-width: 979px) {
      .about h1 {
        gap: .5rem;
        line-height: 1.25; }
        .about h1:before, .about h1:after {
          width: 3rem; } }
  .about__item {
    border-radius: .25rem;
    background-color: #f9fafa;
    padding: 2rem;
    height: 100%;
    -webkit-box-shadow: 0px 0.75rem 2.5rem -1.5rem rgba(0, 0, 0, 0.5);
            box-shadow: 0px 0.75rem 2.5rem -1.5rem rgba(0, 0, 0, 0.5); }
    .about__item h3 {
      font-size: 1.5rem;
      font-weight: bold;
      margin-bottom: 1.25rem;
      letter-spacing: -.5px; }
    .about__item p {
      font-size: 1rem;
      margin-bottom: 0; }
  .about__cta {
    background: #3000bf;
    padding: 8rem 0 5rem 0; }
    .about__cta__title {
      color: white;
      text-align: center;
      font-size: 2rem;
      font-weight: bold; }
    .about__cta__button {
      margin-top: 1.25rem;
      -webkit-box-shadow: 0px 0.75rem 2.5rem -1.5rem black;
              box-shadow: 0px 0.75rem 2.5rem -1.5rem black; }
      .about__cta__button .uil {
        font-size: 1.5rem; }

@media (max-width: 979px) {
  .about {
    padding: 2.5rem 0 0 0; }
    .about__title {
      font-size: 2rem; } }

[data-anime] {
  opacity: 0;
  -webkit-transition: 800ms ease-in-out;
  transition: 800ms ease-in-out; }

[data-anime="fade"] {
  opacity: 0; }

[data-anime].animate {
  opacity: 1;
  -webkit-transform: translate(0, 0);
      -ms-transform: translate(0, 0);
          transform: translate(0, 0); }

.altCta {
  padding-block: 5rem;
  margin-top: -7rem; }
  .altCta__button {
    display: inline-block;
    border-radius: 0.5rem;
    background-color: #0188FF;
    -webkit-box-shadow: 0px 14px 24px 0px rgba(1, 136, 255, 0.26);
            box-shadow: 0px 14px 24px 0px rgba(1, 136, 255, 0.26);
    font-size: 1.5rem;
    color: #FFFCFB;
    font-weight: 900;
    padding: 1rem 15rem;
    -webkit-transition: all 0.1s ease-in;
    transition: all 0.1s ease-in; }
    .altCta__button:hover {
      -webkit-transform: scale(0.95);
          -ms-transform: scale(0.95);
              transform: scale(0.95);
      color: #FFFCFB; }
  .altCta__hyper {
    text-transform: uppercase;
    margin-top: 1rem;
    color: #060200 !important;
    font-size: 1.25rem;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    -webkit-transition: all 0.1s ease-in;
    transition: all 0.1s ease-in; }
    .altCta__hyper:hover {
      -webkit-transform: scale(0.95);
          -ms-transform: scale(0.95);
              transform: scale(0.95);
      color: #060200; }
    .altCta__hyper p {
      display: inline-block;
      -webkit-text-decoration-line: underline;
              text-decoration-line: underline;
      font-weight: 900;
      color: #0188FF; }
  .altCta__hyperForm {
    margin-top: 1rem;
    text-transform: uppercase;
    color: #FFFCFB;
    font-size: 1.25rem;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    -webkit-transition: all 0.1s ease-in;
    transition: all 0.1s ease-in; }
    .altCta__hyperForm:hover {
      -webkit-transform: scale(0.95);
          -ms-transform: scale(0.95);
              transform: scale(0.95);
      color: #FFFCFB; }
    .altCta__hyperForm p {
      display: inline-block;
      -webkit-text-decoration-line: underline;
              text-decoration-line: underline;
      font-weight: 900;
      color: #0188FF; }

@media (max-width: 979px) {
  .altCta__button {
    padding: 1rem 1.5rem;
    width: 100%; }
  .altCta__hyper {
    margin-top: 1rem;
    color: #060200;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    -webkit-transition: all 0.1s ease-in;
    transition: all 0.1s ease-in; }
    .altCta__hyper:hover {
      -webkit-transform: scale(0.95);
          -ms-transform: scale(0.95);
              transform: scale(0.95);
      color: #060200; }
    .altCta__hyper p {
      display: inline-block;
      -webkit-text-decoration-line: underline;
              text-decoration-line: underline;
      font-weight: 900;
      color: #0188FF; } }

.cta {
  background-color: #0188FF;
  padding-block: 5rem; }
  .cta__text {
    color: #FFFCFB;
    font-size: 1.25rem;
    font-weight: 700; }
  .cta__button {
    display: inline-block;
    text-align: center;
    border-radius: 0.5rem;
    background: #000C17;
    -webkit-box-shadow: 0px 14px 24px 0px rgba(1, 136, 255, 0.26);
            box-shadow: 0px 14px 24px 0px rgba(1, 136, 255, 0.26);
    padding: 1rem 0;
    width: 100%;
    color: #FFFCFB;
    font-size: 1.5rem;
    font-weight: 900;
    -webkit-transition: all 0.1s ease-in;
    transition: all 0.1s ease-in; }
    .cta__button:hover {
      -webkit-transform: scale(0.95);
          -ms-transform: scale(0.95);
              transform: scale(0.95);
      color: #FFFCFB; }

@media (max-width: 979px) {
  .cta__text {
    text-align: center; }
  .cta__button {
    margin-top: 1.5rem; } }

.aca {
  padding-block: 1rem; }
  .aca__title {
    color: #1C4AC0;
    font-size: 2rem;
    font-weight: 700; }
  .aca__text {
    margin-top: 1rem;
    color: black;
    font-size: 1rem;
    font-weight: 500; }

a {
  text-decoration: none; }
  a.link_grad {
    background: #7054ed;
    background: -webkit-gradient(linear, left top, right top, from(#7054ed), to(#3000bf));
    background: linear-gradient(90deg, #7054ed 0%, #3000bf 100%);
    color: white;
    letter-spacing: 2px;
    font-weight: bold;
    border-radius: 2px;
    padding: 0.7rem 1.25rem;
    margin-top: 1rem;
    display: inline-block;
    -webkit-transition: all ease 0.4s;
    transition: all ease 0.4s; }
    a.link_grad:hover {
      -webkit-box-shadow: 0px 0px 46px 7px rgba(48, 0, 191, 0.29);
              box-shadow: 0px 0px 46px 7px rgba(48, 0, 191, 0.29); }

.posts__wrapper {
  color: #0d0033;
  padding-top: 6rem;
  background-color: #FCFDFF;
  overflow: hidden; }
  .posts__wrapper .posts {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 4rem; }
    .posts__wrapper .posts img {
      margin-right: 2rem; }
    .posts__wrapper .posts:nth-child(even) {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: reverse;
          -ms-flex-direction: row-reverse;
              flex-direction: row-reverse;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      -webkit-box-align: baseline;
          -ms-flex-align: baseline;
              align-items: baseline; }

.posts__container {
  padding: 0 2rem; }
  .posts__container h2 {
    font-size: 2.5rem;
    color: #4a4a4a;
    font-weight: bold;
    line-height: 1;
    margin-bottom: 1.75rem; }
    @media (max-width: 979px) {
      .posts__container h2 {
        font-size: 2.2rem;
        line-height: 1;
        margin-bottom: 1rem; } }
  .posts__container p {
    color: #747474; }

.extraButton {
  padding-bottom: 2rem; }
  .extraButton__button {
    display: inline-block;
    text-decoration: none;
    text-align: center;
    color: white;
    font-size: 1.25rem;
    font-weight: 700;
    border-radius: .75rem;
    background-image: linear-gradient(45deg, var(--primary-color), var(--primary-color-hover));
    padding: 1.25rem;
    width: 70%;
    -webkit-transition: .2s ease-in-out;
    transition: .2s ease-in-out; }
    .extraButton__button:hover {
      opacity: .9;
      color: white; }
  .extraButton__hyper {
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    color: var(--primary-color);
    font-size: 1.25rem;
    font-weight: 700;
    width: 30%;
    padding: .75rem 0;
    -webkit-transition: .2s ease-in-out;
    transition: .2s ease-in-out; }
    .extraButton__hyper:hover {
      opacity: .9;
      color: var(--primary-color); }

.button {
  background: #576175;
  border: 0 solid transparent;
  color: white;
  border-radius: .25rem;
  cursor: pointer;
  display: inline-block;
  font-family: var(--general-font);
  font-size: 0.75rem;
  font-weight: bold;
  line-height: 1rem;
  padding: .5rem 1rem;
  position: relative;
  text-align: center;
  text-decoration: none;
  -webkit-transition: .2s ease-in-out;
  transition: .2s ease-in-out; }
  .button:focus {
    outline: 0 none; }
  .button:hover {
    background: #626d84;
    text-decoration: none;
    color: white; }
  .button:disabled {
    cursor: default;
    opacity: .5; }
    .button:disabled:hover {
      background: #576175; }
  .button.link {
    color: #576175;
    background: none;
    background-color: transparent;
    border: 0 solid;
    font-weight: normal; }
    .button.link:hover {
      color: #414958; }
  .button-group .button {
    margin-bottom: .5rem; }
    .button-group .button:last-child {
      margin-bottom: 0; }
  .button.block {
    display: block;
    width: 100%; }
  .button.primary {
    background: #FF4901;
    border: 0 solid transparent;
    color: white; }
    .button.primary:focus {
      outline: 0 none; }
    .button.primary:hover {
      background: #ff5b1b;
      text-decoration: none;
      color: white; }
    .button.primary:disabled {
      cursor: default;
      opacity: .5; }
      .button.primary:disabled:hover {
        background: #FF4901; }
    .button.primary.link {
      color: #FF4901;
      background: none;
      background-color: transparent;
      border: 0 solid;
      font-weight: normal; }
      .button.primary.link:hover {
        color: #cd3a00; }
    .button.primary:hover {
      text-decoration: none; }
  .button.secondary {
    background: #576175;
    border: 0 solid transparent;
    color: white; }
    .button.secondary:focus {
      outline: 0 none; }
    .button.secondary:hover {
      background: #626d84;
      text-decoration: none;
      color: white; }
    .button.secondary:disabled {
      cursor: default;
      opacity: .5; }
      .button.secondary:disabled:hover {
        background: #576175; }
    .button.secondary.link {
      color: #576175;
      background: none;
      background-color: transparent;
      border: 0 solid;
      font-weight: normal; }
      .button.secondary.link:hover {
        color: #414958; }
  .button.big {
    padding: .75rem;
    font-size: .875rem; }
  .button.bigger {
    padding: 1rem;
    font-size: 1rem; }
  .button.biggest {
    padding: 1.25rem;
    font-size: 1.25rem; }
  .button.glow {
    -webkit-box-shadow: 0px 0.75rem 2.5rem -0.75rem rgba(255, 73, 1, 0.75);
            box-shadow: 0px 0.75rem 2.5rem -0.75rem rgba(255, 73, 1, 0.75); }
    .button.glow:hover {
      -webkit-box-shadow: 0px 0.75rem 2.5rem -0.75rem #ff4901;
              box-shadow: 0px 0.75rem 2.5rem -0.75rem #ff4901; }

.tcpa-answer, .tcpa-answer-in, .bt-continue, #optout-form .btn.btn-primary {
  background: #00a09e;
  border-radius: .25rem !important;
  border: none;
  color: white !important;
  display: block;
  font-family: var(--general-font);
  font-size: 1rem !important;
  font-weight: bold;
  line-height: 1rem;
  padding: 1rem 1.75rem;
  position: relative;
  text-align: center;
  text-decoration: none;
  -webkit-transition: .2s;
  transition: .2s;
  min-width: auto;
  height: auto !important;
  margin-bottom: 0px !important;
  margin-right: 0px;
  width: 100%;
  cursor: pointer; }

.bt-continue {
  margin-left: 10px;
  width: auto; }

@media (max-width: 979px) {
  .extraButton__button {
    width: 100%;
    padding: .75rem 0rem; }
  .extraButton__hyper {
    width: 100%; } }

.brands {
  background-color: #E3E3E8;
  padding: 2rem;
  border-radius: .25rem; }
  .brands__item {
    max-width: 10rem;
    max-height: 3rem;
    -webkit-filter: saturate(0);
            filter: saturate(0);
    mix-blend-mode: multiply;
    opacity: .75; }

@media (max-width: 979px) {
  .brands {
    display: none; } }

.check__label {
  color: #576675;
  font-size: .75rem;
  font-weight: 400;
  line-height: 1rem;
  width: 100%;
  padding-left: 2.5rem;
  margin: 0 0 1.5rem;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }

.check__input {
  left: 0; }

.clickOffer {
  background-color: white; }
  .clickOffer__loadingTitle {
    font-size: 1.5rem;
    text-align: center;
    -webkit-transition: 800ms ease-in-out;
    transition: 800ms ease-in-out;
    -webkit-transition-delay: 200ms;
            transition-delay: 200ms;
    opacity: 0;
    margin: 0; }
    .clickOffer__loadingTitle--show {
      opacity: 1;
      margin: 2rem 0; }
  .clickOffer__placeholder {
    width: 100%;
    height: 5rem;
    -webkit-animation: placeholderLoading 2s linear infinite;
            animation: placeholderLoading 2s linear infinite;
    background: linear-gradient(-60deg, #f7f5f5, #f7f5f5, rgba(255, 255, 255, 0), #f7f5f5, #f7f5f5);
    background-size: 500%;
    margin-bottom: 2rem;
    border-radius: .25rem; }
  .clickOffer__header {
    background: radial-gradient(circle, #0188FF, #0188FF 125%);
    border-radius: .25rem;
    padding: 4rem 0; }
    .clickOffer__header h1 {
      font-weight: bold;
      font-size: 2rem;
      margin-bottom: 0rem;
      line-height: 1.25;
      margin-bottom: .5rem; }
    .clickOffer__header h2 {
      font-size: 1.25rem; }
  .clickOffer__container {
    font-size: 1rem;
    margin-top: 2rem; }
  .clickOffer__item {
    padding: 2rem 0;
    border: 1px solid #e3e5e8;
    border-top: none;
    position: relative; }
    .clickOffer__item:first-child {
      border-top: 1px solid #e3e5e8;
      border-radius: .25rem .25rem 0 0; }
      .clickOffer__item:first-child:before {
        content: 'Top Choice';
        position: absolute;
        top: -1px;
        left: -1px;
        font-size: .75rem;
        padding: 0.325rem .5rem;
        line-height: 1;
        background: #0188FF;
        color: white;
        border-radius: 0.25rem 0; }
    .clickOffer__item:last-child {
      border-radius: 0 0 .25rem .25rem; }
    .clickOffer__item ul {
      padding: 0;
      margin-bottom: 0; }
  .clickOffer__image {
    max-width: 75%;
    height: auto;
    max-height: 5rem; }
  .clickOffer__bodyContent--mobile {
    max-height: 0;
    -webkit-transition: 200ms;
    transition: 200ms;
    overflow: hidden; }
  .clickOffer__link {
    display: block;
    color: #0188FF;
    text-decoration: underline;
    font-weight: bold;
    margin-top: 1rem; }
    .clickOffer__link:hover {
      color: #0188FF; }
  .clickOffer__showMore {
    padding: 1rem;
    text-align: center;
    background: #f7f5f5;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 1rem;
    border-radius: 0.125rem; }

@media (max-width: 979px) {
  .clickOffer {
    padding: 0;
    border: none;
    margin-top: 0; }
    .clickOffer__header {
      padding: 1.5rem .5rem;
      border: none; }
      .clickOffer__header h1 {
        font-size: 1.5rem; }
      .clickOffer__header h2 {
        font-size: 1rem; }
    .clickOffer__item {
      padding: 1rem; }
      .clickOffer__item ul {
        list-style: none; }
        .clickOffer__item ul li {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          padding-bottom: 0.5rem; }
          .clickOffer__item ul li:last-child {
            padding-bottom: 0; }
          .clickOffer__item ul li::before {
            content: '•';
            margin-right: 0.5rem;
            -ms-flex-item-align: baseline;
                align-self: baseline; }
      .clickOffer__item:first-child:before {
        font-size: .75rem;
        padding: 0.325rem .5rem; } }

@-webkit-keyframes placeholderLoading {
  0% {
    background-position: 125% 0; }
  100% {
    background-position: 0% 0; } }

@keyframes placeholderLoading {
  0% {
    background-position: 125% 0; }
  100% {
    background-position: 0% 0; } }

.clickToCall {
  text-align: center;
  padding: 5rem 0; }
  .clickToCall h1 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 2rem; }
    .clickToCall h1:before, .clickToCall h1:after {
      content: '';
      width: 5rem;
      height: .25rem;
      border-radius: .125rem;
      background-color: #0188FF; }
    @media (max-width: 979px) {
      .clickToCall h1 {
        gap: .5rem;
        line-height: 1.25; }
        .clickToCall h1:before, .clickToCall h1:after {
          width: 3rem; } }
  .clickToCall__title {
    margin-bottom: 1.5rem; }
  .clickToCall__text {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    font-weight: normal; }
  .clickToCall__button {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    gap: .5rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    .clickToCall__button .uil {
      font-size: 1.5rem; }

@media (max-width: 979px) {
  .clickToCall__text {
    font-size: 1rem;
    margin-bottom: 2rem;
    font-weight: normal; } }

.confirmation__contentCall {
  margin-bottom: 0px !important;
  padding-block: 0px !important;
  font-weight: 800;
  color: white;
  display: block;
  padding-block: 0.5rem;
  -webkit-animation: text-number-animation 1.0s ease-in-out alternate infinite;
          animation: text-number-animation 1.0s ease-in-out alternate infinite; }

.confirmation__content h4 {
  font-size: 1.5rem;
  text-align: center;
  font-weight: 800;
  padding-top: 1rem;
  color: #26130D; }

.confirmation__buttonEdit {
  background-color: #40b038;
  display: block;
  margin-block: 1rem;
  padding: 0.5rem;
  text-align: center;
  font-size: 1.25rem;
  color: #fff;
  font-weight: 700;
  border-radius: 0.5rem;
  -webkit-animation: button-ctc-animation 1.0s ease-in-out alternate infinite;
          animation: button-ctc-animation 1.0s ease-in-out alternate infinite;
  width: 300px;
  border: 1px solid #0188FF;
  margin: 1rem auto; }
  .confirmation__buttonEdit p {
    margin: 0; }
  .confirmation__buttonEdit:hover {
    color: white; }

.confirmation__background {
  background: -webkit-gradient(linear, right top, left top, from(#0066BF), to(#3DA5FF));
  background: linear-gradient(270deg, #0066BF 0%, #3DA5FF 100%); }

.confirmation__backgroundAgent {
  background-color: white; }

.confirmation__image {
  padding-top: 1rem;
  content: url(../img/agent-call.svg);
  width: 100%;
  height: 100%;
  background-size: cover;
  margin: 0; }

.confirmation__agent {
  width: 100%;
  text-align: center; }
  .confirmation__agent p {
    padding-block: 0.5rem;
    font-size: 1.25rem;
    color: #26130D;
    -webkit-animation: text-ctc-animation 1.0s ease-in-out alternate infinite;
            animation: text-ctc-animation 1.0s ease-in-out alternate infinite;
    margin-top: 10px;
    margin-bottom: 10px; }
    .confirmation__agent p b {
      font-size: 1.5rem;
      color: #0188FF; }

.confirmation__content h3 {
  font-size: 1.25rem;
  text-align: center;
  font-weight: 800;
  padding-top: 1rem;
  color: #FAECE5; }

.confirmation__content h2 {
  font-size: 1.25rem;
  text-align: center;
  padding-top: 1rem;
  color: #FAECE5; }
  .confirmation__content h2 a {
    font-weight: 800;
    color: white;
    display: block;
    padding-block: 0.5rem;
    -webkit-animation: text-number-animation 1.0s ease-in-out alternate infinite;
            animation: text-number-animation 1.0s ease-in-out alternate infinite; }

.confirmation__content p {
  text-align: center;
  color: white; }

.custom-submit-button-animation {
  -webkit-animation: button-ctc-animation 1.0s ease-in-out alternate infinite;
          animation: button-ctc-animation 1.0s ease-in-out alternate infinite; }

@-webkit-keyframes button-ctc-animation {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1); }
  100% {
    -webkit-transform: scale(1.03);
            transform: scale(1.03);
    -webkit-box-shadow: white 1px 0 10px;
            box-shadow: white 1px 0 10px; } }

@keyframes button-ctc-animation {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1); }
  100% {
    -webkit-transform: scale(1.03);
            transform: scale(1.03);
    -webkit-box-shadow: white 1px 0 10px;
            box-shadow: white 1px 0 10px; } }

@-webkit-keyframes text-ctc-animation {
  0% {
    -webkit-transform: scale(1) rotate(2deg);
            transform: scale(1) rotate(2deg); }
  100% {
    -webkit-transform: rotate(-2deg);
            transform: rotate(-2deg);
    text-shadow: #FC0 1px 0 10px; } }

@keyframes text-ctc-animation {
  0% {
    -webkit-transform: scale(1) rotate(2deg);
            transform: scale(1) rotate(2deg); }
  100% {
    -webkit-transform: rotate(-2deg);
            transform: rotate(-2deg);
    text-shadow: #FC0 1px 0 10px; } }

@-webkit-keyframes text-number-animation {
  0% { }
  100% {
    text-shadow: #FC0 1px 0 10px; } }

@keyframes text-number-animation {
  0% { }
  100% {
    text-shadow: #FC0 1px 0 10px; } }

@media (max-width: 979px) {
  .confirmation__image {
    margin-left: auto;
    margin-right: auto;
    display: block;
    width: 55%; } }

.altCta {
  padding-block: 5rem;
  margin-top: -7rem; }
  .altCta__button {
    display: inline-block;
    border-radius: 0.5rem;
    background-color: #0188FF;
    -webkit-box-shadow: 0px 14px 24px 0px rgba(1, 136, 255, 0.26);
            box-shadow: 0px 14px 24px 0px rgba(1, 136, 255, 0.26);
    font-size: 1.5rem;
    color: #FFFCFB;
    font-weight: 900;
    padding: 1rem 15rem;
    -webkit-transition: all 0.1s ease-in;
    transition: all 0.1s ease-in; }
    .altCta__button:hover {
      -webkit-transform: scale(0.95);
          -ms-transform: scale(0.95);
              transform: scale(0.95);
      color: #FFFCFB; }
  .altCta__hyper {
    text-transform: uppercase;
    margin-top: 1rem;
    color: #060200 !important;
    font-size: 1.25rem;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    -webkit-transition: all 0.1s ease-in;
    transition: all 0.1s ease-in; }
    .altCta__hyper:hover {
      -webkit-transform: scale(0.95);
          -ms-transform: scale(0.95);
              transform: scale(0.95);
      color: #060200; }
    .altCta__hyper p {
      display: inline-block;
      -webkit-text-decoration-line: underline;
              text-decoration-line: underline;
      font-weight: 900;
      color: #0188FF; }
  .altCta__hyperForm {
    margin-top: 1rem;
    text-transform: uppercase;
    color: #FFFCFB;
    font-size: 1.25rem;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    -webkit-transition: all 0.1s ease-in;
    transition: all 0.1s ease-in; }
    .altCta__hyperForm:hover {
      -webkit-transform: scale(0.95);
          -ms-transform: scale(0.95);
              transform: scale(0.95);
      color: #FFFCFB; }
    .altCta__hyperForm p {
      display: inline-block;
      -webkit-text-decoration-line: underline;
              text-decoration-line: underline;
      font-weight: 900;
      color: #0188FF; }

@media (max-width: 979px) {
  .altCta__button {
    padding: 1rem 1.5rem;
    width: 100%; }
  .altCta__hyper {
    margin-top: 1rem;
    color: #060200;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    -webkit-transition: all 0.1s ease-in;
    transition: all 0.1s ease-in; }
    .altCta__hyper:hover {
      -webkit-transform: scale(0.95);
          -ms-transform: scale(0.95);
              transform: scale(0.95);
      color: #060200; }
    .altCta__hyper p {
      display: inline-block;
      -webkit-text-decoration-line: underline;
              text-decoration-line: underline;
      font-weight: 900;
      color: #0188FF; } }

.faq {
  padding: 5rem 0; }
  .faq h1 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 2rem; }
    .faq h1:before, .faq h1:after {
      content: '';
      width: 5rem;
      height: .25rem;
      border-radius: .125rem;
      background-color: #0188FF; }
    @media (max-width: 979px) {
      .faq h1 {
        gap: .5rem;
        line-height: 1.25; }
        .faq h1:before, .faq h1:after {
          width: 3rem; } }
  .faq-list {
    overflow: hidden; }
  .faq-item {
    position: relative;
    border-bottom: 1px solid #e3e5e8; }
  .faq-question {
    cursor: pointer;
    margin-bottom: 0;
    padding-right: 4rem;
    padding: 1.5rem 0;
    font-size: 1.5rem;
    font-weight: normal; }
    .faq-question:hover {
      color: #0188FF; }
  .faq-answer {
    max-height: 0;
    overflow: hidden;
    font-size: 1rem;
    -webkit-transition: max-height .2s ease-in-out;
    transition: max-height .2s ease-in-out; }
    .faq-answer p {
      margin-bottom: 1.5rem; }

@media (max-width: 768px) {
  .faq-question {
    padding: 1rem 0;
    font-size: 1rem;
    line-height: 1.5rem; }
  .faq-answer {
    font-size: .875rem; }
    .faq-answer p {
      margin-bottom: 1rem; }
  .faq-toggle-button {
    top: 1rem;
    right: 1rem;
    width: 1.5rem;
    height: 1.5rem; }
    .faq-toggle-button:before, .faq-toggle-button:after {
      width: .75rem; } }

.flow {
  min-height: calc(100vh - 170px);
  margin-top: 1rem;
  background-color: #f2f3f4; }
  @media (max-width: 979px) {
    .flow {
      min-height: calc(100vh - 250px); } }
  .flow__img {
    position: relative; }
    .flow__img img {
      height: 4rem;
      z-index: 100;
      top: 0;
      right: 0;
      width: 6rem;
      -o-object-fit: cover;
         object-fit: cover;
      overflow: hidden;
      border-radius: .25rem;
      position: absolute;
      -webkit-box-shadow: 0 1.25rem 1rem -0.25rem rgba(99, 99, 99, 0.5);
              box-shadow: 0 1.25rem 1rem -0.25rem rgba(99, 99, 99, 0.5); }
  .flow__progress {
    padding: 24px 0 0;
    background: #f2f3f4; }
    @media (max-width: 979px) {
      .flow__progress {
        padding: 10px 0 0; } }
    .flow__progress h2 {
      font-size: 1.25rem;
      font-weight: bold;
      color: #0d0033; }
    .flow__progress p {
      color: #0d0033;
      opacity: .8;
      font-size: 1rem;
      margin-bottom: 0;
      font-weight: normal; }
      @media (max-width: 979px) {
        .flow__progress p {
          margin-bottom: 10px !important; } }
  .flow__container {
    padding: 2rem 0; }
    @media (max-width: 979px) {
      .flow__container {
        padding: 1rem 0; } }

@media (max-width: 425px) {
  .flow {
    border-radius: 0;
    padding: 0;
    border: none; }
    .flow__img {
      right: calc(50% - 4rem);
      top: -1rem;
      width: 8rem; } }

.register__form input[type="radio"] {
  display: inline-block; }

.register__form input[type="checkbox"] {
  width: 24px !important; }

.register__form input#zip {
  border: 2px solid #0188FF; }

.register__form .cf_bool {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }

.register__form .html-custom {
  font-size: 16px;
  padding: 0;
  margin: 0; }

.register__form .custom-label label {
  font-size: 18px;
  margin: 0 0 10px;
  padding: 0;
  font-weight: bold; }

.register__form .label-left {
  text-align: left !important; }

.register__form .label-center {
  text-align: center !important; }

.register__form .radio-box > .path-dynamic-field,
.register__form .radio-box > .path-form-field-with-feedback,
.register__form .radio-box > .path-form-field-with-feedback-control,
.register__form .radio-box > .path-cf-radio {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%; }
  .register__form .radio-box > .path-dynamic-field label,
  .register__form .radio-box > .path-form-field-with-feedback label,
  .register__form .radio-box > .path-form-field-with-feedback-control label,
  .register__form .radio-box > .path-cf-radio label {
    width: 100%;
    font-size: 1.25rem;
    color: #100434; }
    @media (max-width: 979px) {
      .register__form .radio-box > .path-dynamic-field label,
      .register__form .radio-box > .path-form-field-with-feedback label,
      .register__form .radio-box > .path-form-field-with-feedback-control label,
      .register__form .radio-box > .path-cf-radio label {
        margin-top: 0; } }
  .register__form .radio-box > .path-dynamic-field .cf_bool,
  .register__form .radio-box > .path-form-field-with-feedback .cf_bool,
  .register__form .radio-box > .path-form-field-with-feedback-control .cf_bool,
  .register__form .radio-box > .path-cf-radio .cf_bool {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    width: 100%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between; }
  .register__form .radio-box > .path-dynamic-field input[type="checkbox"],
  .register__form .radio-box > .path-form-field-with-feedback input[type="checkbox"],
  .register__form .radio-box > .path-form-field-with-feedback-control input[type="checkbox"],
  .register__form .radio-box > .path-cf-radio input[type="checkbox"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: none;
    border-radius: 0.1875rem;
    content: "";
    cursor: pointer;
    position: absolute;
    height: 1.25rem !important;
    width: 1.25rem !important;
    border: 2px solid #3d3d3d; }
    .register__form .radio-box > .path-dynamic-field input[type="checkbox"]:focus,
    .register__form .radio-box > .path-form-field-with-feedback input[type="checkbox"]:focus,
    .register__form .radio-box > .path-form-field-with-feedback-control input[type="checkbox"]:focus,
    .register__form .radio-box > .path-cf-radio input[type="checkbox"]:focus {
      outline: none; }
    .register__form .radio-box > .path-dynamic-field input[type="checkbox"]:checked,
    .register__form .radio-box > .path-form-field-with-feedback input[type="checkbox"]:checked,
    .register__form .radio-box > .path-form-field-with-feedback-control input[type="checkbox"]:checked,
    .register__form .radio-box > .path-cf-radio input[type="checkbox"]:checked {
      border: none;
      background: url(../img/check.svg), #00a09e;
      background-size: cover; }
  .register__form .radio-box > .path-dynamic-field input[type="radio"],
  .register__form .radio-box > .path-form-field-with-feedback input[type="radio"],
  .register__form .radio-box > .path-form-field-with-feedback-control input[type="radio"],
  .register__form .radio-box > .path-cf-radio input[type="radio"] {
    display: none; }
    .register__form .radio-box > .path-dynamic-field input[type="radio"]:hover + span,
    .register__form .radio-box > .path-form-field-with-feedback input[type="radio"]:hover + span,
    .register__form .radio-box > .path-form-field-with-feedback-control input[type="radio"]:hover + span,
    .register__form .radio-box > .path-cf-radio input[type="radio"]:hover + span {
      background-color: #0188FF !important;
      color: white !important; }
    .register__form .radio-box > .path-dynamic-field input[type="radio"] + span,
    .register__form .radio-box > .path-form-field-with-feedback input[type="radio"] + span,
    .register__form .radio-box > .path-form-field-with-feedback-control input[type="radio"] + span,
    .register__form .radio-box > .path-cf-radio input[type="radio"] + span {
      -webkit-transition: all 0.4s ease;
      transition: all 0.4s ease;
      background: #f3f0f0;
      -webkit-font-smoothing: antialiased;
      border-radius: 2px;
      border: 1px solid #fff;
      color: #340391 !important;
      cursor: pointer;
      display: block;
      font-weight: 700;
      margin: 0;
      padding: 0.5rem;
      position: relative;
      text-align: center;
      width: 100%;
      font-size: 15px; }
    .register__form .radio-box > .path-dynamic-field input[type="radio"]:checked + span,
    .register__form .radio-box > .path-form-field-with-feedback input[type="radio"]:checked + span,
    .register__form .radio-box > .path-form-field-with-feedback-control input[type="radio"]:checked + span,
    .register__form .radio-box > .path-cf-radio input[type="radio"]:checked + span {
      background: #0188FF !important;
      color: white !important; }
    .register__form .radio-box > .path-dynamic-field input[type="radio"]:focus,
    .register__form .radio-box > .path-form-field-with-feedback input[type="radio"]:focus,
    .register__form .radio-box > .path-form-field-with-feedback-control input[type="radio"]:focus,
    .register__form .radio-box > .path-cf-radio input[type="radio"]:focus {
      outline: none; }

.register__form .radio-box.text-left .cf_bool label span {
  text-align: left !important; }

.register__form .radio-box.text-left input[type="radio"] + span {
  text-align: left !important; }

.register__form .radio-box.text-center .cf_bool label span {
  text-align: left !important; }

.register__form .radio-box.text-center input[type="radio"] + span {
  text-align: center !important; }

.register__form .radio-box.x-1 .cf_radio,
.register__form .radio-box.x-1 .cf_bool,
.register__form .radio-box.x-1 .cf_bool__label,
.register__form .radio-box.x-1 .path-form-field-with-feedback {
  width: 100% !important; }

.register__form .radio-box.x-1 .cf_bool,
.register__form .radio-box.x-1 .path-form-field-with-feedback {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap; }
  .register__form .radio-box.x-1 .cf_bool label,
  .register__form .radio-box.x-1 .path-form-field-with-feedback label {
    width: 100% !important; }

.register__form .radio-box.x-2 .cf_radio,
.register__form .radio-box.x-2 .cf_bool__label {
  width: 49% !important; }

.register__form .radio-box.x-2 .cf_bool,
.register__form .radio-box.x-2 .path-dynamic-field,
.register__form .radio-box.x-2 .path-form-field-with-feedback-control,
.register__form .radio-box.x-2 .path-cf-radio,
.register__form .radio-box.x-2 .path-form-field-with-feedback {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap; }
  .register__form .radio-box.x-2 .cf_bool label[for="gender_m_radio"], .register__form .radio-box.x-2 .cf_bool label[for="gender_f_radio"],
  .register__form .radio-box.x-2 .path-dynamic-field label[for="gender_m_radio"],
  .register__form .radio-box.x-2 .path-dynamic-field label[for="gender_f_radio"],
  .register__form .radio-box.x-2 .path-form-field-with-feedback-control label[for="gender_m_radio"],
  .register__form .radio-box.x-2 .path-form-field-with-feedback-control label[for="gender_f_radio"],
  .register__form .radio-box.x-2 .path-cf-radio label[for="gender_m_radio"],
  .register__form .radio-box.x-2 .path-cf-radio label[for="gender_f_radio"],
  .register__form .radio-box.x-2 .path-form-field-with-feedback label[for="gender_m_radio"],
  .register__form .radio-box.x-2 .path-form-field-with-feedback label[for="gender_f_radio"] {
    width: 49% !important; }

.register__form .radio-box.x-3 .cf_radio,
.register__form .radio-box.x-3 .cf_bool__label {
  width: 32% !important; }

.register__form .radio-box.x-3 .cf_bool,
.register__form .radio-box.x-3 .path-dynamic-field,
.register__form .radio-box.x-3 .path-form-field-with-feedback-control,
.register__form .radio-box.x-3 .path-cf-radio,
.register__form .radio-box.x-3 .path-form-field-with-feedback {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap; }

.register__form .radio-box.x-4 .cf_radio,
.register__form .radio-box.x-4 .cf_bool__label {
  width: 24% !important; }

.register__form .radio-box.x-4 .cf_bool,
.register__form .radio-box.x-4 .path-dynamic-field,
.register__form .radio-box.x-4 .path-form-field-with-feedback-control,
.register__form .radio-box.x-4 .path-cf-radio,
.register__form .radio-box.x-4 .path-form-field-with-feedback {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap; }

.register__form .radio-box .cf_bool label {
  width: 50%;
  text-align: center; }

.register__form .radio-box input[type="radio"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: none;
  border-radius: 0.1875rem;
  content: "";
  cursor: pointer;
  position: absolute;
  height: 1.25rem !important;
  width: 1.25rem !important;
  border: 2px solid #3d3d3d; }
  .register__form .radio-box input[type="radio"]:focus {
    outline: none; }
  .register__form .radio-box input[type="radio"]:checked {
    border: none;
    background: url(../img/check.svg), #00a09e;
    background-size: cover; }

.formEdit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  padding-block: 5rem; }
  .formEdit__title {
    color: #FFFCFB;
    font-size: 2rem;
    font-weight: 800; }
    .formEdit__title:after {
      content: "";
      background: #0188FF;
      height: 4px;
      left: 0;
      width: 190px;
      margin-top: 1rem;
      display: block; }
  .formEdit__text {
    color: #EBF6FF;
    font-size: 1.5rem;
    font-weight: 500; }
  .formEdit__stepBg {
    background-color: #F5FAFF;
    border-radius: 8px;
    padding: 1rem 1rem; }

@media (max-width: 979px) {
  .formEdit {
    width: 99%;
    margin: 0 auto; }
    .formEdit__title {
      color: #FFFCFB;
      font-size: 2rem;
      font-weight: 800; }
      .formEdit__title:after {
        content: "";
        background: #0188FF;
        height: 4px;
        left: 0;
        width: 190px;
        margin-top: 1rem;
        display: block; }
    .formEdit__text {
      color: #EBF6FF;
      font-size: 1.5rem;
      font-weight: 500; } }

.hero {
  --hero-padding: 3rem;
  --hero-margin: 3.5rem;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 50vh;
  padding: var(--hero-padding) 0 calc(var(--hero-padding) + var(--hero-margin)) 0;
  margin-bottom: calc(var(--hero-margin) * -1);
  background-image: -webkit-gradient(linear, left top, left bottom, from(white), to(#f4f4f6));
  background-image: linear-gradient(white, #f4f4f6); }
  .hero__title {
    font-size: 3rem;
    line-height: 1;
    font-weight: bold;
    margin-bottom: 1.5rem;
    letter-spacing: -1px; }
  .hero__subtitle {
    font-size: 1.5rem;
    line-height: 1.333333333;
    margin-bottom: 2.5rem; }
  .hero__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
    background-color: white;
    padding: 1.5rem;
    -webkit-box-shadow: 0px 0.75rem 2.5rem -1.5rem rgba(143, 150, 163, 0.5);
            box-shadow: 0px 0.75rem 2.5rem -1.5rem rgba(143, 150, 163, 0.5);
    border-radius: .25rem;
    height: 100%; }
    .hero__item__image {
      width: 5rem;
      height: 5rem;
      margin: 2rem auto; }
      .hero__item__image img {
        width: 100%;
        -o-object-fit: cover;
           object-fit: cover; }
    .hero__item__title {
      font-size: 2rem;
      font-weight: bold;
      line-height: 1;
      letter-spacing: -.5px;
      margin-bottom: 1rem;
      text-align: center; }
    .hero__item__text {
      font-size: 1rem;
      line-height: 1.5;
      margin-bottom: 1.5rem;
      text-align: center; }
    .hero__item--small {
      padding: 1rem; }
      .hero__item--small .hero__item__image {
        width: 4rem;
        height: 4rem;
        margin: 1.5rem auto; }
      .hero__item--small .hero__item__title {
        font-size: 1.5rem;
        font-weight: bold;
        margin-bottom: 1rem;
        text-align: center; }
      .hero__item--small .hero__item__text {
        font-size: .875rem;
        line-height: 1.5; }

@media (max-width: 979px) {
  .hero {
    padding: 0;
    margin-bottom: 0; }
    .hero__title {
      font-size: 2rem; }
    .hero__subtitle {
      font-size: 1rem; } }

img.image-fluid {
  max-width: 100%; }

.text-input {
  background-color: #FCFDFF;
  border: 1px solid #ecf0f2;
  border-radius: 2px;
  -webkit-box-shadow: none;
  box-shadow: none;
  font-family: var(--general-font);
  line-height: 1;
  margin-bottom: 1rem;
  -webkit-transition: var(--transition-base);
  transition: var(--transition-base);
  width: 100%;
  padding: 1.2rem;
  font-size: 1rem; }
  .text-input::-webkit-input-placeholder {
    color: #4a4a4a !important;
    -webkit-transition: var(--transition-base);
    transition: var(--transition-base); }
  .text-input::-moz-placeholder {
    color: #4a4a4a !important;
    -moz-transition: var(--transition-base);
    transition: var(--transition-base); }
  .text-input:-ms-input-placeholder {
    color: #4a4a4a !important;
    -ms-transition: var(--transition-base);
    transition: var(--transition-base); }
  .text-input::-ms-input-placeholder {
    color: #4a4a4a !important;
    -ms-transition: var(--transition-base);
    transition: var(--transition-base); }
  .text-input::placeholder {
    color: #4a4a4a !important;
    -webkit-transition: var(--transition-base);
    transition: var(--transition-base); }
  .text-input:hover {
    border-color: #c7ccd1; }
  .text-input:focus {
    border-color: #0188FF;
    outline: 0 none; }
  .text-input.big {
    padding: .4375rem 1rem .5rem;
    font-size: .875rem; }
  .text-input.bigger {
    padding: .625rem 1.25rem;
    font-size: 1rem; }
  .text-input.biggest {
    padding: .6875rem 1.5rem;
    font-size: 1.25rem; }

#form input[type="submit"] {
  background: #0188FF !important;
  font-family: var(--general-font);
  font-size: 14px !important;
  color: white;
  border-radius: 8px;
  letter-spacing: 2px;
  font-weight: bold;
  line-height: 1rem;
  padding: 1rem 1.75rem;
  position: relative;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  display: block;
  width: 100%;
  margin-top: 20px; }

html.remodal-is-locked {
  overflow: hidden;
  -ms-touch-action: none;
  touch-action: none; }

/* Anti FOUC */
.remodal,
[data-remodal-id] {
  display: none; }

/* Necessary styles of the overlay */
.remodal-overlay {
  position: fixed;
  z-index: 9999;
  top: -5000px;
  right: -5000px;
  bottom: -5000px;
  left: -5000px;
  display: none; }

/* Necessary styles of the wrapper */
.remodal-wrapper {
  position: fixed;
  z-index: 10000;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
  overflow: auto;
  text-align: center;
  -webkit-overflow-scrolling: touch; }

.remodal-wrapper:after {
  display: inline-block;
  height: 100%;
  margin-left: -0.05em;
  content: ""; }

/* Fix iPad, iPhone glitches */
.remodal-overlay,
.remodal-wrapper {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden; }

/* Necessary styles of the modal dialog */
.remodal {
  position: relative;
  outline: none;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
       text-size-adjust: 100%;
  max-height: 400px;
  overflow-y: scroll; }

.remodal-is-initialized {
  /* Disable Anti-FOUC */
  display: inline-block; }

/*
 *  Remodal - v1.1.1
 *  Responsive, lightweight, fast, synchronized with CSS animations, fully customizable modal window plugin with declarative configuration and hash tracking.
 *  http://vodkabears.github.io/remodal/
 *
 *  Made by Ilya Makarov
 *  Under MIT License
 */
/* ==========================================================================
   Remodal's default mobile first theme
   ========================================================================== */
/* Default theme styles for the background */
.remodal-bg.remodal-is-opening,
.remodal-bg.remodal-is-opened {
  -webkit-filter: blur(3px);
  filter: blur(3px); }

/* Default theme styles of the overlay */
.remodal-overlay {
  background: rgba(43, 46, 56, 0.9); }

.remodal-overlay.remodal-is-opening,
.remodal-overlay.remodal-is-closing {
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards; }

.remodal-overlay.remodal-is-opening {
  -webkit-animation-name: remodal-overlay-opening-keyframes;
  animation-name: remodal-overlay-opening-keyframes; }

.remodal-overlay.remodal-is-closing {
  -webkit-animation-name: remodal-overlay-closing-keyframes;
  animation-name: remodal-overlay-closing-keyframes; }

/* Default theme styles of the wrapper */
.remodal-wrapper {
  padding: 10px 10px 0; }

/* Default theme styles of the modal dialog */
.remodal {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  margin: auto 0;
  margin-bottom: 10px;
  padding: 35px;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  color: #2b2e38;
  background: #fff; }

.remodal.remodal-is-opening,
.remodal.remodal-is-closing {
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards; }

.remodal.remodal-is-opening {
  -webkit-animation-name: remodal-opening-keyframes;
  animation-name: remodal-opening-keyframes; }

.remodal.remodal-is-closing {
  -webkit-animation-name: remodal-closing-keyframes;
  animation-name: remodal-closing-keyframes; }

/* Vertical align of the modal dialog */
.remodal,
.remodal-wrapper:after {
  vertical-align: middle; }

/* Close button */
.remodal-close {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  display: block !important;
  overflow: visible !important;
  width: 35px !important;
  height: 35px !important;
  margin: 0 !important;
  padding: 0 !important;
  cursor: pointer !important;
  -webkit-transition: color 0.2s !important;
  transition: color 0.2s !important;
  text-decoration: none !important;
  color: #95979c !important;
  border: 0 !important;
  outline: 0 !important;
  background: transparent !important;
  -webkit-box-shadow: 0px 0px 0px #fff !important;
          box-shadow: 0px 0px 0px #fff !important; }

.remodal-close:hover,
.remodal-close:focus {
  color: #2b2e38;
  background-color: #fff !important; }

.remodal-close:before {
  font-family: Arial, "Helvetica CY", "Nimbus Sans L", sans-serif !important;
  font-size: 25px;
  line-height: 35px;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 35px;
  content: "\00d7";
  text-align: center; }

/* Dialog buttons */
.remodal-confirm,
.remodal-cancel {
  font: inherit;
  display: inline-block;
  overflow: visible;
  min-width: 110px;
  margin: 0;
  padding: 12px 0;
  cursor: pointer;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  border: 0;
  outline: 0; }

.remodal-confirm {
  color: #fff;
  background: #81c784; }

.remodal-confirm:hover,
.remodal-confirm:focus {
  background: #66bb6a; }

.remodal-cancel {
  color: #fff;
  background: #e57373; }

.remodal-cancel:hover,
.remodal-cancel:focus {
  background: #ef5350; }

/* Remove inner padding and border in Firefox 4+ for the button tag. */
.remodal-confirm::-moz-focus-inner,
.remodal-cancel::-moz-focus-inner,
.remodal-close::-moz-focus-inner {
  padding: 0;
  border: 0; }

/* Keyframes
   ========================================================================== */
@-webkit-keyframes remodal-opening-keyframes {
  from {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    opacity: 0; }
  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
    -webkit-filter: blur(0);
    filter: blur(0); } }

@keyframes remodal-opening-keyframes {
  from {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    opacity: 0; }
  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
    -webkit-filter: blur(0);
    filter: blur(0); } }

@-webkit-keyframes remodal-closing-keyframes {
  from {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1; }
  to {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
    opacity: 0;
    -webkit-filter: blur(0);
    filter: blur(0); } }

@keyframes remodal-closing-keyframes {
  from {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1; }
  to {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
    opacity: 0;
    -webkit-filter: blur(0);
    filter: blur(0); } }

@-webkit-keyframes remodal-overlay-opening-keyframes {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

@keyframes remodal-overlay-opening-keyframes {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

@-webkit-keyframes remodal-overlay-closing-keyframes {
  from {
    opacity: 1; }
  to {
    opacity: 0; } }

@keyframes remodal-overlay-closing-keyframes {
  from {
    opacity: 1; }
  to {
    opacity: 0; } }

/* Media queries
   ========================================================================== */
@media only screen and (min-width: 641px) {
  .remodal {
    max-width: 700px; } }

/* IE8
   ========================================================================== */
.lt-ie9 .remodal-overlay {
  background: #2b2e38; }

.lt-ie9 .remodal {
  width: 700px; }

.multiple {
  background: #8f96a3 !important;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1rem 1rem 1rem 3rem !important;
  height: auto !important;
  width: 100%;
  border-radius: .25rem !important;
  position: relative;
  text-align: left;
  -webkit-box-shadow: none;
          box-shadow: none; }
  .multiple:focus {
    outline: none; }
  .multiple.checked {
    background: #576175 !important; }
  .multiple input[type="checkbox"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: #e3e5e8;
    border-radius: .125rem;
    content: '';
    cursor: pointer;
    position: absolute;
    left: .75rem;
    height: 1.5rem !important;
    width: 1.5rem !important;
    border: var(--border-width-base) solid #8f96a3; }
    .multiple input[type="checkbox"]:focus {
      outline: none; }
    .multiple input[type="checkbox"]:checked {
      border: none;
      background: url(../img/check.svg), #41c96f;
      background-size: cover; }

.tcpa-item-answer {
  margin: 0 10px .5rem;
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%; }

.tcpa-question {
  margin-bottom: 1rem; }

.tcpa-continue-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  overflow: hidden;
  max-width: 210px;
  margin: auto !important;
  padding: 0 !important;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 4px; }

#optout-form .form-check {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 0.5rem; }
  #optout-form .form-check .invalid-feedback {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1; }
  #optout-form .form-check-input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: #e3e5e8;
    border-radius: 0.125rem;
    content: "";
    cursor: pointer;
    position: absolute;
    height: 1.5rem !important;
    width: 1.5rem !important;
    border: var(--border-width-base) solid #8f96a3;
    position: relative;
    padding: 0;
    margin: 0; }
    #optout-form .form-check-input:focus {
      outline: none; }
    #optout-form .form-check-input:checked {
      border: none;
      background: #0188FF url(../img/check.svg);
      background-size: 16px;
      background-repeat: no-repeat;
      background-position: center; }
  #optout-form .form-check-label {
    padding: 0 0 0 0.5rem;
    margin: 0 0 1px 0; }
    #optout-form .form-check-label + .invalid-feedback {
      margin: 0 0 -1px 0.5rem; }

#optout-form label {
  margin: 0.5rem 0 0.5rem; }

@media (max-width: 979px) {
  #optout-form label {
    font-size: 0.75rem; } }

.progress-inner {
  display: block;
  height: 100%;
  width: "0%";
  background: #7054ed;
  background: -webkit-gradient(linear, left top, right top, from(#7054ed), to(#2c00ba));
  background: linear-gradient(90deg, #7054ed 0%, #2c00ba 100%);
  border-radius: 0.25rem; }
  .progress-inner-10 {
    display: block;
    height: 100%;
    width: 10%;
    background: #7054ed;
    background: -webkit-gradient(linear, left top, right top, from(#7054ed), to(#2c00ba));
    background: linear-gradient(90deg, #7054ed 0%, #2c00ba 100%);
    border-radius: 0.25rem; }
  .progress-inner-20 {
    display: block;
    height: 100%;
    width: 20%;
    background: #7054ed;
    background: -webkit-gradient(linear, left top, right top, from(#7054ed), to(#2c00ba));
    background: linear-gradient(90deg, #7054ed 0%, #2c00ba 100%);
    border-radius: 0.25rem; }
  .progress-inner-30 {
    display: block;
    height: 100%;
    width: 30%;
    background: #7054ed;
    background: -webkit-gradient(linear, left top, right top, from(#7054ed), to(#2c00ba));
    background: linear-gradient(90deg, #7054ed 0%, #2c00ba 100%);
    border-radius: 0.25rem; }
  .progress-inner-40 {
    display: block;
    height: 100%;
    width: 40%;
    background: #7054ed;
    background: -webkit-gradient(linear, left top, right top, from(#7054ed), to(#2c00ba));
    background: linear-gradient(90deg, #7054ed 0%, #2c00ba 100%);
    border-radius: 0.25rem; }
  .progress-inner-50 {
    display: block;
    height: 100%;
    width: 50%;
    background: #7054ed;
    background: -webkit-gradient(linear, left top, right top, from(#7054ed), to(#2c00ba));
    background: linear-gradient(90deg, #7054ed 0%, #2c00ba 100%);
    border-radius: 0.25rem; }
  .progress-inner-60 {
    display: block;
    height: 100%;
    width: 60%;
    background: #7054ed;
    background: -webkit-gradient(linear, left top, right top, from(#7054ed), to(#2c00ba));
    background: linear-gradient(90deg, #7054ed 0%, #2c00ba 100%);
    border-radius: 0.25rem; }
  .progress-inner-70 {
    display: block;
    height: 100%;
    width: 70%;
    background: #7054ed;
    background: -webkit-gradient(linear, left top, right top, from(#7054ed), to(#2c00ba));
    background: linear-gradient(90deg, #7054ed 0%, #2c00ba 100%);
    border-radius: 0.25rem; }
  .progress-inner-80 {
    display: block;
    height: 100%;
    width: 80%;
    background: #7054ed;
    background: -webkit-gradient(linear, left top, right top, from(#7054ed), to(#2c00ba));
    background: linear-gradient(90deg, #7054ed 0%, #2c00ba 100%);
    border-radius: 0.25rem; }
  .progress-inner-90 {
    display: block;
    height: 100%;
    width: 90%;
    background: #7054ed;
    background: -webkit-gradient(linear, left top, right top, from(#7054ed), to(#2c00ba));
    background: linear-gradient(90deg, #7054ed 0%, #2c00ba 100%);
    border-radius: 0.25rem; }
  .progress-inner-100 {
    display: block;
    height: 100%;
    width: 100%;
    background: #7054ed;
    background: -webkit-gradient(linear, left top, right top, from(#7054ed), to(#2c00ba));
    background: linear-gradient(90deg, #7054ed 0%, #2c00ba 100%);
    border-radius: 0.25rem; }

.progress-bar {
  margin-top: 1rem;
  display: none;
  padding: 1.25rem 0rem 1.25rem 0rem;
  width: 100%;
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: normal !important;
      -ms-flex-direction: row !important;
          flex-direction: row !important;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
  background: none; }
  .progress-bar div.clickWall_body, .progress-bar .progress {
    height: 1.3rem !important; }
    .progress-bar div.clickWall_body .progress-percentage, .progress-bar .progress .progress-percentage {
      line-height: 1rem; }
  .progress-bar .progress {
    width: 100%;
    height: 2rem;
    border: 1px solid #a8b4c3;
    border-radius: .25rem;
    overflow: hidden;
    background: white;
    padding: 2px; }
  .progress-bar .progress-percentage {
    color: white;
    font-weight: bold;
    line-height: 1.5rem;
    text-align: right;
    margin-right: 0.5rem; }

@media (max-width: 768px) {
  .progress-bar {
    padding: 0 0 1rem; }
    .progress-bar .progress-percentage {
      margin-left: 1rem; } }

.post {
  min-height: calc(100vh - 7.875rem); }
  .postPreview {
    padding: 5rem 0; }
    .postPreview h1 {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      gap: 2rem; }
      .postPreview h1:before, .postPreview h1:after {
        content: '';
        width: 5rem;
        height: .25rem;
        border-radius: .125rem;
        background-color: #0188FF; }
      @media (max-width: 979px) {
        .postPreview h1 {
          gap: .5rem;
          line-height: 1.25; }
          .postPreview h1:before, .postPreview h1:after {
            width: 3rem; } }
    .postPreview--featured {
      padding-bottom: 0; }
      .postPreview--featured .postPreview__title {
        font-size: 2rem;
        margin-bottom: 1rem; }
      .postPreview--featured .postPreview__text {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 1.75rem; }
      .postPreview--featured .postPreview__image img {
        height: 20rem;
        border-radius: .25rem; }
    .postPreview:not(.postPreview--featured) .postPreview__title {
      position: absolute;
      bottom: 0;
      color: white;
      padding: 1rem;
      width: 100%;
      background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), color-stop(10%, rgba(0, 0, 0, 0.008)), color-stop(19.9%, rgba(0, 0, 0, 0.032)), color-stop(29.6%, rgba(0, 0, 0, 0.068)), color-stop(39.1%, rgba(0, 0, 0, 0.114)), color-stop(48.1%, rgba(0, 0, 0, 0.169)), color-stop(56.8%, rgba(0, 0, 0, 0.229)), color-stop(64.9%, rgba(0, 0, 0, 0.293)), color-stop(72.4%, rgba(0, 0, 0, 0.357)), color-stop(79.2%, rgba(0, 0, 0, 0.421)), color-stop(85.2%, rgba(0, 0, 0, 0.481)), color-stop(90.3%, rgba(0, 0, 0, 0.536)), color-stop(94.4%, rgba(0, 0, 0, 0.582)), color-stop(97.5%, rgba(0, 0, 0, 0.618)), color-stop(99.3%, rgba(0, 0, 0, 0.642)), to(rgba(0, 0, 0, 0.65)));
      background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.008) 10%, rgba(0, 0, 0, 0.032) 19.9%, rgba(0, 0, 0, 0.068) 29.6%, rgba(0, 0, 0, 0.114) 39.1%, rgba(0, 0, 0, 0.169) 48.1%, rgba(0, 0, 0, 0.229) 56.8%, rgba(0, 0, 0, 0.293) 64.9%, rgba(0, 0, 0, 0.357) 72.4%, rgba(0, 0, 0, 0.421) 79.2%, rgba(0, 0, 0, 0.481) 85.2%, rgba(0, 0, 0, 0.536) 90.3%, rgba(0, 0, 0, 0.582) 94.4%, rgba(0, 0, 0, 0.618) 97.5%, rgba(0, 0, 0, 0.642) 99.3%, rgba(0, 0, 0, 0.65) 100%);
      height: 100%;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: end;
          -ms-flex-align: end;
              align-items: end; }
    .postPreview__wrapper {
      position: relative;
      border-radius: .25rem;
      cursor: pointer;
      overflow: hidden;
      -webkit-transition: -webkit-box-shadow .2s ease-in-out;
      transition: -webkit-box-shadow .2s ease-in-out;
      transition: box-shadow .2s ease-in-out;
      transition: box-shadow .2s ease-in-out, -webkit-box-shadow .2s ease-in-out; }
      .postPreview__wrapper:hover {
        -webkit-box-shadow: 0 1.5rem 4rem -1.5rem rgba(1, 136, 255, 0.5);
                box-shadow: 0 1.5rem 4rem -1.5rem rgba(1, 136, 255, 0.5); }
        .postPreview__wrapper:hover img {
          -webkit-transform: scale(1.05);
              -ms-transform: scale(1.05);
                  transform: scale(1.05); }
    .postPreview__title {
      font-size: 1.25rem;
      font-weight: bold;
      letter-spacing: -.5px;
      line-height: 1.333333333;
      margin-bottom: 0;
      cursor: pointer; }
    .postPreview__text {
      font-size: 1rem;
      line-height: 1.5; }
    .postPreview__image {
      cursor: pointer; }
      .postPreview__image img {
        width: 100%;
        height: 15rem;
        -o-object-fit: cover;
           object-fit: cover;
        -webkit-transition: -webkit-transform .2s ease-in-out;
        transition: -webkit-transform .2s ease-in-out;
        transition: transform .2s ease-in-out;
        transition: transform .2s ease-in-out, -webkit-transform .2s ease-in-out; }
  .post__wrapper {
    background-color: white;
    border-radius: 0.25rem;
    border: 1px solid #e3e5e8;
    margin-top: 1rem;
    margin-bottom: 1rem;
    padding: 2rem; }
  .post__header__img {
    overflow: hidden;
    position: relative;
    margin-bottom: 1.5rem;
    border-radius: .25rem;
    height: 25rem; }
    .post__header__img img {
      -webkit-transform: translateY(-50%);
          -ms-transform: translateY(-50%);
              transform: translateY(-50%);
      position: absolute;
      top: 50%;
      display: block;
      width: 100%; }
  .post__header h1 {
    font-size: 2rem;
    margin-bottom: 2rem;
    line-height: 1.25; }
  .post__content {
    background: #f2f3f4;
    background: -webkit-gradient(linear, left bottom, left top, from(#f2f3f4), to(#fafafa));
    background: linear-gradient(0deg, #f2f3f4 0%, #fafafa 100%);
    padding: 2rem 0; }
  .post p {
    margin-bottom: 0.5rem; }
  .post strong {
    color: #121721; }

.menu-list {
  overflow: hidden;
  border-radius: 0.25rem;
  position: sticky;
  top: 2rem; }
  .menu-list h3 {
    font-size: 1.75rem; }
  @media (max-width: 979px) {
    .menu-list {
      margin-bottom: 1.5rem; } }

.menu-item {
  position: relative;
  border-bottom: 1px solid #e3e5e8; }
  .menu-item:last-child {
    border: 0; }

.menu-question {
  cursor: pointer;
  color: #100434;
  font-weight: 400;
  font-size: 1rem;
  margin-bottom: 0;
  padding: 1rem 0;
  -webkit-transition: 0.2s;
  transition: 0.2s; }
  .menu-question:hover {
    color: #827a99; }

.menu-answer {
  max-height: 0;
  overflow: hidden;
  font-size: 1rem;
  padding-left: 2rem;
  -webkit-transition: max-height 0.2s ease-in-out;
  transition: max-height 0.2s ease-in-out; }
  .menu-answer a {
    color: #827a99;
    font-weight: 600;
    font-size: 0.875rem;
    line-height: normal; }
    .menu-answer a:hover {
      color: #100434; }
  .menu-answer ul {
    margin: 0px;
    padding: 0px; }

.menu-toggle-button {
  width: 11px;
  height: 7px;
  position: absolute;
  right: 2rem;
  top: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  cursor: pointer; }
  .menu-toggle-button:before {
    content: "";
    width: 11px;
    height: 7px;
    background: url("../img/arrow.png");
    position: absolute; }

.expanded .menu-toggle-button {
  -webkit-transform: rotate(-180deg);
      -ms-transform: rotate(-180deg);
          transform: rotate(-180deg); }

@media (max-width: 979px) {
  .post {
    margin-top: 0;
    padding-top: 0; }
    .post h1 {
      font-size: 1.375rem;
      margin-bottom: 1rem; }
    .post__header__img {
      height: 12.5rem; }
    .postPreview {
      padding: 2.5rem 0; }
      .postPreview__title {
        font-size: 1.5rem; }
      .postPreview__text {
        font-size: 0.875rem; }
      .postPreview__image img {
        min-height: 13rem;
        -o-object-fit: cover;
           object-fit: cover; } }

.planNow {
  margin-block: 5rem;
  padding-block: 5rem;
  background-color: #1C4AC0; }
  .planNow__title {
    color: white;
    font-size: 2rem;
    font-weight: 700; }
  .planNow__subTitle {
    margin-top: 1rem;
    color: white;
    font-size: 1.25rem; }
  .planNow__input {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-block: .75rem; }
    .planNow__input input {
      border-radius: 8px 0px 0px 8px;
      color: black;
      border: none;
      padding: 1rem; }
      .planNow__input input:focus {
        outline: none; }
    .planNow__input button {
      border-radius: 0px 8px 8px 0px;
      background-color: #39B64C;
      color: white;
      border: none;
      padding: 1rem 1.25rem; }
  .planNow__button {
    font-size: 1rem;
    color: white;
    -webkit-transition: .2s ease-in-out;
    transition: .2s ease-in-out; }
    .planNow__button:hover {
      opacity: 0.8;
      color: white; }

.ql-editor {
  padding: 0rem !important;
  white-space: normal !important; }
  .ql-editor h2 {
    font-size: 1.5rem; }
  .ql-editor p {
    margin-bottom: .5rem !important; }
    .ql-editor p:last-child {
      margin-bottom: 0 !important; }

.steps__progress {
  background: #0188FF;
  height: auto;
  padding: 24px 0 24px; }
  .steps__progress p {
    color: white;
    opacity: 0.8;
    font-size: 1rem;
    margin-bottom: 0;
    font-weight: normal; }

@media (max-width: 979px) {
  .register__wrapper {
    padding: 0; } }

.register__header {
  margin: 2rem 0; }

@media (max-width: 979px) {
  .register__form {
    margin-top: 0; } }

.register__form input[type="checkbox"] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: none;
  border-radius: 0.1875rem;
  content: "";
  cursor: pointer;
  position: absolute;
  height: 1.25rem !important;
  width: 1.25rem !important;
  border: 2px solid #3d3d3d; }
  .register__form input[type="checkbox"]:focus {
    outline: none; }
  .register__form input[type="checkbox"]:checked {
    border: none;
    background: url(../img/check.svg), #00a09e;
    background-size: cover; }

.register__form input[type="radio"] {
  display: none; }
  .register__form input[type="radio"]:hover + span {
    background-color: #0188FF; }
  .register__form input[type="radio"] + span {
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    background: #0088FF;
    border-radius: 3px;
    border: 0px;
    color: white !important;
    cursor: pointer;
    display: block;
    font-weight: 700;
    margin: 0.5rem auto;
    padding: 0.5rem;
    position: relative;
    text-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    font-size: 1.25rem; }
  .register__form input[type="radio"]:focus {
    outline: none; }
  .register__form input[type="radio"]:checked {
    border: 8px solid #0188FF;
    background: #ffffff;
    background-size: cover; }
    .register__form input[type="radio"]:checked + span {
      background-color: #0188FF !important; }

.register__title {
  font-size: 1.625rem;
  font-weight: bold;
  line-height: 1; }

.register__subtitle {
  display: block;
  font-size: 1.125rem;
  font-weight: normal; }
  .register__subtitle p:last-child {
    margin-bottom: 0; }

.register .steps__title {
  font-size: 1.25rem;
  font-weight: bold;
  color: white; }

.form-control:focus {
  border-color: #0188FF;
  -webkit-box-shadow: none;
          box-shadow: none; }

@media (max-width: 979px) {
  .register__wrapper {
    padding: 0; }
  .register__header {
    margin: 2rem 0 1.5rem 0; }
  .register__form {
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column; }
  .register__title {
    font-size: 1.5rem; }
  .register__subtitle {
    font-size: 0.875rem; } }

.boolean-edit-aca div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }
  .boolean-edit-aca div label {
    width: 48%; }

.form-check-input {
  -webkit-box-shadow: none !important;
          box-shadow: none !important; }

.rules {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column; }
  .rules__link {
    background: #e3e5e8;
    color: #242e42;
    padding: 1rem;
    border-radius: .25rem;
    margin: .25rem;
    -webkit-transition: .2s;
    transition: .2s; }
    .rules__link:hover {
      text-decoration: none;
      background: #00a09e;
      color: white; }

.survey {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 50% 50%;
  grid-template-columns: 50% 50%;
      grid-template-areas: 'form tuto';
  background-color: white;
  border-radius: .5rem;
  position: relative;
  padding: 3.75rem; }
  .survey .coupon__data {
    padding: 0; }
  .survey__header {
    display: none;
    padding: 1rem; }
    .survey__header h2 {
      font-weight: 900;
      font-size: 1.5rem;
      margin-left: 3.5rem;
      line-height: 2.5rem; }
  .survey__questions {
    padding: 4.5rem 0;
    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: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    min-height: 40rem; }
    .survey__questions__header, .survey__questions__step, .survey__questions__message {
      padding: 0 4.5rem; }
    .survey__questions h2 {
      font-size: 2rem;
      font-weight: 900;
      font-family: var(--general-font); }
    .survey__questions h3 {
      font-size: 1.25rem;
      font-weight: 900;
      font-family: var(--general-font);
      margin-bottom: 1.5rem;
      text-align: center; }
    .survey__questions p {
      margin-bottom: auto;
      font-size: 1rem; }
    .survey__questions .carousel-inner {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: end;
          -ms-flex-align: end;
              align-items: flex-end; }
    .survey__questions__step {
      margin-top: 2rem; }
    .survey__questions__message h2 {
      margin-top: 4rem; }
    .survey__questions__message p {
      margin: .5rem 0 2rem; }
  .survey__form {
    padding: 2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-grid-column: 2;
    grid-column: 2; }
    .survey__form h2 {
      font-size: 2rem;
      font-weight: 900; }
    .survey__form h4 {
      margin-bottom: 1.5rem;
      font-size: 1.2rem;
      font-family: var(--general-font); }
    .survey__form input[type="checkbox"] {
      -webkit-appearance: none;
      -moz-appearance: none;
      appearance: none;
      background: #e3e5e8;
      border-radius: .125rem;
      content: '';
      cursor: pointer;
      position: absolute;
      height: 1.5rem !important;
      width: 1.5rem !important;
      border: var(--border-width-base) solid #8f96a3; }
      .survey__form input[type="checkbox"]:focus {
        outline: none; }
      .survey__form input[type="checkbox"]:checked {
        border: none;
        background: url(../img/check.svg), #41c96f;
        background-size: cover; }
    .survey__form input[type="radio"] {
      -webkit-appearance: none;
      -moz-appearance: none;
      appearance: none;
      background: #e3e5e8;
      border-radius: .75rem;
      content: '';
      cursor: pointer;
      position: absolute;
      height: 1.5rem !important;
      width: 1.5rem !important;
      border: var(--border-width-base) solid #8f96a3; }
      .survey__form input[type="radio"]:focus {
        outline: none; }
      .survey__form input[type="radio"]:checked {
        border: 0.375rem solid #00a09e;
        background: #ffffff;
        background-size: cover; }
  .survey__tcpa {
    font-size: .75rem;
    margin-top: 1rem; }

@media (max-width: 992px) {
  .survey {
    display: block;
    padding: 1rem; }
    .survey__tuto {
      background: url(../img/survey_bg_mobile.svg), linear-gradient(135deg, #9ac982, #4db377);
      background-repeat: repeat-x;
      padding: 4.5rem;
      border-radius: 0 0 2.25rem 2.25rem; }
    .survey__form input[type="checkbox"] {
      border-radius: .125rem;
      height: 2rem !important;
      width: 2rem !important; }
    .survey__product:before {
      height: .25rem;
      background: url(../img/survey_bg_mobile.svg);
      width: 100%; } }

@media (max-width: 425px) {
  .survey {
    margin: .0625rem 0 -.25rem 0;
    border-radius: 0; }
    .survey__header h2 {
      line-height: 1.5rem;
      margin-left: 2.5rem; }
    .survey__questions, .survey__form {
      padding: 0; }
      .survey__questions .row-spacing, .survey__form .row-spacing {
        padding: 0 .5rem; }
        .survey__questions .row-spacing .form-field-col, .survey__form .row-spacing .form-field-col {
          padding: 0 .25rem; }
    .survey__tuto {
      padding: 5rem 1rem;
      border-radius: 0; } }

.tutorial {
  text-align: center;
  padding: 5rem 0;
  background-color: #f9fafa; }
  .tutorial h1 {
    color: #060200;
    font-size: 2rem;
    font-weight: 700; }
  .tutorial__image {
    width: 110px;
    height: 85px; }
  .tutorial__stepTitle {
    color: #060200;
    font-weight: 400;
    font-size: 1.25rem;
    margin-block: 1rem; }

.whyChoose {
  padding-block: 5rem; }
  .whyChoose__title {
    color: #060200;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem; }
  .whyChoose__image {
    width: 100%;
    height: 100%; }
  .whyChoose__step {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start; }
    .whyChoose__step div {
      margin-left: 1rem; }
  .whyChoose__stepTitle {
    margin-top: .5rem;
    color: #060200;
    font-size: 1.5rem;
    font-weight: 400; }
  .whyChoose__stepText {
    color: #060200;
    font-size: 1rem;
    font-weight: 400; }

@media (max-width: 979px) {
  .whyChoose {
    padding-block: 1em;
    margin-bottom: 5rem; }
    .whyChoose__title {
      text-align: center; }
    .whyChoose__image {
      margin-top: 2rem; } }

@-webkit-keyframes showClickWall {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

@keyframes showClickWall {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

@-webkit-keyframes showClickWallContent {
  0% {
    -webkit-transform: translateY(5rem);
            transform: translateY(5rem); } }

@keyframes showClickWallContent {
  0% {
    -webkit-transform: translateY(5rem);
            transform: translateY(5rem); } }

@-webkit-keyframes hideClickWall {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }

@keyframes hideClickWall {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }

@-webkit-keyframes hideClickWallContent {
  100% {
    -webkit-transform: translateY(5rem);
            transform: translateY(5rem); } }

@keyframes hideClickWallContent {
  100% {
    -webkit-transform: translateY(5rem);
            transform: translateY(5rem); } }

.clickWall {
  display: none;
  background: rgba(0, 0, 0, 0.6);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 1000;
  top: 0; }
  .clickWall__close {
    background: none;
    border: none;
    color: white;
    position: absolute;
    top: 0;
    right: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 4rem;
    width: 4rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 1.5rem;
    z-index: 1;
    cursor: pointer; }
    .clickWall__close:focus {
      outline: none; }
  .clickWall__header {
    padding: 1rem;
    background: #e3e5e8; }
    .clickWall__header h1 {
      font-size: 1.5rem;
      font-weight: bold;
      letter-spacing: -.5px;
      line-height: 1;
      margin: 0;
      color: #4a4a4a;
      text-align: center; }
  .clickWall__content {
    background: white;
    border-radius: .25rem;
    -webkit-box-shadow: 0 3rem 6rem -3rem rgba(0, 0, 0, 0.8);
            box-shadow: 0 3rem 6rem -3rem rgba(0, 0, 0, 0.8);
    margin: auto;
    max-width: 30vw;
    max-height: calc(100vh - 4rem);
    overflow-y: auto; }
    .clickWall__content #submitbutton {
      top: 29px;
      right: 12px; }
  .clickWall__body {
    padding: 1rem; }
  .clickWall--show {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-animation: showClickWall 0.2s cubic-bezier(0.5, 0, 0, 1);
            animation: showClickWall 0.2s cubic-bezier(0.5, 0, 0, 1);
    -webkit-transform-origin: top;
        -ms-transform-origin: top;
            transform-origin: top;
    overflow: auto; }
    .clickWall--show .clickWall__content {
      -webkit-animation: showClickWallContent 0.8s cubic-bezier(0.5, 0, 0, 1);
              animation: showClickWallContent 0.8s cubic-bezier(0.5, 0, 0, 1); }
  .clickWall--hide {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-animation: hideClickWall 0.2s cubic-bezier(0.5, 0, 0, 1);
            animation: hideClickWall 0.2s cubic-bezier(0.5, 0, 0, 1);
    opacity: 0;
    -webkit-transform-origin: top;
        -ms-transform-origin: top;
            transform-origin: top; }
    .clickWall--hide .clickWall__content {
      -webkit-animation: hideClickWallContent 0.8s cubic-bezier(0.5, 0, 0, 1);
              animation: hideClickWallContent 0.8s cubic-bezier(0.5, 0, 0, 1); }

@media (max-width: 979px) {
  .clickWall__header {
    padding: 1rem; }
  .clickWall__content {
    max-width: 100vw; }
    .clickWall__content #submitbutton {
      top: 19px !important; } }

.footer {
  background: #F5FAFF;
  padding: 2rem 0; }
  .footer__title {
    color: #26130D;
    font-size: 1.5rem;
    font-weight: 700; }
  .footer__logotype {
    width: 30%; }
  .footer__hoursText {
    margin-top: 1rem;
    color: #321F1A;
    font-size: 1.25rem;
    opacity: 0.90;
    font-weight: 700; }
  .footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 1rem;
    font-family: var(--primary-font); }
    .footer ul li {
      margin-top: 1rem;
      display: block; }
      .footer ul li a {
        display: inline-block;
        padding: 0 .25rem;
        -webkit-transition: .2s;
        transition: .2s;
        color: #321F1A;
        opacity: 0.85;
        text-decoration: none;
        font-weight: 700; }
        .footer ul li a:hover, .footer ul li a:focus {
          color: #0188FF;
          opacity: 1; }

.disclaimer {
  background-color: #EBF6FF;
  padding-block: 2rem; }
  .disclaimer__text {
    font-size: .75rem;
    color: #321F1A; }

@media (max-width: 979px) {
  .footer {
    background: #F5FAFF;
    padding: 2rem 0; }
    .footer__title {
      margin-top: 1rem;
      text-align: center;
      font-size: 2rem; }
    .footer__logotype {
      width: 100%; }
    .footer__hoursText {
      text-align: center;
      font-size: 1rem; }
    .footer ul li {
      text-align: center;
      font-size: 1rem; }
  .disclaimer {
    padding-block: 1rem; } }

.form-wrapper-flex .form-row,
.tcpa-details .form-row {
  margin: 0 -0.5rem;
  -ms-flex-wrap: unset;
      flex-wrap: unset; }
  .form-wrapper-flex .form-row.term,
  .tcpa-details .form-row.term {
    padding: 0 0.5rem; }
  .form-wrapper-flex .form-row .x-6,
  .tcpa-details .form-row .x-6 {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    margin: 0 0.5rem; }

.form-wrapper-flex .form-col,
.tcpa-details .form-col {
  margin: 0 0.5rem; }

.form-wrapper-flex label,
.tcpa-details label {
  display: block;
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 0.75rem;
  color: black;
  position: relative;
  text-align: center;
  cursor: pointer; }
  @media (max-width: 979px) {
    .form-wrapper-flex label,
    .tcpa-details label {
      margin-bottom: 2px; } }

.form-wrapper-flex input:not([type="checkbox"]):not([type="radio"]),
.form-wrapper-flex select,
.tcpa-details input:not([type="checkbox"]):not([type="radio"]),
.tcpa-details select {
  background-color: #FCFDFF;
  border: 1px solid #ecf0f2;
  border-radius: .25rem;
  -webkit-box-shadow: none;
          box-shadow: none;
  font-family: var(--general-font);
  line-height: 1;
  margin-bottom: 1rem;
  -webkit-transition: var(--transition-base);
  transition: var(--transition-base);
  width: 100%;
  padding: 1.2rem;
  font-size: 1rem; }
  @media (max-width: 979px) {
    .form-wrapper-flex input:not([type="checkbox"]):not([type="radio"]),
    .form-wrapper-flex select,
    .tcpa-details input:not([type="checkbox"]):not([type="radio"]),
    .tcpa-details select {
      margin-bottom: 1rem;
      padding: 0.625rem;
      color: #4a4a4a; } }
  .form-wrapper-flex input:not([type="checkbox"]):not([type="radio"])::-webkit-input-placeholder, .form-wrapper-flex select::-webkit-input-placeholder, .tcpa-details input:not([type="checkbox"]):not([type="radio"])::-webkit-input-placeholder, .tcpa-details select::-webkit-input-placeholder {
    color: rbg(74, 74, 74);
    -webkit-transition: var(--transition-base);
    transition: var(--transition-base); }
  .form-wrapper-flex input:not([type="checkbox"]):not([type="radio"])::-moz-placeholder, .form-wrapper-flex select::-moz-placeholder, .tcpa-details input:not([type="checkbox"]):not([type="radio"])::-moz-placeholder, .tcpa-details select::-moz-placeholder {
    color: rbg(74, 74, 74);
    -moz-transition: var(--transition-base);
    transition: var(--transition-base); }
  .form-wrapper-flex input:not([type="checkbox"]):not([type="radio"]):-ms-input-placeholder, .form-wrapper-flex select:-ms-input-placeholder, .tcpa-details input:not([type="checkbox"]):not([type="radio"]):-ms-input-placeholder, .tcpa-details select:-ms-input-placeholder {
    color: rbg(74, 74, 74);
    -ms-transition: var(--transition-base);
    transition: var(--transition-base); }
  .form-wrapper-flex input:not([type="checkbox"]):not([type="radio"])::-ms-input-placeholder, .form-wrapper-flex select::-ms-input-placeholder, .tcpa-details input:not([type="checkbox"]):not([type="radio"])::-ms-input-placeholder, .tcpa-details select::-ms-input-placeholder {
    color: rbg(74, 74, 74);
    -ms-transition: var(--transition-base);
    transition: var(--transition-base); }
  .form-wrapper-flex input:not([type="checkbox"]):not([type="radio"])::placeholder,
  .form-wrapper-flex select::placeholder,
  .tcpa-details input:not([type="checkbox"]):not([type="radio"])::placeholder,
  .tcpa-details select::placeholder {
    color: rbg(74, 74, 74);
    -webkit-transition: var(--transition-base);
    transition: var(--transition-base); }
  .form-wrapper-flex input:not([type="checkbox"]):not([type="radio"]):hover::-webkit-input-placeholder, .form-wrapper-flex input:not([type="checkbox"]):not([type="radio"]):focus::-webkit-input-placeholder, .form-wrapper-flex select:hover::-webkit-input-placeholder, .form-wrapper-flex select:focus::-webkit-input-placeholder, .tcpa-details input:not([type="checkbox"]):not([type="radio"]):hover::-webkit-input-placeholder, .tcpa-details input:not([type="checkbox"]):not([type="radio"]):focus::-webkit-input-placeholder, .tcpa-details select:hover::-webkit-input-placeholder, .tcpa-details select:focus::-webkit-input-placeholder {
    color: rbg(74, 74, 74);
    -webkit-transition: var(--transition-base);
    transition: var(--transition-base); }
  .form-wrapper-flex input:not([type="checkbox"]):not([type="radio"]):hover::-moz-placeholder, .form-wrapper-flex input:not([type="checkbox"]):not([type="radio"]):focus::-moz-placeholder, .form-wrapper-flex select:hover::-moz-placeholder, .form-wrapper-flex select:focus::-moz-placeholder, .tcpa-details input:not([type="checkbox"]):not([type="radio"]):hover::-moz-placeholder, .tcpa-details input:not([type="checkbox"]):not([type="radio"]):focus::-moz-placeholder, .tcpa-details select:hover::-moz-placeholder, .tcpa-details select:focus::-moz-placeholder {
    color: rbg(74, 74, 74);
    -moz-transition: var(--transition-base);
    transition: var(--transition-base); }
  .form-wrapper-flex input:not([type="checkbox"]):not([type="radio"]):hover:-ms-input-placeholder, .form-wrapper-flex input:not([type="checkbox"]):not([type="radio"]):focus:-ms-input-placeholder, .form-wrapper-flex select:hover:-ms-input-placeholder, .form-wrapper-flex select:focus:-ms-input-placeholder, .tcpa-details input:not([type="checkbox"]):not([type="radio"]):hover:-ms-input-placeholder, .tcpa-details input:not([type="checkbox"]):not([type="radio"]):focus:-ms-input-placeholder, .tcpa-details select:hover:-ms-input-placeholder, .tcpa-details select:focus:-ms-input-placeholder {
    color: rbg(74, 74, 74);
    -ms-transition: var(--transition-base);
    transition: var(--transition-base); }
  .form-wrapper-flex input:not([type="checkbox"]):not([type="radio"]):hover::-ms-input-placeholder, .form-wrapper-flex input:not([type="checkbox"]):not([type="radio"]):focus::-ms-input-placeholder, .form-wrapper-flex select:hover::-ms-input-placeholder, .form-wrapper-flex select:focus::-ms-input-placeholder, .tcpa-details input:not([type="checkbox"]):not([type="radio"]):hover::-ms-input-placeholder, .tcpa-details input:not([type="checkbox"]):not([type="radio"]):focus::-ms-input-placeholder, .tcpa-details select:hover::-ms-input-placeholder, .tcpa-details select:focus::-ms-input-placeholder {
    color: rbg(74, 74, 74);
    -ms-transition: var(--transition-base);
    transition: var(--transition-base); }
  .form-wrapper-flex input:not([type="checkbox"]):not([type="radio"]):hover::placeholder, .form-wrapper-flex input:not([type="checkbox"]):not([type="radio"]):focus::placeholder,
  .form-wrapper-flex select:hover::placeholder,
  .form-wrapper-flex select:focus::placeholder,
  .tcpa-details input:not([type="checkbox"]):not([type="radio"]):hover::placeholder,
  .tcpa-details input:not([type="checkbox"]):not([type="radio"]):focus::placeholder,
  .tcpa-details select:hover::placeholder,
  .tcpa-details select:focus::placeholder {
    color: rbg(74, 74, 74);
    -webkit-transition: var(--transition-base);
    transition: var(--transition-base); }
  .form-wrapper-flex input:not([type="checkbox"]):not([type="radio"]):hover,
  .form-wrapper-flex select:hover,
  .tcpa-details input:not([type="checkbox"]):not([type="radio"]):hover,
  .tcpa-details select:hover {
    border-color: #c7cad1; }
  .form-wrapper-flex input:not([type="checkbox"]):not([type="radio"]):focus,
  .form-wrapper-flex select:focus,
  .tcpa-details input:not([type="checkbox"]):not([type="radio"]):focus,
  .tcpa-details select:focus {
    border-color: #0188FF;
    outline: 0 none; }
  .form-wrapper-flex input:not([type="checkbox"]):not([type="radio"]).error,
  .form-wrapper-flex select.error,
  .tcpa-details input:not([type="checkbox"]):not([type="radio"]).error,
  .tcpa-details select.error {
    border-color: #ff5b4d;
    border-width: 2px; }
    .form-wrapper-flex input:not([type="checkbox"]):not([type="radio"]).error:hover, .form-wrapper-flex input:not([type="checkbox"]):not([type="radio"]).error:focus,
    .form-wrapper-flex select.error:hover,
    .form-wrapper-flex select.error:focus,
    .tcpa-details input:not([type="checkbox"]):not([type="radio"]).error:hover,
    .tcpa-details input:not([type="checkbox"]):not([type="radio"]).error:focus,
    .tcpa-details select.error:hover,
    .tcpa-details select.error:focus {
      border-color: #ff2d1a; }
    .form-wrapper-flex input:not([type="checkbox"]):not([type="radio"]).error ~ .hidden,
    .form-wrapper-flex select.error ~ .hidden,
    .tcpa-details input:not([type="checkbox"]):not([type="radio"]).error ~ .hidden,
    .tcpa-details select.error ~ .hidden {
      color: #ff4433;
      font-size: 0.75rem;
      font-weight: bold;
      margin-bottom: 0.5rem;
      margin-top: -1rem;
      text-transform: uppercase; }

@media (max-width: 979px) {
  .form-wrapper-flex input#zip,
  .tcpa-details input#zip {
    padding: 1.2rem; } }

.form-wrapper-flex select,
.tcpa-details select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url(../img/arrow.svg);
  background-size: 12px;
  background-repeat: no-repeat;
  background-position-x: calc(100% - 1.25rem);
  background-position-y: center; }

.custom-submit-button .form-button {
  position: absolute;
  top: -18.75px;
  width: 252px;
  right: 1.75px;
  padding: 20.75px;
  background: #40b038 !important;
  border-radius: 0px 2px 2px 0px !important;
  color: #FFFCFB;
  font-size: 1.5rem;
  font-weight: 900; }
  .custom-submit-button .form-button:hover {
    -webkit-box-shadow: 0px 14px 24px 0px rgba(1, 136, 255, 0.26);
            box-shadow: 0px 14px 24px 0px rgba(1, 136, 255, 0.26);
    color: white; }

.form-button {
  background: #40b038;
  color: #FFFCFB;
  border-radius: .25rem;
  cursor: pointer;
  font-family: var(--general-font);
  font-size: 1rem;
  letter-spacing: 2px;
  font-weight: bold;
  line-height: 1rem;
  padding: 1rem 1.75rem;
  position: relative;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  display: block;
  width: 100%;
  margin-top: 20px; }
  .form-button:hover {
    -webkit-box-shadow: 0px 14px 24px 0px rgba(1, 136, 255, 0.26);
            box-shadow: 0px 14px 24px 0px rgba(1, 136, 255, 0.26);
    color: #FFFCFB; }

.__form-step .steps-label {
  font-size: 24px;
  font-weight: bold;
  color: #061721; }
  .__form-step .steps-label label {
    display: block;
    font-size: 20px;
    font-weight: normal;
    color: #061721;
    position: relative;
    cursor: pointer; }

.form-wrapper-flex {
  position: relative; }
  .form-wrapper-flex .hidden {
    display: none; }
  .form-wrapper-flex .form-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
    .form-wrapper-flex .form-row .x-3 {
      width: 25%; }
    .form-wrapper-flex .form-row .x-4 {
      width: 33.33333333%; }
    .form-wrapper-flex .form-row .x-6 {
      width: 50%; }
    .form-wrapper-flex .form-row .x-8 {
      width: 66.66666666%; }
    .form-wrapper-flex .form-row .x-9 {
      width: 75%; }
    .form-wrapper-flex .form-row .x-12 {
      width: 100%; }
    .form-wrapper-flex .form-row .x-flex {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      margin: 0 !important; }
    .form-wrapper-flex .form-row .dob select {
      width: calc(33.33333333% - 13.33333333px); }
      .form-wrapper-flex .form-row .dob select:not:last-of-type {
        margin-right: 20px; }

.terms {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: top;
      -ms-flex-align: top;
          align-items: top; }

.terms span,
.terms label,
.tcpa-terms span,
.tcpa-terms label {
  color: #576175;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1rem;
  width: 100%;
  padding-left: 2rem;
  margin: 0 0 1rem; }

.terms label.terms-label--text {
  padding: 0; }

.optin input[type="email"] {
  background: url("../img/icon-mail-in.svg") no-repeat scroll 14px 13px;
  padding-left: 50px; }

.loading i {
  display: block !important; }

.loading span {
  display: none !important; }

#submitbutton i {
  display: none; }

#submitbutton span {
  display: block; }

.tcpa-questionary-form .tcpa-questionary {
  width: 100% !important; }

.tcpa-questionary-form .tcpa-question {
  color: #090026 !important;
  margin-bottom: 2rem;
  text-align: center;
  font-size: 1.5rem;
  font-weight: bold; }

.tcpa-questionary-form .tcpa-answers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  overflow: hidden;
  max-width: 320px;
  margin: auto !important;
  padding: 0 !important; }

.tcpa-details ~ .form-row {
  margin: 0; }

#tcpacheck {
  margin: 0; }

#tcpa-confirmation-concent {
  margin: 1rem auto 0 auto;
  border: 1px solid #d6d6d6;
  border-radius: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }
  #tcpa-confirmation-concent .tcpa-consent {
    background: #00a09e; }
  #tcpa-confirmation-concent > * {
    padding: 0.5rem;
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto; }
  @media (max-width: 768px) {
    #tcpa-confirmation-concent {
      width: 100%;
      margin-top: 10px; } }

.tcpa-confirmation {
  width: 60%;
  margin: 0 auto; }
  @media (max-width: 768px) {
    .tcpa-confirmation {
      width: 98%; } }
  .tcpa-confirmation #tcpacheck {
    display: inline-block;
    font-size: 12px;
    opacity: 1; }

@media (max-width: 979px) {
  .custom-submit-button .form-button {
    position: absolute;
    top: -18px !important;
    width: 60%;
    right: 1px;
    padding: 19.5px;
    background: #40b038 !important;
    border-radius: 0px 2px 2px 0px !important;
    color: #FFFCFB;
    font-size: 1.5rem;
    font-weight: 900; }
    .custom-submit-button .form-button:hover {
      -webkit-box-shadow: 0px 14px 24px 0px rgba(1, 136, 255, 0.26);
              box-shadow: 0px 14px 24px 0px rgba(1, 136, 255, 0.26);
      color: white; } }

@media (max-width: 404px) {
  .custom-submit-button .form-button {
    font-size: 1rem !important; } }

.motion--fadeOut {
  opacity: 0;
  -webkit-transition-timing-function: ease-in-out;
          transition-timing-function: ease-in-out; }

.motion--slideTop {
  opacity: 0;
  -webkit-transition-timing-function: ease-in-out;
          transition-timing-function: ease-in-out;
  -webkit-transform: translateY(-5rem);
      -ms-transform: translateY(-5rem);
          transform: translateY(-5rem); }

.motion--slideRight {
  opacity: 0;
  -webkit-transition-timing-function: ease-in-out;
          transition-timing-function: ease-in-out;
  -webkit-transform: translateX(-5rem);
      -ms-transform: translateX(-5rem);
          transform: translateX(-5rem); }

.motion--slideBottom {
  opacity: 0;
  -webkit-transition-timing-function: ease-in-out;
          transition-timing-function: ease-in-out;
  -webkit-transform: translateY(5rem);
      -ms-transform: translateY(5rem);
          transform: translateY(5rem); }

.motion--slideLeft {
  opacity: 0;
  -webkit-transition-timing-function: ease-in-out;
          transition-timing-function: ease-in-out;
  -webkit-transform: translateX(5rem);
      -ms-transform: translateX(5rem);
          transform: translateX(5rem); }

.motion--fadeIn {
  opacity: 1;
  -webkit-transform: none;
      -ms-transform: none;
          transform: none; }

.motion--1 {
  -webkit-transition-duration: 250ms;
          transition-duration: 250ms; }

.motion--2 {
  -webkit-transition-duration: 500ms;
          transition-duration: 500ms; }

.motion--3 {
  -webkit-transition-duration: 1000ms;
          transition-duration: 1000ms; }

.motion--4 {
  -webkit-transition-duration: 1500ms;
          transition-duration: 1500ms; }

.motion--5 {
  -webkit-transition-duration: 2000ms;
          transition-duration: 2000ms; }

header {
  padding: 5px 0; }
  header.gray {
    border-bottom: 2px solid #f7f5f5; }
  header .logotype {
    height: 64px; }
    @media (max-width: 979px) {
      header .logotype {
        height: 50px;
        margin: 0 auto;
        display: block; } }
  header .phone {
    -webkit-transition: all ease .4s;
    transition: all ease .4s;
    padding: 10px 19px;
    background: #7054ed !important;
    background: -webkit-gradient(linear, left top, right top, from(#7054ed), to(#3000bf)) !important;
    background: linear-gradient(90deg, #7054ed 0%, #3000bf 100%) !important;
    color: white;
    border-radius: 2px;
    font-weight: bold;
    font-size: 1rem; }
    header .phone:hover {
      -webkit-box-shadow: 0px 0px 46px 7px rgba(48, 0, 191, 0.4);
              box-shadow: 0px 0px 46px 7px rgba(48, 0, 191, 0.4);
      color: white; }
  @media (max-width: 979px) {
    header {
      padding: 20px 0;
      border-bottom: 2px solid #f7f5f5;
      background: #f7f5f5; }
      header .phone {
        -webkit-transition: all ease .4s;
        transition: all ease .4s;
        padding: 2px 19px;
        background: #f7f7f7 !important;
        color: #4a4a4a;
        border: 1px solid #e4e4e4;
        font-size: 0.775rem; }
        header .phone:hover {
          -webkit-box-shadow: initial;
                  box-shadow: initial;
          color: #4a4a4a; } }

@media (max-width: 979px) {
  .reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse; } }

.choose {
  margin-top: 5rem; }
  .choose h2 {
    font-weight: bold;
    font-size: 3rem;
    color: #0d0033; }
    @media (max-width: 979px) {
      .choose h2 {
        font-size: 2rem; } }
  .choose .box {
    border-radius: 2px;
    background-color: #FCFDFF;
    color: #747474;
    min-height: 250px;
    margin-top: 2rem;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1; }
    .choose .box h3 {
      font-size: 1.25rem;
      font-weight: bold;
      margin-bottom: 1rem; }

.call {
  background: #3f13ca;
  padding: 10rem 0 5rem;
  margin: -3rem 0 0; }
  .call h2 {
    color: white;
    font-size: 2rem;
    font-weight: bold; }

.banner__wrapper .register__form .radio-box input[type="radio"] + span {
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  background: #f7f5f5 !important;
  border-radius: 2px;
  border: 1px solid #fff;
  color: #340391 !important;
  cursor: pointer;
  display: block;
  font-weight: 700;
  margin: 0;
  padding: 0.5rem;
  position: relative;
  text-align: center;
  width: 100%;
  font-size: 15px; }

.banner__wrapper {
  margin-bottom: -3.5rem;
  padding-bottom: 6rem; }
  .banner__wrapper--gradient {
    background-image: -webkit-gradient(linear, left top, left bottom, from(white), to(#f4f4f6));
    background-image: linear-gradient(white, #f4f4f6); }
  @media (max-width: 979px) {
    .banner__wrapper {
      min-height: 800px; } }
  .banner__wrapper .title-html h2 {
    font-size: 2.5rem;
    color: #4a4a4a;
    padding-top: 0; }
  .banner__wrapper .path-dynamic-field h3 {
    margin-top: 10px;
    margin-bottom: 10px; }
  .banner__wrapper h3 {
    margin-top: 40px; }
    @media (max-width: 979px) {
      .banner__wrapper h3 {
        width: 100%; } }
  .banner__wrapper h4 {
    margin: 6rem 0 0;
    padding: 0 0 1rem 0; }
  .banner__wrapper img {
    margin: 0px auto; }

nav {
  padding: .75rem 0;
  background: #F5FAFF;
  -webkit-box-shadow: 0px 14px 24px 0px rgba(1, 136, 255, 0.26);
          box-shadow: 0px 14px 24px 0px rgba(1, 136, 255, 0.26); }
  nav.nav--grayBorder {
    border-bottom: 1px solid #e3e5e8; }

.navbar__phone {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }
  .navbar__phone img {
    width: 40px; }
  .navbar__phone div {
    margin-left: 1rem; }
    .navbar__phone div h5 {
      font-weight: 700;
      font-size: .75rem;
      color: #FAECE5; }
    .navbar__phone div h4 {
      font-weight: 800;
      font-size: 1.25rem;
      color: #FFFCFB; }

.navbar__hyperLink div a {
  color: #321F1A;
  font-size: 1rem;
  font-weight: 500;
  margin: 0rem 1rem;
  -webkit-transition: .2s;
  transition: .2s; }
  .navbar__hyperLink div a:hover {
    color: #0188FF; }

.navbar__phoneBg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-shadow: 0px 14px 24px 0px rgba(1, 136, 255, 0.26);
          box-shadow: 0px 14px 24px 0px rgba(1, 136, 255, 0.26);
  border-radius: 0.5rem;
  padding: 1rem 1rem;
  -webkit-animation: animation-button-phone 1.5s ease-in-out infinite alternate;
          animation: animation-button-phone 1.5s ease-in-out infinite alternate; }

@-webkit-keyframes animation-button-phone {
  0% {
    -webkit-transform: scale(1) rotate(2deg);
            transform: scale(1) rotate(2deg);
    -webkit-box-shadow: 0px 14px 24px 0px rgba(1, 136, 255, 0.26);
            box-shadow: 0px 14px 24px 0px rgba(1, 136, 255, 0.26); }
  100% {
    -webkit-transform: scale(1.1) rotate(-2deg);
            transform: scale(1.1) rotate(-2deg);
    -webkit-box-shadow: 0px 0.75rem 2.5rem -0.75rem rgba(0, 0, 0, 0.75);
            box-shadow: 0px 0.75rem 2.5rem -0.75rem rgba(0, 0, 0, 0.75); } }

@keyframes animation-button-phone {
  0% {
    -webkit-transform: scale(1) rotate(2deg);
            transform: scale(1) rotate(2deg);
    -webkit-box-shadow: 0px 14px 24px 0px rgba(1, 136, 255, 0.26);
            box-shadow: 0px 14px 24px 0px rgba(1, 136, 255, 0.26); }
  100% {
    -webkit-transform: scale(1.1) rotate(-2deg);
            transform: scale(1.1) rotate(-2deg);
    -webkit-box-shadow: 0px 0.75rem 2.5rem -0.75rem rgba(0, 0, 0, 0.75);
            box-shadow: 0px 0.75rem 2.5rem -0.75rem rgba(0, 0, 0, 0.75); } }

@media (max-width: 979px) {
  .navbar__logotype {
    margin-top: 0px;
    width: 100%; }
  .navbar__phoneBg {
    margin-top: 0px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    background-color: #40b038;
    -webkit-box-shadow: 0px 14px 24px 0px rgba(1, 136, 255, 0.26);
            box-shadow: 0px 14px 24px 0px rgba(1, 136, 255, 0.26);
    border-radius: 0.5rem;
    padding: .75rem 1rem;
    width: 100%;
    -webkit-transition: all 0.1s ease-in;
    transition: all 0.1s ease-in; }
  .navbar__phone {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; }
    .navbar__phone img {
      width: 32px; }
    .navbar__phone div h5 {
      font-size: 11px; }
    .navbar__phone div h4 {
      font-size: 11px; }
  .navbar__hyperLink {
    text-align: center; } }

.path__searchFilter {
  position: relative; }
  .path__searchFilterInput {
    padding: .75rem !important; }
  .path__searchFilterIcon {
    position: absolute;
    top: calc(.5rem + 1px);
    right: 1rem;
    font-size: 1.25rem;
    color: #7053ec; }

:root {
  --padding-height-base: 6.25rem; }

.section {
  padding: calc(var(--padding-height-base)*1) 0; }
  .section.white {
    background: -webkit-gradient(linear, left top, left bottom, from(#f9fafa), to(white));
    background: linear-gradient(#f9fafa, white);
    background-size: 8px; }
  .section.black {
    background: black; }
  .section.big {
    padding: calc(var(--padding-height-base)*2) 0; }
  .section.bigger {
    padding: calc(var(--padding-height-base)*3) 0; }
  .section.biggest {
    padding: calc(var(--padding-height-base)*4) 0; }

@media (max-width: 979px) {
  .section {
    padding: 1rem .5rem; } }

.twy-registration {
  border-bottom: 0.0625rem solid #c7cad1;
  margin: 0 .5rem 1.25rem;
  padding: 0 0 1rem; }
  .twy-registration #twy-nextcampaign {
    display: none !important; }
  .twy-registration .twy-registration-input {
    display: block; }
  .twy-registration .twy-registration-container {
    line-height: 1.3;
    width: 100%;
    padding-left: 3rem; }
    @media (max-width: 480px) {
      .twy-registration .twy-registration-container {
        width: 100%; } }
    .twy-registration .twy-registration-container .twy-registration-container-body {
      font-size: .75rem;
      color: #576175;
      line-height: 1.25rem;
      font-weight: normal;
      font-family: var(--general-font) !important; }
  .twy-registration__body {
    margin-left: 2.5rem !important; }
  .twy-registration__label {
    color: #576675 !important;
    font-weight: normal !important;
    font-size: .75rem !important; }

.twy-pub-container {
  padding: 0 !important;
  margin-top: 0 !important; }

#twy-adserve-title, .pagetex {
  margin: 0 0 16px 0 !important;
  color: #0b5394 !important;
  font-size: 18px !important;
  font-weight: bold !important;
  text-align: center; }

.twy-adserve-header {
  padding: 0 !important; }

.twy-hide {
  display: none; }
