/* @import url("https://fonts.googleapis.com/css?family=Poppins:400,600,700"); */
:root {
    --default-font: "eudoxus-sans", "sans-serif";
    --heading-font: "Markdisc", sans-serif;
    --nav-font: "eudoxus-sans", "sans-serif";
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
    --background-color: #ffffff;
    /* Background color for the entire website, including individual sections */
    --default-color: #212529;
    /* Default color used for the majority of the text content across the entire website */
    --heading-color: #37373f;
    /* Color for headings, subheadings and title throughout the website */
    --accent-color: #ce1212;
    /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
    --contrast-color: #ffffff;
    /* The contrast color is used for elements when the background color is one of the heading, accent, or default colors. Its purpose is to ensure proper contrast and readability when placed over these more dominant colors */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
    --nav-color: #7f7f90;
    /* The default color of the main navmenu links */
    --nav-hover-color: #ce1212;
    /* Applied to main navmenu links when they are hovered over or active */
    --nav-dropdown-background-color: #ffffff;
    /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
    --nav-dropdown-color: #7f7f90;
    /* Used for navigation links of the dropdown items in the navigation menu. */
    --nav-dropdown-hover-color: #ce1212;
    /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

.esm-500-20-25 {
    font-family: var(--default-font);
    font-size: 20px;
    font-weight: 500;
    line-height: 25.2px;
    color: #ffffff;
}
.esr-400-20-40 {
    font-family: var(--default-font);
    font-size: 20px;
    font-weight: 400;
    line-height: 2;
    color: #333333;
}
.esr-400-20-30 {
    font-family: var(--default-font);
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    color: rgba(255, 255, 255, 0.8);
}
.esr-700-20-40 {
    font-family: var(--default-font);
    font-size: 20px;
    font-weight: 700;
    line-height: 40px;
    color: #333333;
}
.esb-700-20-40 {
    font-family: "eudoxus-sans-bold";
    font-size: 20px;
    font-weight: 700;
    line-height: 1.8;
    color: #333333;
}

.mrkdsc-400-48-72 {
    font-family: var(--heading-font);
    font-size: 48px;
    font-weight: 400;
    line-height: 1.5;
    text-transform: capitalize;
    color: #073355;
}

h1,
h2 {
    font-family: var(--heading-font);
}
h3,
h4,
h5,
h6 {
    font-family: var(--default-font);
}

span,
p {
    font-family: var(--default-font);
}

input[type="number"] {
    width: 50px;
    text-align: center;
    margin: 0 10px;
}

input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    max-width: 300px;
    height: 8px;
    background: #d9d9d9;
    border-radius: 32px;
    outline: none;
    transition: background 0.3s;
}

.free-trial--section input[type="range"]::-webkit-slider-runnable-track {
    background: linear-gradient(
        to right,
        #073355 0%,
        #073355 var(--range-value),
        #d9d9d9 var(--range-value),
        #d9d9d9 100%
    );
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 30px;
    height: 30px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M0 0h24v24H0z" fill="none"/><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm-1-13h2v6h-2zm0 8h2v2h-2z" fill="#fff"/></svg>')
            no-repeat center,
        #0055a5;
    background-size: 20px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.6);
    transition: background 0.3s, box-shadow 0.3s;
}

input[type="range"]:hover::-webkit-slider-thumb {
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M0 0h24v24H0z" fill="none"/><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm-1-13h2v6h-2zm0 8h2v2h-2z" fill="#fff"/></svg>')
            no-repeat center,
        #003f7d;
    background-size: 20px;
}

.button {
    background-color: #00bfa5;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    text-decoration: none;
}

.button:hover {
    background-color: #009e87;
}

*::-webkit-scrollbar {
    width: 7px !important;
    height: 5px !important;
}

*::-webkit-scrollbar-track {
    background: #f5f5f5 !important;
}

*::-webkit-scrollbar-thumb {
    background: #7f7f90 !important;
    border-radius: 10px !important;
}
/*--------------------------------------------------------------
  # Global Header
  --------------------------------------------------------------*/
.header {
    color: var(--default-color);
    background-color: #0bb5a2;
    padding: 12px 0;
    transition: all 0.5s;
    z-index: 997;
    /* border-bottom: 2px solid #fff; */
}

.header .logo {
    line-height: 1;
}

.header .logo h1 {
    font-size: 30px;
    margin: 0;
    font-weight: 700;
    color: var(--heading-color);
    font-family: var(--default-font);
}

.header .logo span {
    color: var(--accent-color);
    font-size: 36px;
}

.btn-getstarted {
    color: #0bb5a2;
    background: #fff;
    font-size: 16px;
    font-weight: 700;
    padding: 8px 38px;
    margin: 0;
    border-radius: 12px;
    transition: 0.3s;
    text-decoration: none;
    cursor: pointer;
}
.btn-getstarted:hover {
    background: #073355 !important;
    color: white !important;
}
.btn-getstarted:focus {
    background: #072d4a !important;
    color: white !important;
}

.btn-learnmore {
    color: #fff;
    background: #083456;
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    padding: 12px 47px;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 12px;
    transition: 0.13s;
    text-decoration: none;
    height: 48px;
    cursor: pointer;
}

.btn-learnmore:hover {
    background-color: #fff !important;
    color: #083456 !important;
}
.btn-learnmore:hover svg path{
fill: #083456;
stroke: #083456;
}
.btn-learnmore:focus {
    background-color: #068879 !important;
    color: white !important;
}
.header .sign-in {
    color: #fff;
    text-decoration: none;
}
.header .sign-in:focus{
    color: #fff !important;
}
@media (max-width: 1200px) {
    .header .main-logo {
        order: 3;
        margin-right: auto;
    }
    .desktop-buttons {
        margin-left: auto;
        margin-right: 24px;
    }
    .header .btn-getstarted {
        order: 2;
        /* margin: 0 15px 0 0; */
        padding: 6px 20px;
    }

    .header .navmenu {
        order: 0;
    }
}

.scrolled .header {
    box-shadow: 0px 0 18px
        color-mix(in srgb, var(--default-color), transparent 85%);
}
.need-more-info {
    font-size: 16px;
    color: #333333;
    font-weight: 500;
}
.need-more-info a {
    color: #03af9f;
    font-weight: 700 !important;

    font-weight: var(--default-font);
    text-decoration: none;
}
html {
    scroll-behavior: smooth;
}
/*--------------------------------------------------------------
  # Navigation Menu
  --------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
    .navmenu {
        padding: 0;
    }

    .navmenu ul {
        margin: 0;
        padding: 0;
        display: flex;
        list-style: none;
        align-items: center;
    }

    .navmenu li {
        position: relative;
    }

    .navmenu > ul > li {
        white-space: nowrap;
        padding: 15px 14px;
    }

    .navmenu > ul > li:last-child {
        padding-right: 0;
    }

    .navmenu a,
    .navmenu a:focus {
        color: #fff;
        font-size: 16px;
        padding: 0 2px;
        font-family: var(--nav-font);
        font-weight: 500;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
        position: relative;
        text-decoration: none;
    }

    .navmenu a i,
    .navmenu a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
        transition: 0.3s;
    }

    .navmenu > ul > li:nth-child(1)::after,
    .navmenu > ul > li:nth-child(2)::after,
    .navmenu > ul > li:nth-child(3)::after {
        display: inline-flex !important;
        content: "•";
        padding: 0px 20px;
        color: #ffffff40;
    }

    .navmenu > ul > li {
        display: inline-flex !important;
        padding: 0;
    }
    .navmenu > ul > li > a:before {
        content: "";
        position: absolute;
        height: 2px;
        bottom: -6px;
        left: 0;
        background-color: var(--nav-hover-color);
        visibility: hidden;
        width: 0px;
        transition: all 0.3s ease-in-out 0s;
    }

    /* .navmenu a:hover:before,
    .navmenu li:hover>a:before,
    .navmenu .active:before {
        visibility: visible;
        width: 100%;
    } */

    .navmenu li:hover > a,
    .navmenu .active,
    .navmenu .active:focus {
        color: #fff;
    }

    .navmenu .dropdown ul {
        margin: 0;
        padding: 10px 0;
        background: var(--nav-dropdown-background-color);
        display: block;
        position: absolute;
        visibility: hidden;
        left: 14px;
        top: 130%;
        opacity: 0;
        transition: 0.3s;
        border-radius: 4px;
        z-index: 99;
        box-shadow: 0px 0px 30px
            color-mix(in srgb, var(--default-color), transparent 85%);
    }

    .navmenu .dropdown ul li {
        min-width: 200px;
    }

    .navmenu .dropdown ul a {
        padding: 10px 20px;
        font-size: 15px;
        text-transform: none;
        color: var(--nav-dropdown-color);
    }

    .navmenu .dropdown ul a i {
        font-size: 12px;
    }

    .navmenu .dropdown ul a:hover,
    .navmenu .dropdown ul .active:hover,
    .navmenu .dropdown ul li:hover > a {
        color: var(--nav-dropdown-hover-color);
    }

    .navmenu .dropdown:hover > ul {
        opacity: 1;
        top: 100%;
        visibility: visible;
    }

    .navmenu .dropdown .dropdown ul {
        top: 0;
        left: -90%;
        visibility: hidden;
    }

    .navmenu .dropdown .dropdown:hover > ul {
        opacity: 1;
        top: 0;
        left: -100%;
        visibility: visible;
    }
}

/* Mobile Navigation */
@media (max-width: 1199px) {
    .mobile-nav-toggle {
        color: #fff;
        font-size: 28px;
        line-height: 0;
        margin-right: 10px;
        cursor: pointer;
        transition: color 0.3s;
    }

    .navmenu {
        padding: 0;
        z-index: 9997;
    }

    .navmenu ul {
        display: none;
        position: absolute;
        /* inset: 60px 20px 20px 20px; */
        padding: 30px;
        margin: 0;
        border-radius: 6px;
        background-color: #03af9f;
        width: 300px;
        right: 20px;
        top: 20px;
        list-style: none;
        border: 1px solid
            color-mix(in srgb, var(--default-color), transparent 90%);
        box-shadow: none;
        overflow-x: hidden;
        overflow-y: auto;
        transition: 0.3s;
        z-index: 9998;
    }

    .navmenu a,
    .navmenu a:focus {
        color: #fff;
        padding: 10px 0px;
        font-family: var(--nav-font);
        font-size: 17px;
        font-weight: 500;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
    }

    .navmenu a i,
    .navmenu a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        transition: 0.3s;
        background-color: color-mix(
            in srgb,
            var(--accent-color),
            transparent 90%
        );
    }

    .navmenu a i:hover,
    .navmenu a:focus i:hover {
        background-color: var(--accent-color);
        color: var(--contrast-color);
    }

    .navmenu a:hover,
    .navmenu .active,
    .navmenu .active:focus {
        color: #0bb5a2;
    }

    .navmenu .active i,
    .navmenu .active:focus i {
        background-color: var(--accent-color);
        color: var(--contrast-color);
        transform: rotate(180deg);
    }

    .navmenu .dropdown ul {
        position: static;
        display: none;
        z-index: 99;
        padding: 10px 0;
        margin: 10px 20px;
        background-color: var(--nav-dropdown-background-color);
        transition: all 0.5s ease-in-out;
    }

    .navmenu .dropdown ul ul {
        background-color: rgba(33, 37, 41, 0.1);
    }

    .navmenu .dropdown > .dropdown-active {
        display: block;
        background-color: rgba(33, 37, 41, 0.03);
    }

    .mobile-nav-active {
        overflow: hidden;
    }

    .mobile-nav-active .mobile-nav-toggle {
        color: #fff;
        position: absolute;
        font-size: 32px;
        top: 43px;
        right: 32px;
        margin-right: 0;
        z-index: 9999;
    }
    .mobile-nav-active .mobile-nav-toggle  svg {
        display: none;
    }
    .mobile-nav-active .navmenu {
        position: fixed;
        overflow: hidden;
        inset: 0;
        background: rgba(33, 37, 41, 0.8);
        transition: 0.3s;
    }

    .mobile-nav-active .navmenu > ul {
        display: block;
    }
}

/* Banner section  */

.banner-section {
    /* background-color: #0AB4A11A; */
    padding: 50px 0;
    padding-top: 72px;

  
    background: linear-gradient(to bottom, #0AB4A1, #FFFFFF);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    width: 100%;
    position: relative;
    margin-top: -1px;
    z-index: 1;
}

.banner-section::before {
    content: '';
    position: absolute;
    width: 100%;
    z-index: -1;
    height: 100%;
    top: 0px;
    left: -250px;
    background-image: url(../../images/web/banner-small.webp);
    
    background-size: contain;
    background-repeat: no-repeat;
}
.banner-section .btn-watch-video span {
    color: #fff;
    font-weight: 600;
}
.btn-watch-video {
    padding: 8px 16px;
    padding-right: 20px;
    border-radius: 12px;
    font-size: 16px;
    cursor: pointer;
    user-select: none;
    height: 48px;
}
.btn-watch-video img {
    width: 42px;
    height: auto;
    object-fit: contain;
}
.btn-watch-video:hover {
    background-color: #ffffff33;
}
.btn-watch-video:focus {
    background-color: #068879;
}
.banner-section .content h1 {
    color: #fff;
    font-size: 64px;
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 8px;
}

.banner-section .content p {
    font-size: 20px;
    font-weight: 500;
    font-family: var(--default-font);
    line-height: 2;
    margin-bottom: 32px;
}

.banner-img-1 {
    position: absolute;
    top: -48px;
    right: -32px;
    width: 330px;
}
.banner-img-2 {
    position: absolute;
    top: -91px;
    left: -59px;
    width: 210px;
}
.banner-img-3 {
    position: absolute;
    bottom: -74px;
    left: -17px;
    width: 223px;
}
.banner-img-4 {
    position: absolute;
    top: 69px;
    left: -19px;
    width: 34px;
}

.title p {
    color: #333333;
    font-size: 20px;
    font-weight: 400;
    line-height: 2;
}
.main-home-banner {
    position: relative;
    height: auto;
    width: 100%;
}
.main-home-banner .icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 999;
    cursor: pointer;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    transition: all 0.2s ease-in-out;
}
.main-home-banner .icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.main-home-banner .icon:hover {
    box-shadow: 0px 8px 34px 0px #00000014;
}
.set-goal--section .content-wrapper h3 {
    color: #333333cc;
    font-weight: 700;
    line-height: 1.5;
    font-size: 32px;
}
.set-goal--section .content-wrapper h4 {
    color: #333333cc;
    font-weight: 700;
    font-size: 22px;
    /* opacity: 0.8; */
}



/* Footer CSS */

.footer {
    background-color: #073355;
    position: relative;
    padding: 50px 0px 100px 0px;
}

.footer::before {
    content: "";
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 60px;
    background-image: url(../../images/web/footer-img.webp);
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.1;
}

.cta--section-bg {
    /* background-color: #073355; */
    background: linear-gradient(
        182.22deg,
        rgba(255, 255, 255, 0.5) 31.06%,
        rgba(10, 180, 161, 0.5) 98.14%
    );
    
}

.why-choose--section {
    background-color: #f4fdfc;
    padding: 60px 0px;
    padding-top: 80px !important;
    padding-bottom: 10px;
}

.why-choose--section h2 {
    color: #073355;
    font-size: 48px;
    line-height: 1.5;
}
.content-886 {
    max-width: 886px;
    margin: auto;
}
.content-830 {
    max-width: 830px;
    margin: auto;
}
.our-impact--section {
    padding: 60px 0px;
    padding-top: 80px !important;
    padding-bottom: 5px;
}
.our-impact--section p {
    font-size: 20px;
    line-height: 2;
    color: #333333;
    font-weight: 400;
}
.our-impact--section p strong {
    font-weight: 800;
}
.why-choose--section p {
    color: #333333;
    font-weight: 400;
    font-size: 20px;
    line-height: 2;
    font-family: "eudoxus-sans-light";
}

.why-choose--section h4 {
    color: #333;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.5;
    font-family: "eudoxus-sans-bold";
}

.why-choose--section .traditional-cart {
    background-color: #d9d9d9;
    height: 150px;
    border-radius: 12px;
    width: 110px;
}

.why-choose--section .with-teamry-chart {
    background-color: #0ab4a1;
    height: 300px;
    border-radius: 12px;
    width: 110px;
}

.free-trial--section .price-main {
    font-family: var(--heading-font);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.free-trial--section .price-main .large {
    font-size: 72px;
    color: #03af9f;
}
.free-trial--section .price-main .large .value {
    font-family: var(--heading-font);
    font-weight: 700;
}
.free-trial--section .price-main .large .sign {
    /* font-family: "poppins"; */
    font-weight: 900;
    font-size: 72px;
}
.free-trial--section .right-price {
    display: flex;
    flex-direction: column;
}
.free-trial--section .right-price span {
    color: #073355;
    font-family: var(--heading-font);
    font-size: 24px;
    font-weight: 400;
}

.free-trial--section .duration {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.5;
    font-family: "eudoxus-sans-bold";
    color: #333333;
}

.free-trial--section .tag {
    background-color: #0ab4a11a;
    border-radius: 16px;
    color: #0ab4a1;
    padding: 6px 20px;
    font-size: 14px;
    font-weight: bold;
}

.free-trial--section .slider-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 5px 0;
}

.free-trial--section input[type="number"] {
    width: 75px;
    height: 48px;
    font-size: 16px;

    margin: 0 10px;
    border-radius: 12px;
    padding: 14px 22px;
    text-align: left;
    border: 1px solid #bababa;
    -moz-appearance: textfield; /* For Firefox */
    -webkit-appearance: none; /* For Chrome, Safari, Edge */
    appearance: none; /* Standard property */
}
.free-trial--section input[type="number"]:focus {
    outline: none !important;
    box-shadow: none !important;
    border: 1px solid #bababa !important;
}

/* Remove spin buttons in Firefox */
.free-trial--section input[type="number"] {
    -moz-appearance: textfield; /* Disables the spin buttons in Firefox */
    appearance: textfield;
}

/* Remove focus styles for consistent appearance */
.free-trial--section input[type="number"]:focus {
    outline: none !important;
    box-shadow: none !important;
    border: 1px solid #bababa !important;
}

.free-trial--section input[type="number"]::-webkit-inner-spin-button,
.free-trial--section input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0; /* Optional: Remove margin for better alignment */
}
.free-trial--section input[type="number"]:active,
.free-trial--section input[type="number"]:focus,
.free-trial--section input[type="number"]:focus-within,
.free-trial--section input[type="number"]:focus-visible {
    border: 1px solid #083456 !important;
    outline: none !important;
}

.free-trial--section input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    width: calc(100% -16px);
    margin: auto;
    max-width: 100%;
    height: 8px;
    background: #ddd;
    border-radius: 5px;
    outline: none;
    transition: background 0.3s;
    margin-bottom: 12px;
}

.free-trial--section input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 32px;
    height: 32px;

    background: url(../../images/web/range-icon.svg) no-repeat center center;
    background-size: contain;
    border: none;
    cursor: pointer;
    vertical-align: middle;
    z-index: 3;
    box-shadow: none;
}
.free-trial--section input[type="range"]::-moz-range-thumb {
    width: 32px;
    height: 32px;
    background: url(../../images/web/range-icon.svg) no-repeat center center;
    background-size: contain;
    border: none;
    cursor: pointer;
    vertical-align: middle;
    z-index: 3;
    box-shadow: none;
}
.free-trial--section .error {
    font-weight: 700;
    font-family: var(--default-font);
    font-size: 13px;
}
.free-trial--section input[type="range"]::-webkit-slider-runnable-track {
    background: transparent !important;
    
}

.free-trial--section input[type="range"]:hover::-webkit-slider-runnable-track {
    background: transparent !important;
   
}

.set-goal--section .custom-card {
    box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1);
    border: none;
    border-radius: 12px;
    padding: 13px;

    position: relative; /* For absolute positioning of the animated fill */
    overflow: hidden; /* To ensure the filling color doesn't go outside the bounds */
}

.set-goal--section .custom-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0%; /* Start from 0% */
    height: 100%;
    background-color: #a5e8e140; /* The solid color */
    animation: fillColor 5.5s linear forwards; /* Animation to fill the background */
}
.set-goal--section .step-card:last-child.custom-card::before {
    animation: fillColor 5.5s linear forwards;
}
@keyframes fillColor {
    0% {
        width: 0%; /* Start with 0% width */
    }
    100% {
        width: 100%; /* End at 100% width */
    }
}

.esb h3,
.esb h4 {
    font-family: "eudoxus-xb";
    font-size: 32px;
    font-weight: 800;
    line-height: 48px;
}
.set-goal--section {
    background-image: url(../../images/web/dotted-image.webp);
    background-position: 110% 100%;
    background-position-y: -240px;
    background-size: contain;
    background-repeat: no-repeat;
}
.set-goal--section .custom-card h3 {
    color: #0ab4a1;
}
.set-goal--section .custom-card p {
    font-size: 20px;
    font-weight: 400;
    line-height: 2;
}

.set-goal--section .custom-card:hover {
    box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1);
    border: none;
    transition: 0.4s ease-in-out;
    border-radius: 12px;
}
.set-goal--section .before-shape {
    position: relative;
    width: 100%;
    height: 100%;
}
.set-goal--section .before-shape::before {
    content: "";
    position: absolute;
    background-image: url(../../images/web/shape.webp);
    width: 100%;
    height: 100%;
    top: 0;
    left: 77px;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: -1;
}

.set-goal--section::before {
    content: "";
    position: absolute;
    background-image: url(../../images/web/section-img.webp);
    width: 100%;
    height: 100%;
    /* top: 0; */
    bottom: -243px;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: -1;
}
.why-choose--section .card-wrapper {
    padding: 24px;
    border-radius: 16px;
}
.why-choose--section .card-wrapper:hover {
    box-shadow: 0px 2px 40px 0px #0ab4a11f;
    transition: 0.4s ease-in-out;

    background-color: #fff;
}

.why-choose--section .card-wrapper .icon {
    background-color: #e7f7f6;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    padding: 0px;
    margin-bottom: 24px;
}
.why-choose--section .card-wrapper .icon img {
    width: 40px;
    height: auto;
    object-fit: contain;
}
.our-impact--section .content .heading {
    color: #073355;
    font-size: 48px;
    font-family: var(--heading-font);
    display: inline-flex;
    line-height: 1.5;
}
.our-impact--section .content p {
    color: #333;
    text-align: left;
    font-size: 20px;
    font-family: var(--default-font);
    line-height: 2;
}

.our-impact--section .content .heading::before {
    content: "";
    border-left: 10px solid #03af9f;
    color: #03af9f;
    font-size: 34px;
    font-weight: 800;
    border-top-right-radius: 36px;
    border-bottom-right-radius: 36px;
    margin-right: 20px;
    /* top: -10px; */
    position: relative;
    /* display: inline-flex; */
    height: 59px;
}

.free-trial--section .content {
    /* box-shadow: 3px 4px 15px -3px rgba(0,0,0,0.1); */
    border-radius: 16px;
    box-shadow: 0px 2px 40px 0px #0000001f;
    background: #fff;
    padding: 40px 70px;
    max-width: 918px;
    width: 100%;
}

.free-trial--section::before {
    content: "";
    position: absolute;
    background-image: url(../../images/web/section-img.webp);
    width: 100%;
    height: 57%;
    /* top: 0; */
    bottom: -79px;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: -1;
}

.free-trial--section .content .trial-btn {
    background-color: #083456;
    color: #fff;
    width: 100%;
    border-radius: 8px;
    text-decoration: none;
    padding: 20px 30px;
    font-family: var(--default-font);
    font-size: 20px;
    font-weight: 700;
    border: none !important;
    line-height: 24px;
}


.cta--section .btn-cta:hover {
    background-color: #fff !important;
    color: #083456 !important;
}
.free-trial--section .content .trial-btn:hover {
    background-color: #0bb5a2 !important;
    color: white !important;
}
.free-trial--section .content .trial-btn:focus,
.cta--section .btn-cta:focus {
    background-color: #068879 !important;
    color: white !important;
}
.cta--section .btn-cta {
    background-color: #083456;
    color: #fff;
    /* width: 100%; */
    border-radius: 12px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 48px;
    padding: 12px 48px;
    font-family: var(--default-font);
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    border: none !important;
    cursor: pointer;
}
.cta--section .btn-cta:hover svg path {
    fill: #083456;
}
.faq--section {
    padding: 60px 0px;
    padding-bottom: 5px;
    padding-top: 80px !important;
}
.faq--section .text {
    font-size: 20px;
    line-height: 1.8;
    font-family: var(--default-font);
}
.footer-logo {
    max-width: 225px;
    height: auto;
    object-fit: contain;
}
footer a,
footer a:hover {
    text-decoration: none;
    color: #ffffffcc;
}
.footer-hr {
    height: 1px;
    width: 100%;
    background-color: #ffffff40;
    margin: 16px auto;
}
footer .esr-400-20-40 {
    line-height: 1.5;
}
.footer-top-icons {
    display: flex;
    align-items: center;
    margin: 0px;
    gap: 32px;
    margin-bottom: 0px !important;
}
.accordion__wrapper {
    /* background-color: #fff; */
    border-radius: 2.5rem;
    width: 100%;
    /* max-width: 60rem; */
}

.accordion__title {
    font-size: 2.2rem;
    font-weight: 600;
    color: #242e4c;
    text-align: center;
    margin-bottom: 4rem;
}

.accordion {
    border: 2px solid rgba(239, 239, 239, 1);
    box-shadow: 0px 2px 40px 0px rgba(10, 180, 161, 0.12);
    /* padding-bottom: 2rem; */
    padding: 24px;
    padding-bottom: 18px;
    border-radius: 12px;
    margin-bottom: 1rem;
    background-color: #fff;
    
}

.accordion__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
}

.accordion__icon {
    /* background-color: #FF4B4B; */
    width: 2.2rem;
    height: 2.2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: #333333;
    flex-shrink: 0;
}

.accordion__question {
    text-align: left;
}

.accordion__answer {
    /* padding: 2rem 0; */
    text-align: start;
}

.accordion__content {
    overflow: hidden;
    height: 0;
    transition: 0.4s ease-in-out;
}

.faq--section .email {
    color: #0ab4a1;
    font-weight: bold;
}

/* Media Query Responsive */

@media (min-width: 300px) and (max-width: 1200px) {
    .set-goal--section .before-shape::before {
        left: 0 !important;
    }
    .responsive-header {
        flex-direction: row-reverse;
    }
}
@media (min-width: 300px) and (max-width: 600px) {
    .esb-700-20-40 {
        font-size: 14px !important;
    }
    .mrkdsc-400-48-72 {
        font-size: 32px !important;
        text-align: center;
    }
    .sm-text-center {
        text-align: center !important;
    }
    .our-impact--section .content .heading {
        font-size: 32px !important;
    }
    .sm-mt-5 {
        margin-top: 3rem !important;
    }
}
.set-goal--section .step-card {
    background-color: white;
}
@media (min-width: 992px) {
    .lg-mt-0 {
        margin-top: 0 !important;
    }
}
.set-goal--section .step-card {
    border-radius: 12px;
    margin-bottom: 32px;
    transition: all 0.3s ease-in-out;
    padding: 22px;
    
    min-height: 100px;
    cursor: pointer;
}
.set-goal--section .step-card  .inner {
    display: flex;
    align-items: flex-start;
    gap: 26px;
}
.set-goal--section .set-goal-section-image {
    max-height: 670px;
    height: auto;
    width: 100%;
    transition: all 0.3s ease-in-out;
    object-fit: contain;
    background-color: transparent;
}
.set-goal--section .step-card:hover {
    box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.set-goal--section .step-card.custom-card {
    transition: all 0.3s ease-in-out;
    
}
.faded-hr {
    border: 0;
    height: 1px;
    margin-top: 50px;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0) 0%,
        #b2b2b2 10%,
        rgba(0, 0, 0, 0) 100%
    );
}
.users-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: calc(100% -16px);
    margin: auto;
    margin-bottom: 30px;
}
.users-flex .user {
    color: #a4a4a4;
    font-weight: 400;
    font-size: 16px;
}
p.accordion__answer a {
    color: #0ab4a1;
}
.teamry-canvas {
    position: relative;
    height: 100%;
    min-height: 700px;
}
.teamry-canvas .without-teamry {
    width: 200px;
    height: 71px;
    position: absolute;
    background-color: #9b9d9d;

    border-radius: 16px;
    box-shadow: 0px 4px 4px 0px #00000014;
    padding: 20px 30px;
    border: none;
    font-size: 16px;
    color: #ffffff;
    font-family: var(--default-font);
    font-weight: 700;
    bottom: 15%;
    z-index: 9;
    right: 30px;
    cursor: auto;
}
.teamry-canvas .with-teamry {
    z-index: 9;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 200px;
    height: 71px;
    position: absolute;
    background-color: #03af9f;

    border-radius: 16px;
    box-shadow: 0px 4px 4px 0px #00000014;
    padding: 20px 30px;
    border: none;
    font-size: 16px;
    color: #ffffff;
    font-family: var(--default-font);
    font-weight: 700;
    top: 20%;
    cursor: text;
    right: 30px;
    cursor: auto;
}
.teamry-canvas .with-teamry img {
    width: 142px;

    height: 36px;
    object-fit: contain;
}

.navmenu li a:hover {
    text-decoration: underline !important;
    box-shadow: none !important;

    text-underline-offset: 6px;
    color: white !important;
}

.footer-top-icons li a:hover,
.privacy-terms a:hover {
    text-decoration: underline !important;
    transition: all 0.12s ease-in-out;

    text-underline-offset: 6px;
}

.header .sign-in:hover {
    text-decoration: underline !important;
    color: white !important;
    text-underline-offset: 6px;
}
.header_buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 56px;
}
.banner-section .dot1 {
    position: absolute;
    top: 45%;
    left: 12%;
    width: 22px;
    height: 22px;
}
.banner-section .dot2 {
    position: absolute;
    top: 75%;
    left: 8%;
    width: 22px;
    height: 22px;
}
.banner-section .dot3 {
    position: absolute;
    top: 85%;
    left: 14%;
    width: 22px;
    transform: rotate(137deg);
    height: 22px;
}
.banner-section .dotr1 {
    position: absolute;
    top: 50%;
    right: 18%;
    width: 22px;
    height: 22px;
}
.banner-section .dotr2 {
    position: absolute;
    top: 78%;
    right: 17%;
    width: 22px;
    height: 22px;
}
.banner-section .dotr3 {
    position: absolute;
    top: 76%;
    right: 7%;
    width: 22px;
    height: 22px;
}
@media (max-width: 1600px) {
    .banner-section .dot1 {
       
        left: 7%;
        width: 18px;
        height: 18px;
       
    }
    .banner-section .dot2 {
       
        left: 5%;
        width: 18px;
        height: 18px;
    }
    .banner-section .dot3 {
      
        width: 18px;
        height: 18px;
        left: 8%;
    }
    .banner-section .dotr1 {
       
        right: 13%;
        width: 18px;
        height: 18px;
    }
    .banner-section .dotr2 {
       
        right: 11%;
        width: 18px;
        height: 18px;
    }
    .banner-section .dotr3 {
        right: 3%;
        width: 18px;
        height: 18px;
    }
    .why-choose--section .card-wrapper .icon img {
        width: 30px;
    }
    .accordion {
        padding: 14px;
        padding-bottom: 10px;
    }
    .set-goal--section .custom-card p {
        font-size: 16px;
    }
    .btn-getstarted {
        font-size: 14px;
        padding: 8px 24px;
    }
}
@media (max-width: 769px) {
    .banner-section .dot1,.banner-section .dot2,.banner-section .dot3,.banner-section .dotr1,.banner-section .dotr2,.banner-section .dotr3{
        width: 16px;
        height: 16px;
    }
    .accordion__content .esr-400-20-40 br {
        display: none;
    }
}


@media (min-width: 1400px) and (max-width: 1439px) {
    .arrow-img {
        z-index: 1 !important;
        top: 10% !important;
        /* right: -90px !important; */
        position: relative !important;
    }
}


@media (min-width: 992px) and (max-width: 1219px) {
    .arrow-img {
        width: 100%;
        position: relative !important;
    }
}

@media (min-width: 767px) and (max-width: 992px) {
    .arrow-img {
        /* top: -20px;
        right: -30px; */
        width: 60%;
        position: relative !important;
    }
}

@media (max-width: 576px) {
    .arrow-img {
        position: relative !important;
        top: 0;
        right: 0;
        width: 60%;
        margin-top: 20px;
    }
    .header_buttons {
        gap: 8px;
    }
   
        .btn-learnmore, .btn-watch-video,.btn-getstarted,.header .sign-in {
            font-size: 12px !important;
        }
        .btn-watch-video {
            padding: 8px !important;
            gap: 8px !important;
        }
        .btn-getstarted {
            padding: 8px 10px !important;
            font-size: 11px !important;
        }
    
}
.main-logo {
    width: 142px;
    height: auto;
}
.main-logo img {
    width: 100%;
    height: auto;
    object-fit: contain;
}
.set-goal--section {
    padding: 60px 0px;
    padding-top: 85px !important;
    padding-bottom: 5px;
}
.free-trial--section {
    padding: 60px 0px;
    padding-bottom: 5px;
    padding-top: 80px !important;
}
.set-goal--section .content-wrapper p {
    font-size: 20px;
    margin-bottom: 4px;
    line-height: 2;
}
.set-goal--section .content-wrapper .step-card p {
    display: none;
}
.set-goal--section .content-wrapper .step-card.custom-card p {
    display: block;
}
.arrow-img {
    max-width: 470px;
    width: 100%;
}
.custom-info-padding {
    padding: 30px 20px;
}
/* For standard devices  */

.set-goal--section .step-card .step-icon {
    width: 56px;
    height: 56px;
    position: relative;
    flex-shrink: 0;
}
.set-goal--section .step-card .step-icon img {
    width: 50px;
    height: 50px;
    border-radius: 50%; /* Ensures the image fits perfectly inside the circle */
    z-index: 2; /* Keep the image on top */
    position: absolute;
    left: 0;
    opacity: 50%;
    top: 0;
    background: #f7f7f6;
}
.set-goal--section .step-card .step-icon svg {
    height: 70px;
    width: 70px;
    position: absolute;
    left: -10px;
    top: -10px;
    z-index: 5;
    transform: rotate(270deg);
}
.set-goal--section .step-card.custom-card .step-icon img {
    opacity: 1;
}

.content-900 {
    max-width: 900px;
    margin: auto;
}
.content-1100 {
    max-width: 1100px;
    margin: auto;
}
.mb-60 {
    margin-bottom: 60px;
}
.hrr {
    height: 1px;
    margin: 16px auto;
    background-color: #b2b2b2;
}
.slider-text {
    font-size: 20px;
    color: #333333;
    font-weight: 700;
}
.slider-text .thin {
    font-weight: 400;
}
#homechart {
    max-height: 700px;
    min-height: 360px;
}
@media (max-width: 1600px) {
    .mb-60 {
        margin-bottom: 40px;
    }
    .teamry-canvas .without-teamry,
    .teamry-canvas .with-teamry {
        font-size: 16px;
        padding: 16px 30px;
    }
    .teamry-canvas .with-teamry img {
        width: 120px;

        height: 30px;
        object-fit: contain;
    }
    .why-choose--section,
    .set-goal--section,
    .our-impact--section {
        padding: 60px 0px;
        padding-bottom: 5px;
        padding-top: 60px !important;
    }
    .why-choose--section p,
    .our-impact--section p {
        font-size: 18px;
        line-height: 1.5;
    }
    .why-choose--section p.text {
        font-size: 16px;
        line-height: 1.6;
    }
    .content-886.mb-5,
    .content-900.mb-5,
    .content-1000.mb-5 {
        margin-bottom: 30px !important;
    }
    .main-logo {
        width: 120px;
        height: auto;
    }
    .banner-section .content h1 {
        font-size: 52px;
    }
    .mrkdsc-400-48-72,
    .why-choose--section h2 {
        font-size: 40px;
        line-height: 1.5;
    }
    .title p {
        font-size: 18px;
        line-height: 1.5;
    }
    .banner-section {
        padding-bottom: 2%;
    }

    .set-goal--section .content-wrapper h3 {
        font-size: 24px;
    }
    .set-goal--section .content-wrapper p {
        font-size: 16px;
        margin-bottom: 4px;
        line-height: 1.5;
    }
    .set-goal--section .content-wrapper p br {
        display: none;
    }
    .set-goal--section .step-card {
        margin-bottom: 24px;
        padding: 14px;
        gap: 16px;
    }

    .why-choose--section .card-wrapper .icon {
        height: 60px;
        width: 60px;
        margin-bottom: 20px;
    }
    .why-choose--section h4 {
        font-size: 20px;
    }
    .our-impact--section .content .heading {
        font-size: 40px;
    }
    .our-impact--section .content p,
    .faq--section .text {
        font-size: 18px;
        line-height: 1.6;
    }
    .free-trial--section h3 span.sign,
    .free-trial--section h3 span.signPrice {
        font-size: 64px;
    }
    .esr-400-20-40 {
        font-size: 18px;
        line-height: 1.5;
    }
    .free-trial--section .content {
        padding: 32px 48px;
    }
    .free-trial--section .content .trial-btn {
        font-size: 18px;
    }
    .set-goal--section .set-goal-section-image {
        max-height: 600px;
        height: auto;
        width: 100%;

        object-fit: contain;
    }
}

@media (max-width: 1340px) {
    .teamry-canvas {
        min-height: 600px;
    }
    .teamry-canvas .without-teamry,
    .teamry-canvas .with-teamry {
        font-size: 14px;
        padding: 16px 30px;
        height: 65px;
    }
    .teamry-canvas .with-teamry img {
        width: 90px;

        height: 20px;
        object-fit: contain;
    }
    .free-trial--section .content {
        padding: 32px 32px;
    }
    .why-choose--section,
    .set-goal--section,
    .our-impact--section,
    .free-trial--section,
    .faq--section {
        padding: 40px 0px;
        padding-top: 40px !important;
        padding-bottom: 10px;
    }
    .free-trial--section h3 span.sign,
    .free-trial--section h3 span.signPrice {
        font-size: 50px;
    }
    .free-trial--section h3 {
        font-size: 30px;
    }
    .free-trial--section .content .trial-btn {
        font-size: 16px;
    }
    .esr-400-20-40 {
        font-size: 16px;
    }
    .our-impact--section .content p,
    .faq--section .text {
        font-size: 16px;
        line-height: 1.6;
    }
    .why-choose--section h4 {
        font-size: 18px;
    }
    .why-choose--section .card-wrapper .icon {
        height: 50px;
        width: 50px;
    }
    .why-choose--section p,
    .our-impact--section p {
        font-size: 16px;
        line-height: 1.5;
    }
    .set-goal--section .content-wrapper h3 {
        font-size: 18px;
    }
    .set-goal--section .content-wrapper p {
        font-size: 14px;
    }
    .set-goal--section .step-card {
        margin-bottom: 16px;
        padding: 12px;
    }
    .main-logo {
        width: 100px;
        height: auto;
    }
    .banner-section .content h1 {
        font-size: 48px;
    }
    .banner-section .content h1 br {
        display: none;
    }
    .banner-section .content p {
        font-size: 18px;
        line-height: 1.5;
    }
    .banner-section .content p br {
        display: none;
    }
    .mrkdsc-400-48-72,
    .why-choose--section h2 {
        font-size: 32px !important;
        line-height: 1.5;
    }
    .title p {
        font-size: 16px;
        line-height: 1.5;
    }
    .our-impact--section .content .heading {
        font-size: 36px;
    }
    .why-choose--section h4 br {
        display: none;
    }
    .set-goal--section .set-goal-section-image {
        max-height: 540px;
        height: auto;
        width: 100%;

        object-fit: contain;
    }
}
@media (max-width: 968px) {
    .teamry-canvas {
        min-height: 550px;
    }
    .teamry-canvas .without-teamry,
    .teamry-canvas .with-teamry {
        font-size: 14px;
        padding: 12px 30px;
        height: 60px;
        width: 190px;
    }
    .teamry-canvas .with-teamry img {
        width: 80px;

        height: 22px;
        object-fit: contain;
    }
    .free-trial--section .content {
        padding: 24px 24px;
    }
    .why-choose--section,
    .set-goal--section,
    .our-impact--section,
    .free-trial--section,
    .faq--section {
        padding: 30px 0px;
        padding-bottom: 10px;
        padding-top: 30px !important;
    }
    .esr-400-20-40 br {
        display: none;
    }

    .footer-top-icons {
        padding-left: 0px;
        flex-wrap: wrap;
    }
    .arrow-img {
        max-width: 300px;
    }
    .footer-logo {
        max-width: 100px;
        margin-bottom: 16px;
    }
    .footer-link {
        font-size: 14px;
    }
    .accordion__wrapper {
        padding: 0px 0px;
    }
    .esr-400-20-30 {
        font-size: 14px;
    }
    .footer {
        padding: 40px 0px;
    }
    .esr-400-20-40 {
        font-size: 14px;
    }
    .free-trial--section h3 span.sign,
    .free-trial--section h3 span.signPrice {
        font-size: 42px;
    }
    .free-trial--section h3 {
        font-size: 24px;
    }
    .free-trial--section .duration {
        font-size: 18px;
    }
    .free-trial--section .content .trial-btn,
    .cta--section .btn-cta {
        padding: 12px 40px;
        font-size: 14px;
    }
    .why-choose--section p,
    .our-impact--section p {
        font-size: 16px;
        line-height: 1.5;
    }
    .main-logo {
        width: 100px;
        height: auto;
    }
    .banner-section .content h1 {
        font-size: 36px;
    }
    .mrkdsc-400-48-72,
    .why-choose--section h2 {
        font-size: 28px !important;
        line-height: 1.5;
    }
    .banner-section .content p {
        font-size: 16px;
        line-height: 1.5;
    }
    .title p {
        font-size: 16px;
        line-height: 1.5;
    }
    .set-goal--section .content-wrapper h3 {
        font-size: 16px;
    }
    .why-choose--section h4 br {
        display: none;
    }
    .cta--section .content h2 br {
        display: none;
    }
}
@media (max-width: 769px) {
    .set-goal--section .content-wrapper h3 {
        font-size: 16px;
    }
    .col-md-6 {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }
    .col-xs-12.col-sm-6 {
        flex: 0 0 auto !important;
        max-width: 50% !important;
    } 
    .free-trial--section input[type="number"] {
        font-size: 13px;
        width: 60px;
        text-align: center;
        padding: 12px;
        height: 40px;
    }
    .slider-text {
        font-size: 14px;
        color: #333333;
        font-weight: 700;
    }
    .slider-text .thin {
        font-weight: 400;
    }
    .why-choose--section p,
    .our-impact--section p {
        font-size: 14px;
        line-height: 1.5;
    }
    .set-goal--section .content-wrapper p {
        font-size: 14px;
    }
    .set-goal--section .step-card {
        margin-bottom: 16px;
        padding: 12px;
    }
    .mrkdsc-400-48-72,
    .why-choose--section h2 {
        font-size: 20px !important;
        line-height: 1.5;
    }
    .main-logo {
        width: 80px;
        height: auto;
    }
    .banner-section .content h1 {
        font-size: 24px;
    }
    .title p {
        font-size: 14px;
        line-height: 1.5;
    }
    .btn-learnmore,
    .btn-watch-video {
        font-size: 14px;
    }
    .btn-learnmore {
        padding: 12px 20px;
    }
    .btn-getstarted {
        font-weight: 500;
    }

    .set-goal--section .step-card {
        gap: 12px;
    }
    .set-goal--section .step-card {
        min-height: 50px;
    }
    .why-choose--section h4 {
        font-size: 16px;
        text-align: center;
    }
    .why-choose--section h4 br {
        display: none;
    }
    .why-choose--section p.text {
        font-size: 14px;
        text-align: center;
    }
    .set-goal--section .set-goal-section-image {
        height: auto;
        width: 100%;

        object-fit: contain;
    }
    .our-impact--section .content .heading {
        font-size: 24px !important;
        min-width: 146px;
    }
    .our-impact--section .content .heading::before {
        height: 36px;
    }
    .our-impact--section .content p,
    .faq--section .text {
        font-size: 14px;
    }
    .faq--section .text br {
        display: none;
    }
    .custom-info-padding {
        padding: 12px;
        text-align: center;
    }
    .our-impact--section .content p {
        text-align: center;
    }
    .free-trial--section .slider-container {
        font-size: 13px;
    }
    .why-choose--section .card-wrapper .icon {
        margin: auto;
        margin-bottom: 20px;
    }
    .free-trial--section .duration {
        font-size: 16px;
    }
    .footer-top-icons {
        row-gap: 14px;
        column-gap: 24px;
    }
    #homechart {
        max-height: 360px;
        min-height: 340px;
    }
    .teamry-canvas {
        position: relative;
        height: 100%;
        min-height: 360px;
    }
    .teamry-canvas .without-teamry,
    .teamry-canvas .with-teamry {
        font-size: 13px;
        padding: 10px 20px;
        height: 60px;
        width: 170px;
    }
    .teamry-canvas .with-teamry {
        top: 10%;
    }
    .teamry-canvas .without-teamry {
        bottom: 18%;
    }
    .teamry-canvas .with-teamry img {
        width: 60px;
        height: 18px;
        object-fit: contain;
    }
}
.mobile-img {
    display: none;
}
.desktop-img {
    display: block;
}
@media (max-width: 560px) {
    .mobile-img {
        display: block;
    }
    .desktop-img {
        display: none;
    }
    .col-xs-12.col-sm-6 {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    } 
}
@media (max-width: 400px) {
    .teamry-canvas .without-teamry,
    .teamry-canvas .with-teamry {
        font-size: 10px;
        padding: 6px 20px;
        height: 45px;
        width: 130px;
    }
    .teamry-canvas .with-teamry {
        top: 10%;
    }
    .teamry-canvas .without-teamry {
        bottom: 18%;
    }
    .teamry-canvas .with-teamry img {
        width: 54px;
        height: 18px;
        object-fit: contain;
    }
    .free-trial--section .slider-container {
        font-size: 12px;
    }
    .arrow-img {
        max-width: 250px;
    }
    .footer-top-icons {
        row-gap: 14px;
        column-gap: 24px;
    }
    .free-trial--section input[type="number"] {
        font-size: 12px;
        width: 50px;
        padding: 12px;
        height: 40px;
    }
    .slider-text {
        font-size: 12px;
    }
}
@media (min-width: 768px) {
    .container,
    .container-md,
    .container-sm {
        max-width: 95% !important;
    }
}

@media (min-width: 576px) {
    .container,
    .container-sm {
        max-width: 95% !important;
    }
}
@media (min-width: 300px) {
    .container,
    .container-sm {
        max-width: 95% !important;
    }
}
@media (min-width: 1600px) {
    .container,
    .container-md,
    .container-sm {
        max-width: 1440px !important;
    }
}
#video-modal .modal-content {
    position: relative;
}
#video-modal .modal-content .close-icon {
    position: absolute;
    z-index: 999;
    border: 1px solid #00bfa5;
    height: 32px;
    width: 32px;
    display: flex;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    top: 10px;
    right: 10px;
    cursor: pointer;
    background-color: white;
}
#video-modal .modal-content .close-icon svg path{
    fill: #003f7d;
}
#video-modal .modal-content video {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Contact form-styling  */
.contact-us-form {
    max-width: 628px;
    width: 100%;
    margin: 48px auto;
    box-shadow: 0px 2px 40px 0px #0ab4a11f;
    border-radius: 16px;
}
.contact-us-form .top-section {
    padding: 24px 24px 18px 24px;
}
.contact-us-form .top-section .title {
    font-size: 24px;
    line-height: 2;
    color: #0b393e;
    font-weight: 500;
    font-family: var(--default-font);
    margin-bottom: 8px;
}
.contact-us-form .top-section .text {
    font-size: 14px;
    line-height: 1.8;
    color: #6c6c6c;
    font-weight: 500;
    font-family: var(--default-font);
    margin-bottom: 24px;
}
.contact-us-form .top-section .form-group {
    margin-bottom: 31px;
}
.contact-us-form .top-section .form-group label {
    display: block;
    color: #a7a7a7;
    font-weight: 500;
    font-family: var(--default-font);
    font-size: 12px;
    text-transform: uppercase;
    margin-bottom: 19px;
}
::placeholder {
    color: #A4A4A4 !important;
}
.contact-us-form .top-section .form-group .input {
    height: 48px;
    box-shadow: none;
    border: 2px solid #ecf2f6;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    color: #444;
    font-weight: 500;
    font-family: var(--default-font);
    display: block;
    width: 100%;
}
.contact-us-form .top-section .form-group .input:focus,
.contact-us-form .top-section .form-group textarea:focus {
    outline: none;
    box-shadow: none;
}
.contact-us-form .top-section .form-group textarea {
    height: 190px;
    box-shadow: none;
    border: 2px solid #ecf2f6;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    color: #444;
    font-weight: 500;
    font-family: var(--default-font);
    display: block;
    width: 100%;
}
.contact-us-form .bottom-section {
    border-top: 1px solid #e8e8e8;
    padding: 16px 24px;
}
.contact-us-form .bottom-section .buttons {
    display: flex;
    gap: 24px;
    align-items: center;
    justify-content: space-between;
}
.contact-us-form .bottom-section .buttons .button-light {
    padding: 16px;
    text-align: center;
    border-radius: 12px;
    border: 2px solid #0ab4a1;
    box-shadow: 0px 8px 22px 0px #00000014;
    color: #0ab4a1;
    font-size: 16px;
    font-weight: 500;
    font-family: var(--default-font);
    background-color: transparent;
    flex: 0 0 48%;
}
.contact-us-form .bottom-section .buttons .button-fill {
    padding: 16px;
    background-color: #0ab4a1;
    text-align: center;
    border-radius: 12px;
    border: 2px solid #0ab4a1;
    box-shadow: 0px 8px 22px 0px #00000014;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    font-family: var(--default-font);
    flex: 0 0 48%;
}
.contact-us-form .bottom-section .buttons .button-fill:hover {
    background-color: #07a392;
    box-shadow: 0px 4px 4px 0px #00000014;
}
.contact-us-form .bottom-section .buttons .button-fill.focus {
    background-color: #068879;
}
.contact-us-form .bottom-section .buttons .button-light:hover {
    background-color: #e7f8f6;
}
.contact-us-form .bottom-section .buttons .button-light:focus {
    background-color: #068879;
    border: 1px solid #0ab4a1;
    color: white;
}
@media (max-width: 1600px) {
    .contact-us-form .top-section .form-group label {
        margin-bottom: 12px;
    }
}
@media (max-width: 769px) {
    .contact-us-form .bottom-section .buttons .button-light,
    .contact-us-form .bottom-section .buttons .button-fill {
        padding: 10px 16px;
        font-size: 14px;
    }
    .faded-hr {
        margin-bottom: 32px;
        margin-top: 32px;
    }
    .contact-us-form {
        width: 95%;
    }
}

.select2-container--default .select2-selection--single {
    height: 48px;
    display: block;
    color: #6c6c6c;
    font-size: 14px;
    font-weight: 500;
    line-height: 28px;
    text-align: left;
    padding: 8px 16px;
    border: 2px solid #ecf2f6;
    border-radius: 6px;
    width: 100%;
}

.select2-container--default.select2-container--disabled .select2-selection--single{
    background-color: #ECF2F6;
}
.select2-container--default.select2-container--disabled .select2-selection__rendered{
    color: #A7A7A7!important;
}

.select2-container--default.select2-container--disabled .select2-selection__arrow {
    display: none;
}

.select2-container--default
    .select2-selection--single
    .select2-selection__arrow
    b {
    border-color: transparent transparent transparent transparent !important;
}

.select2-container--default.select2-container--open
    .select2-selection--single
    .select2-selection__arrow
    b {
    border-color: transparent transparent transparent transparent !important;
}

.month-select
    .select2-container--default
    .select2-selection--single
    .select2-selection__arrow {
    top: 0px;
    width: 47px;
    right: 0px;
    height: 47px;
    border-radius: 6px;
    background-color: #ecf2f6;
    background-image: url(../../../admin-assets/images/downactive.svg);
    background-repeat: no-repeat;
    background-position: center;
}

.select2-container--default.select2-container--open
    .select2-selection--single
    .select2-selection__arrow {
    background-image: url(../../../admin-assets/images/arrowup.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-color: transparent;
}

.select2-container--default .select2-results__option {
    padding: 16px;
    font-size: 14px !important;
    background-color: transparent !important;
    color: #6c6c6c;
   
    border-bottom: 1px solid #ECF2F6 !important;
}

.select2-container--default
    .select2-selection--single
    .select2-selection__rendered {
    padding: 0px !important;
}

.select2-container--default
    .select2-results__option--highlighted[aria-selected] {
    background: #03af9f1a !important;
    color: #6c6c6c;
}

.select2-container--open .select2-dropdown--below {
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    border:2px solid #ECF2F6;
    border-top: 0px !important;
}

.loader-main-wrapper {
    display: flex;
    position: fixed;
    left: 0px;
    top: 0px;
    justify-content: center;
    align-items: center;
    height: 100vh;
    flex-direction: column;
    gap: 20px;
    width: 100vw;
    background-color: rgba(255, 255, 255, 0.65);
    overflow: hidden;
    z-index: 999999999;
}

.loader-main-wrapper img {
    width: 150px;
    height: 150px;
    object-fit: contain;
}

.small-modal-wrapper .modal-content {
    padding: 32px 32px;
    max-width: 628px !important;
    width: 100%;
    border-radius: 16px;
    margin: auto;
}
.small-modal-wrapper .modal-content.px-0 {
    padding: 0px;
}
.p-32 {
    padding: 32px 38px;
}

.small-modal-wrapper .modal-content .modal-body {
    padding: 0px;
}

.small-modal-wrapper .modal-content .image-small {
    display: flex;
    justify-content: center;
}

.small-modal-wrapper .modal-content .image-small img {
    width: 85px;
    height: auto;
    margin-bottom: 22px;
}

.small-modal-wrapper .modal-content .image-small.w100 img {
    width: 100px;
}

.welcome-modal .small-modal-wrapper .modal-content .image-small.w100 img {
    width: fit-content!important;
}

.small-modal-wrapper .modal-content .title {
    font-size: 24px;
    color: #0b393e;
    line-height: 2;
    font-weight: 600;
    margin-bottom: 22px;
    text-align: center;
}
.small-modal-wrapper .modal-content .title-thin {
    font-size: 28px;
    color: #0b393e;
    line-height: 1.5;
    font-family: var(--default-font);
    font-weight: 500;
    margin-bottom: 22px;
    text-align: center;
}
.small-modal-wrapper .modal-content .text {
    font-size: 14px;
    color: #0b393e;
    line-height: 21px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 22px;
}
.small-modal-wrapper .modal-content .text-med {
    font-size: 16px;
    color: #0b393e;
    line-height: 1.6;
    font-family: var(--default-font);
    font-weight: 500;
    text-align: center;
    margin-bottom: 22px;
}
.small-modal-wrapper .modal-content .text-med span ,.small-modal-wrapper .modal-content .text-med strong{
    font-family: var(--default-font);
    font-weight: 700;
    color: #333333;
}

.small-modal-wrapper .modal-content .text a {
    color: var(#0ab4a1);
    text-decoration: underline;
    font-weight: 500;
}

.small-modal-wrapper .modal-content .button {
    padding: 16px;
    color: white;
    text-align: center;
    background-color: var(#0ab4a1);
    border: 1px solid var(#0ab4a1);
    border-radius: 12px;
    font-size: 16px;
    font-family: var(--default-font);
    font-weight: 500;
}
.small-modal-wrapper .modal-content .button:hover {
    background-color: #07A392;
}
.small-modal-wrapper .modal-content .button:focus {
    background-color: #068879;
}

.banner-image {
    width: 100%;
    height: auto;
}
.set-goal--section .content-wrapper .step-card p.outer-p {
    display: none;
}
.step-image-banner{
    
    background-image: url(../../images/web/shape.webp);
    width: 100%;
    height: 100%;
   padding: 24px;
   display: none;
   justify-content: center;
   align-items: center;
    background-size: contain;
    background-repeat: no-repeat;
    position: relative;
   
}
.step-image-banner::before {
    content: "";
    position: absolute;
    background-image: url(../../images/web/stp-mbl.svg);
    width: 100%;
    height: 100%;
    top: 0;
    /* left: 77px; */
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 0;
    background-position: 96% 100%;
}
.step-image-banner img {
    width: 100%;
    height: auto;
    max-height: 306px;
    object-fit: contain;
    z-index: 2;
    position: relative;
}
.mobile-footer-text {
    display: none;
}
.desktop-footer-text {
    display: block;
}
.mobile-buttons {
    display: none !important;
}
.desktop-buttons {
    display:flex !important;
}
.mobile-buttons .start-free-trial {
    text-decoration: none !important;
    color: #fff;
    background: #083456;
    font-size: 15px;
    
    font-weight: 600;
    padding: 8px 30px;
    margin: 0;
    display: flex
;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 12px;
    transition: 0.13s;
    text-decoration: none;
    
    cursor: pointer;
    margin-top: 10px;

}
.arrow-img {
    margin-bottom: -32px;
    z-index: 2;
    position: relative;
}
@media(max-width:1650px) {
    .banner-section .content h1 {
        font-size: 52px;
    }
    .banner-section .content p {
        font-size: 18px;
        line-height: 1.5;
        max-width: 730px;
        margin: auto;
        margin-bottom: 24px;
    }
    .btn-learnmore,.btn-watch-video {
        font-size: 14px;
    }
    .navmenu a, .navmenu a:focus,.header .sign-in,.btn-getstarted {
        font-size: 14px;
    }
    .mrkdsc-400-48-72, .why-choose--section h2 {
        font-size: 36px !important;
        line-height: 1.5;
    }
    .title p {
        font-size: 16px;
    }
    .set-goal--section .content-wrapper h3 {
        font-size: 24px;
    }
    .set-goal--section .content-wrapper .step-card p {
        font-size: 18px;
        line-height: 2;
    }
    .why-choose--section, .set-goal--section, .our-impact--section, .free-trial--section, .faq--section {
        padding: 56px 0px;
        padding-top: 56px !important;
        padding-bottom: 10px;
    }
    .why-choose--section p, .our-impact--section p {
        font-size: 18px;
        line-height: 2;
        max-width: 730px;
        margin: auto;
        margin-bottom: 24px;
    }
    .why-choose--section .card-wrapper .icon {
        width: 60px;
        height: 60px;

    }
    .why-choose--section .card-wrapper .icon img {
        width: 30px;
    }
    .why-choose--section p.text {
        font-size: 17px;
        line-height: 2;
    }
    .why-choose--section h4 br {
        display: inline-block;
    }
    .our-impact--section .content p, .faq--section .text  {
        font-size: 18px;
        line-height: 2;
    }
    .free-trial--section .duration {
        font-size: 30px;
    }
    .free-trial--section .content {
        max-width: 880px;
    }
    .mobile-tags .d-flex.align-items-center.gap-3.justify-content-start {
        margin-bottom: 20px;
    }
    .free-trial--section .slider-container {
        margin-bottom: 8px;
    }
    .users-flex {
        margin-bottom: 36px;
    }
    .free-trial--section .content .trial-btn {
        font-size: 15px;
        padding: 14px;
    }
    .accordion {
        border: 1.5px solid rgba(239, 239, 239, 1);
        box-shadow: 0px 2px 40px 0px rgba(10, 180, 161, 0.12);
    }
    .faq--section .accordion__question {
        font-size: 18px;
    }
    .faq--section .accordion__answer {
        font-size: 18px;
        line-height: 2;
        font-size: 400;
    }
    .cta--section-bg .esr-400-20-40 {
        font-size: 18px;
        line-height: 2;
        margin-bottom: 22px;
    }
    .arrow-img {
        margin-bottom: -32px;
        z-index: 2;
    }
    .footer-top-icons .esm-500-20-25,.privacy-terms .esr-400-20-30, .privacy-terms a ,.desktop-footer-text{
        font-size: 16px;
    }
    .footer-logo {
        max-width: 190px;
    }
 } 
 @media(max-width:1440px) {
    .banner-section .content h1 {
        font-size: 48px;
    }
    .banner-section .content p {
        font-size: 18px;
        line-height: 1.5;
        max-width: 730px;
        margin: auto;
        margin-bottom: 24px;
    }
    .btn-learnmore,.btn-watch-video {
        font-size: 14px;
    }
    .navmenu a, .navmenu a:focus,.header .sign-in,.btn-getstarted {
        font-size: 14px;
    }
    .mrkdsc-400-48-72, .why-choose--section h2 {
        font-size: 36px !important;
        line-height: 1.5;
    }
    .title p {
        font-size: 16px;
    }
    .set-goal--section .content-wrapper h3 {
        font-size: 24px;
    }
    .set-goal--section .content-wrapper .step-card p {
        font-size: 18px;
        line-height: 2;
    }
    .why-choose--section, .set-goal--section, .our-impact--section, .free-trial--section, .faq--section {
        padding: 56px 0px;
        padding-top: 56px !important;
        padding-bottom: 10px;
    }
    .why-choose--section p, .our-impact--section p {
        font-size: 18px;
        line-height: 2;
        max-width: 730px;
        margin: auto;
        margin-bottom: 24px;
    }
    .why-choose--section .card-wrapper .icon {
        width: 60px;
        height: 60px;

    }
    .why-choose--section .card-wrapper .icon img {
        width: 30px;
    }
    .why-choose--section p.text {
        font-size: 17px;
        line-height: 2;
    }
    .why-choose--section h4 br {
        display: inline-block;
    }
    .our-impact--section .content p, .faq--section .text  {
        font-size: 18px;
        line-height: 2;
    }
    .free-trial--section .duration {
        font-size: 28px;
    }
    .free-trial--section .content {
        max-width: 688px;
    }
    .mobile-tags .d-flex.align-items-center.gap-3.justify-content-start {
        margin-bottom: 20px;
    }
    .free-trial--section .slider-container {
        margin-bottom: 8px;
    }
    .users-flex {
        margin-bottom: 36px;
    }
    .free-trial--section .content .trial-btn {
        font-size: 15px;
        padding: 14px;
    }
    .accordion {
        border: 1.5px solid rgba(239, 239, 239, 1);
        box-shadow: 0px 2px 40px 0px rgba(10, 180, 161, 0.12);
    }
    .faq--section .accordion__question {
        font-size: 18px;
    }
    .faq--section .accordion__answer {
        font-size: 18px;
        line-height: 2;
        font-size: 400;
    }
    .cta--section-bg .esr-400-20-40 {
        font-size: 18px;
        line-height: 2;
        margin-bottom: 22px;
    }
    .arrow-img {
        margin-bottom: -32px;
        z-index: 2;
    }
    .footer-top-icons .esm-500-20-25,.privacy-terms .esr-400-20-30, .privacy-terms a ,.desktop-footer-text{
        font-size: 15px;
    }
    .footer-logo {
        max-width: 170px;
    }
 } 
@media(min-width:1199px) {
    .container, .container-sm {
        max-width: 1080px !important;
    }
}
@media(min-width:1460px) {
    .container, .container-sm {
        max-width: 1440px !important;
    }
}
@media(max-width:1199px) {
    .custom-banner-wrapper .container {
        padding: 0px !important;
        max-width: 100% !important;
       }
       .custom-banner-wrapper .container .row ,.custom-banner-wrapper .container .row .col-12{
        margin: 0px !important;
        padding: 0px !important;
       }
       .header .main-logo {
        width: 142px;
       }
       .banner-section .content h1 {
        font-size: 52px;
        line-height: 1.5;
        margin-bottom: 8px;
       }
       .banner-section {
        padding-bottom: 0px;
       }
       .mrkdsc-400-48-72, .why-choose--section h2 {
        font-size: 36px !important;
        line-height: 1.5;
        margin-bottom: 8px;
       }
       .title p {
        font-size: 18px;
        line-height: 1.5;
    }
    .set-goal--section .content-wrapper h3 {
        font-size: 22px;
    }
    .set-goal--section .content-wrapper p {
        line-height: 2;
    }
    .why-choose--section, .set-goal--section, .our-impact--section, .free-trial--section, .faq--section {
        padding: 56px 0px;
        padding-top: 56px !important;
        padding-bottom: 10px;
    }
    .why-choose--section p, .our-impact--section p {
        font-size: 18px;
        line-height: 2;
    }
    .why-choose--section .card-wrapper .icon {
        width: 60px;
        height: 60px;
    }
    .why-choose--section .card-wrapper .icon img {
        width: 30px;
    }
    .why-choose--section h4 {
        font-size: 22px;
        margin-bottom: 8px;
    }
    .why-choose--section p.text {
        line-height: 2;
    }
    .our-impact--section .content .heading {
        font-size: 30px;
        line-height: 1.5;
    } 
    .our-impact--section .content p, .faq--section .text {
        font-size: 18px;
        line-height: 2;
    }  
    .free-trial--section .duration {
        font-size: 18px;
    }
    .free-trial--section .content {
        max-width: 880px;
    }
    .mobile-tags {
        flex: 0 0 40%;
    }
    .users-flex {
        margin-bottom: 56px;
    }
    .free-trial--section .slider-container {
        margin-bottom: 20px;
    }
    .mobile-tags .d-flex.align-items-center.gap-3.justify-content-start {
        margin-bottom: 24px;
    }
    .faq--section .col-12.col-lg-5.content.d-flex.justify-content-start.align-items-start.flex-column,
    .faq--section .col-12.col-lg-7.text-center {
        max-width: 100%;
        flex: 0 0 100%;
    }
    .faq--section .col-12.col-lg-5.content.d-flex.justify-content-start.align-items-start.flex-column {
        align-items: center !important;
        max-width: 657px;
        margin: auto;
    }
    .faq--section .text br {
        display: none;
    }
    .faq--section .text {
        text-align: center;
        margin-bottom: 32px;
    }
    .faq--section .accordion__answer {
        font-size: 18px;
        line-height: 2;
    }
    .faq--section .mrkdsc-400-48-72 {
        text-align: center;
    }
    .accordion {
        border: 2px solid rgba(239, 239, 239, 1);
        box-shadow: 0px 2px 40px 0px rgba(10, 180, 161, 0.12);
    }
    .cta--section-bg .esr-400-20-40 {
        font-size: 18px;
        line-height: 2;
        margin-bottom: 32px;
    }
    .arrow-img {
        
        margin-bottom: -36px;
        z-index: 2;
    }
    .footer-logo {
        max-width: 171px;
    }
    .desktop-footer-text {
        font-size: 16px;
        line-height: 1.6;
    }
    .footer-top-icons .esm-500-20-25 {
        font-size: 16px;
    }
 .privacy-terms .esr-400-20-30,.privacy-terms a {
        font-size: 16px;
    }
}
@media(max-width:1100px){
    .mobile-tags  {
        margin-left: 10px;
        margin-right: 10px;
        width: 200px;
        flex: 0 0 auto !important;
    }
    .d-flex.flex-wrap.align-items-center.gap-3.gap-md-5.gap-xl-5.justify-content-start.mb-4.mt-4 {
        justify-content: center !important;
    }
    .free-trial--section .mobile-center {
        text-align: center !important;
    }
}
@media(max-width:992px) {
    .col-12.col-lg-8.content.d-flex.justify-content-center.align-items-start.flex-column {
        align-items: center !important;
    }
    .cta--section .btn-cta  {
        margin-bottom: 32px;
    }
    .users-flex {
        margin-bottom: 32px;
    }
    .faq--section .accordion__question {
        font-size: 18px;
    }
    .faq--section .accordion__answer {
        font-size: 16px;
        line-height: 2;
    }
    .cta--section-bg .esr-400-20-40 {
        font-size: 16px;
        line-height: 2;
        text-align: center;
    }
    .header .main-logo {
        width: 130px;
       }
       .banner-section .content h1 {
        font-size: 42px;
        line-height: 1.5;
        margin-bottom: 8px;
       }
       .banner-section {
        padding-bottom: 0px;
       }
       .mrkdsc-400-48-72, .why-choose--section h2 {
        font-size: 32px !important;
        line-height: 1.5;
        margin-bottom: 8px;
        text-align: center;
       }
       .title p {
        font-size: 16px;
        line-height: 1.5;
    }
    .set-goal--section .content-wrapper h3 {
        font-size: 18px;
    }
    .set-goal--section .content-wrapper p {
        line-height: 2;
    }
    .why-choose--section, .set-goal--section, .our-impact--section, .free-trial--section, .faq--section {
        padding: 36px 0px;
        padding-top: 36px !important;
        padding-bottom: 10px;
    }
    .why-choose--section p, .our-impact--section p {
        font-size: 16px;
        line-height: 2;
    }
    .why-choose--section .card-wrapper .icon {
        width: 50px;
        height: 50px;
    }
    .why-choose--section .card-wrapper .icon img {
        width: 24px;
    }
    .why-choose--section h4 {
        font-size: 18px;
        margin-bottom: 8px;
    }
    .why-choose--section p.text {
        line-height: 2;
    }
    .our-impact--section .content .heading {
        font-size: 32px;
        line-height: 1.5;
    } 
    .our-impact--section .content p, .faq--section .text {
        font-size: 16px;
        line-height: 2;
    }  
    .free-trial--section .duration {
        font-size: 13px;
    }
    .free-trial--section .content {
        max-width: 800px;
    }
    .mobile-tags {
        flex: 0 0 40%;
    }
}
.mobile-tags .img-fluid {
    width: 100%;
    height: auto;
    max-width: 24px;
}
@media(max-width:769px) {
    .mobile-buttons {
        display: flex !important;
        flex-direction: column;
    }
    .mobile-buttons li {
        list-style: none;
    }
   
    .main-logo {
        width: 124px;
    }
    .mobile-buttons .header .sign-in {
        color: #7f7f90;
    }
    .desktop-buttons {
        display: none !important;
    }
    .mobile-footer-text {
        display: block;
        text-align: center;
    }
    .desktop-footer-text {
        display: none;
    }
    .step-image-banner {
        display: none;
    }
    .set-goal--section .step-card .inner {
        align-items: center;
        gap: 16px;
    }
    .set-goal--section .content-wrapper .step-card.custom-card .step-image-banner {
        display: flex;
    }
    .set-goal--section .custom-card::before {
        content: none;
    }
    .set-goal--section .step-card {
        background-color: white;
        box-shadow: 0px 2px 40px 0px rgba(10, 180, 161, 0.12);
        border-radius: 16px;
    }
   
    .container, .container-sm {
        max-width: 100% !important;
        padding: 0px 24px !important;
    }
  
    .header {
        background-color: rgba(11, 181, 162, 1);
    }
    .banner-section {
        padding-top: 47px;
    }
    .banner-section .content h1 {
        font-size: 28px;
        margin-bottom: 24px;
    }
    .mrkdsc-400-48-72, .why-choose--section h2 {
        font-size: 30px !important;
        line-height: 1.3;
    }
    .banner-section .content p {
        font-size: 14px;
        line-height: 2;
        margin-bottom: 42px;
    }
    .title p {
        font-size: 14px;
        line-height: 2;
        margin-bottom: 24px;
    }
    .why-choose--section p,.our-impact--section p ,.faq--section .text {
        font-size: 14px;
        line-height: 2;
        margin-bottom: 16px;
    }
    .faq--section .text,.col-12.col-lg-8.content.d-flex.justify-content-center.align-items-start.flex-column .esr-400-20-40  {
        text-align: center;
    }
    .col-12.text-center.title.content-1100.mb-60 {
        margin-bottom: 0px !important;
    }
    .set-goal--section .content-wrapper .step-card p {
        display: none;
    }
  
    .btn-learnmore svg {
        display: none;
    }
    .set-goal--section .content-wrapper .step-card.custom-card p {
        display: none;
    }
    .custom-info-padding {
        text-align: center;
    }
    .why-choose--section .card-wrapper .icon {
        background-color: rgba(10, 180, 161, 0.1);
        box-shadow: 0px 2px 40px 0px rgba(10, 180, 161, 0.12);
    }
    .our-impact--section .content .heading {
        font-size: 32px !important;
        text-align: center;
        min-width: 172px;

    }
    .our-impact--section .content p {
        text-align: left;
        line-height: 2;
        text-align: center;
    }
    .set-goal--section .content-wrapper .step-card p.outer-p {
        display: block;
        font-size: 14px;
        color: rgba(51, 51, 51, 1);
        line-height: 2;
        margin: 8px 0px;
    } 
    .set-goal--section {
        background-image: none;
    }
    .set-goal--section .before-shape {
        display: none;
    }
    .set-goal--section .content-wrapper h3 {
        font-size: 17px;
    }
    .set-goal--section::before {
        content: none;
    }
    .why-choose--section .card-wrapper .icon {
        width: 56px;
        height: 56px;
        margin-left: 0px;
        margin-bottom: 16px;
    }
    .why-choose--section .card-wrapper:hover {
        background-color: transparent;
        box-shadow: none;
    }
    .why-choose--section h4 {
        font-size: 20px;
        margin-bottom: 8px;
        line-height: 1.5;
        color: rgba(51, 51, 51, 1);
        text-align: left;
    }
    .why-choose--section .card-wrapper {
        padding-bottom: 0px;
    }
    .why-choose--section p.text {
        font-size: 14px;
        margin-bottom: 8px;
        font-weight: 500;
        line-height: 2;
        color: rgba(51, 51, 51, 1);
        text-align: left;
    }
    .col-12.col-md-9.col-lg-9.content.mt-5 {
        margin-top: 32px !important;
    }
    .mobile-tags  {
        margin-left: auto;
        margin-right: auto;
        width: 164px;
        flex: 0 0 auto;
    }
    .d-flex.flex-wrap.align-items-center.gap-3.gap-md-5.justify-content-start.mb-4.mt-4 {
        /* column-gap: 0px !important; */
        row-gap: 0px !important;
    }
    .mobile-center {
        text-align: center !important;
        color:rgba(51, 51, 51, 1);
    }
    .free-trial--section .slider-container {
        justify-content: center;
        margin-bottom: 16px;
    }
    .accordion__question {
        line-height: 2;
    }
    .accordion {
        border: 2px solid rgba(239, 239, 239, 1);
        box-shadow: 0px 2px 40px 0px rgba(10, 180, 161, 0.12);

    }
    .accordion__answer {
        line-height: 2;
    }
    .col-12.col-lg-8.content.d-flex.justify-content-center.align-items-start.flex-column .esr-400-20-40 {
        line-height: 2;
    }
    .cta--section .btn-cta {
        margin: auto;
        margin-bottom: 32px;
    }
    .arrow-img {
        max-width: 330px;
        margin-bottom: -30px;
        z-index: 2;
    }
    .footer-logo {
        max-width: 217px;
    }
    .footer-top-icons {
        display: flex;
        flex-direction: column;
    }
    .footer-top-icons .footer-link {
        padding: 16px;
        width: 100%;
        font-size: 16px;
        list-style: none;
        position: relative; 
      text-align: center;


    }
    .footer-top-icons .footer-link:after {
        content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px; /* Thickness of the border */
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, 
                                   rgba(255, 255, 255, 0.2) 50%, 
                                   rgba(255, 255, 255, 0) 100%);
    }
    .d-flex.flex-column.flex-lg-row.align-items-center.justify-content-between.privacy-terms.mt-4 .esr-400-20-30 {
        color: white;
        margin-bottom: 16px;
    }
    .d-flex.flex-column.flex-lg-row.align-items-center.justify-content-between.privacy-terms.mt-4 a.esr-400-20-30 {
        color: rgba(255, 255, 255, 0.8);
    }
    .mobile-full {
        width: 100%;
    }
    .d-flex.flex-column.flex-lg-row.align-items-center.justify-content-between.mt-4 .esr-400-20-40 {
        text-align: center;
    }
   .custom-banner-wrapper .container {
    padding: 0px !important;
   }
   .custom-banner-wrapper .container .row ,.custom-banner-wrapper .container .row .col-12{
    margin: 0px !important;
    padding: 0px !important;
   }
    
}