/* ============================================================================
   TABLE DES MATIÈRES
   ============================================================================
   1. BASE & TYPOGRAPHY
   2. UTILITIES & HELPERS
   3. BUTTONS
   4. TOP BAR
   5. NAVIGATION
   6. SCROLL TO TOP
   7. HOME SLIDER
   8. SPECIAL SECTION
   9. CAUSES/DONATIONS
   10. WHY CHOOSE (FEATURES)
   11. EVENTS
   12. BLOG
   13. CALL TO ACTION
   14. PAGE TOP/BREADCRUMB
   15. TEAM
   16. CONTENT PAGES
   17. CONTACT
   18. FAQ
   19. TESTIMONIALS
   20. COUNTERS
   21. PHOTO & VIDEO GALLERY
   22. FORMS
   23. COMMENTS
   24. PAGINATION
   ============================================================================ */


/* ============================================================================
   1. BASE & TYPOGRAPHY
   ============================================================================ */

body {
    font-family: "Lora", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}

a {
    transition: all 0.35s ease;
    text-decoration: none;
    color: inherit;
}

a:hover {
    text-decoration: none;
}

p {
    font-weight: 400;
    margin-bottom: 1rem;
}

h2, h3, h4, h5, h6 {
    font-weight: 700;
}

/* Container */
.container {
    max-width: 1140px;
}


/* ============================================================================
   2. UTILITIES & HELPERS
   ============================================================================ */

/* Form Controls */
.form-control,
select,
textarea,
input {
    font-size: 16px;
}

.form-control:focus {
    box-shadow: none;
}

select {
    width: 100% !important;
}

/* Text Alignment */
.tar {
    text-align: right;
}

/* Width Utilities */
.w-100-p { width: 100% !important; }
.w-100 { width: 100px !important; }
.w-150 { width: 150px !important; }
.w-200 { width: 200px !important; }
.w-300 { width: 300px !important; }
.w-400 { width: 400px !important; }

/* Height Utilities */
.h-100 { height: 100px !important; }
.h-150 { height: 150px !important; }
.h-200 { height: 200px !important; }

/* Margin Utilities */
.ml-auto {
    margin-left: auto !important;
}

/* Background Utilities */
.bg_f3f3f3 {
    background: #f3f3f3;
}

.bg-website {
    background: #47ae1b !important;
    border: 0;
}

/* Clearfix */
.clearfix {
    width: 100%;
    clear: both;
}


/* ============================================================================
   3. BUTTONS
   ============================================================================ */

/* Primary Color */
.primary-color {
    color: #47ae1b;
}

.primary-color:hover {
    color: #333;
}

/* Button Style 1 - Large Primary Button */
.button-style-1 a {
    font-size: 16px;
    font-weight: 600;
    display: inline-block;
    background: #47ae1b;
    color: #fff;
    text-decoration: none;
    border: 1px solid #47ae1b;
    border-radius: 30px;
    padding: 14px 45px;
    transition: all 0.3s ease;
}

.button-style-1 a:hover {
    background: transparent;
    border: 1px solid #47ae1b;
    color: #47ae1b;
}

/* Button Style 2 - Medium Primary Button */
.button-style-2 a {
    font-size: 16px;
    font-weight: 600;
    display: inline-block;
    background: #47ae1b;
    color: #fff;
    text-decoration: none;
    border: 1px solid #47ae1b;
    border-radius: 30px;
    padding: 8px 35px;
    transition: all 0.3s ease;
}

.button-style-2 a:hover {
    background: transparent;
    border: 1px solid #47ae1b;
    color: #47ae1b;
}

/* Bootstrap Button Overrides */
.btn:first-child:hover,
:not(.btn-check) + .btn:hover {
    color: #fff;
    background-color: #2d2d2d;
    border-color: #2d2d2d;
}

/* Badge Colors */
.badge.bg-success {
    background: #11af33 !important;
}

.badge.bg-danger {
    background: #ff3c23 !important;
}

/* Dropdown */
.dropdown-item.active,
.dropdown-item:active {
    background-color: #47ae1b;
}


/* ============================================================================
   4. TOP BAR
   ============================================================================ */

.top {
    min-height: 40px;
    color: #fff;
    background: #47ae1b;
    font-size: 14px;
    border-bottom: 1px solid #d7d7d7;
}

.top ul {
    margin-bottom: 0;
    padding-left: 0;
}

.top ul li {
    list-style-type: none;
    line-height: 40px;
    float: left;
    margin-right: 20px;
    font-weight: 400;
    position: relative;
    padding-left: 15px;
}

.top ul li a {
    color: #fff;
}

/* Right Side Items */
.top ul.right {
    float: right;
}

.top ul.right li {
    margin-right: 0;
    padding-left: 15px;
    margin-left: 10px;
}

.top ul.right li:before {
    content: "|";
    position: absolute;
    top: 0;
    left: 0;
}

.top ul.right li:first-child:before {
    display: none;
}

/* Top Bar - Responsive */
@media (max-width: 991px) {
    .top {
        padding-top: 3px;
        padding-bottom: 3px;
    }
    
    .top ul li {
        line-height: 28px;
    }
    
    .top ul.right {
        padding-top: 12px;
    }
    
    .top .left-side,
    .top .left-side ul {
        width: 100%;
    }
    
    .top .left-side ul {
        text-align: center;
    }
    
    .top .left-side ul li {
        float: none;
        display: inline-block;
        margin-left: 10px;
        margin-right: 10px;
    }
    
    .top .right-side,
    .top .right-side ul {
        width: 100%;
    }
    
    .top .right-side ul {
        text-align: center;
    }
    
    .top .right-side ul li {
        float: none;
        display: inline-block;
    }
    
    .top ul.right {
        padding-top: 0;
    }
}

@media (max-width: 767px) {
    .top ul {
        width: 100%;
        text-align: center;
        margin-top: 10px;
    }
    
    .top ul li {
        float: none;
        display: inline-block;
    }
    
    .top ul.right {
        width: 100%;
        text-align: center;
        margin-bottom: 10px;
        padding-top: 0;
    }
    
    .top ul.right li {
        float: none;
        display: inline-block;
    }
    
    .top ul.right li:first-child {
        margin-left: 0;
        padding-left: 0;
    }
}


/* ============================================================================
   5. NAVIGATION
   ============================================================================ */

.main-nav {
    position: relative;
    padding-top: 0;
    padding-bottom: 0;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.main-nav .navbar {
    padding-left: 0;
    padding-right: 0;
}

.main-nav nav .navbar-nav .nav-item {
    padding-top: 20px;
    padding-bottom: 20px;
}

.main-nav nav .navbar-nav .nav-item a {
    color: #333;
    font-weight: 500;
    text-transform: none !important;
    font-size: 15px !important;
    position: relative;
}

.main-nav nav .navbar-nav .nav-item.active a {
    color: #47ae1b;
}

/* Dropdown Menu */
.main-nav nav .navbar-nav .nav-item .dropdown-menu {
    top: 68px !important;
    background: #ffffff !important;
    padding: 0 !important;
    border: 2px solid #f5f5f5 !important;
    border-radius: 0 !important;
    width: 200px !important;
    z-index: 999999 !important;
}

.main-nav nav .navbar-nav .nav-item .dropdown-menu li a {
    color: #444;
    border-bottom: 1px solid #dbdbdb;
}

/* Hover & Active States */
.mobile-nav.mean-container .mean-nav ul li a.active,
.main-nav nav .navbar-nav .nav-item a:hover,
.main-nav nav .navbar-nav .nav-item a:focus,
.main-nav nav .navbar-nav .nav-item a.active,
.main-nav nav .navbar-nav .nav-item:hover a,
.main-nav nav .navbar-nav .nav-item .dropdown-menu li a:hover,
.main-nav nav .navbar-nav .nav-item .dropdown-menu li a:focus,
.main-nav nav .navbar-nav .nav-item .dropdown-menu li a.active,
.main-nav nav .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a:hover,
.main-nav nav .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a:focus,
.main-nav nav .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a.active,
.main-nav nav .navbar-nav .nav-item .dropdown-menu li:hover a {
    color: #47ae1b;
}

.main-nav nav .navbar-nav .nav-item .dropdown-menu li a:hover {
    color: #47ae1b !important;
}

/* Logo */
.main-nav img {
    height: 50px;
}

.mobile-nav img {
    height: 40px;
}

/* Mobile Menu */
.mean-container .mean-bar {
    background-color: #fff;
    height: 60px;
    z-index: 999999 !important;
}

.mean-container .logo {
    top: 5px;
}

.mean-container img {
    height: 50px;
}

.mean-container a.meanmenu-reveal span {
    background: #47ae1b;
}

.mean-container a.meanmenu-reveal {
    color: #47ae1b;
}


/* ============================================================================
   6. SCROLL TO TOP BUTTON
   ============================================================================ */

.scroll-top {
    cursor: pointer;
    text-align: center;
    font-size: 22px;
    position: fixed;
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    bottom: 20px;
    right: 20px;
    background: #47ae1b;
    color: #fff;
    opacity: 0.7;
    z-index: 999999;
    transition: all 0.3s ease;
}

.scroll-top:hover {
    opacity: 1;
    color: #fff;
    background: #313131;
}


/* ============================================================================
   7. HOME SLIDER
   ============================================================================ */

.slider .item {
    position: relative;
    height: 620px;
    transition: all 0.5s ease;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
}

.slider .item .bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    background: #454545;
}

.slider .text {
    position: relative;
    z-index: 99999;
    height: 100%;
}

.slider .text .container,
.slider .text .row {
    height: 100%;
}

.slider .text-wrapper {
    height: 100%;
    position: relative;
    display: table;
}

.slider .text-content {
    display: table-cell;
    vertical-align: middle;
    height: auto;
}

.slider .text h2 {
    font-size: 56px;
    color: #fff;
    font-weight: 700;
    margin: 0;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.slider .text p {
    font-size: 16px;
    color: #fff;
    letter-spacing: 0.5px;
    line-height: 1.7;
}

/* Slider Navigation */
.slide-carousel.owl-carousel .owl-nav .owl-prev,
.slide-carousel.owl-carousel .owl-nav .owl-next {
    position: absolute;
    text-align: center;
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 45px;
    font-size: 18px;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.slide-carousel.owl-carousel .owl-nav .owl-prev {
    top: 47%;
    left: 0;
    margin-left: 40px;
}

.slide-carousel.owl-carousel .owl-nav .owl-next {
    top: 47%;
    right: 0;
    margin-right: 40px;
}

.slide-carousel.owl-carousel .owl-nav .owl-prev:hover,
.slide-carousel.owl-carousel .owl-nav .owl-next:hover {
    color: #47ae1b;
    border: 2px solid #47ae1b;
}

/* Slider - Responsive */
@media (max-width: 1310px) {
    .slider .text {
        padding-left: 100px;
        padding-right: 100px;
    }
}

@media (max-width: 767px) {
    .slider .item {
        padding-top: 100px;
        padding-bottom: 100px;
    }
}

@media (max-width: 560px) {
    .slider .item {
        height: auto;
    }
    
    .slider .text-wrapper {
        display: block;
    }
}


/* ============================================================================
   8. SPECIAL SECTION
   ============================================================================ */

.special {
    background: #f2f2f2;
}

.special .left-side {
    height: 100%;
    display: table;
}

.special .left-side .inner {
    padding: 0 30px;
    display: table-cell;
    vertical-align: middle;
}

.special .left-side h2 {
    color: #333;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.special .left-side h3 {
    color: #47ae1b;
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 30px;
}

.special .left-side p {
    color: #333;
    font-size: 15px;
}

.special .left-side .read-more {
    margin-top: 30px;
}

.special .left-side .read-more a {
    border: 0;
    padding: 10px 30px;
    display: inline-block;
    color: #fff;
    transition: all 0.4s ease;
    font-weight: 600;
    text-transform: uppercase;
}

.special .left-side .read-more a:hover {
    background: transparent;
    border-color: #fff;
}

/* Video Section */
.special .right-side {
    width: 100%;
    min-height: 500px;
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.special .right-side .video-button {
    position: absolute;
    z-index: 10;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    box-sizing: content-box;
    display: block;
    width: 32px;
    height: 44px;
    border-radius: 50%;
    padding: 24px 18px 18px 28px;
}

.special .right-side .video-button:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 66px;
    height: 66px;
    background: #47ae1b;
    border-radius: 50%;
    animation: video-pop 1500ms ease-out infinite;
}

.special .right-side .video-button:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 66px;
    height: 66px;
    background: #47ae1b;
    border-radius: 50%;
    transition: all 200ms;
}

.special .right-side .video-button span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    border-left: 28px solid #fff;
    border-top: 18px solid transparent;
    border-bottom: 18px solid transparent;
}

@keyframes video-pop {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }
    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

/* Special Section - Responsive */
@media only screen and (max-width: 768px) {
    .special .right-side .video-section {
        margin-top: 40px;
    }
    
    .special .left-side {
        margin-bottom: 60px;
        display: block;
        height: auto;
    }
}


/* ============================================================================
   9. CAUSES/DONATIONS CATEGORIES
   ============================================================================ */

.cause .heading,
.donation-categories .heading {
    text-align: center;
    margin-bottom: 30px;
}

.cause .heading h2,
.donation-categories .heading h2 {
    font-size: 30px;
    font-weight: 700;
    color: #333;
}

.cause .heading p,
.donation-categories .heading p {
    color: #696969;
}

/* Cause Item */
.cause .item .photo {
    margin-bottom: 10px;
    overflow: hidden;
    border-radius: 10px;
}

.cause .item .photo img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transform: scale(1);
    transition: all 0.4s ease;
}

.cause .item:hover .photo img {
    transform: scale(1.1);
}

.cause .item .text h2 {
    font-size: 20px;
    font-weight: 700;
}

.cause .item .text h2 a {
    color: #333;
    transition: color 0.3s ease;
}

.cause .item .text h2 a:hover {
    color: #47ae1b;
}

.cause .item .text .short-des p {
    color: #333;
    margin-bottom: 10px;
    font-weight: 400;
    font-size: 16px;
}

/* Progress Bar */
.cause .item .text .progress {
    background-color: #d7d7d7;
    height: 9px;
    border-radius: 5px;
    overflow: hidden;
}

.cause .item .text .progress-bar {
    background-color: #20b1db;
    width: 0;
    transition: width 1s ease;
}

.cause .item .text .lbl {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}

.cause .item .text .lbl .raised,
.cause .item .text .lbl .goal {
    font-size: 14px;
    color: #696969;
    font-weight: 700;
}

/* Category Items - Modern Design */
.category-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.category-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.category-item .photo {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.category-item .photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.category-item:hover .photo img {
    transform: scale(1.1);
}

.category-item .text {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.category-item .text h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    line-height: 1.4;
}

.category-item .text h2 a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s ease;
}

.category-item .text h2 a:hover {
    color: #e74c3c;
}

/* Placeholder Image */
.placeholder-img {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-img i {
    font-size: 4rem;
    color: white;
    opacity: 0.3;
}

/* Responsive */
@media (max-width: 1199px) {
    .cause .item .photo img {
        height: 220px;
    }
}

@media (max-width: 991px) {
    .cause .item .photo img {
        height: 290px;
    }
}

@media (max-width: 767px) {
    .cause .item .photo img {
        height: auto;
    }
    
    .category-item .photo {
        height: 200px;
    }
}


/* ============================================================================
   10. WHY CHOOSE (FEATURES) - WITH DYNAMIC BACKGROUND
   ============================================================================ */



/* ============================================================================
   11. EVENTS
   ============================================================================ */

.event .heading {
    text-align: center;
    margin-bottom: 30px;
}

.event .heading h2 {
    font-size: 30px;
    font-weight: 700;
}

.event .heading p {
    color: #696969;
}

.event .item .photo {
    margin-bottom: 10px;
    overflow: hidden;
    border-radius: 10px;
}

.event .item .photo img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transform: scale(1);
    transition: all 0.4s ease;
}

.event .item:hover .photo img {
    transform: scale(1.1);
}

.event .item .text h2 {
    font-size: 20px;
    font-weight: 700;
}

.event .item .text h2 a {
    color: #333;
    transition: color 0.3s ease;
}

.event .item .text h2 a:hover {
    color: #47ae1b;
}

.event .item .text .short-des {
    margin-bottom: 15px;
}

.event .item .text .short-des p {
    color: #333;
    margin-bottom: 10px;
    font-weight: 400;
    font-size: 16px;
}

.event .item .text .date-time {
    font-size: 14px;
    color: #696969;
    font-weight: 600;
    margin-bottom: 15px;
}

.event .item .text .date-time i {
    color: #47ae1b;
}

/* Responsive */
@media (max-width: 1199px) {
    .event .item .photo img {
        height: 220px;
    }
}

@media (max-width: 991px) {
    .event .item .photo img {
        height: 290px;
    }
}

@media (max-width: 767px) {
    .event .item .photo img {
        height: auto;
    }
}


/* ============================================================================
   12. BLOG
   ============================================================================ */

.blog .heading {
    text-align: center;
    margin-bottom: 30px;
}

.blog .heading h2 {
    font-size: 30px;
    font-weight: 700;
}

.blog .heading p {
    color: #696969;
}

.blog .item .photo {
    margin-bottom: 10px;
    overflow: hidden;
    border-radius: 10px;
}

.blog .item .photo img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transform: scale(1);
    transition: all 0.4s ease;
}

.blog .item:hover .photo img {
    transform: scale(1.1);
}

.blog .item .text h2 {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.5;
}

.blog .item .text h2 a {
    color: #333;
    transition: color 0.3s ease;
}

.blog .item .text h2 a:hover {
    color: #47ae1b;
}

.blog .item .text .short-des p {
    color: #333;
    margin-bottom: 10px;
    font-weight: 400;
    font-size: 15px;
}

.blog .item .text .button a {
    background: #47ae1b;
    border: 0;
}

/* Responsive */
@media (max-width: 1199px) {
    .blog .item .photo img {
        height: 220px;
    }
}

@media (max-width: 991px) {
    .blog .item .photo img {
        height: 290px;
    }
}

@media (max-width: 767px) {
    .blog .item .photo img {
        height: auto;
    }
}


/* ============================================================================
   13. CALL TO ACTION (CTA)
   ============================================================================ */

.cta {
    background: #47ae1b;
}

.cta .left h2 {
    color: #fff;
    font-size: 28px;
    font-weight: 700;
}

.cta .left p {
    color: #fff;
    font-size: 18px;
    margin-bottom: 0;
}

.cta .right {
    display: table;
    height: 100%;
    float: right;
}

.cta .right .inner {
    display: table-cell;
    vertical-align: middle;
}

.cta .right a {
    background: #fff;
    color: #47ae1b;
    border-radius: 30px;
    padding: 10px 30px;
    font-weight: 600;
    font-size: 16px;
    border: 1px solid #fff;
    transition: all 0.3s ease;
}

.cta .right a:hover {
    background: transparent;
    color: #fff;
}

/* CTA - Responsive */
@media (max-width: 767px) {
    .cta .left {
        text-align: center;
    }
    
    .cta .right {
        text-align: center;
        padding-bottom: 50px;
        float: none;
        width: 100%;
    }
    
    .cta .right .inner {
        display: inline-block;
    }
}


/* ============================================================================
   14. PAGE TOP / BREADCRUMB
   ============================================================================ */

.page-top {
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    padding-top: 90px;
    padding-bottom: 90px;
    position: relative;
}

.page-top:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #222;
    color: #fff;
    opacity: 0.5;
    z-index: 9;
}

.page-top h2 {
    font-weight: 700;
    font-size: 40px;
    position: relative;
    z-index: 99;
    color: #fff;
    opacity: 1;
    text-align: center;
}

.page-top .button {
    position: relative;
    z-index: 99;
    text-align: center;
}

.page-top .button a {
    background: #47ae1b;
    border: 0;
}

.page-top .button a:hover {
    background: #47ae1b;
    opacity: 0.8;
}

/* Breadcrumb */
.page-top .breadcrumb-container {
    position: relative;
    z-index: 99;
    opacity: 1;
}

.page-top .breadcrumb {
    margin-bottom: 0;
    justify-content: center;
    background: transparent;
}

.page-top .breadcrumb-item.active {
    color: #ffffff;
}

.page-top .breadcrumb-item + .breadcrumb-item::before {
    content: ">";
    color: #ffffff;
}

.page-top .breadcrumb a {
    color: #ffffff;
}

.page-top .breadcrumb a:hover {
    color: #47ae1b;
}

/* Page Top - Responsive */
@media (max-width: 991px) {
    .page-top {
        margin-top: 60px;
    }
}


/* ============================================================================
   15. TEAM
   ============================================================================ */

.team .heading {
    text-align: center;
    margin-bottom: 30px;
}

.team .heading h2 {
    font-size: 30px;
    font-weight: 700;
}

.team .heading p {
    color: #696969;
}

.team .item .photo {
    margin-bottom: 10px;
    overflow: hidden;
    border-radius: 10px;
}

.team .item .photo img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transform: scale(1);
    transition: all 0.4s ease;
}

.team .item:hover .photo img {
    transform: scale(1.1);
}

.team .item .text {
    text-align: center;
}

.team .item .text h2 {
    font-size: 20px;
    font-weight: 700;
}

.team .item .text h2 a {
    color: #333;
}

.team .item .text .designation {
    color: #333;
    margin-bottom: 10px;
    font-weight: 400;
    font-size: 15px;
}

/* Social Links */
.team ul {
    padding: 0;
    overflow: hidden;
    text-align: center;
}

.team ul li {
    list-style-type: none;
    display: inline-block;
    margin-right: 2px;
    margin-bottom: 2px;
}

.team ul li a {
    color: #fff;
    background: #47ae1b;
    width: 30px;
    height: 30px;
    line-height: 30px;
    border-radius: 50%;
    text-align: center;
    display: block;
    transition: all 0.3s ease;
}

.team ul li a:hover {
    background: #333;
}

/* Team - Responsive */
@media (max-width: 1199px) {
    .team .item .photo img {
        height: 280px;
    }
}

@media (max-width: 991px) {
    .team .item .photo img {
        height: 500px;
    }
}

@media (max-width: 767px) {
    .team .item .photo img {
        height: auto;
    }
}


/* ============================================================================
   16. CONTENT PAGES
   ============================================================================ */

.page-content .sub {
    overflow: hidden;
    border-top: 1px solid #c7c7c7;
    border-bottom: 1px solid #c7c7c7;
    padding-top: 10px;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.page-content .sub .item {
    float: left;
    margin-right: 15px;
    color: #969696;
}

.page-content .sub .item a {
    color: #969696;
    text-decoration: underline;
}

.page-content .main-text {
    margin-bottom: 25px;
}

.page-content h2,
.page-content h3,
.page-content h4,
.page-content h5,
.page-content h6 {
    font-weight: 700;
}


/* ============================================================================
   17. CONTACT
   ============================================================================ */

.contact-form label {
    font-weight: 600;
}

.contact-form textarea {
    height: 200px;
}

.contact-form button {
    font-size: 16px;
    font-weight: 600;
    display: inline-block;
    background: #47ae1b;
    color: #fff;
    text-decoration: none;
    border: 1px solid #47ae1b;
    border-radius: 30px;
    padding: 8px 35px;
    transition: all 0.3s ease;
}

.contact-form button:hover {
    background: transparent;
    border: 1px solid #47ae1b;
    color: #47ae1b;
}

/* Map */
.map iframe {
    width: 100%;
    height: 450px;
    border: 0;
}

@media (max-width: 1199px) {
    .map iframe {
        height: 400px;
    }
}


/* ============================================================================
   18. FAQ
   ============================================================================ */

.faq .accordion {
    width: 70%;
}

.faq .accordion-button {
    color: #47ae1b;
    font-weight: 700;
    background: #ebebeb;
    font-size: 18px;
}

.faq .accordion-button.collapsed {
    background: none;
}

.faq .accordion-button:focus {
    box-shadow: none !important;
}

.faq .accordion-item {
    margin-bottom: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.125) !important;
}

.faq .accordion-button::after {
    font-family: "Font Awesome 5 Free";
    content: "\f107";
    font-weight: 700;
    background-image: none;
    transform: none;
    color: #47ae1b;
}

.faq .accordion-button.collapsed::after {
    font-family: "Font Awesome 5 Free";
    content: "\f105";
    font-weight: 700;
    background-image: none;
}

.faq .accordion-item .accordion-button {
    border-radius: 0 !important;
}

.faq .accordion-body {
    font-weight: 400;
}

.faq .accordion-item:first-of-type {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.faq .accordion-item:last-of-type {
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}

@media (max-width: 991px) {
    .faq .accordion {
        width: 100% !important;
    }
}


/* ============================================================================
   19. TESTIMONIALS
   ============================================================================ */

.testimonial {
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
}

.testimonial .bg {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #242424;
    opacity: 0.4;
}

.testimonial h2.main-header {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
    color: #fff;
    position: relative;
}

.testimonial .item {
    text-align: center;
    color: #fff;
    padding: 30px;
}

.testimonial .description {
    margin: 0 auto;
    padding-left: 120px;
    padding-right: 120px;
}

.testimonial .description p {
    position: relative;
    padding-top: 15px;
    margin-top: 15px;
    margin-bottom: 0;
}

.testimonial .description p:before {
    position: absolute;
    content: "";
    width: 120px;
    height: 3px;
    bottom: 100%;
    left: 50%;
    margin-left: -60px;
    background: #fff;
}

.testimonial .photo {
    width: 95px;
    height: 95px;
    margin: 0 auto;
    border-radius: 50%;
    overflow: hidden;
}

.testimonial .photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial .text {
    margin-top: 15px;
}

.testimonial .text h4 {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.testimonial .text p {
    font-size: 15px;
    margin: 0;
}

/* Owl Carousel Controls */
.testimonial-carousel .owl-dots {
    text-align: center;
    margin-top: 30px;
}

.testimonial-carousel .owl-dots .owl-dot {
    width: 24px;
    height: 24px;
    background: #47ae1b;
    border: 7px solid #fff;
    border-radius: 50%;
    display: inline-block;
    margin: 0 5px;
}

.testimonial-carousel .owl-dots .owl-dot.active {
    width: 24px;
    height: 24px;
    background: #313131;
    border: 7px solid #fff;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    text-align: center;
    font-size: 18px;
    position: absolute;
    top: 50%;
    width: 40px;
    height: 50px;
    line-height: 48px;
    background: #fff;
    color: #47ae1b;
    margin-top: -25px;
    transition: all 0.3s ease;
}

.testimonial-carousel .owl-nav .owl-prev {
    left: 0;
}

.testimonial-carousel .owl-nav .owl-next {
    right: 0;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: #47ae1b;
    background: #fff;
}

/* Testimonials - Responsive */
@media (max-width: 991px) {
    .testimonial .description {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
}


/* ============================================================================
   20. COUNTER SECTION
   ============================================================================ */


/* ============================================================================
   21. PHOTO & VIDEO GALLERY
   ============================================================================ */

/* Photo Gallery */
.photo-gallery-heading {
    font-weight: 700;
    font-size: 22px;
    color: #47ae1b;
    text-align: left;
}

.photo-gallery-item {
    position: relative;
}

.photo-gallery-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.photo-gallery-item .photo-gallery-item-bg {
    position: absolute;
    left: 0px;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    background: #333;
    z-index: 9;
    transition: all 0.4s ease;
}

.photo-gallery-item:hover .photo-gallery-item-bg {
    opacity: 0.6;
}

.photo-gallery-item .plus-icon {
    visibility: hidden;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    line-height: 100%;
    text-align: center;
    z-index: 99;
    font-size: 30px;
    color: #fff;
}

.photo-gallery-item:hover .plus-icon {
    visibility: visible;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Video Gallery */
.video-gallery-heading {
    font-weight: 700;
    font-size: 22px;
    color: #47ae1b;
    text-align: left;
}

.video-gallery-item {
    position: relative;
}

.video-gallery-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.video-gallery-item .video-gallery-item-bg {
    position: absolute;
    left: 0px;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    background: #333;
    z-index: 9;
    transition: all 0.4s ease;
}

.video-gallery-item:hover .video-gallery-item-bg {
    opacity: 0.6;
}

.video-gallery-item .plus-icon {
    visibility: hidden;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    line-height: 100%;
    text-align: center;
    z-index: 99;
    font-size: 30px;
    color: #fff;
}

.video-gallery-item:hover .plus-icon {
    visibility: visible;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Gallery - Responsive */
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .photo-gallery-item img,
    .video-gallery-item img {
        height: 207px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .photo-gallery-item img,
    .video-gallery-item img {
        height: 236px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .photo-gallery-item img,
    .video-gallery-item img {
        height: 364px;
    }
}

@media only screen and (max-width: 575px) {
    .photo-gallery-item img,
    .video-gallery-item img {
        object-fit: fill;
        height: auto;
    }
}


/* ============================================================================
   22. FORMS
   ============================================================================ */

/* Login Form */
.login-form .nav-item {
    margin-right: 10px;
}

.login-form .nav-link {
    background: #bbcdff;
    color: #3661ef;
    font-weight: 600;
}

/* Select2 */
.select2-container {
    z-index: 99999 !important;
}

.select2-container--bootstrap .select2-selection--single {
    height: 36px !important;
    line-height: 36px !important;
    padding-top: 0 !important;
    font-size: 15px !important;
}


/* ============================================================================
   23. COMMENTS
   ============================================================================ */

.comment {
    margin-top: 40px;
}

.comment h2 {
    font-size: 18px;
    font-weight: 700;
    color: #47ae1b;
    margin-bottom: 20px;
}

.comment .comment-section {
    margin-bottom: 20px;
}

.comment .comment-box {
    background: #eeeeee;
    padding: 15px;
    border-radius: 8px;
}

.comment .comment-box .left img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1px solid #b6b6b6;
    margin-right: 10px;
}

.comment .comment-box .right .name {
    font-size: 18px;
    font-weight: 600;
}

.comment .comment-box .right .date {
    font-size: 14px;
    color: #515151;
    margin-bottom: 15px;
}

.comment .comment-box .right .text {
    font-size: 16px;
}

.comment .comment-box .right .reply {
    margin-top: 10px;
}

.comment .comment-box .right .reply a {
    color: #47ae1b;
    font-size: 16px;
}

.comment .reply-box {
    padding-left: 100px;
}

.comment input,
.comment textarea,
.comment button {
    font-size: 14px;
}

.comment textarea {
    height: 200px;
}

.comment button {
    font-size: 16px;
    font-weight: 600;
    display: inline-block;
    background: #47ae1b;
    color: #fff;
    text-decoration: none;
    border: 0;
    border-radius: 30px;
    padding: 8px 35px;
    transition: all 0.3s ease;
}

.comment button:hover {
    background: #000 !important;
    color: #fff;
}

@media only screen and (max-width: 767px) {
    .comment button {
        margin-bottom: 50px;
    }
}

@media only screen and (max-width: 450px) {
    .comment .reply-box {
        padding-left: 40px;
    }
}


/* ============================================================================
   24. PAGINATION
   ============================================================================ */

ul.pagination li span {
    height: 40px !important;
    line-height: 40px !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

ul.pagination li a {
    height: 40px !important;
    border-radius: 0;
    line-height: 40px !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}


/* ============================================================================
   END OF STYLESHEET
   ============================================================================ */