:root {
    --green: #00C797;
    --green300: #99F4E0;
    --black: #000000;
    --white: #ffffff;
    --light: #FAFAFC
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Roboto Flex", sans-serif;
    font-size: 14px;
    font-weight: 400;
}

a {
    text-decoration: none;
}

ul {
    margin: 0;
    padding: 0;
}

ul li {
    list-style: none;
}

p {
    font-size: 14px;
    line-height: 21px;
    color: #707070;
}

img {
    max-width: 100%;
}

.btn-primary {
    padding: 10px 20px;
    background: transparent linear-gradient(90deg, #00C797 0%, #1B81A4 51%, #1B81A4 100%) 0% 0% no-repeat padding-box;
    border-radius: 4px;
    color: var(--white) !important;
    font-size: 13px;
    font-weight: 500;
    box-shadow: 0px 3px 6px #18859E80;
    transition: .3s all;
    border: none;
}

.btn-light {
    padding: 10px 20px;
    background: var(--white) !important;
    border: 1px solid #D5D5D5;
    border-radius: 4px;
    color: var(--green) !important;
    font-size: 13px;
    font-weight: 500;
    transition: .3s all;
    box-shadow: 0px 3px 6px #FFFFFF59;
}

.btn-primary:hover {
    box-shadow: none;
}

.text-primary {
    color: #272E5D !important;
}

.section-title {
    max-width: 500px;
    margin: auto;
    text-align: center;
    padding-bottom: 25px;
}

.section-title span {
    color: var(--green);
    font-weight: 600;
}

.section-title h2 {
    font-size: 36px;
    font-weight: 600;
    margin-top: 10px;
    margin-bottom: 10px;
}

.section-title h2 b {
    font-weight: 600;
}

.section-title p {
    color: var(--black);
    margin: 0;
}

.section-title p+p {
    margin-top: 13px;
}


.bg-light {
    background: var(--light) !important;
}

.bg-green {
    background-color: #77C0A330;
}

.section-title h2 span {
    color: #77C0A3;
}

.margin {
    margin: 80px 0 65px !important;
}

.padding {
    padding: 80px 0 65px !important;
}

.bg-none {
    background: none !important;
}

.text-gradient {
    background: transparent linear-gradient(91deg, #00C797 0%, #1B81A4 51%, #1B81A4 100%) 0% 0% no-repeat padding-box;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

}

.marginY {
    margin: 70px 0;
}

.paddingY {
    padding: 70px 0;
}

.mainHeader {
    padding: 15px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    transition: .5s all;
    z-index: 999;
}

.mainHeader.sticky {
    background: var(--white);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.14);
}

.mainHeader .container-fluid {
    padding: 0 40px;
}

.menuList {
    display: flex;
    flex-wrap: wrap;
}

.menuList>li {
    margin-right: 50px;
}

.menuList>li:last-child {
    margin: 0;
}

.menuList>li>a {
    font-size: 14px;
    font-weight: 500;
    color: var(--black);
    transition: .4s all;
    position: relative;
}


.menuList>li>a:hover,
.menuList>li>a.active {
    color: #77C0A3;
}

.menuList>li>a.active:after {
    opacity: 1;
    visibility: visible;
}

.menuToggle {
    background: none;
    border: none;
    padding: 0;
    line-height: 0;
    font-size: 26px;
}

.mainBanner {
    background: var(--white);
    padding-top: 100px;
    background-image: url(../images/topbg.svg);
    background-position: top left;
    background-repeat: no-repeat;
    background-size: 200px;
}


.bannerTxt span {
    display: block;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 10px;
}

.bannerTxt h1 {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 20px;
}

.bannerTxt h1 b {
    color: #77C0A3;
    font-weight: 700;
}

.bannerTxt p {
    font-weight: 400;
    color: var(--black);
    margin: 0;
    max-width: 450px;

}

.mainBanner video {
    display: block;
    width: 100%;
    height: 400px;
    border: none;
    margin: 0;
    padding: 0;
    background: transparent;
    object-fit: contain;
    will-change: transform;
    backface-visibility: hidden;
    transform: translateZ(0);
}

.counterSection {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin: 30px 0;
    max-width: 400px;
}

.counterSection p {
    margin: 0 !important;
    color: #707070;
}

.counterSection p strong {
    font-size: 26px;
    display: block;
    font-weight: 600;
    margin-bottom: 7px;
}

.counterSection p .txtBlue {
    color: #6A58CA;
}

.counterSection p .txtOrange {
    color: #FF8500;
}

.counterSection p .txtBrown {
    color: #BF6778;
}

.borderLeft {
    padding-left: 20px;
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
}

.borderLeft:after {

    content: "";
    display: block;
    position: absolute;
    height: 100%;
    width: 2px;
    top: 0%;
    left: 0px;
    background: #e1e1e1;

}

.borderLeft:before {

    content: "";
    display: block;
    position: absolute;
    height: 100%;
    width: 2px;
    top: 0%;
    left: 0px;
    background: #1B81A4;
    animation: run 2s infinite;
    z-index: 1;

}

/* @-webkit-keyframes run {
    0% {
        top: -100%;
    }

    100% {
        top: -100%;
    }
} */

@keyframes run {
    0% {
        top: -100%;
    }

    100% {
        top: 100%;
    }
}

.bannerTxt .btn {
    min-width: 190px;
    justify-content: center;
}

.bannerTxt .btn.btn-light {
    color: var(--black) !important;
}

.simpleContent {
    background: #FFFFFF 0% 0% no-repeat padding-box;
    box-shadow: 0px 0px 6px #00000029;
    border-radius: 10px;
    padding: 12px;
    position: relative;
    z-index: 1;
}





.simpleContent figure {
    margin-top: -50px;
    margin-bottom: 20px;
    width: 70px;
    height: 70px;
    background: #F0F8F6;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .4s all;
}

.simpleContent figure img {
    width: 27px;
    height: 27px;
}

.businessSlider .slick-dots {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    padding-top: 0px;
}

.businessSlider .slick-dots button {
    width: 13px;
    height: 13px;
    border-radius: 100px;
    font-size: 0;
    border: none;
}

.businessSlider .slick-dots .slick-active button {
    background: transparent linear-gradient(90deg, #00C797 0%, #1B81A4 51%, #1B81A4 100%) 0% 0% no-repeat padding-box;
}

.simpleContent h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 15px;
    transition: .4s all;

}



.simpleContent p {
    color: #707070;
    transition: .4s all;
}

.smbsSection {
    background: transparent linear-gradient(127deg, #00C797 0%, #1B81A4 46%, #1B81A4 62%, #1B81A4 100%) 0% 0% no-repeat padding-box;
}

.smbsSection .section-title h2 b {
    color: var(--green300);
}

.smbsSection .section-title p {
    color: #A0F0F9;
}

.smbTxt {
    background: #2E99AC 0% 0% no-repeat padding-box;
    border-radius: 7px;
    padding: 12px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}



.smbTxt strong {
    font-size: 16px;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.smbTxt strong img {
    min-width: 40px;
}

.smbTxt p {
    margin: 0;
    color: #A0F0F9;
}

.businessTxt strong {
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.businessTxt strong img {
    min-width: 30px;
}

.businessTxt p {
    margin: 0;
    color: #707070;
}

.countNum {
    max-width: 350px;
    background: transparent linear-gradient(185deg, #00C797 0%, #1B81A4 57%, #1B81A4 100%) 0% 0% no-repeat padding-box;
    border-radius: 10px;
    padding: 13px 20px;
    text-align: center;
}

.countNum strong {
    color: var(--white);
    font-size: 30px;
    font-weight: 600;
}

.countNum p {
    margin: 0;
    color: var(--green300);
}

.pricing-plan {

    padding: 10px;
    background: #FFFFFF 0% 0% no-repeat padding-box;
    border: 1px solid #D5D5D5;
    border-radius: 12px;
    transition: 0.3s ease;
}

.pricing-plan:hover {
    transform: translateY(-5px);
}

.plan-title {
    font-weight: 600;
    font-size: 20px;
}

.price {
    font-size: 28px;
    font-weight: bold;
    margin: 5px 0;
}

.pricing-plan p {
    font-size: 12px;
    color: #000;
}

.get-started {
    background-color: #00cc99;
    color: #fff;
    border: none;
    padding: 10px 20px;
    margin-top: 15px;
    border-radius: 5px;
}


.includes {
    margin-top: 20px;
    color: #000;
}

.includes>li {
    list-style: none;
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
    border-bottom: 1px solid #dddddd;
    padding-bottom: 10px;
}

.includes>li:last-child {
    margin-bottom: 0;
    border: 0;
}

.includes>li::before {
    content: "";
    background-image: url(../images/check.svg);
    background-size: cover;
    background-position: center;
    width: 13px;
    height: 10px;
    position: absolute;
    left: 4px;
    top: 6px;
    color: green;
}

.includes>li ul {
    padding-left: 10px;
    padding-top: 5px;
}

.includes>li ul li {
    position: relative;
    padding-left: 12px;
    margin-bottom: 4px;
}

.includes>li ul li::before {
    content: "";
    width: 6px;
    height: 6px;
    position: absolute;
    left: 0px;
    top: 8px;
    background-color: rgb(60 60 60);
    border-radius: 100px;
}

.bg-basic {
    background-color: #7fe3cb;
    border-radius: 7px;
    padding: 15px;
}

.bg-professional {
    background-color: #A2c5e0;
    border-radius: 7px;
    padding: 15px;
}

.bg-enterprise {
    background-color: #f5c790;
    border-radius: 7px;
    padding: 15px;
}


.demoSection {
    background-image: url(../images/green-bg.jpg);
    background-position: center;
    background-size: cover;
    color: white;
    text-align: center;
    padding: 60px 20px;
}

.demoSection .container {
    max-width: 450px;
}

.form-section {
    background: #FFFFFF;
    box-shadow: 0px 0px 6px #00000029;
    border-radius: 10px;
    overflow: hidden;
}

.form-section h3 {
    background: transparent linear-gradient(90deg, #00C797 0%, #1B81A4 24%, #1B81A4 100%) 0% 0% no-repeat padding-box;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    padding: 13px;
}

.form-section label {
    font-size: 14px;
    font-weight: 500;
}

.form-section label b {
    font-weight: 500;
    color: #ff0000;
    display: inline-block;
    vertical-align: middle;
    margin-left: 2px;
}

.form-section .form-control,
.form-section .form-select {
    height: 40px;
    font-size: 14px;
    outline: none;
    box-shadow: none;
}

.form-section textarea.form-control {
    height: 80px;
}

.trial-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 30px;
    max-width: 500px;
    width: 100%;
    background: transparent linear-gradient(269deg, #EEF7FE 0%, #F1FDFA 100%) 0% 0% no-repeat padding-box;
    border: 1px solid #D5D5D5;
    border-radius: 10px;
}

.trial-card-content {
    flex: 1;
}

.trial-card-heading {
    margin: 0 0 15px;
    font-size: 18px;
    color: #333;
}

.trial-card-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.trial-card-list li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 8px;
    color: #444;
}

.trial-card-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #34c38f;
    font-weight: bold;
}


.hero-section h1 {
    font-size: 2.5rem;
    font-weight: bold;
}

.hero-section p {
    margin-top: 15px;
    font-size: 1rem;
}

.hero-section .btn {
    margin-top: 25px;
    padding: 12px 24px;
    font-weight: 500;
    border-radius: 30px;
}

.support-section {
    padding: 60px 0;
    background-color: #fff;
}

.support-section .section-title h2 {
    max-width: 500px;
}

.support-section .section-title p {
    max-width: 800px;
}

.support-card {
    text-align: left;
    display: flex;
    align-items: center;
    gap: 15px;
}

.support-card img {
    width: 35px;
    min-width: 35px;
}

.support-card h5 {
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 16px
}

.support-card small {
    display: block;
    color: #777;
}



.footer {
    background-color: #101725;
}

.footer .brand {
    color: #61e1c0;
    font-size: 28px;
    font-weight: bold;
}

.footer p {
    color: #aaa;
    font-size: 14px;
    margin: 0;
}

.footer .social-icons img {
    width: 28px;
    height: 28px;
    border-radius: 5px;
    margin-right: 10px;
}


.footer-bottom {
    padding: 15px 0;
    font-size: 13px;
    color: #888;
    border-top: 1px solid #2c2c2c;
}


.footer-bottom a:hover {
    color: #fff;
}


#backTopButton {
    display: inline-block;
    background-color: #101725;
    width: 40px;
    height: 40px;
    text-align: center;
    border-radius: 4px;
    position: fixed;
    bottom: 20px;
    right: 20px;
    transition: background-color .3s,
        opacity .5s, visibility .5s;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    border: 2px solid var(--green);
    color: #fff;
    font-size: 16px;
}


#backTopButton:hover {
    cursor: pointer;
    background-color: var(--green);
}

#backTopButton:active {
    background-color: #555;
}

#backTopButton.show {
    opacity: 1;
    visibility: visible;
}

.wordTrust {
    max-width: 500px;
    margin-left: auto;
    position: relative;
    z-index: 1;
    padding: 100px 0 70px;
}

.wordTrust {
    max-width: 500px;
    margin-left: auto;
    position: relative;
    z-index: 1;
    padding: 100px 0 70px;
}

.wordwildTxt {
    box-shadow: 0px 0px 6px #00000029;
    border: 1px solid #D5D5D5;
    background: #fff url(../images/bgmap.png);
    border-radius: 15px;
    max-width: 250px;
    text-align: center;
    padding: 20px 10px 5px;
    position: absolute;
    top: 0;
    right: 0;
    animation: mymove 3s infinite;
}

@keyframes mymove {
    0% {
        top: 0;
    }

    50% {
        top: 5px;
    }

    100% {
        top: 0px;
    }
}

.wordwildTxt strong {
    font-size: 14px;
    display: block;
    margin-bottom: 4px;
}

.wordTrust {
    max-width: 500px;
    margin-left: auto;
    position: relative;
    z-index: 1;
    padding: 100px 0 70px;
}

.resultTxt {
    background: #fff;
    box-shadow: 0px 0px 6px #00000029;
    border: 1px solid #D5D5D5;
    border-radius: 15px;
    width: 270px;
    position: absolute;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    text-align: center;
    padding: 10px;
    animation: mymove2 2s infinite;
}

@keyframes mymove2 {
    0% {
        bottom: 0;
    }

    50% {
        bottom: 5px;
    }

    100% {
        bottom: 0px;
    }
}

.resultTxt i {
    width: 45px;
    height: 45px;
    background: #fff;
    border-radius: 100px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 0px 6px #00000029;
    position: absolute;
    top: -20px;
    left: -20px;
}

.resultTxt b {
    display: block;
    padding: 10px;
    border-right: 1px solid #D5D5D5;
    font-size: 20px;
    line-height: normal;

}

.resultTxt strong {
    font-size: 14px;
    display: block;
    margin-bottom: 4px;
    color: #000;
}

.resultTxt p {
    margin: 0;
    font-size: 12px;
    line-height: 16px;
    padding: 10px;
}

.wordwildTxt {
    box-shadow: 0px 0px 6px #00000029;
    border: 1px solid #D5D5D5;
    background: #fff url(../images/bgmap.png);
    border-radius: 15px;
    max-width: 250px;
    text-align: center;
    padding: 20px 10px 5px;
    position: absolute;
    top: 0;
    right: 0;
    -webkit-animation: mymove 3s infinite;
    animation: mymove 3s infinite;
}

@media (min-width: 1199px) {
    .simpleContent:before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 0;
        height: 0;
        z-index: -1;
        background: transparent linear-gradient(134deg, #00C797 0%, #1B81A4 46%, #1B81A4 62%, #1B81A4 100%) 0% 0% no-repeat padding-box;
        border-radius: 10px;
        transition: .5s all;
        margin: auto;
    }

    .simpleContent:hover:before {
        width: 100%;
        height: 100%;
    }

    .simpleContent:hover figure {
        background: var(--black);
    }

    .simpleContent:hover figure img {
        filter: brightness(0) invert(1);
    }

    .simpleContent:hover h3,
    .simpleContent:hover p {
        color: var(--white);
    }

    .smbTxt:before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 0;
        height: 100%;
        background: rgba(255, 255, 255, .3);
        transition: .3s all;
    }

    .smbTxt:hover:before {
        width: 100%;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .trial-card {
        max-width: 100%;
    }
}

@media (max-width: 991px) {
    .mainHeader .container-fluid {
        padding: 0 15px;
    }

    .mainHeader {
        padding: 10px 0;
    }

    .logoPanel img {
        width: 95px;
    }

    .paddingY {
        padding: 35px 0;
    }

    .marginY {
        margin: 35px 0;
    }

    .bannerTxt h1 {
        font-size: 32px;
    }

    .wordTrust {
        margin: auto;
    }
}

@media (max-width: 767px) {
    .padding {
        padding: 25px 0 !important;
    }

    .margin {
        margin: 25px 0 !important;
    }

    .mainHeader {
        background: var(--white);
    }

    .section-title {
        padding-bottom: 20px;
    }

    .section-title h2 {
        font-size: 20px;
    }

    .section-title h2 b {
        display: inline-block;
    }

    .section-title h2+p {
        width: 100% !important;
        margin-top: 10px !important;
    }


    .logoPanel {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .mainMenu {
        position: fixed;
        top: 59px;
        right: -100%;
        background: #fff;
        z-index: 997;
        height: calc(100% - 59px);
        width: 150px;
        padding: 0;
        border-top: 1px solid #f5f5f5;
        transition: .4s all;
    }

    .mainMenu.open {
        right: 0;
    }

    .menuOverlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.14);
        opacity: 0;
        visibility: hidden;
        transition: .2s all;
        z-index: 995;
    }

    .menuOverlay.open {
        opacity: 1;
        visibility: visible;
    }

    .menuList {
        display: block;
        height: 100%;
        overflow: auto;
    }

    .menuList>li {
        display: block;
        margin: 0;
    }

    .menuList>li>a {
        display: block;
        padding: 13px 15px;
        border-bottom: 1px solid #f5f5f5;
        font-size: 13px;
    }

    .menuList>li>a.subMenuBtn {
        padding-right: 20px;
        background: url(../images/caret-down-fill.svg);
        background-size: 13px;
        background-position: center right 10px;
        background-repeat: no-repeat;
    }

    .menuList>li>a:after {
        bottom: -1px;
        height: 1px;
    }

    .mainBanner {
        padding-top: 90px;
        padding-bottom: 0;
        min-height: 100%;
    }

    .bannerTxt {
        padding-bottom: 30px;
    }



    .bannerTxt h1 {
        font-size: 28px;
    }

    .bannerTxt .btn {
        min-width: 140px;
        padding: 10px 8px;
    }



    .trial-card {
        padding: 10px;
        max-width: 100%;
    }

    .demoSection {
        padding: 30px 0;
    }

    .support-section {
        padding: 35px 0;
    }

    .targetIcon {
        margin-top: -40px;
    }

    .targetIcon img {
        max-width: 80px;
    }

    .simpleContent {
        text-align: center;
        min-height: 150px;
    }

    .simpleContent h3 {
        margin-bottom: 5px;
    }

    .simpleContent figure {
        margin-left: auto;
        margin-right: auto;
    }

    .form-section p {
        font-size: 12px;
    }

    .wordwildTxt {
        max-width: 250px;
        padding: 13px 10px;
    }

    .resultTxt {
        left: 10px;
    }

    .footer-bottom .social-icons {
        margin-top: 12px;
    }

}

@media (max-width: 576px) {}




@media (max-width:991px) {}