/**
* Template Name: Gp - v4.7.0
* Template URL: https://bootstrapmade.com/gp-free-multipurpose-html-bootstrap-template/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
    font-family: 'Nunito', sans-serif;
    color: #444444;
    background: #fff;
}

a {
    color: #d37937;
    text-decoration: none;
}

    a:hover {
        color: #194a39;
        text-decoration: none;
    }

h1, h2, h3, h4, h5, h6 {
    font-family: 'Nunito', sans-serif;
    color: #000;
}

h1, h2, h3 {
    font-weight: bold;
}

ul, li {
    margin: 0;
    padding: 0;
}
/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    background: #d37937;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
}

    .back-to-top i {
        font-size: 28px;
        color: #fff;
        line-height: 0;
    }

    .back-to-top:hover {
        background: #151515;
    }

        .back-to-top:hover i {
            color: #d37937;
        }

    .back-to-top.active {
        visibility: visible;
        opacity: 1;
    }

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: #005648;
}

    #preloader:before {
        content: "";
        position: fixed;
        top: calc(50% - 0px);
        left: calc(50% - 30px);
        border: 6px solid #d37937;
        border-top-color: #005648;
        border-bottom-color: #005648;
        border-radius: 50%;
        width: 60px;
        height: 60px;
        -webkit-animation: animate-preloader 1s linear infinite;
        animation: animate-preloader 1s linear infinite;
    }

@-webkit-keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    transition: all 0.5s;
    z-index: 997;
    padding: 15px 0;
}

    #header.header-scrolled, #header.header-inner-pages {
        background: rgba(255, 255, 255,0.8);
        position: fixed;
        width: 100%;
    }

    #header .logo {
        font-size: 32px;
        margin: 0;
        padding: 10px;
        line-height: 1;
        font-weight: 700;
        letter-spacing: 2px;
        text-transform: uppercase;
    }

        #header .logo a {
            color: #fff;
        }

            #header .logo a span {
                color: #d37937;
            }

        #header .logo img {

            position: absolute;
            background: #fff;
            padding: 10px;
            top: 0;
            border-radius: 0 0 5px 5px;
            box-shadow: 1px 1px 3px #00000014;
            z-index: 9;
        }

/*--------------------------------------------------------------
#  Get Startet Button
--------------------------------------------------------------*/
.get-started-btn {
    color: #fff;
    border-radius: 50px;
    padding: 7px 25px 8px 25px;
    white-space: nowrap;
    transition: 0.3s;
    font-size: 14px;
    display: inline-block;
    border: 2px solid #194a39;
    background: #194a39;
}

    .get-started-btn:hover {
        background: #c07f47;
        color: #fff;
    }

@media (max-width: 992px) {
    .get-started-btn {
        padding: 7px 20px 8px 20px;
        margin-right: 15px;
    }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
    padding: 0;
}

    .navbar ul {
        margin: 0;
        padding: 0;
        display: flex;
        list-style: none;
        align-items: center;
    }

    .navbar li {
        position: relative;
    }

    .navbar a, .navbar a:focus {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px 0 10px 30px;
        font-size: 15px;
        font-weight: 600;
        color: #000;
        white-space: nowrap;
        transition: 0.3s;
    }

        .navbar a i, .navbar a:focus i {
            font-size: 12px;
            line-height: 0;
            margin-left: 5px;
        }

        .navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
            color: #d37937;
        }

    .navbar .dropdown ul {
        display: block;
        position: absolute;
        left: 14px;
        top: calc(100% + 30px);
        margin: 0;
        padding: 10px 0;
        z-index: 99;
        opacity: 0;
        visibility: hidden;
        background: #fff;
        box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
        transition: 0.3s;
    }

        .navbar .dropdown ul li {
            min-width: 200px;
        }

        .navbar .dropdown ul a {
            padding: 10px 20px;
            font-size: 14px;
            text-transform: none;
            color: #151515;
            font-weight: 400;
        }

            .navbar .dropdown ul a i {
                font-size: 12px;
            }

            .navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
                background-color: #d37937;
            }

    .navbar .dropdown:hover > ul {
        opacity: 1;
        top: 100%;
        visibility: visible;
    }

    .navbar .dropdown .dropdown ul {
        top: 0;
        left: calc(100% - 30px);
        visibility: hidden;
    }

    .navbar .dropdown .dropdown:hover > ul {
        opacity: 1;
        top: 0;
        left: 100%;
        visibility: visible;
    }

@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }

    .navbar .dropdown .dropdown:hover > ul {
        left: -100%;
    }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
    color: #000;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }

    .navbar ul {
        display: none;
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: #005142e8;
    transition: 0.3s;
    z-index: 999;
}

    .navbar-mobile .mobile-nav-toggle {
        position: absolute;
        top: 15px;
        right: 15px;
    }

    .navbar-mobile ul {
        display: block;
        position: absolute;
        top: 55px;
        right: 15px;
        bottom: 15px;
        left: 15px;
        padding: 10px 0;
        background-color: #fff;
        overflow-y: auto;
        transition: 0.3s;
    }

    .navbar-mobile a, .navbar-mobile a:focus {
        padding: 10px 20px;
        font-size: 15px;
        color: #151515;
    }

        .navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
            color: #151515;
            background-color: #d37937;
        }

    .navbar-mobile .getstarted, .navbar-mobile .getstarted:focus {
        margin: 15px;
    }

    .navbar-mobile .dropdown ul {
        position: static;
        display: none;
        margin: 10px 20px;
        padding: 10px 0;
        z-index: 99;
        opacity: 1;
        visibility: visible;
        background: #fff;
        box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    }

        .navbar-mobile .dropdown ul li {
            min-width: 200px;
        }

        .navbar-mobile .dropdown ul a {
            padding: 10px 20px;
            color: #151515;
        }

            .navbar-mobile .dropdown ul a i {
                font-size: 12px;
            }

            .navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover > a {
                background-color: #d37937;
            }

    .navbar-mobile .dropdown > .dropdown-active {
        display: block;
    }

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
    width: 100%;
    height: 100vh;
    background: url("../img/hero-bg.jpg") top center;
    background-size: cover;
    position: relative;
}

    #hero:before {
        content: "";
        background: rgba(255, 255, 255,0.4);
        position: absolute;
        bottom: 0;
        top: 0;
        left: 0;
        right: 0;
    }

    #hero .container {
        position: relative;
        padding-top: 74px;
        text-align: center;
    }

    #hero h1 {
        margin: 0;
        font-size: 56px;
        font-weight: 700;
        line-height: 64px;
        color: #194a39;
        font-family: "Poppins", sans-serif;
    }

        #hero h1 span {
            color: #d37937;
        }

    #hero h2 {
        color: #fff;
        margin: 10px 0 0 0;
        font-size: 24px;
    }

    #hero .icon-box {
        padding: 30px 20px;
        transition: ease-in-out 0.3s;
        border: 1px solid rgba(255, 255, 255, 0.3);
        height: 100%;
        text-align: center;
        background: #fff;
    }

        #hero .icon-box i {
            font-size: 32px;
            line-height: 1;
            color: #d37937;
        }

        #hero .icon-box h3 {
            font-weight: 700;
            margin: 10px 0 0 0;
            padding: 0;
            line-height: 1;
            font-size: 20px;
            line-height: 26px;
        }

            #hero .icon-box h3 a {
                transition: ease-in-out 0.3s;
            }

                #hero .icon-box h3 a:hover {
                    color: #d37937;
                }

        #hero .icon-box:hover {
            border-color: #d37937;
        }

@media (min-width: 1024px) {
    #hero {
        background-attachment: fixed;
    }
}

@media (max-width: 768px) {
    #hero {
        height: auto;
    }

        #hero h1 {
            font-size: 28px;
            line-height: 36px;
        }

        #hero h2 {
            font-size: 20px;
            line-height: 24px;
        }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
    padding: 40px 0;
    overflow: hidden;
    background: #fff;
}

.section-title {
    padding-bottom: 20px;
}

    .section-title h2 {
        font-size: 14px;
        font-weight: 500;
        padding: 0;
        line-height: 1px;
        margin: 0 0 5px 0;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: #aaaaaa;
        font-family: "Poppins", sans-serif;
    }

        .section-title h2::after {
            content: "";
            width: 120px;
            height: 1px;
            display: inline-block;
            background: #ffde9e;
            margin: 4px 10px;
        }

    .section-title p {
        margin: 0;
        margin: 0;
        font-size: 28px;
        font-weight: 700;
        text-transform: uppercase;
        font-family: "Poppins", sans-serif;
        color: #151515;
    }

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .content h3 {
    font-weight: 700;
    font-size: 28px;
    font-family: "Poppins", sans-serif;
}

.about .content ul {
    list-style: none;
    padding: 0;
}

    .about .content ul li {
        padding: 0 0 8px 26px;
        position: relative;
    }

    .about .content ul i {
        position: absolute;
        font-size: 20px;
        left: 0;
        top: -3px;
        color: #d37937;
    }

.about .content p:last-child {
    margin-bottom: 0;
}

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
section#clients {padding: 60px 0;}
.clients {padding-top: 20px;}
.cpdv {text-align: center;}
.clients .swiper-slide img { transition: 0.3s;filter: grayscale(100);border: 2px solid #d37937; border-radius: 50%;}
.clients .swiper-slide img:hover {filter: none;opacity: 1;}
.clients .swiper-pagination { margin-top: 20px;position: relative;}
.clients .swiper-pagination .swiper-pagination-bullet {width: 12px;height: 12px;background-color: #fff;opacity: 1;background-color: #ddd;}
.clients .swiper-pagination .swiper-pagination-bullet-active {background-color: #d37937;}
.cpdv h4 {font-size: 16px;margin: 10px 0;}
.cpdv h5 {color: #d37937;font-size: 14px;}

/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/
.features {
    padding-top: 20px;
}

    .features .icon-box {
        padding-left: 15px;
    }

        .features .icon-box h4 {
            font-size: 20px;
            font-weight: 700;
            margin: 5px 0 10px 60px;
        }

        .features .icon-box i {
            font-size: 48px;
            float: left;
            color: #d37937;
        }

        .features .icon-box p {
            font-size: 15px;
            color: #848484;
            margin-left: 60px;
        }

    .features .image {
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
        min-height: 400px;
    }

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
    text-align: center;
    border: 1px solid #ebebeb;
    padding: 20px;
    transition: all ease-in-out 0.3s;
    background: #fff;
    width: 100%;
    border-radius: 6px;
}

    .services .icon-box .icon {
        margin: 0 auto;
        border-radius: 4px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
        transition: 0.3s;
    }

        .services .icon-box .icon img {
            width: 120px;
        }

        .services .icon-box .icon i {
            color: #151515;
            font-size: 28px;
            transition: ease-in-out 0.3s;
        }

    .services .icon-box h4 {
        font-weight: 700;
        margin-bottom: 15px;
        font-size: 24px;
    }

        .services .icon-box h4 a, .services .icon-box h5 a {
            color: #151515;
            transition: ease-in-out 0.3s;
        }

            .services .icon-box h4 a:hover, .services .icon-box h5 a:hover {
                color: #d37937;
            }

    .services .icon-box p {
        line-height: 24px;
        font-size: 14px;
        margin-bottom: 0;
    }

    .services .icon-box:hover {
        border-color: #fff;
        box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
        transform: translateY(-10px);
    }

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
    background: linear-gradient(rgba(2, 2, 2, 0.5), rgba(0, 0, 0, 0.5)), url("../img/cta-bg.jpg") fixed center center;
    background-size: cover;
    padding: 60px 0;
}

    .cta h3 {
        color: #fff;
        font-size: 28px;
        font-weight: 700;
    }

    .cta p {
        color: #fff;
    }

    .cta .cta-btn {
        font-family: "Raleway", sans-serif;
        font-weight: 600;
        font-size: 16px;
        letter-spacing: 1px;
        display: inline-block;
        padding: 8px 28px;
        border-radius: 4px;
        transition: 0.5s;
        margin-top: 10px;
        border: 2px solid #fff;
        color: #fff;
    }

        .cta .cta-btn:hover {
            background: #d37937;
            border-color: #d37937;
            color: #151515;
        }

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio .portfolio-item {
    margin-bottom: 30px;
}

.portfolio #portfolio-flters {
    padding: 0;
    margin: 0 auto 20px auto;
    list-style: none;
    text-align: center;
}

    .portfolio #portfolio-flters li {
        cursor: pointer;
        display: inline-block;
        padding: 8px 15px 10px 15px;
        font-size: 14px;
        font-weight: 600;
        line-height: 1;
        text-transform: uppercase;
        color: #444444;
        margin-bottom: 5px;
        transition: all 0.3s ease-in-out;
        border-radius: 3px;
    }

        .portfolio #portfolio-flters li:hover, .portfolio #portfolio-flters li.filter-active {
            color: #151515;
            background: #d37937;
        }

        .portfolio #portfolio-flters li:last-child {
            margin-right: 0;
        }

.portfolio .portfolio-wrap {
    transition: 0.3s;
    position: relative;
    overflow: hidden;
    z-index: 1;
    background: rgba(21, 21, 21, 0.6);
}

    .portfolio .portfolio-wrap::before {
        content: "";
        background: rgba(21, 21, 21, 0.6);
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        transition: all ease-in-out 0.3s;
        z-index: 2;
        opacity: 0;
    }

    .portfolio .portfolio-wrap img {
        transition: all ease-in-out 0.3s;
    }

    .portfolio .portfolio-wrap .portfolio-info {
        opacity: 0;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 3;
        transition: all ease-in-out 0.3s;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        align-items: flex-start;
        padding: 20px;
    }

        .portfolio .portfolio-wrap .portfolio-info h4 {
            font-size: 20px;
            color: #fff;
            font-weight: 600;
        }

        .portfolio .portfolio-wrap .portfolio-info p {
            color: rgba(255, 255, 255, 0.7);
            font-size: 14px;
            text-transform: uppercase;
            padding: 0;
            margin: 0;
            font-style: italic;
        }

    .portfolio .portfolio-wrap .portfolio-links {
        text-align: center;
        z-index: 4;
    }

        .portfolio .portfolio-wrap .portfolio-links a {
            color: #fff;
            margin: 0 5px 0 0;
            font-size: 28px;
            display: inline-block;
            transition: 0.3s;
        }

            .portfolio .portfolio-wrap .portfolio-links a:hover {
                color: #d37937;
            }

    .portfolio .portfolio-wrap:hover::before {
        opacity: 1;
    }

    .portfolio .portfolio-wrap:hover img {
        transform: scale(1.2);
    }

    .portfolio .portfolio-wrap:hover .portfolio-info {
        opacity: 1;
    }

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
    padding-top: 40px;
}

    .portfolio-details .portfolio-details-slider img {
        width: 100%;
    }

    .portfolio-details .portfolio-details-slider .swiper-pagination {
        margin-top: 20px;
        position: relative;
    }

        .portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
            width: 12px;
            height: 12px;
            background-color: #fff;
            opacity: 1;
            border: 1px solid #d37937;
        }

        .portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
            background-color: #d37937;
        }

    .portfolio-details .portfolio-info {
        padding: 30px;
        box-shadow: 0px 0 30px rgba(21, 21, 21, 0.08);
    }

        .portfolio-details .portfolio-info h3 {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 20px;
            padding-bottom: 20px;
            border-bottom: 1px solid #eee;
        }

        .portfolio-details .portfolio-info ul {
            list-style: none;
            padding: 0;
            font-size: 15px;
        }

            .portfolio-details .portfolio-info ul li + li {
                margin-top: 10px;
            }

    .portfolio-details .portfolio-description {
        padding-top: 30px;
    }

        .portfolio-details .portfolio-description h2 {
            font-size: 26px;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .portfolio-details .portfolio-description p {
            padding: 0;
        }

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts .content {
    padding: 30px 0;
}

    .counts .content h3 {
        font-weight: 700;
        font-size: 34px;
        color: #151515;
    }

    .counts .content p {
        margin-bottom: 0;
    }

    .counts .content .count-box {
        padding: 20px 0;
        width: 100%;
    }

        .counts .content .count-box i {
            display: block;
            font-size: 36px;
            color: #d37937;
            float: left;
        }

        .counts .content .count-box span {
            font-size: 36px;
            line-height: 30px;
            display: block;
            font-weight: 700;
            color: #151515;
            margin-left: 50px;
        }

        .counts .content .count-box p {
            padding: 15px 0 0 0;
            margin: 0 0 0 50px;
            font-family: "Raleway", sans-serif;
            font-size: 14px;
            color: #3b3b3b;
        }

        .counts .content .count-box a {
            font-weight: 600;
            display: block;
            margin-top: 20px;
            color: #3b3b3b;
            font-size: 15px;
            font-family: "Poppins", sans-serif;
            transition: ease-in-out 0.3s;
        }

            .counts .content .count-box a:hover {
                color: #626262;
            }

.counts .image {
    background: url("../img/counts-img.jpg") center center no-repeat;
    background-size: cover;
    min-height: 400px;
}

@media (max-width: 991px) {
    .counts .image {
        text-align: center;
    }

        .counts .image img {
            max-width: 80%;
        }
}

@media (max-width: 667px) {
    .counts .image img {
        max-width: 100%;
    }
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials, .clients {
    padding: 80px 0;
    background: url("../img/testimonials-bg.jpg") no-repeat;
    background-position: center center;
    background-size: cover;
    position: relative;
}

    .testimonials::before {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
    }

    .testimonials .section-header {
        margin-bottom: 40px;
    }

    .testimonials .testimonials-carousel, .testimonials .testimonials-slider {
        overflow: hidden;
    }

    .testimonials .testimonial-item {
        text-align: center;
        color: #fff;
    }

        .testimonials .testimonial-item .testimonial-img {
            width: 100px;
            border-radius: 50%;
            border: 3px solid #d37937;
            margin: 0 auto;
        }

        .testimonials .testimonial-item h3 {
            font-size: 20px;
            font-weight: bold;
            margin: 10px 0 5px 0;
        }

        .testimonials .testimonial-item h4 {
            font-size: 14px;
            margin: 0 0 15px 0;
        }

        .testimonials .testimonial-item .quote-icon-left, .testimonials .testimonial-item .quote-icon-right {
            color: #d37937;
            font-size: 26px;
        }

        .testimonials .testimonial-item .quote-icon-left {
            display: inline-block;
            left: -5px;
            position: relative;
        }

        .testimonials .testimonial-item .quote-icon-right {
            display: inline-block;
            right: -5px;
            position: relative;
            top: 10px;
        }

        .testimonials .testimonial-item p {
            font-style: italic;
            margin: 0 auto 15px auto;
            color: #000;
        }

    .testimonials .swiper-pagination {
        margin-top: 20px;
        position: relative;
    }

        .testimonials .swiper-pagination .swiper-pagination-bullet {
            width: 12px;
            height: 12px;
            background-color: #fff;
            opacity: 0.5;
        }

        .testimonials .swiper-pagination .swiper-pagination-bullet-active {
            background-color: #d37937;
            opacity: 1;
        }

@media (min-width: 1024px) {
    .testimonials {
        background-attachment: fixed;
    }
}

@media (min-width: 992px) {
    .testimonials .testimonial-item p {
        width: 80%;
    }
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team {
    background: #fff;
    padding: 60px 0;
}

    .team .member {
        margin-bottom: 20px;
        overflow: hidden;
        border-radius: 5px;
        background: #fff;
        box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    }

        .team .member .member-img {
            position: relative;
            overflow: hidden;margin: 0 auto; text-align: center;
        }
.team .member .member-img img { width: 300px;height: 300px;}
        .team .member .social {
            position: absolute;
            left: 0;
            bottom: 30px;
            right: 0;
            opacity: 0;
            transition: ease-in-out 0.3s;
            text-align: center;
        }

            .team .member .social a {
                transition: color 0.3s;
                color: #151515;
                margin: 0 3px;
                border-radius: 4px;
                width: 36px;
                height: 36px;
                background: rgba(255, 255, 255, 0.8);
                transition: ease-in-out 0.3s;
                color: #484848;
                display: inline-flex;
                justify-content: center;
                align-items: center;
            }

                .team .member .social a:hover {
                    color: #151515;
                    background: #d37937;
                }

            .team .member .social i {
                font-size: 18px;
                line-height: 0;
            }

        .team .member .member-info {
            padding: 25px 15px;
        }

            .team .member .member-info h4 {
                font-weight: 700;
                margin-bottom: 5px;
                font-size: 18px;
                color: #151515;min-height: 50px;
            }

            .team .member .member-info span {
                display: block;
                font-size: 13px;
                font-weight: 400;
                color: #aaaaaa;
            }

            .team .member .member-info p {
                font-style: italic;
                font-size: 14px;
                line-height: 26px;
                color: #777777;
            }

        .team .member:hover .social {
            opacity: 1;
            bottom: 15px;
        }

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
    width: 100%;
    background: #fff;
}

    .contact .info i {
        font-size: 20px;
        background: #d37937;
        color: #fff;
        float: left;
        width: 44px;
        height: 44px;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 4px;
        transition: all 0.3s ease-in-out;
    }

    .contact .info h4 {
        padding: 0 0 0 60px;
        font-size: 22px;
        font-weight: 600;
        margin-bottom: 5px;
        color: #151515;
    }

    .contact .info p {
        padding: 0 0 0 60px;
        margin-bottom: 0;
        font-size: 14px;
        color: #484848;
    }

    .contact .info .email, .contact .info .phone {
        margin-top: 40px;
    }

.contact .php-email-form {
    width: 100%;
    background: #fff;
}

    .contact .php-email-form .form-group {
        padding-bottom: 8px;
    }

    .contact .php-email-form .error-message {
        display: none;
        color: #fff;
        background: #ed3c0d;
        text-align: left;
        padding: 15px;
        font-weight: 600;
    }

        .contact .php-email-form .error-message br + br {
            margin-top: 25px;
        }

    .contact .php-email-form .sent-message {
        display: none;
        color: #fff;
        background: #18d26e;
        text-align: center;
        padding: 15px;
        font-weight: 600;
    }

    .contact .php-email-form .loading {
        display: none;
        background: #fff;
        text-align: center;
        padding: 15px;
    }

        .contact .php-email-form .loading:before {
            content: "";
            display: inline-block;
            border-radius: 50%;
            width: 24px;
            height: 24px;
            margin: 0 10px -6px 0;
            border: 3px solid #18d26e;
            border-top-color: #eee;
            -webkit-animation: animate-loading 1s linear infinite;
            animation: animate-loading 1s linear infinite;
        }

    .contact .php-email-form input, .contact .php-email-form textarea {
        border-radius: 0;
        box-shadow: none;
        font-size: 14px;
        border-radius: 4px;
    }

        .contact .php-email-form input:focus, .contact .php-email-form textarea:focus {
            border-color: #d37937;
        }

    .contact .php-email-form input {
        height: 44px;
    }

    .contact .php-email-form textarea {
        padding: 10px 12px;
    }

    .contact .php-email-form button[type=submit] {
        background: #d37937;
        border: 0;
        padding: 10px 24px;
        color: #fff;
        transition: 0.4s;
        border-radius: 4px;
    }

        .contact .php-email-form button[type=submit]:hover {
            background: #ffcd6b;
        }

@-webkit-keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
    padding: 15px 0;
    background: whitesmoke;
    min-height: 40px;
    margin-top: 74px;
}

    .breadcrumbs h2 {
        font-size: 28px;
        font-weight: 400;
    }

    .breadcrumbs ol {
        display: flex;
        flex-wrap: wrap;
        list-style: none;
        padding: 0;
        margin: 0;
    }

        .breadcrumbs ol li + li {
            padding-left: 10px;
        }

            .breadcrumbs ol li + li::before {
                display: inline-block;
                padding-right: 10px;
                color: #2f2f2f;
                content: "/";
            }

@media (max-width: 992px) {
    .breadcrumbs {
        margin-top: 68px;
    }

        .breadcrumbs .d-flex {
            display: block !important;
        }

        .breadcrumbs ol {
            display: block;
        }

            .breadcrumbs ol li {
                display: inline-block;
            }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
    background: #fff;
    color: #444;
    font-size: 14px;    padding: 20px 20px 0 20px;
}

    #footer .footer-top {
        background: #f1f1f1;
        padding: 60px 0 30px 0;
        border-radius: 40px 40px 0 0;
    }

.footer-bottom {
    background: #194a39;
}

#footer .footer-top .footer-info {
    margin-bottom: 30px;
}

    #footer .footer-top .footer-info h3 {
        font-size: 28px;
        margin: 0 0 20px 0;
        padding: 2px 0 2px 0;
        line-height: 1;
        font-weight: 700;
        text-transform: uppercase;
    }

        #footer .footer-top .footer-info h3 span {
            color: #d37937;
        }

    #footer .footer-top .footer-info p {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 0;
        font-family: "Raleway", sans-serif;
        color: #444;
    }

#footer .footer-top .social-links a {
    font-size: 18px;
    display: inline-block;
    background: #d1d1d1;
    color: #fff;
    line-height: 1;
    padding: 8px 0;
    margin-right: 4px;
    border-radius: 4px;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
}

    #footer .footer-top .social-links a:hover {
        background: #d37937;
        color: #fff;
        text-decoration: none;
    }

#footer .footer-top h4 {
    font-size: 16px;
    font-weight: 600;
    color: #444;
    position: relative;
    padding-bottom: 12px;
}

#footer .footer-top .footer-links {
    margin-bottom: 30px;
}

    #footer .footer-top .footer-links ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

        #footer .footer-top .footer-links ul i {
            padding-right: 2px;
            color: #d37937;
            font-size: 18px;
            line-height: 1;
        }

        #footer .footer-top .footer-links ul li {
            padding: 10px 0;
            display: flex;
            align-items: center;
        }

            #footer .footer-top .footer-links ul li:first-child {
                padding-top: 0;
            }

        #footer .footer-top .footer-links ul a {
            color: #444;
            transition: 0.3s;
            display: inline-block;
            line-height: 1;
        }

            #footer .footer-top .footer-links ul a:hover {
                color: #d37937;
            }

#footer .footer-top .footer-newsletter form {
    margin-top: 30px;
    background: #fff;
    padding: 6px 10px;
    position: relative;
    border-radius: 4px;
}

    #footer .footer-top .footer-newsletter form input[type=email] {
        border: 0;
        padding: 4px;
        width: calc(100% - 110px);
    }

    #footer .footer-top .footer-newsletter form input[type=submit] {
        position: absolute;
        top: 0;
        right: -2px;
        bottom: 0;
        border: 0;
        background: none;
        font-size: 16px;
        padding: 0 20px;
        background: #d37937;
        color: #fff;
        transition: 0.3s;
        border-radius: 0 4px 4px 0;
    }

        #footer .footer-top .footer-newsletter form input[type=submit]:hover {
            background: #ffcd6b;
        }

#footer .copyright {
    color: #fff;
    text-align: center;
    padding: 10px 0;
}

#footer .credits {
    padding-top: 10px;
    text-align: center;
    font-size: 13px;
    color: #fff;
}











/****  *****/
::-webkit-scrollbar {
    width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #888;
}

    /* Handle on hover */
    ::-webkit-scrollbar-thumb:hover {
        background: #555;
    }


img {
    max-width: 100%;
}

#homebanner .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.4);
    opacity: 0.5;
}

#homebanner .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #d37937;
    opacity: 1;
}

.prestidnet-stament {
    padding: 10px 20px;
    box-shadow: 0px 0 30px rgb(21 21 21 / 8%);
    border-radius: 25px;
    text-align: center;
    min-height: 480px;
}

.prestidnet-stament .PresidentStatementDescription {
    min-height: 175px;
    margin: 0;
    max-height: 175px;
    overflow-y: hidden;
}
    .prestidnet-stament h5 {
        font-size: 16px;
        color: #d37937;    min-height: 40px;
    }

    .prestidnet-stament img {
        width: 150px;
        margin: 0 auto;
        text-align: center;
        display: block;
        border-radius: 50%;
        border: 4px solid #c07f47;
        margin-bottom: 15px;height: 150px;
    }

    .prestidnet-stament .redmrbtn {
        text-align: right;
        display: block;
        font-size: 14px;    padding-top: 10px;
    }

.news-list li {
    padding: 10px 0 !important;
    margin: 0;
    display: inline-block;
    border-bottom: 1px solid #eee;
    width: 100%;
    position: relative;
}

    .news-list li:last-child {
        border-bottom: none;
    }

.news-list p.pdate {
    font-size: 12px;
    display: block;
    position: relative;
    margin: 20px 0 0 0;
}

.news-list .new-img {
    float: left;
    margin-right: 20px;
}

    .news-list .new-img img {
        height: 150px;
        width: 200px;
    }

.news-list .titlee {
    margin: 0;
}

.news-list .newreadmr {
    font-size: 14px;
    text-align: right;
    display: block;
    position: absolute;
    right: 0;
    bottom: 20px;
}

.newviewall {
    background: #eee;
    display: block;
    padding: 10px;
    text-align: center;
}

    .newviewall:hover {
        background: #d37937;
        color: #fff;
    }



.donors-box {
    box-shadow: 0px 0 30px rgb(21 21 21 / 8%);
    margin: 10px 0;
    max-height: 310px;
    overflow-y: scroll;
    position: relative;
}

    .donors-box .ctitle {
        background: #194a39;
        color: #fff;
        font-size: 18px;
        padding: 10px;
    }

    .donors-box .donors-list {
        padding: 0 10px;
        margin: 0;
        list-style: none;
    }

        .donors-box .donors-list li a {
            display: inline-block;
            width: 100%;
            border-bottom: 1px solid #eee;
            padding: 5px 0;
        }

        .donors-box .donors-list .donortitle {
            color: #444;
            font-size: 14px;
            float: left;
        }

        .donors-box .donors-list .donoramount {
            float: right;
            font-size: 14px;
            font-weight: 600;
        }

        .donors-box .donors-list p {
            margin: 0 !important;
            padding: 0 !important;
        }

    .donors-box a.redmrbtn {
        position: sticky;
        bottom: 0;
        background: #eee;
        width: 100%;
        padding: 5px;
        text-align: center;
        display: inline-block;
    }

#advertisment {
    padding: 20px 0;
}

.advertisment-slider {
    text-align: center;
}

    .advertisment-slider .swiper-button-prev, .advertisment-slider .swiper-button-next {
        color: #d37937;
    }



.form-list li {
    padding: 10px 0 !important;
    margin: 0;
    display: inline-block;
    border-bottom: 1px solid #eee;
}

    .form-list li:last-child {
        border-bottom: none;
    }

.form-list p.pdate {
    font-size: 12px;
    display: block;
    position: relative;
    margin: 0 0 5px 0;
}

.form-list .new-img {
    float: left;
    margin-right: 10px;
}

    .form-list .new-img img {
        height: 60px;
        width: auto;
    }

.form-list .titlee {
    margin: 0;
}

.form-list .newreadmr {
    font-size: 12px;
    text-align: right;
    display: block;
}


.bradcum h2 {
    font-weight: bold;
}

.titlebar {
    background: #eee;
    padding: 30px;
}

.dlist {
    padding: 20px;
    box-shadow: 0px 0 30px rgb(21 21 21 / 8%);
    border-radius: 25px;
    text-align: center;
}

    .dlist ul {
        list-style: none;
    }

        .dlist ul li {
            width: 48%;
            display: inline-block;
            text-align: left;
            padding: 10px 0;border-bottom: 1px dotted #eee;
        }

            .dlist ul li a {
                color: #444;
            }

                .dlist ul li a:hover {
                    color: #d37937;
                }
                .dlist ul li span {
    margin-right: 20px;
    color: #194a39;
    font-weight: bold;
    float: right;
}

.news-list h5 {
    font-weight: 700;
}

.rigtdrop {
    position: absolute;
    right: 0;
    top: 0;
    display: inline-flex;
}

    .rigtdrop label {
        width: 160px;
        padding-top: 5px;
    }



ul.forms-list {
    list-style: none;
}

.forms-list li {
    width: 23%;
    display: inline-block;
    border: 1px solid #eee;
    margin: 9px;
    padding: 20px;
}

    .forms-list li .forms-img {
        float: left;
        margin-right: 10px;
    }

    .forms-list li .forms-data {
        float: left;
     
    }

    .forms-list li p.titlee {
        font-size: 14px;    margin: 0;
    }

    .forms-list li p.pdate {
        text-align: right;
        font-size: 12px;
        margin: 0;
    }
    .forms-list li a.newreadmr {
    width: 100%;
    display: inline-table;
    text-align: right;
}


ul.activity-forms-list {
    list-style: none;
}

.activity-forms-list li {
    display: inline-block;
    border: 1px solid #eee;
    margin: 9px;
    padding: 20px;
}

    .activity-forms-list li .forms-img {
        float: left;
        margin-right: 10px;
    }

    .activity-forms-list li .forms-data {
        float: left;
     
    }

    .activity-forms-list li p.titlee {
        font-size: 14px;    margin: 0;
    }

    .activity-forms-list li p.pdate {
        text-align: right;
        font-size: 12px;
        margin: 0;
    }
    .activity-forms-list li a.newreadmr {
    width: 100%;
    display: inline-table;
    text-align: right;
}


/****** Event List page ****/

.event-item {
    background-color: #ffffff;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    border-radius: 25px;
    padding: 25px;
    margin-bottom: 20px;
}

    .event-item .event-date {
        -webkit-border-radius: 15px;
        -moz-border-radius: 15px;
        -ms-border-radius: 15px;
        border-radius: 15px;
        width: 90px;
        padding: 15px;
        text-align: center;
    }

        .event-item .event-date h4 {
            font-weight: 500;
            font-size: 28px;
            margin-bottom: 5px;
            line-height: 1.1;
        }

        .event-item .event-date h5 {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 0;
        }

    .event-item .event-meta {
        margin-bottom: 15px;
    }

        .event-item .event-meta span {
            margin-right: 10px;
            font-size: 13px;
        }

        .event-item .event-meta i {
            color: #F15B43;
            font-size: 15px;
            margin-right: 4px;
            display: inline-block;
            vertical-align: middle;
        }

    .event-item:not(.event-item-bg) {
        -webkit-align-items: center;
        -moz-align-items: center;
        -ms-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-transition: box-shadow 0.3s;
        -moz-transition: box-shadow 0.3s;
        -ms-transition: box-shadow 0.3s;
        -o-transition: box-shadow 0.3s;
        transition: box-shadow 0.3s;
    }

        .event-item:not(.event-item-bg) .event-content {
            width: -moz-calc(100% - 90px);
            width: -webkit-calc(100% - 90px);
            width: calc(100% - 90px);
            padding-right: 20px;
        }

            .event-item:not(.event-item-bg) .event-content p {
                margin-bottom: 0;
            }

        .event-item:not(.event-item-bg) .event-date {
            border: 2px solid #364F75;
        }

        .event-item:not(.event-item-bg):nth-child(2n+2) {
            box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
        }

            .event-item:not(.event-item-bg):nth-child(2n+2) .event-date {
                border-color: #F15B43;
            }

                .event-item:not(.event-item-bg):nth-child(2n+2) .event-date h4, .event-item:not(.event-item-bg):nth-child(2n+2) .event-date h5 {
                    color: #F15B43;
                }

        .event-item:not(.event-item-bg):hover {
            box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
        }

@media screen and (max-width: 479px) {
    .event-item:not(.event-item-bg) .event-date {
        width: 100%;
        margin-top: 20px;
    }

        .event-item:not(.event-item-bg) .event-date h4,
        .event-item:not(.event-item-bg) .event-date h5 {
            font-size: 22px;
            display: inline-block;
        }

    .event-item:not(.event-item-bg) .event-content {
        padding-right: 0;
        width: 100%;
    }
}



/**** CTA bg ***/
.callback-inner-page {
    background-position: top center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 90px 0;
    position: relative;
    z-index: 1;
}

    .callback-inner-page .overlay {
        background-color: rgba(21, 21, 21, 0.65);
    }

    .callback-inner-page h2 {
        color: #ffffff;
    }

.overlay {
    background-color: rgba(21, 21, 21, 0.75);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.callback-inner-page .overlay {
    background-color: rgba(21, 21, 21, 0.65);
}

.sub-title {
    color: #d37937;
}

.button-round {
    background-color: #d37937;
    border: none;
    color: #ffffff;
    display: inline-block;
    position: relative;
    -webkit-transition: background-color 0.3s;
    -moz-transition: background-color 0.3s;
    -ms-transition: background-color 0.3s;
    -o-transition: background-color 0.3s;
    transition: background-color 0.3s;
}
.button-round:hover{background-color: #194a39;color: #fff;}

.callback-inner-page h2.section-title {
    font-size: 42px;
}


/*--------------------------------------------------------------
>>> Event Page  
----------------------------------------------------------------*/
.event-detail-container {
    margin-bottom: 60px;
}

    .event-detail-container h2 {
        text-transform: uppercase;
        margin-bottom: 30px;
    }

    .event-detail-container .event-feture-img img {
        -webkit-border-radius: 25px;
        -moz-border-radius: 25px;
        -ms-border-radius: 25px;
        border-radius: 25px;
    }

    .event-detail-container .time-counter-wrap {
        margin-top: -80px;
        margin-bottom: 35px;
    }

    .event-detail-container .time-counter {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-justify-content: center;
        -moz-justify-content: center;
        -ms-justify-content: center;
        justify-content: center;
        -ms-flex-pack: center;
        -webkit-flex-wrap: wrap;
        -moz-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        text-align: center;
    }

        .event-detail-container .time-counter * {
            color: #ffffff;
        }

        .event-detail-container .time-counter .counter-time {
            background-color: #194a39;
            border: 5px solid #ffffff;
            -webkit-border-radius: 25px;
            -moz-border-radius: 25px;
            -ms-border-radius: 25px;
            border-radius: 25px;
            width: 110px;
            margin: 5px;
            padding: 15px 10px 20px;
        }

            .event-detail-container .time-counter .counter-time span {
                display: block;
            }

            .event-detail-container .time-counter .counter-time [class*=counter-] {
                font-size: 40px;
                font-family: "Playfair Display", sans-serif;
                font-weight: 900;
                line-height: 1.1;
            }

@media screen and (max-width: 575px) {
    .event-detail-container {
        margin-bottom: 30px;
    }
}

.event-page-section {
    padding-bottom: 70px;
}

    .event-page-section .iconbox-container {
        margin-left: -15px;
        margin-right: -15px;
        margin-top: 50px;
    }

    .event-page-section .iconbox-item-2 {
        padding: 0 15px;
        margin-bottom: 20px;
        width: 100%;
    }

@media screen and (min-width: 992px) {
    .event-page-section .iconbox-item-2 {
        width: 50%;
    }
}

@media screen and (max-width: 575px) {
    .event-page-section {
        margin-bottom: 60px;
    }
}


.iconbox-border {
    border: 1px solid #d37937a3;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    border-radius: 25px;
    padding: 25px;
    width: 100%;
}

    .iconbox-border .iconbox-icon {
        background-color: #d37937;
        color: #ffffff;
        font-size: 38px;
        width: 78px;
        height: 78px;
        line-height: 85px;
        text-align: center;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        -ms-border-radius: 50%;
        border-radius: 50%;
    }

    .iconbox-border .iconbox-content {
        width: -moz-calc(100% - 78px);
        width: -webkit-calc(100% - 78px);
        width: calc(100% - 78px);
        padding-left: 20px;
    }

        .iconbox-border .iconbox-content h3 {
            margin-bottom: 10px;
        }

        .iconbox-border .iconbox-content p {
            margin-bottom: 0;
        }



.sidebar .widget-bg {
    background-color: #F8F8F8;
    border-bottom: 3px solid #d37937;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    border-radius: 25px;
    margin-bottom: 50px;
    padding: 30px;
}

    .sidebar .widget-bg .bg-title {
        background-color: #194a39;
        -webkit-border-radius: 25px;
        -moz-border-radius: 25px;
        -ms-border-radius: 25px;
        border-radius: 25px;
        color: #ffffff;
        padding: 10px;
        text-align: center;
        margin-bottom: 25px;
    }

.sidebar .sidebar-list ul {
    padding: 0;
    margin: 0;
}

.sidebar .sidebar-list li {
    list-style: none;
    margin-bottom: 8px;
}

    .sidebar .sidebar-list li i {
        color: #364F75;
        margin-right: 10px;
        font-size: 14px;
    }

.sidebar .faq-widget .accordion .card button {
    font-size: 15px;
    font-weight: 600;
    padding: 18px;
    text-transform: capitalize;
}

.sidebar .widget-icon {
    background-color: #F15B43;
    border-radius: 100%;
    color: #ffffff;
    height: 100px;
    width: 100px;
    text-align: center;
    line-height: 100px;
    font-size: 48px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
}

.sidebar .or-style {
    color: #F15B43;
    display: table;
    font-size: 18px;
    font-weight: 400;
    position: relative;
    margin-left: auto;
    margin-right: auto;
    padding-left: 70px;
    padding-right: 70px;
    margin-bottom: 20px;
}

    .sidebar .or-style:before, .sidebar .or-style:after {
        background-color: #d1d1d1;
        content: "";
        width: 60px;
        height: 1px;
        position: absolute;
        top: 50%;
        display: inline-block;
    }

    .sidebar .or-style:before {
        left: 0;
    }

    .sidebar .or-style:after {
        right: 0;
    }

.sidebar .upload-widget .button-primary {
    margin-top: 20px;
}

.sidebar .information-content {
    margin-bottom: 50px;
    padding: 50px 30px;
}

    .sidebar .information-content .button-round {
        margin-top: 20px;
        display: inline-block;
    }

.sidebar .icon-list-content ul {
    text-align: left;
    padding: 0;
    margin: 0;
}

    .sidebar .icon-list-content ul li {
        list-style: none;
        padding-bottom: 10px;
        margin-bottom: 10px;
        border-bottom: 1px solid rgba(241, 91, 67, 0.25);
    }

        .sidebar .icon-list-content ul li:last-child {
            margin-bottom: 0;
            padding-bottom: 0;
            border-bottom: none;
        }

        .sidebar .icon-list-content ul li i {
            color: #d37937;
            margin-right: 8px;
            font-size: 18px;
        }

        .sidebar .icon-list-content ul li a {
            color: #000;
            line-height: 1.3;
            font-weight: 600;
        }

            .sidebar .icon-list-content ul li a:hover {
                color: #d37937;
            }

.sidebar .widget-detail li {
    -webkit-align-items: end;
    -moz-align-items: end;
    -ms-align-items: end;
    -ms-flex-align: end;
    align-items: end;
    margin-bottom: 15px;
}

    .sidebar .widget-detail li:last-child {
        margin-bottom: 0;
    }

    .sidebar .widget-detail li h5 {
        font-size: 18px;
        margin-bottom: 0;
        margin-right: 10px;
        font-weight: 600;
    }

    .sidebar .widget-detail li span {
        color: #d37937;
        font-size: 15px;
        font-weight: 600;
        line-height: 1.5;
    }

.sidebar .widget-from p {
    margin-bottom: 20px;
}

.sidebar .widget-from input:not([type=submit]) {
    width: 100%;
}

.sidebar .widget {
    margin-bottom: 50px;
}

.sidebar .widget-bg-image {
    background-size: cover;
    background-repeat: no-repeat;
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.sidebar .widget-bg-image {
    background-size: cover;
    background-repeat: no-repeat;
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

    .sidebar .widget-bg-image:before {
        background-color: #151515;
        opacity: 0.7;
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
    }

    .sidebar .widget-bg-image * {
        color: #ffffff;
    }

iframe {
    display: block;
    width: 100%;
}

.sidebar .widget-map iframe {
    height: 280px;
}

.footer-info img {
    height: 60px;
}



/** About us page ****/

.iconbox-container-bg {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -8px;
    margin-right: -8px;
    padding-bottom: 30px;
}

.iconbox-item-bg {
    padding-left: 8px;
    padding-right: 8px;
    text-align: center;
}

    .iconbox-item-bg .iconbox-content-bg {
        background-color: #F8FAFF;
        -webkit-border-radius: 25px;
        -moz-border-radius: 25px;
        -ms-border-radius: 25px;
        border-radius: 25px;
        padding: 25px 15px;
        margin-bottom: 20px;
    }

        .iconbox-item-bg .iconbox-content-bg img {
            height: 90px;
            margin-bottom: 20px;
        }

    .iconbox-item-bg h4 {
        margin-bottom: 8px;
        font-size: 18px;
    }

@media screen and (min-width: 992px) {
    .iconbox-item-bg {
        width: 20%;
    }
}

@media screen and (max-width: 991px) {
    .iconbox-item-bg {
        -webkit-flex-grow: 1;
        -moz-flex-grow: 1;
        -ms-flex-grow: 1;
        flex-grow: 1;
    }
}


.about-page-section .client-section {
    padding: 80px 0;
}

.about-page-section .client-wrap {
    background-color: #ffffff;
    padding: 0;
}

.about-video-wrap {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

    .about-video-wrap .about-video-content {
        background-color: #194a39;
        -webkit-border-radius: 25px;
        -moz-border-radius: 25px;
        -ms-border-radius: 25px;
        border-radius: 25px;
        padding: 50px 55px;
        position: relative;
        z-index: 2;
    }

        .about-video-wrap .about-video-content:before {
            content: "";
            border: 2px solid rgba(255, 255, 255, 0.24);
            -webkit-border-radius: 25px;
            -moz-border-radius: 25px;
            -ms-border-radius: 25px;
            border-radius: 25px;
            position: absolute;
            height: 96%;
            width: 96%;
            top: 50%;
            left: 50%;
            -webkit-transform: translate(-50%, -50%);
            -moz-transform: translate(-50%, -50%);
            -ms-transform: translate(-50%, -50%);
            -o-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
        }

        .about-video-wrap .about-video-content * {
            color: #ffffff;
            position: relative;
        }

        .about-video-wrap .about-video-content h3 {
            font-size: 40px;
            font-weight: 600;
        }

        .about-video-wrap .about-video-content p {
            margin-bottom: 0;
        }

    .about-video-wrap .video-image {
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center center;
        -webkit-border-radius: 25px;
        -moz-border-radius: 25px;
        -ms-border-radius: 25px;
        border-radius: 25px;
        min-height: 440px;
        width: 100%;
        position: relative;
        overflow: hidden;
        z-index: 1;
    }

        .about-video-wrap .video-image .overlay {
            background-color: rgba(21, 21, 21, 0.3);
        }

    .about-video-wrap .video-button {
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        -moz-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        -o-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }

        .about-video-wrap .video-button a {
            background-color: #F15B43;
        }

            .about-video-wrap .video-button a i {
                color: #ffffff;
            }

.iconbox-item-bg .iconbox-content-bg:hover {
    box-shadow: 0px 2px 15px #0000001f;
    transition: all 0.5s;
    background: #fff;
}


.bradcum ul {
    list-style: none;
    display: inline-flex;
}

    .bradcum ul li {
        padding: 0 5px;
        font-size: 14px;
    }

        .bradcum ul li:after {
            content: "/";
           
        }

        .bradcum ul li:last-child:after {
            display: none;
        }

.sidebar .icon-list-content ul li a.active, .sidebar .icon-list-content ul li a.active i {
    color: #d37937;
}

.profile-div {
    box-shadow: 0px 2px 15px #0000001f;
    padding: 20px;
    margin-bottom: 30px;
}

    .profile-div .profile-img img {
        width: 180px;
        height: 180px;
        border-radius: 50%;
        border: 5px solid #d37937;
    }

    .profile-div .profilename {
        font-size: 20px;
        font-weight: 600;
        color: #000;
        margin: 15px 0 5px;min-height: 60px;
    }

    .profile-div .profileposi {
        color: #d37937;
        font-weight: 600;
        font-size: 18px;
        margin: 0;
    }

.accordion-button:not(.collapsed) {
    color: #fff;
    background-color: #d37937;
    box-shadow: inset 0 -1px 0 rgba(0,0,0,.125);
}

    .accordion-button:not(.collapsed)::after {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    }

.accordion-button:focus {
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
}

.dnpdf {
    background: #eeeeee;
    padding: 5px 10px;
    margin-top: 10px;
    display: inline-block;
}


@media screen and (min-width: 768px) {
    .about-video-wrap .about-video-content {
        margin-right: -50px;
        padding: 50px 55px;
        width: 400px;
    }

    .about-video-wrap .video-image {
        width: -moz-calc(100% - 350px);
        width: -webkit-calc(100% - 350px);
        width: calc(100% - 350px);
    }
}

@media screen and (max-width: 767px) {
    .about-video-wrap .about-video-content {
        padding: 30px 25px;
        width: 95%;
        margin-bottom: -50px;
        margin-left: auto;
        margin-right: auto;
    }

        .about-video-wrap .about-video-content h3 {
            font-size: 30px;
        }

    .about-video-wrap .video-image {
        min-height: 300px;
    }
}


/**end about us page ****/



.team-content .social-links li {
    display: inline-block;
    list-style: none;
    margin: 0 10px;
}

.team-content .social-links ul {
    margin: 0;
    padding: 0;
    font-size: 0;
}

.team-item {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 40px;
}

    .team-item .team-img {
        width: 50%;
    }

        .team-item .team-img img {
            -webkit-border-radius: 25px;
            -moz-border-radius: 25px;
            -ms-border-radius: 25px;
            border-radius: 25px;
        }

    .team-item .team-content {
        background-color: #f7f7f7;
        -webkit-border-radius: 25px;
        -moz-border-radius: 25px;
        -ms-border-radius: 25px;
        border-radius: 25px;
        padding: 35px 40px 40px;
        width: 57%;
        position: relative;
        margin-left: -7%;
    }

        .team-item .team-content span {
            color: #787878;
            display: block;
            font-size: 16px;
            font-weight: 600;
            line-height: 1.1;
            margin-bottom: 15px;
        }

    .team-item .social-links {
        padding-top: 5px;
    }

        .team-item .social-links li {
            margin: 0 4px;
        }

            .team-item .social-links li:first-child {
                margin-left: 0;
            }

            .team-item .social-links li:last-child {
                margin-right: 0;
            }

            .team-item .social-links li a {
                border: 1px solid #F15B43;
                -webkit-border-radius: 5px;
                -moz-border-radius: 5px;
                -ms-border-radius: 5px;
                border-radius: 5px;
                color: #F15B43;
                display: block;
                font-size: 14px;
                width: 35px;
                height: 35px;
                line-height: 35px;
                text-align: center;
                -webkit-transition: all 0.3s;
                -moz-transition: all 0.3s;
                -ms-transition: all 0.3s;
                -o-transition: all 0.3s;
                transition: all 0.3s;
            }

                .team-item .social-links li a:hover, .team-item .social-links li a:focus {
                    background-color: #CB4B36;
                    color: #ffffff;
                    border-color: #CB4B36;
                }

@media screen and (max-width: 991px) {
    .team-item .team-img img {
        width: 100%;
    }
}

@media screen and (max-width: 575px) {
    .team-item .team-img {
        width: 100%;
    }

        .team-item .team-img img {
            -webkit-border-radius: 25px 25px 0 0;
            -moz-border-radius: 25px 25px 0 0;
            -ms-border-radius: 25px 25px 0 0;
            border-radius: 25px 25px 0 0;
        }

    .team-item .team-content {
        -webkit-border-radius: 0 0 25px 25px;
        -moz-border-radius: 0 0 25px 25px;
        -ms-border-radius: 0 0 25px 25px;
        border-radius: 0 0 25px 25px;
        margin-left: 0;
        padding: 20px 20px 25px;
        width: 100%;
    }
}


.nav-link, .nav-link:focus, .nav-link:hover {
    color: #000;
}

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
    background-color: #d37937;
}

.sidebar input[type=text], .sidebar input[type=email], .sidebar input[type=url], .sidebar input[type=password], .sidebar input[type=number], .sidebar input[type=tel], .sidebar textarea {
    background-color: #F8F8F8;
    border: 1px solid #d9d9d9;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    border-radius: 25px;
    font-size: 14px;
    padding: 0 15px;
    height: 55px;
}

.sidebar .subbtn {
    background: #ffffff;
    border: none;
    padding: 10px 15px;
    border-radius: 20px;
    min-width: 160px;
    color: #194a39 !important;
}

    .sidebar .subbtn:hover {
        background: #194a39;
        color: #fff !important;
    }

.docform ul li {
    width: 200px;
    display: inline-block;
}

    .docform ul li a {
        box-shadow: 0px 2px 4px #0000001f;
        display: block;
        padding: 20px;
        margin: 10px;
    }

        .docform ul li a:hover {
            box-shadow: 0px 2px 15px #0000001f;
        }

    .docform ul li img {
        display: block;
        margin: 0 auto;
    }

.totladonation {
    background: linear-gradient(180deg, rgba(250,168,107,1) 0%, rgba(211,121,55,1) 100%);
    text-align: center;
    border-radius: 5px;
    padding: 20px;
}

    .totladonation h4, .totladonation h2 {
        color: #fff;
    }

.donatrow {
    margin-top: 60px;
}

.dontli li a {
    color: #000;
    display: inline-block;
    border-bottom: 1px dotted #cbcbcb;
    padding: 10px 0;width: 100%;
}

    .dontli li a span {
        float: right;color: #194a39; font-weight: bold;
    }


@keyframes scaleCup {
    0% {
        transform: scale(0.6);
    }

    100% {
        transform: scale(1);
    }
}


@keyframes confettiRain {
    0% {
        opacity: 1;
        margin-top: -100vh;
        margin-left: -200px;
    }

    100% {
        opacity: 1;
        margin-top: 100vh;
        margin-left: 200px;
    }
}

.confetti {
    opacity: 0;
    position: absolute;
    width: 1rem;
    height: 1.5rem;
    transition: 500ms ease;
    animation: confettiRain 5s infinite;
}

#confetti-wrapper {
    overflow: hidden !important;
}

.gallerydiv {
    position: relative;
    margin-bottom: 25px;
    border-radius: 10px;
    height: 180px;
}

    .gallerydiv img {
        border-radius: 10px;
        height: 180px;
        width: 100%;
    }

    .gallerydiv h2 {
        position: absolute;
        z-index: 9999;
        top: 0;
        left: 0;
        right: 0;
        text-align: center;
        color: #fff;
        margin: 0;
        padding: 80px 0 0 0;
        font-size: 18px;
        height: 100%;
    }

    .gallerydiv:before {
        content: "";
        background: rgba(0,0,0,0.5);
        width: 100%;
        height: 100%;
        position: absolute;
        border-radius: 10px;
    }

.gallerydetailrow a.col-sm-4 {
    margin-bottom: 20px;
}
.nav-pills .nav-link{background: #eee;margin: 5px;}


.navbarprofile-menu .nav-link {font-size: 15px;font-weight: 600;}


/****** Vastipatrak page ****/

.vastipatrak-item {background-color: #ffffff;display: -webkit-box;display: -moz-box;display: -ms-flexbox;display: -webkit-flex;display: flex;-webkit-flex-wrap: wrap;-moz-flex-wrap: wrap;-ms-flex-wrap: wrap;    flex-wrap: wrap;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    border-radius: 25px;
    padding:15px 20px;
    margin-bottom: 20px;
}

    .vastipatrak-item .vastipatrak-date {
        -webkit-border-radius: 15px;
        -moz-border-radius: 15px;
        -ms-border-radius: 15px;
        border-radius: 15px;
        width: 90px;
        padding: 15px;
        text-align: center;
    }

        .vastipatrak-item .vastipatrak-date h4 {
            font-weight: 500;
            font-size: 28px;
            margin-bottom: 5px;
            line-height: 1.1;
        }

        .vastipatrak-item .vastipatrak-date h5 {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 0;
        }

    .vastipatrak-item .vastipatrak-meta {
        margin-bottom: 10px;
    }

        .vastipatrak-item .vastipatrak-meta span {
            margin-right: 10px;
            font-size: 13px;
        }

        .vastipatrak-item .vastipatrak-meta i {
            color: #d37937;
            font-size: 15px;
            margin-right: 4px;
            display: inline-block;
            vertical-align: middle;
        }

    .vastipatrak-item {
        -webkit-align-items: center;
        -moz-align-items: center;
        -ms-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-transition: box-shadow 0.3s;
        -moz-transition: box-shadow 0.3s;
        -ms-transition: box-shadow 0.3s;
        -o-transition: box-shadow 0.3s;
        transition: box-shadow 0.3s;
    }

        .vastipatrak-item .vastipatrak-content {
            width: -moz-calc(100% - 40px);
            width: -webkit-calc(100% - 40px);
            width: calc(100% - 40px);
            padding-right: 20px;
        }

            .vastipatrak-item .vastipatrak-content p {
                margin-bottom: 0;font-size: 14px;
            }

        .vastipatrak-item .vastipatrak-date {
            border: 2px solid #364F75;
        }

        .vastipatrak-item:not(.vastipatrak-item-bg){
            box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
            min-height: 180px;
        }

            .vastipatrak-item:not(.vastipatrak-item-bg) .vastipatrak-date {
                border-color: #F15B43;
            }

                .vastipatrak-item:not(.vastipatrak-item-bg) .vastipatrak-date h4, .vastipatrak-item:not(.vastipatrak-item-bg) .vastipatrak-date h5 {
                    color: #F15B43;
                }

        .vastipatrak-item:not(.vastipatrak-item-bg):hover {
            box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
        }

@media screen and (max-width: 479px) {
    .vastipatrak-item:not(.vastipatrak-item-bg) .vastipatrak-date {
        width: 100%;
        margin-top: 20px;
    }

        .vastipatrak-item:not(.vastipatrak-item-bg) .vastipatrak-date h4,
        .vastipatrak-item:not(.vastipatrak-item-bg) .vastipatrak-date h5 {
            font-size: 22px;
            display: inline-block;
        }

    .vastipatrak-item:not(.vastipatrak-item-bg) .vastipatrak-content {
        padding-right: 0;
        width: 100%;
    }
}




/***** Sidebar *****/


.vastipatrak-page{display: flex;width: 100%;align-items: stretch;}
#vastipatrak-content{width: 100%;padding: 20px;min-height: 100vh;transition: all 0.3s;}
#vastipatrak-content article {width: 440px;float: left;margin-right: 20px;}
#ContentPlaceHolder1_btnFilter {margin-top: -30px;background: transparent;color: #000;border: 1px solid #000;border-radius: 0;}


.btn-check:active+.btn-info:focus, .btn-check:checked+.btn-info:focus, .btn-info.active:focus, .btn-info:active:focus, .show>.btn-info.dropdown-toggle:focus {box-shadow: none !important;}
#ContentPlaceHolder1_btnFilter:focus, #ContentPlaceHolder1_btnFilter:active {box-shadow: none;}

#vastipatrak-sidebar {min-width: 300px;max-width: 300px;transition: all 0.3s;margin-left: 20px;}
#vastipatrak-sidebar .card {margin-bottom: 10px;background: #F8F8F8;border: 2px solid #eee;}
#vastipatrak-sidebar.active {margin-left: -300px;}
#vastipatrak-sidebar header.card-header {background: #194a39;}
#vastipatrak-sidebar header.card-header h6{color: #fff;margin-bottom: 0;}
#vastipatrak-sidebar .form-row {display: flex;}
.filtertag {margin-bottom: 20px;}
.filtertag ul {list-style: none;}
.filtertag ul li {display: inline-block;background: #eee;padding: 5px 10px;border-radius: 20px;}
.vastipatrak-links {display: grid;}
.vastipatrak-links a {font-size: 30px;}
.vastipatrak-links a.wcall {color: #393;}
.vastipatrak-links a.wcall:hover {color: #000;}
.vastipatrak-profile-page .vp-profile {box-shadow: 0px 0px 20px 0px rgb(0 0 0 / 10%);padding: 20px;border-radius: 20px;}
.vp-profile h4.vp-profile-name {margin: 10px 0;}
.vp-profile .vp-s-detail p {margin: 10px 0;}
.vp-profile .vp-s-detail p a {color: #000;}
.vp-profile .vp-s-detail p a:hover{color: #d37937;}
.vp-profile .vp-s-detail p a i {margin-right: 5px;}
.vp-description-detail .form-group p label {width: 200px;font-weight: 600;}
.vp-description-detail h2.accordion-header .accordion-button {font-weight: 800;background: #eee;}
.vp-description-detail h2.accordion-header .accordion-button:not(.collapsed) {color: #fff;background-color: #d37937;box-shadow: inset 0 -1px 0 rgba(0,0,0,.125);}
.vp-description-detail .vastipatrak-item {width: 48%;float: left;margin-right: 10px;}


/** Login page ***/
.login-form {background-color: #ffffff;box-shadow: 0px 0px 13px -4px rgba(0, 0, 0, 0.2);-webkit-border-radius: 25px;-moz-border-radius: 25px;-ms-border-radius: 25px;border-radius: 25px;padding: 50px;position: relative;text-align: center;margin: 60px 0;}
.login-form input[type=text], .login-form input[type=password]{background-color: #F8F8F8;border: 1px solid #d9d9d9;-webkit-border-radius: 25px;-moz-border-radius: 25px;-ms-border-radius: 25px;border-radius: 25px;font-size: 14px;padding: 15px;margin: 20px 0 10px 0;width: 100%;}
.titdropdn .form-select {background: #d37937;color: #fff;border: 1px solid #d37937;}
.form-select:focus{box-shadow: none;}
.president-img img{height: 200px;border: 3px solid #d37937;}




/***** matrimonial page ****/

.matrimonial-item {background-color: #ffffff;display: -webkit-box;display: -moz-box;display: -ms-flexbox;display: -webkit-flex;display: flex;-webkit-flex-wrap: wrap;-moz-flex-wrap: wrap;-ms-flex-wrap: wrap;flex-wrap: wrap;
padding:15px 20px;margin-bottom: 20px;box-shadow: 0px 0px 20px 0px rgb(0 0 0 / 10%);}

.matrimonial-item .matrimonial-meta {margin-bottom: 10px;}
.matrimonial-item .matrimonial-meta span {margin-right: 10px;font-size: 13px;}
.matrimonial-item .matrimonial-meta i {color: #d37937;font-size: 15px;margin-right: 4px;display: inline-block;vertical-align: middle;}
.matrimonial-item {-webkit-align-items: center;-moz-align-items: center;-ms-align-items: center;-ms-flex-align: center;align-items: center;-webkit-transition: box-shadow 0.3s;-moz-transition: box-shadow 0.3s;
        -ms-transition: box-shadow 0.3s;-o-transition: box-shadow 0.3s;transition: box-shadow 0.3s;}
.matrimonial-item .matrimonial-content {width: -moz-calc(100% - 140px);width: -webkit-calc(100% - 140px);width: calc(100% - 140px);}
.matrimonial-item .matrimonial-content p {margin-bottom: 0;font-size: 14px;}
.matrimonial-item-img {width: 110px;margin-right: 10px;}
.matrimonial-item-img img{width: 100px;height: 100px;border: 1px solid #194a39;}
.matrimonial-page{display: flex;width: 100%;align-items: stretch;}
#matrimonial-content{width: 100%;padding: 20px;min-height: 100vh;transition: all 0.3s;}
#matrimonial-content article {width: 440px;float: left;margin-right: 20px;}
#matrimonial-content .matrimonial-item:hover{transform: scale(1.1);transition: all ease-in-out 0.5s;z-index: 9999;}

#matrimonial-sidebar {min-width: 300px;max-width: 300px;transition: all 0.3s;margin-left: 20px;}
#matrimonial-sidebar .card {margin-bottom: 10px;background: #F8F8F8;border: 2px solid #eee;}
#matrimonial-sidebar.active {margin-left: -300px;}
#matrimonial-sidebar header.card-header {background: #194a39;}
#matrimonial-sidebar header.card-header h6{color: #fff;margin-bottom: 0;}
#matrimonial-sidebar .form-row {display: flex;}
.matrimonial-profile-page .mm-profile {box-shadow: 0px 0px 20px 0px rgb(0 0 0 / 10%);padding: 20px;border-radius: 20px;}
.mm-description-detail .matrimonial-item {width: 48%;float: left;margin-right: 10px;}

.mm-profile h4.mm-profile-name {margin: 10px 0;color: #d37937;}
.mm-profile .mm-s-detail p {margin: 10px 0;}
.mm-profile .mm-s-detail p a {color: #000;}
.mm-profile .mm-s-detail p a:hover{color: #d37937;}
.mm-profile .mm-s-detail p a i {margin-right: 5px;color: #d37937;}
.mm-description-detail .form-group p label {width: 200px;font-weight: 600;}
.mm-description-detail h2.accordion-header .accordion-button {font-weight: 800;background: #d37937;color: #fff;}
.mm-description-detail h2.accordion-header .accordion-button:not(.collapsed) {color: #fff;background-color: #194a39;box-shadow: inset 0 -1px 0 rgba(0,0,0,.125);}
.mm-description-detail .vastipatrak-item {width: 48%;float: left;margin-right: 10px;}

.mm-description-detail .accordion-body p {border: 1px solid #eee;margin: 0;padding: 10px;}

/*** contact us page **/
.contact-form-area .form-control{border: 1px solid #d9d9d9;background: #F8F8F8;border-radius: 25px;font-size: 14px;padding: 15px;margin: 20px 0 10px 0;}

.faqs-page .accordion-button{background-color: #efefef;}
.faqs-page .accordion-button:not(.collapsed){background-color: #d37937 !important;}
.stickylogo{display: none;}

 #header.header-scrolled .stickylogo{display: block;height: 70px;transition: all ease-in-out 0.5s;}
 #header.header-scrolled .normallogo{display: none;transition: all ease-in-out 0.5s;}
 

@media only screen and (max-width: 767px) {
    .dlist ul li{width: 100%;}
    .dlist ul li span{margin-right: 0;}
    .news-list .new-img{float: none;}
    #header .logo img{left: 0;height: 95px;}
    #header.header-scrolled{}
    .contact-form-inner .row .col{flex: none;}
    .contact-form-area .form-control{margin: 20px 0 0px 0;}
    .login-form{padding: 50px 15px;}
}


@media only screen and (max-width: 576px) {
    .container, .container-sm{max-width: 90%;}
}
