:root {
    --primarycolor: #0a8c34;
    --sectionbg:#f4f4f4;
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
        "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji",
        "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    text-align: left;
    background-color: #fff;
    overflow-x: hidden;
}

p {
    text-align: justify;
    font-size: 18px;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    margin-bottom: 0.5rem;
    font-weight: 500;
    line-height: 1.2;
}

h1,
.h1 {
    font-size: 2.5rem;
}

h2,
.h2 {
    font-size: 2rem;
}

h3,
.h3 {
    font-size: 1.75rem;
}

h4,
.h4 {
    font-size: 1.5rem;
}

h5,
.h5 {
    font-size: 1.25rem;
}

h6,
.h6 {
    font-size: 1rem;
}
/*NAvbar*/

.navbar{
  background-color: var(--primarycolor);
  border-bottom: 1px solid #fff;
  height: 60px;
}

.nav-item {
  padding: 2px 8px;
  margin: 0;
}

.nav-link {
    display: block;
    font-size: 15px;
    font-weight: 600;
    padding: 1rem;
}
.dropdown-item {
  display: block;
  width: 100%;
  font-size: 15px;
  padding: 15px;
    margin-bottom: 2px;
  clear: both;
  font-weight: 600;
  color: #212529;
  text-align: inherit;
  white-space: nowrap;
  background-color: #0a8c34;
  border: 0;
  transition: 0.5s;
}
.dropdown-item a{
    display: block;
    color: #fff;
    text-decoration: none;
    width: 100%;
}
.dropdown:hover > .dropdown-menu {
    display: block;
}

.dropdown-item:focus, .dropdown-item:hover {
    color:#0a8c34;
    text-decoration: none;
    background-color: #fff!important;
}

.dropdown-item:hover a{
    color:#0a8c34;
}


.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 10rem;
  padding: 0;
  margin: 0;
  font-size: 15rem;
  color: #212529;
  text-align: left;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, .15);
  border-radius: .25rem;
}
.cool-link::after {
    content: "";
    display: block;
    width: 0;
    height: 2px;
    background: #fff;
    transition: width 0.3s;
}
.cool-link:hover::after {
    width: 100%;
    transition: width 0.3s;
}

.cool-link-dropdown::after {
    content: "";
    display: block;
    width: 0;
    height: 2px;
    background: #0a8c34;
    transition: width 0.3s;
}
.cool-link-dropdown:hover::after {
    width: 100%;
    transition: width 0.3s;
}


.section-padding {
    padding: 60px 0px;
}

.section-title h2 {
    font-size: 35px;
    font-weight: 700;
    color: var(--primarycolor);
}

.section-bg {
    background: var(--sectionbg);
}

@media screen and (max-width: 992px) {
  .section-title h2 {
    font-size: 25px;
}
}

/*--------about-area start--------*/


.team-card{
  width: 100%;
  border: none;
  margin-bottom: 20px;
}

.team-body{
  background: var(--sectionbg);
}
.team-body .card-title{
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  margin: 5px 0px;
}
.team-body .card-text{
  font-size: 14px;
  font-weight: 500;
  text-align: center;
}

.team-img{
    width: 100%;
    height: 250px;
}


@media screen and (max-width: 992px) {
    .team-img{
        width: 100%;
        height: 300px;
    }
}

.about-area {
    /* padding: 60px 0px; */
    overflow: hidden;
    /*background: url(../images/1.png) no-repeat center center / cover;*/
}
.about-content{
    padding:50px;
}

.about-img {
    overflow: hidden;
}
.about-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
   transition: 0.5s;
}

.about-img:hover img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    -moz-transform: scale(1.1);
}
.featured-content-area {
    padding: 60px 0;
}
.featured-content-img {
    position: absolute;
    left: 30px;
    top: 100px;
    width: 650px;
}
.featured-content-wrap {
    padding-top: 30px;
}
.featured-content-wrap h2 {
    font-size: 40px;
    font-weight: 600;
    line-height: 40px;
    margin-bottom: 20px;
}
.featured-content-wrap h2 span {
    display: block;
    font-size: 18px;
    font-weight: 400;
    color: #ff7700;
    text-transform: uppercase;
    line-height: 28px;
}
.featured-content-wrap p {
    font-size: 18px;

    font-weight: 300;
    line-height: 28px;
    margin-bottom: 40px;
    text-align: justify;
}
.btnn {
    display: inline-block;
    padding: 5px 8px;
    background: #0a8c34;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    border: 2px solid #0a8c34;
    text-transform: uppercase;
    font-weight: 500;
    border-radius: 5px;
    font-size: x-small;
}
.btnn:hover {
    background: transparent;
    color: #0a8c34;
    text-decoration: none;
}

.footer-btnn {
    display: inline-block;
    padding: 5px 8px;
    background: #0a8c34;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    border: 2px solid #0a8c34;
    text-transform: uppercase;
    font-weight: 500;
    border-radius: 5px;
    font-size: x-small;
    transition: 0.5s;
    
}
.footer-btnn:hover {
    background: #fff;
    color: #0a8c34;
    text-decoration: none;
}

/* =============== message Section ==============*/
.message-content{
    padding: 20px;
}
.message-desc ul {
    list-style: none;
    padding: 0;
}
.message-desc ul li {
    margin: 10px 0px;
}
.message-desc li span {
    font-size: 18px;
    font-weight: 600;
    color: #000;
}

.message-img {
    overflow: hidden;
}
.message-img img {
    width: 100%;
    height: 300px;
    object-fit: contain;
    transition: 0.5s;
}
.message-img:hover img {
    transform: scale(1.05);
}
/*--------about-area end--------*/

/*--------Breadcrumbs Start--------*/
.wrapper {
    height: 100px;
    background: url(../images/forest.jpg) no-repeat center center / cover;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}
.breadcrumb {
    width: auto;
    height: 50px;
    background: #fff;
    border-radius: 50px;
    box-sizing: 2px 2px 4px rgba(0, 0, 0, 0.25);
    padding-left: 20px;
    padding-right: 20px;
}

.breadcrumb-item a{
    color: #0a8c34;
    font-size: 12px;
    font-weight: 600;
}

.breadcrumb-item.active {
    color: #000000;
    font-size: 14px;
    font-weight: 500;
}



/* @media screen and (max-width: 992px) {
.wrapper {
    position: absolute;
    top: 17%;
    left: 50%;
    transform: translate(-50%, -0%);
}
} */

/*--------Breadcrumbs End--------*/
/*--------message starts--------*/
.message-area {
    padding: 60px 0px;
    overflow: hidden;
    /*background: url(../images/2.png) no-repeat center center / cover;*/
}
/*--------message end--------*/

/*news */

.news-category{
  float: right;
    background: #08782d;
    color: #fff;
    padding: 3px 5px;

}

.inner {
    overflow: hidden;
    border-radius: 20px;
}
.inner img {
    transition: all 1.5s ease;
    width: 100%;
    height: 250px;
    border-radius: 20px;
}
.inner:hover img {
    transform: scale(1.1);
}

/*event*/
.single-event {
    box-shadow: 0px 0px 20px 1px rgba(0, 0, 0, 0.2);
    padding: 10px;
    margin-top: 30px;
    background-color: #fff;
}
.single-event img {
    width: 100%;
    height: 250px;
}

.event-meta {
    font-size: 14px;
    margin-bottom: 8px;
}
.single-event span {
    font-size: 14px;
    color: currentColor;
}
.single-event h2 {
    font-size: 16px;
    margin-top: 10px;
    color: #007bff;
}
.post-title {
    text-decoration: none;
    color: var(--primarycolor);
    font-size: 18px;
    font-weight: 600;
}
.post-title:hover{
  text-decoration: none;
  color:#07531f
}
.single-event p {
    font-size: 14px;
}

/*news and event */
.desc h2 {
    font-size: 16px;
    margin-top: 10px;
    color: #007bff;
}
.desc h2 a {
    text-decoration: none;
}
.desc p {
    font-size: 14px;
}
.desc span {
    font-size: 14px;
}

/*footer*/
#footer-area {
    padding: 60px 0 0px 0;
    background: #262626;
    color: #fff;
}
.single-footer h3 {
        font: 700 18px 'Oswald', sans-serif;
    margin-bottom: 15px;
    color: #0a8c34;
    
}
.link-area {
    padding: 0;
}
.link-area li {
    padding: 5px 5px 5px 0;
    list-style: none;
}
.link-area li a {
    text-decoration: none;
    -webkit-transition: 0.3s;
    transition: 0.5s;
    color: #000;
    font-size: 16px;
    font-weight: 600;
}
.link-area li a:hover {
    padding-left: 10px;
}
.copyright-area {
    padding: 30px 0;
    margin-top: 30px;
    border-top: 2px solid #00f533;
}

/*Contact*/
.contact-page-info {
    padding: 30px 20px;
}

.contact-page-info p {
    position: relative;
    padding-left: 50px;
    line-height: 35px;
    margin-bottom: 20px;
    font-size: 19px;
    font-weight: 600;
    font-family: system-ui;
}
.contact-box{
    transition:0.5s;
}
.contact-icon {
    height: 40px;
    width: 40px;
    line-height: 40px;
    color: #fff;
    background: var(--primarycolor);
    text-align: center;
    position: absolute;
    left: 0;
    border-radius: 50%;
    font-size: 18px;
}
.contact-box:hover .contact-icon{
    background: #07531f;
    color: #fff;
    transform:rotate(2turn);
}
.border-bottom {
    border-bottom: 1px solid #e5e5e5;
    margin-bottom: 60px;
    padding-bottom: 60px;
    display: -webkit-box;
}

/*Video*/
.vid iframe {
    width: 100% !important;
    height: auto !important;
}
.video iframe {
    width: 100% !important;
    height: 100% !important;
}
.vid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 5px;
}

/*Useful Links*/

.usefull-link ul {
    list-style: none;
}
.usefull-link ul li a {
    display: block;
    padding: 7px 0;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    text-decoration: none;
}
.usefull-link ul li a:hover {
    padding-left: 20px;
    color: green;
}
/*Project*/
.project-img img {
    width: 100%;
    height: 300px;
    object-fit: fill;
}

.project-desc p{
  font-size: 14px;
  font-weight: 100;
  color: #000;
  margin-bottom: 8px;
}


.circle {
    height: 400px;
    width: 400px;
    object-fit: fill;
    background-color: #7db9e8;
    margin: 0 25px 5px 0;
    float: left;
    -webkit-shape-outside: rectangle();
    shape-outside: rectangle();
}

.project-detail h4 {
    background: green;
    color: white;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    padding: 10px;
    text-align: center;
}

.project-detail ul {
    list-style: none;
    border-left: 1px solid;
    border-right: 1px solid;
    padding: 20px;
}
.project-detail ul li h6 {
    display: block;
    padding: 7px 0;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    text-decoration: none;
}
.project-detail ul li h6:hover {
    padding-left: 20px;
    color: green;
}

/**************** client part ********************/
/* line 3, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_client_part.scss */

.client_part .single_client_logo {
    max-width: 100%;
    height: 100px;
    margin: 0 auto;
}

@media (max-width: 991px) {
    /* line 3, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_client_part.scss */
    .client_part .single_client_logo {
        height: auto !important;
    }
    .client_part .single_client_logo img {
    transform: scale(0.8);
        height: auto !important;
        object-fit: cover!important;
    }
}

/* line 15, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_client_part.scss */
.client_part .single_client_logo img {
    height: 100px;
    object-fit: cover;
}

/* line 20, ../../01 cl html template/03_jun 2019/183_Charity_html/sass/_client_part.scss */
.client_part .single_client_logo img:hover {
    transition: 0.5s ease-in-out;
}

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next {
    color: #fff !important;
    border: none !important;
    outline: none !important;
    margin: 20px 0px 5px 10px !important;
    height: 50px !important;
    width: 50px !important;
    background: var(--primarycolor) !important;
}
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next,
.owl-carousel button.owl-dot {
    font-size: 40px !important;
    font-weight: 700 !important;
    line-height: 0.6 !important;
}
.owl-carousel .owl-item img {
    display: block;
    width: 100%;
    height: 100px;
    object-fit: fill;
}

.link-title {
    text-decoration: none;
    color: #000;
}

.carousel-caption{
  background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    padding: 20px;
}

.carousel-caption h5{
  font-size: 18px;
  font-weight: 600;

}

.carousel-caption p{
  font-size: 14px;
  font-weight: 400;
  text-align: center;
}


.carousel-item{
      height:73vh;
  }
  .carousel-item img{
    height: 73vh;
    object-fit: cover;
    object-position: top;
      
  }



@media screen and (max-width: 992px) {
  .navbar {
   padding: 0;
  }
  .navbar-collapse {
    background: #0a8c34;
    height: 100vh;
    overflow-y: scroll;
  }
  .carousel-item{
      height:50vh;
  }
  .carousel-item img{
      height:50vh;
  }
  .about-area{
      background:#fff;
  }
  .about-content{
    padding:10px;
}
.message-area {
      background:var(--sectionbg);
  }
}


.m-img img{
    width:auto;
    height:100px;
}
.top-section{
    height:30px;
    background:#0a8c34;
}
.top-list{
    list-style: none;
    display: flex;
    justify-content: space-evenly;
}
.top-list li a{
    color:#fff;
    font-size:14px;
}
.top-list i{
    font-size:12px;
    margin-right:5px;
}

.navbar-toggler {
        background: #ffffff!important;
    margin: 10px;
}
	    @media screen and (max-width: 992px) {
              .description {
            display: -webkit-box;
            -webkit-box-orient: vertical;
            -webkit-line-clamp: 2; /* Change this number to show more or less lines */
            overflow: hidden;
            text-overflow: ellipsis; /* Add ellipsis at the end */
        }
        .table thead th {
            vertical-align: bottom;
            border-bottom: 2px solid #dee2e6;
            font-size: 11px;
        }
        .section-padding {
            padding: 40px 0px;
        }
  }



