/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Archivo+Narrow:ital,wght@0,400..700;1,400..700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
/* Fonts end */

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    overflow-x: hidden;
    font-family: "Poppins", sans-serif;
    color: #1F2833;
    background-color: #FAFAFA;
}

img {
    max-width: 100%;
}

a {
    text-decoration: none;
}

a:focus {
    outline: none;
}

p {
    margin-bottom: 0;
}

p:not(:last-of-type) {
    margin-bottom: 15px;
}

.site-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    padding: 30px 0px 0px;
    z-index: 999;
}

.site-header.head-sticky {
    -webkit-animation: 700ms ease-in-out 0s normal none 1 running fadeInDown;
    animation: 700ms ease-in-out 0s normal none 1 running fadeInDown;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    left: 0;
    -webkit-transition: all .3s ease 0s;
    transition: all .3s ease 0s;
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}

.main-nav.only-mobile {
    display: none;
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.site-header .header-wrapper {
    display: inline-flex;
    padding: 10px 20px;
    align-items: center;
    flex-shrink: 0;
    border-radius: 300px;
    background: #EFEFEF;
    margin: auto;
}

.site-header .header-wrapper .brand-logo {
    max-width: 140px;
    width: 100%;
    margin-right: 60px;
    flex-shrink: 0;
}

.site-header .header-wrapper .brand-logo a {
    display: block;
}

.main-nav .menu-list {
    display: flex;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.main-nav .menu-list .menu-item:not(:last-of-type) {
    padding-right: 20px;
}

.main-nav .menu-list .menu-item .menu-link {
    position: relative;
    display: inline-block;
    color: #000;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    white-space: nowrap;
    transition: all 0.6s ease;
}

.main-nav .menu-list .menu-item .menu-link:not(.mn-btn):before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 0%;
    height: 2px;
    background-color: #00D4D4;
    transition: all 0.6s ease;
    margin: auto;
}

.main-nav .menu-list .menu-item .menu-link.active::before,
.main-nav .menu-list .menu-item .menu-link:hover::before {
    width: 100%;
}

.main-nav .menu-list .menu-item .menu-link.mn-btn {
    padding: 8px 16px;
    background-color: #00D4D4;
    border-radius: 50px;
    color: #1F2833;
    font-weight: 500;
    transition: all 0.6s ease;
}

.main-nav .menu-list .menu-item .menu-link.mn-btn:hover {
    background-color: #1F2833;
    color: #00D4D4;
}

.about-us {
    margin-top: 100px;
}

.title-sm {
    position: relative;
    color: #808080;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    line-height: 21px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
}

.title-sm::before {
    content: '';
    display: inline-block;
    width: 14px;
    height: 14px;
    border-radius: 5px;
    background: #00D4D4;
    box-shadow: 0px 0px 4px 4px rgba(0, 212, 212, 0.20);
}

.about-info .title-sm {
    margin-bottom: 20px;
}

.about-info p {
    color: rgba(128, 128, 128, 0.41);
    font-family: "Poppins", sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    transition: all 0.6s ease;
    display: inline;
}

.about-info p.highlighted {
    color: #1F2833;
}

.section-title {
    margin-bottom: 20px;
}

.section-title h2 {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #808080;
    font-family: "Poppins", sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin: 0;
}

.section-title h2::before {
    content: '';
    display: inline-block;
    border-radius: 5px;
    background: #00D4D4;
    width: 14px;
    height: 14px;
    box-shadow: 0px 0px 4px 4px rgba(0, 212, 212, 0.20);
}

.space-top-200 {
    margin-top: 200px;
}


.help-indicators .select-indicators {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-bottom: 20px;
}

.help-indicators .select-indicators .indicator-name {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #1F2833;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.help-indicators .select-indicators .indicator-name::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    border-radius: 5px;
    background: #EFEFEF;
}

.help-indicators .select-indicators .indicator-name.active::before {
    background: #00D4D4;
}

.help-indicators .select-indicators .indicator-name:not(:last-of-type) {
    margin-right: 40px;
}

.progress-bars .progress-wrapper {
    display: flex;
    gap: 30px;
    align-items: center;
}

.progress-bars .progress-wrapper:not(:last-of-type) {
    margin-bottom: 40px;
}

.progress-bars .progress-wrapper .progress-name {
    color: #1F2833;
    text-align: right;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    flex-shrink: 0;
    min-width: 298px;
}

.progress-bars .progress-wrapper .progress {
    width: 100%;
    border-radius: 100px;
    background: #D9D9D9;
    height: 16px;
}

.progress-bars .progress-wrapper .progress .progress-bar {
    background: #00D4D4;
    border-radius: 100px;
    height: 16px;
}

.help-counters {
    margin-top: 60px;
}

.cust-card .cust-card-body {
    padding: 30px;
    border-radius: 10px;
    border-top: 1px solid #00D4D4;
    border-right: 0.5px solid #00D4D4;
    border-bottom: 1px solid #00D4D4;
    border-left: 0.5px solid #00D4D4;
    background: #00D4D4;
    box-shadow: 0px 0px 17px #00D4D4;

}

.cust-card .cust-card-body h3 {
    color: #1F2833;
    font-family: "Archivo Narrow", serif;
    font-size: 80px;
    font-style: normal;
    font-weight: 600;
    line-height: 80px;
    margin-bottom: 30px;
}

.cust-card .cust-card-body p {
    display: flex;
    align-items: center;
    color: #1F2833;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    gap: 10px;
}

.cust-card .cust-card-body p img {
    width: 40px;
    flex-shrink: 0;
}

.how-help .section-title {
    margin-bottom: 40px;
}

.help-card .help-body {
    padding: 20px 20px 60px;
    border-radius: 10px;
    background: #00D4D4;
    border: 1px solid #00D4D4;
    box-shadow: 0px 0px 17px #00D4D4;
    height: 100%;
}

.help-card {
    height: 100%;
}

.help-card .help-body h3 {
    color: #1F2833;
    font-family: "Poppins", sans-serif;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px;
    margin-bottom: 20px;
}

.help-card .help-body p {
    color: #1F2833;
    font-family: "Poppins", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.row.gutter-40 {
    margin: -40px -20px 0px;
}

.row.gutter-40>* {
    padding-left: 20px;
    padding-right: 20px;
    margin-top: 40px;
}

.help-full-card {
    height: 100%;
}

.help-full-card .help-full-body {
    padding: 20px;
    border-radius: 10px;
    background: #00D4D4;
    border: 1px solid #00D4D4;
    box-shadow: 0px 0px 17px #00D4D4;
    height: 100%;
}

.help-full-card .help-full-body .icon {
    width: 60px;
    margin-bottom: 20px;
}

.help-full-card .help-full-body h3 {
    color: #1F2833;
    font-family: "Poppins", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 20px;
}

.help-full-card .help-full-body p {
    color: #FFF;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    line-height: 21px;
}

.section-title.mb-40 {
    margin-bottom: 40px;
}

.site-footer {
    padding-bottom: 100px;
}

.site-footer .footer-wrapper {
    display: flex;
    align-items: flex-end;
}

.site-footer .footer-wrapper .footer-brand {
    max-width: 203px;
    width: 100%;
}

.site-footer .footer-wrapper .footer-brand a {
    display: block;
}

.site-footer .footer-wrapper .footer-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.footer-wrapper .footer-right .social-media {
    padding-right: 40px;
}

.footer-wrapper .footer-right .footer-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
}

.footer-wrapper .footer-right .footer-menu ul li a {
    color: #1F2833;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    transition: all 0.6s ease;
}

.footer-wrapper .footer-right .footer-menu ul li a:hover {
    color: #00D4D4;
}

.copyright {
    color: #1F2833;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    margin-top: 40px;
}

.menu-toggle {
    position: relative;
    background: transparent;
    border: 0;
    width: 25px;
    padding: 0;
    display: none;
}

.menu-toggle span {
    display: block;
    height: 3px;
    background: #34495E;
    transition: all .2s ease;
}

.menu-toggle span::before,
.menu-toggle span::after {
    content: '';
    width: 100%;
    display: block;
    position: absolute;
    left: 0;
    height: 3px;
    background: #34495E;
    transition: all .2s ease;
}

.menu-toggle span::before {
    top: -7px;
}

.menu-toggle span::after {
    bottom: -7px;
}

.menu-toggle.active span::before {
    transform: translate3d(0, 7px, 0);
}

.menu-toggle.active span::after {
    transform: rotate(-90deg) translate3d(7px, 0, 0);
}

.menu-toggle.active span {
    transform: rotate(45deg);
}


.home-banner {
    position: relative;
    /* background: url('../images/banner-bg.png');
    background-size: cover; */
    /* min-height: 100vh; */
    z-index: 1;
    padding-top: 243px;
    padding-bottom: 80px;
}

/* .home-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: #1F2833;
    opacity: 0.85;
    z-index: -1;
} */

.banner-card {
    display: inline-flex;
    padding: 20px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 10px;
    border-radius: 10px;
    background: #EFEFEF;
    border: 1px solid #00D4D4;
    color: #808080;
    font-family: "Poppins", sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    position: absolute;
    top: 0;
    transition: all 0.9s ease;
}

.banner-card.pos-1 {
    left: 17.3%;
}

.banner-card.pos-2 {
    right: 17.3%;
}

.banner-card.pos-3 {
    left: 49.6%;
    top: 34px;
}

.banner-card.pos-4 {
    left: auto;
    top: -25px;
    right: 6%;
}

.banner-card.pos-5 {
    left: 23%;
    top: 25%;
}

.banner-card.pos-6 {
    left: 2%;
    top: 50%;
}

.banner-card.pos-7 {
    left: 40%;
    top: 47%;
}

.banner-card.pos-8 {
    left: 60%;
    top: 35%;
}

.banner-card.pos-9 {
    left: auto;
    top: 22%;
    right: 0;
}

.banner-card.pos-10 {
    left: 24%;
    top: 70%;
}

.banner-card.pos-11 {
    left: 54%;
    top: 64%;
}

.banner-card.pos-12 {
    left: auto;
    right: 0;
    top: 52%;
}

.banner-card.move {
    top: 89% !important;
    left: 50% !important;
    right: 50% !important;
    transform: translateX(-50%);
    width: 100px;
    white-space: nowrap;
    overflow: hidden;
    z-index: -1;
    opacity: 0;
}

.home-banner .banner-content .banner-tags {
    position: relative;
    min-height: calc(100vh - 668px);
    max-width: 1100px;
    width: 100%;
    margin: auto;
    transition: all 0.6s ease;
}


.banner-box {
    display: flex;
    justify-content: center;
    padding-bottom: 100px;
}

/* .banner-card-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
    row-gap: 20px;
}

.banner-card-row .banner-card-full {
    width: 16.66666667%;
    padding: 0 10px;
} */

.banner-card-full .banner-card-body {
    height: 100%;
    padding: 20px;
    border-radius: 10px;
    background: #00D4D4;
    border: 1px solid #00D4D4;
    box-shadow: 0px 0px 17px #00D4D4;
    min-height: 140px;
}



.banner-card-full .banner-card-body h3 {
    color: #1F2833;
    font-family: "Poppins", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 32px;
    margin: 0;
}

.banner-card-full .banner-card-body p {
    color: #FFF;
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}

.banner-card-full {
    opacity: 0;
    transition: all 0.6s ease;
}

.banner-card-full.fade-in {
    animation: fadeIn 1s ease-in both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translate3d(0, -20%, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.founding-desk-wrape {
    display: flex;
}

.founding-desk-wrape .founding-img {
    max-width: 156px;
    width: 100%;
    flex-shrink: 0;
    height: 156px;

}

.founding-desk-wrape .founding-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 1px solid #00D4D4;
    filter: drop-shadow(0px 0px 17px #00D4D4);
    border-radius: 10px;
}

.founding-desk-wrape .founding-desc {
    padding-left: 35px;
}

.founding-desk-wrape .founding-desc p {
    font-family: "Poppins", sans-serif;
    font-style: normal;
    font-weight: 400;
    color: #1F2833;
    margin-bottom: 10px;
}

.founding-desk-wrape .founding-desc .moretext {
    display: none;
}

.founding-desk-wrape .moreless-button {
    font-family: "Poppins", sans-serif;
    font-style: normal;
    font-weight: 500;
    color: #00D4D4;
    display: inline-block;
}

.demo-content h2 {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    font-size: 36px;
    line-height: 54px;
    color: #1F2833;
    margin-bottom: 18px;
}

.btn{
padding: 8px 16px;
background: #00D4D4;
border: 0;
border-radius: 50px;
font-family: "Poppins", sans-serif;
font-style: normal;
font-weight: 500;
font-size: 14px;
line-height: 21px;
text-align: center;
color: #1F2833;
transition: all 0.6s ease;
}

.btn:hover{
    background-color: #1F2833;
    color: #00D4D4;
}

/* 
    font-family: "Poppins", sans-serif;
    font-family: "Archivo Narrow", serif;
*/