/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');
:root {
    /*--bs-color: #268a3f;*/
    --bs-color: #008643;
    --bs-gray: #666;
    --bs-white: #fff;
    --bs-success-rgb: 38, 138, 63;
}

body {
    font-family: "Lato", sans-serif;
    color: var(--bs-gray);
    font-size: 14px;
    font-weight: 400;
}

a {
    text-decoration: none;
    color: var(--bs-color);
}

a:hover {
    color: var(--bs-color);
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Avant Garde Demi BT", sans-serif;
    color: #000;
    font-weight: 500;
}

p {
    font-family: 'Poppins', sans-serif;
    text-align: justify !important;
    font-weight: normal;
}

.dropdown-item.active,
.dropdown-item:active {
    background-color: #008643;
}


/*--------------------------------------------------------------
# Font
--------------------------------------------------------------*/

@font-face {
    font-family: 'Arial';
    font-style: normal;
    font-weight: normal;
    src: local('Arial'), url('../font/ARIAL.TTF') format('ttf');
}

@font-face {
    font-family: 'Avant Garde Demi BT';
    font-style: normal;
    font-weight: normal;
    src: local('Avant Garde Demi BT'), url('../font/AVGARDD_2.TTF') format('ttf');
}

@font-face {
    font-family: 'Myriad Pro Light';
    font-style: normal;
    font-weight: normal;
    src: local('Myriad Pro Light'), url('../font/Myriad Pro Light.otf') format('otf');
}

.fs-6 {
    font-size: 14px !important;
}


/*--------------------------------------------------------------
# Margin and padding
--------------------------------------------------------------*/

.py_110 {
    padding-top: 110px;
    padding-bottom: 110px;
}

.my_110 {
    margin-top: 110px;
    margin-bottom: 110px;
}

@media (max-width:768px) {
    .py_110 {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    .my_110 {
        margin-top: 60px;
        margin-bottom: 60px;
    }
}


/*--------------------------------------------------------------
# loader
--------------------------------------------------------------*/

#loader {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100vh;
    z-index: 999999999;
    background: url("../../loader.gif") 50% 50% no-repeat #ebedfd;
    background-size: 150px;
}


/*--------------------------------------------------------------
# Color
--------------------------------------------------------------*/

.text-muted {
    color: var(--bs-gray) !important;
}


/*--------------------------------------------------------------
# Button
--------------------------------------------------------------*/

.btn-default {
    border: 2px solid var(--bs-color);
    background: transparent;
    border-radius: 0;
    color: var(--bs-color);
    padding: 5px 32px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.btn-default:hover {
    border: 2px solid var(--bs-color);
    background: var(--bs-color);
    color: #fff;
}

.btn-success {
    color: #fff;
    background-color: var(--bs-color);
    border-color: var(--bs-color);
}

.btn-check:focus+.btn,
.btn:focus {
    box-shadow: none;
}


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/

#Header {
    position: absolute;
    z-index: 9999;
    width: 100%;
    /*border-bottom: 1px solid #EEEEEE;*/
}

#Header .navbar {
    /*padding-top: 20px;*/
    background: #fff;
    font-size: 14px;
    font-weight: 600;
}

#Header .navbar .navbar-brand {
    margin: 0;
}

#Header .navbar-dark .navbar-nav .nav-link {
    color: rgb(0 0 0 / 55%);
}

#Header .navbar-dark .navbar-nav .nav-link.active,
.navbar-dark .navbar-nav .show>.nav-link {
    color: #000;
}

#Header .dropdown-menu[data-bs-popper] {
    top: 100%;
    left: 0;
    margin-top: 25px;
}

@media (max-width:991px) {
    .navbar-collapse {
        /*background: #000;*/
        padding: 20px;
        border-radius: 10px;
    }
    #Header .dropdown-menu[data-bs-popper] {
        margin-top: 0;
    }
}


/*#navbarSupportedContent.show {
    background: #000;
    padding: 14px 20px;
}*/


/*--------------------------------------------------------------
# Main Carousel Section
--------------------------------------------------------------*/

#MainCarousel .carousel-item:before {
    content: "";
    /*background-image: linear-gradient(to top, transparent, 80%, rgba(0, 0, 0, 0.8));*/
    background: rgba(0, 0, 0, 0.5);
    display: block;
    position: absolute;
    top: 0;
    width: 100vw;
    height: 100%;
}

#MainCarousel .carousel-item img {
    width: 100%;
    height: 100vh;
}

#MainCarousel .carousel-caption {
    height: 94%;
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: column;
    text-shadow: 0 3px 3px rgb(0 0 0 / 70%);
}

#MainCarousel .carousel-caption h1 {
    color: #fff;
}

#MainCarousel .carousel-caption p {
    font-weight: 300;
}

#MainCarousel .carousel-caption .btn_banner {
    border: 2px solid #fff;
    background: rgb(0 0 0 / 70%);
    border-radius: 0;
    color: #fff;
    padding: 5px 32px;
    font-size: 12px;
}

@media (max-width:768px) {
    #MainCarousel .carousel-item {
        height: 100vh;
    }
    #MainCarousel .carousel-item img {
        width: auto;
    }
}


/*--------------------------------------------------------------
# History Section
--------------------------------------------------------------*/

.our_history {
    border-left: 2px solid var(--bs-color);
    padding-left: 1rem!important;
}

b,
strong {
    font-weight: bold !important;
}

.our_history h3 {
    font-weight: bold !important;
}

.accordion {
    background-image: url(../img/bg-img.png);
    background-size: cover;
    background-position: center center;
    padding: 100px;
}

.accordion .steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    position: relative;
}

.accordion .step-button {
    width: 10px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid var(--bs-gray);
    background-color: transparent;
    transition: .4s;
}

.accordion .step-button[aria-expanded="true"] {
    background-color: var(--bs-color);
    border: 2px solid var(--bs-color);
    color: #fff;
}

.accordion .done {
    background-color: var(--bs-color);
    border: 2px solid var(--bs-color);
    color: #fff;
}

.accordion #progress:after {
    display: block;
    margin: -4px 0 0px -50px;
    height: 4px;
    content: " ";
    text-shadow: none;
    background-color: var(--bs-color);
    width: 50px;
}

.accordion .step-item {
    z-index: 10;
    text-align: center;
}

.accordion #progress {
    -webkit-appearance: none;
    position: absolute;
    width: 96%;
    z-index: 5;
    height: 4px;
    margin-left: 18px;
    margin-bottom: -31px;
}


/* to customize progress bar */

.accordion #progress::-webkit-progress-value {
    background-color: var(--bs-color);
    transition: .5s ease;
}

.accordion #progress::-webkit-progress-bar {
    background-color: transparent;
}

@media (max-width:768px) {
    .accordion {
        padding: 0;
    }
    .accordion #progress {
        /*width: 95%;*/
        margin-bottom: -21px;
        height: 3px;
    }
    .accordion #progress:after {
        height: 3px;
        margin: -3px 0 0px -50px;
    }
    .accordion .step-title {
        font-size: 12px;
    }
}


/*--------------------------------------------------------------
# contact Section
--------------------------------------------------------------*/

.contact .contact_info {
    padding: 40px;
}

.contact .contact_information {
    margin: 40px 0;
}

.contact .contact_information .information_text {
    padding-left: 40px;
}

.contact .contact_information i {
    font-size: 26px;
    color: #fff;
    float: left;
}

.contact .contact_form_box {
    width: 350px;
    margin-right: -180px;
    z-index: 9999;
}

.contact .contact_form {
    background: #fff;
    padding: 30px;
}

.contact .contact_form input,
.contact .contact_form textarea {
    background: #ededed;
    border: none;
    font-size: 14px;
    padding: 10px 20px;
}

.contact .contact_form .btn {
    background: var(--bs-color);
    color: #fff;
    padding: 5px 32px;
    font-size: 12px;
    font-weight: 600;
    border: none;
}

@media (max-width:768px) {
    .contact .contact_info,
    .contact .contact_info p {
        text-align: center !important;
    }
    .contact .contact_information {
        margin: 20px 0;
    }
    .contact .contact_information i {
        float: none;
    }
    .contact .contact_information .information_text {
        padding: 0;
    }
    .contact .contact_form_box {
        width: 100% !important;
    }
}

@media (max-width:991px) {
    .contact .contact_form_box {
        margin: 0;
        padding: 20px;
        width: 50%;
    }
    .contact .contact_info {
        padding: 20px;
    }
}


/*--------------------------------------------------------------
# temporehenit_omniet Section
--------------------------------------------------------------*/

.temporehenit_omniet {
    margin-top: -6px;
}

.temporehenit_omniet .col {
    position: relative;
}

.temporehenit_omniet .text {
    width: 300px;
    position: absolute;
    bottom: 50px;
    margin: 0 auto;
    left: 0;
    right: 0;
    text-align: center;
    color: #fff;
    background: var(--bs-color);
}

@media (max-width:768px) {
    .temporehenit_omniet .text {
        bottom: 20px;
    }
}

@media (max-width:576px) {
    .temporehenit_omniet .text {
        bottom: 0px;
    }
}


/*--------------------------------------------------------------
# footer Section
--------------------------------------------------------------*/

.footer {
    padding: 0 100px;
}

.footer .sitemap {
    border-left: 1px solid #ced4da;
    padding-left: 20px;
}

.footer .sitemap a {
    color: var(--bs-gray);
    padding: .2rem 0;
    border-bottom: 1px solid #ced4da;
}

.footer .sitemap a:hover {
    color: var(--bs-color);
}

.footer .investors input {
    background: #999999;
    border: none;
    font-size: 14px;
    padding: 9px 20px 8px;
    color: #fff;
    border-radius: 0;
}

.footer .investors input::-webkit-input-placeholder {
    /* Edge */
    color: #fff;
}

.footer .investors input:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #fff;
}

.footer .investors input::placeholder {
    color: #fff;
}

.footer .investors .btn {
    border-radius: 0;
}

@media (max-width:991px) {
    .footer {
        padding: 15px;
    }
}


/*--------------------------------------------------------------
# Breadcrumb Section
--------------------------------------------------------------*/

.breadcrumb_bg.bg01 {
    background-image: linear-gradient(0deg, rgb(135 163 255 / 10%), rgb(135 163 255 / 10%)), url(../img/breadcrumb_bg/breadcrumb_bg01.jpg);
}

.breadcrumb_bg.bg02 {
    background-image: linear-gradient(0deg, rgb(60 96 178 / 10%), rgb(60 96 178 / 10%)), url(../img/breadcrumb_bg/breadcrumb_bg02.jpg);
}

.breadcrumb_bg.bg03 {
    background-image: linear-gradient(0deg, rgb(107 72 70 / 10%), rgb(107 72 70 / 80%)), url(../img/breadcrumb_bg/breadcrumb_bg03.jpg);
}

.breadcrumb_bg.bg04 {
    background-image: linear-gradient(0deg, rgb(255 255 255 / 10%), rgb(82 87 78 / 50%)), url(../img/breadcrumb_bg/breadcrumb_bg04.jpg);
}

.breadcrumb_bg.bg05_1 {
    background-image: linear-gradient(0deg, rgb(255 255 255 / 10%), rgb(16 65 40 / 80%)), url(../img/breadcrumb_bg/breadcrumb_bg05_1.jpg);
}

.breadcrumb_bg.bg05_2 {
    background-image: linear-gradient(0deg, rgb(255 255 255 / 10%), rgb(16 65 40 / 80%)), url(../img/breadcrumb_bg/breadcrumb_bg05_2.jpg);
}

.breadcrumb_bg.bg05_3 {
    background-image: linear-gradient(0deg, rgb(255 255 255 / 10%), rgb(16 65 40 / 80%)), url(../img/breadcrumb_bg/breadcrumb_bg05_3.jpg);
}

.breadcrumb_bg.bg06 {
    background-image: linear-gradient(0deg, rgb(255 255 255 / 10%), rgb(0 0 0 / 50%)), url(../img/breadcrumb_bg/breadcrumb_bg06.jpg);
}

.breadcrumb_bg.bg07 {
    background-image: linear-gradient(0deg, rgb(255 255 255 / 10%), rgb(0 0 0 / 50%)), url(../img/breadcrumb_bg/breadcrumb_bg07.jpg);
}

.breadcrumb_bg.bg08 {
    background-image: linear-gradient(0deg, rgb(255 255 255 / 10%), rgb(1 150 219 / 60%)), url(../img/breadcrumb_bg/breadcrumb_bg08.jpg);
}

.breadcrumb_bg.bg09 {
    background-image: linear-gradient(0deg, rgb(255 255 255 / 10%), rgb(0 0 0 / 30%)), url(../img/breadcrumb_bg/breadcrumb_bg09.jpg);
}

.breadcrumb_bg.bg10 {
    background-image: linear-gradient(0deg, rgb(255 255 255 / 10%), rgb(0 0 0 / 30%)), url(../img/breadcrumb_bg/breadcrumb_bg10.jpg);
}

.breadcrumb_bg.bg11 {
    background-image: linear-gradient(0deg, rgb(255 255 255 / 10%), rgb(0 0 0 / 30%)), url(../img/breadcrumb_bg/breadcrumb_bg11.jpg);
}

.breadcrumb_bg {
    background-size: cover;
    height: 300px;
    background-position: center center;
}

.breadcrumb_bg .row {
    width: 320px;
}

.breadcrumb_bg .breadcrumb_link {
    border-left: 3px solid #ffb53b;
    background: #008643;
    margin-bottom: 40px;
}

.breadcrumb_bg .breadcrumb_link .breadcrumb {
    font-size: 12px;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: #fff;
}


/*--------------------------------------------------------------
# Over the years Section
--------------------------------------------------------------*/

.over_the_years img {
    position: absolute;
    top: -80px;
}

.over_the_years p {
    padding-left: 100px;
}


/*--------------------------------------------------------------
# .owl carousel Section
--------------------------------------------------------------*/

.news-mhn-slide {
    background: linear-gradient(to bottom, #f1f6f0 52.5%, #fff 50%);
}

.mhn-slide .mhn-item .mhn-inner {
    border-radius: 10px;
}

.mhn-slide .mhn-item .mhn-inner img {
    border-radius: 10px 10px 0 0;
}

.mhn-slide .mhn-item-border-5 img {
    border-radius: 0px !important;
}

.mhn-slide .mhn-item {
    width: 100%;
    padding: 10px
}

.mhn-slide .mhn-inner {
    width: 100%;
    height: 100%;
    box-shadow: 0 .3rem 0.6rem rgba(0, 0, 0, .15) !important;
    border-radius: 3px
}

.mhn-slide .owl-nav {
    color: #333;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0
}

.mhn-slide .owl-nav svg {
    color: currentColor
}

.mhn-slide .owl-nav .disabled {
    display: none
}

.mhn-slide .owl-prev,
.mhn-slide .owl-next {
    top: 50%;
    z-index: 2;
    width: 40px;
    height: 40px;
    padding: 8px;
    position: absolute;
    border-radius: 50%;
    background-color: #fff !important;
    box-shadow: 0 4px 4px rgba(0, 0, 0, .3), 0 0 4px rgba(0, 0, 0, .2)
}

.mhn-slide .owl-prev {
    left: -10px
}

.mhn-slide .owl-next {
    right: -10px
}


/*--------------------------------------------------------------
# our leadership team
--------------------------------------------------------------*/

.our-team {
    padding: 20px 15px 30px;
    background: #fff;
    border-radius: 15px;
    text-align: center;
}

.our-team .pic {
    display: inline-block;
    width: 100%;
    height: 100%;
    background: #fff;
    padding: 10px;
    margin-bottom: 25px;
    transition: all 0.5s ease 0s;
    cursor: pointer;
}

.our-team:hover .pic {
    background: #008643;
    border-radius: 50%;
}

.pic img {
    width: 100%;
    height: auto;
    border-radius: 50%;
}

.our-team .title {
    display: block;
    font-size: 20px;
    font-weight: 600;
    color: #2e282a;
    /*text-transform: uppercase;*/
    margin: 0 0 7px 0;
    cursor: pointer;
}

.our-team .post {
    display: block;
    font-size: 15px;
    /*color: #008643;*/
    text-transform: capitalize;
    margin-bottom: 0px;
}

.our-team .social {
    padding: 0;
    margin: 0;
    list-style: none;
}

.our-team .social li {
    display: inline-block;
    margin-right: 5px;
}

.our-team .social li a {
    display: block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    border-radius: 50%;
    font-size: 15px;
    color: #008643;
    border: 1px solid #008643;
    transition: all 0.5s ease 0s;
}

.our-team:hover .social li a {
    background: #008643;
    color: #fff;
}

@media only screen and (max-width: 990px) {
    .our-team {
        margin-bottom: 30px;
    }
}


/*--------------------------------------------------------------
# our leadership team
--------------------------------------------------------------*/

figure.photo {
    font-family: 'Raleway', Arial, sans-serif;
    position: relative;
    overflow: hidden;
    /*margin: 10px;
    min-width: 220px;
    max-width: 310px;
    max-height: 220px;
    width: 100%;*/
    background: #000000;
    color: #ffffff;
    text-align: center;
    /*box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);*/
    margin: 0;
}

figure.photo * {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

figure.photo img {
    max-width: 100%;
    position: relative;
    opacity: 0.6;
    display: block;
}

figure.photo figcaption {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

figure.photo h2 {
    position: absolute;
    left: 0;
    right: 0;
    display: inline-block;
    /*background: #008643;*/
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    /*-webkit-transform: skew(-10deg) rotate(-10deg) translate(0, -50%);*/
    /*transform: skew(-10deg) rotate(-10deg) translate(0, -50%);*/
    padding: 12px 5px;
    margin: 0;
    top: 50%;
    text-transform: uppercase;
    font-size: 24px;
    font-weight: 400;
    color: #fff;
}

figure.photo h2 span {
    font-weight: 800;
}


/*figure.photo:before {
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    content: '';
    background: #ffffff;
    position: absolute;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-transform: rotate(110deg) translateY(-50%);
    transform: rotate(110deg) translateY(-50%);
}*/

figure.photo a {
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    position: absolute;
    z-index: 1;
}

figure.photo:hover img,
figure.photo.hover img {
    opacity: 1;
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

figure.photo:hover h2,
figure.photo.hover h2 {
    -webkit-transform: translate(-150%, -50%);
    transform: translate(-150%, -50%);
    /*-webkit-transform: skew(-10deg) rotate(-10deg) translate(-150%, -50%);*/
    /*transform: skew(-10deg) rotate(-10deg) translate(-150%, -50%);*/
}

figure.photo:hover:before,
figure.photo.hover:before {
    -webkit-transform: rotate(110deg) translateY(-150%);
    transform: rotate(110deg) translateY(-150%);
}

.tooltipmy {
    position: relative;
    display: inline-block;
    border-bottom: 1px dotted black;
}

.tooltipmy .tooltiptextmy {
    opacity: 0;
    width: 120px;
    background-color: black;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    bottom: 100%;
    left: 50%;
    margin-left: -60px;
    /* Position the tooltip */
    position: absolute;
    z-index: 1;
}

.tooltipmy:hover .tooltiptextmy {
    opacity: 1;
}