/* @import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;1,200;1,300;1,400;1,500;1,600;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');
:root {
  --ars_primary-color: #000000;
  --ars_secondary-color: #83782f; 
  --ars_heading-font: "Outfit", sans-serif;/*'Jost', sans-serif*/
  --ars_body-font: "Rubik", sans-serif; /*"Rubik", sans-serif 'Nunito', sans-serif*/
  --olive-green: #83782f;
  --creme-green: #c7b671;
  --light-black: #221f1f;
  --grey: #f7f7f7;
  --black: #000;
  --white: #fff;
}
html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  overflow-x: hidden; }

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  outline: none;
  -moz-osx-font-smoothing: grayscale;
  /* Firefox */
  -webkit-font-smoothing: antialiased;
  /* WebKit  */ 
}
body {
  color: var(--black);
  font-weight: 400;
  font-style: normal;
  font-size: 19px; /*18px*/  
  font-family: var(--ars_body-font);
  line-height: 1.6;
  margin: 0 auto; 
  position: relative;
}
h1, .h1 {
  font-size: 42px;
  line-height: 1.2; }

h2, .h2 {
  font-size: 32px;/*36px*/ }

h3, .h3 {
  font-size: 24px;/*28px*/ }

h4, .h4 {
  font-size: 22px; }

h5, .h5 {
  font-size: 20px;/*20px*/ }

h6, .h6 {
  font-size: 16px; }

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  color: var(--black);
  clear: both;
  font-family: var(--ars_heading-font);
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 5px;  
}

p {
  color: var(--black);
  margin-bottom: 0.5em;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto; 
}
a {
  color: var(--olive-green);
}
a:hover {
  color: var(--black);
}
.red-bg {
  background-color: var(--red);
}
.gold-bg {
  background-color: var(--gold);
}
.black-bg {
  background-color: var(--black);
}
.grey-bg {
  background-color: var(--grey);
}
.text-black {
  color: var(--black);
}
.text-white {
  color: var(--white);
}
.ars-btn {  
  padding: 10px 22px;
  border: 1px solid var(--olive-green);
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  transition: all 0.4s ease-in-out;
  color: var(--white);
  position: relative;
  border-radius: 5px;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  /* border-radius: 50px; */
  border-radius: 10px 0 10px 0;
}
.ars-btn:hover {
  border: 1px solid var(--light-black);
  text-decoration: none;
}
.btn--primary {
  z-index: 1;
  color: var(--white);
  background-color: var(--olive-green);
}
.btn--secondary {
  z-index: 1;
  color: var(--white);
  background-color: var(--light-black);
  border-color: var(--light-black);
}
.btn--primary:hover {
  color: var(--white);
  background-color: var(--light-black);
  border-color: var(--light-black); 
}
.btn--secondary:hover { 
  color: #fff;
  background-color: var(--olive-green);
  border-color: var(--olive-green); 
}
.btn--white {
  z-index: 1;
  color: var(--black);
  border: 1px solid var(--white);
}
.btn--white:hover {
  border: 1px solid var(--olive-green);
  color: var(--white);
  background-color: var(--olive-green);
}
.pad-tb {
  padding: 50px 0;
}
.section-title {
  margin-bottom: 1rem;
}
.section-title.text-center {
  margin-bottom: 15px; 
  position: relative;
}
.section-title.text-left {
  margin-bottom: 15px;
  position: relative;
}
.section-title.text-left h2, .section-title.text-center h2 {
  padding-bottom: 15px;
  color: var(--black);
  position: relative;
}
.section-title.text-left h2:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 65px;
  height: 4px;
  background: var(--olive-green);
}
.section-title.text-center h2:after {
  content: "";
  position: relative;
  margin: 15px auto 0;
  bottom: 0;
  width: 65px;
  height: 4px;
  background: var(--olive-green);    
  display: block;
}
.top_bar {
  background: var(--olive-green); 
  padding: 5px 0; 
  overflow: hidden;
}
.top_bar ul.top_mail {
  margin-bottom: 0;
  list-style: none;
  float: right;
  position: relative;
  color: var(--white);
  z-index: 999;
  margin-left: 0;
  padding-inline-start: 0; 
  margin-right: 0px; 
}
.top_bar ul.top_mail > li {
  margin-left: 15px;
  float: left;    
  line-height: 1.4;
}
.top_bar ul.top_mail > li a {
  color: var(--white); 
  font-size: 17px;
  position: relative;
  padding-right: 15px;
}
.top_bar ul.top_mail > li a:after {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  border-right: 1px solid #eee;
  width: 100%;
  height: 100%;
  margin-left: 15px;
}
.top_bar ul.top_mail > li:last-child a:after {
  display: none;
}
.top_bar ul.top_mail > li a i {
  margin-right: 8px;
}
.top_bar ul.top_mail > li a:hover, .top_bar a:hover {
  text-decoration: none;
}
.top_bar ul.top_mail > li:last-child a {
  padding-right: 0px;
}
.top_bar ul.social-links {
  float: right;
  padding-inline-start: 0;
  margin: 0;
  border-right: 1px solid #eee;
}
.top_bar ul.social-links > li {
  margin-right: 20px;
}
.top_bar ul.social-links > li:last-child {
  margin-right: 15px;
}
.top_bar ul.social-links > li a {
  width: auto;
  height: auto;
  line-height: inherit;
  background: none;
  color: var(--white);
  display: inline-block;
  font-size: 17px;
}
.top_bar ul.social-links > li a:hover {
  color: var(--white);
  background: none;
}
.header-wrap {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 99999;
}
header .header-logo {
  transition: 0.4s;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
}
header {
  background: #fff;
  -webkit-box-shadow: 3px 2px 5px 0px rgba(83, 83, 83, 0.4);
  box-shadow: 3px 2px 5px 0px rgba(83, 83, 83, 0.4); 
  z-index: 99999;
  padding: 2px 0;
}
header .main-menu > li {
  position: relative;
}
header .main-menu > li > a {
  color: var(--black);
  padding: 8px 1.5vw;
  display: block;
  transition: 0.4s;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
}
header .main-menu > li.active > a {
  color: var(--olive-green);
}
header .main-menu > li:hover > a {
  color: var(--olive-green);
  text-decoration: none;
}
header .main-menu > li > a > i {
  color: var(--olive-green);
}
header .main-menu > li > a:hover > i {
  color: #fff;
}
header .main-menu > li:hover > a i {
  color: #fff;
}
/* header .main-menu > li:last-child > a { 
  background: var(--light-black);
  color: #fff;
  border-radius: 50px;
} */
header .main-menu .sub-menu {
  display: none;
  position: absolute;
  left: 50%;
  top: 100%;
  width: 230px;/*285px*/
  overflow: hidden;
  border-top: 2px solid var(--dark-orange);
  background: #fff;
  -webkit-box-shadow: 0 1px 5px 0 rgba(83, 83, 83, 0.2);
  box-shadow: 0 1px 5px 0 rgba(83, 83, 83, 0.2);
  z-index: 5;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  border-top: 3px solid var(--light-black);
}
header .main-menu .sub-menu a {
  padding: 8px 10px;
  display: block;
  color: var(--black);
  transition: 0.4s;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
}
header .main-menu .sub-menu a i {
  color: var(--black);
}
header .main-menu .sub-menu a:hover {
  background: var(--olive-green);
  color: #fff;
  text-decoration: none;
}
header .main-menu > li:hover .sub-menu {
  display: block;
}
header .header-logo figure img {
  max-width: 200px;
}
header .demo-link {
  margin-left: 1vw;
}
header .side-menu-close {
  background: transparent;
}
header .side-menu-close span {
  background: var(--black);
  width: 28px;
}
/* side menu */
.side-menu-wrap {
  width: 300px;
  position: fixed;
  right: -100%;
  top: 0;
  background: #fff;
  height: 100%;
  -webkit-box-shadow: 0 1px 5px 0 rgba(83, 83, 83, 0.2);
  box-shadow: 0 1px 5px 0 rgba(83, 83, 83, 0.2);
  overflow-y: auto;
  z-index: 999999;/*15000*/
  transition: 0.4s;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
}
.side-menu-wrap.opened {
  right: 0;
  transition: 0.8s;
  -webkit-transition: 0.8s;
  -moz-transition: 0.8s;
  -ms-transition: 0.8s;
  -o-transition: 0.8s;
}
.side-menu-logo {
  border-bottom: 2px solid var(--grey-bg);
  padding-left: 0.5rem;
  display: none!important;
}
.side-menu-nav .main-menu > li {
  position: relative;
  border-bottom: 1px solid #ccc;
}
.side-menu-nav .main-menu > li > a > i {
  color: var(--black);
}
.side-menu-nav .main-menu .sub-menu {
  border-top: 1px solid var(--olive-green);
  background: #fff;
  display: none;
}
.side-menu-nav .main-menu .sub-menu li {
  border-bottom: 1px solid #ccc;
}
.side-menu-nav .main-menu .sub-menu a {
  padding: 10px 22px;
  display: block;
  color: var(--black);
  transition: 0.4s;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;    
  font-size: 15px;
  text-transform: uppercase;
}
.side-menu-nav .main-menu .sub-menu a i {
  color: var(--black);
}
.side-menu-nav .main-menu .sub-menu ~ i {
  font-size: 0.8em;
  position: absolute;
  padding: 21px 11px;
  right: 0;
  top: 0;
  border-left: 1px solid #ccc;
}
.side-menu-nav .main-menu .sub-menu a:hover {
  background: #f5f5f5;
}
.side-menu-nav .main-menu > li > a {
  color: #000000;
  font-size: 15px;
  text-transform: uppercase;
  padding: 15px 20px 15px 20px;
  display: block;
  transition: 0.4s;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
}
.side-menu-nav .main-menu > li > a:hover {
  text-decoration: none;
}
.side-menu-wrap .side-menu-close {
  position: absolute;
  right: 0;
  top: 0;
  height: 30px;
  width: 30px;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
}
.side-menu-close {
  height: 40px;
  width: 40px;
  background: var(--olive-green); 
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.side-menu-close span {
  height: 2px;
  width: 20px;
  background: var(--white);
  position: relative;
  opacity: 1;
  transition: 0.4s;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
}
.side-menu-close span:nth-child(1) {
  top: -5px;
}
.side-menu-close span:nth-child(3) {
  bottom: -5px;
}
.side-menu-close.closed span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
  -webkit-transform: translateY(7px) rotate(45deg);
  -moz-transform: translateY(7px) rotate(45deg);
  -ms-transform: translateY(7px) rotate(45deg);
  -o-transform: translateY(7px) rotate(45deg);
}
.side-menu-close.closed span:nth-child(2) {
  opacity: 0;
}
.side-menu-close.closed span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
  -webkit-transform: translateY(-7px) rotate(-45deg);
  -moz-transform: translateY(-7px) rotate(-45deg);
  -ms-transform: translateY(-7px) rotate(-45deg);
  -o-transform: translateY(-7px) rotate(-45deg);
}
/*  custom overlay */
.custom-overlay {
  position: fixed;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 12500;
  visibility: hidden;
  opacity: 0;
  transition: 0.4s;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
}
.custom-overlay.show {
  visibility: visible;
  opacity: 1;
  transition: 0.4s;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
}
/**/
ul.social-links > li {
  display: inline-block;
  margin-right: 5px;
}
ul.social-links > li a {
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  background: var(--light-blue);
  color: var(--white);
  display: inline-block;
  font-size: 19px;
  border-radius: 50%;
}
ul.social-links > li a:hover {
  background: var(--dark-blue); 
}
.breadcrumb_wrap {
  padding: 110px 0;
  background-color: #eee;
  background-size: cover!important;
  background-position: center center!important;
  position: relative;
}
.breadcrumb_title h1 {
  /* text-transform: uppercase; */
  font-size: 42px;
  color: var(--white);
  position: relative;
}
.breadcrumb_wrap:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5); 
}
label {
  display: block;
}
.form-control {
  border: 1px solid #bbb;   
  padding: 0.5rem 0.75rem;
  color: var(--black);    
  height: 52px;
}
.form-control:focus {
  box-shadow: none;
  border: 1px solid var(--olive-green);
}
textarea.form-control {
  height: 100px;
}
.img-wrap {
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  display: inline-block;
}
.img-wrap img {
  transition: 0.2s linear;
}
.img-wrap:hover img {
  transform: scale(1.08);
}
.img_hover {
  position: relative;
  overflow: hidden;
  display: inline-block;
  vertical-align: middle;
}
.img_hover img{
  width: 100%;
  transition: all 500ms ease;
} 
.img_hover:before{
  position: absolute;
  top: 0;
  left: -75%;
  display: block;
  content: '';
  width: 50%;
  height: 100%;
  background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, .3)));
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
  -webkit-transform: skewX(-25deg);
  -ms-transform: skewX(-25deg);
  transform: skewX(-25deg);
  opacity: 0;
}
.img_hover:hover:before{
  -webkit-animation: shine 1s;
  animation: shine 1s;
  opacity: 1;
}
@-webkit-keyframes shine {
  100% {
    left: 125%;
  }
}
@keyframes shine {
  100% {
    left: 125%;
  }
}
.img_hover_1 {
  position: relative;
  overflow: hidden;
  display: inline-block;
  vertical-align: middle;
}
.img_hover_1 img{
  width: 100%;
  transition: all 500ms ease;
} 
.img_hover_1:before {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  display: block;
  content: '';
  width: 0;
  height: 0;
  background: rgba(255, 255, 255,.2);
  border-radius: 0%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 0;
}
.img_hover_1:hover:before {
  -webkit-animation: circle .95s;
  animation: circle .95s;
}

.img_hover_2 {
  position: relative;
  overflow: hidden;
  background-color: #000000;
}
.img_hover_2 img{
  width: 100%;
  transition: all 500ms ease;
} 
.img_hover_2:hover img{
  transform: scale(1.05);
  opacity: .5;
} 
.img_hover_2:before {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  display: block;
  content: '';
  width: 0;
  height: 0;
  background: rgba(255, 255, 255,.2);
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 0;
}
.img_hover_2:hover:before {
  -webkit-animation: circle .95s;
  animation: circle .95s;
}
@-webkit-keyframes circle {
  0% {
    opacity: 1;
  }
  40% {
    opacity: 1;
  }
  100% {
    width: 200%;
    height: 200%;
    opacity: 0;
  }
}
@keyframes circle {
  0% {
    opacity: 1;
  }
  40% {
    opacity: 1;
  }
  100% {
    width: 200%;
    height: 200%;
    opacity: 0;
  }
}
ul.ars-list, .volunteer-contribution ul {
  list-style: none;
  padding: 0;
  margin-bottom: 0;
}
ul.ars-list > li, .volunteer-contribution ul > li {
  margin-bottom: 10px;  
  position: relative;
  padding-left: 28px;
}
ul.ars-list > li:before, .volunteer-contribution ul > li:before {
  font-family: "Font Awesome 6 Free";
  content: "\f14a";/*f560 f14a f058 f105 f054*/
  position: absolute;
  left: 0;
  font-weight: 600;
  color: var(--olive-green);
}
.inner-services-detail.mb-40 {
  padding-top: 20px;
  padding-bottom: 20px;
}
.servicedetail-content {
  padding: 0px 15px;
}
.inner-services-detail h3 {
  font-size: 32px;
  margin-bottom: 15px;
  padding-bottom: 15px;
  position: relative;
  color: var(--black);
}
.inner-services-detail .col-md-push-6 {
  position: relative;
  left: 50%;
}
.inner-services-detail .col-md-pull-6 {
  position: relative;
  right: 50%;
}
.inner-services-detail h3:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--dark-orange);
}
.inner-services-detail.inner-services-detail-first {
  padding-top: 50px;
  padding-bottom: 20px;
}
.inner-services-detail.inner-services-detail-last {
  padding-top: 20px;
  padding-bottom: 75px;
}
.services_info .section-title.text-center h2 {
  padding-bottom: 0;
}
/*banner*/
.banner-section{
  position: relative;
}
.banner-carousel .slide-item {
  position: relative;
  overflow: hidden;
  min-height: 700px;
}
.banner-carousel .slide-item .image-layer {
  position: absolute;
  left: 0px;
  top: 0px;
  right: 0px;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all 6000ms linear;
  -moz-transition: all 6000ms linear;
  -ms-transition: all 6000ms linear;
  -o-transition: all 6000ms linear;
  transition: all 6000ms linear;
}
.banner-carousel .active .slide-item .image-layer {
  -webkit-transform: scale(1.12);
  -ms-transform: scale(1.12);
  transform: scale(1.12);
}
.slider-content.style-two {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%; 
  z-index: 10;
}
.slider-main-title {
  text-align: center;
  max-width: 1400px;
  margin: 0px auto;
}
.slider-main-title h2, .slider-main-title h1 {
  font-size: 50px; /*60px*/
  color: #FFF;
  font-weight: 700;
  line-height: 60px; /*70px*/
  text-transform: uppercase;
  margin-block-start: 0;
  margin-block-end: 0;    
  margin-bottom: 0px; /*30px*/
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
  font-family: 'Nunito', sans-serif;
}
.banner-section .container {
  max-width: 100%;
  margin: 0;
  padding: 0;
}
.banner-carousel .slide-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.2);
  z-index: 1;
} 
.banner-section .owl-carousel .owl-nav button:hover, 
.banner-section .owl-carousel .owl-nav button:focus {
  outline: 0;
}
.banner-section .owl-carousel .owl-nav button.owl-prev {
  left: 50px;
}
.banner-section .owl-carousel .owl-nav button.owl-next {
  left: unset;
  right: 50px;
}
.banner-section .owl-carousel .owl-nav button.owl-prev span, 
.banner-section .owl-carousel .owl-nav button.owl-next span {
  font-size: 45px;
  color: #ccc;
}
.banner-section .owl-carousel .owl-nav button.owl-prev span:hover, 
.banner-section .owl-carousel .owl-nav button.owl-next span:hover {
  color: #fff;
}
.banner-section .owl-carousel .owl-nav button {
  position: absolute;
  top: 48%;
}
/**/
.intro-section-wrap.pad-tb {
  padding: 80px 0;
  position: relative;
}
.intro-section-wrap .col-lg-push-6 {
  left: 50%;
}
.intro-section-wrap .col-lg-pull-6 {
  right: 50%;
}
.intro-section-wrap .intro-content {
  padding-left: 20px;
}
.intro-section-wrap .intro-content h3 {
  margin-bottom: 15px;
}
.intro-section-wrap .intro-content p {
  margin-bottom: 20px;
  text-align: justify;
}
.intro-image {
  position: relative;
  border-radius: 30px 0 30px 0;
  margin-right: 50px;    
  border-radius: 50%;
}
.intro-image img.main-img {
  border-radius: 50%;    
  border: 5px solid var(--olive-green);
}
.img-wrap-small {
  position: absolute;
  right: -60px;
  top: -40px;
  animation: up_down 3s infinite;
  /* animation: textRotation 8s linear infinite; */
}
/* @keyframes textRotation {
	to {
		transform: rotate(360deg);
	}
} */
@keyframes up_down{
  0%{
    transform: rotateX(0deg) translateY(0px);
    -webkit-transform: rotateX(0deg) translateY(0px);
    -o-transform: rotateX(0deg) translateY(0px);
  }
  50%{
    transform: rotateX(0deg)translateY(15px);
    -webkit-transform: rotateX(0deg)translateY(15px);
    -o-transform: rotateX(0deg)translateY(15px);
  }
  100%{
    transform: rotateX(0deg) translateY(0px);
    -webkit-transform: rotateX(0deg) translateY(0px);
    -o-transform: rotateX(0deg) translateY(0px);
  }
}
.intro-shape {
  position: absolute;
  right: -10px;
  bottom: -20px;
  z-index: -1;
}
.research-shape {
  position: absolute;
  left: -165px;
  top: -40px;
  animation: 3.8s floating linear infinite;
  z-index: -1;
}
.research-shape-1 {
  position: absolute;
  right: 0;
  animation: 3s up_down_alt infinite alternate;
  right: 0;
  top: 0;
  z-index: -1;
}
@keyframes up_down_alt {
	0% {
		transform: translateY(0px);
	}
	50% {
		transform: translateY(-20px);
	}
}
@keyframes floating {
  from {
      -webkit-transform: rotate(0deg) translate(-12px) rotate(0deg);
      -moz-transform: rotate(0deg) translate(-12px) rotate(0deg);
      -ms-transform: rotate(0deg) translate(-12px) rotate(0deg);
      -o-transform: rotate(0deg) translate(-12px) rotate(0deg);
      transform: rotate(0deg) translate(-12px) rotate(0deg);
      transition:1s ease-in-out;
  }
  to {
      -webkit-transform: rotate(360deg) translate(-12px) rotate(-360deg);
      -moz-transform: rotate(360deg) translate(-12px) rotate(-360deg);
      -ms-transform: rotate(360deg) translate(-12px) rotate(-360deg);
      -o-transform: rotate(360deg) translate(-12px) rotate(-360deg);
      transform: rotate(360deg) translate(-12px) rotate(-360deg);
      transition:1s ease-in-out;
  }
}
/**/
.research-wrap {
  /*background: var(--light-black);*/
  background: url(../images/research-bg.jpg);
  padding: 80px 0 50px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.research-wrap .section-title.text-center h2 {
  color: #fff;
}
.research-wrap .section-title.text-center h2:after {
  background: var(--white);/*var(--creme-green)*/
}
.research-item {
  position: relative;
  background: #ffffff;
  padding: 15px 15px 15px 15px;
  z-index: 2;
  margin-top: 10px;
  margin-bottom: 30px;
  text-align: center;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  border-radius: 15px 0 15px 0;
}
.research-item:hover:before {
  width: 100%;
}
.research-item_img {
  position: relative;
  text-align: center;
  margin-bottom: 15px;
  max-height: unset;
  overflow: hidden;
}
.research-item_img img {
  transition: 0.2s linear;
}
.research-item:hover .services-item_img img {
  transform: scale(1.04);
}
.research-item_title {
  font-weight: 600;
  font-size: 22px;
  line-height: 32px;
  text-align: center;  
  margin: 0 0 10px;
}
.research-item_title a {
  color: var(--black);
}
.research-item:hover{
  -webkit-transform:translateY(-10px);
  -ms-transform:translateY(-10px);
  transform:translateY(-10px)
}
/* .services-item_title a:hover {
  color: var(--olive-green);
  text-decoration: none;
}
.services-item:hover .services-item_title a {
  color: var(--olive-green);
} */
.research-carousel.owl-carousel .owl-nav button.owl-next, 
.research-carousel.owl-carousel .owl-nav button.owl-prev {
  position: absolute;
  top: 45%;
}
.research-carousel.owl-carousel .owl-nav button.owl-prev {
  left: -35px;
}
.research-carousel.owl-carousel .owl-nav button.owl-next {
  right: -20px;
}
.research-carousel.owl-carousel .owl-nav button.owl-next span, 
.research-carousel.owl-carousel .owl-nav button.owl-prev span {
  width: 0px;
  height: 0px;
  line-height: inherit;
  color: #fff;
  font-size: 30px;
  opacity: 0.5;
}
.research-carousel.owl-carousel .owl-nav button.owl-next span:hover, 
.research-carousel.owl-carousel .owl-nav button.owl-prev span:hover {
  opacity: 1;
}
/**/
.education-wrap.pad-tb {
  padding: 60px 0 50px;
  position: relative;
}
.education-wrap:before {
  /* position: absolute;
  content: '';
  width: 10px;
  height: 10px;
  border-left: 50px solid transparent;
  border-right: 50px solid transparent;
  border-top: 30px solid var(--light-black);
  left: 50%;
  transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  top: 0; */
} 
.education-content-wrap {
  min-height: 322px;
  padding: 15px 20px;
  background: #f5f5f5;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.education-content-wrap:before {
  content: '';
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  border: 2px dashed rgb(131 120 47 / 50%);
}
.education-content-wrap:hover {
  background: var(--olive-green);
}
.education-content-wrap:hover:before {
  border: 2px dashed rgb(255 255 255 / 50%);
}
.education-content-wrap:hover h3, .education-content-wrap:hover p {
  color: var(--white);
}

/* .education-content-wrap:before {
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  border-bottom: 3px solid transparent;
  border-left: 3px solid transparent;
  z-index: 0;
  -webkit-border-radius: 5px;
  border-radius: 5px;
}
.education-content-wrap:hover:before {
  -webkit-transition: .1s -webkit-transform linear, .2s height linear .2s;
  transition: .1s transform linear, .2s height linear .2s;
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
  height: 100%;
  border-color: #9cc212;
} */
.education-full-wrap-alt {
  display: flex;
  flex-direction: row-reverse;
  flex-wrap: wrap;
} 
/**/
.footer {
  position: relative;
  background-color: #2b2601; /*#1e1e1e*/
  margin-top: 0px; /*25px*/
  overflow: hidden;
  z-index: 1;
}
.footer-top {
  padding: 50px 0 30px;
  position: relative;
}
/* .footer-top .col-off-40 {
  margin-left: -40px;
  margin-right: 40px; 
} */
.footer-widget {
  margin-bottom: 15px;
}
.footer-widget h3 {
  color: var(--white);
  padding-bottom: 12px;
  margin-bottom: 20px;
  position: relative;
  font-weight: 500;
}
.footer-widget h3:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 45px;
  /* height: 3px; */
  border: 1px dashed var(--creme-green);
}
.footer-widget ul {
  list-style: none;
  padding: 0;
}
.footer-widget ul.widget-links > li {
  margin-bottom: 10px;
}
.footer-widget ul.widget-links > li:hover {
  padding-left: 10px;
}
.footer-widget ul.widget-links > li a {
  color: var(--white);
  position: relative;
  padding-left: 25px;
  display: block;
} 
.footer-widget ul.widget-links > li a:hover {
  color: var(--white);
  text-decoration: none;
} 
.footer-widget ul.widget-links > li a:before {
  /* font-family: "Font Awesome 6 Free"; */
  content:"-";/*"\f105" "\f0da" f73d*/
  position: absolute;
  left: 0;
  font-weight: 600;
}
.icn_txt {
  position: relative;
  display: block;
  margin-bottom: 5px;
}
.icn {
  position: absolute;
  left: 0;
  color: #fff;
}
.txt {
  padding-left: 30px;
  color: #fff;
}
.footer-bottom {
  border-top: 1px solid #3d3603; /*#2f2f2f*/
  padding: 15px 0;position: relative;
}
ul.social-links > li {
  display: inline-block;
  margin-right: 5px;
}
ul.social-links > li a {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background: var(--olive-green);/*#444444*/
  color: var(--white);
  display: inline-block;
  font-size: 16px;
  border-radius: 50%;
}
ul.social-links > li a:hover {
  background: #fff; 
  color: var(--olive-green);
}
.footer-bottom ul {
  margin-bottom: 0;
  float: right;
  margin-right: 30px;
}
.footer-widget h3.widget_title_one {
  opacity: 0;
} 
.design-by {
  display: none;
}
.btm_footer_shape img:nth-child(1) {
  left: -20px;
  bottom: 0;
  animation: 4s rotate linear infinite;
}
.btm_footer_shape img:nth-child(2) {
  right: -20px;
  top: 0;
  animation: 4s rotate linear infinite;
}
.btm_footer_shape img {
  position: absolute;
  z-index: -1;
  opacity: 0.18;
}
@keyframes rotate {
  from {
    -webkit-transform: rotate(0deg) translate(-5px) rotate(0deg);
		-moz-transform: rotate(0deg) translate(-5px) rotate(0deg);
		-ms-transform: rotate(0deg) translate(-5px) rotate(0deg);
		-o-transform: rotate(0deg) translate(-5px) rotate(0deg);
		transform: rotate(0deg) translate(-5px) rotate(0deg);
		transition: 1s ease-in-out;
	}
	to {
    -webkit-transform: rotate(360deg) translate(-5px) rotate(-360deg);
		-moz-transform: rotate(360deg) translate(-5px) rotate(-360deg);
		-ms-transform: rotate(360deg) translate(-5px) rotate(-360deg);
		-o-transform: rotate(360deg) translate(-5px) rotate(-360deg);
		transform: rotate(360deg) translate(-5px) rotate(-360deg);
		transition: 1s ease-in-out;
	}
}
.bg-white {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  background: #fff;
}
/**/
.supportus-wrap table th {
  background: var(--light-black);
  color: #fff;
  text-transform: uppercase;
  text-align: center;
}
.supportus-wrap table {
  color: #000;
}
/**/
.contact-map-wrap iframe {
  border-radius: 5px;
}
.contact-info-form .contact-pad {
  padding: 30px 50px;
}
.contact-info-form h3 {
  margin: 0 0 20px;
  font-weight: 600;    
  color: #fff;
}
.contact-info-form .contact-form h3 {
  color: #000;
}
.contact-info-form .form-group {
  margin-bottom: 20px;
}
.contact-info-form .contact-details {
  background: #fff;
  padding: 55px 50px;/*30px 50px*/
  background: url(../images/contact-bg3.gif) top left repeat;/*rgba(0, 0, 0, 0.04) */
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
  z-index: 0;
}
.contact-info-form .contact-details:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #2b2601;
  content: "";
  z-index: -1;
  opacity: 0.7; /*0.85*/
}
.contact-info-form .contact-details .ci-box {
  margin-bottom: 20px;
  position: relative;
}
.contact-info-form .contact-details .ci-box i {
  width: 60px;
  font-size: 25px;
  height: 60px;
  line-height: 60px;
  border-radius: 10px 0 10px 0;
  background: #fff;
  color: #000;
  text-align: center;    
  color: var(--olive-green);
  margin-top: 5px;
}
.contact-info-form .detail {
  margin: 5px 0 0 20px;
}
.contact-info-form .contact-details .ci-box h4 {
  font-weight: 500;
  font-size: 22px;
  color: #fff;
  margin: 0 0 5px;
}
.contact-info-form .contact-details .ci-box p {
  color: #fff;
  margin-bottom: 0;
}
.contact-info-form .contact-details .ci-box p a {
  text-decoration: none;
  color: #fff;
}
.contact-info-form .contact-details .ci-box.mb-15 {
  margin-bottom: 15px;
}
.contact-info-form ul.social-list {
  padding-inline-start: 0px;
}
.contact-info-form .social-list li {
  display: inline-block;
}
.contact-info-form .social-list li a {
  margin-bottom: 2px;
  color: var(--white);
  width: 45px;
  height: 45px;
  line-height: 45px;
  display: inline-block;
  border-radius: 10px 0 10px 0;
  background: #fff;
  text-align: center;
}
.contact-info-form .social-list li a.facebook-bg {
  background: #3a5696;
}
.contact-info-form .social-list li a.twitter-bg {
  background: #029eec;
}
.contact-info-form .social-list li a.youtube-bg {
  background: #f70000;
}
.contact-info-form .col-pad2 {
  padding: 0;
}
.contact-info-form .row.g-0 {
  margin: 0
}
.contact-details h3.social_followus {
  margin-top: 40px;
  margin-bottom: 15px;
}

.enquiry-form {
  padding: 50px 0 70px;
}
.enquiry-form textarea.form-control {
  height: 130px;
} 
label {
  margin-bottom: .2rem;
}   
.enquiry-form .form-group a {
  color: var(--olive-green);
  text-decoration: underline;
}
.enquiry-form .ars-btn {
  padding: 10px 30px;
}
.thanks-sec {
  text-align: center;
  border-top: 1px solid #e1e1e1;
  padding: 55px 0;
}
.thanks-sec h2 {
  margin-top: 20px;
  margin-bottom: 15px;
  color: #211d21;
  font-size: 48px;
}
.thanks-sec h3 {
  font-size: 28px;
  line-height: 36px;
  margin-bottom: 20px;
  color: #000;
  font-weight: 500;
}
.single-client {
  border: 1px solid #ddd;
  margin-bottom: 20px;
  border-radius: 5px;
  padding: 5px;
  text-align: center;
}
.single-client img {
  border-radius: 5px;
}
.vm-section-wrap.pad-tb {
  padding: 50px 0 75px;
}
.vm-box-wrap, .contact-box-wrap {
  text-align: center;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
  background: #fff;
  padding: 20px 15px;
  border-radius: 5px;
}
.vm-icon {
  display: inline-block;
  background: var(--olive-green);
  color: #fff;
  width: 80px;
  height: 80px;
  line-height: 85px;
  font-size: 42px;
  margin-bottom: 15px;
  border-radius: 50%;
}
.vm-box-wrap:hover .vm-icon, .contact-box-wrap:hover .contact-icon {
  background: var(--dark-orange);
}
.vm-box-wrap:hover h3, .contact-box-wrap:hover h3 {
  color: var(--olive-green);
}
/**/
.accommodation_single_wrap {
  background: #fff;
  padding: 15px;
  box-shadow: 0px 0px 25px 0 rgba(0, 0, 0, 0.2);
  border-radius: 0;
  margin-bottom: 30px;
}
.accommodation_image img {
  border-radius: 0;
}
.accommodation_single_wrap h3 {
  margin-bottom: 0;
  text-align: center;
  margin-top: 12px;
}
.breadcrumb_wrap.volunteer_breadcrumb_wrap {
  background-position: top center !important;
}
/**/
.breadcrumb_wrap.history_breadcrumb_wrap {
  background-position: center bottom !important;
}
/*.arrs-history h4*/
.arrs-history p {
  font-weight: 400;
  /*font-size: 22px;*/
  /*margin: 0;*/
  position: relative;
  overflow: hidden;
  text-align: justify; /*center*/
  font-family: var(--ars_body-font);
}
.arrs-history .team-wrap-content p {
  text-align: center;
}
.arrs-history p > div {
  position: relative;
  margin: 0;
}
.arrs-history .split-parent {
  overflow: hidden;
}
.arrs-history .split-child {
  display: inline-block;
}
.arrs-history .text-heading {
  width: 100%;
  margin: 0 auto;
}
.arrs-history ul.ars-list > li {
  margin-bottom: 5px;
}
.encounters {
  background: var(--grey);
}
.encounters .img_hover {
  background: #fff;
  padding: 15px;
  box-shadow: 0px 0px 25px 0 rgba(0, 0, 0, 0.2);
  border-radius: 0;
  margin: 15px 0;
}
#leaves {
  position: relative;
  top: -100px;
  width: 100%;
  text-align: right;
}
#leaves i {
  display: inline-block;
  width: 200px;
  height: 150px;
  background: linear-gradient(to bottom right, #309900, #005600);
  transform: skew(20deg);
  border-radius: 5% 40% 70%;
  box-shadow: inset 0px 0px 1px #222;
  border: 1px solid #333;
  z-index: 1;
  -webkit-animation: falling 5s 0s infinite;
}
#leaves i:nth-of-type(2n) {
  -webkit-animation: falling2 5s 0s infinite;
}
#leaves i:nth-of-type(3n) {
  -webkit-animation: falling3 5s 0s infinite;
}
#leaves i:before {
  position: absolute;
  content: "";
  top: 117px;
  right: 9px;
  height: 27px;
  width: 32px;
  transform: rotate(49deg);
  border-radius: 0% 15% 15% 0%;
  border-top: 1px solid #222;
  border-bottom: 1px solid #222;
  border-left: 0px solid #222;
  border-right: 1px solid #222;
  background: linear-gradient(to right, rgba(0, 100, 0, 1), #005600);
  z-index: 1;
}
#leaves i:after {
  content: "";
  height: 125px;
  width: 10px;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0));
  display: block;
  transform: rotate(125deg);
  position: absolute;
  left: 85px;
  border-radius: 50%;
}
#leaves i:nth-of-type(n) {
  height: 23px;
  width: 30px;
}
#leaves i:nth-of-type(n):before {
  width: 7px;
  height: 5px;
  top: 17px;
  right: 1px;
}
#leaves i:nth-of-type(n):after {
  width: 2px;
  height: 17px;
  left: 12px;
  top: 0px;
}
#leaves i:nth-of-type(2n + 1) {
  height: 11px;
  width: 16px;
}
#leaves i:nth-of-type(2n + 1):before {
  width: 4px;
  height: 3px;
  top: 7px;
  right: 0px;
}
#leaves i:nth-of-type(2n + 1):after {
  width: 2px;
  height: 6px;
  left: 5px;
  top: 1px;
}
#leaves i:nth-of-type(3n + 2) {
  height: 17px;
  width: 23px;
}
#leaves i:nth-of-type(3n + 2):before {
  height: 4px;
  width: 4px;
  top: 12px;
  right: 1px;
}
#leaves i:nth-of-type(3n + 2):after {
  height: 10px;
  width: 2px;
  top: 1px;
  left: 8px;
}
#leaves i:nth-of-type(n) {
  -webkit-animation-delay: 1.9s;
}
#leaves i:nth-of-type(2n) {
  -webkit-animation-delay: 3.9s;
}
#leaves i:nth-of-type(3n) {
  -webkit-animation-delay: 2.3s;
}
#leaves i:nth-of-type(4n) {
  -webkit-animation-delay: 4.4s;
}
#leaves i:nth-of-type(5n) {
  -webkit-animation-delay: 5s;
}
#leaves i:nth-of-type(6n) {
  -webkit-animation-delay: 3.5s;
}
#leaves i:nth-of-type(7n) {
  -webkit-animation-delay: 2.8s;
}
#leaves i:nth-of-type(8n) {
  -webkit-animation-delay: 1.5s;
}
#leaves i:nth-of-type(9n) {
  -webkit-animation-delay: 3.3s;
}
#leaves i:nth-of-type(10n) {
  -webkit-animation-delay: 2.5s;
}
#leaves i:nth-of-type(11n) {
  -webkit-animation-delay: 1.2s;
}
#leaves i:nth-of-type(12n) {
  -webkit-animation-delay: 4.1s;
}
#leaves i:nth-of-type(13n) {
  -webkit-animation-delay: 1s;
}
#leaves i:nth-of-type(14n) {
  -webkit-animation-delay: 4.7s;
}
#leaves i:nth-of-type(15n) {
  -webkit-animation-delay: 3s;
}
#leaves i:nth-of-type(n) {
  background: linear-gradient(to bottom right, #309900, #005600);
}
#leaves i:nth-of-type(2n + 2) {
  background: linear-gradient(to bottom right, #5e9900, #2b5600);
}
#leaves i:nth-of-type(4n + 1) {
  background: linear-gradient(to bottom right, #990, #564500);
}
#leaves i:nth-of-type(n) {
  opacity: 0.7;
}
#leaves i:nth-of-type(3n + 1) {
  opacity: 0.5;
}
#leaves i:nth-of-type(3n + 2) {
  opacity: 0.3;
}
#leaves i:nth-of-type(n) {
  transform: rotate(180deg);
}
#leaves i:nth-of-type(n) {
  -webkit-animation-timing-function: ease-in-out;
}
@-webkit-keyframes falling {
  0% {
    -webkit-transform: translate3d(300, 0, 0) rotate(0deg);
  }

  100% {
    -webkit-transform: translate3d(-350px, 700px, 0) rotate(90deg);
    opacity: 0;
  }
}
@-webkit-keyframes falling3 {
  0% {
    -webkit-transform: translate3d(0, 0, 0) rotate(-20deg);
  }

  100% {
    -webkit-transform: translate3d(-230px, 640px, 0) rotate(-70deg);
    opacity: 0;
  }
}
@-webkit-keyframes falling2 {
  0% {
    -webkit-transform: translate3d(0, 0, 0) rotate(90deg);
  }

  100% {
    -webkit-transform: translate3d(-400px, 680px, 0) rotate(0deg);
    opacity: 0;
  }
}
#leaves-one {
  position: absolute;
  top: -50px;
  width: 100%;
  text-align: left;
}
#leaves-one i {
  display: inline-block;
  width: 200px;
  height: 150px;
  background: linear-gradient(to bottom right, #309900, #005600);
  transform: skew(20deg);
  border-radius: 5% 40% 70%;
  box-shadow: inset 0px 0px 1px #222;
  border: 1px solid #333;
  z-index: 1;
  -webkit-animation: falling4 5s 0s infinite;
}
#leaves-one i:nth-of-type(2n) {
  -webkit-animation: falling5 5s 0s infinite;
}
#leaves-one i:nth-of-type(3n) {
  -webkit-animation: falling6 5s 0s infinite;
}
#leaves-one i:before {
  position: absolute;
  content: "";
  top: 117px;
  left: 9px;
  height: 27px;
  width: 32px;
  transform: rotate(49deg);
  border-radius: 0% 15% 15% 0%;
  border-top: 1px solid #222;
  border-bottom: 1px solid #222;
  border-left: 0px solid #222;
  border-right: 1px solid #222;
  background: linear-gradient(to right, rgba(0, 100, 0, 1), #005600);
  z-index: 1;
}
#leaves-one i:after {
  content: "";
  height: 125px;
  width: 10px;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0));
  display: block;
  transform: rotate(125deg);
  position: absolute;
  right: 85px;
  border-radius: 50%;
}
#leaves-one i:nth-of-type(n) {
  height: 23px;
  width: 30px;
}
#leaves-one i:nth-of-type(n):before {
  width: 7px;
  height: 5px;
  top: 17px;
  right: 1px;
}
#leaves-one i:nth-of-type(n):after {
  width: 2px;
  height: 17px;
  left: 12px;
  top: 0px;
}
#leaves-one i:nth-of-type(2n + 1) {
  height: 11px;
  width: 16px;
}
#leaves-one i:nth-of-type(2n + 1):before {
  width: 4px;
  height: 3px;
  top: 7px;
  right: 0px;
}
#leaves-one i:nth-of-type(2n + 1):after {
  width: 2px;
  height: 6px;
  left: 5px;
  top: 1px;
}
#leaves-one i:nth-of-type(3n + 2) {
  height: 17px;
  width: 23px;
}
#leaves-one i:nth-of-type(3n + 2):before {
  height: 4px;
  width: 4px;
  top: 12px;
  right: 1px;
}
#leaves-one i:nth-of-type(3n + 2):after {
  height: 10px;
  width: 2px;
  top: 1px;
  left: 8px;
}
#leaves-one i:nth-of-type(n) {
  -webkit-animation-delay: 1.9s;
}
#leaves-one i:nth-of-type(2n) {
  -webkit-animation-delay: 3.9s;
}
#leaves-one i:nth-of-type(3n) {
  -webkit-animation-delay: 2.3s;
}
#leaves-one i:nth-of-type(4n) {
  -webkit-animation-delay: 4.4s;
}
#leaves-one i:nth-of-type(5n) {
  -webkit-animation-delay: 5s;
}
#leaves-one i:nth-of-type(6n) {
  -webkit-animation-delay: 3.5s;
}
#leaves-one i:nth-of-type(7n) {
  -webkit-animation-delay: 2.8s;
}
#leaves-one i:nth-of-type(8n) {
  -webkit-animation-delay: 1.5s;
}
#leaves-one i:nth-of-type(9n) {
  -webkit-animation-delay: 3.3s;
}
#leaves-one i:nth-of-type(10n) {
  -webkit-animation-delay: 2.5s;
}
#leaves-one i:nth-of-type(11n) {
  -webkit-animation-delay: 1.2s;
}
#leaves-one i:nth-of-type(12n) {
  -webkit-animation-delay: 4.1s;
}
#leaves-one i:nth-of-type(13n) {
  -webkit-animation-delay: 1s;
}
#leaves-one i:nth-of-type(14n) {
  -webkit-animation-delay: 4.7s;
}
#leaves-one i:nth-of-type(15n) {
  -webkit-animation-delay: 3s;
}
#leaves-one i:nth-of-type(n) {
  background: linear-gradient(to bottom right, #309900, #005600);
}
#leaves-one i:nth-of-type(2n + 2) {
  background: linear-gradient(to bottom right, #5e9900, #2b5600);
}
#leaves-one i:nth-of-type(4n + 1) {
  background: linear-gradient(to bottom right, #990, #564500);
}
#leaves-one i:nth-of-type(n) {
  opacity: 0.7;
}
#leaves i:nth-of-type(3n + 1) {
  opacity: 0.5;
}
#leaves-one i:nth-of-type(3n + 2) {
  opacity: 0.3;
}
#leaves-one i:nth-of-type(n) {
  transform: rotate(180deg);
}
#leaves-one i:nth-of-type(n) {
  -webkit-animation-timing-function: ease-in-out;
}
.arrs-history {
  position: relative;
  display: block;
  overflow: hidden;
}
@-webkit-keyframes falling4 {
  0% {
    -webkit-transform: translate3d(300, 0, 0) rotate(0deg);
  }
  100% {
    -webkit-transform: translate3d(350px, 700px, 0) rotate(90deg);
    opacity: 0;
  }
}
@-webkit-keyframes falling6 {
  0% {
    -webkit-transform: translate3d(0, 0, 0) rotate(-20deg);
  }
  100% {
    -webkit-transform: translate3d(230px, 640px, 0) rotate(-70deg);
    opacity: 0;
  }
}
@-webkit-keyframes falling5 {
  0% {
    -webkit-transform: translate3d(0, 0, 0) rotate(90deg);
  }

  100% {
    -webkit-transform: translate3d(400px, 680px, 0) rotate(0deg);
    opacity: 0;
  }
}
/**/
.team-wrap {
  text-align: center;    
  margin-bottom: 30px;
}
.team-wrap-image {
  margin-bottom: 15px;
  border-radius: 50%;
  cursor: pointer;
}
.team-wrap-image img {
  border-radius: 50%;
}
.team-wrap-content h3 {
  font-family: var(--ars_body-font);
  line-height: 1;
  text-transform: uppercase;
  color: var(--olive-green);
}
.team-wrap:hover .team-wrap-content h3 {
  color: var(--black);
}
.team-wrap-content p {
  margin-bottom: 0;
}
.team-wrap:hover .team-wrap-content p {
  color: var(--olive-green);
}
/**/
.volunteer-wrap p {
  text-align: justify;
}
.volunteer-image-wrap {
  background: #fff;
  padding: 15px;
  box-shadow: 0px 0px 25px 0 rgba(0, 0, 0, 0.2);
}
/**/
.inr-education-wrap .col-lg-push-6 {
  left: 50%;
}
.inr-education-wrap .col-lg-pull-6 {
  right: 50%;
}
.inr-education-img-wrap {
  border-radius: 50% 50% 5px 5px; 
}
.inr-education-content-wrap {
  padding: 65px 35px;
}
.inr-education-content-wrap h2 {
  text-transform: uppercase;    
  line-height: 1.3;    
  margin-bottom: 20px;
}
.inr-education-wrap .mt-50 {
  padding-top: 50px;
}
/**/
.collaborations-wrap.pad-tb {
  padding: 50px 0 20px;
}
.collaborations-wrap .collaborations_three_wrap {
  gap: 15px;/*30px*/    
  display: flex;
  flex-wrap: wrap;
}
.collaborations_single_wrap {
  text-align: center;
  background: #fff;
  padding: 15px;
  box-shadow: 0px 0px 25px 0 rgba(0, 0, 0, 0.2);
  margin-bottom: 30px;
  flex-direction: column;
  /* flex: 1; */
  display: inline-flex;
  align-items: center;
  justify-content: end;
  flex: 0 1 24%;
}
.collaborations_image.img_hover {
  margin-bottom: 15px;
}
/**/
.testimonial-wrap {
  position: relative;
}
.testimonialitem {
  position: relative;
  text-align: center;
  display: block;
}
.ticon {
  position: relative;
  width: 95px;
  height: 95px;
  background: var(--olive-green);
  border-radius: 50%;
  text-align: center;
  font-size: 38px;
  color: #fff;
  line-height: 95px;
  display: inline-block;
  margin: 0 0 30px;
}
.ticon i {
  line-height: 105px;
}
.testimonialitem p {
  font-size: 24px;
  line-height: 36px;/*40px*/
  color: #000;
  margin: 0 0 50px;
}
.testimonialitem .tsborder {
  width: 32px;
  height: 2px;
  background: #03030f;
  display: inline-block;
  margin: 0 0 38px;
}
.testimonialitem h5 {
  position: relative;
  font-size: 26px;
  line-height: 32px;
  font-weight: 600;
  margin: 0 0 2px;
}
.testimonialitem span {
  /* font-size: 16px; */
}
.testimonialitem p a {
  text-decoration: underline;
}
.testimonial-wrap .tw_shape_1 {
  left: 5%;
  bottom: 8%;
  animation: animo-x 9s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  position: absolute;
}
.testimonial-wrap .tw_shape_2 {
  right: 5%;
  top: 8%;
  animation: animo-y 8s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  position: absolute;
}
@keyframes animo-y {
  50% {
      animation-timing-function: cubic-bezier(0.55, 0, 0.2, 1);
      transform: translateY(30px);
  }
}
@keyframes animo-x {
  50% {
      animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
      transform: translateX(44px);
  }
}
.testimonial-carousel.owl-carousel .owl-nav {
  position: relative;
  /* bottom: 20px;
  left: 50%; */
  margin-top: 70px;
  display: block;
}
.testimonial-carousel.owl-carousel .owl-nav button.owl-next, .testimonial-carousel.owl-carousel .owl-nav button.owl-prev {
  position: absolute;
  bottom: 0;
}
.testimonial-carousel.owl-carousel .owl-nav button.owl-prev {
  left: 45%;
}
.testimonial-carousel.owl-carousel .owl-nav button.owl-next {
  right: 45%;
}
.testimonial-carousel.owl-carousel .owl-nav button.owl-next span, .testimonial-carousel.owl-carousel .owl-nav button.owl-prev span {
  width: 50px;
  height: 50px;
  color: #fff;
  font-size: 25px;
  opacity: 1;
  background: var(--black);
  line-height: 50px;
  border-radius: 50%;
}
.testimonial-carousel.owl-carousel .owl-nav button.owl-prev:focus, .testimonial-carousel.owl-carousel .owl-nav button.owl-next:focus {
  box-shadow: none;
  outline: 0;
  border: 0;
}
/**/
.projects-wrap .section-title.text-left {
  margin-bottom: 25px;
}
.projects-wrap ul.ars-list {
  margin-bottom: 1rem;
}
.sightings_at_arrs .inr-education-img-wrap {
  border-radius: 5px;
}
.sightings_at_arrs .inr-education-content-wrap {
  padding: 15px 0px;
}
.publications-wrap a {
  text-decoration: underline;
}
.publications-wrap strong {
  font-weight: 600;
}
.articles-wrap .accommodation_single_wrap h4 {
  margin-bottom: 0;
  text-align: center;
  margin-top: 12px;    
  font-size: 20px;
}
.articles-wrap .accommodation_single_wrap h4 a {
  color: var(--black);
}
.articles-wrap .accommodation_single_wrap h4 a:hover {
  color: var(--olive-green);
}
.articles-wrap .articles_video {
  margin-top: 20px;
}
.volunteer-do.encounters  {
    background: #fff;
}
.volunteer-contribution {
    background: var(--grey);
}
.volunteer-contribution ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px 10px;
}
.sightings_at_arrs p  {
   margin-bottom: 0.2em;
}
@media (max-width: 767px) {
    .volunteer-contribution ul {
        grid-template-columns: repeat(1, 1fr);
        gap: 0px;
    }
}
    