﻿@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;700;900&display=swap");

#main-header {
    position: fixed;
    width: 100%;
    z-index: 99;
    background-color: #fff;
    color: #000;
    -webkit-box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

    #main-header .nav {
        height: 80px;
        width: 100%;
        position: relative;
    }

        #main-header .nav .nav-header {
            display: inline;
        }

            #main-header .nav .nav-header .nav-title {
                display: inline-block;
                padding: 10px 10px 10px 0px;
            }

        #main-header .nav .nav-btn {
            display: none;
            position: absolute;
            right: 8px;
            top: 14px;
        }

@media screen and (max-width: 1200px) {
    #main-header .nav .nav-btn {
        display: inline-block;
    }
}
@media (min-width: 1280px) {
    .header .container {
        max-width: 1210px !important;
    }
}
#main-header .nav .nav-btn label {
    width: 50px;
    height: 50px;
    padding: 9px 4px;
}

    #main-header .nav .nav-btn label:hover {
        cursor: pointer;
    }

#main-header .nav .nav-btn span {
    display: block;
    width: 40px;
    height: 12px;
    border-top: 6px solid #6764C8;
}

#main-header .nav .nav-links {
    display: inline;
    float: right;
    margin: auto;
    margin-right: 0;
    font-size: 1.8rem;
    font-weight: 600;
}

    #main-header .nav .nav-links .nav-link {
        display: inline-block;
        text-decoration: none;
        color: #4E4E4E;
    }

        #main-header .nav .nav-links .nav-link:hover {
            font-weight: 700;
            color: #78A841;
        }

    #main-header .nav .nav-links .active {
        font-weight: bold;
        color: #78A841;
    }

    #main-header .nav .nav-links .dropdown-content {
        position: absolute;
        display: none;
        background-color: white;
        padding: 10px;
        top: 38px;
        left: -10px;
        right: -160px;
    }

    #main-header .nav .nav-links .dropdown:hover .dropdown-content {
        display: block;
    }

#main-header .nav #nav-check {
    display: none;
}

@media screen and (max-width: 1200px) {
    #main-header .nav .nav-links {
        position: absolute;
        display: block;
        background-color: #fff;
        height: 0px;
        -webkit-transition: all 0.3s ease-in;
        transition: all 0.3s ease-in;
        overflow-y: hidden;
        top: 80px;
        left: -15vw;
        right: -15vw;
        text-align: center;
        overflow: hidden;
    }

        #main-header .nav .nav-links .nav-link, #main-header .nav .nav-links button {
            display: block;
            width: 80%;
            margin: auto;
        }

        #main-header .nav .nav-links .dropdown-content {
            position: relative;
            top: 0;
            left: 0;
            right: 0;
            padding: 0;
        }

            #main-header .nav .nav-links .dropdown-content .nav-link {
                margin: auto;
            }

        #main-header .nav .nav-links :nth-last-child(3) {
            padding-bottom: 40px;
            border-bottom: 1px solid #8E8E8E;
        }

        #main-header .nav .nav-links :nth-last-child(2) {
            margin-top: 40px;
            margin-bottom: 20px;
        }

        #main-header .nav .nav-links button {
            width: 200px;
            margin: 30px auto;
        }

    #main-header .nav #nav-check:not(:checked) ~ .nav-links {
        height: 0px;
    }

    #main-header .nav #nav-check:checked ~ .nav-links {
        height: 100vh;
        overflow: hidden;
    }
}

.special-banner {
    margin-top: 0px;
    text-align: center;
    background-color: #F2D91D;
    padding: 10px;
}

    .special-banner a {
        color: black;
        font-weight: bold;
        text-decoration: underline;
        text-transform: capitalize;
    }

footer {
    padding-top: 50px;
    background-color: #eaeaea;
    text-align: center;
    z-index: 10;
}

    footer h4 {
        padding-top: 8px;
        font-size: 1.8rem;
        margin-bottom: 20px;
    }

@media screen and (min-width: 768px) {
    footer h4 {
        text-align: left;
    }
}

footer a {
    color: #000;
}

    footer a:hover {
        color: #78A841;
    }

footer .footer-logo,
footer .footer-link,
footer .footer-download,
footer .footer-social {
    margin-bottom: 20px;
}

    footer .footer-logo .helper {
        height: 100%;
        vertical-align: middle;
        display: inline-block;
    }

footer .footer-link,
footer .footer-download,
footer .footer-social {
    padding-top: 12px;
}

    footer .footer-link div {
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: 1fr 1.5fr 1fr;
        grid-template-columns: 1fr 1.5fr 1fr;
        text-align: left;
    }

        footer .footer-link div a {
            padding: 5px 0;
        }

@media screen and (max-width: 576px) {
    footer .footer-link div {
        text-align: center;
    }
}

footer .footer-download .footer-download-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

    footer .footer-download .footer-download-content a:hover {
        text-decoration: none;
        color: #000;
    }

footer .footer-download .footer-download-apple,
footer .footer-download .footer-download-google {
    width: 111px;
    max-width: 300px;
}

    footer .footer-download .footer-download-apple img,
    footer .footer-download .footer-download-google img {
        width: 90%;
        margin-bottom: 5px;
    }

@media screen and (max-width: 768px) {
    footer .footer-download .footer-download-apple img,
    footer .footer-download .footer-download-google img {
        display: none;
    }
}

@media screen and (max-width: 768px) {
    footer .footer-download .footer-download-apple,
    footer .footer-download .footer-download-google {
        width: 45%;
        max-width: 200px;
        border: 1px solid #383838;
        border-radius: 15px;
        padding: 10px;
    }

        footer .footer-download .footer-download-apple p,
        footer .footer-download .footer-download-google p {
            margin: 0;
            font-weight: bold;
            position: relative;
            padding-left: 2rem;
        }

            footer .footer-download .footer-download-apple p::before,
            footer .footer-download .footer-download-google p::before {
                content: "";
                background-size: 2.4rem 2.4rem;
                width: 2.4rem;
                height: 2.4rem;
                left: 1rem;
                position: absolute;
            }
}

footer .footer-download .footer-download-apple p::before {
    background-image: url("../img/apple-logo-b.png");
    top: -4px;
}

footer .footer-download .footer-download-google p::before {
    background-image: url("../img/google-logo-b.png");
    top: -2px;
}

footer .footer-social {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: 30px;
}

    footer .footer-social div {
        margin-left: auto;
    }

@media screen and (max-width: 768px) {
    footer .footer-social div {
        margin-right: auto;
    }
}

footer .footer-social i {
    padding: 2rem;
}

footer .footer-middle-wrapper {
    border-top: 1px solid #707070;
    border-bottom: 1px solid #707070;
    padding: 15px 0;
    margin-top: 15px;
    font-size: 1.6rem;
}

    footer .footer-middle-wrapper div {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        text-align: left;
    }

@media screen and (max-width: 768px) {
    footer .footer-middle-wrapper div {
        margin: 10px auto;
    }
}

footer .footer-middle-wrapper i {
    padding: 0 30px;
    color: #383838;
    margin: auto 0;
}

footer .footer-middle-wrapper p {
    margin: 16px 0;
}

footer .footer-middle-wrapper .location p {
    padding-left: 4px;
}

footer .footer-middle-wrapper a i {
    padding: 0 15px;
}

footer .footer-copyright {
    text-align: center;
    font-size: 1.2rem;
    margin: 0;
    padding: 1rem 0;
}

.contact-us {
    cursor: pointer;
}

.contact-us-section {
    padding-top: 150px;
    padding-bottom: 100px;
    background-image: linear-gradient(to bottom right, #d1f1df, #eaeaea);
}

.btn {
    font-weight: bold;
    font-size: 1.6rem;
    border-radius: 10px;
    padding: 5px 25px;
    margin: 3px;
}

.btn-primary {
    background-color: #fff;
    border: 2px solid #6764C8;
    color: #6764C8;
}

    .btn-primary:hover {
        background-color: #6764C8;
        border-color: #6764C8;
    }

    .btn-primary:focus {
        background-color: #fff;
        color: #6764C8;
    }

    .btn-primary:active {
        background-color: #fff !important;
        color: #6764C8 !important;
    }

.btn-secondary {
    background-color: #6764C8;
    border: 2px solid #6764C8;
    color: #fff;
    padding: 5px 10px;
}

    .btn-secondary:hover {
        background-color: #fff;
        border-color: #6764C8;
        color: #6764C8;
    }

    .btn-secondary:focus {
        background-color: #6764C8;
        color: #fff;
    }

    .btn-secondary:active {
        background-color: #6764C8 !important;
        color: #fff !important;
    }

.banner {
    padding-top: 50px;
    position: relative;
}

    .banner .banner-bg {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        z-index: -99;
    }

        .banner .banner-bg .overlay {
            position: absolute;
            height: 100%;
            width: 60%;
            background-image: -webkit-gradient(linear, left top, right top, from(#f2f2f2), color-stop(80%, #f2f2f2), to(rgba(255, 255, 255, 0)));
            background-image: linear-gradient(to right, #f2f2f2 0%, #f2f2f2 80%, rgba(255, 255, 255, 0) 100%);
        }

@media screen and (max-width: 768px) {
    .banner .banner-bg .overlay {
        width: 100%;
        background-image: -webkit-gradient(linear, left top, left bottom, from(#f2f2f2), color-stop(45%, #faf2f2), color-stop(65%, rgba(255, 255, 255, 0)));
        background-image: linear-gradient(to bottom, #f2f2f2 0%, #faf2f2 45%, rgba(255, 255, 255, 0) 65%);
    }
}

.banner .banner-bg .img-wrapper {
    position: absolute;
    height: 100%;
    left: 40%;
    right: 0;
    z-index: -1;
}

@media screen and (max-width: 768px) {
    .banner .banner-bg .img-wrapper {
        left: -10%;
        top: 40%;
        height: 60%;
    }
}

.banner .banner-bg .img-wrapper img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.banner .banner-content {
    width: 60%;
    height: 550px;
    margin-right: auto;
    padding-top: 150px;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
}

    .banner .banner-content h1 {
        font-size: 4rem;
        padding-bottom: 10px;
    }

    .banner .banner-content h2 {
        font-size: 2.3rem;
        padding-bottom: 10px;
    }

.banner .banner-content p {
    margin-bottom: 5rem;
    padding-right: 3rem;
}

@media screen and (max-width: 768px) {
    .banner .banner-content h1 {
        font-size: 2.3rem;
        padding-bottom: 5px;
    }

    .banner .banner-content h2 {
        font-size: 1.4rem;
        padding-bottom: 5px;
    }

    .banner .banner-content {
        height: 750px;
    }

        .banner .banner-content p {
            font-size: 1.6rem;
            padding-right: 0;
            margin-bottom: 3.5rem;
        }
}

.banner .banner-content a {
    color: #78A841;
    font-weight: bold;
    font-size: 1.8rem;
    padding-left: 5rem;
    position: relative;
}

    .banner .banner-content a::before {
        content: "";
        background-image: url("../img/button.png");
        background-size: 4rem 4rem;
        width: 4rem;
        height: 4rem;
        top: -50%;
        left: 0;
        position: absolute;
    }

@media screen and (max-width: 768px) {
    .banner .banner-content {
        padding-top: 80px;
        padding-bottom: 400px;
        width: 100%;
    }
}

.banner .team-collaboration-container p {
    font-size: 2.4rem;
}

    .banner .team-collaboration-container p span {
        color: #35B982;
        font-weight: bold;
    }

@media screen and (max-width: 576px) {
    .banner .team-collaboration-container p {
        font-size: 1.8rem;
    }
}

.banner .team-collaboration-container p a {
    color: #35B982;
    font-weight: bold;
    font-size: 2.4rem;
    padding-left: 0;
    position: relative;
}

    .banner .team-collaboration-container p a::before {
        content: "";
        background-image: none;
    }

@media screen and (max-width: 768px) {
    .banner .team-collaboration-container .overlay {
        width: 100%;
        background-image: -webkit-gradient(linear, left top, left bottom, from(#f2f2f2), color-stop(35%, #faf2f2), color-stop(55%, rgba(255, 255, 255, 0)));
        background-image: linear-gradient(to bottom, #f2f2f2 0%, #faf2f2 40%, rgba(255, 255, 255, 0) 55%);
    }
}

@media screen and (max-width: 768px) {
    .banner .team-collaboration-container .img-wrapper {
        left: -10%;
        top: 40%;
        height: 59%;
    }
}

.banner .team-collaboration-container .img-wrapper img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.banner .carousel-indicators li {
    height: 0;
    width: 0;
    border-radius: 5px;
    border: 5px solid #78A841;
    background-color: #78A841;
    opacity: 0.3;
    margin: 8px;
}

.banner .carousel-indicators .active {
    opacity: 1;
}

.banner .modal-content {
    border: 20px solid white;
    border-radius: 25px;
}

.banner .carousel .prev, .banner .carousel .next {
    position: absolute;
    bottom: 8px;
    font-size: 20px;
    color: #78A841;
    z-index: 999;
    cursor: pointer;
    width: 30px;
    text-align: center;
}

    .banner .carousel .prev:hover, .banner .carousel .next:hover {
        background-color: black;
        color: white;
    }

.banner .carousel .prev {
    right: 50%;
    margin-right: 50px;
}

.banner .carousel .next {
    left: 50%;
    margin-left: 50px;
}

.modal .close {
    position: absolute;
    top: -22px;
    right: 00px;
    font-size: 2.5rem;
}

.portal h2 {
    text-align: center;
    padding: 30px;
    font-size: 2.5rem;
}

.portal .portal-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

@media screen and (max-width: 992px) {
    .portal .portal-content {
        display: block;
    }
}

.portal .portal-content .portal-content-middle {
    z-index: 1;
    margin: auto -35px;
    text-align: center;
}

    .portal .portal-content .portal-content-middle img {
        width: 100px;
    }

@media screen and (max-width: 992px) {
    .portal .portal-content .portal-content-middle {
        margin: -35px auto;
    }
}

@media screen and (max-width: 768px) {
    .portal .portal-content .portal-content-middle {
        opacity: 0;
    }
}

.portal .portal-content .portal-content-left,
.portal .portal-content .portal-content-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    border-radius: 16px;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 0px;
    flex: 1 1 0;
    padding: 2.5rem;
}

@media screen and (max-width: 576px) {
    .portal .portal-content .portal-content-left,
    .portal .portal-content .portal-content-right {
        padding: 2rem 1rem;
    }
}

.portal .portal-content .portal-content-left .content,
.portal .portal-content .portal-content-right .content {
    -webkit-box-flex: 3;
    -ms-flex: 3 1 0px;
    flex: 3 1 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

    .portal .portal-content .portal-content-left .content h3,
    .portal .portal-content .portal-content-right .content h3 {
        font-size: 3.5rem;
    }

    .portal .portal-content .portal-content-left .content p,
    .portal .portal-content .portal-content-right .content p {
        font-size: 1.6rem;
        margin-bottom: 30px;
    }

    .portal .portal-content .portal-content-left .content .btn-container,
    .portal .portal-content .portal-content-right .content .btn-container {
        margin-top: auto;
    }

.portal .portal-content .portal-content-left .image-wrapper,
.portal .portal-content .portal-content-right .image-wrapper {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 0px;
    flex: 1 1 0;
}

    .portal .portal-content .portal-content-left .image-wrapper img,
    .portal .portal-content .portal-content-right .image-wrapper img {
        width: 100%;
    }

@media screen and (max-width: 576px) {
    .portal .portal-content .portal-content-left,
    .portal .portal-content .portal-content-right {
        display: block;
        text-align: center;
    }
}

.portal .portal-content .portal-content-left {
    color: #fff;
    background-image: -webkit-gradient(linear, left top, right bottom, from(#97C307), to(#0AC79F));
    background-image: linear-gradient(to bottom right, #97C307, #0AC79F);
}

@media screen and (min-width: 992px) {
    .portal .portal-content .portal-content-left {
        padding-right: 50px;
    }
}

.portal .portal-content .portal-content-left .image-wrapper {
    margin-top: -50px;
}

@media screen and (max-width: 576px) {
    .portal .portal-content .portal-content-left .image-wrapper {
        width: 50%;
        margin: auto;
        padding-bottom: 20px;
    }
}

.portal .portal-content .portal-content-left .btn-apple {
    position: relative;
    padding-left: 4rem;
}

    .portal .portal-content .portal-content-left .btn-apple::before {
        content: "";
        background-image: url("../img/apple-logo.png");
        background-size: 2rem 2rem;
        width: 2rem;
        height: 2rem;
        left: 1rem;
        top: 5px;
        position: absolute;
    }

    .portal .portal-content .portal-content-left .btn-apple:hover::before {
        background-image: url("../img/apple-logo-p.png");
    }

.portal .portal-content .portal-content-left .btn-google {
    position: relative;
    padding-left: 4rem;
}

    .portal .portal-content .portal-content-left .btn-google::before {
        content: "";
        background-image: url("../img/google-logo.png");
        background-size: 2rem 2rem;
        width: 2rem;
        height: 2rem;
        left: 1rem;
        top: 6px;
        position: absolute;
    }

    .portal .portal-content .portal-content-left .btn-google:hover::before {
        background-image: url("../img/google-logo-p.png");
    }

.portal .portal-content .portal-content-right {
    background-color: #D1F1DF;
}

@media screen and (min-width: 992px) {
    .portal .portal-content .portal-content-right {
        padding-left: 50px;
    }
}

.portal .portal-content .portal-content-right .content {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 0px;
    flex: 1 1 0;
}

.portal .portal-content .portal-content-right .image-wrapper {
    margin-right: -100px;
}

@media screen and (max-width: 576px) {
    .portal .portal-content .portal-content-right .image-wrapper {
        width: 100%;
        margin: auto;
    }
}

#how-it-works .feature {
    padding-top: 10px;
    padding-bottom: 80px;
    padding-left: 10px;
    margin-bottom: -10px;
    background-image: -webkit-gradient(linear, left top, right bottom, from(#d1f1df), to(#d1ecf1));
    background-image: linear-gradient(to bottom right, #d1f1df, #d1ecf1);
}

.feature .modal-content {
    border: 20px solid white;
    border-radius: 25px;
}

.feature h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: #78A841;
}

.feature .mobile-container {
    padding: 0 20px;
    display: none;
    text-align: center;
}

@media screen and (max-width: 576px) {
    .feature .mobile-container {
        display: block;
    }
}

.feature .mobile-container div {
    padding-top: 60px;
    padding-bottom: 30px;
    border-bottom: 1px solid #8E8E8E;
}

    .feature .mobile-container div:last-child {
        border: none;
    }

.feature .mobile-container h2 {
    font-size: 2.5rem;
}

.feature .mobile-container img {
    width: 260px;
}

.feature .mobile-container p {
    font-size: 1.6rem;
}

.feature .mobile-container a {
    font-size: 1.8rem;
}

.record {
    padding: 50px 0;
    background-color: #fafafa;
    text-align: center;
}

    .record h2 {
        text-align: center;
        font-size: 3.5rem;
        padding-bottom: 40px;
    }

@media screen and (max-width: 576px) {
    .record h2 {
        font-size: 2.5rem;
    }
}

.record .record-content div {
    margin: 40px 0;
}

    .record .record-content div img {
        height: 70px;
        margin-bottom: 20px;
    }

    .record .record-content div h3 {
        color: #78A841;
        font-size: 2.4rem;
    }

    .record .record-content div p {
        padding: 0 10%;
    }

@media screen and (max-width: 576px) {
    .record .record-content div {
        margin: 10px 0;
    }
}

.testimonial {
    background-image: -webkit-gradient(linear, left top, right bottom, from(#d1f1df), to(#d1ecf1));
    background-image: linear-gradient(to bottom right, #d1f1df, #d1ecf1);
    padding: 50px 50px 0 0;
    overflow: hidden;
}

    .testimonial .container-left {
        display: inline-block;
        position: relative;
        width: 40%;
        float: left;
        vertical-align: central;
        height: 498px;
    }
        .testimonial .container-left h2 {
            margin-top: 80px;
            margin-bottom: 25px;
            text-align: left;
            font-size: 3.5rem;
        }
        .testimonial .container-left .testimonial-star img {
            height: 40px;
            width: 40px;
        }
        .testimonial .container-left button {
            width: 340px;
            height: 52px;
            margin-top: 35px;
        }

    .testimonial .container-right {
        display: inline-block;
        position: relative;
        height: 500px;
        width: 60%;
        float: right;
        background: url("../img/review_group.png") no-repeat bottom;
        background-size: 100%;
        margin-bottom: -2px;
    }

.testimonial-section {
    background-image: -webkit-gradient(linear, left top, right bottom, from(#d1f1df), to(#d1ecf1));
    background-image: linear-gradient(to bottom right, #d1f1df, #d1ecf1);
    padding-top: 130px;
    padding-bottom: 30px;
    text-align: center;
}
    .testimonial-section h2 {
        margin-top: 5px;
        font-size: 3.5rem;
    }
    .testimonial-section .testimonial-reviews-star {
        height: 110px;
        max-width: 500px;
        display: block;
        margin: auto;
        background: url("../img/testimonial-review-stars.png") no-repeat right;
        background-size: 70%;
        text-align: left;
        vertical-align: text-bottom;
    }
        .testimonial-section .testimonial-reviews-star .review-score {
            font-size: 75px;
            font-weight: bold;
            color: #6764C8;
        }
        .testimonial-section .testimonial-reviews-star .review-base {
            font-size: 25px;
            font-weight: bold;
        }

    .testimonial-section .btn-container {
        margin-top: 20px;
    }
    .testimonial-section .btn, .testimonial .btn {
        font-weight: 600;
        font-size: 1.5rem;
        border-radius: 10px;
        margin: 3px;
        height: 40px;
        width: 180px;
    }

.testimonial-list {
    display: block;
    margin-top: 35px;
}
    .testimonial-list .testimonial-column {
        display: inline-block;
        width: 32%;
        margin-right: 10px;
        vertical-align: top;
    }
        .testimonial-list .testimonial-column .testimonial-item {
            border-radius: 25px;
            display: block;
            padding: 20px;
            width: 99%;
            margin-bottom: 20px;
            background-color: white;
            box-shadow: #29292929 6px 12px 18px;
            position: relative;
        }
            .testimonial-list .testimonial-column .testimonial-item .testimonial-item-header {
                width: 100%;
                height: 100px;
                position: relative;
            }

            .testimonial-list .testimonial-column .testimonial-item img {
                width: 55px;
                height: 55px;
                top: 5px;
                left: 0px;
                position: absolute;
                border-radius: 50%;
            }

            .testimonial-list .testimonial-column .testimonial-item .name {
                top: 5px;
                left: 80px;
                font-size: 20px;
                font-family: Open Sans;
                position: absolute;
                font-weight: bold;
                color: #161B29C3;
            }

            .testimonial-list .testimonial-column .testimonial-item .date {
                top: 35px;
                left: 80px;
                font-size: 18px;
                font-family: Montserrat;
                position: absolute;
                color: #484848;
                display: none;
            }
            /*.testimonial-list .testimonial-column .testimonial-item .device-type-ios {
                top: 0px;
                right: 0px;
                width: 20px;
                height: 25px;
                position: absolute;
                background: url("../img/apple-logo-black.png") no-repeat center;
                background-size: 20px;
            }
            .testimonial-list .testimonial-column .testimonial-item .device-type-android {
                top: 0px;
                right: 0px;
                width: 20px;
                height: 25px;
                position: absolute;
                background: url("../img/android.png") no-repeat center;
                background-size: 20px;
            }*/
            .testimonial-list .testimonial-column .testimonial-item .five-stars {
                top: 70px;
                left: 0px;
                width: 120px;
                height: 25px;
                background: url("../img/five-stars-small.png") no-repeat left;
                background-size: 120px;
                position: absolute;
            }

            .testimonial-list .testimonial-column .testimonial-item h4 {
                top: 10px;
                left: 0px;
                text-align: left;
                position: relative;
                font-family: Montserrat;
                color: #484848;
            }
            .testimonial-list .testimonial-column .testimonial-item .content {
                top: 5px;
                left: 0px;
                text-align: left;
                position: relative;
                display: block;
                font-family: Montserrat;
                color: #484848;
            }

@media screen and (max-width: 998px) {
    .testimonial-list .testimonial-column {
        display: inline-block;
        width: 99%
    }
}

@media screen and (max-width: 800px) {
    .testimonial .container-left {
        width: 100%;
    }

    .testimonial .container-right {
        width: 100%;
    }

    .testimonial-list .testimonial-column {
        display: inline-block;
        width: 99%
    }
}

@media screen and (max-width: 600px) {
    .testimonial-section .testimonial-reviews-star {
        height: 90px;
        max-width: 400px;
    }
        .testimonial-section .testimonial-reviews-star .review-score {
            font-size: 55px;
        }

        .testimonial-section .testimonial-reviews-star .review-base {
            font-size: 15px;
        }
}

.endorsement h2 {
    font-size: 3rem;
    margin: 70px 0;
    text-align: center;
}

.endorsement .icon-container {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[4];
    grid-template-columns: repeat(4, 1fr);
    margin-bottom: 70px;
}

    .endorsement .icon-container img {
        width: 100%;
        padding: 20px;
    }

@media screen and (max-width: 768px) {
    .endorsement .icon-container {
        -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 576px) {
    .endorsement .icon-container {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    }
}

.contact {
    padding-top: 50px;
    padding-bottom: 50px;
    background-image: -webkit-gradient(linear, left top, right bottom, from(#97C307), to(#0AC79F));
    background-image: linear-gradient(to bottom right, #97C307, #0AC79F);
    text-align: center;
}

    .contact h2 {
        font-size: 3rem;
        color: #fff;
        margin-bottom: 30px;
    }

    .contact .container-form {
        max-width: 400px;
        margin: 0 auto;
    }

@media screen and (max-width: 576px) {
    .contact .container-form {
        padding: 0 40px;
    }
}

.contact button {
    border-radius: 5px;
    width: 100%;
    margin: 10px 0;
    padding: 0.5rem 1rem;
}

.contact .separator {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 10px 0;
}

    .contact .separator::before,
    .contact .separator::after {
        content: "";
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
        border-bottom: 1px solid white;
    }

    .contact .separator::before {
        margin-right: 2em;
    }

    .contact .separator::after {
        margin-left: 2em;
    }

.pricing-hero {
    padding-top: 120px;
    height: 200px;
    background-image: url("../img/pricing-bg.png");
    background-position: right;
    background-size: cover;
}

    .pricing-hero .container {
        height: 100%;
    }

        .pricing-hero .container h2 {
            padding-top: 50px;
            font-size: 4rem;
        }

@media screen and (max-width: 768px) {
    .pricing-hero .container h2 {
        font-size: 3rem;
    }
}

.pricing-hero .container span {
    color: #35B982;
    font-weight: bold;
}

.pricing-detail {
    background-color: #FAFAFA;
    overflow-x: hidden;
    position: relative;
}

.pricing-detail-toggle {
    text-align: center;
    z-index: 11;
    position: absolute;
    top: 0;
    width: 100%;
    padding-top: 40px;
    margin-bottom: 20px;
    background-color: #FAFAFA;
}

@media screen and (max-width: 768px) {
    .pricing-detail-toggle {
        -webkit-box-shadow: 0px 5px 6px rgba(0, 0, 0, 0.16);
        box-shadow: 0px 5px 6px rgba(0, 0, 0, 0.16);
    }
}

.pricing-detail-toggle .btn-toggle .btn {
    width: 200px;
    border-color: #6764C8;
    margin: 0;
    padding: 10px 0;
    font-weight: 500;
    color: #6764C8;
}

@media screen and (max-width: 576px) {
    .pricing-detail-toggle .btn-toggle .btn {
        width: 150px;
    }
}

.pricing-detail-toggle .btn-toggle .active {
    background-color: #6764C8;
    color: white;
}

.pricing-detail-toggle .pricing-detail-card-nav {
    margin: 20px auto 5px auto;
    display: none;
    max-width: 500px;
}

    .pricing-detail-toggle .pricing-detail-card-nav span {
        cursor: pointer;
        font-size: 1.8rem;
        font-weight: bold;
    }

    .pricing-detail-toggle .pricing-detail-card-nav .active {
        color: #78A841;
        cursor: default;
    }

@media screen and (max-width: 768px) {
    .pricing-detail-toggle .pricing-detail-card-nav {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
        justify-content: space-evenly;
    }
}

.pricing-detail-card-swiper-container {
    padding-top: 120px;
    width: 100%;
}

@media screen and (max-width: 768px) {
    .pricing-detail-card-swiper-container {
        padding-top: 170px;
    }
}

.pricing-detail-card-swiper-container .swiper-slide {
    height: auto;
}

.pricing-detail-card {
    height: 100%;
    -webkit-box-shadow: 0 6px 18px rgba(0, 0, 0, 0.16);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.16);
    border-radius: 15px;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    background-color: white;
}

@media screen and (min-width: 768px) {
    .pricing-detail-card:hover {
        -webkit-transform: translate(0, -10px);
        transform: translate(0, -10px);
        -webkit-box-shadow: 0 16px 26px rgba(0, 0, 0, 0.12);
        box-shadow: 0 16px 26px rgba(0, 0, 0, 0.12);
    }
}

.pricing-detail-card .pricing-detail-card-title {
    text-align: center;
    position: relative;
    border-radius: 15px 15px 0 0;
    padding-top: 60px;
    padding-bottom: 40px;
}

    .pricing-detail-card .pricing-detail-card-title .top {
        position: absolute;
        left: 0;
        top: 0;
        height: 30px;
        width: 100%;
        background-color: rgba(255, 255, 255, 0.3);
        font-size: 1.3rem;
        line-height: 30px;
    }

    .pricing-detail-card .pricing-detail-card-title .title {
        font-size: 2rem;
        color: #000 !important;
    }

    .pricing-detail-card .pricing-detail-card-title .bold {
        font-size: 2.5rem;
    }

    .pricing-detail-card .pricing-detail-card-title .price-off {
        font-size: 1.3rem;
        position: absolute;
        width: 100%;
        margin: 0;
    }

        .pricing-detail-card .pricing-detail-card-title .price-off .strikethrough {
            padding-right: 1rem;
        }

.pricing-detail-card .pricing-detail-card-title-free .price {
    color: #78A841;
}

.pricing-detail-card .pricing-detail-card-title-basic {
    background-image: -webkit-gradient(linear, left top, right top, from(#97C307), to(#0AC79F));
    background-image: linear-gradient(to right, #97C307, #0AC79F);
    color: #fff;
}

.pricing-detail-card .pricing-detail-card-title-business {
    background-image: -webkit-gradient(linear, left top, right top, from(#D1F1DF), to(#D1ECF1));
    background-image: linear-gradient(to right, #D1F1DF, #D1ECF1);
}

    .pricing-detail-card .pricing-detail-card-title-business .top {
        background-color: rgba(103, 100, 200, 0.1);
        border-radius: 15px 15px 0 0;
    }

.pricing-detail-card .pricing-detail-card-receipts {
    text-align: center;
    padding: 10px 0;
    border-top: 1px solid #707070;
    border-bottom: 1px solid #707070;
}

    .pricing-detail-card .pricing-detail-card-receipts p {
        margin: 0;
    }

    .pricing-detail-card .pricing-detail-card-receipts span {
        font-weight: 500;
    }

.pricing-detail-card .pricing-detail-card-features {
    line-height: 1.5;
    padding: 20px 0;
}

    .pricing-detail-card .pricing-detail-card-features ul {
        list-style: none;
        padding-left: 20px;
    }

    .pricing-detail-card .pricing-detail-card-features li {
        padding-left: 40px;
        padding-right: 20px;
        margin: 20px 0;
        position: relative;
    }

        .pricing-detail-card .pricing-detail-card-features li::before {
            content: "";
            position: absolute;
            background-image: url("../img/check.png");
            background-position: center;
            background-size: cover;
            left: 0;
            margin-top: auto;
            width: 20px;
            height: 20px;
        }

    .pricing-detail-card .pricing-detail-card-features .new-feature::after {
        content: "NEW";
        font-weight: bold;
        font-style: italic;
        position: absolute;
        bottom: 12px;
        padding-left: 5px;
        color: #6764C8;
        font-size: 10px;
    }

    .pricing-detail-card .pricing-detail-card-features .notsupport::before {
        background-image: url("../img/uncheck.png");
    }

.pricing-detail-sign-up {
    padding: 50px 0;
    text-align: center;
}

    .pricing-detail-sign-up button {
        padding: 10px 50px;
        margin-bottom: 30px;
    }

    .pricing-detail-sign-up p {
        font-size: 1.2rem;
    }

.pricing-faq {
    padding: 40px 0;
}

    .pricing-faq a {
        color: #78A841;
    }

    .pricing-faq .pricing-faq-title {
        text-align: center;
        font-size: 3.5rem;
        padding-bottom: 40px;
    }

@media screen and (max-width: 768px) {
    .pricing-faq .pricing-faq-title {
        font-size: 2.5rem;
    }
}

.pricing-faq .pricing-faq-item {
    margin: 10px;
}

@media screen and (max-width: 768px) {
    .pricing-faq .pricing-faq-item {
        padding-left: 50px;
    }
}

.pricing-faq .pricing-faq-item h4 {
    font-size: 2rem;
    font-weight: normal;
    margin-bottom: 20px;
    position: relative;
}

@media screen and (max-width: 768px) {
    .pricing-faq .pricing-faq-item h4 {
        font-size: 1.6rem;
    }
}

.pricing-faq .pricing-faq-item h4:hover {
    cursor: pointer;
}

.pricing-faq .pricing-faq-item h4::before {
    content: "";
    position: absolute;
    background-image: url("../img/arrow.png");
    background-position: center;
    background-size: cover;
    left: -5rem;
    top: -3px;
    width: 3rem;
    height: 3rem;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.pricing-faq .pricing-faq-item .open::before {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
}

.pricing-faq .pricing-faq-item p {
    font-size: 1.6rem;
    padding: 20px;
    border: 1px solid #78A841;
    border-radius: 15px;
    display: none;
}

.pricing-faq .pricing-faq-more {
    text-align: center;
    padding-top: 40px;
    font-size: 1.8rem;
}

.bold {
    font-weight: bold;
}

.strikethrough {
    text-decoration: line-through;
}

.green {
    color: #78A841;
}

.small-business-guide .banner {
    background-color: #D1F1DF;
}

    .small-business-guide .banner h1 {
        padding-top: 150px;
        padding-bottom: 100px;
        font-size: 40px;
        width: 70%;
    }

@media screen and (max-width: 768px) {
    .small-business-guide .banner h1 {
        font-size: 26px;
        width: 100%;
    }
}

.small-business-guide .guide-container {
    position: relative;
}

    .small-business-guide .guide-container input {
        display: none;
    }

    .small-business-guide .guide-container .guide-nav-hambuger {
        display: none;
        position: absolute;
        right: 20px;
        bottom: 0px;
        z-index: 11;
    }

@media screen and (max-width: 1400px) {
    .small-business-guide .guide-container .guide-nav-hambuger {
        display: inline-block;
    }
}

.small-business-guide .guide-container .guide-nav-hambuger label {
    width: 50px;
    height: 50px;
    border-radius: 25px;
    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: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #EAEAEA;
}

    .small-business-guide .guide-container .guide-nav-hambuger label:hover {
        cursor: pointer;
    }

.small-business-guide .guide-container .guide-nav-hambuger span {
    display: block;
    width: 60%;
    border-top: 5px solid #78A841;
    margin: 2px;
}

.small-business-guide .guide-container .guide-nav {
    margin-top: 120px;
    position: absolute;
    padding: 20px;
    width: 300px;
    background-color: white;
    top: 0;
}

    .small-business-guide .guide-container .guide-nav h4 {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .small-business-guide .guide-container .guide-nav > ul {
        list-style: none;
        padding-left: 0;
    }

        .small-business-guide .guide-container .guide-nav > ul li {
            padding: 15px 0;
            line-height: 1.2;
            border-bottom: 1px solid gray;
        }

            .small-business-guide .guide-container .guide-nav > ul li a {
                color: black;
            }

            .small-business-guide .guide-container .guide-nav > ul li .active {
                color: #78A841;
            }

            .small-business-guide .guide-container .guide-nav > ul li:last-child {
                border-bottom: none;
            }

            .small-business-guide .guide-container .guide-nav > ul li > ul {
                list-style: none;
                padding-left: 10px;
                margin-top: 10px;
            }

                .small-business-guide .guide-container .guide-nav > ul li > ul li {
                    line-height: 1;
                    padding: 3px 0;
                    border: none;
                    font-size: 14px;
                }

.small-business-guide .guide-container .guide-section {
    padding: 0 15%;
    padding-top: 120px;
    margin-top: -80px;
    margin-bottom: 40px;
}

    .small-business-guide .guide-container .guide-section h2 {
        margin-bottom: 15px;
        font-size: 26px;
    }

    .small-business-guide .guide-container .guide-section h3 {
        margin: 10px 0;
        font-size: 22px;
    }

    .small-business-guide .guide-container .guide-section h4 {
        margin-bottom: 10px;
        font-size: 18px;
    }

@media screen and (max-width: 1400px) {
    .small-business-guide .guide-container .guide-section {
        padding-left: 0;
        padding-right: 0;
    }
}

.small-business-guide .guide-container .guide-section img {
    width: 100%;
    height: 300px;
    -o-object-fit: cover;
    object-fit: cover;
    margin-bottom: 15px;
}

@media screen and (max-width: 768px) {
    .small-business-guide .guide-container .guide-section img {
        height: 200px;
    }
}

.small-business-guide .guide-container .guide-section .icon-img {
    height: 100px;
    -o-object-fit: contain;
    object-fit: contain;
    margin: auto;
}

@media screen and (max-width: 1400px) {
    .small-business-guide .guide-nav {
        overflow: hidden;
        top: 0;
        left: 0;
        right: 0;
        width: 100% !important;
        text-align: center;
        z-index: 10;
        margin-top: 80px !important;
    }

    .small-business-guide #guide-nav-check:not(:checked) ~ .guide-nav {
        display: none;
    }

    .small-business-guide #guide-nav-check:checked ~ .guide-nav {
        height: 100vh;
        overflow: hidden;
    }
}

#how-it-works .banner {
    padding-top: 150px;
    height: 420px;
    background: linear-gradient(to right, #97C307, #0AC79F);
    background-position: 0 80px;
    background-size: 100% 80%;
    position: relative;
}
    #how-it-works .banner .container {
        position: relative;
    }
    #how-it-works .banner .title {
        font-size: 30px;
        width: 500px;
        color: white;
        line-height: 38px;
        font-family: Montserrat;
        font-weight: bold;
    }
    #how-it-works .banner .sub-title {
        margin-top: 10px;
        font-size: 16px;
        width: 450px;
        color: white;
        font-family: Montserrat;
    }
    #how-it-works .banner .phone {
        position: absolute;
        top: -10px;
        left: 510px;
        height: 293px;
        z-index: 10;
    }
    #how-it-works .banner .computer {
        position: absolute;
        top: -37px;
        left: 585px;
        width: 431px;
        height: 301px;
        background: url(../img/how-it-works-computer.png) no-repeat 0 0/100% 100%;
    }

@media screen and (max-width: 768px) {
    #how-it-works .banner {
        padding-top: 180px;
    }
}

@media screen and (max-width: 500px) {
    #how-it-works .banner .title {
        width: 100%;
    }

    #how-it-works .banner .sub-title {
        width: 100%;
    }

    #how-it-works .banner .phone {
        display: none;
    }

    #how-it-works .banner .computer {
        display: none;
    }
}

#how-it-works .banner h1 {
    font-size: 4rem;
    margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
    #how-it-works .banner h1 {
        font-size: 2.5rem;
    }
}

#how-it-works .banner .col-md-6 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-line-pack: center;
    align-content: center;
}

    #how-it-works .banner .col-md-6 > img {
        max-height: 600px;
        max-width: 100%;
        margin-left: auto;
    }

#how-it-works .banner .icon-box-wrapper {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
}

    #how-it-works .banner .icon-box-wrapper .icon-box {
        padding: 20px;
    }

        #how-it-works .banner .icon-box-wrapper .icon-box img {
            max-height: 80px;
            max-width: 70px;
        }

        #how-it-works .banner .icon-box-wrapper .icon-box p {
            padding-top: 10px;
            font-weight: bold;
        }

        #how-it-works .banner .icon-box-wrapper .icon-box ul {
            padding-left: 15px;
        }

#how-it-works .banner .how-it-works-banner-img img {
    height: 100%;
    width: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}

#how-it-works .feature .container {
    margin-top: 50px;
}

    #how-it-works .feature .container .title-container {
        display: flex; /* Use flexbox for layout */
        flex-wrap: nowrap; /* Prevent wrapping to a new line */
        width: 100%; /* Ensure the container takes full width */
    }


#how-it-works .feature .container .title {
    color: #6764C8;
    font-size: 35px;
    width: auto;
    font-weight: bold;
    font-family: Montserrat;
    margin-right: 20px;
}
    #how-it-works .feature .container .line {
        flex: 1; /* This makes the div expand to fill available space */
        background: url(../img/dash.svg) repeat-x 0px 20px/12px 15px;
    }
#how-it-works .feature .container .sub-title {
    color: #484848;
    font-size: 16px;
    width: 100%;
    font-family: Montserrat;
    display: inline-block;
    float: left;
}

#how-it-works .feature .container .watch-pane {
    height: 150px;
    margin-top: 10px;
    margin-bottom: 10px;
    padding: 15px;
    border-radius: 16px;
    box-shadow: #29292929 6px 12px 18px;
    background: url(../img/how-it-works-play.png) no-repeat top right, white; 
    background-size: 80px 100px;
    position: relative;
}

    #how-it-works .feature .container .watch-pane .description {
        color: #161B29;
        font-size: 15px;
        font-family: Montserrat;
        font-weight: bold;
        margin-bottom: 10px;
        display: block;
    }
    #how-it-works .feature .container .watch-pane .watch-video {
        color: white;
        font-size: 13px;
        font-family: Montserrat;
        position: absolute;
        top: 90px;
        left: 15px;
        height: 40px;
        width: 150px;
        border-radius: 40px;
        padding-top: 10px;
        padding-left: 30px;
        text-align: center;
        background: url(../img/how-it-works-play-white.png) no-repeat 0 0/40px 40px, linear-gradient(to right, #97C307, #0AC79F);
    }
    #how-it-works .feature .container .watch-pane .video-length {
        color: #6764C8;
        font-size: 14px;
        font-family: Montserrat;
        font-weight: 500;
        text-align: right;
        position: absolute;
        top: 110px;
        right: 20px;
        width: 48px;
        background: url(../img/clock.png) no-repeat 0 3px/14px 14px;
    }

#how-it-works .feature .container .col-sm-12,
#how-it-works .feature .container .col-md-6,
#how-it-works .feature .container .col-lg-3 {
    padding-left: 0px;
    padding-right: 20px;
}

#switch-from-wave button {
    color: white;
    font-weight: bold;
    background-color: #6764C8;
    padding: 15px;
    border-radius: 5px;
    border: none;
}

#switch-from-wave section {
    padding-top: 80px;
    padding-bottom: 80px;
}

#switch-from-wave #sfw-banner-1 {
    padding-top: 120px;
    background-image: url("../img/sfw-banner-1-bg.png");
    background-size: 1400px 550px;
    background-repeat: no-repeat;
    background-position: bottom right;
    background-color: #CFF2E6;
}

    #switch-from-wave #sfw-banner-1 .row {
        padding: 70px 0;
    }

        #switch-from-wave #sfw-banner-1 .row h1 {
            font-size: 36px;
            margin-bottom: 20px;
        }

        #switch-from-wave #sfw-banner-1 .row p {
            margin-bottom: 20px;
        }

        #switch-from-wave #sfw-banner-1 .row b {
            color: #6764C8;
        }

@media screen and (max-width: 992px) {
    #switch-from-wave #sfw-banner-1 {
        padding-top: 0px;
        background-size: 1150px 430px;
    }

        #switch-from-wave #sfw-banner-1 .row {
            padding-top: 120px;
            padding-bottom: 0;
        }

            #switch-from-wave #sfw-banner-1 .row h1 {
                font-size: 24px;
            }
}

@media screen and (max-width: 768px) {
    #switch-from-wave #sfw-banner-1 {
        padding-top: 0px;
        background-size: 530px 200px;
    }

        #switch-from-wave #sfw-banner-1 .row {
            padding-top: 120px;
            padding-bottom: 0;
        }

            #switch-from-wave #sfw-banner-1 .row h1 {
                font-size: 24px;
            }

            #switch-from-wave #sfw-banner-1 .row button {
                margin-bottom: 50px;
            }
}

#switch-from-wave #sfw-banner-2 {
    background-image: -webkit-gradient(linear, left top, right bottom, from(#97C307), to(#0AC79F));
    background-image: linear-gradient(to bottom right, #97C307, #0AC79F);
    color: white;
}

    #switch-from-wave #sfw-banner-2 h2 {
        font-size: 36px;
    }

    #switch-from-wave #sfw-banner-2 h2, #switch-from-wave #sfw-banner-2 p {
        margin-bottom: 20px;
    }

@media screen and (max-width: 992px) {
    #switch-from-wave #sfw-banner-2 h2 {
        font-size: 24px;
    }
}

@media screen and (max-width: 768px) {
    #switch-from-wave #sfw-banner-2 img {
        display: block;
        margin: auto;
        height: 200px;
    }
}

#switch-from-wave #sfw-feature h2 {
    font-size: 36px;
}

#switch-from-wave #sfw-feature h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

#switch-from-wave #sfw-feature .col-8 {
    padding: 0 10%;
}

@media screen and (max-width: 992px) {
    #switch-from-wave #sfw-feature h2 {
        font-size: 24px;
    }

    #switch-from-wave #sfw-feature h3 {
        font-size: 20px;
    }
}

@media screen and (max-width: 768px) {
    #switch-from-wave #sfw-feature .col-8 {
        padding: 0 2%;
    }

    #switch-from-wave #sfw-feature img {
        max-width: 200px;
    }
}

#switch-from-wave #how-to-switch {
    background-color: #D1F1DF;
    padding-bottom: 40px;
}

    #switch-from-wave #how-to-switch h2 {
        font-size: 36px;
    }

    #switch-from-wave #how-to-switch .row {
        padding: 40px 0;
    }

    #switch-from-wave #how-to-switch .col-md-4 {
        padding: 20px;
    }

        #switch-from-wave #how-to-switch .col-md-4 > div {
            background-color: white;
            padding: 10% 15%;
            height: 100%;
            border-radius: 10px;
        }

            #switch-from-wave #how-to-switch .col-md-4 > div .img-container {
                height: 100px;
                vertical-align: middle;
                display: -webkit-box;
                display: -ms-flexbox;
                display: flex;
            }

                #switch-from-wave #how-to-switch .col-md-4 > div .img-container img {
                    margin: auto;
                }

            #switch-from-wave #how-to-switch .col-md-4 > div h3 {
                margin-top: 20px;
                color: #78A841;
                font-size: 24px;
            }

            #switch-from-wave #how-to-switch .col-md-4 > div a {
                color: #08BEF5;
            }

            #switch-from-wave #how-to-switch .col-md-4 > div b {
                color: #78A841;
            }

    #switch-from-wave #how-to-switch p {
        margin-top: 20px;
    }

@media screen and (max-width: 992px) {
    #switch-from-wave #how-to-switch h2 {
        font-size: 24px;
    }
}

#switch-from-wave #terms > div {
    display: block;
    margin: auto;
    max-width: 800px;
    font-size: 12px;
}

    #switch-from-wave #terms > div p {
        margin-bottom: 0;
    }

:root {
    font-size: 62.5%;
}

*,
*:before,
*:after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    padding: 0;
    margin: 0;
    background-color: #fff;
    font-family: "Montserrat", sans-serif;
    font-size: 1.6rem;
    height: 100vh;
    overflow-x: hidden;
}

@media screen and (max-width: 768px) {
    body {
        font-size: 1.4rem;
    }
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: bold;
}

a {
    font-weight: 500;
}


.team-collaboration-container .scan-feature-list {
    margin-bottom: 20px;
}
    .scan-feature-list .scan-bullet {
        display: inline-block;
        width: 200px;
        color: #484848;
        font-weight: bold;
    }
        .scan-feature-list .scan-bullet span {
            display: inline-block;
            margin-bottom: 5px;
        }
        .scan-feature-list .scan-bullet div {
            display: inline-block;
            width: 120px;
            margin-left: 10px;
        }
        .scan-feature-list .scan-bullet .vl {
            display: inline-block;
            border-left: 1px solid gray;
            height: 35px;
            width: 1px;
        }

.team-collaboration-container .banner-content .detail-description {
    margin-top: 38px;
    margin-bottom: 20px;
}

.checkmark-circle {
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    position: relative;
    background: url(../img/checkmark-black.png) no-repeat 0 0/ 1.5em 1.5em;
}

@media screen and (max-width: 1280px) {
    .banner .banner-content {
        width: 100%;
    }
}

@media screen and (max-width: 768px) {
    .team-collaboration-container .scan-feature-list {
        display: none;
    }
    .team-collaboration-container .banner-content .detail-description {
        margin-top: 20px;
        margin-bottom: 20px;
    }
}

.btn-apple {
    position: relative;
    padding-left: 4rem;
}

    .btn-apple::before {
        content: "";
        background-image: url("../img/apple-logo.png");
        background-size: 2rem 2.5rem;
        width: 2rem;
        height: 2.5rem;
        left: 1.5rem;
        top: 5px;
        position: absolute;
    }

    .btn-apple:hover::before {
        background-image: url("../img/apple-logo-p.png");
    }

.btn-google {
    position: relative;
    padding-left: 4rem;
}

    .btn-google::before {
        content: "";
        background-image: url("../img/google-logo.png");
        background-size: 2rem 2rem;
        width: 2rem;
        height: 2rem;
        left: 1.5rem;
        top: 6px;
        position: absolute;
    }

    .btn-google:hover::before {
        background-image: url("../img/google-logo-p.png");
    }

.facebook-icon {
    background: url(../../images/facebook_icon.png) top left no-repeat;
    background-size: 100% 100%;
    width: 60px;
    height: 60px;
    margin: 5px;
    display: inline-block;
}
.linkedin-icon {
    background: url(../../images/linkedin_icon.png) top left no-repeat;
    background-size: 100% 100%;
    width: 60px;
    height: 60px;
    margin: 5px;
    display: inline-block;
}
.instagram-icon {
    background: url(../../images/instagram_icon.png) top left no-repeat;
    background-size: 100% 100%;
    width: 60px;
    height: 60px;
    margin: 5px;
    display: inline-block;
}
.x-icon {
    background: url(../../images/x_icon.png) top left no-repeat;
    background-size: 100% 100%;
    width: 60px;
    height: 60px;
    margin: 5px;
    display: inline-block;
}
