
* {
 box-sizing:border-box
}

html {
 scroll-behavior:smooth
}

body {
 margin:0;
 background:var(--theme-background);
 color:var(--theme-text);
 font-family:var(--font-body)
}

img {
 max-width:100%;
 display:block
}

a {
 text-decoration:none
}


.slider_section2 {
    display: none;
}

h1,h2,h3,h4,h5,h6{
    font-family: var(--font-heading);
}

/* about section start */

.about-section {
    position: relative;
    padding: 105px 0 100px;
    background: var(--theme-background);
    overflow: hidden;
    isolation: isolate;
}

/* about section end */


/* about background shapes start */

.about-bg-shape {
    position: absolute;
    pointer-events: none;
    z-index: -1;
    border-radius: 50%;
}

.about-bg-shape-one {
    width: 520px;
    height: 520px;
    top: -280px;
    right: -190px;
    border: 1px solid var(--theme-border);
}

.about-bg-shape-one::after {
    content: "";
    position: absolute;
    inset: 55px;
    border: 1px solid var(--theme-border-light);
    border-radius: 50%;
}

.about-bg-shape-two {
    width: 420px;
    height: 420px;
    bottom: -270px;
    left: -220px;
    border: 1px solid var(--theme-border-light);
}

/* about background shapes end */


/* about main row start */

.about-main-row {
    position: relative;
}

/* about main row end */


/* about visual start */

.about-visual {
    position: relative;
    min-height: 610px;
    padding: 0 55px 50px 25px;
}

/* about visual end */


/* about image shadow start */

.about-visual > div:first-child {
    position: absolute;
    left: 45px;
    top: 35px;
    width: calc(100% - 80px);
    height: 540px;
    background: var(--theme-blue-glow);
    filter: blur(55px);
    opacity: .30;
    z-index: 0;
}

/* about image shadow end */


/* about image wrap start */

.about-image-wrap {
    position: relative;
    height: 550px;
    overflow: hidden;
    border-radius: 5px 85px 5px 85px;
    background: var(--theme-background-soft);
    box-shadow:
        0 30px 70px var(--theme-shadow),
        0 5px 20px rgba(0, 168, 204, .08);
    z-index: 2;
}

.about-image-wrap > img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .9s cubic-bezier(.2, .7, .2, 1);
}

.about-visual:hover > .about-image-wrap > img {
    transform: scale(1.045);
}

/* about image wrap end */


/* about image overlay start */

.about-image-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            rgba(14, 11, 67, .02) 25%,
            rgba(14, 11, 67, .12) 60%,
            rgba(14, 11, 67, .52) 100%
        );
    pointer-events: none;
}

/* about image overlay end */


/* about image label start */

.about-image-wrap > div {
    position: absolute;
    left: 28px;
    bottom: 27px;
    z-index: 4;
    padding-left: 14px;
    border-left: 2px solid var(--theme-blue);
}

.about-image-wrap > div > span {
    display: block;
    margin-bottom: 5px;
    color: rgba(255, 255, 255, .72);
    font-family: var(--font-body);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 2px;
}

.about-image-wrap > div > strong {
    display: block;
    color: var(--theme-white);
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    letter-spacing: .3px;
}

/* about image label end */


/* about image border start */

.about-image-wrap::before {
    content: "";
    position: absolute;
    inset: 13px;
    border: 1px solid rgba(255, 255, 255, .38);
    border-radius: 2px 72px 2px 72px;
    z-index: 3;
    pointer-events: none;
}

/* about image border end */


/* about year card start */

.about-year-card {
    position: absolute;
    top: -24px;
    left: 0;
    width: 118px;
    height: 118px;
    padding: 18px;
    z-index: 8;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--theme-primary);
    border: 6px solid var(--theme-background);
    border-radius: 50%;
    box-shadow: 0 18px 40px var(--theme-shadow);
}

.about-year-card > span {
    color: var(--theme-blue-light);
    font-family: var(--font-body);
    font-size: 7px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.about-year-card > strong {
    margin: 2px 0;
    color: var(--theme-white);
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 600;
    line-height: 1;
}

.about-year-card > i {
    width: 25px;
    height: 1px;
    margin: 4px 0;
    background: var(--theme-blue);
}

.about-year-card > small {
    color: var(--theme-white-text-muted);
    font-family: var(--font-body);
    font-size: 6px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: .8px;
}

/* about year card end */


/* about floating card start */

.about-floating-card {
    position: absolute;
    left: 0;
    right: 15px;
    bottom: 8px;
    z-index: 9;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 15px 17px;
    background: rgba(255, 255, 255, .96);
    border: 1px solid var(--theme-border);
    border-radius: 4px 22px 4px 4px;
    box-shadow:
        0 20px 50px rgba(23, 20, 91, .13),
        0 4px 15px rgba(0, 168, 204, .05);
    backdrop-filter: blur(15px);
}

.about-floating-card > span {
    width: 45px;
    height: 45px;
    flex: 0 0 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--theme-white);
    background: linear-gradient(
        135deg,
        var(--theme-blue),
        var(--theme-blue-dark)
    );
    border-radius: 12px;
    font-size: 16px;
    box-shadow: 0 10px 25px var(--theme-blue-glow);
}

.about-floating-card > div {
    flex: 1;
}

.about-floating-card > div > span {
    display: block;
    margin-bottom: 3px;
    color: var(--theme-text-muted);
    font-family: var(--font-body);
    font-size: 7px;
    font-weight: 700;
    letter-spacing: 1.4px;
}

.about-floating-card > div > strong {
    display: block;
    color: var(--theme-primary);
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
}

.about-floating-card > i {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--theme-primary);
    background: var(--theme-background-soft);
    border: 1px solid var(--theme-border);
    border-radius: 50%;
    font-size: 12px;
    transition: all .3s ease;
}

.about-visual:hover > .about-floating-card > i {
    color: var(--theme-white);
    background: var(--theme-blue);
    border-color: var(--theme-blue);
    transform: translate(3px, -3px);
}

/* about floating card end */


/* about image number start */

.about-image-number {
    position: absolute;
    right: 4px;
    top: 155px;
    color: transparent;
    font-family: var(--font-heading);
    font-size: 82px;
    font-weight: 600;
    line-height: 1;
    -webkit-text-stroke: 1px var(--theme-border);
    z-index: 1;
}

/* about image number end */


/* about content start */

.about-content {
    position: relative;
    z-index: 3;
    padding: 5px 5px 0 25px;
}

/* about content end */


/* about content label start */

.about-content > div:first-child {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 17px;
}

.about-content > div:first-child > span {
    color: var(--theme-blue);
    font-family: var(--font-body);
    font-size: 9px;
    font-weight: 800;
}

.about-content > div:first-child > i {
    width: 28px;
    height: 1px;
    display: block;
    background: var(--theme-border-dashed);
}

.about-content > div:first-child > strong {
    color: var(--theme-primary);
    font-family: var(--font-body);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2.2px;
}

/* about content label end */


/* about heading start */

.about-content > h2 {
    max-width: 650px;
    margin: 0 0 22px;
    color: var(--theme-text-dark);
    font-family: var(--font-heading);
    font-size: 38px;
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -1px;
}

.about-content > h2 > span {
    display: block;
    color: var(--theme-blue);
}

/* about heading end */


/* about paragraph start */

.about-content > p {
    max-width: 640px;
    margin: 0 0 12px;
    color: var(--theme-text-muted);
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 400;
    line-height: 1.85;
}

.about-content > p:first-of-type {
    max-width: 610px;
    margin-bottom: 19px;
    color: var(--theme-text);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.8;
}

.about-content > p > strong {
    color: var(--theme-text);
    font-weight: 700;
}

/* about paragraph end */


/* about features start */

.about-features {
    display: flex;
    align-items: stretch;
    margin-top: 27px;
    padding: 18px 0;
    border-top: 1px solid var(--theme-border);
    border-bottom: 1px solid var(--theme-border);
}

.about-features > div {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 15px;
    border-right: 1px solid var(--theme-border);
}

.about-features > div:first-child {
    padding-left: 0;
}

.about-features > div:last-child {
    padding-right: 0;
    border-right: 0;
}

.about-features > div > span {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--theme-blue);
    background: var(--theme-background-soft);
    border: 1px solid var(--theme-border);
    border-radius: 10px;
    font-size: 14px;
    transition: all .3s ease;
}

.about-features > div:hover > span {
    color: var(--theme-white);
    background: var(--theme-blue);
    border-color: var(--theme-blue);
    transform: translateY(-3px);
}

.about-features > div > div > strong {
    display: block;
    margin-bottom: 3px;
    color: var(--theme-primary);
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 800;
}

.about-features > div > div > span {
    display: block;
    color: var(--theme-text-muted);
    font-family: var(--font-body);
    font-size: 8px;
    font-weight: 500;
}

/* about features end */


/* about bottom start */

.about-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 21px;
}

.about-bottom > div:first-child {
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-bottom > div:first-child > span {
    width: 31px;
    height: 31px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--theme-blue);
    background: var(--theme-aqua-soft);
    border-radius: 50%;
    font-size: 11px;
}

.about-bottom > div:first-child > div > span {
    display: block;
    margin-bottom: 2px;
    color: var(--theme-text-muted);
    font-family: var(--font-body);
    font-size: 7px;
    font-weight: 700;
    letter-spacing: 1.2px;
}

.about-bottom > div:first-child > div > strong {
    display: block;
    color: var(--theme-primary);
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 600;
}

.about-bottom > div:last-child {
    text-align: right;
}

.about-bottom > div:last-child > span {
    display: block;
    margin-bottom: 5px;
    color: var(--theme-icon-muted);
    font-family: var(--font-body);
    font-size: 7px;
    font-weight: 700;
    letter-spacing: 1.4px;
}

.about-bottom > div:last-child > i {
    width: 65px;
    height: 2px;
    display: block;
    margin-left: auto;
    background: var(--theme-blue);
}

/* about bottom end */


/* css end */




/* stats section start */

.stats-section {
    position: relative;
    padding: 90px 0;
    background: var(--theme-white);
    overflow: hidden;
}

/* stats section end */


/* stats header start */

.stats-header {
    position: relative;
    display: block;
    margin-bottom: 45px;
    text-align: center;
    z-index: 2;
}

.stats-heading-left {
    max-width: 700px;
    margin: 0 auto;
}

.stats-heading-left > span {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    margin-bottom: 13px;
    color: var(--theme-blue);
    font-family: var(--font-body);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
}

.stats-heading-left > span > i {
    width: 27px;
    height: 2px;
    display: block;
    background: var(--theme-blue);
}

.stats-heading-left > h2 {
    margin: 0;
    color: var(--theme-primary);
    font-family: var(--font-heading);
    font-size: 38px;
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -1.4px;
}

.stats-heading-left > h2 > span {
    color: var(--theme-blue);
}

.stats-heading-right {
    max-width: 650px;
    margin: 15px auto 0;
    display: block;
    text-align: center;
}

.stats-heading-right > div {
    display: none;
}

.stats-heading-right > p {
    margin: 0;
    color: var(--theme-text-muted);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.7;
}

/* stats header end */


/* stats row start */

.stats-row {
    position: relative;
    margin-left: -7px;
    margin-right: -7px;
    z-index: 2;
}

.stats-row > div {
    padding-left: 7px;
    padding-right: 7px;
}

.stats-row > div > div {
    min-height: 295px;
}

/* stats row end */


/* stat card start */

.stats-row > div > .stat-card {
    position: relative;
    padding: 25px;
    background: var(--theme-white);
    border: 1px solid var(--theme-border);
    border-radius: 12px;
    overflow: hidden;
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
    margin-bottom: 20px;
}

.stats-row > div > .stat-card:hover {
    transform: translateY(-6px);
    border-color: var(--theme-blue);
    box-shadow: 0 18px 40px var(--theme-shadow);
}

/* stat card end */


/* stat card head start */

.stat-card > div {
    position: relative;
}

.stat-card > .stat-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 43px;
    z-index: 2;
}

.stat-card-head > span {
    color: var(--theme-icon-muted);
    font-family: var(--font-body);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.stat-card-head > span + span {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--theme-blue);
    background: var(--theme-background);
    border: 1px solid var(--theme-border);
    border-radius: 50%;
    font-size: 10px;
    letter-spacing: 0;
    transition: color .3s ease, background .3s ease, border-color .3s ease, transform .3s ease;
}

.stat-card-head > span + span > i {
    line-height: 1;
}

.stat-card:hover > .stat-card-head > span + span {
    color: var(--theme-white);
    background: var(--theme-blue);
    border-color: var(--theme-blue);
    transform: rotate(45deg);
}

/* stat card head end */


/* stat content start */

.stat-card > .stat-content {
    z-index: 2;
}

.stat-content > .stat-number {
    display: flex;
    align-items: flex-start;
    height: 60px;
    color: var(--theme-primary);
    font-family: var(--font-heading);
    font-size: 60px;
    font-weight: 700;
    line-height: 60px;
    letter-spacing: -4px;
    white-space: nowrap;
}

/* odometer start */

.stat-number > span {
    display: inline-flex;
    align-items: flex-start;
    height: 60px;
    overflow: hidden;
    white-space: nowrap;
    vertical-align: top;
}

.odometer-digit {
    position: relative;
    display: block;
    width: .62em;
    height: 60px;
    flex: 0 0 .62em;
    overflow: hidden;
    line-height: 60px;
}

.odometer-track {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    margin: 0;
    padding: 0;
    transform: translate3d(0, 0, 0);
    will-change: transform;
}

.odometer-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 60px;
    margin: 0;
    padding: 0;
    color: var(--theme-primary);
    font-family: var(--font-heading);
    font-size: 60px;
    font-weight: 700;
    line-height: 60px;
    letter-spacing: -4px;
}

/* odometer end */

.stat-number > sup {
    position: relative;
    top: 5px;
    display: inline-block;
    margin-left: 8px;
    color: var(--theme-blue);
    font-family: var(--font-body);
    font-size: 38px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0;
}

.stat-content > div + div {
    width: 35px;
    height: 2px;
    margin: 20px 0 15px;
    background: var(--theme-blue);
    transition: width .3s ease;
}

.stat-card:hover > .stat-content > div + div {
    width: 58px;
}

.stat-content > h3 {
    margin: 0 0 7px;
    color: var(--theme-primary);
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    line-height: 1.4;
}

.stat-content > h3 > strong {
    font-weight: 800;
}

.stat-content > p {
    max-width: 220px;
    margin: 0;
    color: var(--theme-text-muted);
    font-family: var(--font-body);
    font-size: 8px;
    font-weight: 400;
    line-height: 1.75;
}

/* stat content end */


/* stat shape start */

.stat-card > .stat-shape {
    position: absolute;
    width: 135px;
    height: 135px;
    right: -75px;
    bottom: -75px;
    background: var(--theme-background-soft);
    border-radius: 50%;
    transition: transform .4s ease;
}

.stat-shape::after {
    content: "";
    position: absolute;
    inset: 18px;
    border: 1px solid var(--theme-border);
    border-radius: 50%;
}

.stat-card:hover > .stat-shape {
    transform: scale(1.15);
}

/* stat shape end */


/* stats bottom start */

.stats-bottom {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 24px;
    padding: 17px 21px;
    background: var(--theme-white);
    border: 1px solid var(--theme-border);
    border-radius: 10px;
    z-index: 2;
}

.stats-bottom > div:first-child {
    display: flex;
    align-items: center;
    gap: 12px;
}

.stats-bottom > div:first-child > span {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--theme-blue);
    background: var(--theme-aqua-soft);
    border-radius: 50%;
    font-size: 13px;
}

.stats-bottom > div:first-child > span > i {
    line-height: 1;
}

.stats-bottom > div:first-child > div > strong {
    display: block;
    margin-bottom: 3px;
    color: var(--theme-primary);
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 800;
}

.stats-bottom > div:first-child > div > small {
    display: block;
    color: var(--theme-text-muted);
    font-family: var(--font-body);
    font-size: 8px;
    font-weight: 400;
}

.stats-bottom > div:last-child {
    display: flex;
    align-items: center;
    gap: 10px;
}

.stats-bottom > div:last-child > span {
    color: var(--theme-text-muted);
    font-family: var(--font-body);
    font-size: 7px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.stats-bottom > div:last-child > strong {
    color: var(--theme-blue);
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
}

/* stats bottom end */


/* css end */


/* products section start */

.products-section {
    position: relative;
    padding: 55px 0;
    background: #f7f7f5;
    overflow: hidden;
}

/* products section end */


/* products header start */

.products-header {
    position: relative;
    margin-bottom: 45px;
    text-align: center;
}

.products-heading {
    max-width: 800px;
    margin: 0 auto;
}

.products-heading > span {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 13px;
    color: var(--theme-blue);
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
    line-height: 1.3;
}

.products-heading > span > i {
    width: 27px;
    height: 1px;
    display: block;
    background: var(--theme-blue);
}

.products-heading > h2 {
    margin: 0;
    color: var(--theme-primary);
    font-family: var(--font-heading);
    font-size: 38px;
    font-weight: 600;
    line-height: 1.15;
}

.products-heading > h2 > span {
    color: var(--theme-blue);
    display: block;
}

.products-intro {
    max-width: 680px;
    margin: 15px auto 0;
    text-align: center;
}

.products-intro > p > strong {
    
    margin-bottom: 5px;
    color: var(--theme-primary);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
}

.products-intro > p {
    max-width: 850px;
    margin: 0 auto;
    color: var(--theme-text-muted);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.7;
}

/* products header end */


/* products row start */

.products-row {
    position: relative;
    margin-left: -8px;
    margin-right: -8px;
}

.products-row > div {
    padding-left: 8px;
    padding-right: 8px;
    margin-bottom: 16px;
}

.products-row > div > a {
    height: 100%;
}

/* products row end */


/* product card start */

.product-card {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 420px;
    padding: 7px;
    background: var(--theme-white);
    border: 1px solid #e2e5e6;
    border-radius: 10px;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 7px 24px rgba(23, 20, 91, .055);
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.product-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 168, 204, .35);
    box-shadow: 0 18px 40px rgba(23, 20, 91, .10);
}

/* product card end */


/* product image start */

.product-image {
    position: relative;
    overflow: hidden;
    background: var(--theme-background-soft);
    border-radius: 7px;
}

.product-image > img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    transition: transform .5s ease;
    filter: brightness(97%);
}

.product-card:hover > .product-image > img {
    transform: scale(1.045);
}

/* product image number start */

.product-image > .product-image-number {
    position: absolute;
    top: 11px;
    left: 11px;
    z-index: 2;
    color: var(--theme-primary);
    font-family: var(--font-heading);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1px;
    opacity: .45;
}

/* product image number end */

/* product image end */


/* product info start */

.product-info {
    padding: 17px 9px 7px;
}

.product-info > span {
    display: block;
    margin-bottom: 6px;
    color: var(--theme-blue);
    font-family: var(--font-body);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.1px;
    line-height: 1.3;
    text-transform: uppercase;
}

.product-info > h3 {
    margin: 0 0 6px;
    color: var(--theme-primary);
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -.25px;
    transition: color .3s ease;
}

.product-info > p {
    max-width: 270px;
    margin: 0;
    color: var(--theme-text-muted);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.55;
}

.product-card:hover > .product-info > h3 {
    color: var(--theme-blue);
}

/* product info end */


/* product link start */

.product-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: auto 9px 5px;
    padding-top: 11px;
    border-top: 1px solid var(--theme-border-light);
    color: var(--theme-text);
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;
}

.product-link > span {
    display: block;
}

.product-link > i {
    width: 29px;
    height: 29px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--theme-primary);
    background: var(--theme-background-soft);
    border: 1px solid var(--theme-border);
    border-radius: 50%;
    font-size: 10px;
    transition: color .3s ease, background .3s ease, border-color .3s ease, transform .3s ease;
}

.product-card:hover > .product-link > i {
    color: var(--theme-white);
    background: var(--theme-blue);
    border-color: var(--theme-blue);
    transform: translateX(3px);
}

/* product link end */


/* products bottom start */

.products-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    margin-top: 24px;
    padding: 16px 20px;
    background: var(--theme-white);
    border: 1px solid var(--theme-border);
    border-radius: 9px;
    box-shadow: 0 6px 20px rgba(23, 20, 91, .045);
}

.products-bottom-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.products-bottom-icon {
    width: 41px;
    height: 41px;
    flex: 0 0 41px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--theme-blue);
    background: var(--theme-background-soft);
    border: 1px solid var(--theme-border);
    border-radius: 50%;
    font-size: 13px;
}

.products-bottom-icon > i {
    line-height: 1;
}

.products-bottom-left > div > strong {
    display: block;
    margin-bottom: 3px;
    color: var(--theme-primary);
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 800;
    line-height: 1.4;
}

.products-bottom-left > div > small {
    display: block;
    color: var(--theme-text-muted);
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 400;
    line-height: 1.5;
}

.products-bottom > a {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 11px 17px;
    color: var(--theme-white);
    background: var(--theme-primary);
    border: 1px solid var(--theme-primary);
    border-radius: 5px;
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 800;
    text-decoration: none;
    transition: background .3s ease, border-color .3s ease, transform .3s ease;
}

.products-bottom > a:hover {
    color: var(--theme-white);
    background: var(--theme-blue);
    border-color: var(--theme-blue);
    transform: translateY(-2px);
}

.products-bottom > a > span {
    display: block;
}

.products-bottom > a > i {
    font-size: 10px;
    transition: transform .3s ease;
}

.products-bottom > a:hover > i {
    transform: translateX(3px);
}

/* products bottom end */


/* css end */


/* why choose section start */

.why-choose-section {
    position: relative;
    padding: 85px 0;
    background: var(--theme-background);
    overflow: hidden;
}

.why-choose-bg-line {
    position: absolute;
    top: 0;
    right: 11%;
    width: 1px;
    height: 100%;
    background: linear-gradient(
        to bottom,
        transparent,
        var(--theme-border-light),
        transparent
    );
    opacity: .8;
}

.why-choose-bg-circle {
    position: absolute;
    width: 430px;
    height: 430px;
    left: -250px;
    bottom: -260px;
    border: 1px solid var(--theme-border-light);
    border-radius: 50%;
    opacity: .8;
    display: none;
}

.why-choose-row {
    row-gap: 55px;
}

/* why choose section end */


/* why choose visual start */

.why-choose-visual {
    position: relative;
    min-height: 625px;
    padding: 0 45px 45px 0;
}

.why-choose-image-frame {
    position: absolute;
    top: 28px;
    left: 28px;
    right: 18px;
    bottom: 18px;
    border: 1px solid var(--theme-blue);
    border-radius: 15px;
    opacity: .22;
}

.why-choose-image {
    position: relative;
    z-index: 2;
    width: calc(100% - 30px);
    height: 570px;
    overflow: hidden;
    border-radius: 15px;
    background: var(--theme-background-soft);
    box-shadow: 0 30px 70px rgba(23, 20, 91, .14);
}

.why-choose-image::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        180deg,
        rgba(14, 11, 67, .02) 35%,
        rgba(14, 11, 67, .48) 100%
    );
}

.why-choose-image > img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .8s ease;
}

.why-choose-visual:hover .why-choose-image > img {
    transform: scale(1.035);
}

/* why choose visual end */


/* why choose image label start */

.why-choose-image-label {
    position: absolute;
    left: -12px;
    bottom: 82px;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 12px 18px 12px 12px;
    background: rgba(255, 255, 255, .97);
    border: 1px solid var(--theme-border);
    border-radius: 8px;
    box-shadow: 0 18px 45px rgba(23, 20, 91, .14);
}

.why-choose-image-label > span {
    width: 43px;
    height: 43px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--theme-white);
    background: var(--theme-primary);
    border-radius: 6px;
    font-size: 16px;
}

.why-choose-image-label > div > strong {
    display: block;
    margin-bottom: 3px;
    color: var(--theme-primary);
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 800;
    line-height: 1.4;
}

.why-choose-image-label > div > small {
    display: block;
    color: var(--theme-text-muted);
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 400;
    line-height: 1.4;
}

/* why choose image label end */


/* why choose year start */

.why-choose-year {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 4;
    width: 132px;
    height: 132px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--theme-primary);
    border: 7px solid var(--theme-background);
    border-radius: 50%;
    box-shadow: 0 18px 40px rgba(23, 20, 91, .18);
}

.why-choose-year > span {
    color: var(--theme-blue-light);
    font-family: var(--font-body);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 2px;
}

.why-choose-year > strong {
    margin-top: 2px;
    color: var(--theme-white);
    font-family: var(--font-heading);
    font-size: 27px;
    font-weight: 700;
    line-height: 1;
}

/* why choose year end */


/* why choose image caption start */

.why-choose-image-caption {
    position: absolute;
    left: 25px;
    bottom: 20px;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--theme-white);
    font-family: var(--font-body);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.8px;
}

.why-choose-image-caption > i {
    font-size: 11px;
}

/* why choose image caption end */


/* why choose content start */

.why-choose-content {
    max-width: 610px;
    padding-left: 25px;
}

.why-choose-label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.why-choose-label > i {
    width: 30px;
    height: 1px;
    display: block;
    background: var(--theme-blue);
}

.why-choose-label > span {
    color: var(--theme-blue);
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2.5px;
    line-height: 1.3;
}

.why-choose-content > h2 {
    max-width: 570px;
    margin: 0;
    color: var(--theme-primary);
    font-family: var(--font-heading);
    font-size: 43px;
    font-weight: 600;
    line-height: 1.13;
    letter-spacing: -1px;
}

.why-choose-content > h2 > strong {
    display: block;
    color: var(--theme-blue);
    font-weight: 600;
}

.why-choose-intro {
    max-width: 560px;
    margin: 19px 0 34px;
    color: var(--theme-text-muted);
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.75;
}

/* why choose content end */


/* why choose points start */

.why-choose-points {
    position: relative;
}

.why-choose-points::before {
    content: "";
    position: absolute;
    top: 31px;
    bottom: 31px;
    left: 77px;
    width: 1px;
    background: linear-gradient(
        to bottom,
        transparent,
        var(--theme-border),
        transparent
    );
}

.why-choose-point {
    position: relative;
    display: grid;
    grid-template-columns: 35px 48px 1fr;
    align-items: start;
    gap: 17px;
    padding: 13px 0;
}

.why-choose-point-left {
    padding-top: 15px;
}

.why-choose-point-left > span {
    color: var(--theme-primary);
    font-family: var(--font-heading);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.5px;
    opacity: .32;
}

.why-choose-point-icon {
    position: relative;
    z-index: 2;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--theme-blue);
    background: var(--theme-background);
    border: 1px solid var(--theme-border);
    border-radius: 50%;
    box-shadow: 0 7px 20px rgba(23, 20, 91, .06);
    font-size: 17px;
    transition: all .35s ease;
}

.why-choose-point:hover .why-choose-point-icon {
    color: var(--theme-white);
    background: var(--theme-blue);
    border-color: var(--theme-blue);
    box-shadow: 0 8px 25px var(--theme-blue-glow);
    transform: scale(1.08);
}

.why-choose-point-content {
    padding-top: 3px;
}

.why-choose-point-content > h3 {
    margin: 0 0 5px;
    color: var(--theme-primary);
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 700;
    line-height: 1.35;
    transition: color .3s ease;
}

.why-choose-point:hover .why-choose-point-content > h3 {
    color: var(--theme-blue);
}

.why-choose-point-content > p {
    max-width: 420px;
    margin: 0;
    color: var(--theme-text-muted);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.65;
}

/* why choose points end */


/* why choose trust start */

.why-choose-trust {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 21px;
    padding: 16px 18px;
    background: var(--theme-dark-blue);
    border-radius: 7px;
}

.why-choose-trust > div > strong {
    display: block;
    margin-bottom: 3px;
    color: var(--theme-white);
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 800;
    line-height: 1.4;
}

.why-choose-trust > div > span {
    display: block;
    color: var(--theme-white-text-muted);
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 400;
    line-height: 1.4;
}

.why-choose-trust > i {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--theme-blue-light);
    border: 1px solid var(--theme-white-border);
    border-radius: 50%;
    font-size: 12px;
}

/* why choose trust end */

/* services section start */

.services-section {
    position: relative;
    padding: 85px 0;
    background: var(--theme-white);
    overflow: hidden;
}

/* services section end */


/* services heading start */

.services-heading {
    max-width: 760px;
    margin: 0 auto 48px;
    text-align: center;
}

.services-heading > span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    color: var(--theme-blue);
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2.5px;
    line-height: 1.3;
}

.services-heading > span > i {
    width: 30px;
    height: 1px;
    display: block;
    background: var(--theme-blue);
}

.services-heading > h2 {
    margin: 0;
    color: var(--theme-primary);
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -.8px;
}

.services-heading > h2 > strong {
    color: var(--theme-blue);
    font-weight: 600;
}

.services-heading > p {
    max-width: 700px;
    margin: 17px auto 0;
    color: var(--theme-text-muted);
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.75;
}

/* services heading end */


/* services slider start */

.services-slider {
    position: relative;
    padding: 5px 2px 0;
}

.services-slider > .swiper-wrapper {
    align-items: stretch;
}

.services-slider .swiper-slide {
    height: auto;
}

/* services slider end */


/* service card start */

.service-card {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 515px;
    padding: 7px;
    background: var(--theme-white);
    border: 1px solid var(--theme-border);
    border-radius: 13px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(23, 20, 91, .055);
    transition: transform .4s ease, box-shadow .4s ease, border-color .4s ease;
}

.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    z-index: 5;
    background: var(--theme-blue);
    transform: scaleX(.25);
    transform-origin: left;
    transition: transform .4s ease;
}

.service-card:hover {
    transform: translateY(-7px);
    border-color: rgba(0, 168, 204, .32);
    box-shadow: 0 22px 50px rgba(23, 20, 91, .11);
}

.service-card:hover::before {
    transform: scaleX(1);
}

/* service card end */


/* service image start */

.service-card > .service-image {
    position: relative;
    flex: 0 0 245px;
    height: 245px;
    overflow: hidden;
    border-radius: 9px;
    background: var(--theme-background-soft);
}

.service-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(14, 11, 67, .02) 35%,
        rgba(14, 11, 67, .48) 100%
    );
    pointer-events: none;
}

.service-image > img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .7s ease;
}

.service-card:hover > .service-image > img {
    transform: scale(1.055);
}

.service-image > span {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 37px;
    height: 37px;
    color: var(--theme-white);
    background: rgba(23, 20, 91, .82);
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 50%;
    font-family: var(--font-heading);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    backdrop-filter: blur(8px);
}

/* service image end */


/* service content start */

.service-card > .service-content {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 44px;
    grid-template-rows: auto 1fr auto;
    column-gap: 15px;
    flex: 1;
    height: 100%;
    padding: 24px 17px 16px;
}

.service-content > div {
    min-width: 0;
}

.service-content > div > small {
    display: block;
    margin-bottom: 8px;
    color: var(--theme-blue);
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
    line-height: 1.3;
    text-transform: uppercase;
}

.service-content > div > h3 {
    margin: 0;
    color: var(--theme-primary);
    font-family: var(--font-heading);
    font-size: 19px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -.25px;
    transition: color .3s ease;
}

.service-card:hover > .service-content > div > h3 {
    color: var(--theme-blue);
}

.service-content > i {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--theme-blue);
    background: var(--theme-background-soft);
    border: 1px solid var(--theme-border);
    border-radius: 8px;
    font-size: 17px;
    transition: color .3s ease, background .3s ease, border-color .3s ease, transform .3s ease;
}

.service-card:hover > .service-content > i {
    color: var(--theme-white);
    background: var(--theme-blue);
    border-color: var(--theme-blue);
    transform: translateY(-2px);
}

.service-content > p {
    grid-column: 1 / -1;
    margin: 17px 0 0;
    padding-top: 15px;
    color: var(--theme-text-muted);
    border-top: 1px solid var(--theme-border-light);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.7;
}

/* service content end */


/* service read more start */

.service-content > a {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    margin-top: auto;
    padding-top: 14px;
    color: var(--theme-primary);
    border-top: 1px solid var(--theme-border-light);
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 800;
    line-height: 1.4;
    text-decoration: none;
    transition: color .3s ease;
}

.service-content > a > span {
    display: block;
}

.service-content > a > i {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--theme-primary);
    background: var(--theme-background-soft);
    border: 1px solid var(--theme-border);
    border-radius: 50%;
    font-size: 10px;
    transition: color .3s ease, background .3s ease, border-color .3s ease, transform .3s ease;
}

.service-content > a:hover {
    color: var(--theme-blue);
}

.service-content > a:hover > i {
    color: var(--theme-white);
    background: var(--theme-blue);
    border-color: var(--theme-blue);
    transform: translateX(4px);
}

/* service read more end */


/* services navigation start */

.services-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 32px;
}

.services-navigation > button {
    width: 43px;
    height: 43px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--theme-primary);
    background: var(--theme-white);
    border: 1px solid var(--theme-border);
    border-radius: 50%;
    font-size: 12px;
    cursor: pointer;
    transition: color .3s ease, background .3s ease, border-color .3s ease, transform .3s ease;
}

.services-navigation > button:hover {
    color: var(--theme-white);
    background: var(--theme-blue);
    border-color: var(--theme-blue);
    transform: translateY(-2px);
}

.services-navigation > .services-pagination {
    width: auto;
    min-width: 90px;
}

.services-pagination .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
    margin: 0 4px !important;
    background: var(--theme-primary);
    opacity: .18;
    transition: width .3s ease, opacity .3s ease, background .3s ease;
}

.services-pagination .swiper-pagination-bullet-active {
    width: 22px;
    border-radius: 10px;
    background: var(--theme-blue);
    opacity: 1;
}

/* services navigation end */


/* css end */

/* faq section start */

.faq-section {
    position: relative;
    padding: 80px 0;
    background: var(--theme-background);
    overflow: hidden;
}

/* faq section end */


/* faq heading start */

.faq-heading {
    max-width: 760px;
    margin: 0 auto 50px;
    text-align: center;
}

.faq-heading > span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 13px;
    color: var(--theme-blue);
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2.5px;
    line-height: 1.3;
}

.faq-heading > span > i {
    width: 28px;
    height: 1px;
    display: block;
    background: var(--theme-blue);
}

.faq-heading > h2 {
    margin: 0;
    color: var(--theme-primary);
    font-family: var(--font-heading);
    font-size: 38px;
    font-weight: 600;
    line-height: 1.18;
    letter-spacing: -.8px;
}

.faq-heading > h2 > strong {
    color: var(--theme-blue);
    font-weight: 600;
}

.faq-heading > p {
    max-width: 650px;
    margin: 15px auto 0;
    color: var(--theme-text-muted);
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.75;
}

/* faq heading end */


/* faq row start */

.faq-row {
    row-gap: 30px;
}

/* faq row end */


/* faq intro start */

.faq-intro {
    position: relative;
    min-height: 100%;
    padding: 34px;
    background: linear-gradient(145deg, var(--theme-primary), var(--theme-primary-dark));
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(23, 20, 91, .12);
}

.faq-intro::before {
    content: "";
    position: absolute;
    width: 190px;
    height: 190px;
    top: -105px;
    right: -85px;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 50%;
}

.faq-intro::after {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    right: -155px;
    bottom: -165px;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 50%;
}

/* faq intro icon start */

.faq-intro > .faq-intro-icon {
    position: relative;
    z-index: 2;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 26px;
    color: var(--theme-blue-light);
    background: rgba(0, 168, 204, .14);
    border: 1px solid rgba(25, 193, 216, .25);
    border-radius: 10px;
    font-size: 19px;
}

/* faq intro icon end */


/* faq intro content start */

.faq-intro > small {
    position: relative;
    z-index: 2;
    display: block;
    margin-bottom: 9px;
    color: var(--theme-blue-light);
    font-family: var(--font-body);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.7px;
    line-height: 1.4;
}

.faq-intro > h3 {
    position: relative;
    z-index: 2;
    max-width: 310px;
    margin: 0;
    color: var(--theme-white);
    font-family: var(--font-heading);
    font-size: 25px;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -.4px;
}

.faq-intro > p {
    position: relative;
    z-index: 2;
    margin: 15px 0 27px;
    color: var(--theme-white-text-muted);
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 400;
    line-height: 1.75;
}

/* faq intro content end */

/* faq intro end */


/* faq trust start */

.faq-trust {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 0;
    border-top: 1px solid var(--theme-white-border);
}

.faq-trust:last-child {
    padding-bottom: 0;
}

.faq-trust > span {
    width: 29px;
    height: 29px;
    flex: 0 0 29px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--theme-blue-light);
    background: rgba(0, 168, 204, .08);
    border: 1px solid rgba(25, 193, 216, .25);
    border-radius: 50%;
    font-size: 10px;
}

.faq-trust > div > strong {
    display: block;
    margin-bottom: 2px;
    color: var(--theme-white);
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    line-height: 1.4;
}

.faq-trust > div > small {
    display: block;
    color: var(--theme-white-text-muted);
    font-family: var(--font-body);
    font-size: 9px;
    font-weight: 400;
    line-height: 1.4;
}

/* faq trust end */


/* faq list start */

.faq-list {
    padding-left: 20px;
}

.faq-list > .accordion {
    --bs-accordion-border-width: 0;
    --bs-accordion-border-color: transparent;
    --bs-accordion-bg: transparent;
}

/* faq list end */


/* faq item start */

.faq-item {
    position: relative;
    margin-bottom: 10px !important;
    background: var(--theme-white) !important;
    border: 1px solid var(--theme-border) !important;
    border-radius: 10px !important;
    overflow: hidden;
    box-shadow: 0 6px 22px rgba(23, 20, 91, .035);
    transition: border-color .3s ease, box-shadow .3s ease, transform .3s ease;
}

.faq-item:last-child {
    margin-bottom: 0 !important;
}

.faq-item:hover {
    border-color: rgba(0, 168, 204, .28) !important;
    box-shadow: 0 12px 30px rgba(23, 20, 91, .065);
    transform: translateY(-1px);
}

/* faq item end */


/* faq button start */

.faq-item > .accordion-header > .accordion-button {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 68px;
    padding: 17px 20px;
    color: var(--theme-primary) !important;
    background: var(--theme-white) !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
    text-align: left;
}

.faq-item > .accordion-header > .accordion-button:focus {
    box-shadow: none !important;
    outline: none;
}

.faq-item > .accordion-header > .accordion-button:not(.collapsed) {
    color: var(--theme-primary) !important;
    background: var(--theme-white) !important;
    box-shadow: none !important;
}

/* faq button icon start */

.faq-item > .accordion-header > .accordion-button::after {
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
    margin-left: auto;
    content: "+";
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--theme-primary);
    background: var(--theme-background-soft);
    background-image: none !important;
    border: 1px solid var(--theme-border);
    border-radius: 50%;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
    transform: none;
    transition: all .3s ease;
}

.faq-item > .accordion-header > .accordion-button:not(.collapsed)::after {
    color: var(--theme-white);
    background: var(--theme-blue);
    border-color: var(--theme-blue);
    transform: rotate(45deg);
}

/* faq button icon end */

/* faq button end */


/* faq answer start */

.faq-item > .accordion-collapse > .accordion-body {
    padding: 0 20px 19px;
    color: var(--theme-text-muted);
    background: var(--theme-white);
    border: 0;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 400;
    line-height: 1.75;
}

.faq-item > .accordion-collapse > .accordion-body::before {
    content: "";
    display: block;
    margin-bottom: 14px;
    border-top: 1px solid var(--theme-border-light);
}

/* faq answer end */


/* css end */

/* blogs section start */

.blogs-section {
    position: relative;
    padding: 85px 0;
    background: var(--theme-white);
    overflow: hidden;
}

/* blogs section end */


/* blogs heading start */

.blogs-heading {
    max-width: 760px;
    margin: 0 auto 48px;
    text-align: center;
}

.blogs-heading > span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 13px;
    color: var(--theme-blue);
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2.5px;
    line-height: 1.3;
}

.blogs-heading > span > i {
    width: 28px;
    height: 1px;
    display: block;
    background: var(--theme-blue);
}

.blogs-heading > h2 {
    margin: 0;
    color: var(--theme-primary);
    font-family: var(--font-heading);
    font-size: 38px;
    font-weight: 600;
    line-height: 1.18;
    letter-spacing: -.8px;
}

.blogs-heading > h2 > strong {
    color: var(--theme-blue);
    font-weight: 600;
}

.blogs-heading > p {
    max-width: 650px;
    margin: 15px auto 0;
    color: var(--theme-text-muted);
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.75;
}

/* blogs heading end */


/* blogs slider start */

.blogs-slider {
    position: relative;
    padding: 5px 2px 0;
}

.blogs-slider > .swiper-wrapper {
    align-items: stretch;
}

.blogs-slider .swiper-slide {
    height: auto;
}

/* blogs slider end */


/* blog card start */

.blog-card {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    background: var(--theme-white);
    border: 1px solid var(--theme-border);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(23, 20, 91, .045);
    transition: transform .4s ease, box-shadow .4s ease, border-color .4s ease;
}

.blog-card:hover {
    transform: translateY(-7px);
    border-color: rgba(0, 168, 204, .28);
    box-shadow: 0 20px 45px rgba(23, 20, 91, .10);
}

/* blog card end */


/* blog image start */

.blog-card > .blog-image {
    position: relative;
    overflow: hidden;
    background: var(--theme-background-soft);
}

.blog-image > img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .7s ease;
}

.blog-card:hover > .blog-image > img {
    transform: scale(1.06);
}

.blog-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        transparent 55%,
        rgba(14, 11, 67, .35) 100%
    );
    pointer-events: none;
}

.blog-image > span {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 2;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--theme-white);
    background: rgba(23, 20, 91, .82);
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 50%;
    font-family: var(--font-heading);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    backdrop-filter: blur(8px);
}

/* blog image end */


/* blog content start */

.blog-card > .blog-content {
    position: relative;
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 25px 22px 19px;
}

.blog-content > small {
    display: block;
    margin-bottom: 10px;
    color: var(--theme-blue);
    font-family: var(--font-body);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.7px;
    line-height: 1.3;
}

.blog-content > h3 {
    margin: 0;
    color: var(--theme-primary);
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.42;
    letter-spacing: -.25px;
    transition: color .3s ease;
}

.blog-card:hover > .blog-content > h3 {
    color: var(--theme-blue);
}

.blog-content > p {
    margin: 12px 0 20px;
    color: var(--theme-text-muted);
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 400;
    line-height: 1.7;
}

/* blog content end */


/* blog link start */

.blog-content > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-top: auto;
    padding-top: 14px;
    color: var(--theme-primary);
    border-top: 1px solid var(--theme-border-light);
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 800;
    line-height: 1.4;
    text-decoration: none;
    transition: color .3s ease;
}

.blog-content > a:hover {
    color: var(--theme-blue);
}

.blog-content > a > i {
    width: 29px;
    height: 29px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--theme-primary);
    background: var(--theme-background-soft);
    border: 1px solid var(--theme-border);
    border-radius: 50%;
    font-size: 10px;
    transition: all .3s ease;
}

.blog-content > a:hover > i {
    color: var(--theme-white);
    background: var(--theme-blue);
    border-color: var(--theme-blue);
    transform: translateX(4px);
}

/* blog link end */


/* blogs navigation start */

.blogs-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 32px;
}

.blogs-navigation > button {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--theme-primary);
    background: var(--theme-white);
    border: 1px solid var(--theme-border);
    border-radius: 50%;
    font-size: 11px;
    cursor: pointer;
    transition: all .3s ease;
}

.blogs-navigation > button:hover {
    color: var(--theme-white);
    background: var(--theme-blue);
    border-color: var(--theme-blue);
    transform: translateY(-2px);
}

.blogs-navigation > .blogs-pagination {
    width: auto;
    min-width: 80px;
}

.blogs-pagination .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
    margin: 0 4px !important;
    background: var(--theme-primary);
    opacity: .18;
    transition: all .3s ease;
}

.blogs-pagination .swiper-pagination-bullet-active {
    width: 21px;
    border-radius: 10px;
    background: var(--theme-blue);
    opacity: 1;
}

/* blogs navigation end */


/* css end */




/* footer start */

.site-footer {
    position: relative;
    color: var(--theme-white);
    background: linear-gradient(
        135deg,
        #17145B 0%,
        #12104D 52%,
        #0E0B43 100%
    );
    overflow: hidden;
}

/* footer end */


/* footer decorative start */

.site-footer::before {
    content: "";
    position: absolute;
    top: -210px;
    right: -140px;
    width: 470px;
    height: 470px;
    border: 1px solid rgba(25, 193, 216, .11);
    border-radius: 50%;
    pointer-events: none;
}

.site-footer::after {
    content: "";
    position: absolute;
    left: -190px;
    bottom: -250px;
    width: 430px;
    height: 430px;
    border: 1px solid rgba(25, 193, 216, .07);
    border-radius: 50%;
    pointer-events: none;
}

.footer-water-line {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 5;
    width: 100%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--theme-blue-light),
        transparent
    );
    opacity: .7;
}

/* footer decorative end */


/* footer top start */

.footer-top {
    position: relative;
    z-index: 2;
    padding: 48px 0;
    background: linear-gradient(
        90deg,
        rgba(0, 168, 204, .11),
        rgba(255, 255, 255, .025),
        rgba(0, 168, 204, .07)
    );
    border-bottom: 1px solid rgba(255, 255, 255, .10);
}

.footer-top-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
    flex-wrap: wrap;
}

.footer-top-inner > div > small {
    display: block;
    margin-bottom: 9px;
    color: var(--theme-blue-light);
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
    line-height: 1.4;
}

.footer-top-inner > div > h2 {
    margin: 0;
    color: var(--theme-white);
    font-family: var(--font-heading);
    font-size: 31px;
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: -.7px;
}

.footer-top-inner > div > h2 > span {
    color: var(--theme-blue-light);
}

.footer-top-inner > a {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    padding: 12px 12px 12px 20px;
    color: var(--theme-white);
    background: var(--theme-blue);
    border: 1px solid var(--theme-blue);
    border-radius: 7px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.4;
    text-decoration: none;
    box-shadow: 0 12px 30px rgba(0, 168, 204, .18);
    transition: all .3s ease;
}

.footer-top-inner > a:hover {
    color: var(--theme-white);
    background: var(--theme-blue-dark);
    border-color: var(--theme-blue-dark);
    transform: translateY(-2px);
}

.footer-top-inner > a > i {
    width: 31px;
    height: 31px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .15);
    border-radius: 50%;
    font-size: 10px;
}

/* footer top end */


/* footer main start */

.footer-main {
    position: relative;
    z-index: 2;
    padding: 75px 0 60px;
}

.footer-row {
    row-gap: 45px;
}

/* footer main end */


/* footer brand start */

.footer-brand {
    max-width: 390px;
}

.footer-brand > .footer-logo {
    display: inline-flex;
    align-items: center;
    margin-bottom: 22px;
}

.footer-logo > img {
    width: auto;
    max-width: 150px;
    height: auto;
    display: block;
    filter: brightness(0) invert(1);
}

.footer-brand > p {
    margin: 0;
    color: rgba(255, 255, 255, .68);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.85;
}

/* footer brand end */


/* footer social start */

.footer-social {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-top: 27px;
}

.footer-social > a {
    width: 39px;
    height: 39px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .78);
    background: rgba(255, 255, 255, .055);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 50%;
    font-size: 11px;
    text-decoration: none;
    transition: all .3s ease;
}

.footer-social > a:hover {
    color: var(--theme-white);
    background: var(--theme-blue);
    border-color: var(--theme-blue);
    transform: translateY(-3px);
}

/* footer social end */


/* footer section title start */

.footer-section-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 23px;
}

.footer-section-title > span {
    color: var(--theme-blue-light);
    font-family: var(--font-heading);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
}

.footer-section-title > h3 {
    margin: 0;
    color: var(--theme-white);
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
}

.footer-section-title::after {
    content: "";
    width: 26px;
    height: 1px;
    margin-left: 3px;
    background: rgba(255, 255, 255, .18);
}

/* footer section title end */


/* footer link list start */

.footer-link-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.footer-link-list > a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    min-height: 40px;
    padding: 0 8px 0 0;
    color: rgba(255, 255, 255, .62);
    border-bottom: 1px solid rgba(255, 255, 255, .055);
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 400;
    line-height: 1.4;
    text-decoration: none;
    transition: color .3s ease, padding .3s ease, border-color .3s ease;
}

.footer-link-list > a:last-child {
    border-bottom: 0;
}

.footer-link-list > a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 0;
    height: 1px;
    background: var(--theme-blue);
    transition: width .35s ease;
}

.footer-link-list > a:hover {
    padding-left: 8px;
    color: var(--theme-white);
    border-color: rgba(0, 168, 204, .18);
}

.footer-link-list > a:hover::after {
    width: 100%;
}

.footer-link-list > a > span {
    display: block;
}

.footer-link-list > a > i {
    color: var(--theme-blue-light);
    font-size: 9px;
    opacity: .40;
    transform: translate(-4px, 4px);
    transition: opacity .3s ease, transform .3s ease;
}

.footer-link-list > a:hover > i {
    opacity: 1;
    transform: translate(0, 0);
}

/* footer link list end */


/* footer contact title start */

.footer-contact-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 3px 0 25px;
}

.footer-contact-title > span {
    color: var(--theme-blue-light);
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
}

.footer-contact-title > i {
    width: 30px;
    height: 1px;
    background: var(--theme-blue);
}

/* footer contact title end */


/* footer contact start */

.footer-contact-line {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    margin-bottom: 17px;
    padding-bottom: 17px;
    border-bottom: 1px solid rgba(255, 255, 255, .055);
}

.footer-contact-line:last-of-type {
    border-bottom: 0;
}

.footer-contact-line > span {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--theme-blue-light);
    background: rgba(0, 168, 204, .10);
    border: 1px solid rgba(25, 193, 216, .20);
    border-radius: 8px;
    font-size: 12px;
}

.footer-contact-line > p {
    margin: 0;
    color: rgba(255, 255, 255, .72);
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 400;
    line-height: 1.7;
}

.footer-contact-line > div > a,
.footer-contact-line > a {
    display: block;
    color: rgba(255, 255, 255, .78);
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 400;
    line-height: 1.7;
    text-decoration: none;
    transition: color .3s ease;
}

.footer-contact-line > div > a:hover,
.footer-contact-line > a:hover {
    color: var(--theme-blue-light);
}

/* footer contact end */


/* footer gst start */

.footer-gst {
    display: flex;
    align-items: center;
    gap: 13px;
    padding-top: 3px;
}

.footer-gst > span {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--theme-white);
    background: var(--theme-blue);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 9px;
    font-weight: 800;
}

.footer-gst > div > small {
    display: block;
    margin-bottom: 3px;
    color: rgba(255, 255, 255, .40);
    font-family: var(--font-body);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-gst > div > strong {
    color: var(--theme-white);
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
}

/* footer gst end */


/* footer products start */

.footer-products {
    margin-top: 65px;
    padding-top: 35px;
    border-top: 1px solid rgba(255, 255, 255, .10);
}

.footer-products-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 25px;
    margin-bottom: 25px;
}

.footer-products-heading > div > span {
    display: block;
    margin-bottom: 6px;
    color: var(--theme-blue-light);
    font-family: var(--font-body);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.8px;
}

.footer-products-heading > div > h3 {
    margin: 0;
    color: var(--theme-white);
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -.3px;
}

.footer-products-heading > p {
    margin: 0;
    color: rgba(255, 255, 255, .40);
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 400;
}

/* footer products end */


/* footer products list start */

.footer-products-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 9px;
    overflow: hidden;
    background: rgba(255, 255, 255, .02);
}

.footer-products-list > a {
    position: relative;
    display: flex;
    align-items: center;
    gap: 13px;
    min-height: 66px;
    padding: 12px 17px;
    color: var(--theme-white);
    background: rgba(255, 255, 255, .018);
    border-right: 1px solid rgba(255, 255, 255, .075);
    border-bottom: 1px solid rgba(255, 255, 255, .075);
    font-family: var(--font-body);
    text-decoration: none;
    transition: background .3s ease, padding .3s ease;
}

.footer-products-list > a:nth-child(3n) {
    border-right: 0;
}

.footer-products-list > a:nth-last-child(-n + 3) {
    border-bottom: 0;
}

.footer-products-list > a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--theme-blue);
    transition: width .35s ease;
}

.footer-products-list > a:hover {
    padding-left: 21px;
    background: rgba(0, 168, 204, .08);
}

.footer-products-list > a:hover::after {
    width: 100%;
}

.footer-products-list > a > span {
    width: 27px;
    flex: 0 0 27px;
    color: rgba(25, 193, 216, .62);
    font-family: var(--font-heading);
    font-size: 9px;
    font-weight: 600;
}

.footer-products-list > a > strong {
    flex: 1;
    color: rgba(255, 255, 255, .68);
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    line-height: 1.45;
    transition: color .3s ease;
}

.footer-products-list > a:hover > strong {
    color: var(--theme-white);
}

.footer-products-list > a > i {
    color: rgba(25, 193, 216, .48);
    font-size: 10px;
    transition: color .3s ease, transform .3s ease;
}

.footer-products-list > a:hover > i {
    color: var(--theme-blue-light);
    transform: translate(3px, -3px);
}

/* footer products list end */


/* footer bottom start */

.footer-bottom {
    position: relative;
    z-index: 2;
    background: rgba(7, 6, 43, .38);
    border-top: 1px solid rgba(255, 255, 255, .10);
    padding: 10px 0px;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 70px;
    flex-wrap: wrap;
}

.footer-bottom-inner > p {
    margin: 0;
    color: rgba(255, 255, 255, .48);
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 400;
}

.footer-bottom-inner > p > strong {
    color: rgba(255, 255, 255, .85);
    font-weight: 600;
}

.footer-bottom-inner > p > a {
    color: rgba(255, 255, 255, .85);
    font-weight: 600;
}

.footer-bottom-inner > div {
    display: flex;
    align-items: center;
    gap: 13px;
}

.footer-bottom-inner > div > a {
    color: rgba(255, 255, 255, 0.783);
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 400;
    text-decoration: none;
    transition: color .3s ease;
}

.footer-bottom-inner > div > a:hover {
    color: var(--theme-blue-light);
}

.footer-bottom-inner > div > span {
    width: 3px;
    height: 3px;
    background: var(--theme-blue-light);
    border-radius: 50%;
}

/* footer bottom end */


/* css end */