html {
    position: relative;
    min-height: 100%;
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

html {
    position: relative;
    min-height: 100%;
}

body {
    background: #fff;
    margin: 0;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
}

main {
    min-height: 90vh;
    /*margin-left: 5%;*/
    margin-bottom: 6%;
}

.body-pd > main {
    margin-left: 0%;
}

span.error {
    color: red;
}

span.success {
    color: green
}

:root {
    --header-height: 3rem;
    --nav-width: 68px;
    --first-color: #4723D9;
    --first-color-light: #AFA5D9;
    --white-color: #F7F6FB;
    --body-font: 'Nunito', sans-serif;
    --normal-font-size: 1rem;
    --z-fixed: 100
}

*, ::before, ::after {
    box-sizing: border-box
}

body {
    position: relative;
    margin: var(--header-height) 0 0 0;
    padding: 0 1rem;
    font-family: var(--body-font);
    font-size: var(--normal-font-size);
    transition: .5s
}

a {
    text-decoration: none
}

.header {
    width: 100%;
    height: var(--header-height);
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1rem;
    background-color: #236af6;
    z-index: var(--z-fixed);
    transition: .5s
}

.header_toggle {
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer
}

.header_img {
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    border-radius: 50%;
    overflow: hidden;
    border-radius: 50%;
    background: #fff;
    color: #236af6;
    display: flex;
    align-content: center;
    align-items: center;
    justify-content: space-evenly;
}

    .header_img img {
        width: 40px
    }

.l-navbar {
    position: fixed;
    top: 0;
    left: -30%;
    width: 68px;
    height: 100vh;
    background-color: #f4f4f4;
    padding: .5rem 1rem 0 0;
    transition: .5s;
    z-index: 100
}

.nav {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden
}

.nav_logo, .nav_link {
    display: grid;
    grid-template-columns: max-content max-content;
    align-items: center;
    column-gap: 1rem;
    padding: .5rem 0 .5rem 1.5rem
}

.nav_logo {
    margin-bottom: 2rem
}

.nav_logo-img {
    width: 25px
}

.nav_logo-icon {
    font-size: 1.25rem;
    color: var(--white-color)
}

.nav_logo-name {
    color: #236af6;
    font-weight: 700
}

.nav_link {
    position: relative;
    color: #888;
    margin-bottom: 1.5rem;
    transition: .3s
}

    .nav_link:hover {
        color: #236af6;
        border-left: 4px solid #236af6;
        transition: .2s ease-in-out
    }

.nav_icon {
    font-size: 1.25rem
}

.l-navbar.show {
    left: 0
}

.body-pd {
    padding-left: calc(var(--nav-width) + 1rem)
}

.nav_link.active {
    color: #236af6;
    border-left: 4px solid #236af6;
}

.active::before {
    content: '';
    position: absolute;
    left: 0;
    width: 2px;
    height: 32px;
    background-color: var(--white-color)
}

.height-100 {
    height: 100vh
}

.mr-1 {
    margin-right: 0.5rem;
}

.mr-2 {
    margin-right: 1rem;
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.text-left {
    text-align: left;
}

.text-justify {
    text-align: justify
}


.fs-12 {
    font-size: 12px;
}

.fs-14 {
    font-size: 14px;
}

.fs-16 {
    font-size: 16px;
}

.fs-18 {
    font-size: 18px;
}

.fs-20 {
    font-size: 20px;
}

.fs-22 {
    font-size: 22px;
}

.fs-24 {
    font-size: 24px;
}

.fs-26 {
    font-size: 26px;
}

@media screen and (min-width: 768px) {
    /* body {
        margin: calc(var(--header-height) + 1rem) 0 0 0;
        padding-left: calc(var(--nav-width) + 2rem)
    }*/

    .header {
        height: calc(var(--header-height) + 1rem);
        padding: 0 2rem 0 calc(var(--nav-width) + 2rem)
    }

    .header_img {
        width: 40px;
        height: 40px
    }

        .header_img img {
            width: 45px
        }

    .l-navbar {
        left: 0;
        padding: 1rem 1rem 0 0
    }

        .l-navbar.show {
            width: calc(var(--nav-width) + 156px)
        }

    .body-pd {
        padding-left: calc(var(--nav-width) + 188px)
    }
}

/*home css*/
.bg--02 {
    background-image: url(../img/background/background-home.jpg);
}

.bg--01, .bg--02, .bg--03, .bg--04, .bg--05, .bg--06, .bg--07, .bg--08 {
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.bg--fixed {
    background-attachment: scroll !important;
}

.bg--fixed, .bg--scroll {
    width: 100%;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.r-16 {
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    -o-border-radius: 16px;
    border-radius: 16px;
}


.bc-1-wrapper .section-overlay, .bc-4-wrapper .section-overlay, .bc-6-wrapper .section-overlay {
    padding: 40px 70px;
}

.section-overlay {
    width: 100%;
    height: 100%;
}

.section-overlay {
    width: 100%;
    height: 100%;
}

.bc-1-wrapper .img-block.left-column, .bc-2-wrapper .img-block.left-column {
    padding-right: 10px;
}

.bc-1-wrapper .img-block.left-column, .bc-2-wrapper .img-block.left-column {
    padding-right: 10px;
}

.img-block {
    text-align: center;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

.font--jakarta .section-id {
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.font--jakarta .section-id {
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.font--jakarta h1, .font--jakarta h2 {
    line-height: 1.25;
}

.section-id {
    display: block;
    font-size: 0.85rem;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 35px;
}

.section-id {
    display: block;
    font-size: 0.85rem;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.w-700 {
    font-weight: 700;
}

.s-46 {
    font-size: 2.875rem;
}

.s-36 {
    font-size: 1.875rem;
}

.s-24 {
    font-size: 1.5rem;
}

.fs-14 {
    font-size: 14px;
}

.about-2-img {
    overflow: hidden;
}

.text-end {
    text-align: right !important;
}

.pt-100 {
    padding-top: 100px;
}

.rel, section, .container {
    position: relative !important;
    z-index: 3;
}

.a-2-1 {
    margin-left: 13%;
    margin-bottom: 30px;
}

.r-12 {
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -o-border-radius: 12px;
    border-radius: 12px;
}

.a-2-2 {
    margin-left: -10%;
}

.a-2-3 {
    margin-right: -10%;
    margin-bottom: 30px;
}

.a2-txt-author {
    line-height: 1.45;
    font-weight: 500;
    margin-top: 18px;
    margin-bottom: 0;
}

.a2-txt {
    padding: 20px 30px 35px;
}

.color--white, .color--white h1, .color--white h2, .color--white h3, .color--white h4, .color--white h5, .color--white h6, .color--white p, .color--white a, .color--white li, .color--white i, .color--white span {
    color: #fff;
}

.pattern-01 {
    background-image: url(../img/background/pattern-01.png);
}

.pattern-01, .pattern-02, .pattern-03, .pattern-04, .pattern-05 {
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.bg--black-400 {
    background-color: #2e3648;
}

.o-20 {
    opacity: .2 !important;
}

.a2-txt-quote.ico-40 [class*="flaticon-"]:before, .a2-txt-quote.ico-40 [class*="flaticon-"]:after {
    font-size: 4.25rem;
}

.ico-40 [class*="flaticon-"]:before, .ico-40 [class*="flaticon-"]:after {
    font-size: 2.5rem;
}

span[class^="flaticon-"]:before, span[class*=" flaticon-"]:before {
    font-family: flaticon !important;
    font-style: normal;
    font-weight: normal !important;
    font-variant: normal;
    text-transform: none;
    font-size: 20px;
    line-height: 1 !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.flaticon-quote:before {
    content: "\f11d";
}

.cursor-pointer {
    cursor: pointer;
}