/********** Template CSS **********/
:root {
    --primary: #B78D65;
    --light: #F8F8F8;
    --dark: #252525;
}

h1,
h2,
.h1,
.h2,
.fw-bold {
    font-weight: 600 !important;
}

h3,
h4,
.h3,
.h4,
.fw-medium {
    font-weight: 500 !important;
}

h5,
h6,
.h5,
.h6,
.fw-normal {
    font-weight: 400 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}
p{
    color:black !important;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn-outline-body {
    color: var(--primary);
    border-color: #777777;
    background: darkgreen;
    border: 2px solid white;
    margin-left: 6px;
}

.btn-outline-body:hover {
    color: var(--primary);
    border-color: black;
    
}


/*** Navbar ***/
/* .navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
} */

.navbar .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 30px 0;
    color: var(--dark);
    font-weight: 550;
    text-transform: uppercase;
    outline: none;
    font-size: 16.5px
}
@media (min-width: 991px) and (max-width: 1024px) {
    .navbar .navbar-nav .nav-link {
        margin-right: 20px;
        font-size: 15.5px
    }
    .navbar-logo img{
        width:190px;
    }
}
.dropdown-item{
    color: black !important;
    font-size: 17px !important;
    font-weight: 500 !important;
}
@media (max-width:991px){
    .dropdown-item{
        font-size:13px !important;
    }
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: darkgreen;
}

.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.owl-carousel-inner {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, .5);
}

@media (max-width: 768px) {
    .header-carousel .owl-carousel-item {
        position: relative;
        min-height: 140px;
    }

    .header-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .header-carousel .owl-carousel-item p {
        font-size: 16px !important;
    }
    .header-carousel .owl-dots{
        display:none !important;
    }
}

.header-carousel .owl-dots {
    position: absolute;
    width: 60px;
    height: 100%;
    top: 0;
    right: 61px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.header-carousel .owl-dots .owl-dot {
    position: relative;
    width: 45px;
    height: 45px;
    margin: 5px 0;
    background: var(--dark);
    transition: .5s;
}

.header-carousel .owl-dots .owl-dot.active {
    width: 60px;
    height: 60px;
}

.header-carousel .owl-dots .owl-dot img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 2px;
    transition: .5s;
    opacity: .3;
}

.header-carousel .owl-dots .owl-dot.active img {
    opacity: 1;
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}


/*** Section Title ***/
.section-title {
    color: darkgreen;
    font-weight: 700 !important;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: exo, sans-serif;
    font-size: 18px;
}
@media (max-width:991px){
    .section-title{
        font-size:15px;
    }
}


/*** Facts ***/
.fact-item .fact-icon {
    width: 120px;
    height: 120px;
    margin-top: -60px;
    margin-bottom: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    border-radius: 120px;
    transition: .5s;
}
.fact-item{
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

/*.fact-item:hover .fact-icon {*/
/*    background: var(--dark);*/
/*}*/

.fact-item .fact-icon i {
    color: var(--primary);
    transition: .5;
}

.fact-item:hover .fact-icon i {
    color: #FFFFFF;
}
@media (max-width:991px){
    .mobile-space{
        margin-bottom: 65px;
    }
}
/*** About & Feature ***/
.about-img,
.feature-img {
    position: relative;
    height: 100%;
    min-height: 400px;
}

.about-img img,
.feature-img img {
    position: absolute;
    width: 60%;
    height: 80%;
    object-fit: cover;
}

.about-img img:last-child,
.feature-img img:last-child {
    margin: 20% 0 0 40%;
}

.about-img::before,
.feature-img::before {
    position: absolute;
    content: "";
    width: 60%;
    height: 80%;
    top: 10%;
    left: 20%;
    border: 5px solid darkgreen;
    z-index: -1;
}


/*** Service ***/
.service-item .bg-img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.service-item .service-text {
    background: var(--light);
    transition: .5s;
}

.service-item:hover .service-text {
    background: rgba(0, 0, 0, .7);
}

.service-item * {
    transition: .5;
}

.service-item:hover * {
    color: #FFFFFF;
}

.service-item .btn {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    color: var(--dark);
    background: #FFFFFF;
    white-space: nowrap;
    overflow: hidden;
    transition: .5s;
}

.service-item:hover .btn {
    width: 140px;
}


/*** Project ***/
.project .nav .nav-link {
    background: var(--light);
    transition: .5s;
}

.project .nav .nav-link.active {
    background: darkgreen;
}

.project .nav .nav-link.active h3 {
    color: #FFFFFF !important;
}

/***category***/

.causes .causes-item {
    overflow: hidden;
    text-align: center;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    transition:transform 0.5s ease;
}
.causes .causes-item h4{
    font-size:30px !important ;
}
@media (max-width:1400px){
    .causes .causes-item h4{
        font-size:25px  !important;
  
    }
}
.causes .causes-item:hover{
    transform:scale(1.06);
}

.causes .causes-item .causes-content {
    /* background: var(--bs-secondary); */
    /* border-color: var(--bs-white); */
    border-top: 0;
}
.causes .causes-item .causes-img {
    position: relative;
    transition: 0.5s;
    /* background: #f3e0c6; */
    padding: 16px;
    text-align: center;
}
.causes .causes-item .causes-img:hover img {
    transform: scalex(-1);
}
.causes .causes-item .causes-img img {
    transition: 0.5s;
    width:100px;
}
/*** Team ***/
.team-items {
    margin: -.75rem;
}

.team-item {
    padding: .75rem;
}

.team-item::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    background: #FFFFFF;
    transition: .5s;
    z-index: -1;
}

.team-item:hover::after {
    height: 100%;
    background: var(--primary);
}

.team-item .team-social {
    position: absolute;
    width: 100%;
    bottom: -20px;
    left: 0;
}

.team-item .team-social .btn {
    display: inline-flex;
    margin: 0 2px;
    color: var(--primary);
    background: var(--light);
}

.team-item .team-social .btn:hover {
    color: #FFFFFF;
    background: var(--primary);
}


/*** Appointment ***/
.bootstrap-datetimepicker-widget.bottom {
    top: auto !important;
}

.bootstrap-datetimepicker-widget .table * {
    border-bottom-width: 0px;
}

.bootstrap-datetimepicker-widget .table th {
    font-weight: 500;
}

.bootstrap-datetimepicker-widget.dropdown-menu {
    padding: 10px;
    border-radius: 2px;
}

.bootstrap-datetimepicker-widget table td.active,
.bootstrap-datetimepicker-widget table td.active:hover {
    background: var(--primary);
}

.bootstrap-datetimepicker-widget table td.today::before {
    border-bottom-color: var(--primary);
}


/*** Testimonial ***/
.testimonial-carousel {
    display: flex !important;
    flex-direction: column-reverse;
    max-width: 700px;
    margin: 0 auto;
}

.testimonial-carousel .owl-dots {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.testimonial-carousel .owl-dots .owl-dot {
    position: relative;
    width: 60px;
    height: 60px;
    margin: 0 5px;
    transition: .5s;
}

.testimonial-carousel .owl-dots .owl-dot.active {
    width: 100px;
    height: 100px;
}

.testimonial-carousel .owl-dots .owl-dot::after {
    position: absolute;
    width: 40px;
    height: 40px;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    content: "\f10d";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--primary);
    background: #FFFFFF;
    border-radius: 40px;
    transition: .5s;
    opacity: 0;
}

.testimonial-carousel .owl-dots .owl-dot.active::after {
    opacity: 1;
}

.testimonial-carousel .owl-dots .owl-dot img {
    opacity: .4;
    transition: .5s;
}

.testimonial-carousel .owl-dots .owl-dot.active img {
    opacity: 1;
}


/*** Footer ***/

.footer-title{
    font-family: Exo, sans-serif;
    font-size: 24px;
    font-weight: 550 !important;
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: white;
    font-size: 17px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: white;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: darkgreen;
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .form-control {
    border-color: #777777;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid white;
    text-align:center;
}

.footer .copyright a {
    color: var(--light);
}

.footer .copyright a:hover {
    color: var(--primary);
}

/* Counter start */
.theme-bg-heading-primary {
    background:linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.8) 100%);
}

.section-space-100 {
    padding-top: 115px;
    padding-bottom: 115px;
}
.experience__bg {
    position: absolute;
    /* z-index: -1; */
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    -o-object-fit: cover;
    object-fit: cover;
    opacity: 0.1;
    background-size: cover;
}
.experience__box {
    gap: 30px;
}
.experience__item {
    gap: 21px;
    position: relative;
}

.experience__item-icon {
    width: 80px;
    height: 80px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 500px;
    background: white;
}
.experience__item:nth-child(-n+3):after {
    content: "";
    width: 1px;
    height: 139px;
    right: -13%;
    top: -22px;
    position: absolute;
    background: #ffffff66;
}
@media (max-width:1400px){
    .experience__item:nth-child(-n+3):after {
        display:none !important;
        
    }
    .color-white{
       font-size:18px !important; 
    }
}
.experience__item-icon img {
    max-width: 100%;
    padding: 13px;
}
.experience__item-text-title {
    margin-bottom: 5px;
    font-size: 46px !important;
}
.experience__item-text-title span {
    font-family: var(--rr-ff-exo);
    color: white;
    
}
.experience__item-text-title span {
    font-family: exo, sans-serif;
    color: white;
    font-size: 48px;
}
.color-white {
    color: white;
    font-size: 24px;
    font-family: Exo, sans-serif;
}
.odometer{
    margin-right: -8px;
}
/* FAQ start */

.support .faq-title {
    font-size: 20px;
    font-weight: 1200;
}
.title-animation {
    overflow: hidden;
}
.pl-30 {
    padding-left: 30px;
}
.accordion-button{
    background: white !important;
    color: black !important;
    font-size: 18px !important;
    font-weight: 500 !important;
}
.accordion-button .p{
    color: black !important;
}

/*products section*/

.product-carousel .item:hover img{
    transform:scale(1.06);
    transition:0.5s ease;
}

.owl-nav{
    display:none;
}


.product {
    background: linear-gradient(rgba(136, 180, 78, .1), rgba(136, 180, 78, .1)), url(assets/img/product-slider-bg-image.png) left bottom no-repeat;
    background-size: auto;
}

.product-carousel .owl-nav {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.product-carousel .owl-nav .owl-prev,
.product-carousel .owl-nav .owl-next {
    margin: 0 10px;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: darkgreen !important;
    border-radius: 55px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .15);
    font-size: 25px;
    transition: .5s;
}

.product-carousel .owl-nav .owl-prev:hover,
.product-carousel .owl-nav .owl-next:hover {
    background: #FFFFFF !important;
    color: darkgreen;
}
.product .product-carousel .owl-item img{
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border-radius:5px;
    transition:transform 0.5s ease;
}
.product .product-carousel .owl-item img:hover{
    transform: scale(1.04);
}
.product .product-carousel .product-item:hover h4 {
    color:darkgreen !important;
}

/* Testimonial start */

.clients-testimonial {
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
}

.section-space {
    padding-top: 60px;
    padding-bottom: 65px;
}
.clients-testimonial::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.7316176470588236) 0%, rgba(0, 0, 0, 0.7904411764705882) 100%), url(../img/clients-testimonial/testimonial_bg.jpg);
    background-size: cover;
    -webkit-transform: matrix(-1, 0, 0, 1, 0, 0);
    transform: matrix(-1, 0, 0, 1, 0, 0);
}
.clients-testimonial__shape {
    position: absolute;
    right: -400px;
    bottom: -178px;
}
.clients-testimonial__content {
    position: relative;
    max-width: 558px;
    z-index: 3;
}
.section__subtitle.mb-13 {
    margin-bottom: 13px;
}

.section__subtitle {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    text-transform: capitalize;
    
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 28px;
    color: darkgreen;
    position: relative;
}
.section__subtitle .left-separetor {
    left: inherit;
    right: calc(100% + 10px);
}
.section__subtitle .left-separetor, .section__subtitle .right-separetor {
    left: calc(100% + 10px);
    width: 40px;
    height: 2px;
    content: "";
    position: absolute;
    top: calc(50% - 1px);
    background: darkgreen;
}
.clients-testimonial__content p {
    color: rgba(255, 255, 255, 0.8) !important;
}
.clients-testimonial__slider-wrapper {
    margin-right: 18px;
    margin-left: -18px;
}
.clients-testimonial__slider {
    position: relative;
}
.clients-testimonial__item {
    background: #FFFFFF;
    padding: 40px 40px;
    border-radius: 10px;
    -webkit-box-shadow: 0px 10px 20px rgba(21, 24, 27, 0.1);
    box-shadow: 0px 10px 20px rgba(21, 24, 27, 0.1);
}
.clients-testimonial__rating {
    gap: 5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 30px;
}
.clients-testimonial__item p{
    color:black !important;
    margin-bottom:17px !important;
    font-size:17px;

}
.clients-testimonial__item h6{
    font-size:23.5px;
    color:black;
    font-weight: 500 !important;
}

.tab-new{
    margin-top:-86%;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
    .section-space {
        padding-top: 70px;
        padding-bottom: 70px;
    }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
    .clients-testimonial__content {
        max-width: 100%;
    }
}
@media (max-width: 575px) {
    .section__subtitle.mb-13 {
        margin-bottom: 7px;
    }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 992px) and (max-width: 1199px) {
    .clients-testimonial__slider-wrapper {
        margin-left: inherit;
        margin-right: inherit;
    }
}
/* contact-form start */

.request-a-quote__right {
    padding: 40px;
    padding-top: 32px;
}
.request-a-quote__form-input {
    position: relative;
    margin-bottom: 30px;
    line-height: 0;
}
.request-a-quote__form-input svg {
    position: absolute;
    top: 16px;
    right: 20px;
    font-family: var(--rr-ff-fontawesome);
    color: #7F879E;
    font-style: normal;     
    font-weight: 300;
    font-size: 16px;
    line-height: 14px;
}
.request-a-quote__form-input p{
    margin-top:10px;
    line-height:1.5;
}
.request-a-quote__form-input input, .request-a-quote__form-input textarea {
    padding: 20px 20px;
    padding-right: 45px;
    width: 100%;
    max-width: 100%;
    height: 50px;
    background: var(--rr-common-white);
    border:1px solid rgb(199 199 199);
    border-radius: 3px;
    font-family: var(--rr-ff-robo);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    color: #6A6A6A;
    margin-bottom: 5px;
}

.request-a-quote__form-input.textarea svg {
    top: 31px;
}
.request-a-quote__form-input textarea {
    min-height: 120px;
    border-radius: 3px;
}
.contact-us-h3{
    font-family: exo, sans-serif !important;
    font-size: 20px !important;
    font-weight: 600 !important;
}
.social-icons .btn-outline-body:hover{
    border:2px solid darkgreen !important;
}
.contact-us-mail{
    word-break: break-all;
}
@media (max-width: 768px) {
    .contact-us-mail {
        word-break: break-all; /* Break long words on mobile screens */
    }
}

/* Service section start */

.services-title-content .features-list {
    padding-left: 0;
    list-style-type: none;
    margin-top: 30px;
    margin-bottom: 0;
}

.services-title-content .features-list li {
    position: relative;
    margin-bottom: 20px;
    color: #130947;
    font-weight: 500;
    padding-left: 40px;
}
.services-title-content .features-list li {
    position: relative;
    margin-bottom: 20px;
    color: #130947;
    font-weight: 500;
    padding-left: 40px;
}

ul.features-list li {
    text-align: justify;
    font-size: 16px;
}
ul.features-list li {
    text-align: justify;
    font-size: 16px;
}
.services-title-content .features-list li i {
    display: inline-block;
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    line-height: 32px;
    border-radius: 50%;
    color: white;
    text-align: center;
    font-size: 13px;
    background-color: darkgreen;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.services-area .border-pcd{
    border-right: 1px solid #fe235b;
    border-bottom: 1px solid #fe235b;
}
.services-area .border-third-party{
    border-left: 1px solid #fe235b;
    border-top: 1px solid #fe235b;
}
.single-services-box {
    background-color: #fafafa;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    padding: 30px;
}
.single-services-box h3 {
    position: relative;
    padding-left: 65px;
    line-height: 1.4;
    font-size: 20px;
    font-weight: 700 !important;
    font-family: "Muli", sans-serif;
}
.single-services-box img {
    width: 50px;
    color: #fe235b;
    display: inline-block;
    position: absolute;
    left: 0;
    font-size: 45px;
    top: 3px;
    z-index: 1;
}
.single-services-box p {
    margin-top: 15px;
    text-align: justify;
    font-size: 14px;
}


/* Breadcrumb start */

.page-title .bg-layer {
    background-image: linear-gradient(0deg, rgba(50, 50, 50, 70%), rgba(50, 50, 50, 70%)), url(../img/breadcrumb/breadcrumb.png);
    height: 215px;
    background-size: contain;
    /*padding:0px 16px !important;*/
}
@media (max-width:991px){
    .page-title .bg-layer{
        padding:0px 25px !important;
    }
}
.page-title .content-box h1 {
    margin-bottom: 0px;
    padding-top: 60px;
    text-transform: uppercase;
    color: white !important;
    font-size:52px;
}
@media (max-width:991px){
    .page-title .content-box h1{
        font-size:36px;
    }
    .page-title span{
        font-size:15px;
    }
}
.page-title span {
    color: white !important;
    font-size:19px;
}
.page-title .content-box .content{
    margin-top:7px;
}
.img {
    border: solid 2px;
    border-radius: 12px;
}
.track {
    margin-top: 37px;
}
