@charset "utf-8";
/* CSS Document */

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&amp;family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&amp;display=swap');
* {
    box-sizing: border-box;
}

body {
    background: #f1f8ff;
    margin: 0px;
    padding: 0px;
    font-family: 'Roboto', sans-serif;
    line-height: 1.3;
    font-size: 21px;
    color: rgb(45, 45, 45);
    font-weight: 300;
    text-align: center;
}

a {
    text-decoration: none !important;
}

.container {
    max-width: 880px;
    margin: auto;
}

.top {
    background: #ffffff;
    text-align: left;
    padding: 5px;
    border-bottom: 1px solid #0c2f498a;
    margin-bottom: 60px;
}

.center {
    text-align: center;
}

.button-section {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 2px 5px 2px rgb(0 0 0 / 40%);
}

.logo {
    max-width: 100px;
    height: auto;
    width: 100%;
    margin-bottom: -50px;
    border-radius: 100%;
}

.header-line a {
    color: #000;
    text-decoration: none;
}

.header-line a:hover {
    color: #2d2d2de3;
    text-decoration: none;
}

.header-line span,
.red {
    color: #dd0707;
}

img {
    max-width: 100%;
}

.button {
    background-color: #e9a800;
    color: #FFFFFF;
    font-size: 1.7337rem;
    font-family: Arial;
    font-weight: 700;
    display: block;
    padding: 15px;
    text-align: center;
    text-decoration: none;
    max-width: 100%;
    margin: auto;
}

h1 {
    font-size: 24px !important;
    font-weight: 600 !important;
    line-height: 1.3;
}

h2 {
    font-size: 25px !important;
    font-weight: 500 !important;
    line-height: 1.3;
}

.main {
    max-width: 500px;
    margin: auto;
}

footer {
    margin-top: 20px;
    padding: 10px;
    font-size: 12px;
    text-align: left;
    color: #8f8d9b;
}

.policy {
    display: block;
    padding: 10px;
    font-size: 13px;
}

.policy a {
    color: #000;
    text-decoration: none;
}

.cta {
    background: #fff;
    width: 100%;
    position: sticky;
    bottom: -1px;
    padding: 10px;
}

.button-cta {
    max-width: 860px;
    margin: auto;
    margin-top: 3px;
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: 400;
}

.button-cta a {
    background-color: #e9a800;
    color: #FFFFFF;
    font-size: 18px;
    padding: 5px;
    text-decoration: none;
    border-radius: 5px;
}

@media screen and (max-width: 768px) {
    .container {
        padding-left: 6px;
        padding-right: 6px;
    }
    .button-cta a {
        background-color: #ff5600;
        color: #FFFFFF;
        font-size: 18px;
        padding: 10px;
        text-decoration: none;
        font-weight: 500;
        border-radius: 5px;
        display: block;
        margin: 10px;
    }
}

.question {
    text-align: center;
}

.hidden {
    display: none;
}

.cta_btn {
    text-align: center;
    background-color: #00b67a;
    border-radius: 30px;
    padding: 15px 0px;
    margin-top: 10px;
    color: white;
    font-weight: bold;
    font-size: 1.5rem;
    text-decoration: none !important;
    display: block;
    max-width: 250px;
    margin: 17px auto;
}

.cta_btn:hover {
    color: white;
    box-shadow: inset 0 2px 2px 0 rgba(255, 255, 255, 0.22), 0 233px 233px 0 rgba(255, 255, 255, 0.12) inset;
    cursor: pointer;
}

.boxme {
    text-align: center;
    padding: 10px 7px;
    background-color: #fff;
    border-top: 5px solid #00007c;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 400;
    box-shadow: 0 0 7px 0 rgba(0, 0, 0, .2);
    transition: all .2s ease;
    margin-bottom: 20px;
}

.qualifyHeadline {
    font-size: 22px;
    font-weight: bold;
    color: #2fbdaa;
    margin-bottom: 2px;
}

.loadingCopy {
    font-size: 22px;
    margin-bottom: 25px;
}

/*Loading*/

.loadingContainer {
    text-align: center;
    padding-block: 30px;
}

.loadingContainer .ball {
    display: inline-block;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    margin: 0 3px;
    background: #3be7ae;
    z-index: 1;
    animation: bounce 1.5s infinite ease-in-out;
    -moz-animation: bounce 1.5s infinite ease-in-out;
    -webkit-animation: bounce 1.5s infinite ease-in-out;
}

.loadingContainer .ball2 {
    -webkit-animation-delay: 0.25s;
    animation-delay: 0.25s;
}

.loadingContainer .ball3 {
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
}

.loadingContainer .ball4 {
    -webkit-animation-delay: 0.75s;
    animation-delay: 0.75s;
}

@keyframes bounce {
    0%,
    15% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(0, -30px);
        background: #00b67a;
    }
    85%,
    100% {
        transform: translate(0, 0);
    }
}

@-moz-keyframes bounce {
    0%,
    15% {
        -moz-transform: translate(0, 0);
    }
    50% {
        -moz-transform: translate(0, -30px);
        background: #00b67a;
    }
    85%,
    100% {
        -moz-transform: translate(0, 0);
    }
}

@-webkit-keyframes bounce {
    0%,
    20% {
        -webkit-transform: translate(0, 0);
    }
    50% {
        -webkit-transform: translate(0, -30px);
        background: #00b67a;
    }
    80%,
    100% {
        -webkit-transform: translate(0, 0);
    }
}

img.mob {
    display: none;
}

.testimonial-sec {
    padding: 40px 15px 30px;
    background: #fff;
    margin-top: 40px;
}

.testimonial-sec h2 {
    margin: 0 auto 10px;
}

.testimonial-sec p {
    margin: 0 auto 20px;
    max-width: 800px;
    font-weight: 400;
}

.testimonial-sec figure {
    margin: auto;
    max-width: 1080px;
    width: 98%;
}

@media (max-width:767px) {
    img.desk {
        display: none;
    }
    img.mob {
        display: block;
        margin: auto;
        max-width: 330px;
    }
    .testimonial-sec p {
        font-size: 18px;
    }
    .testimonial-sec h2 {
        font-size: 23px !important;
    }
}