body {
    /* font-family:var(--bs-font-sans-serif); */
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    font-style: normal;
}

* {
    box-sizing: border-box;
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.mt--30 {
    margin-top: 30px !important;
}




@media (prefers-reduced-motion: no-preference) {
    :root {
        scroll-behavior: smooth;
    }
}

:root {
    --color-primary: #1f244c;
    --color-primary-600: #3f5dd1;
    --color-heading: #101223;
    --color-body: #404252;
    --color-bg-two: #F3F7FF;
    --color-white: #ffffff;
    --p-regular: 400;
    --p-medium: 500;
    --p-bold: 700;
    --shadow-primary: 0 0 20px 5px rgba(63, 93, 209, 0.2);
    --body-font: "DM Sans", sans-serif;
    --font-size-b2: 16px;
    --line-height-b2: 1.7;
    --h3: 40px;
}

:root {
    --body-font: 'poppins', sans-serif;
    --header-font: 'jost', sans-serif;
}

.container {
    margin-bottom: 2rem;
    width: 100%;
    padding-right: var(--bs-gutter-x, .75rem);
    padding-left: var(--bs-gutter-x, .75rem);
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

@media (min-width: 1400px) {
    .container {
        max-width: 1296px;
    }
}

*,
:after,
:before {
    box-sizing: border-box;
}

.row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(var(--bs-gutter-y) * -1);
    margin-right: calc(var(--bs-gutter-x) * -.5);
    margin-left: calc(var(--bs-gutter-x) * -.5);
}

.row--15 {
    margin-left: -15px;
    margin-right: -15px;
}

.mt_dec--30 {
    margin-top: -30px;
}

.service-wrapper {
    display: flex;
}

.mt-5 {
    margin-top: 3rem !important;
}

.row>* {
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
    margin-top: var(--bs-gutter-y);
}

@media (min-width: 992px) {
    .col-lg-12 {
        flex: 0 0 auto;
        width: 100%;
    }
}

.col-12 {
    flex: 0 0 auto;
    width: 100%;
}

@media (min-width: 576px) {
    .col-sm-6 {
        flex: 0 0 auto;
        width: 50%;
    }
}

@media (min-width: 768px) {
    .col-md-6 {
        flex: 0 0 auto;
        width: 50%;
    }
}

@media (min-width: 992px) {
    .col-lg-4 {
        flex: 0 0 auto;
        width: 33.33333333%;
    }
}

[data-sal] {
    transition-duration: 0.2s;
    transition-delay: 0s;
    transition-duration: var(--sal-duration, 0.2s);
    transition-delay: var(--sal-delay, 0s);
    transition-timing-function: var(--sal-easing, ease);
}

[data-sal|="slide"] {
    opacity: 0;
    transition-property: opacity, transform;
}

[data-sal="slide-up"] {
    transform: translateY(20%);
}

.row--15>[class*="col"] {
    padding-left: 15px;
    padding-right: 15px;
}

[data-sal][data-sal-duration="700"] {
    transition-duration: 0.7s;
}

[data-sal][data-sal-delay="300"] {
    transition-delay: 0.3s;
}

[data-sal|="slide"].sal-animate {
    opacity: 1;
    transform: none;
}

.text-center {
    text-align: center !important;
}

.section-title {
    margin-bottom: 64px;
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

[data-sal][data-sal-delay="100"] {
    transition-delay: 0.1s;
}

.card-box {
    height: 100%;
    position: relative;
}

.card-box.card-style-1 {
    padding: 32px;
    height: 100%;
    position: relative;
    border: 1px solid #DEE2E6;
    border-radius: 8px;
}

h3 {
    margin-top: 0;
    margin-bottom: .5rem;
    font-weight: 500;
    line-height: 1.2;
}

h3 {
    font-size: calc(1.3rem + .6vw);
}

@media (min-width: 1200px) {
    h3 {
        font-size: 1.75rem;
    }
}

h3 {
    margin: 0;
    margin-bottom: 0px;
}

h3 {
    word-break: break-word;
    font-family: var(--header-font);
    line-height: 1.4074;
    color: var(--color-heading);
}

h3 {
    font-size: var(--h3);
    line-height: 1.2;
}

h3 {
    font-weight: var(--p-bold);
}

.mb--0 {
    margin-bottom: 0 !important;
}

.section-title .title {
    position: relative;
    z-index: 3;
    letter-spacing: -0.5px;
}

.d-flex {
    display: flex !important;
}

.justify-content-center {
    justify-content: center !important;
}

.card-box.card-style-1 .content {
    margin-top: 32px;
}

a {
    color: #0d6efd;
    text-decoration: underline;
}

a {
    color: var(--color-heading);
    text-decoration: none;
    outline: none;
}

a {
    color: var(--color-body);
}

a:hover {
    color: #0a58ca;
}

a:hover,
a:active {
    text-decoration: none;
    outline: none;
    color: var(--color-primary);
}

img {
    vertical-align: middle;
}

img {
    -ms-interpolation-mode: bicubic;
    border: 0;
    vertical-align: middle;
    max-width: 100%;
    height: auto;
}

a.btn-default {
    border: 0;
    padding: 0 32px;
    border-radius: 8px;
    background-color: transparent;
    background: var(--color-primary-600);
    transition-duration: 300ms;
    color: var(--color-white);
    font-size: 16px;
    font-weight: var(--p-medium);
    text-align: center;
    text-decoration: none;
    display: inline-block;
    height: 48px;
    line-height: 48px;
    width: auto;
    transition: 0.4s;
}

a.btn-default.btn-large {
    height: 60px;
    line-height: 60px;
    padding: 0 36px;
    font-size: 17px;
}

a.btn-default.round {
    border-radius: 100px;
}

a.btn-default:hover {
    box-shadow: var(--shadow-primary);
    -webkit-filter: brightness(125%);
    filter: brightness(125%);
    color: var(--color-white);
    text-decoration: none;
}

.las {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
}

.las {
    font-family: 'Line Awesome Free';
    font-weight: 900;
}

a.btn-default.has-right-icon i {
    margin-left: 10px;
}

.la-angle-right:before {
    content: "\f105";
}


/* These were inline style tags. Uses id+class to override almost everything */
#style-h7ZdC.style-h7ZdC {
    border-radius: 5px;
}

#style-RWrv9.style-RWrv9 {
    border-radius: 5px;
}

#style-NFCJS.style-NFCJS {
    border-radius: 5px;
}

#style-FdqSB.style-FdqSB {
    border-radius: 5px;
}

#style-bTVpD.style-bTVpD {
    border-radius: 5px;
}

#style-GQ3tJ.style-GQ3tJ {
    border-radius: 5px;
}

#style-6honJ.style-6honJ {
    border-radius: 5px;
}

#style-QN1pY.style-QN1pY {
    border-radius: 5px;
}

#style-TdV9y.style-TdV9y {
    border-radius: 5px;
}

#style-gKLxJ.style-gKLxJ {
    border-radius: 5px;
}

#style-2Qo7f.style-2Qo7f {
    border-radius: 5px;
}

#style-wNRoi.style-wNRoi {
    border-radius: 5px;
}

.inner {
    display: flex;
    flex-direction: column;
    align-items: center;
}

