﻿body {
    font-family: 'Montserrat', sans-serif;
    font-size: 1em;
    font-weight: 500;
    line-height: 24px;
}

@font-face {
    font-family: 'fontawesome-webfont';
    src: url('../fontawesome/fonts/fontawesome-webfont.ttf') format('truetype');
}

:root {
    /*--ColorDarkGreen: #3b5635;
    --ColorDarkGreenDark: #8f2c29;
    --ColorDarkGreenLaghtDark: #144ea7;
    --ColorDarkRed: #8f2c29;
    --ColorDarkRedDark: #08089c;
    --DarkBlueColor: #092754;
    --ColorGray: #a8adb4;
    --orange: #f57b14;*/
    --greenColor: #8add69;
    --greenDarkColor: #2d9304;
    --blackLightColor: #2e2e2e;
    --blackcolors: #2e2e2e;
}

ul, ol {
    list-style: none;
    margin: 0px;
    padding: 0px;
}

a {
    text-decoration: none;
}

p {
    line-height: 24px;
}

h1 {
    font-size: 45px;
    line-height: 55px;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
}

.fw-300 {
    font-weight: 300;
}

.fw-400 {
    font-weight: 400;
}

.fw-500 {
    font-weight: 500;
}

.fw-600 {
    font-weight: 600;
}

.fw-700 {
    font-weight: 700;
}

.fw-800 {
    font-weight: 800;
}

.fw-900 {
    font-weight: 900;
}

.text-blue {
    color: var(--greenColor);
}

.text-purple {
    color: var(--greenDarkColor);
}

.dark-text {
    color: var(--blackLightColor);
}

.dark-text1 {
    color: var(--ColorDarkGreenLaghtDark);
}

.grayText {
    color: var(--ColorGray);
}

.gradientBtn {
    background: linear-gradient(45deg, var(--greenColor), var(--greenDarkColor));
    padding: 8px 15px;
    color: #fff;
    border-radius: 4px;
    border: solid 1px var(--ColorDarkRed);
    display: inline-block;
}

    .gradientBtn:hover, .gradientBtn:focus {
        color: #fff;
        background: linear-gradient(45deg, var(--greenDarkColor), var(--greenColor));
    }

.btn {
    border-radius: 0px !important;
}

.themeBlueBtns {
    background: var(--ColorDarkGreen);
    border-color: var(--ColorDarkGreen);
}

    .themeBlueBtns:hover, .themeBlueBtns:focus, .themeBlueBtns:focus-visible {
        background: var(--ColorDarkGreenDark) !important;
        border-color: var(--ColorDarkGreenDark) !important;
    }


.themeBtnsPurple {
    background: var(--ColorDarkRed);
    border-color: var(--ColorDarkRed) !important;
}

    .themeBtnsPurple:hover, .themeBtnsPurple:focus, .themeBtnsPurple:focus-visible {
        background: var(--ColorDarkRedDark) !important;
        border-color: var(--ColorDarkRedDark) !important;
    }



.container-fluid.pt-0 {
    padding-top: 0px !important;
}

h3.largeHeading {
    font-size: 44px;
    font-weight: 600;
    text-transform: capitalize;
}

h4.largeHeading {
    font-size: 34px;
    font-weight: 600;
    text-transform: capitalize;
}

.topBar {
    background: linear-gradient(45deg, var(--greenColor), var(--greenDarkColor));
    padding-top: 5px;
    padding-bottom: 5px;
}

    .topBar span {
        color: #fff;
    }


.socialIcons li span {
    margin-right: 5px;
    color: #fff;
}

.socialIcons li a {
    width: 30px;
    height: 30px;
    color: #fff;
    border: solid 1px;
    margin-right: 5px;
    border-radius: 100%;
    font-size: 16px;
}


.accebilities ul li a {
    color: #fff;
    padding: 0px 10px;
    border-right: solid 1px #fff;
}

.accebilities ul li.dropdown ul.dropdown-menu li a {
    color:#333 !important;
    padding:10px 10px;
    border-bottom:dashed 1px #e9e9e9;
}

.accebilities ul li:nth-last-child(1) a {
    padding-right: 0px;
    border-right: 0px;
}
/*Topbar End*/
/*Logo section Start*/
.logoSections img {
    min-height: 70px;
    max-height: 100px;
    max-width: 100%;
}

.cm {
    padding: 0px 10px;
    background: #fff;
    position: absolute;
    right: 0px;
    top: 0px;
    z-index: 999999 !important;
    box-shadow: 0px 2px 4px #a5a5a5;
}

    .cm img {
        height: 100px;
        max-height: 100px !important;
    }

    .cm span {
        white-space: nowrap;
        font-size: 10px;
    }
/*Logo section End*/
/*Menu section Start*/
.navBars a.nav-link {
    color: #333;
    font-weight: 600;
}

.navbar-nav .nav-link.active, .navbar-nav .nav-link.show {
    font-weight: 800;
    color: var(--orange);
}

.navBars .nav-link.highlight {
    color: #fff;
    background: var(--orange);
    margin: 0px 5px !important;
}
/*Menu section End*/


/*Slider section Start*/
.slideshow {
    position: relative;
    z-index: 1;
    height: 100%;
    max-width: 100%;
}

    .slideshow * {
        outline: none;
    }

    /*.slideshow .slider {
        box-shadow: 0 20px 50px -25px black;
    }*/

    .slideshow .slider-track {
        transition: all 1s cubic-bezier(0.7, 0, 0.3, 1);
    }

    .slideshow .item {
        height: 100%;
        position: relative;
        z-index: 1;
    }

        .slideshow .item img {
            width: 100%;
            transition: all 1s cubic-bezier(0.7, 0, 0.3, 1);
            transform: scale(1.2);
        }

        .slideshow .item.slick-active img {
            transform: scale(1);
        }


    .slideshow .slider button {
        position: absolute;
        top: 45%;
        z-index: 9999;
        background: var(--ColorDarkGreen);
        border: 0px !important;
        color: #fff;
    }

        .slideshow .slider button.slick-prev {
            left: 0px;
        }

        .slideshow .slider button.slick-next {
            right: 0px;
        }
/*Slider section End*/
/*statics section start*/
.statics .leftImg {
    top: 100px;
    left: 0px;
    width: 175px;
}

.statics .card {
    box-shadow: 0px 5px 10px #e9e9e9;
    border-color: #ededed;
    margin-bottom: 60px;
}

.statics .card-body {
    position: relative;
    padding-top: 70px;
}

    .statics .card-body h1 {
        margin: 15px 0px;
    }

    .statics .card-body h5 {
        font-size: 16px;
    }

    .statics .card-body .circleStatics {
        width: 100px;
        height: 100px;
        position: absolute;
        top: -35px;
        left: 35.5%;
        border-radius: 100%;
        background: linear-gradient(135deg, var(--greenColor), var(--greenDarkColor));
        display: flex;
        justify-content: center;
        align-items: center;
    }

        .statics .card-body .circleStatics img {
            width:80%;
            border-radius:100%;
        }
/*statics section End*/
/*departmentSection section Start*/
.departmentSection {
    background: var(--DarkBlueColor) url('../images/deparment.png')no-repeat;
}

    .departmentSection .RightImg {
        top: 0px;
        right: 0px;
        width: 175px;
    }

    .departmentSection .bottomImg {
        bottom: 0px;
        right: 50%;
        width: 175px;
    }

.departmentCircle {
    background: #e0e8f2;
    width: 150px;
    height: 150px;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
}

    .departmentCircle img {
        width: 50%;
    }

.departmentSection .card-body p {
    margin-bottom: 0px;
    line-height: 28px;
    font-size: 22px;
}

/*departmentSection section End*/
/*aboutSection section start*/
.aboutSection h1 {
    font-weight: 500;
}

.aboutSectionFeature img {
    margin-right: 15px;
    width: 70px;
    height: 70px;
}

.aboutSectionFeature h4 {
    font-size: 24px;
    font-weight: 700;
}
/*aboutSection section End*/
/*NewsEventsSection section Start*/
.NewsEventsSection {
    background: url('../images/EventsBg.png') no-repeat;
    background-size: cover
}

.newsUls {
    margin-top: 25px;
}

    .newsUls li {
        width: calc(100% / 2 - 30px);
        margin-right: 15px;
        margin-bottom: 15px;
    }

        .newsUls li a {
            background: linear-gradient(45deg, var(--greenColor), var(--greenDarkColor));
            padding: 10px 15px;
            display: block;
            color: #fff;
            border-radius: 5px;
        }
/*NewsEventsSection section End*/
/*VideoGallery section Start*/
.galleryBG {
    background: url('../images/linellayer.png') no-repeat center;
}

    .galleryBG h2 {
        font-weight: 300;
        font-size: 60px;
    }

.videoThumb {
    overflow: hidden;
}


.playBtn {
    position: absolute;
    background: linear-gradient(45deg, var(--greenColor), var(--greenDarkColor));
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100px;
    height: 100px;
    bottom: -100%;
    right: -100%;
    font-size: 50px;
    color: #fff;
    transition: all .2s;
}

.btnCirleBg {
    position: absolute;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 100%;
    width: 300px;
    height: 300px;
    bottom: -100%;
    right: -100%;
    transition: all .2s;
}

.videoThumb:hover .playBtn {
    bottom: 100px;
    right: 100px;
}

.videoThumb:hover .btnCirleBg {
    bottom: -100px;
    right: -100px;
}

.VideoGallery .centerButtons .customNavOwlOuter {
    position: absolute;
    bottom: -50px;
    right: 40px;
    z-index: 999999999 !IMPORTANT;
}

.galleryBoxItem img {
    width: 100%;
}

.galleryItems1 .galleryBoxItem {
    width: 100%;
    position: relative;
    overflow: hidden;
}

    .galleryItems1 .galleryBoxItem:nth-child(2), .galleryItems1 .galleryBoxItem:nth-child(3) {
        width: 50%;
        float: left;
    }

.galleryItems2 .galleryBoxItem {
    width: 100%;
    position: relative;
    overflow: hidden;
}

    .galleryItems2 .galleryBoxItem:nth-child(1), .galleryItems2 .galleryBoxItem:nth-child(2) {
        width: 50%;
        float: left;
    }

.galleryContent {
    background: linear-gradient(180deg, transparent, var(--greenColor));
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: -100%;
    left: 0px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-direction: column;
    padding-bottom: 15px;
    transition: all .2s;
    text-align: center;
}

.galleryBoxItem:hover .galleryContent {
    bottom: 0px !important;
}
/*VideoGallery section end*/
/*News section Start*/
.newsArrow {
    background: var(--orange);
    height: 40px;
    position: relative;
    width: calc(100% - 20px);
}

    .newsArrow::after {
        position: absolute;
        right: -20px;
        top: 0px;
        content: '';
        width: 0px;
        height: 0px;
        border-top: 20px solid transparent;
        border-bottom: 20px solid transparent;
        border-left: 20px solid var(--orange);
    }


.f-600 {
    font-weight: 600;
}

.customNavOwl button {
    border-radius: 100%;
    border: solid 1px #fff;
    outline: none;
    background: var(--greenColor);
    color: #fff;
    width: 28px;
    height: 28px;
    cursor: pointer;
    color: #fff;
    border: solid 1px var(--orange);
}

    .customNavOwl button.owl-prev {
        margin-right: 5px;
    }
/*News section End*/
.subscribe {
    background: var(--darkBlue);
    position: relative;
}

    .subscribe::before {
        position: absolute;
        height: 80px;
        top: -79px;
        background: var(--darkBlue);
        content: '';
        left: 0px;
        width: 100%;
        clip-path: polygon(0 0, 0% 100%, 100% 100%);
    }

    .subscribe::after {
        position: absolute;
        height: 80px;
        top: -79px;
        background: var(--darkBlue);
        content: '';
        left: 0px;
        width: 100%;
        clip-path: polygon(100% 0, 0% 100%, 100% 100%);
    }

    .subscribe img {
        width: 60px;
        display: inline-block;
        margin-right: 15px;
    }

    .subscribe .form-control {
        min-height: 44px;
        border-radius: 0px;
        border: 0px;
    }

    .subscribe .themeBtns {
        border-radius: 0px;
        min-height: 44px;
    }

.border-radius-0 {
    border-radius: 0px !important;
}

.footer {
    background: var(--blackcolors) url('../images/footer.png')no-repeat;
}

.footerLinks h3 {
    color: var(--greenColor);
    position: relative;
    padding-bottom: 10px;
    font-weight: 600;
    font-size: 34px;
}


.footerLinks ul li a {
    display: block;
    color: #fff;
    padding-left: 20px;
    position: relative;
    margin-top: 10px;
    font-size: 16px;
}

    .footerLinks ul li a::before {
        position: absolute;
        left: 0px;
        top: 0px;
        content: '\f061';
        font-family: 'fontawesome-webfont';
        color: var(--ColorDarkGreen);
    }

.footerLinks ul.socialIcons li a {
    padding: unset !important
}

    .footerLinks ul.socialIcons li a::before {
        display: none !important
    }



.footerLinks ul li a:hover {
    color: #fff;
}

.bottomLogos {
    margin-top: 15px;
}

    .bottomLogos a {
        margin-right: 5px;
    }

        .bottomLogos a img {
            max-height: 55px;
        }

.visitorBox {
    border: solid 1px var(--ColorDarkGreen);
    border-radius: 25px;
    padding: 15px;
    color: #fff;
}

    .visitorBox h4 {
        font-size: 24px;
        font-weight: 800;
    }

.contactIcon {
    width: 55px;
    height: 55px;
    background: var(--ColorDarkGreen);
    color: #fff;
    font-size: 24px;
    border-radius: 100%;
}

.contactContent {
    width: calc(100% - 55px);
    padding-left: 15px;
    color: #fff;
}

    .contactContent p {
        margin: 0px;
    }

.copyrights {
    background: var(--greenDarkColor);
}


@media (max-width:991px) {
    .socialIcons, .accebilities ul {
        width: 100% !important;
        justify-content: center !important;
    }

    .cm {
        position: unset !important;
    }

    h1 {
        font-size: 24px !important;
        line-height: 36px !important;
    }

    .statics .card {
        margin-bottom: 100px;
    }

    .btn {
        margin-bottom: 10px;
    }

    .VideoGallery .centerButtons .customNavOwlOuter {
        position: unset !important;
    }

    h3, .gradientBtn {
        margin: 15px 0px;
    }

    .visitorBox {
        margin-top: 15px;
    }

    .footer, .galleryBG, .departmentSection {
        background-size: cover;
    }

    .statics .card-body .circleStatics {
        width: 120px;
        height: 120px;
        top: -35px;
        left: 35%;
    }

    .statics .card-body {
        padding-top: 85px;
    }

    .galleryBG h2 {
        font-size: 36px;
    }
}

@media (min-width:1400px) {
    .container.width-85 {
        max-width: 85%;
        min-width: 85%;
    }

    .container.width-75 {
        max-width: 75%;
        min-width: 75%;
    }
}

.nav-item.dropdown:hover > .dropdown-menu {
    display: block !important;
}

.productBoxd .card-body h4 {
    text-align: center;
    color: var(--greenColor);
    border-bottom: solid 1px #cfcfcf;
    padding-bottom: 7px;
}
.productBoxd .dpPv {
    width:150px;
    justify-content:space-between;
    flex-wrap:wrap;
}

.productBoxd .dpPv {
    display: none !important
}

.productBoxd .card-body .d-flex {
    justify-content: center !important
}