@import url("css2.css");
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  font-family: "Montserrat", sans-serif;
}
.container {
  max-width: 720px;
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  .container {
    padding: 0 20px;
  }
}
header {
  background-color: #090161;
  text-align: center;
  padding: 20px 0;
}
header h1 {
  color: #FFFFFF;
  margin: 0;
}
.hero_banner {
  text-align: center;
}
.hero_banner img {
  width: 100%;
}
.hero_banner h2 {
  font-size: 30px;
}
.hero_banner h2 span {
  color: #e93d3d;
}
.cards {
  margin-bottom: 30px;
}
.cards div#q0{
	display: block;
}

.cards div#q1{
	display: none;
}

.cards h3 {
  color: #1800c8;
  text-align: center;
}
.cards .card_submit {
  display: block;
  text-decoration: none;
  text-align: center;
  width: 100%;
  margin-bottom: 10px;
  background: #37ca37;
  border-radius: 10px;
  border: 1px solid #449d1a;
  color: #FFFFFF;
  font-size: 20px;
  cursor: pointer;
  font-weight: 500;
}
.cards button:last-child {
  margin-bottom: 20px;
}
.cards p {
  font-size: 20px;
  line-height: 26px;
  color: #000000;
  text-align: center;
  margin-top: 0;
}
.cards .ratings img {
  width: 100%;
}
.how_works {
  margin-bottom: 30px;
}
.how_works h2 {
  text-align: center;
  color: #449d1a;
}
.how_works p {
  text-align: center;
  font-size: 20px;
  line-height: 28px;
}
.how_works ul li {
  font-size: 20px;
  list-style-type: auto;
  margin-bottom: 20px;
}
.how_works ul li span {
  font-weight: 700;
  padding-right: 10px;
}
footer {
  background-color: #090161;
  text-align: center;
  padding: 10px 0;
}
footer p {
  color: #FFFFFF;
  font-size: 18px;
  line-height: 24px;
}
.dbt_fb_news h3 {
  font-size: 24px;
  margin: 20px auto;
  max-width: 500px;
}
.dbt_fb_news p {
  margin-top: 50px;
  font-size: 15px;
}
.final_title {
  text-align: center;
}
.final_title h3 {
  color: #ff0004;
  font-size: 30px;
  text-transform: uppercase;
}
.call_box {
    margin-bottom: 40px;
}
.info_box {
  background: #fff;
  padding: 15px;
  border-radius: 10px;
  text-align: center;
}
.info_box h3 {
  color: #449d1a;
  text-align: center;
  font-size: 24px;
}
.info_box h2 {
  font-size: 22px;
  max-width: 450px;
  margin: 0 auto
}
.info_box h4, .info_box p {
  font-size: 20px;
  font-weight: 700;
}
.info_box p span {
  color: #449d1a;
  text-decoration: underline;
}
.info_box img {
  width: 100%;
}
.calling a {
	margin: 0 auto;
  display: block;
  text-decoration: none;
  text-align: center;
  width: 80%;
  margin-bottom: 10px;
  background: #37ca37;
  border-radius: 10px;
  border: 1px solid #449d1a;
  padding: 15px 20px;
  color: #FFFFFF;
  font-size: 20px;
  cursor: pointer;
  font-weight: 500;
}
/* 1. Pulse Animation */
.calling a {
  animation: pulse 1.5s infinite;
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
/*** mobile ***/


.copyright {
	text-align: center
}

@media only screen and (max-width: 767px) {
  header h1 {
    font-size: 26px;
  }
  .hero_banner h2 {
    font-size: 22px;
  }
  footer p {
    font-size: 15px;
  }
}








.container {
    max-width: 44rem;
    margin: 0 auto;
}


.button {
    display: block;
    width: 100%;
    padding: 15px 0;
    margin-bottom: 1.125rem;
    border-radius: 3px;
    text-align: center;
    background-color: #006ac9;
    border-color: transparent;
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
}






.boxme {
    text-align: center;
    padding: 20px 34px;
    background-color: #fff;
    border-top: 5px solid #26830f;
    font-size: 14px;
    line-height: 1.75;
    font-weight: 400;
    box-shadow: 0 0 7px 0 rgb(0 0 0/20%);
    transition: all 0.2s ease;
}

.boxme h5 {
    text-align: center;
    font-size: 1.5rem;
    line-height: 2.5rem;
    margin: 0.5em 0;
}

@keyframes fade-in {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes fade-out {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

#dontqualify,
#loading1,
#loading2,
#loading3,
#q0,
#q2,
#qualify {
    display: none;
}

@keyframes pulsing {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7);
    }

    70% {
        transform: scale(1.034);
        box-shadow: 0 0 0 10px transparent;
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 transparent;
    }
}

.fade-in {
    animation: fade-in;
    animation-duration: 1s;
}

.fade-out {
    animation: fade-out;
    animation-duration: 1s;
}


.time-very {
    width: 100%;
    float: left;
}

.time {
    font-size: 14px;
    line-height: 18px;
    color: #666666;
}

.verified-pop {
    font-size: 13px;
    line-height: 21px;
    letter-spacing: 0.3px;
    color: #0cc34d;
}

.verified-pop img {
    display: inline-block;
    vertical-align: middle;
    margin: -3px 3px 0 3px;
}

@media only screen and (max-width:420px) {
    .custom-notification {
        width: 310px;
    }

    .custom-notification-image-wrapper {
        width: 70px;
    }

    .custom-notification-content-wrapper {
        width: calc(100% - 70px);
        padding: 3px 6px 6px 8px;
    }

    #social-proof-customer {
        font-size: 13px;
    }

    .custom-notification-content {
        font-size: 13px;
        line-height: 22px;
    }

    .time {
        font-size: 13px;
    }

    .verified-pop {
        font-size: 11px;
        line-height: 20px;
    }

    .verified-pop img {
        width: 10px;
    }
}