/* Global */
* {
    margin: 0px;
    padding: 0px;
}
html {
    font-family: Arial, Helvetica, sans-serif;
    height: 100%;
}
body {
    animation-duration: 1s;
    animation-iteration-count: 1;
    animation-name: load;
    animation-timing-function: linear; 
    height: 100%;
}
.noscript-container {
    align-items: center;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: absolute;
    width: 100%;
    z-index: 1;
}
noscript {
    background-color: #02c282;
    border-radius: 10px;
    color: #ffffff;
    font-size: 25px;
    margin: auto;
    padding: 15px;
    text-align: center;
    width: 50%;
}
.flex-container {
    align-items: center;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}
.title-txt {
    color: #ffffff;
    font-size: 72px;
    font-weight: bolder;
}
.footer {
    background-color: #121212;
    color: #ffffff;
    font-size: 20px;
    margin-top: auto;
    padding: 15px 0px 15px 0px;
    text-align: center;
    width: 100%;
}
.reveal{
    opacity: 0;
    position: relative;
    transform: translateY(150px);
    transition: 2s all ease;
  }
.reveal.active{
    opacity: 1;
    transform: translateY(0);
}
/* Animations */
@keyframes enter-down {
    0% {opacity: 0.0; transform: translateY(-100%);}
    10% {opacity: 0.1; transform: translateY(-90%);}
    20% {opacity: 0.2; transform: translateY(-80%);}
    30% {opacity: 0.3; transform: translateY(-70%);}
    40% {opacity: 0.4; transform: translateY(-60%);}
    50% {opacity: 0.5; transform: translateY(-50%);}
    60% {opacity: 0.6; transform: translateY(-40%);}
    70% {opacity: 0.7; transform: translateY(-30%);}
    80% {opacity: 0.8; transform: translateY(-20%);}
    90% {opacity: 0.9; transform: translateY(-10%);}
    100% {opacity: 1.0; transform: translateY(0%);}
} 
@keyframes enter-right {
    0% {opacity: 0.0; transform: translate(-50%);}
    10% {opacity: 0.0; transform: translate(-45%);}
    20% {opacity: 0.0; transform: translate(-40%);}
    30% {opacity: 0.0; transform: translate(-35%);}
    40% {opacity: 0.0; transform: translate(-30%);}
    50% {opacity: 0.3; transform: translate(-25%);}
    60% {opacity: 0.5; transform: translate(-20%);}
    70% {opacity: 0.7; transform: translate(-15%);}
    80% {opacity: 0.9; transform: translate(-10%);}
    90% {opacity: 1.0; transform: translate(-5%);}
    100% {opacity: 1.0; transform: translate(0%);}
} 
@keyframes load {
    0% {opacity: 0.0;}
    25% {opacity: 0.2;}
    50% {opacity: 0.5;}
    75% {opacity: 0.8;}
    100% {opacity: 1.0;}
}
@keyframes swipe-left {
    0% {opacity: 1.0; transform: translate(0%);}
    12.5% {opacity: 0.8; transform: translate(-25%);}
    25% {opacity: 0.6; transform: translate(-50%);}
    37.5% {opacity: 0.4; transform: translate(-75%);}
    50% {opacity: 0.3; transform: translate(-100%);}
    62.5% {opacity: 0.2; transform: translate(-125%);}
    75% {opacity: 0.1; transform: translate(-150%);}
    87.5% {opacity: 0.05; transform: translate(-175%);}
    100% {opacity: 0.0; transform: translate(-200%);}
}
 
/* Index */
.navigation-bar {
    align-items: center;
    background-color: #121212;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    min-height: 80px;
    width: 100%;
}
.navigation-bar-img img {
    margin-left: 2%;
    width: 80%;
}
.navigation-bar-links ul {
    display: flex;
    position: relative;
    top: 20px;
}
.navigation-bar-links li {
    list-style: none;
}
.navigation-bar-links li a {
    color: #ffffff;
    display: block;
    font-size: 20px;
    padding: 1rem;
    text-decoration: none;
}
.nav-list {
    display: flex;
    gap: 5%;
    justify-content: space-evenly;
}
.nav-link {
    list-style-type: none;
}
.nav-link a {
    color: #ffffff;
    font-size: 25px;
    text-decoration: none;
}
.toggle-btn {
    display: none;
    flex-direction: column;
    height: 21px;
    justify-content: space-between;
    position: absolute;
    right: 1rem;
    top: 0.7rem;
    width: 30px;
}
.toggle-btn:hover {
    cursor: pointer;
}
.toggle-btn .bar {
    background-color: #ffffff;
    border-radius: 10px;
    height: 3px;
    width: 100%;
}
.mobile-nav-menu {
    display: none;
}
.hero {
    background-color: rgba(0, 0, 0, 0.05);
    min-height: 100vh;
}
#bg-video {
    bottom: 0px;
    min-height: 100%;
    min-width: 100%;
    position: fixed;
    right: 0px;
    z-index: -1;
}
.hero-container {
    align-items: center;
    display: flex;
    flex-direction: column;
}
.hero-container p {
    animation-duration: 1.5s;
    animation-iteration-count: 1;
    animation-name: enter-right;
    animation-timing-function: linear; 
    margin-right: 15.5%;
    margin-top: 2.5%;
    width: 80%;
}
.hero-container ul {
    display: flex;
    flex-direction: column;
}
.hero-container li {
    align-items: center;
    color: #ffffff;
    display: flex;
    font-size: 30px;
    font-weight: bold;
    list-style: none;
}
#point-1 {
    animation-delay: 1.5s;
    animation-duration: 1s;
    animation-iteration-count: 1;
    animation-name: load;
    animation-timing-function: linear;  
}
#point-2 {
    animation-delay: 2.5s;
    animation-duration: 1s;
    animation-iteration-count: 1;
    animation-name: load;
    animation-timing-function: linear;  
}
#point-3 {
    animation-delay: 3.5s;
    animation-duration: 1s;
    animation-iteration-count: 1;
    animation-name: load;
    animation-timing-function: linear;  
}
#learn-more {
    animation-delay: 4.5s;
    animation-duration: 1s;
    animation-iteration-count: 1;
    animation-name: load;
    animation-timing-function: linear;  
}
#first-btn {
    animation-delay: 4.5s;
    animation-duration: 1s;
    animation-iteration-count: 1;
    animation-name: load;
    animation-timing-function: linear;  
    margin-right: 0%;
    margin-top: 2%;
}
.hero-container img {
    width: 8%;
}
.learn-more {
    color: #ffffff;
    font-size: 25px;
    font-style: italic;
    margin-right: 75%;
    text-decoration-color: #00d68f;
}
.our-process {
    align-items: center;
    background-image: url('../images/our_process_background.jpg');
    background-size: cover;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    width: 100%;
}
.our-process-title {
    padding-top: 2%;
    text-align: center;
}
.our-process p {
    margin-top: 0%;
}
.landing-card-container {
    display: flex;
    flex-direction: row;
    flex-flow: nowrap;
    height: auto;
    justify-content: space-evenly;
    margin-top: 2%;
    width: 100%;
}
.landing-card {
    align-items: center;
    background-color: #02c282;
    border-radius: 25px;
    box-shadow: 2px 2px 5px 1px #000000;
    display: flex;
    flex-direction: column;
    width: 25%;
}
.landing-card-title {
    color: #ffffff;
    font-size: 30px;
    font-weight: bold;
    padding: 15px 0px 15px 0px;
}
.landing-card-body {
    align-items: center;
    background-color: #ebebeb;
    border-radius: 0px 0px 25px 25px;
    display: flex;
    flex-direction: column;
    height: 100%;
    gap: 25px;
    justify-content: space-evenly;
}
.landing-card-body-title {
    font-size: 30px;
    font-weight: bold;
    padding-top: 20px;
}
.icon-container {
    align-items: center;
    display: flex;
    flex-direction: column;
    height: 200px;
    justify-content: center;
    width: 200px;
}
.landing-card-icon {
    width: 200px;
}
.landing-card-body-txt {
    font-size: 20px;
    padding: 15px;
    text-align: center;
}
.why-we-save {
    background-color: #00a16b;
    min-height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}
.why-we-save-title-txt {
    padding: 2% 2% 0% 0%;
    text-align: end;
}
.column-flex-container {
    align-items: center;
    display: flex;
    flex-direction: column;
}
.why-we-save-container {
    align-items: center;
    display: flex;
    min-height: 600px;
    justify-content: space-evenly;
    margin-bottom: 2%;
}
.why-we-save-mobile-img {
    display: none;
}
.why-we-save-mobile-txt {
    display: none;
}
.why-we-save-left-container {
    width: 50%;
}
.img-container  {
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-items: center;  
}
.img-container img {
    animation-duration: 1s;
    animation-iteration-count: 1;
    animation-timing-function: linear; 
    width: 60%;
}
.why-we-save-right-container {
    width: 50%;
}
.txt-container {
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.txt-container p {
    animation-duration: 1s;
    animation-iteration-count: 1;
    animation-timing-function: linear; 
    color: #ffffff;
    font-size: 30px;
    line-height: 1.6;
    text-align: left;
    text-indent: 25px;
    width: 80%;
}
.why-we-save-btn-container {
    align-items: center;
    display: flex;
    gap: 15px;
    justify-items: space-evenly;
    padding-bottom: 15px;
}
.why-we-save-btn-container div {
    background-color: #ffffff;
    border-radius: 50%;
    box-shadow: 1px 1px 5px 1px #000000;
    height: 30px;
    width: 30px;
}
.why-we-save-btn-container div:hover {
    cursor: pointer;
}
.testimonials {
    background-color: #ebebeb;
    height: 100vh;
    width: 100%;
}
.landing-quotes-container {
    align-items: center;    
    display: flex;
    flex-direction: row;
    height: inherit;
    justify-content: space-evenly;
}
.landing-quote-container {
    align-items: center;
    display: flex;
    flex-direction: column;
    width: 400px;
}
.landing-quote {
    font-size: 30px;
    text-align: center;
}
.big-quote {
    color: #02c282;
    line-height: 80%;
    font-size: 100px;
    font-weight: bold;
}
.quote-highlight {
    color: #02c282;
    font-weight: bold;
}
.landing-quoted {
    color: #02c282;
    font-size: 25px;
    font-style: italic;
    margin-top: 5%;
}
.end-quote {
    color: #02c282;
}
.contact-us {
    background-color: #121212;
    min-height: 100vh;
    width: 100%;
}
.contact-us-title {
    padding: 2% 2% 0% 0%;
    text-align: end;
}
.contact-us-container {
    align-items: center;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
}
.contact-us-left-container {
    align-items: center;
    display: flex;
    flex-direction: column;
    width: 40%;
}
.contact-us-left-container p {
    color: #ffffff;
    font-size: 50px;
    text-align: center;
}
.vertical-line {
    border-left: 2px solid #ffffff;
    height: 600px;
}
.contact-us-right-container {
    align-items: center;
    border: 5px solid #ffffff;
    display: flex;
    flex-direction: column;
    height: 500px;
    justify-content: space-evenly;
    padding: 5px;
    width: 500px;
}
.contact-us-right-container a {
    align-items: center;
    color: #ffffff;
    display: flex;
    font-size: 18px;
    padding-left: 5%;
    text-decoration: none;
}
.contact-us-right-container p {
    align-items: center;
    color: #ffffff;
    display: flex;
    font-size: 18px;
    padding-left: 5%;
}
.contact-us-right-container img {
    margin-right: 2%;
    width: 10%;
}
.link-btn {
    background-color: #00a16b;
    border-radius: 10px;
    box-shadow: 2px 2px 5px 1px #000000;
    color: #ffffff;
    font-size: 28px;
    font-weight: bold;
    margin-top: 45px;
    padding: 15px 40px 15px 40px;
    text-decoration: none;
}

/* Quiz */
.quiz-body {
    background-image: url('../images/quiz_background.jpg');
    background-size: cover;
}
.tracker {
    margin: 50px 0px 0px 0px;
}
.mobile-tracker {
    display: none;
}
.tracker img {
    animation-duration: 0.75s;
    animation-iteration-count: 1;
    animation-timing-function: linear;
}
.card {
    animation-duration: 1s;
    animation-iteration-count: 1;
    animation-timing-function: linear;
    background-color: #02c282;
    border-radius: 10px;
    box-sizing: border-box;
    box-shadow: 2px 2px 20px 2px #636363;
    height: min-content;
    margin: 50px 0px 0px 0px;
    width: 40%;
}
.question {
    color: #ffffff;
    font-size: 28px;
    font-weight: bold;
    margin: 15px 0px 15px 0px;
    text-align: center;
}
.card-content {
    align-items: center;
    background-color: #ebebeb;
    border-radius: 0px 0px 10px 10px;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    padding: 0px 0px 50px 0px;
}
.card-icon {
    margin: 45px 0px 0px 0px;
    width: 200px;
}
#bolt {
    width: 80%;
}
.card-text {
    font-size: 18px;
    margin: 50px 0px 0px 0px; 
    text-align: center;  
    width: 60%;
}
.btn-container {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 50px;
    margin: 50px 0px 0px 0px;
}
.choice-btn {
    align-items: center;
    background-color: #ffffff;
    border-radius: 50%;
    box-shadow: 2px 2px 10px 2px #414141;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    height: 100px;
    justify-content: center;
    width: 100px;
}
.choice-btn input {
    height: 65px;
    padding: 20px;
    width: 65px;
}
.label-container {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap; 
    gap: 130px; 
    margin: 20px 0px 0px 0px;
}
.label-container label {
    font-weight: bold;
}
select {
    border: none;
    border-radius: 5px;
    box-shadow: 2px 2px 10px 2px #414141;
    font-size: 18px;
    margin: 50px 0px 0px 0px;
    padding: 10px 15px 10px 15px;
}
#contact-form {
    margin-bottom: 5%;
}
.contact-card {
    align-items: center;
    background-color: #ebebeb;
    border-radius: 0px 0px 10px 10px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 0;
    justify-items: center;
    padding: 50px 0px 50px 0px;
}
#pending {
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-items: center;
    margin: 0px 0px 0px 0px;
    width: 50%;
}
#pending img {
    margin: 0px 0px 0px 0px;
}
.form-container  {
    align-items: center;
    display: flex;
    flex-direction: column;
    font-size: 18px;
    justify-items: center;
    margin-bottom: 25px;
    width: 50%;
}
.form-container p {
    margin-bottom: 5%;
}
form {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.form-container input {
    border: 2px solid #000000;
    border-radius: 5px;
    padding: 10px 15px 10px 15px;
    width: 100%;
}
::placeholder {
    color: #000000;
    font-size: 16px;
    font-style: italic;
}
.hidden-form {
    display: none;
}
#submit-btn {
    animation-duration: 0.75s;
    animation-iteration-count: 1;
    animation-timing-function: linear;
    background-color: #00a16b;
    border: none;
    box-shadow: 2px 2px 10px 2px #414141;
    color: #ffffff;
    font-size: 20px;
    font-weight: bold;
    margin: 15px 0px 0px 0px;
    width: 80%;
}
#submit-btn:hover {
    cursor: pointer;
}

/* Thank_You */
.thank-you-body {
    background-image: url('../images/quiz_background.jpg');
    background-size: cover;
}
#thank-you {
   width: 50%; 
}
video {
    margin: 3% 0% 0% 0%;
    width: 95%;
}
video:hover {
    cursor: pointer;
}
.subtitle {
    color: #353535;
    font-weight: bold;
    font-size: 24px;
    margin: 25px 0px 25px 0px;
}
.row-flex-container {
    align-items: center;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-evenly;
}
.about-us-list {
    width: 50%;
}
.about-us-list li {
    align-items: center;
    display: inline-flex;
    flex-direction: row;
    flex-wrap: wrap;
    font-size: 16px;
    list-style: none;
}
.about-us-list img {
    width: 60px;
}
.right-container {
    align-items: center;
    display: flex;
    flex-direction: column;
}
.right-container p {
    font-weight: bold;
    text-align: center;
}
.right-container img {
    margin: 25px 0px 0px 0px;
    width: 40%;
}
.quote-container {
    animation-duration: 1s;
    animation-iteration-count: 1;
    animation-timing-function: linear; 
    background-color: #ebebeb;
    box-shadow: 5px 5px 15px 1px #636363;
    margin: 65px 0px 65px 0px;
    padding: 10px 0px 10px 0px;
    width: 30%;
}
.quote {
    font-size: 20px;
    margin: auto;
    text-align: left;
    width: 80%;
}
.open-quote {
    color: #02c282;
    font-size: 45px;
    font-weight: bold;
}
.highlight-quote {
    color: #02c282;
    font-weight: bold;
}
.close-quote {
    color: #02c282;
    font-weight: bold;
}
.quoted {
    color: #02c282;
    float: right;
    font-style: italic;
    margin: 15px 15px 0px 0px;
}

/* Media Queries */
/* Landscape */
@media only screen and (max-width: 1024px) {
      /* Global */
      noscript {
        background-color: #02c282;
        border-radius: 10px;
        color: #ffffff;
        font-size: 25px;
        margin: auto;
        padding: 15px;
        text-align: center;
        width: 80%;
    }
    .title-txt {
        color: #ffffff;
        font-size: 50px;
        font-weight: bolder;
    }
    .footer {
        color: #ffffff;
        background-color: #121212;
        font-size: 20px;
        margin-top: auto;
        padding: 15px 0px 15px 0px;
        text-align: center;
        width: 100%;
    }

    /* Index */
    .navigation-bar {
        align-items: center;
        background-color: #121212;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        min-height: 50px;
        width: 100%;
    }
    .navigation-bar-img img {
        margin-left: 2%;
        width: 60%;
    }
    .navigation-bar-links ul {
        display: none;
        position: relative;
        top: 20px;
    }
    .navigation-bar-links li {
        list-style: none;
    }
    .navigation-bar-links li a {
        color: #ffffff;
        display: block;
        font-size: 20px;
        padding: 1rem;
        text-decoration: none;
    }
    .nav-list {
        display: flex;
        justify-content: space-evenly;
        gap: 5%;
    }
    .nav-link {
        list-style-type: none;
    }
    .nav-link a {
        color: #ffffff;
        font-size: 25px;
        text-decoration: none;
    }
    .mobile-nav-menu {
        align-items: center;
        animation-duration: 1s;
        animation-iteration-count: 1;
        animation-timing-function: linear;
        background-color: #121212;
        display: none;
        flex-direction: column;
        min-height: 100vh;
        position: absolute; 
        width: 100%;
        z-index: 1;
    }
    .mobile-nav-menu ul {
        align-items: center;
        display: flex;
        flex-direction: column;
        gap: 80px;
        margin-top: 25%;
        width: 100%;
    }
    .mobile-nav-menu li {
        list-style: none;
    }
    .mobile-nav-menu a {
        color: #ffffff;
        font-size: 35px;
        text-decoration: none;
    }
    .toggle-btn {
        display: flex;
        flex-direction: column;
        height: 20px;
        justify-content: space-between;
        position: absolute;
        right: 1rem;
        top: 0.8rem;
        width: 30px;
    }
    .toggle-btn:hover {
        cursor: pointer;
    }
    .toggle-btn .bar {
        background-color: #ffffff;
        border-radius: 10px;
        height: 3px;
        width: 100%;
    }
    .toggle-btn.open #bar-1 {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .toggle-btn.open #bar-2 {
        display: none;
    }
    .toggle-btn.open #bar-3 {
        transform: rotate(-45deg) translate(6px, -8px);  
    }
    .hero {
        background-color: none;
        background-image: url('../images/hero_background_mobile.jpg');
        background-position: center;
        background-size: cover;
        min-height: 100vh;
    }
    #bg-video {
        bottom: 0px;
        display: none;
        min-height: 100%;
        min-width: 100%;
        position: fixed;
        right: 0px;
        z-index: -1;
    }
    .hero-container {
        align-items: center;
        display: flex;
        flex-direction: column;
    }
    .hero-container p {
        animation-duration: 1.5s;
        animation-iteration-count: 1;
        animation-name: enter-right;
        animation-timing-function: linear; 
        margin-right: 5%;
        margin-top: 8%;
        width: 80%;
    }
    .hero-container ul {
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-right: 0%;
        margin-top: 5%;
    }
    .hero-container li {
        align-items: center;
        color: #ffffff;
        display: flex;
        font-size: 25px;
        font-weight: bold;
        list-style: none;
    }
    #point-1 {
        animation-delay: 1.5s;
        animation-duration: 1s;
        animation-iteration-count: 1;
        animation-name: load;
        animation-timing-function: linear;  
    }
    #point-2 {
        animation-delay: 2.5s;
        animation-duration: 1s;
        animation-iteration-count: 1;
        animation-name: load;
        animation-timing-function: linear;  
    }
    #point-3 {
        animation-delay: 3.5s;
        animation-duration: 1s;
        animation-iteration-count: 1;
        animation-name: load;
        animation-timing-function: linear;  
    }
    #learn-more {
        animation-delay: 4.5s;
        animation-duration: 1s;
        animation-iteration-count: 1;
        animation-name: load;
        animation-timing-function: linear; 
    }
    #first-btn {
        animation-delay: 4.5s;
        animation-duration: 1s;
        animation-iteration-count: 1;
        animation-name: load;
        animation-timing-function: linear; 
        margin-right: 0%;
        margin-top: 30%; 
    }
    .hero-container img {
        width: 18%;
    }
    .learn-more {
        color: #ffffff;
        font-size: 25px;
        font-style: italic;
        margin-right: 48%;
        margin-top: 5%;
        text-decoration-color: #00d68f;
    }
    .our-process {
        align-items: center;
        background-image: url('../images/our_process_background_mobile.jpg');
        background-size: cover;
        display: flex;
        flex-direction: column;
        height: auto;
        padding-bottom: 12%;
        width: 100%;
    }
    .our-process-title {
        padding-top: 12%;
        text-align: center;
    }
    .our-process p {
        margin-top: 0%;
    }
    .landing-card-container {
        align-items: center;
        display: flex;
        flex-direction: column;
        flex-flow: wrap;
        gap: 50px;
        height: auto;
        justify-content: space-evenly;
        margin-top: 2%;
        width: 100%;
    }
    .landing-card {
        align-items: center;
        background-color: #02c282;
        border-radius: 25px;
        box-shadow: 2px 2px 5px 1px #000000;
        display: flex;
        flex-direction: column;
        width: 60%;
    }
    .landing-card-title {
        color: #ffffff;
        font-size: 35px;
        font-weight: bold;
        padding: 15px 0px 15px 0px;
    }
    .landing-card-body {
        align-items: center;
        background-color: #ebebeb;
        border-radius: 0px 0px 25px 25px;
        display: flex;
        flex-direction: column;
        gap: 25px;
        justify-content: space-evenly;
        width: 100%;
    }
    .landing-card-body-title {
        color: #000000;
        font-size: 35px;
        font-weight: bold;
        padding-top: 20px;
    }
    .icon-container {
        align-items: center;
        display: flex;
        flex-direction: column;
        height: 200px;
        justify-content: center;
        max-width: 200px;
    }
    .landing-card-icon {
        width: 90%;
    }
    .landing-card-body-txt {
        font-size: 18px;
        padding: 30px;
        text-align: center;
    }
    .why-we-save {
        background-color: #00a16b;
        height: auto;
        width: 100%;
    }
    .why-we-save-mobile-img {
        align-items: center;
        display: flex;
        flex-direction: column;
        margin: 5%;
    }
    .why-we-save-mobile-img img {
        width: 80%;
    }
    .why-we-save-mobile-txt {
        display: block;
        width: 90%;
    }
    .why-we-save-mobile-txt p {
        color: #ffffff;
        font-size: 25px;
        font-weight: bold;
        line-height: 1.6;
        margin-bottom: 5%;
        text-indent: 25px;
    }
    .why-we-save-title-txt {
        padding: 10% 0% 5% 0%;
        text-align: center;
        width: 100%;
    }
    .why-we-save-container {
        align-items: center;
        display: none;
        height: 600px;
        flex-direction: column;
        justify-content: space-evenly;
        margin-bottom: 2%;
    }
    .why-we-save-left-container {
        width: 50%;
    }
    .img-container  {
        align-items: center;
        display: flex;
        flex-direction: column;
        justify-items: center;  
    }
    .img-container img {
        animation-duration: 1s;
        animation-iteration-count: 1;
        animation-timing-function: linear; 
        width: 80%;
    }
    .why-we-save-right-container {
        width: 50%;
    }
    .txt-container {
        align-items: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .txt-container p {
        animation-duration: 1s;
        animation-iteration-count: 1;
        animation-timing-function: linear; 
        color: #ffffff;
        font-size: 30px;
        line-height: 1.6;
        text-align: left;
        text-indent: 25px;
        width: 80%;
    }
    .why-we-save-btn-container {
        align-items: center;
        display: none;
        gap: 15px;
        justify-items: space-evenly;
    }
    .why-we-save-btn-container div {
        background-color: #ffffff;
        border-radius: 50%;
        box-shadow: 1px 1px 5px 1px #000000;
        height: 30px;
        width: 30px;
    }
    .why-we-save-btn-container div:hover {
        cursor: pointer;
    }
    .testimonials {
        background-color: #ebebeb;
        height: auto;
        width: 100%;
    }
    .landing-quotes-container {
        align-items: center;    
        display: flex;
        flex-direction: column;
        height: inherit;
        justify-content: space-evenly;
    }
    .landing-quote-container {
        align-items: center;
        display: flex;
        flex-direction: column;
        width: 60%;
    }
    .landing-quote {
        font-size: 35px;
        text-align: center;
    }
    .big-quote {
        color: #02c282;
        font-size: 80px;
        font-weight: bold;
        line-height: 70%;
    }
    .quote-highlight {
        color: #02c282;
        font-weight: bold;
    }
    .landing-quoted {
        color: #02c282;
        font-size: 35px;
        font-style: italic;
        margin-top: 5%;
    }
    .end-quote {
        color: #02c282;
    }
    .contact-us {
        align-items: center;
        background-color: #121212;
        display: flex;
        flex-direction: column;
        height: auto;
        width: 100%;
    }
    .contact-us-title {
        padding: 2% 0% 5% 0%;
        text-align: center;
    }
    .contact-us-container {
        align-items: center;
        display: flex;
        flex-direction: column;
        gap: 50px;
        justify-content: space-evenly;
    }
    .contact-us-left-container {
        align-items: center;
        display: flex;
        flex-direction: column;
        width: 100%;
    }
    .contact-us-left-container p {
        color: #ffffff;
        font-size: 35px;
        text-align: center;
        width: 80%;
    }
    .vertical-line {
        border-top: 2px solid #ffffff;
        height: 0px;
        width: 80%;
    }
    .contact-us-right-container {
        align-items: flex-start;
        border:  5px solid #ffffff;
        display: flex;
        flex-direction: column;
        height: 500px;
        justify-content: space-evenly;
        max-width: 500px;
        padding: 5px;
    }
    .contact-us-right-container a {
        align-items: center;
        color: #ffffff;
        display: flex;
        font-size: 25px;
        text-decoration: none;
        width: 80%;
    }
    .contact-us-right-container p {
        align-items: center;
        color: #ffffff;
        display: flex;
        font-size: 25px;
        width: 80%;
    }
    .contact-us-right-container img {
        margin-right: 2%;
        width: 15%;
    }
    .link-btn {
        background-color: #00a16b;
        border-radius: 5px;
        box-shadow: 2px 2px 5px 1px #000000;
        color: #ffffff;
        font-size: 25px;
        font-weight: bold;
        margin-top: 45px;
        padding: 15px 40px 15px 40px;
        text-decoration: none;
    }

    /* Quiz */
    .quiz-body {
        background-image: url('../images/quiz_background_mobile.jpg');
        background-size: cover;
        position: center;
    }
    .tracker {
        display: none;
    }
    .mobile-tracker {
        align-items: center;
        display: flex;
        flex-direction: column;
        margin-top: 50px;
    }
    .mobile-tracker img {
        animation-duration: 1s;
        animation-iteration-count: 1;
        animation-timing-function: linear;
    }
    .tracker img {
        animation-duration: 0.75s;
        animation-iteration-count: 1;
        animation-timing-function: linear;
        height: 20px;
        width: 320px;
    }
    .card {
        animation-duration: 0.75s;
        animation-iteration-count: 1;
        animation-timing-function: linear;
        background-color: #02c282;
        border-radius: 10px;
        box-sizing: border-box;
        box-shadow: 2px 2px 20px 2px #636363;
        height: min-content;
        margin: 50px 0px 40px 0px;
        width: 60%;
    }
    .question {
        color: #ffffff;
        font-size: 24px;
        font-weight: bold;
        margin: 15px 0px 15px 0px;
        text-align: center;
    }
    .card-content {
        align-items: center;
        background-color: #ebebeb;
        border-radius: 0px 0px 10px 10px;
        display: flex;
        flex-direction: column;
        flex-wrap: nowrap;
        padding: 0px 0px 50px 0px;
    }
    .card-icon {
        margin: 65px 0px 0px 0px;
        width: 180px;
    }
    #bolt {
        width: 80%;
    }
    .card-text {
        font-size: 18px;
        margin: 50px 0px 0px 0px; 
        text-align: center;  
        width: 80%;
    }
    select {
        border: none;
        border-radius: 5px;
        box-shadow: 2px 2px 10px 2px #414141;
        font-size: 18px;
        margin: 80px 0px 40px 0px;
        padding: 10px 15px 10px 15px;
    }
    #contact-form {
        margin-bottom: 15%;
    }
    .contact-card {
        align-items: center;
        background-color: #ebebeb;
        border-radius: 0px 0px 10px 10px;
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        gap: 25px;
        padding: 0px 0px 35px 0px;
    }
    #pending {
        margin: 0px 0px 0px 0px;
        width: 100%;
    }
    #pending img {
        margin-top: 5%;
        width: 40%;
    }
    form {
        align-items: center;
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    .form-container {
        align-items: center;
        display: flex;
        flex-direction: column;
        margin-bottom: 25px;
        width: 100%;
    }
    .form-container p {
        font-size: 18px;
        margin-bottom: 5%;
    }
    ::placeholder {
        color: #000000;
        font-size: 16px;
        font-style: italic;
    }
    #submit-btn {
        animation-duration: 0.75s;
        animation-iteration-count: 1;
        animation-timing-function: linear;
        background-color: #00a16b;
        border: none;
        box-shadow: 2px 2px 10px 2px #414141;
        color: #ffffff;
        font-size: 20px;
        font-weight: bold;
        margin: 15px 0px 0px 0px;
        width: 80%;
    }

    /* Thank_You */
    .thank-you-body {
        background-image: url('../images/quiz_background_mobile.jpg');
        background-size: cover;
        position: center;
    }
    #thank-you {
        width: 90%; 
    }
    video {
        margin: 3% 0% 0% 0%;
        width: 95%;
    }
    .subtitle {
        color: #353535;
        font-weight: bold;
        font-size: 24px;
        margin: 25px 0px 25px 0px;
    }
    .row-flex-container {
        align-items: center;
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: space-evenly;
    }
    .about-us-list {
        width: 50%;
    }
    .about-us-list li {
        align-items: center;
        display: inline-flex;
        flex-direction: row;
        flex-wrap: wrap;
        font-size: 16px;
        list-style: none;
        width: 100%;
    }
    .about-us-list img {
        width: 35px;
    }
    .right-container {
        align-items: center;
        display: flex;
        flex-direction: column;
        margin-top: 45px;
    }
    .right-container img {
        margin: 25px 0px 0px 0px;
        width: 45%;
    }
    .quote-container {
        animation-duration: 1s;
        animation-iteration-count: 1;
        animation-timing-function: linear; 
        background-color: #ebebeb;
        box-shadow: 5px 5px 15px 1px #636363;
        margin: 65px 0px 25px 0px;
        padding: 10px 0px 10px 0px;
        width: 50%;
    }
}

/* Tablet */
@media only screen and (max-width: 768px) {
    /* Global */
    noscript {
        background-color: #02c282;
        border-radius: 10px;
        color: #ffffff;
        font-size: 25px;
        margin: auto;
        padding: 15px;
        text-align: center;
        width: 80%;
    }
    .title-txt {
        color: #ffffff;
        font-size: 50px;
        font-weight: bolder;
    }
    .footer {
        background-color: #121212;
        color: #ffffff;
        font-size: 20px;
        margin-top: auto;
        padding: 15px 0px 15px 0px;
        text-align: center;
        width: 100%;
    }

   /* Index */
    .navigation-bar {
        align-items: center;
        background-color: #121212;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        min-height: 50px;
        width: 100%;
    }
    .navigation-bar-img img {
        margin-left: 2%;
        width: 60%;
    }
    .navigation-bar-links ul {
        display: none;
        position: relative;
        top: 20px;
    }
    .navigation-bar-links li {
        list-style: none;
    }
    .navigation-bar-links li a {
        color: #ffffff;
        display: block;
        font-size: 20px;
        padding: 1rem;
        text-decoration: none;
    }
    .nav-list {
        display: flex;
        gap: 5%;
        justify-content: space-evenly;
    }
    .nav-link {
        list-style-type: none;
    }
    .nav-link a {
        color: #ffffff;
        font-size: 25px;
        text-decoration: none;
    }
    .mobile-nav-menu {
        align-items: center;
        animation-duration: 1s;
        animation-iteration-count: 1;
        animation-timing-function: linear;
        background-color: #121212;
        display: none;
        flex-direction: column;
        min-height: 100vh;
        position: absolute; 
        width: 100%;
        z-index: 1;
    }
    .mobile-nav-menu ul {
        align-items: center;
        display: flex;
        flex-direction: column;
        gap: 80px;
        margin-top: 25%;
        width: 100%;
    }
    .mobile-nav-menu li {
        list-style: none;
    }
    .mobile-nav-menu a {
        color: #ffffff;
        font-size: 35px;
        text-decoration: none;
    }
    .toggle-btn {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        height: 20px;
        position: absolute;
        right: 1rem;
        top: 0.8rem;
        width: 30px;
    }
    .toggle-btn:hover {
        cursor: pointer;
    }
    .toggle-btn .bar {
        background-color: #ffffff;
        border-radius: 10px;
        height: 3px;
        width: 100%;
    }
    .toggle-btn.open #bar-1 {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .toggle-btn.open #bar-2 {
        display: none;
    }
    .toggle-btn.open #bar-3 {
        transform: rotate(-45deg) translate(6px, -8px);  
    }
    .hero {
        background-color: none;
        background-image: url('../images/hero_background_mobile.jpg');
        background-position: center;
        background-size: cover;
        min-height: 100vh;
    }
    #bg-video {
        bottom: 0px;
        display: none;
        min-height: 100%;
        min-width: 100%;
        position: fixed;
        right: 0px;
        z-index: -1;
    }
    .hero-container {
        align-items: center;
        display: flex;
        flex-direction: column;
    }
    .hero-container p {
        animation-duration: 1.5s;
        animation-iteration-count: 1;
        animation-name: enter-right;
        animation-timing-function: linear; 
        margin-right: 5%;
        margin-top: 8%;
        width: 80%;
    }
    .hero-container ul {
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-right: 0%;
        margin-top: 5%;
    }
    .hero-container li {
        align-items: center;
        color: #ffffff;
        display: flex;
        font-size: 25px;
        font-weight: bold;
        list-style: none;
    }
    #point-1 {
        animation-delay: 1.5s;
        animation-duration: 1s;
        animation-iteration-count: 1;
        animation-name: load;
        animation-timing-function: linear;  
    }
    #point-2 {
        animation-delay: 2.5s;
        animation-duration: 1s;
        animation-iteration-count: 1;
        animation-name: load;
        animation-timing-function: linear;  
    }
    #point-3 {
        animation-delay: 3.5s;
        animation-duration: 1s;
        animation-iteration-count: 1;
        animation-name: load;
        animation-timing-function: linear;  
    }
    #learn-more {
        animation-delay: 4.5s;
        animation-duration: 1s;
        animation-iteration-count: 1;
        animation-name: load;
        animation-timing-function: linear; 
    }
    #first-btn {
        animation-delay: 4.5s;
        animation-duration: 1s;
        animation-iteration-count: 1;
        animation-name: load;
        animation-timing-function: linear; 
        margin-right: 0%;
        margin-top: 30%; 
    }
    .hero-container img {
        width: 18%;
    }
    .learn-more {
        color: #ffffff;
        font-size: 25px;
        font-style: italic;
        margin-right: 48%;
        margin-top: 5%;
        text-decoration-color: #00d68f;
    }
    .our-process {
        align-items: center;
        background-image: url('../images/our_process_background_mobile.jpg');
        background-size: cover;
        display: flex;
        flex-direction: column;
        height: auto;
        padding-bottom: 12%;
        width: 100%;
    }
    .our-process-title {
        padding-bottom: 5%;
        padding-top: 12%;
        text-align: center;
    }
    .our-process p {
        margin-top: 0%;
    }
    .landing-card-container {
        align-items: center;
        display: flex;
        flex-direction: column;
        flex-flow: wrap;
        gap: 50px;
        height: auto;
        justify-content: space-evenly;
        margin-top: 2%;
        width: 100%;
    }
    .landing-card {
        align-items: center;
        background-color: #02c282;
        border-radius: 25px;
        box-shadow: 2px 2px 5px 1px #000000;
        display: flex;
        flex-direction: column;
        width: 60%;
    }
    .landing-card-title {
        color: #ffffff;
        font-size: 35px;
        font-weight: bold;
        padding: 15px 0px 15px 0px;
    }
    .landing-card-body {
        align-items: center;
        background-color: #ebebeb;
        border-radius: 0px 0px 25px 25px;
        display: flex;
        flex-direction: column;
        gap: 25px;
        justify-content: space-evenly;
        width: 100%;
    }
    .landing-card-body-title {
        color: #000000;
        font-size: 35px;
        font-weight: bold;
        padding-top: 20px;
    }
    .icon-container {
        align-items: center;
        display: flex;
        flex-direction: column;
        height: 200px;
        justify-content: center;
        max-width: 200px;
    }
    .landing-card-icon {
        width: 90%;
    }
    .landing-card-body-txt {
        font-size: 18px;
        padding: 30px;
        text-align: center;
    }
    .why-we-save {
        background-color: #00a16b;
        height: auto;
        width: 100%;
    }
    .why-we-save-mobile-img {
        align-items: center;
        display: flex;
        flex-direction: column;
        margin: 5%;
    }
    .why-we-save-mobile-img img {
        width: 80%;
    }
    .why-we-save-mobile-txt {
        display: block;
        width: 90%;
    }
    .why-we-save-mobile-txt p {
        color: #ffffff;
        font-size: 25px;
        font-weight: bold;
        line-height: 1.6;
        margin-bottom: 5%;
        text-indent: 25px;
    }
    .why-we-save-title-txt {
        padding: 10% 0% 5% 0%;
        text-align: center;
        width: 100%;
    }
    .why-we-save-container {
        align-items: center;
        display: none;
        flex-direction: column;
        height: 600px;
        justify-content: space-evenly;
        margin-bottom: 2%;
    }
    .why-we-save-left-container {
        width: 50%;
    }
    .img-container  {
        align-items: center;
        display: flex;
        flex-direction: column;
        justify-items: center;  
    }
    .img-container img {
        animation-duration: 1s;
        animation-iteration-count: 1;
        animation-timing-function: linear; 
        width: 80%;
    }
    .why-we-save-right-container {
        width: 50%;
    }
    .txt-container {
        align-items: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .txt-container p {
        animation-duration: 1s;
        animation-iteration-count: 1;
        animation-timing-function: linear; 
        color: #ffffff;
        font-size: 30px;
        line-height: 1.6;
        text-align: left;
        text-indent: 25px;
        width: 80%;
    }
    .why-we-save-btn-container {
        align-items: center;
        display: none;
        gap: 15px;
        justify-items: space-evenly;
    }
    .why-we-save-btn-container div {
        background-color: #ffffff;
        border-radius: 50%;
        box-shadow: 1px 1px 5px 1px #000000;
        height: 30px;
        width: 30px;
    }
    .why-we-save-btn-container div:hover {
        cursor: pointer;
    }
    .testimonials {
        background-color: #ebebeb;
        height: 100vh;
        width: 100%;
    }
    .landing-quotes-container {
        align-items: center;    
        display: flex;
        flex-direction: column;
        height: inherit;
        justify-content: space-evenly;
    }
    .landing-quote-container {
        align-items: center;
        display: flex;
        flex-direction: column;
        width: 60%;
    }
    .landing-quote {
        font-size: 35px;
        text-align: center;
    }
    .big-quote {
        color: #02c282;
        font-size: 80px;
        font-weight: bold;
        line-height: 70%;
    }
    .quote-highlight {
        color: #02c282;
        font-weight: bold;
    }
    .landing-quoted {
        color: #02c282;
        font-size: 35px;
        font-style: italic;
        margin-top: 5%;
    }
    .end-quote {
        color: #02c282;
    }
    .contact-us {
        align-items: center;
        background-color: #121212;
        display: flex;
        flex-direction: column;
        min-height: 100vh;
        width: 100%;
    }
    .contact-us-title {
        padding: 2% 0% 5% 0%;
        text-align: center;
    }
    .contact-us-container {
        align-items: center;
        display: flex;
        flex-direction: column;
        gap: 50px;
        justify-content: space-evenly;
    }
    .contact-us-left-container {
        align-items: center;
        display: flex;
        flex-direction: column;
        width: 100%;
    }
    .contact-us-left-container p {
        color: #ffffff;
        font-size: 35px;
        text-align: center;
        width: 80%;
    }
    .vertical-line {
        border-top: 2px solid #ffffff;
        height: 0px;
        width: 80%;
    }
    .contact-us-right-container {
        align-items: flex-start;
        border:  5px solid #ffffff;
        display: flex;
        flex-direction: column;
        height: 500px;
        justify-content: space-evenly;
        padding: 5px;
        max-width: 500px;
    }
    .contact-us-right-container a {
        align-items: center;
        color: #ffffff;
        display: flex;
        font-size: 25px;
        text-decoration: none;
        width: 80%;
    }
    .contact-us-right-container p {
        align-items: center;
        color: #ffffff;
        display: flex;
        font-size: 25px;
        width: 80%;
    }
    .contact-us-right-container img {
        margin-right: 2%;
        width: 15%;
    }
    .link-btn {
        background-color: #00a16b;
        border-radius: 5px;
        box-shadow: 2px 2px 5px 1px #000000;
        color: #ffffff;
        font-size: 25px;
        font-weight: bold;
        margin-top: 45px;
        padding: 15px 40px 15px 40px;
        text-decoration: none;
    }

    /* Quiz */
    .quiz-body {
        background-image: url('../images/quiz_background_mobile.jpg');
        background-size: cover;
        position: center;
    }
    .tracker {
        display: none;
    }
    .mobile-tracker {
        align-items: center;
        display: flex;
        flex-direction: column;
        margin-top: 50px;
    }
    .mobile-tracker img {
        animation-duration: 1s;
        animation-iteration-count: 1;
        animation-timing-function: linear;
    }
    .tracker img {
        animation-duration: 0.75s;
        animation-iteration-count: 1;
        animation-timing-function: linear;
        height: 20px;
        width: 320px;
    }
    .card {
        animation-duration: 0.75s;
        animation-iteration-count: 1;
        animation-timing-function: linear;
        background-color: #02c282;
        border-radius: 10px;
        box-sizing: border-box;
        box-shadow: 2px 2px 20px 2px #636363;
        height: min-content;
        margin: 50px 0px 40px 0px;
        width: 60%;
    }
    .question {
        color: #ffffff;
        font-size: 24px;
        font-weight: bold;
        margin: 15px 0px 15px 0px;
        text-align: center;
    }
    .card-content {
        align-items: center;
        background-color: #ebebeb;
        border-radius: 0px 0px 10px 10px;
        display: flex;
        flex-direction: column;
        flex-wrap: nowrap;
        padding: 0px 0px 50px 0px;
    }
    .card-icon {
        margin: 65px 0px 0px 0px;
        width: 180px;
    }
    #bolt {
        width: 80%;
    }
    .card-text {
        font-size: 18px;
        margin: 50px 0px 0px 0px; 
        text-align: center;  
        width: 80%;
    }
    select {
        border: none;
        border-radius: 5px;
        box-shadow: 2px 2px 10px 2px #414141;
        font-size: 18px;
        margin: 80px 0px 40px 0px;
        padding: 10px 15px 10px 15px;
    }
    #contact-form {
        margin-bottom: 15%;
    }
    .contact-card {
        align-items: center;
        background-color: #ebebeb;
        border-radius: 0px 0px 10px 10px;
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        gap: 25px;
        padding: 0px 0px 35px 0px;
    }
    #pending {
        margin: 0px 0px 0px 0px;
        width: 100%;
    }
    #pending img {
        margin-top: 5%;
        width: 40%;
    }
    form {
        align-items: center;
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    .form-container {
        align-items: center;
        display: flex;
        flex-direction: column;
        margin-bottom: 25px;
        width: 100%;
    }
    .form-container p {
        font-size: 18px;
        margin-bottom: 5%;
    }
    ::placeholder {
        color: #000000;
        font-size: 16px;
        font-style: italic;
    }
    #submit-btn {
        animation-duration: 0.75s;
        animation-iteration-count: 1;
        animation-timing-function: linear;
        background-color: #00a16b;
        border: none;
        box-shadow: 2px 2px 10px 2px #414141;
        color: #ffffff;
        font-size: 20px;
        font-weight: bold;
        margin: 15px 0px 0px 0px;
        width: 80%;
    }

    /* Thank_You */
    .thank-you-body {
        background-image: url('../images/quiz_background_mobile.jpg');
        background-size: cover;
        position: center;
    }
    #thank-you {
        width: 90%; 
    }
    video {
        margin: 3% 0% 0% 0%;
        width: 95%;
    }
    .subtitle {
        color: #353535;
        font-weight: bold;
        font-size: 24px;
        margin: 25px 0px 25px 0px;
    }
    .row-flex-container {
        align-items: center;
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: space-evenly;
    }
    .about-us-list {
        width: 50%;
    }
    .about-us-list li {
        align-items: center;
        display: inline-flex;
        flex-direction: row;
        flex-wrap: wrap;
        font-size: 16px;
        list-style: none;
        width: 100%;
    }
    .about-us-list img {
        width: 35px;
    }
    .right-container {
        align-items: center;
        display: flex;
        flex-direction: column;
        margin-top: 45px;
    }
    .right-container img {
        margin: 25px 0px 0px 0px;
        width: 45%;
    }
    .quote-container {
        animation-duration: 1s;
        animation-iteration-count: 1;
        animation-timing-function: linear; 
        background-color: #ebebeb;
        box-shadow: 5px 5px 15px 1px #636363;
        margin: 65px 0px 25px 0px;
        padding: 10px 0px 10px 0px;
        width: 60%;
    }
}

/* Mobile */
@media only screen and (max-width: 414px) {
    /* Global */
    noscript {
        background-color: #02c282;
        border-radius: 10px;
        color: #ffffff;
        font-size: 25px;
        margin: auto;
        padding: 15px;
        text-align: center;
        width: 80%;
    }
    .title-txt {
        color: #ffffff;
        font-size: 28px;
        font-weight: bolder;
    }
    .footer {
        background-color: #121212;
        color: #ffffff;
        font-size: 15px;
        padding: 15px 0px 15px 0px;
        margin-top: auto;
        text-align: center;
        width: 100%;
    }

    /* Index */
    .navigation-bar {
        align-items: center;
        background-color: #121212;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        min-height: 50px;
        width: 100%;
    }
    .navigation-bar-img img {
        margin-left: 2%;
        width: 60%;
    }
    .navigation-bar-links ul {
        display: none;
        position: relative;
        top: 20px;
    }
    .navigation-bar-links li {
        list-style: none;
    }
    .navigation-bar-links li a {
        color: #ffffff;
        display: block;
        font-size: 20px;
        padding: 1rem;
        text-decoration: none;
    }
    .nav-list {
        display: flex;
        gap: 5%;
        justify-content: space-evenly;
    }
    .nav-link {
        list-style-type: none;
    }
    .nav-link a {
        color: #ffffff;
        font-size: 25px;
        text-decoration: none;
    }
    .mobile-nav-menu {
        align-items: center;
        animation-duration: 1s;
        animation-iteration-count: 1;
        animation-timing-function: linear;
        background-color: #121212;
        display: none;
        flex-direction: column;
        min-height: 100vh;
        position: absolute; 
        width: 100%;
        z-index: 1;
    }
    .mobile-nav-menu ul {
        align-items: center;
        display: flex;
        flex-direction: column;
        gap: 80px;
        margin-top: 25%;
        width: 100%;
    }
    .mobile-nav-menu li {
        list-style: none;
    }
    .mobile-nav-menu a {
        color: #ffffff;
        font-size: 25px;
        text-decoration: none;
    }
    .toggle-btn {
        display: flex;
        flex-direction: column;
        height: 21px;
        justify-content: space-between;
        position: absolute;
        right: 1rem;
        top: 0.8rem;
        width: 30px;
    }
    .toggle-btn:hover {
        cursor: pointer;
    }
    .toggle-btn .bar {
        background-color: #ffffff;
        border-radius: 10px;
        height: 3px;
        width: 100%;
    }
    .toggle-btn.open #bar-1 {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .toggle-btn.open #bar-2 {
        display: none;
    }
    .toggle-btn.open #bar-3 {
        transform: rotate(-45deg) translate(6px, -8px);  
    }
    .hero {
        background-color: none;
        background-image: url('../images/hero_background_mobile.jpg');
        background-size: cover;
        min-height: 100vh;
    }
    #bg-video {
        bottom: 0px;
        display: none;
        min-height: 100%;
        min-width: 100%;
        position: fixed;
        right: 0px;
        z-index: -1;
    }
    .hero-container {
        align-items: center;
        display: flex;
        flex-direction: column;
    }
    .hero-container p {
        animation-duration: 1.5s;
        animation-iteration-count: 1;
        animation-name: enter-right;
        animation-timing-function: linear; 
        margin-right: 10%;
        margin-top: 15%;
        width: 80%;
    }
    .hero-container ul {
        display: flex;
        flex-direction: column;
        gap: 30px;
        margin-right: 10%;
        margin-top: 10%;
    }
    .hero-container li {
        align-items: center;
        color: #ffffff;
        display: flex;
        font-size: 15px;
        font-weight: bold;
        list-style: none;
    }
    #point-1 {
        animation-delay: 1.5s;
        animation-duration: 1s;
        animation-iteration-count: 1;
        animation-name: load;
        animation-timing-function: linear;  
    }
    #point-2 {
        animation-delay: 2.5s;
        animation-duration: 1s;
        animation-iteration-count: 1;
        animation-name: load;
        animation-timing-function: linear;  
    }
    #point-3 {
        animation-delay: 3.5s;
        animation-duration: 1s;
        animation-iteration-count: 1;
        animation-name: load;
        animation-timing-function: linear;  
    }
    #learn-more {
        animation-delay: 4.5s;
        animation-duration: 1s;
        animation-iteration-count: 1;
        animation-name: load;
        animation-timing-function: linear; 
    }
    #first-btn {
        animation-delay: 4.5s;
        animation-duration: 1s;
        animation-iteration-count: 1;
        animation-name: load;
        animation-timing-function: linear;  
        margin-right: 0%;
        margin-top: 30%;
    }
    .hero-container img {
        width: 18%;
    }
    .learn-more {
        color: #ffffff;
        text-decoration-color: #00d68f;
        font-size: 15px;
        font-style: italic;
        margin-right: 48%;
        margin-top: 5%;
    }
    .our-process {
        align-items: center;
        background-image: url('../images/our_process_background_mobile.jpg');
        background-size: cover;
        display: flex;
        flex-direction: column;
        height: auto;
        padding-bottom: 12%;
        width: 100%;
    }
    .our-process-title {
        padding-top: 12%;
        text-align: center;
    }
    .our-process p {
        margin-top: 0%;
    }
    .landing-card-container {
        align-items: center;
        display: flex;
        flex-direction: column;
        flex-flow: wrap;
        height: auto;
        justify-content: space-evenly;
        margin-top: 2%;
        width: 100%;
    }
    .landing-card {
        align-items: center;
        background-color: #02c282;
        border-radius: 25px;
        box-shadow: 2px 2px 5px 1px #000000;
        display: flex;
        flex-direction: column;
        width: 85%;
    }
    .landing-card-title {
        color: #ffffff;
        font-size: 25px;
        font-weight: bold;
        padding: 15px 0px 15px 0px;
    }
    .landing-card-body {
        align-items: center;
        background-color: #ebebeb;
        border-radius: 0px 0px 25px 25px;
        display: flex;
        flex-direction: column;
        gap: 25px;
        justify-content: space-evenly;
        width: 100%;
    }
    .landing-card-body-title {
        color: #000000;
        font-size: 25px;
        font-weight: bold;
        padding-top: 20px;
    }
    .icon-container {
        align-items: center;
        display: flex;
        flex-direction: column;
        height: 200px;
        justify-content: center;
        max-width: 200px;
    }
    .landing-card-icon {
        width: 90%;
    }
    .landing-card-body-txt {
        font-size: 18px;
        padding: 15px;
        text-align: center;
    }
    .why-we-save {
        background-color: #00a16b;
        height: auto;
        width: 100%;
    }
    .why-we-save-mobile-img {
        align-items: center;
        display: flex;
        flex-direction: column;
        margin: 5%;
    }
    .why-we-save-mobile-img img {
        width: 80%;
    }
    .why-we-save-mobile-txt {
        display: block;
        width: 90%;
    }
    .why-we-save-mobile-txt p {
        color: #ffffff;
        font-size: 18px;
        font-weight: bold;
        line-height: 1.6;
        margin-bottom: 5%;
        text-indent: 25px;
    }
    .why-we-save-title-txt {
        padding: 10% 0% 5% 0%;
        text-align: center;
        width: 100%;
    }
    .why-we-save-container {
        align-items: center;
        display: none;
        flex-direction: column;
        height: 600px;
        justify-content: space-evenly;
        margin-bottom: 2%;
    }
    .why-we-save-left-container {
        width: 50%;
    }
    .img-container  {
        align-items: center;
        display: flex;
        flex-direction: column;
        justify-items: center;  
    }
    .img-container img {
        animation-duration: 1s;
        animation-iteration-count: 1;
        animation-timing-function: linear; 
        width: 80%;
    }
    .why-we-save-right-container {
        width: 50%;
    }
    .txt-container {
        align-items: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .txt-container p {
        animation-duration: 1s;
        animation-iteration-count: 1;
        animation-timing-function: linear; 
        color: #ffffff;
        font-size: 30px;
        line-height: 1.6;
        text-align: left;
        text-indent: 25px;
        width: 80%;
    }
    .why-we-save-btn-container {
        align-items: center;
        display: none;
        gap: 15px;
        justify-items: space-evenly;
    }
    .why-we-save-btn-container div {
        background-color: #ffffff;
        border-radius: 50%;
        box-shadow: 1px 1px 5px 1px #000000;
        height: 30px;
        width: 30px;
    }
    .why-we-save-btn-container div:hover {
        cursor: pointer;
    }
    .testimonials {
        background-color: #ebebeb;
        height: 100vh;
        width: 100%;
    }
    .landing-quotes-container {
        align-items: center;    
        display: flex;
        flex-direction: column;
        height: inherit;
        justify-content: space-evenly;
    }
    .landing-quote-container {
        align-items: center;
        display: flex;
        flex-direction: column;
        width: 80%;
    }
    .landing-quote {
        text-align: center;
        font-size: 22px;
        text-align: center;
    }
    .big-quote {
        color: #02c282;
        font-size: 60px;
        font-weight: bold;
        line-height: 80%;
    }
    .quote-highlight {
        color: #02c282;
        font-weight: bold;
    }
    .landing-quoted {
        color: #02c282;
        font-size: 22px;
        font-style: italic;
        margin-top: 5%;
    }
    .end-quote {
        color: #02c282;
    }
    .contact-us {
        align-items: center;
        background-color: #121212;
        display: flex;
        flex-direction: column;
        height: 100vh;
        width: 100%;
    }
    .contact-us-title {
        padding: 10% 0% 8% 0%;
        text-align: center;
    }
    .contact-us-container {
        align-items: center;
        display: flex;
        flex-direction: column;
        height: inherit;
        justify-items: space-evenly;
    }
    .contact-us-left-container {
        align-items: center;
        display: flex;
        flex-direction: column;
        gap: 50px;
        width: 100%;
    }
    .contact-us-left-container p {
        color: #ffffff;
        font-size: 25px;
        text-align: center;
        width: 80%;
    }
    #contact-us-btn {
        margin-top: 0px;
    }
    .vertical-line {
        border-top: 2px solid #ffffff;
        height: 0px;
        width: 80%;
    }
    .contact-us-right-container {
        align-items: flex-start;
        border:  5px solid #ffffff;
        display: flex;
        flex-direction: column;
        height: 300px;
        justify-content: space-evenly;
        max-width: 300px;
        padding: 5px;
    }
    .contact-us-right-container a {
        align-items: center;
        color: #ffffff;
        display: flex;
        font-size: 15px;
        text-decoration: none;
        width: 80%;
    }
    .contact-us-right-container p {
        align-items: center;
        color: #ffffff;
        display: flex;
        font-size: 15px;
        width: 80%;
    }
    .contact-us-right-container img {
        margin-right: 2%;
        width: 15%;
    }
    .link-btn {
        background-color: #00a16b;
        border-radius: 5px;
        box-shadow: 2px 2px 5px 1px #000000;
        color: #ffffff;
        font-size: 25px;
        font-weight: bold;
        margin-top: 45px;
        padding: 15px 40px 15px 40px;
        text-decoration: none;
    }

    /* Quiz */
    .quiz-body {
        background-image: url('../images/quiz_background_mobile.jpg');
        background-size: cover;
    }
    .tracker {
        display: none;
    }
    .mobile-tracker {
        align-items: center;
        display: flex;
        flex-direction: column;
        margin-top: 50px;
    }
    .mobile-tracker img {
        animation-duration: 1s;
        animation-iteration-count: 1;
        animation-timing-function: linear;
    }
    .tracker img {
        animation-duration: 0.75s;
        animation-iteration-count: 1;
        animation-timing-function: linear;
        height: 20px;
        width: 320px;
    }
    .card {
        animation-duration: 0.75s;
        animation-iteration-count: 1;
        animation-timing-function: linear;
        background-color: #02c282;
        border-radius: 10px;
        box-shadow: 2px 2px 20px 2px #636363;
        height: min-content;
        margin: 50px 0px 40px 0px;
        width: 90%;
        box-sizing: border-box;
    }
    .question {
        color: #ffffff;
        font-size: 24px;
        font-weight: bold;
        margin: 15px 0px 15px 0px;
        text-align: center;
    }
    .card-content {
        align-items: center;
        background-color: #ebebeb;
        border-radius: 0px 0px 10px 10px;
        display: flex;
        flex-direction: column;
        flex-wrap: nowrap;
        padding: 0px 0px 50px 0px;
    }
    .card-icon {
        margin: 65px 0px 0px 0px;
        width: 180px;
    }
    #bolt {
        width: 80%;
    }
    .card-text {
        font-size: 18px;
        margin: 50px 0px 0px 0px; 
        text-align: center;  
        width: 80%;
    }
    select {
        border: none;
        border-radius: 5px;
        box-shadow: 2px 2px 10px 2px #414141;
        font-size: 18px;
        margin: 80px 0px 40px 0px;
        padding: 10px 15px 10px 15px;
    }
    #contact-form {
        margin-bottom: 15%;
    }
    .contact-card {
        align-items: center;
        background-color: #ebebeb;
        border-radius: 0px 0px 10px 10px;
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        gap: 25px;
        padding: 0px 0px 35px 0px;
    }
    #pending {
        margin: 0px 0px 0px 0px;
        width: 100%;
    }
    #pending img {
        margin-top: 5%;
        width: 60%;
    }
    form {
        align-items: center;
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    .form-container {
        align-items: center;
        display: flex;
        flex-direction: column;
        margin-bottom: 25px;
        width: 100%;
    }
    .form-container p {
        font-size: 18px;
        margin-bottom: 5%;
    }
    ::placeholder {
        color: #000000;
        font-size: 16px;
        font-style: italic;
    }
    #submit-btn {
        animation-duration: 0.75s;
        animation-iteration-count: 1;
        animation-timing-function: linear;
        background-color: #00a16b;
        border: none;
        box-shadow: 2px 2px 10px 2px #414141;
        color: #ffffff;
        font-size: 20px;
        font-weight: bold;
        margin: 15px 0px 0px 0px;
        width: 80%;
    }

    /* Thank_You */
    .thank-you-body {
        background-image: url('../images/quiz_background_mobile.jpg');
        background-size: cover;
    }
    #thank-you {
        width: 90%; 
    }
    video {
        margin: 3% 0% 0% 0%;
        width: 95%;
    }
    .subtitle {
        color: #353535;
        font-weight: bold;
        font-size: 24px;
        margin: 25px 0px 25px 0px;
    }
    .row-flex-container {
        align-items: center;
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        justify-content: space-evenly;
    }
    .about-us-list {
        width: 100%;
    }
    .about-us-list li {
        align-items: center;
        display: inline-flex;
        flex-direction: row;
        flex-wrap: wrap;
        font-size: 16px;
        list-style: none;
        width: 100%;
    }
    .about-us-list img {
        width: 45px;
    }
    .right-container {
        align-items: center;
        display: flex;
        flex-direction: column;
        margin-top: 45px;
    }
    .right-container img {
        margin: 25px 0px 0px 0px;
        width: 45%;
    }
    .quote-container {
        animation-duration: 1s;
        animation-iteration-count: 1;
        animation-timing-function: linear; 
        background-color: #ebebeb;
        box-shadow: 5px 5px 15px 1px #636363;
        margin: 65px 0px 25px 0px;
        padding: 10px 0px 10px 0px;
        width: 90%;
    }
}