:root {
  --oxpins-font: "Poppins", sans-serif;
  --oxpins-font-two: "Roboto Condensed", sans-serif;
  --oxpins-font-three: "Satisfy", cursive;
  --oxpins-gray: #222;
  --oxpins-gray-rgb: 111, 119, 117;
  --oxpins-white: #ffffff;
  --oxpins-white-rgb: 255, 255, 255;
  --oxpins-base: #05C7F2;
  --oxpins-base-rgb: 239, 46, 39;
  --oxpins-black: #283734;
  --oxpins-black-rgb: 40, 55, 52;
  --oxpins-primary: #F69320;
  --oxpins-primary-rgb: 246, 147, 32;
  --oxpins-extra: #f9f4e8;
  --oxpins-extra-rgb: 249, 244, 232;
  --oxpins-bdr-color: #eee9db;
  --oxpins-bdr-color-rgb: 238, 233, 219;
  --oxpins-bdr-radius: 20px;
}
.news-one__content a{
  font-weight: bold;
  padding-bottom: 13px;
  float: left;
  width: 100%;}
.team-one {
  position: relative;
  display: block;
  padding: 120px 0 90px;
}

.team-one__single {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.team-one__img {
  position: relative;
  display: block;
  overflow: hidden;
  z-index: 1;
}



.team-one__single:hover .team-one__img:before {
  transform: translateY(0);
  width: 100%;
}

.team-one__img img {
  width: 100%;
  transition-delay: 0.1s;
  transition-timing-function: ease-in-out;
  transition-duration: 0.7s;
  transition-property: all;
  
-webkit-border-top-left-radius: 10px;
-webkit-border-top-right-radius: 10px;
-moz-border-radius-topleft: 10px;
-moz-border-radius-topright: 10px;
border-top-left-radius: 10px;
border-top-right-radius: 10px;  
  
}

.team-one__single:hover .team-one__img img {
  transform: scale(1.1) rotate(2deg);
}

.team-one__content {
  position: relative;
  display: block;
  text-align: center;
  padding: 17px 0 ;
}
.team-one__name {
  font-size: 17px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.team-one__name a {
  color: #05C7F2;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  font-weight: 500;
}





.team-one__name a:hover {
  color: var(--oxpins-primary);
}

.team-one__sub-title {
  font-size: 16px;
  color: var(--oxpins-primary);
  font-weight: 700;
  font-family: var(--oxpins-font-three);
  line-height: 16px;
}

.team-one__social {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: 0;
  left: 50%;
  background-color: var(--oxpins-primary);
  padding: 10px 22px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  transform: scaleY(0) translateX(-50%);
  transform-origin: center;
  transform-style: preserve-3d;
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
  transform-origin: bottom center;
  z-index: 2;
}

.team-one__single:hover .team-one__social {
  transform: scaleY(1) translateX(-50%);
  -webkit-transition-delay: 500ms;
  -moz-transition-delay: 500ms;
  -ms-transition-delay: 500ms;
  -o-transition-delay: 500ms;
  transition-delay: 500ms;
}

.team-one__social a {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 15px;
  color: var(--oxpins-black);
}

.team-one__social a + a {
  margin-left: 15px;
}

/*--------------------------------------------------------------
# Google Map
--------------------------------------------------------------*/
.google-map {
  position: relative;
  display: block;
  background-color: var(--oxpins-extra);
}

.google-map__one {
  position: relative;
  display: block;
  border: none;
  height: 475px;
  width: 100%;
  mix-blend-mode: luminosity;
}


.causes-one {
  position: relative;
  display: block;
  padding: 220px 0 120px;
  z-index: 1;
  margin-top: -176px;
  background: #F2AC5B80;
}

.causes-one__single {
position: relative;
display: block;
margin-bottom: 30px;
}

.causes-one__img {
position: relative;
display: block;
border-top-left-radius: var(--oxpins-bdr-radius);
border-top-right-radius: var(--oxpins-bdr-radius);
overflow: hidden;
z-index: 1;
}

.causes-one__img:before {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
content: "";
background-color: rgba(var(--oxpins-black-rgb), 0.3);
opacity: 1;
-webkit-transition: 0.5s;
-o-transition: 0.5s;
transition: 0.5s;
-webkit-transform: perspective(400px) rotateX(-90deg) scale(0.2);
-ms-transform: perspective(400px) rotateX(-90deg) scale(0.2);
transform: perspective(400px) rotateX(-90deg) scale(0.2);
-webkit-transform-origin: top;
-ms-transform-origin: top;
transform-origin: top;
border-top-left-radius: var(--oxpins-bdr-radius);
border-top-right-radius: var(--oxpins-bdr-radius);
z-index: 1;
}

.causes-one__single:hover .causes-one__img:before {
opacity: 1;
-webkit-transform: perspective(400px) rotateX(0deg) scale(1);
-ms-transform: perspective(400px) rotateX(0deg) scale(1);
transform: perspective(400px) rotateX(0deg) scale(1);
}

.causes-one__img img {
width: 100%;
border-top-left-radius: var(--oxpins-bdr-radius);
border-top-right-radius: var(--oxpins-bdr-radius);
transition-delay: 0.1s;
transition-timing-function: ease-in-out;
transition-duration: 0.7s;
transition-property: all;
}

.causes-one__single:hover .causes-one__img img {
transform: scale(1.1) rotate(2deg);
}

.causes-one__cat {
position: absolute;
bottom: 30px;
left: 30px;
background-color: var(--oxpins-primary);
padding: 6px 25px;
border-radius: 15px;
z-index: 2;
}

.causes-one__cat p {
font-size: 18px;
color: var(--oxpins-black);
line-height: 18px;
font-family: var(--oxpins-font-three);
font-weight: 700;
}

.causes-one__content {
position: relative;
display: block;
background-color: rgb(255, 255, 255);
box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.1);
border-bottom-left-radius: var(--oxpins-bdr-radius);
border-bottom-right-radius: var(--oxpins-bdr-radius);
border: 1px solid var(--oxpins-bdr-color);
padding: 22px 30px 30px;
border-top: 0;
}

.causes-one__title {
font-size: 26px;
line-height: 36px;
font-weight: 800;
letter-spacing: -0.04em;
}

.causes-one__title a {
color: var(--oxpins-base);
-webkit-transition: all 500ms ease;
transition: all 500ms ease;
}

.causes-one__title a:hover {
color: var(--oxpins-primary);
}

.causes-one__text {
padding-top: 11px;
padding-bottom: 21px;
}

.causes-one__progress {
position: relative;
display: block;
width: 100%;
padding: 49px 29px 20px;
background-color: var(--oxpins-extra);
border-radius: var(--oxpins-bdr-radius);
border: 1px solid var(--oxpins-bdr-color);
z-index: 1;
}

.causes-one__progress-shape {
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
background-size: cover;
background-position: center;
background-repeat: no-repeat;
mix-blend-mode: luminosity;
opacity: 0.2;
z-index: -1;
}

.causes-one__progress .bar {
position: relative;
width: 100%;
height: 7px;
background: var(--oxpins-white);
border-radius: 5px;
margin-bottom: 3px;
}

.causes-one__progress .bar-inner {
position: relative;
display: block;
width: 0px;
height: 7px;
border-radius: 5px;
background: var(--oxpins-base);
-webkit-transition: all 1500ms ease;
-ms-transition: all 1500ms ease;
-o-transition: all 1500ms ease;
-moz-transition: all 1500ms ease;
transition: all 1500ms ease;
}

.causes-one__progress .count-text {
position: absolute;
right: 0;
bottom: 11px;
color: var(--oxpins-base);
line-height: 20px;
font-size: 12px;
text-align: center;
font-weight: 700;
opacity: 0;
-webkit-transition: all 500ms ease;
-ms-transition: all 500ms ease;
-o-transition: all 500ms ease;
-moz-transition: all 500ms ease;
transition: all 500ms ease;
}

.causes-one__progress .bar-inner.counted .count-text {
opacity: 1;
}

.causes-one__progress .count-text:after {
content: "";
position: absolute;
left: 5px;
top: 17px;
height: 20px;
width: 20px;
background-color: var(--oxpins-base);
border-radius: 50%;
}

.causes-one__progress .count-text:before {
content: "";
position: absolute;
left: 12px;
top: 24px;
height: 6px;
width: 6px;
background-color: var(--oxpins-white);
border-radius: 50%;
z-index: 1;
}

.causes-one__goals {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
}

.causes-one__goals > p {
font-size: 14px;
color: #707876;
font-weight: 400;
margin: 0;
}

.causes-one__goals > p > span {
font-size: 14px;
color: var(--oxpins-black);
font-weight: 700;
line-height: 28px;
}

.news-one .section-title{padding-bottom: 40px;color:#fff;}
.news-one .section-title .sub-title{color:#fff;}


.news-one {
  position: relative;
  display: block;
  padding: 52px 0 90px;
  background: rgba(129, 194, 65, 0.8);
}

.news-one__single {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.news-one__img {
  position: relative;
  display: block;
  overflow: hidden;
  border-top-left-radius: var(--oxpins-bdr-radius);
  border-top-right-radius: var(--oxpins-bdr-radius);
  z-index: 1;
  max-height: 250px;
}

.news-one__img:before {
  position: absolute;
  content: "";
  left: 0px;
  bottom: 0px;
  width: 100%;
  height: 0px;
  background-color: rgba(var(--oxpins-black-rgb), 0.3);
  visibility: hidden;
  opacity: 0;
  transform-style: preserve-3d;
  transform: perspective(370px) rotateY(90deg) translate(0px, 50px);
  border-top-left-radius: var(--oxpins-bdr-radius);
  border-top-right-radius: var(--oxpins-bdr-radius);
  transition: all 900ms ease;
  -moz-transition: all 900ms ease;
  -webkit-transition: all 900ms ease;
  -ms-transition: all 900ms ease;
  -o-transition: all 900ms ease;
  z-index: 1;
}

.news-one__single:hover .news-one__img:before {
  visibility: visible;
  opacity: 1;
  transform: perspective(370px) rotateY(0deg) translate(0px, 0px);
  height: 100%;
}

.news-one__img img {
  width: 100%;
  border-top-left-radius: var(--oxpins-bdr-radius);
  border-top-right-radius: var(--oxpins-bdr-radius);
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}

.news-one__single:hover .news-one__img img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

.news-one__date {
  position: absolute;
  left: 30px;
  top: -15px;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 4px 7px 0px rgba(0, 0, 0, 0.1);
  padding: 6px 25px 6px;
  border-radius: 15px;
  z-index: 2;
}

.news-one__date p {
  font-size: 18px;
  color: var(--oxpins-base);
  font-family: var(--oxpins-font-three);
  font-weight: 700;
  line-height: 18px;
}

.news-one__content-box {
  position: relative;
  display: block;
  border: 1px solid var(--oxpins-bdr-color);
  border-bottom-left-radius: var(--oxpins-bdr-radius);
  border-bottom-right-radius: var(--oxpins-bdr-radius);
  border-top: 0;
  background-color: rgb(255, 255, 255);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.news-one__single:hover .news-one__content-box {
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.1);
}

.news-one__content-inner {
  position: relative;
  display: block;
  overflow: hidden;
}

.news-one__content {
  position: relative;
  display: block;
  padding: 37px 25px 23px;
  padding-bottom: 0px;
}

.news-one__meta {
  position: relative;
  display: flex;
  align-items: center;
}

.news-one__meta li + li {
  margin-left: 15px;
}

.news-one__meta li a {
  font-size: 14px;
  color: var(--oxpins-gray);
  font-weight: 600;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.news-one__meta li a:hover {
  color: var(--oxpins-base);
}

.news-one__meta li a i {
  color: var(--oxpins-primary);
  padding-right: 3px;
}


#load-more{background:#81c241 ; border-radius: 5px;}
.news-one__title {
  font-size: 26px;
  font-weight: 900;
  line-height: 17px;
  letter-spacing: -0.04em;
  margin-top: 3px;
}

.news-one__title a {
  color: var(--oxpins-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.news-one__title a:hover {
  color: var(--oxpins-base);
}

.news-one__bottom {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px 27px 19px;
 }
.news-one__read-more {
  position: relative;
  display: block;
  background: #16703a;
  color: #fff;
  padding: 7px 16px;
  border-radius: 10px;
}
.news-one__read-more {
  position: relative;
  display: block;
  background: #16703a;
  color: #fff;
  padding: 7px 16px;
  border-radius: 10px;
}
.news-one__read-more {
  position: relative;
  display: block;
  background: #16703a;
  color: #fff;
  padding: 7px 16px;
  border-radius: 10px;
}
.news-one__read-more {
  position: relative;
  display: block;
  background: #16703a;
  color: #fff;
  padding: 7px 16px;
  border-radius: 10px;
}
.news-one__read-more {
  position: relative;
  display: block;
  background: #16703a;
  color: #fff;
  padding: 7px 16px;
  border-radius: 10px;
}

.news-one__read-more a {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.news-one__read-more a:hover {
  color: var(--oxpins-base);
}

.news-one__read-more a span {
  font-size: 16px;
  position: relative;
  top: 2px;
  padding-right: 6px;
}

.news-one__share {
  position: relative;
  display: block;
}

.news-one__share a {
  font-size: 15px;
  color: var(--oxpins-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.news-one__share a:hover {
  color: var(--oxpins-base);
}

.news-one__social-box {
  position: absolute;
  bottom: 50px;
  right: 20px;
  background-color: var(--oxpins-primary);
  box-shadow: 0px 4px 7px 0px rgba(0, 0, 0, 0.1);
  padding: 15px 7px;
  border-radius: 15px;
  transform: translateX(175%);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 2;
}

.news-one__social-box.active {
  transform: translateX(0%);
}

.news-one__social {
  position: relative;
  display: block;
}

.news-one__social li {
  position: relative;
  display: block;
}

.news-one__social li + li {
  margin-top: 15px;
}

.news-one__social li a {
  position: relative;
  display: flex;
  font-size: 16px;
  color: var(--oxpins-black);
  align-items: center;
  justify-content: center;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.news-one__social li a:hover {
  color: var(--oxpins-base);
}






.breadcrumb-bg{
	
background-size: cover;padding-top:10%;	
padding-bottom:10%;
	
}
/* Make the WhatsApp icon float */
.whatsapp-float {
  position: fixed;
  bottom: 116px;
  right: 20px;
  z-index: 1000;
  background-color: #25d366; /* WhatsApp green */
  padding: 15px;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
}

.whatsapp-float img {
  width: 50px;
  height: 50px;
}

.whatsapp-float:hover {
  background-color: #128c7e;
}




.breadcrumb-bg h1{
text-align: center;color: #16703C;
}


.add-read-more.show-less-content .second-section,
.add-read-more.show-less-content .read-less {
   display: none;
}

.add-read-more.show-more-content .read-more {
   display: none;
}

.add-read-more .read-more,
.add-read-more .read-less {
   font-weight: bold;
   margin-left: 2px;
   color: blue;
   cursor: pointer;
}

.add-read-more{
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
}


.hide_pg{display:none;}











.sticky{
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #fff;
    transition: background-color 0.5s, padding 1s;
    z-index: 99;
    box-shadow: 0px -10px 10px 10px rgb(0 0 0 / 15%);
}
.sticky .logo-img{
    width: 90px ;
}
.sticky .site-branding{
    top: 0;
    transition: .5s;
}
/*==============================*/
 .main-content{
    margin: 0px 20px 0px 20px;
	max-width: 100%;
	overflow: hidden;
	border-radius: 30px;
  }
  

  
  .slideshow {
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 100vh;
    z-index: 1;
  }
  .slideshow .slideshow-inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .slideshow .slides {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
  }
  .slideshow .slide {
    display: none;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  .slideshow .slide.is-active {
    display: block;
  }
  .slideshow .slide.is-loaded {
    opacity: 1;
  }
  .slideshow .slide .caption {
    padding: 0 100px;
  }
  .slideshow .slide .image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center;
    z-index: 1;
    background-size: cover;
    image-rendering: optimizeQuality;
  }
  .slideshow .slide .image-container::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
  }
  .slideshow .slide .image {
    width: 100%;
    width: 100%;
    object-fit: cover;
    height: 100%;
  }
  .slideshow .slide-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    color: #fff;
    text-align: left;
    display: flex;
    justify-content: start;
    align-items: center;
  }
  .slideshow .slide .title {
    margin: 0 auto 15px;
    max-width: 1000px;
    font: 300 50px/1.2 "Oswald", sans-serif;
    letter-spacing: 0.35em;
    text-transform: uppercase;
  }
  .slideshow .slide .text {
    margin: 0 auto;
    max-width: 1000px;
    font-size: 18px;
    line-height: 1.4;
  }
  
  .slideshow .pagination {
    position: absolute;
    bottom: 35px;
    left: 0;
    width: 100%;
    height: 12px;
    cursor: default;
    z-index: 2;
    text-align: center;
    justify-content: center;
  }
  .slideshow .pagination .item {
    display: inline-block;
    padding: 15px 5px;
    position: relative;
    width: 46px;
    height: 32px;
    cursor: pointer;
    text-indent: -999em;
    z-index: 1;
  }
  .slideshow .pagination .item + .page {
    margin-left: -2px;
  }
  .slideshow .pagination .item::before {
    content: "";
    display: block;
    position: absolute;
    top: 15px;
    left: 5px;
    width: 36px;
    height: 2px;
    background: rgba(255, 255, 255, 0.5);
    transition: background 0.2s ease;
  }
  .slideshow .pagination .item::after {
    width: 0;
    background: #fff;
    z-index: 2;
    transition: width 0.2s ease;
  }
  .slideshow .pagination .item:hover::before, .slideshow .pagination .item.is-active::before {
    background-color: #fff;
  }
  .slideshow .arrows .arrow {
    margin: -33px 0 0;
    padding: 20px;
    position: absolute;
    top: 50%;
    cursor: pointer;
    z-index: 3;
  }
  .slideshow .arrows .prev {
    left: 30px;
  }
  .slideshow .arrows .prev:hover .svg {
    left: -10px;
  }
  .slideshow .arrows .next {
    right: 30px;
  }
  .slideshow .arrows .next:hover .svg {
    left: 10px;
  }
  .slideshow .arrows .svg {
    position: relative;
    left: 0;
    width: 14px;
    height: 26px;
    fill: #fff;
    transition: left 0.2s ease;
  }
  .caption h2 {
    color: #fff;
    font-weight: 300;
    font-size: 4rem;
    line-height: 70px;
    margin-bottom: 0;
 }
.caption h2 span {
    font-weight: 600;
    display: block;
}
.line {
    background-color: #fff;
    width: 100%;
    height: 1px;
    margin: 20px 0;
}
/*===============================*/
.pad-100{
    padding: 100px 0;
}
.sub-title{
    font-size: 1.15rem;
    color: #1b1b1b;
    font-weight: normal;
    text-transform: uppercase;
}
.about-section{
    padding-top: 150px;
    padding-bottom: 150px;
}.visiontext{color:#fff;padding-bottom:15px;}
.about-section .title{
   font-size: 20px;  line-height: 33px;  color: #16703a;  font-weight: 500;
}.rts-read-more-two{color:#fff;}
.text-justify{
    text-align: justify;
}
.content p{
    font-weight: normal;
    font-size: 15px;
    color: #666666;
    line-height: 20px;
}
.btn.btn-style-1 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #16703a;
    position: relative;
    color: #fff;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 600;
    border-radius: 40px;
    border: none;
    padding: 10px 25px 10px 35px;
    box-shadow: -2px 5px #81c241;
    transition: .5s;
}
.btn.btn-style-1:hover{
    background-color: #81c241;
    
}
.btn.btn-style-1:hover{
    box-shadow: none;
    

}
.btn.btn-style-1 i{
    font-size: 25px;
}
.btn.btn-style-1.btn-style-3 {
    background-color: #fff;
    color: #000;
    box-shadow: none;
    border: 3px solid #81c241;
}
.btn.btn-style-1.btn-style-3 i{
    color: #81c241;
    margin-top: 2px;
}
.btn.btn-style-1.btn-style-3:hover
{
    background-color: #81c241;
    color: #fff;
}
.btn.btn-style-1.btn-style-3:hover i
{
    color: #fff;
}
/*.btn.btn-style-1::before {
    content: '';
    position: absolute;
    background-color: #81c241;
    display: inline-block;
    left: -4px;
    right: 0;
    top: 0px;
    width: 198px;
    height: 65px;
    z-index: -1;
    border-radius: 40px;
    transition: ease-in-out .5s;
}*/

.about-img img {
    border-top-left-radius: 60px;
    border-bottom-right-radius: 60px;
    box-shadow: 15px 15px #81c241;
    position: relative;
    z-index: 11;
}
.shape {
    position: absolute;
    z-index: 1;
}
.shape-1 {
    top: -52px;
    left: -40px;
}
.shape-2 {
    top:0px;
    right:0px;
}
.shape-3 {
    bottom:0px;
    left:0px;
}
.grid-img{
    animation: jump-2 5s linear infinite;
}
@keyframes jump-2 {
    0% {
      -webkit-transform: translate3d(0, 0, 0);
      transform: translate3d(0, 0, 0);
    }
    50% {
      -webkit-transform: translate3d(0, 30px, 0);
      transform: translate3d(0, 30px, 0);
    }
    100% {
      -webkit-transform: translate3d(0, 0, 0);
      transform: translate3d(0, 0, 0);
    }
  }
/*********************************/
.vision-section{
    background: url('../images/vision-bg.jpg') no-repeat center;
    background-size: cover;
    margin: 0px 20px;
    padding-top: 150px;
    padding-bottom: 100px;
    border-radius: 30px;
    z-index: 10;
}
.vision-box{
    background: url('../images/pattern-1.png') #81c241 repeat center;
    background-size: contain;
    border-top-left-radius: 50px;
    border-bottom-right-radius: 50px;
    padding: 70px;
    position: relative;
    transition: .5s;
}
.mission-box{
    border-top-left-radius: 0px;
    border-bottom-right-radius: 0px;
    border-top-right-radius: 50px;
    border-bottom-left-radius: 50px;
}
.vision-box p{
    color: #fff;
    font-size: 15px;
    line-height: 25px;
    font-weight: normal;
    margin-bottom: 0;
}
.vision-box h3{
    font-size: 1.7rem;
    font-weight: 700;
    color: #fff;
    position: relative;
    margin-bottom: 30px;
}
.vision-box h3::before{
    content: '';
    position: absolute;
    bottom: -13px;
    left: 3px;
    background-color: #16703a;
    width: 55px;
    height: 2px;
}
.vision-box h3::after{
    content: '';
    position: absolute;
    bottom: -13px;
    left: 65px;
    background-color: #16703a;
    width: 7px;
    height: 2px;
}
.vision-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -60px;
    background-color: #16703a;
    padding: 30px;
    border-radius: 50%;
    width: 118px;
    height: 118px;
}

.vision-box:hover{
    border-radius: 0;
}
.vision-box .vision-icon{
    transition: transform .2s;
}
.vision-box:hover .vision-icon{
    transform: scale(1.1);
}
/****************************/

.team1-section{
    z-index: 1;

}




.team1-section .img {  
filter: drop-shadow(0px 1000px 0 #81c241);
transform: translateY(-1000px);
}





.text-lightgreen1{
   color: #81c241;
}

.team1-box .team1-box-img{
    border-radius: 20px;
    transition: 0.5s;
}
.team1-box .team1-box-img:hover {
    transform: scale(1.3);
 }
 .team1-box-cnt {
    padding: 60px 30px 0;
    border: 1px solid #81c241;
    border-radius: 20px;
    margin-top: -40px;
    transition: .5s;
} 
.team1-box-cnt h5{
    color: #6ea539;
    font-weight: 600;
    margin-bottom: 0;
}
.team1-box-cnt p{
    color: #81c241;
} 
.teams:hover .team1-box-cnt{
    background: #81c241;
}



.imgs {  
filter: drop-shadow(0px 1000px 0 #81c241);
transform: translateY(-1000px);
}




.portfolio-area.style-3 .portfolio-wrapper2 {
  position: relative;
  z-index: 1;
  transition: all 0.4s;
  margin-bottom: 40px;
  margin-right: 15px;
}
.portfolio-area.style-3 .portfolio-wrapper2:hover .img-fluid::before {
  height: 100%;
  bottom: 0;
}
.portfolio-area.style-3 .portfolio-wrapper2:hover .img-fluid .portfolio-content {
  transform: translate(-50%, -50%) scale(1);
}
.portfolio-area.style-3 .portfolio-wrapper2::before {
  pointer-events: none;
}
.portfolio-area.style-3 .portfolio-wrapper2:hover .portfolio-content a {
  transform: scale(1.5);
}
.portfolio-area.style-3 .portfolio-wrapper2:hover .portfolio-text .p-title a {
  text-decoration: underline !important;
}
.portfolio-area.style-3 .portfolio-wrapper2::before {
  background: #81c241;
}
.portfolio-area.style-3 .portfolio-wrapper2 .img-fluid {
  position: relative;
  transition: all 0.3s;
}
.portfolio-area.style-3 .portfolio-wrapper2 .img-fluid::before {
  content: "";
  position: absolute;
  background-color: var(--color-primary);
  opacity: 0.8;
  width: 100%;
  height: 0;
  top: 0;
  border-radius: 20px;
  transition: all 0.4s;
}
.portfolio-area.style-3 .portfolio-wrapper2 .img-fluid img {
  width: 100%;
}
.portfolio-area.style-3 .portfolio-wrapper2 .img-fluid .portfolio-content {
  position: absolute;
  color: #81c241;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  padding: 15px 30px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  display: inline-block;
  z-index: 2;
  left: 50%;
  top: 50%;
  transition: all 0.4s;
  transform: translate(-50%, -50%) scale(0);
}
.portfolio-area.style-3 .portfolio-wrapper2 .img-fluid .portfolio-content a {
  font-size: 14px;
  left: 39%;
  bottom: 55%;
  padding: 2px 15px;
  transition: all 0.4s ease-out 0s;
}
.portfolio-area.style-3 .portfolio-wrapper2 .portfolio-text {
  padding: 18px 0 0;
}
.portfolio-area.style-3 .portfolio-wrapper2 .portfolio-text .text .p-category {
  margin-bottom: 10px;
}
.portfolio-area.style-3 .portfolio-wrapper2 .portfolio-text .text .p-category a {
  color: #040404;
  font-size: 14px;
}
.portfolio-area.style-3 .portfolio-wrapper2 .portfolio-text .text .p-title {
  color: #040404;
  font-size: 22px;
  font-weight: 700;
  transition: all 0.4s;
}
@media (max-width: 767px) {
  .portfolio-area.style-3 .portfolio-wrapper2 .portfolio-text .text .p-title {
    font-size: 20px;
  }
}
.portfolio-area.style-3 .portfolio-wrapper2 .portfolio-text .text .p-title:hover {
  color: #ff4969 !important;
}
.portfolio-area.style-4 .item {
  position: relative;
  margin: 0 10px 30px 0;
  transition: all 0.4s;
}
@media (max-width: 768px) {
  .portfolio-area.style-4 .item {
    margin: 0 0 30px 0;
  }
}
.portfolio-area.style-4 .item:hover::before {
  height: 100%;
}
.portfolio-area.style-4 .item:hover .portfolio-wrapper .single-portfolio {
  transform: scale(1);
}
.portfolio-area.style-4 .item:hover .portfolio-wrapper .pf-btn {
  transform: scale(1);
}
.portfolio-area.style-4 .item::before {
  content: "";
  position: absolute;
  background: var(--color-primary);
  opacity: 0.9;
  width: 100%;
  height: 0;
  left: 0;
  bottom: 0;
  z-index: 1;
  transition: all 0.3s ease 0s;
  clip-path: polygon(0% -65%, 0% 100%, 99% 100%);
  border-radius: 20px;
}
.portfolio-area.style-4 .item .img-fluid img {
  width: 100%;
}
.portfolio-area.style-4 .item .portfolio-wrapper {
  position: relative;
}
.portfolio-area.style-4 .item .portfolio-wrapper .single-portfolio {
  position: absolute;
  bottom: 10%;
  left: 8%;
  transform: scale(0);
  transition: all 0.4s;
  z-index: 1;
}
.portfolio-area.style-4 .item .portfolio-wrapper .single-portfolio span {
  color: #6ea539;
    font-weight: 600;
  font-size: 16px;

}
.portfolio-area.style-4 .item .portfolio-wrapper .single-portfolio .portfolio-title {
  font-size: 22px;
  font-weight: 700;
}
.portfolio-area.style-4 .item .portfolio-wrapper .pf-btn {
  background-color: #fff;
  color: #000;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  display: block;
  border-radius: 50%;
  position: absolute;
  bottom: 12%;
  right: 7%;
  transform: scale(0);
  transition: all 0.4s;
  z-index: 1;
}
.portfolio-area.style-5 .item {
  position: relative;
  margin-bottom: 20px;
  margin-right: 10px;
}
@media (max-width: 768px) {
  .portfolio-area.style-5 .item {
    margin-right: 0;
  }
}
.portfolio-area.style-5 .item:hover::before {
  background: #1c2539;
  opacity: 0.902;
  clip-path: polygon(0 54.6%, 0% 100%, 45.5% 100%);
}
.portfolio-area.style-5 .item:hover::after {
  visibility: visible;
  height: 100%;
}
.portfolio-area.style-5 .item:hover .portfolio-wrapper .single-portfolio {
  top: 8%;
  bottom: unset;
}
.portfolio-area.style-5 .item:hover .portfolio-wrapper .pf-btn {
  transform: scale(1);
}
.portfolio-area.style-5 .item::before {
  content: "";
  position: absolute;
  background-image: -webkit-linear-gradient(90deg, rgba(0, 0, 0, 0.70196) 0%, rgba(0, 0, 0, 0) 100%);
  width: 100%;
  height: 100%;
  transition: all 0.4s ease 0s;
  left: 0;
  bottom: 0;
  z-index: 1;
  border-radius: 20px;
}
.portfolio-area.style-5 .item::after {
  content: "";
  position: absolute;
  background-color: #81c241;
  opacity: 0.902;
  clip-path: polygon(100% 0, 100% 100%, 45.5% 100%, 0% 55%, 0 0);
  width: 100%;
  height: 0;
  transition: all 0.4s ease 0s;
  left: 0;
  top: 0;
  border-radius: 20px;
  z-index: 1;
}
.portfolio-area.style-5 .item .portfolio-wrapper .img-fluid img {
  width: 100%;
  border-radius: 17px;
}
.portfolio-area.style-5 .item .portfolio-wrapper .single-portfolio {
  position: absolute;
  bottom: 10%;
  left: 15%;
  transform: scale(1);
  transition: all 0.4s;
  z-index: 9;
}
.portfolio-area.style-5 .item .portfolio-wrapper .single-portfolio span {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
}
.portfolio-area.style-5 .item .portfolio-wrapper .single-portfolio .portfolio-title {
  font-size: 22px;
  font-weight: 700;
}
.portfolio-area.style-5 .item .portfolio-wrapper .pf-btn {
  background-color: #fff;
  color: #000;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  display: block;
  border-radius: 50%;
  position: absolute;
  bottom: 16%;
  left: 15%;
  transform: scale(0);
  transition: all 0.4s;
  z-index: 9;
}







.service-detials-step-2 p.disc {
  font-size: 16px;
  line-height: 26px;
}
.service-detials-step-2.inner {
  max-width: 900px;
  margin: 0 auto;
}

.service-detials-step-1 .thumbnail {
  margin-bottom: 45px;
}
.service-detials-step-1 .title {
  margin-bottom: 16px;
}
.service-detials-step-1 p.disc {
  margin-bottom: 23px;
  font-size: 16px;
  line-height: 26px;
}
.service-detials-step-1 .service-details-card {
  padding: 30px;
  box-shadow: 0px 8px 30px #6a6a6a1a;
  display: flex;
  align-items: flex-start;
  border-left: 5px solid var(--color-primary);
}
.service-detials-step-1 .service-details-card .thumbnail img {
  height: 29px;
  width: 74px;
}
.service-detials-step-1 .service-details-card .details {
  margin-left: 20px;
}
.service-detials-step-1 .service-details-card .details .title {
  margin-bottom: 5px;
  font-size: 20px;
}
.service-detials-step-1 .service-details-card .details p {
  margin-bottom: 0;
}

.service-detials-step-2 .single-service-step {
  background: #fff;
  padding: 40px 20px;
  border: 1px solid #EEEEEE;
  box-shadow: 0px 6px 39px #0000000a;
}
.service-detials-step-2 .single-service-step p.step {
  position: relative;
  color: #fff;
  z-index: 1;
  margin-bottom: 52px;
  font-weight: 700;
  font-size: 20px;
  line-height: 28px;
  margin-top: 29px;
}
.service-detials-step-2 .single-service-step p.step::after {
  position: absolute;
  content: "";
  left: 50%;
  top: 50%;
  background: #DF0A0A;
  height: 60px;
  width: 60px;
  transform: translate(-50%, -50%);
  z-index: -1;
  border-radius: 50%;
}
.service-detials-step-2 .single-service-step p.step::before {
  position: absolute;
  content: "";
  left: 50%;
  top: 50%;
  background: #e81c2e1a;
  height: 90px;
  width: 90px;
  transform: translate(-50%, -50%);
  z-index: -1;
  border-radius: 50%;
}
.service-detials-step-2 .single-service-step .title {
  margin-bottom: 8px;
}
.service-detials-step-2 .single-service-step p.disc {
  font-size: 16px;
  line-height: 26px;
}

.service-detials-step-3 .title {
  margin-bottom: 8px;
}
.service-detials-step-3 p.disc {
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 20px;
}
.service-detials-step-3 .single-banifits {
  margin-bottom: 10px;
}
.service-detials-step-3 .single-banifits i {
  margin-right: 15px;
  color: var(--color-primary);
}

.service-two-bg {
  background-image: url(../images/service/bg-02.jpg);
}

.service-two-inner {
  box-shadow: 0px 13px 40px #1810100a;
  position: relative;
  border-radius: 15px;
}
.service-two-inner .thumbnail {
  overflow: hidden;
  display: block;
  border-radius: 15px 15px 0 0;
  position: relative;
}
/*
.service-two-inner .thumbnail::after {
  position: absolute;
  right: 0;
  top: 0;
  content: "01";
  font-size: 18px;
  background: #fff;
  border-radius: 0 0 0 15px;
  height: 50px;
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-weight: 700;
}

.service-two-inner .thumbnail.two::after {
  content: "02";
}
.service-two-inner .thumbnail.three::after {
  content: "03";
}
.service-two-inner .thumbnail.four::after {
  content: "04";
}
.service-two-inner .thumbnail.five::after {
  content: "05";
}
.service-two-inner .thumbnail.six::after {
  content: "06";
}
.service-two-inner .thumbnail.seven::after {
  content: "07";
}
.service-two-inner .thumbnail.eight::after {
  content: "08";
}
.service-two-inner .thumbnail.nine::after {
  content: "09";
}*/
.service-two-inner .thumbnail img {
  width: 100%;
  border-radius: 15px 15px 0 0;
  transition: 0.3s;
}
.service-two-inner .body-content {
  z-index: 5;
  padding: 40px;
  background: #fff;
  width:100%;
  border-radius: 0 0 15px 15px;
  position: absolute;
  bottom: -50%;
}
@media only screen and (max-width: 767px) {
  .service-two-inner .body-content {
    bottom: -37%;
  }
}
@media only screen and (max-width: 479px) {
  .service-two-inner .body-content {
    padding: 20px;
  }
}
.service-two-inner .body-content .hidden-area {
  max-height: 80px;
  overflow: hidden;
  transition: 0.5s ease-in-out;
}
.service-two-inner .body-content .title {
  margin-bottom: 8px;
  font-size: 22px;
  color:#466F98;
}
.service-two-inner .body-content p {
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  color: #5D666F;
  margin-bottom: 15px;
}
.service-two-inner .body-content .rts-read-more-two {
  color: var(--color-primary);
  font-weight: 700;
  font-size: 16px;
  align-items: center;
  display: flex;
}
.service-two-inner .body-content .rts-read-more-two i {
  margin-left: 5px;
  transition: 0.3s;
}
.service-two-inner .body-content .rts-read-more-two:hover i {
  margin-left: 8px;
}
.service-two-inner:hover .thumbnail img {
  transform: scale(1.15);
}
.service-two-inner:hover .body-content .hidden-area {
  max-height: 150px;
  bottom: 0;
}





.single-contact-one-inner {
  background: #FFFFFF;
  border: 1px solid #F0F0F0;
  border-radius: 15px;
  height: 100%;
}
.single-contact-one-inner .thumbnail {
  display: block;
  overflow: hidden;
  border-radius: 15px 15px 0 0;
}
.single-contact-one-inner .thumbnail img {
  width: 100%;
  transition: 0.3s;
}
.single-contact-one-inner .thumbnail:hover img {
  transform: scale(1.1);
}
.single-contact-one-inner .content {
  display: flex;
  align-items: center;
  padding: 40px;
  background-color: var(--color-primary-alta);
}
@media only screen and (max-width: 767px) {
  .single-contact-one-inner .content {
    padding: 15px;
  }
}
.single-contact-one-inner .content .icone {
  margin-right: 20px;
}
.single-contact-one-inner .content .info span {
  margin-bottom: 0;
  color: var(--color-primary);
  font-weight: 500;
}
.single-contact-one-inner .content .info a h5 {
margin-bottom: 0;
  transition: 0.3s;
  font-size: 16px;
  line-height: 24px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .single-contact-one-inner .content .info a h5 {
    font-size: 18px;
  }
}
@media only screen and (max-width: 767px) {
  .single-contact-one-inner .content .info a h5 {
    font-size: 18px;
  }
}
.single-contact-one-inner .content .info a:hover h5 {
  color: var(--color-primary);
}
.rts-section-gap {
  padding: 120px 0;
}

.contact-map-area-fluid {
  position: relative;
}
.contact-map-area-fluid .contact-map {
  width: 100%;
  height: 580px;
}
.contact-map-area-fluid .location {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 5;
  transform: translate(-50%, -50%);
  max-width: 100px;
  height: auto;
}

.rts-contact-fluid {
  box-shadow: 0px 24px 39px rgba(0, 0, 0, 0.05);
}
.rts-contact-fluid .form-wrapper {
  width: 80%;
  margin: auto;
}
@media only screen and (max-width: 575px) {
  .rts-contact-fluid .form-wrapper {
    width: 90%;
  }
}




.rts-contact-fluid .form-wrapper .error {
  color: var(--color-primary);
  margin-bottom: 15px;
}
.rts-contact-fluid .form-wrapper .success {
  color: green;
  margin-bottom: 15px;
}

.rts-contact-fluid .form-wrapper form .name-email {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  .rts-contact-fluid .form-wrapper form .name-email {
    flex-direction: column;
  }
}
.rts-contact-fluid .form-wrapper form .name-email input {
  width: 48.8%;
}
@media only screen and (max-width: 767px) {
  .rts-contact-fluid .form-wrapper form .name-email input {
    width: 100%;
  }
}
.rts-contact-fluid .form-wrapper input {
  background: #F6F6F6;
  height: 55px;
  border-radius: 15px;
  margin-bottom: 25px;
  border: 1px solid transparent;
}
.rts-contact-fluid .form-wrapper input:focus {
  border: 1px solid var(--color-primary);
}
.rts-contact-fluid .form-wrapper textarea {
  height: 150px;
  background: #F6F6F6;
  border-radius: 15px;
  padding: 15px 15px;
  border: 1px solid transparent;
}
.rts-contact-fluid .form-wrapper textarea:focus {
  border: 1px solid var(--color-primary);
}
.rts-contact-fluid .rts-btn {
  display: block;
  max-width: max-content;
  margin: auto;
  margin-top: 30px;
}


.rts-contact-fluid .form-wrapper textarea {
  overflow: auto;
  vertical-align: top;
}

.rts-contact-fluid input {
  height: 40px;
  padding: 0 15px;
}


.rts-contact-fluid  input,
.rts-contact-fluid button,
.rts-contact-fluid select,
.rts-contact-fluid textarea {
  background: transparent;
  border: 1px solid var(--color-border);
  transition: all 0.4s ease-out 0s;
  color: var(--color-body);
  width: 100%;
}




.team-section{
    background: url('../images/pattern-2.png') #16703a repeat;
    background-size: contain;
    margin: -50px 20px 0 20px;
    border-radius: 30px;
    z-index: 1;

}
.text-lightgreen{
   color: #81c241;
}

.team-box .team-box-img{
    border-radius: 20px;
    transition: 0.5s;
}
.team-box .team-box-img:hover {
    transform: scale(1.3);
 }
 .team-box-cnt {
    padding: 60px 30px 0;
    border: 1px solid #81c241;
    border-radius: 20px;
    margin-top: -40px;
    transition: .5s;
} 
.team-box-cnt h5{
    color: #fff;
    font-weight: 600;
    margin-bottom: 0;
}
.team-box-cnt p{
    color: #dddddd;
} 
.teams:hover .team-box-cnt{
    background: #81c241;
}
.btn.btn-style-1.btn-style-2{
    background: #000;
}
/*****************************/ 
.product-tab{
    position: relative;
    z-index: 10;
}
.product-tab ul {
    width: 50%;
    margin: 0 auto;
}
.product-tab ul  li {
    text-align: left;
}
.product-tab .nav .nav-item button {
    background-color: transparent;
    color: #000 !important;
    font-size: 1.5rem;
    padding: 15px 30px 15px 0;
}
.product-tab .nav .nav-item button.active {
    background-color: transparent;
    color: #81c241 !important;
  }
 .product-tab .nav .nav-item button.active::after {
    content: "";
    border-bottom: 2px solid #81c241;
    width: 100%;
    position: absolute;
    left: 0;
    bottom: -1px;
    border-radius: 5px 5px 0 0;
  }
  .product-tab-cnt{
    background: url('../images/product-frame.png') no-repeat center;
    background-size: contain;
    padding: 40px;
    text-align: center;
  }
  .product-tab-cnt .product-tab-img{
    transition: .5s;
  }
  .product-tab-cnt .product-tab-img:hover {
    transform: scale(1.3);
 }
 .product-tab-title h5{
    color: #000;
    font-weight: 600;
    margin-bottom: 0;
    font-size: 1.25rem;
    text-align: center;
 }
 /***************************/
 .home-contact-section{
    background: url('../images/pattern-5.png') #16703a repeat;
    background-size: contain;
 }
 .form-img {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    z-index: 0;
    overflow: hidden;
    background-color: #e6fad1;
    width: 35%;
}
 .form-img img{
    transition: .5s;
 }
 .form-img img:hover{
    transform: scale(1.3);
 }
    
 .get-in-touch .form-control{
    border-radius: 0;
    padding: 15px;

 }
 .get-in-touch .form-control::placeholder{
    opacity: .5;
    font-weight: normal;
 }
 .get-in-touch .btn{
    border-radius: 0;
    padding: 15px;
    border: none;
 }
 .get-in-touch .btn:hover{
    background-color: #81c241;
 }

 /*****************************/
 .home-footer{
    background: url('../images/pattern-6.png') #000 repeat;
    background-size: contain;
 }
 .ft-listing ul{
    margin-top: 30px;
 }
 .ft-listing ul > li a, .ft-listing ul > li p{
    color: #fff;
    padding-bottom: 20px;
    font-size: 15px;
    display: block;
 }
 .ft-listing ul > li a:hover, .ft-listing ul > li a i, .ft-listing ul > li i, .ft-heading h5{
    color: #81c241;
 }
 .ft-heading h5{
    position: relative;
 }
 .ft-heading h5::before {
    content: '';
    position: absolute;
    bottom: -13px;
    left: 3px;
    background-color: #fff;
    width: 45px;
    height: 2px;
}
.ft-heading h5::after {
    content: '';
    position: absolute;
    bottom: -13px;
    left: 55px;
    background-color: #fff;
    width: 7px;
    height: 2px;
}
.ft-listing ul > li i{
    padding-right: 10px;
}
/********************************/
.why-us-section{
    background-color: #f7f7f7;
    overflow: hidden;
    margin-top: 20px;
}
.why-us-section .title{
    font-size: 1.7rem;
    line-height: 30px;
    color: #16703a;
    font-weight: 600;
}
.why-us-listing li i {
    font-size: 20px;
    margin-right: 10px;
    color: #81c241;
}
.why-us-listing li {
    background-color: #fff;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 5px;
}
.why-us-img img{
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
        animation:  imgmorphing  ease-in-out 10s infinite;
}
@keyframes imgmorphing {
    0% {
      border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
    25% {
      border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%;
    }
    50% {
      border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
    }
    75% {
      border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%;
    }
  }
  .wheel-img img {
    animation: rotateIt 10s linear infinite;
    position: absolute;
    left: -15%;
    bottom: 0;
    z-index: 1;
}
.form-address {
    position: relative;
}
 @keyframes rotateIt {
    to {
      transform: rotate(-360deg);
    }
  }
  .why-us-section .content {
    position: relative;
    z-index: 10;
}
/*****************************/
.footer-bottom {
    background-color: #81c241;
    padding: 20px 0;
}
.footer-bottom p{
    margin-bottom: 0;
    color: #fff;
}
.footer-bottom a{
   color: #16703a;
}
.ft-social a i{
    color: #fff;
    padding-left: 20px;
    font-size: 20px;
    transition: .5s;
}
.ft-social a i:hover{
    color: #16703a;
}

  