/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

@media screen and (min-width: 1400px) {
  .container {
    width: 1370px;
  }
}

@media screen and (min-width: 1600px) {
  .container {
    width: 1570px;
  }
}

@media screen and (min-width: 1900px) {
  .container {
    width: 1870px;
  }
}

body {
  font-family: "Poppins", Poppins;
  color: #444444;
  height: -webkit-fill-avilable;
}

h1 {
  font-size: 40px;
  font-weight: 600;
}

h2 {
  font-size: 32px;
  font-weight: 600;
}

h3 {
  font-size: 26px;
  font-weight: 600;
}

h4 {
  font-size: 22px;
}

h5 {
  font-size: 20px;
}

h6 {
  font-size: 18px;
}

p {
  font-size: 16px;
  color: #333;
  margin: 15px 0;
  text-align: initial;
}

span {
  color: #166734;
}

a {
  color: #166734;
  text-decoration: none;
}

a:hover {
  color: #83c674;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins";
}

/*--------------------------------------------------------------
  # Preloader
  --------------------------------------------------------------*/
/* #preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: #37517e;
  }
  
  #preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid #37517e;
    border-top-color: #fff;
    border-bottom-color: #fff;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    -webkit-animation: animate-preloader 1s linear infinite;
    animation: animate-preloader 1s linear infinite;
  } */

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
  # Back to top button
  --------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #166734;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #1667348f;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
  # Header
  --------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  background: #83c674;
  z-index: 997;
  padding: 15px 0;

}

#header .container {
  justify-content: space-between;
}

/* #header.header-scrolled,
#header.header-inner-pages {
  background: rgba(131, 198, 116, 0.911);
} */

#header .logo,
.footer .footer-content .footer-newsletter .logo {
  width: 200px;
  font-weight: bolder;
  font-size: 25px;
  color: #333;
  padding-top: 5px;
}

#header .logo a {
  color: #fff;
}

#header .logo img {
  max-height: 40px;
}

/*--------------------------------------------------------------
  # Navigation Menu
  --------------------------------------------------------------*/
/**
  * Desktop Navigation 
  */
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px 0 0px 40px;
  font-size: 15px;
  font-weight: 500;
  color: #333;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 20px;
  line-height: 0;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a, .navbar .dropdown ul a.active {
  color: #166734;
}


.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #dcfbd5;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
  font-weight: 500;
  color: #333;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #166734;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

/*--------------------------------------------------------------
  # social media links
  --------------------------------------------------------------*/

.navbar .social-links {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0px 0 0px 40px;
}

.social-links .icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  font-size: 20px;
  font-weight: bold;
  box-shadow: 0px 0px 8px 0px rgba(169, 231, 250, 0.5);
  margin-right: 10px;
  cursor: pointer;
  transition: transform 0.3s;
}


@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
  * Mobile Navigation 
  */
.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 1200px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }

  .navbar .social-links {
    display: none;
  }

  .navbar a i,
  .navbar a:focus i {
    margin-left: -10px;
  }

  .navbar-mobile .social-links {
    display: flex;
    position: relative;
    padding: 0px 0 0px 20px;
  }
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }

  .navbar .social-links {
    display: none;
  }

  .navbar a i,
  .navbar a:focus i {
    margin-left: -10px;
  }

  .navbar-mobile .social-links {
    display: flex;
    position: relative;
    padding: 0px 0 0px 20px;
  }
}

@media (max-width: 576px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }

  .navbar .social-links {
    display: none;
  }

  .navbar a i,
  .navbar a:focus i {
    margin-left: 0px;
  }

  .navbar-mobile .social-links {
    display: flex;
    position: relative;
    padding: 0px 0 0px 20px;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgb(40 90 41 / 90%);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 10px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile .social-links {
  display: flex;
  position: absolute;

}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #838893;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #166734;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
  color: #166734;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #166734;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
  # Hero Section
  --------------------------------------------------------------*/
#hero {
  width: 100%;
  margin-top: 72px;
}

#hero img {
  width: 100%;
}

#hero .container {
  /* padding-top: 72px; */
}

#hero h1,
#hero-1 h1 {
  margin: 0 0 10px 0;
  font-size: 80px;
  font-weight: 700;
  line-height: 56px;
  color: #166734;
  text-align: center;
  position: absolute;
  top: 20%;
  /* right: 20%; */
  text-shadow: -2px 2px 4px rgb(0 0 0 / 50%), 2px -2px 0 rgb(255 255 255 / 43%);
}

#hero .hero-1 {
  top: 45%;
  right: 0;
  left: 0;
}

#hero .hero-alp {
  top: 30%;
}

#hero .hero-blog {
  left: 20%;
}

#hero .hero-contact {
  top: 27%;
  left: 42%;
}

#hero span,
#hero-1 span {
  color: #166734;
  font-size: 40px;
  font-family: sans-serif;
}

#hero h2 {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 50px;
  font-size: 24px;
}

.hero-img img {
  height: 500px;
}

#hero-1 {
  width: 100%;
  height: 60vh;
  background: #03045e;
}

.hero-img-1 img {
  height: 400px;
}

@-webkit-keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}



/*--------------------------------------------------------------
  # Sections General
  --------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #f3f5fa;
}

.section-title {
  padding: 20px 20px 0 20px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  color: #545352;
  margin: 0 80px;
}


.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
  #About Devin
  --------------------------------------------------------------*/
.why-us .content {
  padding: 20px 20px 0 20px;
  text-align: justify;
}

.why-us .content-1 {
  padding: 20px 20px 0 0;
}

.why-us .content h3 {
  font-weight: 600;
  font-size: 26px;
  color: #333;
}

.why-us .content h4 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 5px;
}

.why-us .content p,
.post-content p {
  font-size: 16px;
  color: #848484;
}

.btn {
  position: absolute;
  top: 65%;
  left: 45%;
  color: white;
  font-size: 16px;
  padding: 12px 36px;
  cursor: pointer;
  border-radius: 30px;
  text-align: center;
  background-color: #166734;
  border: 1px solid #79c14f;
 
}
.btn a{
  color: #fff;
}
.btn:hover {
  background-color: #79c14f;
  border: 1px solid #166734;
  color: #fff;
}

.know-btn {
  top: 0%;
  left: 0%;
  transform: translate(0%, 0%);
  -ms-transform: translate(0%, 0%);
  position: relative;

}

.why-us .img {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}


#why-us .btn-get-started {
  text-align: center;
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px 11px 28px;
  border-radius: 15px;
  transition: 0.5s;
  margin: 10px 0 0 0;
  color: #fff;
  background: #03045e;
}

#why-us .btn-get-started:hover {
  background: #209dd8;
}

@media (max-width: 1024px) {

  .why-us .content,
  .why-us .accordion-list {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 992px) {
  .why-us .img {
    min-height: 400px;
  }

  .why-us .content {
    padding-top: 30px;
  }

  .why-us .accordion-list {
    padding-bottom: 30px;
  }
}

@media (max-width: 575px) {
  .why-us .img {
    min-height: 200px;
  }

  .why-us .content {
    padding: 0px 20px 0 20px;
    text-align: justify;
  }
}

.book-scroll a {
  font-size: 26px;
  font-weight: bold;
  color: #fd0d2e;
}

.book-scroll i {
  font-size: 45px;
  margin: 27px 20px;
  font-weight: bold;
  color: #166734;
  padding-top: 10px;
}

.wrapper {
  max-width: 100%;
  overflow: hidden;
}

.marquee {
  white-space: nowrap;
  overflow: hidden;
  display: inline-block;
  animation: marquee 20s linear infinite;
}

.marquee p {
  display: inline-block;
}

@keyframes marquee {
  0% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

/*--------------------------------------------------------------
  # Breadcrumbs
  --------------------------------------------------------------*/
.breadcrumbs {
  padding: 140px 0 60px 0;
  min-height: 30vh;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.breadcrumbs:before {
  content: "";
  /* background-color: rgba(0, 0, 0, 0.6); */
  position: absolute;
  inset: 0;
}

.breadcrumbs h2 {
  font-size: 56px;
  font-weight: 500;
  color: #fff;
  font-family: var(--font-secondary);
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: #00b4d8;
}

.breadcrumbs ol a {
  color: rgba(255, 255, 255, 0.8);
  transition: 0.3s;
}

.breadcrumbs ol a:hover {
  text-decoration: underline;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #fff;
  content: "/";
}


/* About Us */
.devin-img-1 img{
  width: auto;
  height: 100%;
  border-radius: 30px;
}
.devin-img img {
  width: auto;
  height: 300px;
  border-radius: 30px;
}

.section-title-1 h3 {
  font-weight: bold;
  text-align: center;
  font-size: 28px;
  color: #000;
}

.bg-section {
  background: #4c4c8c;
  border-radius: 30px;
  margin: 30px 0px 0 25px;
  width: 230px;
}

.why-us .image-size {
  width: 200px;
  height: 200px;
}

@media(max-width:577px) {
  .why-us .about-plans {
    display: flex;
    justify-content: space-around;
  }

  .why-us .section-title-1 {
    margin-top: 30px;
  }
}

@media(max-width: 992px) {
  .why-us .img {
    min-height: 200px;
  }

  .why-us .about-plans {
    display: flex;
    justify-content: space-around;
  }

  .why-us .section-title-1 {
    margin-top: 30px;
  }
}

/* About Us End */

.slider2 {
  background: white;
  /* box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.125);  */
  height: 200px;
  margin: 30px 30px 0;
  overflow: hidden;
  position: relative;
  width: auto;
}

.slider2::before,
.slider2::after {
  /* background: linear-gradient(to right, white 0%, rgba(255, 255, 255, 0) 100%); */
  content: "";
  height: 200px;
  position: absolute;
  width: 200px;
  z-index: 2;
}

.slider2::after {
  right: 0;
  top: 0;
  transform: rotateZ(180deg);
}

.slider2::before {
  left: 0;
  top: 0;
}

.slider2 .slide-track2 {
  -webkit-animation: scroll 20s linear infinite;
  animation: scroll 20s linear infinite;
  display: flex;
  width: fit-content;
}

.slider2 .slide2 {
  /* height: 100px; */
  width: 200px;
  display: flex;
}

.slide2 img {
  width: 100px;
  height: 100px;
}


@-webkit-keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    /* scroll only 50% */
    transform: translateX(-50%);
  }
}

/*text-h2-animation -starts-here*/

.animation {
  height: 75px;
  overflow: hidden;
  margin-left: 0px;
}

.animation>div>div {
  padding: 0rem 0.50rem;
  height: 5.81rem;
  margin-bottom: -0.19rem;
  display: inline-block;
}

.animation div:first-child {
  animation: text-animation 8s infinite;
}

.first div {
  color: #C30211;
}

.second div {
  color: #CD921E;
}

.third div {
  color: #fff;
}

@keyframes text-animation {
  0% {
    margin-top: 0;
  }

  10% {
    margin-top: 0;
  }

  20% {
    margin-top: -5.62rem;
  }

  30% {
    margin-top: -5.62rem;
  }

  40% {
    margin-top: -11.24rem;
  }

  60% {
    margin-top: -11.24rem;
  }

  70% {
    margin-top: -5.62rem;
  }

  80% {
    margin-top: -5.62rem;
  }

  90% {
    margin-top: 0;
  }

  100% {
    margin-top: 0;
  }
}

/*text-h2-animation -starts-here*/



/* Organized events*/

.about-section,
.itp-alps-sec,
.organized-events {
  display: flex;
  justify-content: space-evenly;
}

.about-section,
.organized-events {
  margin-top: 60px;
  display: flex;
  align-items: center;
}

.about-devin {
  flex-basis: 40%;
  margin-top: 30px;
  margin-left: 60px;
}

.about-img {
  flex-basis: 50%;
}

.about-img img {
  width: auto;
  height: 300px;
  border-radius: 50px;
}


p {
  font-size: 16px;
  color: #848484;
  margin: 20px 0;
  text-align: justify;
}
.book-heading{
  color:#166734;
  text-align: center;
}
#testimonials{
  padding: 60px 0;
}

.testimonials {
  /* padding: 80px 0; */
  background-position: center center;
  background-size: cover;
  position: relative;
}

.testimonials::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

section .testimonials {
  padding: 60px 0 0 0;
}

.testimonials .section-header {
  margin-bottom: 40px;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  text-align: center;
  color: #fff;
}

.about-Organized {
  flex-basis: 70%;
  /* margin-top: 30px; */
  margin-left: 30px;
}

.donate-pdsa {
  flex-basis: 50%;
  margin-top: 30px;
  margin-left: 30px;
}


.about-Organized p {
  margin: 30px;
  color: #848484;
}

#donate-now p{
    margin: 15px 0px;
}

p.video-paragraph{
    margin: 15px;
}

.testimonials .testimonial-item h2 {
  font-size: 26px;
  font-weight: 600;
  margin: 10px 0 5px 0;
  color: #166734;
}

.testimonials .swiper-pagination {
  margin-top: 40px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgba(22, 103, 52, 0.357);
  opacity: 1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #166734;
}



/* itp page */

.itpimg img {
  width: auto;
  height: 300px;
  border-radius: 30px;
}

/* itp ltp */
.itp-row,
.alp-row {
  display: flex;
  justify-content: space-between;
}

.img-itp {
  width: 860px;
  height: 400px;
  border-radius: 0 50px 50px 0;
}

.itpSec {
  margin-top: 53px;
  background: #dcfbd5;
  /* background: #83c674; */
  border-radius: 50px 0 0 50px;
  padding: 30px;
  text-align: center;
  height: 420px;
}

.itp-video {
  margin-top: 60px;
}

.alp-row .itp-video img {
  border-radius: 50px 0 0 50px;
}

.alp-row .itp-video video {
  border-radius: 50px 0 0 50px;
}

.itp-video img {
  width: 100%;
  height: 450px;
  border-radius: 0 50px 50px 0;
}

.itp-video iframe{
  border-radius: 0 50px 50px 0;
}

iframe {
  width: 100%;
  height: 420px;

}

.alp-row .itp-video iframe{
  border-radius: 50px 0 0 50px;
}
.alps-video img {
  border-radius: 50px 0 0 50px;
}

.alpSec {
  border-radius: 0 50px 50px 0;
}

.itp-text img {
  width: 50px;
}

.itp-text h3 {
  margin: 20px 0;
  color: #166734;
}


#donate-now .container {
  background-color: #dcfbd5;
  /* background-color: #83c674; */
  border-radius: 30px;
}

.donatenow img {
  width: auto;
  height: 350px;
  border-radius: 30px;
  margin: 40px 20px 50px;
}



/* footer section */
.footer .row {
  display: flex;
  /* flex-wrap: nowrap; */
  justify-content: space-evenly;
}

.footer {
  color: var(--color-white);
  font-size: 14px;
  background-color: #83c674;
}

.footer .footer-content {
  background: var(--color-secondary);
  padding: 60px 0 30px 0;
}

.footer .footer-content .footer-info {
  margin-bottom: 30px;
}

.footer .footer-content .footer-info h3 {
  font-size: 28px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
}

.footer .footer-content .footer-info h3 span {
  color: var(--color-primary);
}

.footer .footer-content .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: var(--font-primary);
  color: var(--color-white);
}

.footer .footer-content h4 {
  font-size: 24px;
  font-weight: 600;
  color: #605e5e;
  position: relative;
  padding-bottom: 12px;
  /* margin-bottom: 15px; */

}

.footer .footer-content h4::after {
  content: "";
  position: absolute;
  display: block;
  width: 20px;
  height: 2px;
  background: #83c674;
  bottom: 0;
  left: 0;
}

.footer .footer-content .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-content .footer-links ul i {
  padding-right: 2px;
  color: var(--color-white);
  font-size: 12px;
  line-height: 1;
}

.footer .footer-content .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-content .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-content .footer-links ul a {
  color: rgba(var(--color-white-rgb), 0.7);
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

.footer .footer-content .footer-links ul a:hover {
  color: var(--color-white);
}

.footer .footer-content .footer-newsletter .logo {}

.footer .footer-content .footer-newsletter p {
  font-size: 14px;
  color: #41464b;
}

.footer .footer-content a {
  color: #41464b;
}

.footer .footer-content .footer-newsletter form {
  background: var(--color-white);
  position: relative;
  border-radius: 4px;
}

.footer .footer-content .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px;
  width: calc(100% - 110px);
  border-radius: 50px;
}

.footer .footer-content .footer-newsletter form input[type=email]:focus-visible {
  outline: none;
}

.footer .footer-content .footer-newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: 20px;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #166734;
  color: #fff;
  transition: 0.3s;
  border-radius: 50px;
}

.footer .footer-content .footer-newsletter form input[type=submit]:hover {
  background: #83c674;
}

.footer .footer-legal {
  padding: 30px 0;
  background: var(--color-secondary-dark);
}

.footer .footer-legal .credits {
  padding-top: 4px;
  font-size: 13px;
  color: var(--color-white);
}

.footer .footer-legal .credits a {
  color: var(--color-primary-light);
}

.footer .footer-legal .social-links a {
  font-size: 18px;
  display: inline-block;
  /* background: rgba(var(--color-white-rgb), 0.1); */
  color: #166734;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

.footer .footer-legal .social-links a:hover {
  background: var(--color-primary);
  text-decoration: none;
}

.blogs-links {
  display: flex;
  margin-top: 15px;
}

.blog-link-text {
  margin: 0 20px;
}

.blog-link-text h6 {
  font-weight: bold;
  color: #166734;
}

.blog-link-text p,
.footer-info-sec p {
  margin: 0;
  font-size: 14px;
}

.social-links i,
.footer-info i {
  font-size: 30px;
  color: #166734;
  margin: 0 15px;
}
.footer-info i:hover{
  color: #dcfbd5;
}
.footer-info-sec {
  display: flex;
  align-items: center;
  margin: 40px 0;
}

.footer-info-sec a:hover {
  color: #fff;
}
.footer-legal{
  background-color: #dcfbd5;
}
.footer-legal .copyright{
  padding: 20px;
}


/*** 

====================================================================
	Services Section Four
====================================================================

***/

.service .icon img {
  width: 70px;
}


/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .page-title {
  color: #166734;
}

.contact .info-item {
  text-align: center;
}

.contact .info-item i {
  font-size: 48px;
  display: inline-block;
  margin-bottom: 10px;
  color: #166734;
}

.contact .info-item address,
.contact .info-item p {
  margin-bottom: 0;
}

.contact .info-item h3 {
  font-size: 16px;
  margin-bottom: 15px;
  font-weight: bold;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
  color: var(--color-primary);
}

.contact .info-item a:hover {
  color: #166734;
}

@media (min-width: 768px) {
  .contact .info-item-borders {
    border-left: 1px solid rgba(89, 109, 128, 0.2);
    border-right: 1px solid rgba(89, 109, 128, 0.2);
  }
}


@media (max-width: 640px) {
  .contact .php-email-form {
    padding: 20px;
  }
}

.contact .php-email-form .error-message {
  color: var(--color-white);
  background: var(--color-red);
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .sent-message {
  color: var(--color-white);
  background: var(--color-green);
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  background: var(--color-white);
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--color-green);
  border-top-color: var(--color-white);
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form .form-group {
  margin-bottom: 10px;
}

.contact .php-email-form .form-group :hover {
  border-color: #166734;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  padding: 10px 14px;
  border-radius: 0;
  box-shadow: none;
  font-size: 15px;
  border-radius: 6px;
}

.contact .php-email-form input::focus,
.contact .php-email-form textarea::focus {
  background-color: #166734;
}

.contact .php-email-form button[type=submit] {
  background: #166734;
  border: 0;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  cursor: pointer;
  border-radius: 6px;
}

.contact .php-email-form button[type=submit]:hover {
  background: rgba(#1667346e, 0.8);
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* itp */

.why-us .content b {
  color: rgb(17, 17, 17);
}

.itpsection h1, .itpsection h2,
.itpsection .content h2 {
  color: #166734;
}


/*--------------------------------------------------------------
# Blog
--------------------------------------------------------------*/
.blog {
  padding: 40px 0 20px 0;
  font-family: 'Petit Formal Script';
}

.blog .entry {
  padding: 50px;
  margin-bottom: 60px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .entry .entry-img {
  max-height: 440px;
  margin: -30px -30px 20px -30px;
  overflow: hidden;
}

.blog .entry .entry-title {
  font-size: 28px;
  font-weight: bold;
  padding: 0;
  margin: 0 0 20px 0;
}

.blog .entry .entry-title a {
  /* color: #111; */
  transition: 0.3s;
  font-family: 'Petit Formal Script';
}

.blog .entry .entry-title a:hover {
  color: #166734;
}

.blog .entry .entry-meta {
  margin-bottom: 15px;
  color: #777777;
}

.blog .entry .entry-meta ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.blog .entry .entry-meta ul li+li {
  padding-left: 20px;
}

.blog .entry .entry-meta i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
}

.blog .entry .entry-meta a {
  color: #1a1919;
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.blog .entry .entry-content p {
  line-height: 24px;
  color:#1a1919;
}

.blog .entry .entry-content .read-more {
  -moz-text-align-last: right;
  text-align-last: right;
}

.blog .entry .entry-content .read-more a {
  display: inline-block;
  background: #166734;
  color: #fff;
  padding: 6px 20px;
  transition: 0.3s;
  font-size: 14px;
  border-radius: 4px;
}

.blog .entry .entry-content .read-more a:hover {
  background: #83c674;
}

.blog .entry .entry-content h3 {
  font-size: 22px;
  margin-top: 30px;
  font-weight: bold;
  font-family: 'Petit Formal Script';
  color: #166734;
}

.blog .entry .entry-content blockquote {
  overflow: hidden;
  background-color: #fafafa;
  padding: 60px;
  position: relative;
  text-align: center;
  margin: 20px 0;
}

.blog .entry .entry-content blockquote p {
  color: #166734;
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
}

.blog .entry .entry-content blockquote::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: #83c674;;
  margin-top: 20px;
  margin-bottom: 20px;
}

.blog .entry .entry-footer {
  padding-top: 10px;
  border-top: 1px solid #e6e6e6;
}

.blog .entry .entry-footer i {
  color: #5e5e5e;
  display: inline;
}

.blog .entry .entry-footer a {
  color: #1e1e1e;
  transition: 0.3s;
}

.blog .entry .entry-footer a:hover {
  color: #1bbd36;
}

.blog .entry .entry-footer .cats {
  list-style: none;
  display: inline;
  padding: 0 20px 0 0;
  font-size: 14px;
}

.blog .entry .entry-footer .cats li {
  display: inline-block;
}

.blog .entry .entry-footer .tags {
  list-style: none;
  display: inline;
  padding: 0;
  font-size: 14px;
}

.blog .entry .entry-footer .tags li {
  display: inline-block;
}

.blog .entry .entry-footer .tags li+li::before {
  padding-right: 6px;
  color: #6c757d;
  content: ",";
}

.blog .entry .entry-footer .share {
  font-size: 16px;
}

.blog .entry .entry-footer .share i {
  padding-left: 5px;
}

.blog .entry-single {
  margin-bottom: 30px;
}

.blog .blog-author {
  padding: 20px;
  margin-bottom: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .blog-author img {
  width: 120px;
  margin-right: 20px;
}

.blog .blog-author h4 {
  font-weight: 600;
  font-size: 22px;
  margin-bottom: 0px;
  padding: 0;
  color: #111;
}

.blog .blog-author .social-links {
  margin: 0 10px 10px 0;
}

.blog .blog-author .social-links a {
  color: rgba(17, 17, 17, 0.5);
  margin-right: 5px;
}

.blog .blog-author p {
  font-style: italic;
  color: #bfb9b6;
}
.blog .blog-pagination {
  color: #444444;
}

.blog .blog-pagination ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

.blog .blog-pagination li {
  margin: 0 5px;
  transition: 0.3s;
}

.blog .blog-pagination li a {
  color: #111;
  padding: 7px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog .blog-pagination li.active,
.blog .blog-pagination li:hover {
  background: #166734;
}

.blog .blog-pagination li.active a,
.blog .blog-pagination li:hover a {
  color: #fff;
}


/* Responsive */


@media only screen and (min-device-width : 320px) and (max-device-width : 480px) {

  h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 26px;
    font-weight: 600;
  }

  h3 {
    font-size: 22px;
    font-weight: 600;
  }

  h4 {
    font-size: 18px;
  }

  h5 {
    font-size: 16px;
  }

  h6 {
    font-size: 14px;
  }

  p,
  .why-us .content p {
    font-size: 14px;
    color: #848484;
    margin: 15px 0;
    /* text-align: initial; */
  }

  #hero {
    width: 100%;
    height: 15vh;
    margin-top: 72px;
  }

  #hero .img-fluid {
    max-width: 100%;
    height: 100%;
  }

  #hero .hero-1 {
    top: 17%;
    right: 0;
    left: 0;
    line-height: 18px;
    font-size: 20px;
  }

  #hero .hero-1 span {
    color: #166734;
    font-size: 12px;
    font-family: sans-serif;
  }

  #hero .hero-blog {
    top: 13%;
    left: 70px;
    line-height: 18px;
    font-size: 20px;
  }

  #hero .hero-blog span {
    color: #166734;
    font-size: 12px;
    font-family: sans-serif;
  }

  #hero .hero-alp {
    top: 13%;
  }

  #hero .hero-contact {
    top: 14%;
    /* right: 0; */
    left: 42%;
    line-height: 18px;
    font-size: 20px;
  }

  section {
    padding: 30px 0;
    overflow: hidden;
  }

  .devin-img-1 img {
    width: auto;
    height: 200px;
  }

  .devin-img img {
    width: auto;
    height: 200px;
  }

  .about-section,
  .itpsection .row,
  #donate-now .row {
    display: flex;
    flex-direction: column;
  }

  .about-img img {
    width: 250px;
    height: auto;
    border-radius: 20px;
  }

  .about-Organized p {
    margin: 0;
  }

  .about-Organized {
    flex-basis: 70%;
    margin: 30px 10px 0;
  }

  .book-scroll a {
    font-size: 16px;
    font-weight: bold;
    color: #C30211;
  }

  .book-scroll i {
    font-size: 30px;
    margin: 27px 20px;
    font-weight: bold;
    color: #166734;
    padding-top: 10px;
  }

  .donatenow img {
    width: 100%;
    height: 200px;
    border-radius: 15px;
    margin: 40px 0 50px;
    text-align: center;
  }


  .itp-row,
  .alp-row {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    margin: 30px 0;
  }

  .itpSec {
    margin-top: 0;
    background: #dcfbd5;
    border-radius: 50px 50px 0 0;
    padding: 12px;
    text-align: center;
    height: auto;
  }

  .itp-video iframe {
    width: 100%;
    height: 200px;
    border-radius: 0 0 50px 50px;
  }

  .itp-video {
    margin-top: 0;
  }

  .itp-video {
    order: 2;
  }

  .alp-row .itp-video iframe {
    border-radius: 0 0 50px 50px;
  }

 .autism-img img{
  width: 100%;
 }

  .service .icon img {
    width: 50px;
  }

  .donatenowtext {
    margin: 30px 0;
  }

  .donatenow-btn{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
  }
  .itpimg img {
    width: 100%;
    height: auto;
    border-radius: 30px;
  }
  .footer .footer-content h4 {
    text-align: center;
  }
  .footer-info-sec {
    display: flex;
    margin: 40px 0;
   align-items: center;
}
.social-links {
  text-align: center;
}
.section-title h2{
  margin: 0;
}
#testimonials {
  padding: 30px 0;
}
.blog {
  padding: 80px 0 20px 0;
  font-family: 'Petit Formal Script';
}
.blog .entry {
  padding: 40px 40px 40px 55px;
  margin-bottom: 60px;
  box-shadow: 0 4px 16px rgb(0 0 0 / 10%);
}
}

@media only screen and (min-device-width : 481px) and (max-device-width : 767px) {
  #hero {
    width: 100%;
    height: 15vh;
    margin-top: 72px;
  }

  #hero .hero-1 {
    top: 17%;
    right: 0;
    left: 0;
    line-height: 18px;
    font-size: 20px;
  }

  #hero .hero-1 span {
    color: #166734;
    font-size: 12px;
    font-family: sans-serif;
  }

  #hero .hero-blog {
    top: 11%;
    left: 100px;
    line-height: 18px;
    font-size: 20px;
  }

  #hero .hero-blog span {
    color: #166734;
    font-size: 12px;
    font-family: sans-serif;
  }

  #hero .hero-alp {
    top: 13%;
  }

  #hero .hero-contact {
    top: 14%;
    /* right: 0; */
    left: 42%;
    line-height: 18px;
    font-size: 20px;
  }

  .devin-img img {
    width: auto;
    height: 300px;
  }

  .about-section,
  .ilp-alp .row,
  #donate-now .row,
  .itpsection .row {
    display: flex;
    flex-direction: column;
  }

  .about-img img {
    width: 450px;
    height: 400px;
    border-radius: 50px;
  }

  .about-Organized p {
    margin: 0;
  }

  .book-scroll a {
    font-size: 18px;
    font-weight: bold;
    color: #C30211;
  }

  .book-scroll i {
    font-size: 35px;
    margin: 27px 20px;
    font-weight: bold;
    color: #166734;
    padding-top: 10px;
  }

  .donatenow img {
    width: 100%;
    height: 310px;
    border-radius: 30px;
    margin: 40px 0 50px;
  }

  .itp-row,
  .alp-row {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    margin: 30px 0;
  }

  .itpSec {
    margin-top: 0;
    background: #dcfbd5;
    border-radius: 50px 50px 0 0;
    padding: 30px;
    text-align: center;
    height: 400px;
  }

  .itp-video iframe {
    width: 100%;
    height: 240px;
    border-radius: 0 0 50px 50px;
  }

  .itp-video {
    margin-top: 0;

  }

  .itp-video {
    order: 2;
  }

  .alp-row .itp-video iframe {
    border-radius: 0 0 50px 50px;
  }

  .service .icon img {
    width: 70px;
  }

  .service-iconbox .icon-text {
    margin: 0 3rem !important;
  }

  .donatenowtext {
    margin: 30px 0;
  }

  .itpimg img {
    width: 100%;
    height: 350px;
    border-radius: 30px;
  }
  .section-title h2{
    margin: 0;
  }
  #testimonials {
    padding: 30px 0;
  }
  .blog .entry {
    padding: 50px;
    margin-bottom: 60px;
    box-shadow: 0 4px 16px rgb(0 0 0 / 10%);
}
.autism-img img{
  width: 100%;
 }
}

/* iPads (portrait and landscape) ----------- */
@media only screen and (min-device-width : 768px) and (max-device-width : 1023px) {
  #hero {
    width: 100%;
    height: 15vh;
    margin: 72px 0;
  }

  #hero .hero-1 {
    top: 20%;
    right: 0;
    left: 0;
    line-height: 30px;
    font-size: 40px;
  }

  #hero .hero-1 span {
    color: #166734;
    font-size: 20px;
    font-family: sans-serif;
  }

  #hero .hero-blog {
    top: 17%;
    left: 170px;
    line-height: 25px;
    font-size: 40px;
  }

  #hero .hero-blog span {
    color: #166734;
    font-size: 20px;
    font-family: sans-serif;
  }

  #hero .hero-alp {
    top: 13%;
  }

  #hero .hero-contact {
    top: 14%;
    /* right: 0; */
    left: 42%;
    line-height: 18px;
    font-size: 40px;
  }

  .itp-row,
  .alp-row {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    margin: 30px 0;
  }

  .itpSec {
    margin-top: 0;
    background: #dcfbd5;
    border-radius: 50px 50px 0 0;
    padding: 30px;
    text-align: center;
    height: 350px;
  }

  .itp-video video {
    width: 100%;
    height: 240px;
    border-radius: 0 0 50px 50px;
  }

  .itp-video {
    margin-top: 0;

  }

  .itp-video {
    order: 2;
  }

  .alp-row .itp-video video {
    border-radius: 50px 50px 0 0;
  }

  .service .icon img {
    width: 70px;
  }

  .service-iconbox .icon-text {
    margin: 0 3rem !important;
  }

  .donatenowtext {
    margin: 30px 0;
  }

  .itpimg img {
    width: 100%;
    height: 350px;
    border-radius: 30px;
  }

  section {
    padding: 30px 0;
    overflow: hidden;
  }

  .aboutdevin {
    display: flex;
    align-items: center;
    flex-direction: column;
  }

  .devin-img img {
    width: 450px;
    height: 300px;
  }

  .about-section,
  .itpsection .row {
    display: flex;
    flex-direction: column;
  }

  .about-img img {
    width: 450px;
    height: 450px;
    border-radius: 50px;
  }

  .about-Organized p {
    margin: 0;
  }

  .donatenow img {
    width: auto;
    height: 350px;
    border-radius: 30px;
    margin: 40px 80px 50px;
  }

  .itp-video img {
    width: 400px;
    height: 570px;
    border-radius: 0 50px 50px 0;
  }


  .service .row {
    display: flex;
    flex-direction: column;
  }

  .service-iconbox {
    margin-top: 2.5rem !important;
  }

  .donatenowtext {
    margin: 30px;
  }

  .aboutdevin .row {
    flex-direction: column;
  }

 
  .treat-img img {
    margin-top: 20px;
  }

  .itp-video iframe {
    width: 100%;
    height: 240px;
    border-radius: 0 0 50px 50px;
}

.alp-row .itp-video iframe {
  border-radius: 0 0 50px 50px;
}

.blog .entry {
  padding: 70px;
  margin-bottom: 60px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
.blog {
  padding: 80px 0 20px 0;
  font-family: 'Petit Formal Script';
}
.autism-img img{
  width: 100%;
 }
}

/* laptops */
@media only screen and (min-device-width : 1024px) and (max-device-width : 1600px) {
  #hero {
    margin-top: 72px;
  }

  #hero .hero-1 {
    top: 35%;
    right: 0;
    left: 0;
    line-height: 35px;
    font-size: 60px;
  }

  #hero .hero-1 span {
    color: #166734;
    font-size: 32px;
    font-family: sans-serif;
  }

  #hero .hero-blog {
    top: 15%;
    left: 18%;
    line-height: 35px;
    font-size: 60px;
  }

  #hero .itp-banner {
    top: 24%;
    left: 15%;
    line-height: 40px;
    font-size: 60px;
  }

  #hero .hero-blog span {
    color: #166734;
    font-size: 32px;
    font-family: sans-serif;
  }

  #hero .hero-alp {
    top: 25%;
  }

  #hero .hero-contact {
    top: 27%;
    /* right: 0; */
    left: 42%;
    line-height: 18px;
    font-size: 60px;
  }

  .devin-img img {
    width: 450px;
    height: 400px;
    border-radius: 30px;
  }

  .itp-video img {
    width: 100%;
    height: 400px;
    border-radius: 0 50px 50px 0;
  }

  .about-img img {
    width: 400px;
    height: 350px;
    border-radius: 50px;
  }

  .about-Organized {
    flex-basis: 50%;
    margin: 0;
  }

  .donatenowtext {
    margin: 30px 0;
  }

  .donatenow img {
    width: 100%;
    height: 350px;
    border-radius: 30px;
    margin: 40px 20px 50px;
  }

  .itpimg img {
    width: auto;
    height: 280px;
    border-radius: 30px;
  }

  .itp-video img {
    width: 100%;
    height: 520px;
    border-radius: 0 50px 50px 0;
  }

  .itpSec {
    margin-top: 53px;
    background: #dcfbd5;
    border-radius: 50px 0 0 50px;
    padding: 30px;
    text-align: center;
    height: 420px;
  }

  .alpSec {
    border-radius: 0 50px 50px 0;
  }

  .button-donate {
    top: 80%;
    left: 34%;
  }

  .autism-img img{
    width: 100%;
   }

}





.dropdown {
  display: inline-block;
  position: relative;
}

.navbar a  .button-donate a{
  padding: 0;
}


button{
  border: none;
  background-color: #166734;
}

.button-donate1  {
  padding: 0;
}

button:hover {
  background-color: #79c14f;
  color: #fff;
}

.button-donate {
  top: 72%;
    left: 34%;
}


/*--------------------------------------------------------------
# Bloggers
--------------------------------------------------------------*/
.team .member {
  text-align: center;
  margin-bottom: 20px;
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
  padding: 30px 20px;
  background: #fff;
}

.team .member img {
  max-width: 70%;
  border-radius: 5%;
  margin: 0 0 20px 0;
}

.team .member h4 {
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 18px;
}

.team .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
}

.team .member p {
  /* padding-top: 10px; */
  font-size: 14px;
  font-style: italic;
  color: #aaaaaa;
}

.team .member .social {
  margin-top: 15px;
}

.team .member .social a {
  color: #919191;
  transition: 0.3s;
}

.team .member .social a:hover {
  color: #e96b56;
}

.team .member .social i {
  font-size: 18px;
  margin: 0 2px;
}

.title {
  color: #166734;
}

div.aic {
  align-items: center;
}

div.description {
  text-align: justify;
  color: #848484;
}


.img-fluid{
    max-width: 100% !important;
    height: auto !important;
}
