@import url("https://fonts.googleapis.com/css2?family=Hind:wght@300;400;500;600;700&display=swap");

:root {
    --primary-font: "Hind", sans-serif;
    --secondary-font: "Hind", sans-serif;
    --primary-color: #25498e;
    --theme-color: #0b3d2c;
    --action-color: #2a7d2e;
    --typo-dark: #333333;
    --typo-body: #666666;
    --typo-mid: #8A94A6;
    --typo-light: #A6AEBC;
    --bg-light: #F8F9FB;

    --radius: 4px;
    --radius-big: 6px;
    --radius-small: 2px;
    --w-regular: 400;
    --w-medium: 500;
    --w-semi-bold: 600;
    --w-bold: 700;
    --w-extra-bold: 800;

}


html {
    font-size: 10px;
    margin: 0;
    padding: 0;
    overflow-x: hidden
}

@media (max-width:1199px) {
    html {
        font-size: 9px
    }
}

@media (max-width:991px) {
    html {
        font-size: 8px
    }
}

body {
    position: relative;
    font-family: var(--primary-font);
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
    padding: 0;
    color: var(--typo-body)
}

::selection {
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    text-shadow: none
}

hr {
    display: block;
    height: 1px;
    border: 0;
    margin: 0;
    padding: 0
}

audio,
canvas,
iframe,
img,
svg,
video {
    vertical-align: middle
}

fieldset {
    border: 0;
    margin: 0;
    padding: 0
}

textarea {
    resize: vertical
}

a,
button {
    outline: none;
    -webkit-transition: all .5s;
    transition: all .5s
}

a {
    color: var(--action-color);
    font-family: var(--secondary-font);
}

a:hover {
    color: var(--action-color);
    text-decoration: underline
}

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

.container {
    width: 1260px;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px
}

@media (max-width:1199px) {
    .container {
        width: 960px
    }
}

@media (max-width:991px) {
    .container {
        width: 650px
    }
}

@media (max-width:767px) {
    .container {
        width: 100%
    }
}

.container-fluid {
    padding: 0 4rem
}

@media (max-width:767px) {
    .container-fluid {
        padding: 0 2rem
    }
}

figure {
    margin: 0;
    padding: 0
}

@media (max-width:991px) {
    figure img {
        width: 100%;
        height: auto
    }
}

@media (max-width:991px) {
    .section-gap {
        padding-top: 10rem;
        padding-bottom: 10rem
    }
}

.object-fit__cover {
    -o-object-fit: cover;
    object-fit: cover
}

.object-fit__contain {
    -o-object-fit: contain;
    object-fit: contain
}

.visuallyhidden {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    white-space: nowrap
}

.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
    clip: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    position: static;
    width: auto;
    white-space: inherit
}

.invisible {
    visibility: hidden
}

.border-radius {
    border-radius: var(--radius)
}

.no-overflow {
    overflow: hidden
}


.primary-bg-color {
    background-color: var(--primary-color)
}


.bg-white {
    background-color: #fff
}

.radius {
    border-radius: var(--radius)
}

.radius-big {
    border-radius: var(--radius-big)
}

.grad-bg {
    background: -webkit-gradient(linear, left bottom, left top, from(#EAEDF3), to(#fff));
    background: linear-gradient(0deg, #EAEDF3 0%, #fff 100%)
}

.shadow-p1 {
    -webkit-box-shadow: 0 1px 1px 0 rgba(10, 31, 68, 0.08);
    box-shadow: 0 1px 1px 0 rgba(10, 31, 68, 0.08)
}

.shadow-p2 {
    -webkit-box-shadow: 0 3px 6px 0 rgba(10, 31, 68, 0.1);
    box-shadow: 0 3px 6px 0 rgba(10, 31, 68, 0.1)
}

.section-subtitle {
    font-size: 2rem;
    font-weight: var(--w-semi-bold)
}

.brand-logo {
    display: block
}

@media print {

    *,
    *:before,
    *:after {
        background: transparent !important;
        -webkit-box-shadow: none !important;
        box-shadow: none !important;
        text-shadow: none !important
    }

    a,
    a:visited {
        text-decoration: underline
    }

    a [href]:after {
        content: "( "attr(href) ") "
    }

    abbr [title]:after {
        content: "( "attr(title) ") "
    }

    a [href^="# "]:after,
    a [href^="javascript: "]:after {
        content: " "
    }

    pre {
        white-space: pre-wrap !important
    }

    pre,
    blockquote {
        page-break-inside: avoid
    }

    thead {
        display: table-header-group
    }

    tr,
    img {
        page-break-inside: avoid
    }

    p,
    h2,
    h3 {
        orphans: 3;
        widows: 3
    }

    h2,
    h3 {
        page-break-after: avoid
    }
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--secondary-font);
    color: var(--typo-dark);
    font-weight: var(--w-bold);
    line-height: 1.5
}

h1 {
    font-size: 4.4rem
}

@media (max-width:991px) {
    h1 {
        font-size: 3.2rem
    }
}

h2 {
    font-size: 3.6rem
}

@media (max-width:991px) {
    h2 {
        font-size: 3rem
    }
}

h3 {
    font-size: 2.4rem
}

h4 {
    font-size: 2rem;
    font-weight: var(--w-bold)
}

h4.sml {
    font-size: 2.2rem
}

h5 {
    font-size: 1.8rem;
    font-weight: var(--w-bold)
}

h6 {
    font-size: 1.6rem;
    font-weight: var(--w-semi-bold)
}

p {
    color: var(--typo-body)
}

@media (max-width:991px) {
    p {
        font-size: 16px
    }
}

.w-light {
    font-weight: var(--w-light)
}

.w-regular {
    font-weight: var(--w-regular)
}

.w-semi-bold {
    font-weight: var(--w-semi-bold)
}

.w-bold {
    font-weight: var(--w-bold)
}

.w-ex-bold {
    font-weight: var(--w-extra-bold)
}

.page-header {
    background-color: #fff;
    height: 8rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    margin-bottom: 33px;
    border-bottom: 1px solid #eee;
}

@media (max-width:767px) {
    .page-header {
        height: auto
    }
}

.page-nav img {
    width: 180px;
}

.page-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

@media (max-width:767px) {
    .page-nav {
        display: block
    }

    .page-nav .nav-brand {
        display: block;
        margin: 20px 0 20px;
        text-align: center
    }
}

.nav-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-left: 40px;
}

.support-link {
    font-size: 14px;
    font-weight: var(--w-medium);
    color: var(--typo-body);
    text-transform: uppercase;
    text-decoration: none;
    margin-left: 3rem;
    margin-right: 30px;
}

.nav-list a:nth-of-type(1) {
    margin-left: 0
}

.nav-list .toggle-navbar {
    font-size: 20px;
    line-height: 1;
    display: none
}

@media (max-width:1199px) {
    .nav-list .toggle-navbar {
        display: block;
        margin-left: 20px;
        font-size: 40px;
        margin-top: 12px;
    }
}

@media (max-width:767px) {
    .nav-list {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        margin: 10px 0 15px
    }

    .nav-list a {
        font-size: 12px;
        margin-left: 2rem
    }
}

.main-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.sidebar-navigation {
    position: fixed;
    top: 0;
    bottom: 0;
    width: 350px;
    padding: 0 2rem 2rem 0;
    overflow-x: hidden;
    -webkit-transition: all .5s;
    transition: all .5s;
    background: #0b3d2c;
    padding: 30px;
}

@media (max-width:1199px) {
    .sidebar-navigation {
        padding: 0 2rem 2rem 2rem;

    }
}

.sidebar-navigation.stick-to-top {
    top: 40px
}

@media (max-width:1199px) {
    .sidebar-navigation.stick-to-top {
        top: 0
    }
}

@media (max-width:1199px) {
    .sidebar-navigation {
        position: fixed;
        top: 0;
        bottom: 0;
        left: 0;
        width: 300px;
        -webkit-transform: translateX(-310px);
        transform: translateX(-310px);
        -webkit-transition: all .5s;
        transition: all .5s;
        z-index: 9999;
        -webkit-box-shadow: 3px 0 10px rgba(0, 0, 0, 0.1);
        box-shadow: 3px 0 10px rgba(0, 0, 0, 0.1);
        padding-top: 20px;
    }
}

.sidebar-navigation.show {
    -webkit-transform: translateX(0);
    transform: translateX(0)
}

@media (max-width:767px) {
    .sidebar-navigation {
        width: 260px
    }
}

.themepure-doc-nav {
    padding-left: 0;
    list-style: none;
    font-family: var(--secondary-font);
}

.themepure-doc-nav ul {
    padding-left: 3rem;
    list-style: none
}

.themepure-doc-nav ol {
    padding-left: 2rem
}

.themepure-doc-nav a {
    font-size: 15px;
    line-height: 3rem;
    color: #a1a2ab;
    text-decoration: none;
    padding: 2px 0;
}

.themepure-doc-nav a {
    position: relative;
    display: inline-block;

    background-size: 0px 1px;
    background-position: 0px 95%;
    transition: background-size 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
    background-repeat: no-repeat;
}

.themepure-doc-nav a.active,
.themepure-doc-nav a:hover {
    color: #fff;
    background-size: 100% 1px;
    text-decoration: none !important;
}

.main {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    max-width: 100%;
    margin-left: 360px;
    padding: 0 0 30px 30px;
    padding-right: 30px;
}

@media (max-width:1199px) {
    .main {
        margin: 0px 0 0;
        padding: 0 15px;
    }
}

.section-1,
.section-2 {
    height: 2000px
}

input,
textarea {
    width: 100%;
    padding: 1rem 2rem;
    background: #fff;
    border: 2px solid #EEECEC;
    font-size: 16px;
    line-height: 30px;
    color: var(--typo-body);
}

.input-group {
    position: relative
}

.input-group button {
    position: absolute;
    background: transparent;
    border: none;
    top: 0;
    right: 0;
    font-size: 16px;
    line-height: 34px;
    padding: 1.5rem 2rem;
    cursor: pointer;
    -webkit-transition: all .5s;
    transition: all .5s
}

.input-group button i {
    font-weight: var(--w-medium);
    color: var(--typo-body);
    -webkit-transition: all .5s;
    transition: all .5s
}

.input-group button:hover i {
    color: var(--primary-color)
}

.main h3 {
    border-bottom: 1px solid #eee;
    padding-bottom: 1rem;
    margin-bottom: 3rem;
    margin-top: 5rem;
    -webkit-transition: color .5s;
    transition: color .5s;
    letter-spacing: 1px;
}

.main h4 {
    margin: 0 0 2rem
}

.main p {
    margin-bottom: 2rem
}

.main ul,
.main ol {
    margin: 0 0 2rem
}

.filterable-wrapper img {
    margin-bottom: 3rem;
    -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
}

img {
    max-width: 100%;
    height: auto
}

.page-footer {
    background-color: var(--typo-dark);
    padding: 19px 0;
    position: relative
}

.page-footer p {
    color: #fff;
    margin: 0
}

.page-footer a {
    color: #fff
}

.page-footer a:hover {
    color: var(--primary-color)
}

.nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

@media (max-width:1199px) {
    .nav {
        display: block
    }
}

@media (max-width:1199px) {
    .main-content {
        padding-top: 1px;
        padding-bottom: 50px
    }
}

section.active h3 {
    color: var(--action-color)
}

.sidebar-navigation ol {
    counter-reset: section;
    list-style-type: none
}

.sidebar-navigation ol li a::before {
    counter-increment: section;
    content: counters(section, ". ") ". "
}

.back-to-top {
    position: fixed;
    bottom: -6rem;
    right: -6rem;
    display: block;
    width: 4rem;
    line-height: 4rem;
    background: var(--action-color);
    color: #fff;
    text-align: center;
    text-decoration: none;
    border-radius: var(--radius);
    opacity: 0;
    -webkit-transform: scale(0.3);
    transform: scale(0.3);
    -webkit-box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5);
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5);
    z-index: 9;
    -webkit-transition: all .3s;
    transition: all .3s
}

.back-to-top.show {
    bottom: 3rem;
    right: 3rem;
    opacity: .7;
    -webkit-transform: scale(1);
    transform: scale(1)
}

.back-to-top:hover {
    color: #fff;
    bottom: 3.2rem;
    opacity: 1
}

.nav-link:hover {
    text-decoration: underline
}

li img {
    display: block;
    margin-top: 20px
}


.btn-sm.primary-btn {
    border-color: var(--primary-color);
    color: var(--primary-color);
    display: inline-block;
    font-size: 1.4rem;
    padding: 1.2rem 3rem 1.1rem;
    position: relative;
    vertical-align: middle;
    z-index: 9;
    font-weight: 500;
    text-align: center;
    font-family: var(--primary-font);
    letter-spacing: 0.1rem;
    line-height: 2.1rem;
    border-radius: 0;
    border-width: .2rem;
    border-style: solid;
    transition: all .5s;

}

.btn-sm.primary-btn:hover {
    color: #fff;
}

.btn-sm.primary-btn:before {
    content: " ";
    width: 0;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--primary-color);
    z-index: -1;
    transition: all .5s;
    color: #fff;
}

.btn-sm.primary-btn:hover:before,
.btn-sm.primary-btn:focus:before {
    width: 100%;
    right: auto;
    left: 0;
}

.main-content {
    padding-top: 0;
}

.search-form {
    margin-bottom: 0;
}

.logo-wrapper {
    margin-bottom: 20px;
}

.main .image-no-100 img {
    width: inherit;
}

img.max-100 {
    max-width: 100%;
    width: auto;
}

.black-color {
    color: #222;
}

.sidebar-navigation h3 {
    color: #fff;
    font-size: 16px;
    margin-bottom: 25px;
    border-bottom: 1px solid #f8f5f0;
    padding-bottom: 25px;
}

ul.item-details {
    background: #f6f6f6;
    padding: 40px;
    margin-top: 25px;
    padding-top: 35px;
    list-style: none;
}

ul.item-details li {
    margin: 15px 0;
}

.e-btn {
    display: inline-block;
    height: 50px;
    line-height: 52px;
    text-align: center;
    padding: 0 25px;
    color: #ffffff;
    background: #0b3d2c;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    font-weight: 500;
    text-transform: capitalize;
}

.e-btn:hover {
    color: #ffffff;
    -webkit-box-shadow: 0px 10px 24px 0px rgba(4, 23, 118, 0.3);
    -moz-box-shadow: 0px 10px 24px 0px rgba(4, 23, 118, 0.3);
    box-shadow: 0px 10px 24px 0px rgba(4, 23, 118, 0.3);
}

.logo img {
    width: 153px;
}