/*====================
  Font-Face 
====================*/
@font-face {
    font-family: Mulish;
    src: url(../fonts/Mulish-ExtraLight.ttf);
    font-weight: 200;
}

@font-face {
    font-family: Mulish;
    src: url(../fonts/Mulish-Light.ttf);
    font-weight: 300;
}

@font-face {
    font-family: Mulish;
    src: url(../fonts/Mulish-Regular.ttf);
    font-weight: 400;
}

@font-face {
    font-family: Mulish;
    src: url(../fonts/Mulish-Medium.ttf);
    font-weight: 500;
}

@font-face {
    font-family: Mulish;
    src: url(../fonts/Mulish-SemiBold.ttf);
    font-weight: 600;
}

@font-face {
    font-family: Mulish;
    src: url(../fonts/Mulish-Bold.ttf);
    font-weight: 700;
}

@font-face {
    font-family: Mulish;
    src: url(../fonts/Mulish-ExtraBold.ttf);
    font-weight: 800;
}

@font-face {
    font-family: Mulish;
    src: url(../fonts/Mulish-Black.ttf);
    font-weight: 900;
}

:root {
    --primary-color: #3B6C4A;
    --primary-dark: #2F563B;
    --darker-medium-color: #222222;
    --dark-color: #3D3D3D;
    --light-color: #FFFFFF;
    --darker-color: #000000;
    --modal-radius: 10px;
}

/* Basic */

* {
    outline: none;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Mulish";
    font-size: 14px;
    font-weight: normal;
    line-height: 1.5;
    color: var(--dark-color);
}

p {
    font-size: 14px;
    line-height: 1.4;
}

.theme-color {
    color: var(--primary-color);
}

h1,
.h1 {
    color: var(--darker-medium-color);
}


h3,
.h3,
h4,
.h4,
h6,
.h6 {
    color: var(--darker-medium-color);
}

    h4.small {
        font-size: 20px;
        line-height: 1.35;
    }

.fa-circle-check::before {
    background-image: url(../images/check-with-circle.png);
    width: 20px;
    height: 20px;
    content: "";
    display: block;
    background-position: center center;
}

.overlay-green > p,
.overlay-green > h1,
.overlay-green > h2,
.overlay-green > h3,
.overlay-green > h4,
.overlay-green > h5,
.overlay-green > h6 {
    color: #ffffff;
    position: relative;
    z-index: 1;
}

.basic-links {
    font-weight: 800;
    text-decoration: none;
    color: var(--primary-color);
    font-size: 15px;
    line-height: normal;
    display: flex;
    align-items: center;
}

    .basic-links img {
        width: 25px;
    }

.redirect-icon i {
    background: var(--primary-color);
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    border-radius: 25px;
    transform: rotate(-40deg);
    font-size: 12px;
}

.redirect-icon.large i {
    width: 35px;
    height: 35px;
    font-size: 18px;
}

.date-info {
    color: var(--dark-color);
    font-size: 15px;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    color: rgba(59, 108, 74, 1);
    background-color: rgba(59, 108, 74, 0.125);
    box-shadow: inset 0 calc(-1* var(--bs-accordion-border-width)) 0 rgba(59, 108, 74, 0.125);
}

    .accordion-button:not(.collapsed)::after {
        background-image: var(--bs-accordion-btn-icon);
    }

/*# Humburger */
.hamburger,
.hamburger-2 {
    position: relative;
    width: 1em;
    height: 1em;
    font-size: inherit;
    transition: all 0.3s ease;
    cursor: pointer;
}

    .hamburger.is-sm,
    .hamburger-2.is-sm {
        font-size: 1rem;
    }

    .hamburger.is-md,
    .hamburger-2.is-md {
        font-size: 1.5rem;
    }

    .hamburger.is-lg,
    .hamburger-2.is-lg {
        font-size: 2rem;
    }

.hamburger-line {
    position: absolute;
    right: 0;
    width: 100%;
    height: 2px;
    border-radius: 35px;
    background: currentColor;
    transition: inherit;
    color: #3D3D3D;
}

    .hamburger-line:nth-child(1) {
        top: 5px;
    }

.hamburger.is-active .hamburger-line:nth-child(1),
.w-nav-button.w--open .hamburger-line:nth-child(1),
.hamburger-2.is-active .hamburger-line:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotateZ(-135deg);
}

.hamburger-line:nth-child(2) {
    top: 0.438em;
}

.hamburger.is-active .hamburger-line:nth-child(2),
.hamburger-2.is-active .hamburger-line:nth-child(2),
.w-nav-button.w--open .hamburger-line:nth-child(2) {
    right: 50%;
    width: 0;
}

.hamburger-line:nth-child(3) {
    top: 17px;
}

.hamburger.is-active .hamburger-line:nth-child(3),
.hamburger-2.is-active .hamburger-line:nth-child(3),
.w-nav-button.w--open .hamburger-line:nth-child(3) {
    top: 50%;
    width: 100%;
    transform: translateY(-50%) rotateZ(135deg);
}

/* Table */

.table-responsive {
    box-shadow: 0px 2px 8px 0 rgba(0, 0, 0, 0.08);
    border-radius: 10px;
}

    .table-responsive table {
        margin-bottom: 0;
    }

.table thead th {
    background: #EBF0ED;
    font-weight: 800;
    color: #222222;
    line-height: normal;
    border-color: transparent;
}

.table tbody td {
    background: #FFFFFF;
    font-weight: 700;
    color: #3D3D3D;
    line-height: 1.5;
    border-color: rgba(0, 0, 0, .12);
}

.table tbody tr:last-child td {
    border-color: transparent;
}

.table td a,
.table td a {
    color: #3D3D3D;
    text-decoration: underline;
}

    .table td a.theme-color {
        color: var(--primary-color);
        text-decoration: underline;
    }

        .table td a.theme-color:hover {
            text-decoration: none;
        }

.table a:hover,
.table a:focus {
    color: var(--primary-color);
    text-decoration: none;
}

.table td span {
    display: inline-block;
}

    .table td span a {
        text-decoration: none;
    }

        .table td span a:hover {
            text-decoration: underline;
        }

/* List style */

ul.list-style_v1 {
    list-style: none;
    padding: 0;
    margin: 0;
    min-height: 155px;
}

ul.list-style_v2 {
    list-style: none;
    margin: 0;
    padding: 0;
}

ul.list-style_v1 li {
    display: flex;
    align-items: center;
    font-size: 15px;
    color: #222222;
    line-height: 24px;
    font-weight: 600;
    position: relative;
    padding-left: 28px;
}

ul.list-style_v1.small li {
    font-size: 15px;
}

ul.list-style_v1 li a {
    text-decoration: none;
    color: #222222;
    display: flex;
    align-items: center;
}

ul.list-style_v2 li {
    display: flex;
    align-items: center;
}

.stay-know-column h6 img {
    width: 50px;
}

ul.list-style_v2 li + li {
    margin-top: 16px;
}

ul.list-style_v1 li + li {
    margin-top: 8px;
}

ul.list-style_v1 li > i {
    width: 18px;
    height: 18px;
    background: var(--primary-color);
    font-size: 10px;
    color: #CDD7D0;
    position: absolute;
    left: 0;
    top: 3px;
}

ul.list-style_v1 li > a > i {
    width: 18px;
    height: 18px;
    background: var(--primary-color);
    font-size: 10px;
    color: #CDD7D0;
    position: absolute;
    left: 0;
}

.list-style_v3 ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

    .list-style_v3 ul li {
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: #EBF0ED;
        border-radius: 10px;
        padding: 12px 15px;
    }

        .list-style_v3 ul li h6,
        .list-style_v3 ul li p {
            margin: 0;
            font-size: 14px;
        }

        .list-style_v3 ul li h6 {
            color: #222222;
            font-weight: 900;
        }

        .list-style_v3 ul li p {
            color: #3D3D3D;
        }

            .list-style_v3 ul li p i {
                font-size: 20px;
            }

        .list-style_v3 ul li + li {
            margin-top: 10px;
        }

/* Tabber */

/* Tabbar section */

.tabbar-section nav {
    margin: 0 auto;
    display: flex;
    justify-content: center;
    width: 100%;
}

div#nav-tab {
    border: none;
}

.tabbar-section nav div#nav-tab {
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
}

    .tabbar-section nav div#nav-tab button.nav-link {
        width: calc(50% - 8px);
        border: none;
        padding: 10px 5px 15px 5px;
        margin: 0;
        position: relative;
        box-shadow: none;
    }

    .tabbar-section nav div#nav-tab::after {
        width: 100%;
        height: 2px;
        background-color: rgba(0, 0, 0, .2);
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        border-radius: 10px;
        z-index: -1;
        pointer-events: none;
    }

    .tabbar-section nav div#nav-tab button.nav-link.active::before {
        width: 100%;
        height: 2px;
        background-color: var(--primary-color);
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        border-radius: 10px;
        z-index: 1;
    }

    .tabbar-section nav div#nav-tab button.nav-link.active::after {
        content: "";
        background: transparent;
        width: 0;
        height: 0;
        display: block;
        position: absolute;
        bottom: 0;
        border-width: 10px 9px 0px 9px;
        border-style: solid;
        border-color: var(--primary-color) transparent transparent transparent;
        left: calc(50% - 9px);
        bottom: -10px;
        border-radius: 0;
    }

    .tabbar-section nav div#nav-tab button.nav-link h3 {
        margin-bottom: 0;
    }

    .tabbar-section nav div#nav-tab button.nav-link.active h3 {
        color: var(--primary-color);
    }

div#nav-tabContent {
    margin: 25px 0 0 0;
}

/* Tabbar End */

/* List Style End */

/* Basic End */

.heading {
    font-size: 28px;
    font-weight: 900;
    text-transform: uppercase;
    line-height: normal;
    position: relative;
    z-index: 1;
    display: inline-block;
    color: var(--darker-color);
    line-height: 110%;
}

    .heading.white {
        color: var(--light-color);
    }

.light-bg {
    background-color: rgba(59, 108, 74, 0.10);
}

.heading span {
    font-weight: 300;
}

.layout-spacing {
    padding: 40px 0;
}

.layout-spacing-small {
    padding: 30px 0;
}

.basic-blog-column h5 {
    color: #222222;
}

.basic-blog-column {
    background: rgba(59, 108, 74, 0.10);
    padding: 10px;
    border-radius: 8px;
    border: solid 1px rgba(59, 108, 74, 0.10);
}

.comment.right-section .basic-blog-column {
    background-color: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.25);
}

    .comment.right-section .basic-blog-column.active {
        background-color: rgba(59, 108, 74, 0.1235);
        border-color: rgba(59, 108, 74, 0.5);
    }

.comment.right-section h6 {
    font-weight: 600;
}

.basic-blog-column.active h6 {
    color: var(--primary-color);
    font-weight: 800;
}

.basic-blog-column a {
    text-decoration: none;
}

    .basic-blog-column a p {
        color: #222222;
    }

.basic-blog-column hr {
    border-color: rgba(0, 0, 0, 0.5);
}

.basic-blog-column h6 {
    font-size: 14px;
}

.basic-blog-column a:hover h6 {
    text-decoration: underline;
}

.basic-blog-column img {
    max-width: 100%;
    max-height: 240px;
    margin-bottom: 10px;
    object-fit: cover;
    min-height: 150px;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

.basic-blog-column h4.small {
    font-size: 16px;
    margin-bottom: 0;
    text-align: center;
}

.arrow-base {
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    flex-wrap: wrap;
    text-decoration: none;
    font-size: 20px;
}

.basic-blog-column p {
    font-size: 14px;
    line-height: normal;
    text-align: center;
    word-wrap: break-word;
}

.comment .basic-blog-column p {
    font-size: 13px;
}

.comment.right-section .basic-blog-column h6,
.comment.right-section .basic-blog-column p {
    text-align: left;
}

.basic-blog-column p + p {
    margin-top: 5px;
}

.basic-blog-column p a {
    color: #222222;
    text-decoration: none;
}

.arrow-base.right {
    transform: rotate(180deg);
}

.arrow-base.green {
    background-color: var(--primary-color);
}

.arrow-base.transparent {
    border: 1px solid #3B6C4A;
    color: #3B6C4A;
}

    .arrow-base.transparent:hover {
        background: #3B6C4A;
        color: #fff;
    }

.arrow-base.white {
    color: #3B6C4A;
    background: var(--light-color);
}

.arrow-base.dark {
    border: 1px solid #222;
    color: #fff;
    background: #222;
}

    .arrow-base.dark:hover {
        color: #222;
        background: transparent;
    }

.arrow-base .fa-arrow-right {
    transform: rotate(-40deg);
}

.arrow-base.border-outline {
    background: transparent;
    color: var(--primary-color);
    border: solid var(--primary-color) 2px;
}

.box-inner {
    text-align: center;
    position: relative;
}

    .box-inner h3 a {
        text-decoration: none;
    }

        .box-inner h3 a:hover {
            color: #3B6C4A;
        }

    .box-inner .name strong {
        font-size: 15px;
        font-weight: 500;
    }

    .box-inner hr {
        height: 2px;
    }

.btn.loadmore-btn {
    min-width: 165px;
}

.owl-carousel .owl-stage {
    display: flex;
    align-items: center;
}

.owl-carousel .owl-dots {
    display: flex;
    align-items: center;
    justify-content: center;
}

    .owl-carousel .owl-dots .owl-dot span {
        background: rgb(255 255 255 / 40%) !important;
    }

    .owl-carousel .owl-dots .owl-dot.active span,
    .owl-carousel .owl-dots .owl-dot:hover span {
        background: #fff !important;
        height: 10px;
        width: 10px;
    }

.banner-column-design {
    background: #1f482c;
    border: none;
    border-radius: 0;
}

    .banner-column-design > * {
        position: relative;
        z-index: 1;
    }

.banner-column-design {
    background-image: url(../images/slider-bg.webp);
    border: none;
    border-radius: 0;
    background-size: cover;
    position: relative;
}

    .banner-column-design::after {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        background: rgba(59, 108, 74, 0.75);
        opacity: 1;
        display: block;
        width: 100%;
        height: 100%;
    }

    .banner-column-design h3 {
        color: #ffffff;
    }

    .banner-column-design h3 {
        color: #ffffff;
        font-size: 28px;
        line-height: 100%;
        letter-spacing: 5px;
        text-align: center;
    }

        .banner-column-design h3:nth-child(2) {
            border-top: solid 2px #ffffff;
            padding: 10px 0;
            margin: 10px 0;
            font-size: 16px;
            width: max-content;
            margin-left: auto;
            margin-right: auto;
        }

.contact-info span.socials-icon-blog {
    font-size: 40px;
    margin: 0 15px;
}

/* header */
.header {
    z-index: 3;
    position: sticky;
    background: var(--light-color);
    padding: 8px 0 0;
    top: 0;
    box-shadow: 0 0 10px 0px rgba(0, 0, 0, .125);
}

    .header .logo {
        max-width: 165px;
        position: absolute;
        left: 0;
        top: 6px;
    }

    .header .dropdown:hover .dropdown-menu {
        top: 100%;
        padding: 0;
    }

    .header .navbar-toggler {
        border: 0;
        margin: 0;
    }

        .header .navbar-toggler:focus {
            outline: 0 !important;
            box-shadow: none !important;
        }

    .header .navbar-nav .nav-item .nav-link,
    .header .navbar-nav .nav-item .dropdown-item {
        color: #3D3D3D;
        font-weight: 800;
        font-size: 14px;
        text-transform: capitalize;
        background-color: transparent;
    }

    .header .navbar-nav .nav-item {
        border-bottom: 1px solid #dddddd;
        display: flex;
        align-items: center;
    }

        .header .navbar-nav .nav-item:last-child {
            margin-right: 0;
            margin-left: 12px;
        }

        .header .navbar-nav .nav-item .dropdown-menu li + li {
            border-top: 1px solid #ddd;
        }

        .header .navbar-nav .nav-item:last-child ul.dropdown-menu {
            left: auto;
            right: 0;
        }

.dropdown-menu {
    box-shadow: none;
    border: 0;
    margin-top: 0;
    padding-top: 0;
    border-radius: 0;
    box-shadow: 0px 5px 15px 0 rgba(0, 0, 0, .125);
}

    .dropdown-menu[data-bs-popper] {
        margin-top: 0;
        padding: 0;
    }

.right-dropdown .navbar-expand-lg .navbar-nav .dropdown-menu {
    left: auto;
}

.header .navbar-nav .nav-item .nav-link:hover,
.header .navbar-nav .nav-item .dropdown-item:hover {
    color: #3B6C4A;
}

.header .navbar-nav .nav-item .nav-link.active,
.header .navbar-nav .nav-item .dropdown-item.active {
    color: #3B6C4A;
    font-weight: 800;
    background-color: transparent;
}

.header .socials a {
    color: #fff;
    position: relative;
    background: #3B6C4A;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    height: 35px;
    width: 35px;
}

.sub-header {
    display: inline-flex;
    align-items: center;
    background: rgb(237, 237, 237);
    padding: 0;
    margin-top: 8px;
    width: 100%;
}

    .sub-header ul {
        display: flex;
        flex-wrap: wrap;
        list-style: none;
        margin: 0px;
        padding: 0px;
    }

        .sub-header ul li {
            font-size: 14px;
            font-weight: 800;
            line-height: normal;
            margin: 0;
            display: flex;
        }

            .sub-header ul li a {
                color: rgb(61, 61, 61);
                padding: 8px 14px;
                text-decoration: none;
                transition: 0.125s;
            }

            .sub-header ul li:first-child a {
                padding-left: 0;
            }

                .sub-header ul li:first-child a.active {
                    padding-left: 14px;
                }

            .sub-header ul li a:hover,
            .sub-header ul li a:focus {
                color: var(--primary-color);
            }

            .sub-header ul li a.active {
                color: #fff;
                background: var(--primary-color);
                opacity: 1;
            }

.header .socials a:hover {
    background: #222;
}

li.nav-item a.nav-link.dropdown-toggle::after {
    background-image: url(../images/down-icon.svg);
    width: 12px;
    height: 10px;
    background-repeat: no-repeat;
    border: none;
    background-position: center center;
    content: "";
    margin-left: 0;
    vertical-align: 0px;
    transition: ease 0.125s;
}

li.nav-item a.nav-link.dropdown-toggle.show::after {
    transform: rotate(180deg);
}

.floating-btn {
    display: flex;
    background: #CDD7D0;
    justify-content: center;
    align-items: center;
    border-radius: 10px 0 0 10px;
    color: #222222;
    font-size: 18px;
    line-height: normal;
    text-decoration: none;
    font-weight: 800;
    z-index: 2;
    position: fixed;
    padding: 18px 12px;
    height: auto;
    left: 0;
    writing-mode: vertical-lr;
    text-orientation: mixed;
    transform: rotate(180deg);
    top: 35%;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.44);
}

/* hero section */
.hero-banner {
    z-index: 1;
    margin-top: 0px;
    text-align: center;
    color: #fff;
    position: relative;
    background-image: url(../images/slider-bg.webp);
    background-size: cover;
    min-height: 250px;
    background-position: center center;
    background-repeat: no-repeat;
}

    .hero-banner::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 0;
        background: rgb(59, 108, 74, 0.82);
    }

    .hero-banner .detail {
        z-index: 1;
        position: relative;
    }

        .hero-banner .detail span {
            font-size: 35px;
            font-weight: 300;
            line-height: normal;
            text-transform: capitalize;
            color: white;
            /* animation: blink 1s steps(1) infinite, typing 1s steps(30) 1s 1 normal both; */
            /* width: 0; */
            overflow: hidden;
            white-space: nowrap;
            text-align: center;
            max-width: 100%;
            text-overflow: ellipsis;
        }

@keyframes blink {
    50% {
        border-color: transparent;
    }
}

@keyframes typing {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

.hero-banner .detail h2 {
    font-size: 30px;
    font-weight: 900;
    line-height: normal;
    font-style: italic;
    position: relative;
    color: #3B6C4A;
    background: var(--light-color);
    text-transform: uppercase;
    padding: 8px 20px;
    display: inline-block;
    margin: 0 auto;
    overflow: hidden;
    white-space: nowrap;
    text-align: center;
    max-width: 100%;
    text-overflow: ellipsis;
}

.hero-banner .detail a.btn {
    margin-left: auto;
    margin-right: auto;
}

.innovative-column {
    background: #CDD7D0;
    height: 100%;
    padding: 15px 20px;
    border-radius: 10px;
    display: flex;
    flex-flow: column;
    justify-content: space-between;
    align-items: flex-start;
    text-align: left;
    max-width: 100%;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

    .innovative-column ul.list-style_v1 li {
        text-overflow: ellipsis;
    }

    .innovative-column h3 + p {
        text-transform: uppercase;
    }

    .innovative-column span {
        width: calc(100% - 50px);
    }

    .innovative-column h6 {
        width: 100%;
    }

        .innovative-column h6 a {
            color: #222222;
            text-decoration: none;
            width: 100%;
            font-size: 15px;
        }

            .innovative-column h6 a:hover span,
            .innovative-column h6 a:focus span {
                text-decoration: underline;
            }

    .innovative-column p {
        color: #222222;
    }

    .innovative-column.small {
        padding: 16px 24px;
    }

    .innovative-column .redirect-icon i {
        color: #CDD7D0;
    }

.innovative-vector {
    width: 100%;
    text-align: center;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .innovative-vector img {
        height: 115px;
        max-width: 100%;
        object-fit: cover;
    }

.redirect-icon img {
    width: 45px;
}

.redirect-icon.green i {
    background: var(--primary-color);
}

.innovative-column h4 {
    margin: 10px 0 15px;
    color: #222222;
    font-weight: 800;
    line-height: normal;
    padding-right: 0;
    text-align: left;
    font-size: 16px;
}

/* end hero section */
/* Highlights section */
.highlights {
    background: url("/images/highlight-bg.jpg") no-repeat scroll center center;
    position: relative;
    z-index: 0;
    background-size: contain;
}

    .highlights .img-wrapper {
        height: 144px;
    }

        .highlights .img-wrapper img {
            width: auto;
            height: auto;
        }

    .highlights .points .owl-carousel .owl-dots {
        position: absolute;
        bottom: 60px;
        /* margin: 0 auto; */
        left: 0;
        right: 0;
    }

    .highlights .box-inner {
        background: #F5F8F6;
        height: 100%;
    }

.box-inner h3 {
    color: #ffffff;
    font-size: 20px;
}

.highlights .box-inner h3 {
    color: #222222;
}

    .highlights .box-inner h3 a {
        color: #3B6C4A;
    }

        .highlights .box-inner h3 a:hover {
            color: #3B6C4A;
        }

.highlights .box-inner p {
    color: #3d3d3d;
}

.highlights .box-inner .name {
    color: #3B6C4A;
}

    .highlights .box-inner .name strong {
        color: #151515;
    }

.highlights .box-inner hr {
    background: #3B6C4A;
}

.comment .box-inner p {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    color: #ffffff;
    min-height: 60px;
}

.teams nav#myTab a {
    color: #222222;
    font-size: 14px;
    font-weight: 500;
    padding: 10px 20px;
    margin-bottom: 0;
    border-radius: 10px;
    border-color: rgba(0, 0, 0, .08);
    border-style: solid;
    border-width: 1px 5px 1px 1px !important;
    line-height: 1.35;
}

    .teams nav#myTab a:focus {
        box-shadow: none;
    }

    .teams nav#myTab a + a {
        margin-top: 8px;
    }

    .teams nav#myTab a.nav-link.active {
        background: var(--primary-color);
        color: #ffffff;
    }

.teams .tab-pane ul {
    padding-top: 0;
}

/* End Highlights section */

/* Stay Know */

.form-section {
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
    height: 100%;
}

    .form-section h4 {
        color: var(--darker-color);
        line-height: normal;
    }

.video-blog-section {
    border-radius: 10px;
    position: relative;
}

    .video-blog-section a.video-button {
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        text-decoration: none;
        color: #fff;
    }

        .video-blog-section a.video-button h4 {
            color: #ffffff;
        }

        .video-blog-section a.video-button img {
            width: 100%;
            object-fit: cover;
            position: absolute;
            height: 100%;
            left: 0;
            top: 0;
            z-index: -1;
        }

.play-section {
    position: relative;
    z-index: 1;
    text-align: center;
}

.play-btn {
    width: 54px;
    height: 54px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 54px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: var(--primary-color);
    font-size: 20px;
    margin: 0 auto 20px;
}

    .play-btn > i {
        position: relative;
        top: 1px;
        left: 1px;
    }

.overlay-green {
    position: relative;
}

    .overlay-green::after {
        content: "";
        display: block;
        width: 100%;
        height: 100%;
        background: rgba(59, 108, 74, 0.85);
        position: absolute;
        top: 0;
        left: 0;
        z-index: -1;
    }

    .overlay-green.light::after {
        background: #7FBF92;
    }


.hero-form-section .form-section {
    border: solid rgba(0, 0, 0, .25) 1px;
}

.video-blog-section {
    border-radius: 10px;
    overflow: hidden;
    height: 100%;
    min-height: 240px;
    display: flex;
    align-items: center;
    padding: 0 20px;
}

#stay-know-section .video-blog-section {
    min-height: 300px;
}

.blog-section {
    background: #ffffff;
    height: 100%;
    border-radius: 10px;
    padding: 24px;
}

    .blog-section h4.small {
        font-size: 18px;
    }

.blog-content {
    padding: 20px 0 0;
}

.blog-preview-img img {
    width: 100%;
    border-radius: 10px;
    max-height: 215px;
    object-fit: cover;
}

/* End Stay Know */

/* How to Invest */

.video-wrapper hr {
    margin-left: auto;
    margin-right: auto;
}

/* End How to Invest */

/* Team section */
.teams {
    position: relative;
}

    .teams > div {
        z-index: 1;
        position: relative;
    }

    .teams .team-inner {
        margin-bottom: 10px;
        position: relative;
        background: linear-gradient(190deg, rgba(255, 255, 255, 1) 20%, rgba(59, 108, 74, 1) 75%, rgba(59, 108, 74, 1) 100%);
        border-radius: 130px;
        padding-top: 75px;
        overflow: hidden;
        transition: ease all 0.125s;
    }

    .teams .team-detail {
        position: absolute;
        bottom: -300px;
        opacity: 0;
        transition: bottom 1s ease;
        width: 80%;
        text-align: center;
        margin: 0 auto;
        left: 0;
        right: 0;
        color: #fff;
    }

    .teams .team-inner:hover {
        padding: 100px 0 0;
    }

        .teams .team-inner:hover .team-detail {
            bottom: 35px;
            opacity: 1;
        }

    .teams .center .team-detail {
        opacity: 1;
        bottom: 35px;
    }

    .teams .center .team-inner {
        padding: 80px 0 0;
        margin: 0 auto;
        height: 400px;
        text-align: center;
    }

        .teams .center .team-inner img {
            margin: 0 auto -60px;
            height: 345px;
            max-height: 345px;
            width: auto;
            object-fit: cover;
            height: 100%;
        }

    .teams .team-inner {
        max-width: 260px;
    }

        .teams .team-inner img {
            max-width: 100%;
            width: auto;
            margin: 0 auto -30px;
            max-height: 297px;
        }

        .teams .team-inner .name {
            text-align: center;
            font-weight: 900;
            font-size: 18px;
            line-height: 1.125;
            text-transform: capitalize;
            color: #fff;
            text-shadow: 0px 1px 2px #000;
            margin-bottom: 5px;
        }

        .teams .team-inner .position {
            font-weight: 400;
            text-shadow: 0px 1px 2px #000;
            line-height: normal;
            font-size: 15px;
        }

    .teams .owl-dots {
        margin-bottom: 30px;
    }

    .teams .owl-carousel .owl-stage-outer {
        margin-bottom: 30px;
    }

#carousel-teams {
    margin: 0;
}

/* End Team section */
/* Comment section */

.comment .box {
    background: url(../images/comment-bg.jpg) no-repeat scroll center center;
    background-size: cover;
    position: relative;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
    padding: 20px;
}

    .comment .box:after {
        background: rgba(59, 108, 74, 0.95);
        content: "";
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

.comment.right-section .box {
    background: rgba(59, 108, 74, 0.10);
    padding: 15px;
}

.comment .box-inner {
    color: #fff;
    height: 100%;
    position: relative;
    z-index: 1;
    padding-bottom: 65px;
}

.comment.right-section .box-inner {
    padding: 20px;
}

.comment.right-section .box-inner {
    background-color: rgba(255, 255, 255, 0.875);
}

.comment .box-inner a {
    text-decoration: none;
}

.comment .box-inner h3 a {
    color: #fff;
}

.comment.right-section .box-inner p {
    color: #222222;
}

.comment.right-section .box-inner hr {
    height: 2px;
    background-color: #555;
}

.comment .box-inner .name {
    position: relative;
    padding-left: 0;
    font-size: 16px;
    line-height: normal;
    font-weight: 600;
    text-transform: capitalize;
    display: flex;
    align-items: center;
}

.bottom-section {
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
}

.user-vector {
    width: 30px;
    height: 30px;
    display: block;
    margin-right: 10px;
    position: relative;
}

    .user-vector img {
        border-radius: 10px;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

/* End Comment section */


/* videos section */
.video-wrapper {
    position: relative;
}

.video {
    position: relative;
    width: 100%;
    gap: 24px;
}

    .video .box {
        height: 100%;
        flex: 1;
        overflow: hidden;
        cursor: pointer;
        border-radius: 10px;
        transition: all .5s;
        display: flex;
        justify-content: center;
        position: relative;
    }

        .video .box:hover {
            flex: 2;
        }

            .video .box:hover .box-inner {
                display: flex;
            }

    .video .box-inner {
        display: flex;
        flex-flow: column;
        justify-content: center;
        align-items: center;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        color: #FFFFFF;
        vertical-align: bottom;
        padding: 30px 15px;
    }

        .video .box-inner > * {
            position: relative;
            z-index: 1;
        }

        .video .box-inner::after {
            background: rgba(59, 108, 74, 0.85);
            content: "";
            display: block;
            position: absolute;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            opacity: 0.3;
            cursor: pointer;
            transition: ease all 0.125s;
        }

    .video .box:hover .box-inner::after {
        opacity: 1;
        visibility: visible;
    }

    .video .box-inner h4 a {
        color: #fff;
    }

    .video .box-inner h4 {
        color: #fff;
        font-weight: 700;
        line-height: 1.25;
        text-align: center;
        margin-bottom: 0;
        transition: ease all 0.125s;
    }

    .video .box .arrow-base.white {
        position: absolute;
        bottom: 40px;
        opacity: 0.8;
    }

    .video .box-inner .arrow-base.white {
        position: relative;
        top: 0;
        left: 0;
        margin: 0 auto 20px;
        font-size: 100%;
    }

    .video .box-inner p {
        text-align: center;
        margin-bottom: 0;
        max-width: 360px;
        opacity: 0;
        visibility: hidden;
        display: none;
        transition: ease all 0.125s;
    }

.video-wrapper hr {
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    visibility: hidden;
    display: none;
    transition: ease all 0.125s;
}

.video .box:hover hr {
    opacity: 1;
    visibility: visible;
    display: block;
}

.video .box:hover p {
    opacity: 1;
    visibility: visible;
    display: block;
}

.video .box img {
    height: 300px;
    width: 100%;
    object-fit: cover;
}


/* end video section */

/* Strategies section */

.strategies .strate-box {
    padding: 35px 20px;
    background: rgba(59, 108, 74, 0.10);
    width: 100%;
    border-radius: 10px;
    position: relative;
    margin-bottom: 30px;
    text-align: center;
}

    .strategies .strate-box img {
        max-width: 100%;
    }

    .strategies .strate-box h3 {
        color: #222222;
        font-size: 16px;
        line-height: 20px;
    }

        .strategies .strate-box h3 a {
            color: #222222;
            text-decoration: none;
            font-weight: 600;
        }

    .strategies .strate-box .arrow-base {
        font-size: 14px;
    }

    .strategies .strate-box h3 a:hover {
        color: #3B6C4A;
    }


/* end Strategies section */


.footer {
    background: url("../images/footer-bg.jpg") no-repeat scroll center center;
    background-size: cover;
    color: #fff;
    text-align: center;
    position: relative;
}

    .footer::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 0;
        background: rgb(59, 108, 74, 0.95);
    }

    .footer > div {
        z-index: 1;
        position: relative;
    }

    .footer ul {
        list-style: none;
    }

        .footer ul li {
            margin-bottom: 15px;
        }

            .footer ul li a {
                color: #fff;
                text-decoration: none;
                font-size: 15px;
                position: relative;
            }

                .footer ul li.active a,
                .footer ul li a:hover {
                    font-weight: 600;
                }

                .footer ul li a::after {
                    content: " ";
                    width: 22px;
                    position: absolute;
                    height: 13px;
                    top: 5px;
                    right: -28px;
                    background: url("../images/arrow2.svg") no-repeat scroll center center;
                    background-size: contain;
                    display: none;
                }

                .footer ul li.active a::after,
                .footer ul li a:hover::after {
                    display: block;
                }

footer h4 {
    padding-bottom: 15px;
    color: #ffffff;
}

.footer h4::after {
    content: "";
    width: 100px;
    position: absolute;
    height: 1px;
    bottom: 0;
    left: 0px;
    background: #fff;
}

.footer .socials .detail a {
    text-decoration: none;
    font-size: 15px;
    color: #fff;
    margin-bottom: 15px;
}

    .footer .socials .detail a i {
        width: 30px;
        text-align: left;
        position: relative;
        top: 5px;
    }

    .footer .socials .detail a br {
        display: none;
    }

    .footer .socials .detail a:hover {
        text-shadow: 1px 1px 0px rgba(0, 0, 0, .25);
    }

.footer .socials .social-brand a {
    color: #3B6C4A;
    position: relative;
    background: #fff;
    display: flex;
    align-items: center;
    border-radius: 100%;
    height: 35px;
    width: 35px;
    justify-content: center;
}

    .footer .socials .social-brand a i {
        font-size: 18px;
        position: relative;
        top: 2px;
    }

    .footer .socials .social-brand a:hover {
        border: 1px solid #fff;
        color: #fff;
        background: transparent;
    }

.footer .copyright p {
    border-top: 1px solid rgb(255 255 255 / 30%);
}

/*# Inner page */

.innerpage-hero-section .banner-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

    .innerpage-hero-section .banner-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.innerpage-hero-section h4 {
    color: #ffffff;
}

.pdf-section {
    border-radius: 10px;
}

    .pdf-section > iframe {
        width: 100%;
        height: 840px;
        position: relative;
    }

.back-arrow {
    background: #000;
    color: #fff;
    font-size: 20px;
}

/*# Modal Form */

.modal .form-control,
.modal .form-select {
    border-radius: 48px;
}

.modal p {
    color: var(--darker-color);
}

/* Menu collapse */


.video-section img {
    max-width: 720px;
    margin: 0 auto;
    width: 100%;
}

.video-section {
    width: 100%;
    background: #2B663D;
    text-align: center;
}

.hero-status-column {
    background: #CDD7D0;
    border-radius: 10px;
    padding: 24px 24px;
    height: 100%;
}

    .hero-status-column p {
        color: var(--darker-medium-color);
    }

        .hero-status-column p.small {
            font-size: 12px;
            color: var(--darker-medium-color);
        }

.video-blog {
    position: relative;
    background: #CDD7D0;
    border-radius: 10px;
    height: 100%;
}

    .video-blog.video-list {
        background-color: transparent;
        padding: 0;
        margin-top: 20px;
    }

    .video-blog img {
        border-radius: 10px;
        width: 100%;
        object-fit: cover;
        min-height: 165px;
        max-height: 100%;
        height: 100%;
    }

    .video-blog a.play-btn {
        position: absolute;
        bottom: 20px;
        right: 40px;
    }

.stay-know-column {
    padding: 15px 24px;
    background: #CDD7D0;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    /*align-items: center;*/
    min-height: 185px;
    height: 100%;
}

    .stay-know-column ul {
        width: 100%;
    }

    .stay-know-column.min-height-auto {
        min-height: auto;
    }

.min-height-auto ul.list-style_v1 {
    min-height: auto;
}

.back-arrow + span {
    width: calc(100% - 75px);
}

.market-status-section {
    position: relative;
}

    .market-status-section::before {
        width: 100%;
        height: 202px;
        background-color: rgba(59, 108, 74, 0.10);
        border-radius: 10px;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        min-height: 202px;
        content: "";
        z-index: -1;
        pointer-events: none;
    }

.market-status-info {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, .10);
    position: relative;
    z-index: 1;
}

    .market-status-info h3 {
        color: #222222;
    }

.custom-border {
    background-image: url(../images/border-custom.png);
}

.custom-border {
    background-image: url(../images/border-custom.png);
    background-repeat: no-repeat;
    background-position: bottom left;
    padding-bottom: 20px;
}

.inner-column p i {
    font-size: 20px;
    line-height: normal;
}

.inner-column i.fa-sort-down::before {
    position: relative;
    top: -3px;
}

.graph-section {
    border-radius: 10px;
}

.graph {
    background: #ffffff;
    border-radius: 0;
    padding: 24px 20px;
    box-shadow: 0 0 8px 0px rgba(0, 0, 0, 0.08);
}

.emply-img {
    width: 100%;
    text-align: center;
}

.emply-info {
    margin-top: 15px;
    margin-bottom: 20px;
}

.modal-xl {
    max-width: 1440px;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}

#eft-funds-popup .modal-xl {
    max-width: 1040px;
}

span.icon-contact {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    border-radius: 45px;
    margin-bottom: 10px;
}

.contact-info {
    border-radius: 10px;
    margin: 0 auto;
}

    .contact-info a {
        font-size: 15px;
        text-decoration: none;
        color: #222222;
        padding: 0 5px;
        text-align: center;
    }

.innerpage-hero-section ul.list-style_v3 {
    color: #ffffff;
    margin: 10px 0 0;
    font-size: 14px;
    font-weight: 600;
}

    .innerpage-hero-section ul.list-style_v3 li {
        flex: 0 1 calc(50% - 10px);
        margin-top: 5px;
    }

    .innerpage-hero-section ul.list-style_v3 + ul.list-style_v3 li {
        flex: 0 1 calc(100% - 10px);
    }

/* 
.innerpage-hero-section ul.list-style_v3 li+li {
  margin-top: 5px;
} */

.header .navbar-nav .nav-item ul.dropdown-menu li ul {
    list-style: none;
    margin: 0;
    padding: 0;
    background: rgba(0, 0, 0, .05);
    border-top: solid 1px #dddddd;
}

    .header .navbar-nav .nav-item ul.dropdown-menu li ul li a {
        font-size: 13px;
        font-weight: 600;
        padding-left: 30px;
        padding-top: 5px;
        padding-bottom: 5px;
    }

    .header .navbar-nav .nav-item ul.dropdown-menu li ul li:last-child {
        border-bottom-color: transparent;
    }

.video-img-preview span.play-btn.small {
    width: 40px;
    height: 40px;
    position: absolute;
    top: calc(50% - 30px);
    left: calc(50% - 20px);
    margin: 0;
}

.video-img-preview span.play-btn {
    position: absolute;
    top: calc(50% - 27px);
    left: calc(50% - 27px);
    margin: 0;
}

.video-img-preview a {
    text-decoration: none;
}

.video-img-preview {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.video-content h5 {
    padding-right: 20px;
    margin-top: 10px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    font-size: 16px;
}

.comment-section a:hover,
.comment-section a:focus {
    text-decoration: none;
}

.modal-body .video-blog img {
    height: auto;
    min-height: 420px;
}

.video-content {
    padding-top: 0px;
}

.modal .video-content {
    padding-top: 20px;
    padding-bottom: 10px;
}

.video-content h5 + p {
    font-size: 14px;
}

.single-max-line {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
}

.table thead th,
.table tbody td {
    padding: 12px 15px;
    vertical-align: middle;
    font-size: 14px;
}

.note-section {
    padding: 12px 15px;
    background: rgba(0, 0, 0, 0.045);
    border: solid rgba(0, 0, 0, 0.0725) 1px;
    border-radius: 8px;
}

    .note-section p {
        font-size: 12px;
        color: rgba(0, 0, 0, 0.75);
        font-weight: 500;
        line-height: 1.5;
        margin-bottom: 8px;
    }

.open .menu-icon-toggle,
.open .menu-cross-icon-toggle {
    visibility: visible;
    opacity: 1;
    transform: rotate(0deg);
}

.menu-cross-icon-toggle {
    display: none;
}

.floatingButton.open .menu-cross-icon-toggle {
    display: block;
}

.floatingButton.open .menu-icon-toggle {
    display: none;
}

.latest-comment-section span {
    display: inline-block;
}

.latest-comment-section {
    margin-top: 16px;
    margin-bottom: 16px;
}

    .latest-comment-section .max-content {
        display: block;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        line-clamp: 3;
        -webkit-box-orient: vertical;
    }

    .latest-comment-section span:first-child a.theme-color {
        width: 100%;
        text-overflow: ellipsis;
        overflow: hidden;
        white-space: nowrap;
        display: inline-block;
    }

.error-info {
    font-size: 135px;
    line-height: 100%;
    color: var(--darker-color);
    font-weight: 900;
    letter-spacing: 0px;
    font-family: monospace;
}

.error-content {
    line-height: 1.5;
    font-size: 20px;
}

.basic-error,
.basic-error a {
    font-size: 16px;
    font-weight: 500;
}

ul.error-list {
    list-style: none;
    line-height: 24px;
    margin: 20px 0;
    padding: 0;
    margin-left: 0;
    margin-right: 0;
    width: fit-content;
    text-align: left;
    font-size: 15px;
    font-weight: 500;
}

    ul.error-list li + li {
        margin-top: 5px;
        list-style: inside;
    }

.error-section {
    min-height: 495px;
    display: flex;
    align-items: center;
}

/* Floating Button */
.floatingButtonWrap {
    position: fixed;
    bottom: 0;
    right: 20px;
    z-index: 99;
    display: inline-block;
    opacity: 0;
    transition: ease all 0.25s;
}

    .floatingButtonWrap.sticky {
        bottom: 20px;
        opacity: 1;
    }

.floatingButtonInner {
    position: relative;
    display: inline-block;
}

.floatingButton {
    display: flex;
    width: 50px;
    height: 50px;
    text-align: center;
    background: #222222;
    color: #ffffff;
    line-height: normal;
    border-radius: 50px;
    transition: all 0.4s;
    text-decoration: none;
    justify-content: center;
    align-items: center;
    font-size: 24px;
}

    .floatingButton .hamburger-line {
        background-color: #ffffff;
    }

        .floatingButton .hamburger-line:last-child::after {
            background: #000000;
            content: "";
            display: block;
            position: absolute;
            right: 0;
            top: 0;
            width: 8px;
            height: 2px;
            border-radius: 2px;
        }

    .floatingButton.open,
    .floatingButton:hover,
    .floatingButton:focus,
    .floatingButton:active {
        opacity: 1;
        color: #fff;
    }

        .floatingButton.open .hamburger-line:last-child::after {
            display: none;
        }

    .floatingButton .fa {
        transform: rotate(0deg);
        transition: all 0.4s;
        position: relative;
        top: -1px;
    }

    .floatingButton.open .fa {
        transform: rotate(270deg);
    }

.floatingMenu {
    position: absolute;
    bottom: 50px;
    right: 0px;
    display: none;
}

    .floatingMenu li {
        float: right;
        list-style: none;
        text-align: right;
        margin-bottom: 0;
        clear: both;
        width: 100%;
    }

        .floatingMenu li + li {
            margin-top: 5px;
        }

        .floatingMenu li a {
            padding: 8px 15px;
            background: #def1e4;
            color: #222222;
            border-radius: 10px;
            font-weight: 700;
            overflow: hidden;
            white-space: nowrap;
            transition: all 0.125s;
            text-decoration: none;
            box-shadow: 0px 1px 1px 0 rgba(0, 0, 0, .25);
        }

.form-heading {
    background: #eee;
    padding: 10px 20px;
    font-size: 18px;
}

.video-blog.hero-video-btn span.play-btn {
    width: 70px;
    height: 70px;
    left: calc(50% - 35px);
    top: calc(50% - 35px);
    background: transparent;
    border: solid #fff 3px;
    color: #ffffff;
    font-size: 30px;
    border-radius: 120px;
}

.video-blog.hero-video-btn {
    height: auto;
    background-color: transparent;
    position: relative;
    left: 0;
}

.hero-form-section::after {
    height: 62%;
}

.hero-form-section.v2:after {
    height: 100%;
}

.hero-form-section.v2 {
    z-index: 1;
    position: relative;
    background-image: url(../images/slider-bg.webp);
    background-size: cover;
    min-height: 250px;
    background-position: center center;
    background-repeat: no-repeat;
}

    .hero-form-section.v2 .video-blog.hero-video-btn {
        border: solid #CDD7D0 6px;
    }

.hero-form-section h4.form-heading {
    margin-bottom: 16px !important;
}

.hero-form-section form hr {
    margin: 0.5rem 0;
}

/* Floating End */

/*--------------------------------------
  Responsive CSS 
--------------------------------------*/

@media (min-width:575px) {
    .heading {
        max-width: 100%;
    }

    .header .socials a {
        width: 40px;
        height: 40px;
    }

    .strategies .strate-box {
        width: 48%;
        text-align: left;
    }

        .strategies .strate-box .arrow-base {
            right: 30px;
            bottom: 20px;
            position: absolute;
        }

    .teams .owl-dots {
        margin-bottom: 0;
    }
}

@media (min-width: 768px) {

    .basic-links {
        font-size: 16px;
    }

    .teams nav#myTab a {
        border-radius: 10px 0 0 10px;
        font-size: 15px;
        padding: 12px 24px;
        border: solid rgba(0, 0, 0, .08) 1px;
    }

    .hero-banner .detail span,
    .hero-banner .detail h2 {
        font-size: 40px;
        line-height: 40px;
        text-align: center;
    }

    .box-inner {
        text-align: left;
        margin-bottom: 0px;
    }

    .highlights .points .owl-carousel .owl-dots {
        bottom: -60px;
    }

    .heading {
        font-size: 32px;
    }

    .innovative-column p {
        padding-right: 0;
    }

    .highlights .owl-carousel .owl-stage {
        align-items: stretch;
    }

    .video .box-inner .arrow-base.white {
        margin: 0 0 20px;
    }

    .footer {
        text-align: left;
    }

    .strategies .strate-box:nth-child(2n) {
        margin-top: 30px;
        margin-bottom: 0;
    }
}

@media (min-width: 992px) {

    .header .logo {
        position: relative;
        left: auto;
        top: auto;
    }

    .header .dropdown:hover .dropdown-menu,
    .header .dropdown:focus .dropdown-menu {
        display: block;
    }

    li.nav-item:hover a.nav-link.dropdown-toggle::after,
    li.nav-item:focus a.nav-link.dropdown-toggle::after {
        transform: rotate(180deg);
    }

    .header .navbar-nav .nav-item {
        border-bottom: 0;
    }

    .header .navbar-expand-lg .navbar-collapse {
        justify-content: end;
    }

    .header .navbar-expand-lg .socials {
        order: 1;
    }

    .hero-banner .detail span,
    .hero-banner .detail h2 {
        font-size: 30px;
        line-height: normal;
        margin-left: 0;
    }

    .hero-banner .detail span,
    .hero-banner .detail h2 {
        text-align: left;
    }

    .hero-banner .detail a.btn {
        margin-left: 0;
    }

    .innovative-column h4 {
        text-align: left;
    }

    .strategies .strate-box h3 {
        font-size: 20px;
        line-height: 30px;
    }

    .strategies .strate-box .arrow-base {
        height: 46px;
        width: 46px;
    }

    .strategies .strate-box {
        padding: 35px 50px;
    }

        .strategies .strate-box .arrow-base {
            font-size: 16px;
        }

    .header .navbar-nav .nav-item .dropdown-item {
        padding: 8px 15px;
    }

    .video-blog.hero-video-btn span.play-btn {
        width: 90px;
        height: 90px;
        left: calc(50% - 45px);
        top: calc(50% - 45px);
        font-size: 45px;
    }
}


@media (min-width: 1200px) {

    /* Basic */
    p {
        font-size: 15px;
    }

    .stay-know-column h6 {
        font-size: 18px;
    }

        .stay-know-column h6 img {
            width: 65px;
        }

    .comment .box {
        padding: 24px;
    }

    /* Popup style */
    #thematic-strategies .innovative-column.small {
        padding: 20px;
    }

    .video-blog.large img {
        max-height: 190px;
        min-height: 278px;
    }

    /* Header */

    .heading {
        font-size: 40px;
        line-height: 100%;
    }

    .innerpage-hero-section .heading {
        font-size: 32px;
        line-height: 125%;
    }

        .innerpage-hero-section .heading + h4 {
            font-size: 18px;
        }

    .header {
        padding: 8px 0 0;
    }

        .header .logo {
            max-width: 200px;
        }

        .header .navbar-nav .nav-item .nav-link {
            font-size: 15px;
        }

        .header .navbar-nav .nav-item:last-child {
            margin-left: 10px;
        }

        .header .navbar-nav .nav-item {
            margin: 0 4px;
        }

    .hero-banner .detail h2 {
        line-height: 100%;
        padding: 10px 20px;
    }

    .floating-btn {
        font-size: 18px;
        padding: 24px 14px;
    }

    .innovative-column {
        max-width: 100%;
    }

    .hero-banner.layout-spacing {
        padding: 30px 0;
    }

    .innerpage-hero-section.layout-spacing {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .comment .box-inner .arrow-base {
        height: 45px;
        width: 45px;
    }

    .video .box .arrow-base.white {
        width: 54px;
        height: 54px;
        font-size: 30px;
    }

    .blog-content {
        padding: 24px 0 0;
    }

    .hero-status-column p {
        font-size: 15px;
        letter-spacing: -0.1px;
    }

    .footer .socials .detail a br {
        display: block;
    }

    .strategies .strate-box .arrow-base {
        font-size: 20px;
    }

    .back-arrow {
        width: 45px;
        height: 45px;
    }

    .arrow-base {
        font-size: 21px;
    }

    ul.list-style_v1 li {
        font-size: 16px;
    }

    .custom-border {
        padding-bottom: 15px;
    }

    .modal-body .video-blog img {
        height: 350px;
    }
}

@media (min-width: 992px) {

    #eft-funds-popup .innovative-column h3 + p {
        padding-right: 10px;
        max-width: 300px;
    }
}

@media (min-width: 1400px) {

    /* Basic */
    .modal p {
        font-size: 15px;
    }

        .modal p.small {
            font-size: 12px;
        }

    .accordion-body p {
        font-size: 15px;
    }

    p.text-upparcase {
        font-size: 15px;
    }

    .stay-know-column h6 img {
        width: 75px;
    }

    .hero-banner .detail span,
    .hero-banner .detail h2 {
        font-size: 40px;
    }

    .innovative-column h3 + p {
        padding-right: 40px;
        max-width: 300px;
    }

    #thematic-strategies .innovative-column h4 {
        font-size: 16px;
    }

    .list-style_v3 ul li h6,
    .list-style_v3 ul li p {
        font-size: 15px;
    }

    /* Header */

    .strategies .strate-box .arrow-base {
        font-size: 24px;
    }

    .hero-form-section::after {
        height: 72%;
    }

    /*# Hero section */

    .modal-body .video-blog img {
        height: 440px;
    }

    /*# Footer section */
    .footer .socials .detail a {
        font-size: 16px;
    }

    .footer ul li a {
        font-size: 16px;
    }
}

@media (min-width: 1800px) {
    .hero-form-section::after {
        height: 85%;
    }
}

@media (min-width: 1920px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1820px;
    }

    /* Basic */
    p {
        font-size: 16px;
    }

    .header .navbar-nav .nav-item .nav-link {
        font-size: 16px;
    }

    .basic-blog-column h6 {
        font-size: 15px;
    }

    .hero-banner.layout-spacing {
        padding: 40px 0;
    }

    .modal p {
        font-size: 15px;
    }

    .accordion-body p {
        font-size: 15px;
    }

    p.text-upparcase {
        font-size: 15px;
    }

    .date-info {
        font-size: 18px;
    }

    ul.list-style_v2 li + li {
        margin-top: 24px;
    }

    .stay-know-column h6 img {
        width: 75px;
    }

    .table thead th,
    .table tbody td {
        padding: 20px;
        font-size: 15px;
        vertical-align: middle;
    }

    .hero-banner .detail span,
    .hero-banner .detail h2 {
        font-size: 48px;
    }

    .innovative-column h4 {
        font-size: 18px;
    }

    #thematic-strategies .innovative-column h4 {
        font-size: 16px;
    }

    /* Header */
    .comment .box {
        padding: 30px 40px 30px;
    }

    .strategies .strate-box .arrow-base {
        font-size: 24px;
    }

    /*# Hero section */

    .blog-section {
        padding: 30px;
    }

    .blog-content {
        padding: 30px 0 0;
    }

    ul.list-style_v1 li {
        font-size: 18px;
    }

    .modal-body .video-blog img {
        height: 440px;
    }

    /*# Footer section */
    .footer .socials .detail a {
        font-size: 16px;
    }

    .footer ul li a {
        font-size: 16px;
    }

    .footer .socials .social-brand a i {
        font-size: 20px;
    }

    .video-blog.hero-video-btn span.play-btn {
        width: 120px;
        height: 120px;
        left: calc(50% - 60px);
        top: calc(50% - 60px);
        font-size: 60px;
    }
}

@media (min-width: 1041px) {
    .floating-btn {
        font-size: 20px;
        padding: 20px 14px;
    }
}

@media (min-width: 1500px) {
    .floating-btn {
        font-size: 20px;
        padding: 24px 16px;
    }
}

@media (min-width: 1620px) {
    .floating-btn {
        font-size: 24px;
        padding: 24px 16px;
    }
}

@media (min-width: 1960px) {
    .floating-btn {
        font-size: 32px;
        padding: 28px 18px;
    }
}

@media (min-width: 2300px) {
    .floating-btn {
        font-size: 36px;
        padding: 30px 20px;
    }
}


@media (min-width: 3200px) {
    .floating-btn {
        font-size: 38px;
        padding: 32px 22px;
    }
}

@media (min-width: 3260px) {
    .floating-btn {
        font-size: 48px;
        padding: 42px 24px;
    }
}

@media (max-width: 1199px) {

    .h3,
    h3 {
        font-size: calc(1.3rem + .165vw);
    }

    .innovative-column h4 {
        font-size: 18px;
    }

    .footer p {
        font-size: 15px;
    }

    .header .navbar-nav .nav-item .nav-link,
    .header .navbar-nav .nav-item .dropdown-item {
        font-size: 13px;
        padding-left: 6px;
        padding-right: 6px;
    }

    .sub-header ul li {
        font-size: 13px;
    }

    #eft-funds-popup ul.list-style_v1.small li {
        font-size: 14px;
    }

    #eft-funds-popup ul.list-style_v1 li {
        padding-left: 24px;
    }
}

@media (max-width:991px) {
    .header .navbar-nav .nav-item .nav-link {
        width: 100%;
    }

    .header .navbar-nav .nav-item .dropdown-item {
        width: 100%;
        padding-left: 8px;
        padding-right: 8px;
        padding-top: 8px;
        padding-bottom: 8px;
        font-size: 13px;
        width: 100%;
        white-space: normal;
    }

    .hero-banner .detail span,
    .hero-banner .detail h2 {
        margin-left: auto;
        margin-right: auto;
    }

    .header .logo {
        max-width: 150px;
    }

    .sub-header ul li a {
        padding-left: 0;
        padding-right: 20px;
    }

        .sub-header ul li a.active {
            padding-left: 20px;
        }

        .sub-header ul li a.active {
            padding-left: 20px;
            margin-right: 20px;
        }

    li.nav-item a.nav-link.dropdown-toggle::after {
        right: 0;
        position: absolute;
        top: 13px;
    }

    .header .navbar-nav .nav-item {
        display: flex;
        flex-flow: column;
    }

    .header .dropdown .dropdown-menu {
        border-top: solid #ddd 1px;
        width: 100%;
        box-shadow: none;
    }

    .header .navbar-nav .nav-item:last-child {
        margin-right: 0;
        margin-left: 0;
        border-bottom: 0;
        margin-top: 0;
    }

    .innovative-column h4 {
        font-size: 20px;
    }

    h4.small {
        font-size: 18px;
    }

    .innerpage-hero-section ul.list-style_v3 li {
        flex: 0 1 calc(50% - 10px);
    }

    .innerpage-hero-section ul.list-style_v3 + ul.list-style_v3 {
        margin-top: 0;
    }

    /* Responsive Menu Style */
    .navbar-collapse {
        position: fixed;
        top: 0;
        left: -340px;
        max-width: 320px;
        height: 100% !important;
        width: 100%;
        min-height: 100vh;
        background: #FFFFFF;
        padding: 10px 20px;
        overflow: auto;
        transition: ease all 0.15s;
        z-index: 1;
    }

        .navbar-collapse.show {
            left: 0;
            box-shadow: 0 0 10px rgba(0, 0, 0, .15);
        }

    .basic-blog-column p {
        font-size: 13px;
    }


    .table thead th,
    .table tbody td {
        padding: 10px 12px;
        vertical-align: middle;
        font-size: 13px;
    }

    .video-blog img {
        border-radius: 10px;
        width: 100%;
        object-fit: cover;
        min-height: 185px;
        max-height: 265px;
    }

    .innovative-column h3 + p {
        padding-right: 0;
    }

    .video-blog-section a.video-button img {
        position: relative;
    }

    #stay-know-section .video-blog-section {
        padding: 0;
    }

        #stay-know-section .video-blog-section a.video-button {
            padding: 0;
        }

            #stay-know-section .video-blog-section a.video-button .play-section {
                position: absolute;
                width: 100%;
                height: 100%;
                display: flex;
                align-items: center;
                justify-content: center;
            }

                #stay-know-section .video-blog-section a.video-button .play-section span.play-btn {
                    margin: 0;
                }

    #stay-know-section .video-blog-section {
        min-height: auto;
    }
}

@media (max-width:768px) {

    .hero-banner .detail .d-left {
        text-align: left;
    }

    h4,
    .h4 {
        font-size: 20px;
    }

    .highlights .img-wrapper img {
        margin: 0 auto;
    }

    .comment .box-inner .name {
        width: 100%;
    }

    .modal .innovative-column {
        max-width: 100%;
    }

    footer a.logo img {
        width: 200px;
    }

    .emply-img img {
        height: 200px;
    }

    .tab-content {
        padding-top: 20px;
    }

    .layout-spacing {
        padding: 30px 0;
    }

    .innerpage-hero-section ul.list-style_v3 li {
        flex: 0 1 calc(100% - 10px);
    }
}

@media (max-width: 767px) {

    ul.list-style_v1 {
        min-height: auto;
    }

        ul.list-style_v1.small li {
            font-size: 14px;
        }

    .innovative-column {
        max-width: 320px;
    }

    .comment .box-inner {
        padding-bottom: 105px;
    }

    .hero-form-section .video-blog img {
        max-height: inherit;
    }
}

@media (max-width:575px) {

    .hero-banner .detail .d-left {
        text-align: center;
    }

    .basic-links i {
        width: 22px;
        height: 22px;
        font-size: 14px;
    }

    /* Responsive Menu Style */
    .navbar-collapse {
        left: -270px;
        max-width: 250px;
    }

    .tabbar-section nav div#nav-tab button.nav-link h3 {
        font-size: 18px;
    }

        .tabbar-section nav div#nav-tab button.nav-link h3 + p {
            font-size: 14px;
        }

    .sub-header ul li {
        width: 100%;
    }

        .sub-header ul li a {
            text-align: center;
            width: 100%;
        }

    .sub-header {
        padding: 4px 0;
    }

        .sub-header ul li a {
            padding: 5px 10px;
        }

            .sub-header ul li a.active {
                margin-right: 0;
                padding-left: 10px;
                padding-right: 10px;
            }
}
