@import url("https://fonts.googleapis.com/css2?family=Barlow:wght@500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Teko:wght@300;400;500;600;700&display=swap");
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.css");
@import url("bootstrap.min.css");
@import url("slick.css");
@import url("slick-theme.css");
@import url("glightbox.min.css");
@import url("aos.css");
/*-- font style --*/
/*-- media query --*/
* {
  outline: none;
}

html,
body {
    margin: 0;
    padding: 0;
  background-image: url(../images/section/charity-bg.jpg);
    background-size: cover; /* Adjust the size to fit the screen */
    background-repeat: no-repeat; /* Prevent image repetition */
    background-attachment: fixed; /* Keep the background fixed while scrolling */
  
}

ul {
  list-style-type: none;
}

a {
  color: #ffaf00;
}

a:hover,
a:active,
a:focus {
  transition: all ease-in-out 0.3s;
  color: #1f4941;
}

:focus-visible {
  outline: none;
}

button:focus:not(:focus-visible) {
  box-shadow: 0 0 1.375rem rgba(0, 0, 0, 0.1);
}

a,
a:hover {
  text-decoration: none;
}

a {
  transition: all 0.3s ease 0s;
}

.custum-input {
  background-color: transparent;
  border-radius: 0;
  border: 0;
  border-bottom: 1px solid #ffffff !important;
  padding-left: 0;
}
.custum-input:focus {
  background-color: transparent;
}

::-webkit-input-placeholder {
  color: #ffaf00 !important;
}

:focus::-webkit-input-placeholder {
  opacity: 0.5;
  color: #1f4941;
}

.btn.disabled,
.btn:disabled,
fieldset:disabled .btn {
  color: #ffffff;
  background-color: #ffaf00;
  border-color: transparent;
  opacity: 0.5;
}

.btn-wrapper {
  height: auto;
}
.btn-wrapper .menu-toggle {
  min-height: 40px;
}
.btn-wrapper .menu-toggle .icon-bars {
  display: block;
  width: 2rem;
  height: 2px;
  background-color: #ffffff;
  position: relative;
  transition: transform 0.3s ease-in, background-color 0.2s ease;
}
.btn-wrapper .menu-toggle .icon-bars::before, .btn-wrapper .menu-toggle .icon-bars::after {
  display: block;
  width: 2rem;
  height: 2px;
  background-color: #ffffff;
  content: "";
  position: absolute;
  left: 0;
  transition: top 0.3s 0.3s ease-in, transform 0.3s ease-in, background-color 0.2s ease;
}
.btn-wrapper .menu-toggle .icon-bars::before {
  top: 0.5em;
}
.btn-wrapper .menu-toggle .icon-bars::after {
  top: -0.5em;
}
.btn-wrapper .menu-toggle:active .icon-bars {
  transition: transform 0.3s 0.2s ease-in, background-color 0.2s ease;
  transform: rotate3d(0, 0, 1, 135deg);
}
.btn-wrapper .menu-toggle:active .icon-bars::before {
  transition: top 0.2s ease-in, transform 0.3s 0.2s ease-in, background-color 0.2s ease;
  transform: rotate3d(0, 0, 1, 90deg);
  top: 0;
}
.btn-wrapper .menu-toggle:active .icon-bars::after {
  transition: top 0.2s ease-in, transform 0.3s 0.2s ease-in, background-color 0.2s ease;
  transform: rotate3d(0, 0, 1, 90deg);
  top: 0;
}

.menu--is-revealed .menu-toggle .icon-bars {
  transition: transform 0.3s 0.2s ease-in, background-color 0.2s ease;
  transform: rotate3d(0, 0, 1, 135deg);
}
.menu--is-revealed .menu-toggle .icon-bars::before {
  transition: top 0.2s ease-in, transform 0.3s 0.2s ease-in, background-color 0.2s ease;
  transform: rotate3d(0, 0, 1, 90deg);
  top: 0;
}
.menu--is-revealed .menu-toggle .icon-bars::after {
  transition: top 0.2s ease-in, transform 0.3s 0.2s ease-in, background-color 0.2s ease;
  transform: rotate3d(0, 0, 1, 90deg);
  top: 0;
}

html {
  font-size: 1rem;
}

body {
  font-family: "Barlow", sans-serif;
  color:#fff;
}

.heading {
  font-family: "Teko", sans-serif;
  font-weight: 700;
}

.font-small {
  font-size: 0.875rem;
}

.font-extra-small {
  font-size: 0.75rem;
}

/*-- background color css --*/
.theme-bg-primary {
  background-color: #1f4941;
}

.theme-bg-secondary {
  background-color: #ffaf00;
}

.theme-bg-accent-one {
  background-color: #000000;
}

.theme-bg-accent-two {
  background-color: #222222;
}

/*-- text css --*/
.theme-text-white {
  color: #ffffff;
  margin-top:130px;
}

.theme-text-primary {
  color: #1f4941;
}

.theme-text-secondary {
  color: #ffaf00;
}

.theme-text-accent-one {
  color: #000000;
}

.theme-text-accent-two {
  color: #fff;
}

/*-- shadow css --*/
.theme-box-shadow {
  box-shadow: 0 0 1.375rem rgba(0, 0, 0, 0.1);
}

.theme-text-shadow {
  text-shadow: 0 0 1.375rem rgba(0, 0, 0, 0.1);
}

/*-- custom button css*/
.custom-btn-primary {
  background-color: #1f4941;
  color: #ffffff;
  min-width: 140px;
  min-height: 50px;
  border: 0;
  border-radius: 0rem;
}

.custom-btn-secondary {
  background-color: #ffaf00;
  color: #ffffff;
  min-width: 50px;
  min-height: 50px;
  border: 0;
  border-radius: 0rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.custom-btn-secondary:hover {
  background-color: #1f4941;
  color: #ffffff;
}

.custom-link {
  background-color: #222222;
  color: #1f4941;
  min-width: 120px;
  min-height: 40px;
}
.custom-link:hover {
  background-color: transparent;
  color: #ffaf00;
  border: 2px solid #1f4941;
}

.theme-border-radius {
  border-radius: 0rem;
}

.theme-border {
  border: 1px solid #1f4941;
}

/*-- primary button effect css --*/
.primary-btn-effect {
  position: relative;
  cursor: hand;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  z-index: 10;
}
.primary-btn-effect:hover {
  color: #ffffff;
}
.primary-btn-effect:hover::before {
  opacity: 1;
  width: 116%;
}
.primary-btn-effect:hover::after {
  opacity: 1;
  width: 120%;
}
.primary-btn-effect::before {
  content: "";
  width: 0%;
  height: 100%;
  display: block;
  background: #ffaf00;
  position: absolute;
  transform: skewX(-20deg);
  opacity: 1;
  left: -10%;
  top: 0;
  z-index: -12;
  transition: all 0.7s cubic-bezier(0.77, 0, 0.175, 1);
}
.primary-btn-effect::after {
  content: "";
  width: 0%;
  height: 100%;
  display: block;
  background: #1f4941;
  position: absolute;
  transform: skewX(-20deg);
  left: -10%;
  opacity: 0;
  top: 0;
  z-index: -15;
  transition: all 0.4s cubic-bezier(0.2, 0.95, 0.57, 0.99);
  box-shadow: 2px 0px 14px rgba(0, 0, 0, 0.6);
}

/*-- secondary button css --*/
.icon-wrapper {
  box-shadow: 0 0 0px 0px rgba(255, 175, 0, 0.5);
  cursor: pointer;
  transition: 250ms color;
  animation-name: wave;
  animation-duration: 1s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
@keyframes wave {
  0% {
    box-shadow: 0 0 0px 0px rgba(255, 175, 0, 0.5);
  }
  100% {
    box-shadow: 0 0 0px 15px rgba(255, 175, 0, 0);
  }
}

/*-- image hover effect --*/
.img-effect img {
  transition: all 0.4s ease-in-out;
}
.img-effect:hover img {
  transform: scale(1.5);
}

.slick-arrow {
  background-color: rgba(255, 255, 255, 0);
  box-shadow: 0 0 1.375rem rgba(0, 0, 0, 0.1);
  background-repeat: no-repeat;
  background-position: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #1f4941;
  transition: all 0.2s ease-out;
  z-index: 1;
}
.slick-arrow i {
  color: #1f4941;
}

.slick-arrow.slick-next {
  right: 20px;
}
.slick-arrow.slick-next:before {
  content: "\f285";
  font-family: "bootstrap-icons";
}
.slick-arrow.slick-prev {
  left: 20px;
}
.slick-arrow.slick-prev:before {
  content: "\f284";
  font-family: "bootstrap-icons";
}
.slick-arrow:hover {
  background-color: #1f4941;
}
.slick-arrow:hover i {
  color: #ffffff;
}

/*-- highlight para css --*/
.para-highlight {
  position: relative;
  font-weight: 600;
}
.para-highlight::before {
  content: "";
  display: inline-block;
  width: 50px;
  height: 1px;
  background-color: #1f4941;
  margin-bottom: 5px;
  margin-right: 15px;
}

/* pulseBig */
@keyframes pulseBig {
  0% {
    box-shadow: 0 0 0 0 #ffffff;
  }
  50% {
    box-shadow: 0 0 0 20px rgba(0, 0, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }
}
/*-- card effect --*/
.cardeffect {
  box-shadow: 0 0 1.375rem rgba(0, 0, 0, 0.1);
  transition: all 500ms ease-in-out;
  text-align: center;
  background-color: #20413b;
}
.cardeffect:hover {
  transform: translateY(-10px);
  cursor: pointer;
  transition: all 800ms cubic-bezier(0.19, 1, 0.22, 1);
}

.z-in-2 {
  z-index: 2;
}

.py-10 {
  padding-top: -10rem;
  padding-bottom: -10rem;
}
@media screen and (max-width: 575px) {
  .py-10 {
    padding-top: rem;
    padding-bottom: rem;
  }
}

.set-bg {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
}

.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000000;  
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column; /* Stack logo and text vertically */
}

.loading .letter {
  text-align: center;
  line-height: normal;
  font-family: "Teko", sans-serif;
  font-weight: 700;
}

.loading .letter span {
  display: inline-block;
  margin: 0 5px;
  color: #ffffff;
  font-size: 5rem;
  filter: blur(2px);
  animation: blur-text 1.5s infinite linear alternate;
}

@keyframes blur-text {
  0% {
    filter: blur(2px);
  }
  50% {
    filter: blur(0px);
  }
  100% {
    filter: blur(4px);
  }
}

.page-loader {
  width: 100%;
  height: 100%;
  position: fixed;
  background: #ffffff;
  z-index: 9999;
}

.page-loader .spinner {
  width: 5rem;
  height: 5rem;
  margin: 0 auto;
  background-color: #1f4941;
  border-radius: 100%;
  animation: sk-scaleout 1s infinite ease-in-out;
}

@keyframes sk-scaleout {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}

/* Make the loader responsive on smaller screens */
@media (max-width: 768px) {
  .loading .letter span {
    font-size: 3rem; /* Reduce the font size on smaller screens */
  }

  .loading .logo img {
    width: 100px; /* Adjust the image size for mobile */
  }
}

@media (max-width: 480px) {
  .loading .letter span {
    font-size: 2rem; /* Further reduce font size for very small screens */
  }

  .loading .logo img {
    width: 80px; /* Further reduce image size for very small screens */
  }


}

.info-top {
  background-color: #000000;
  position: absolute;
  width: 100%;
  z-index: 1;
}
.info-top .btn {
  text-decoration: none;
}
.info-top .btn i {
  color: #ffffff;
}

.header .navbar-nav .nav-item .nav-link {
  color: #ffffff;
  padding: 1.2rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
}
@media screen and (max-width: 992px) {
  .header .navbar-nav .nav-item .nav-link {
    padding: 0.8rem 0rem;
    border-bottom: 1px solid #9e9a75;
  }
}
.header .navbar-nav .nav-item .active:after {
  content: "";
  width: 1.25rem;
  height: 6px;
  background: #1f4941;
  position: absolute;
  bottom: 0;
  display: block;
  left: 33%;
  border-radius: 3rem;
}
.header .navbar-nav .nav-item .dropdown-menu {
  border-radius: 0;
  border: 0;
  padding: 0;
  box-shadow: 0 0 1.375rem rgba(0, 0, 0, 0.1);
}
.header .navbar-nav .nav-item .dropdown-menu .dropdown-item {
  color: #000000;
  padding: 0.8rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
}
.header .navbar-nav .nav-item .dropdown-menu .dropdown-item:hover {
  background-color: #1f4941;
  color: #ffffff;
}
.header.fixed-top {
  animation-name: fadeInDown;
  animation-duration: 1s;
  animation-fill-mode: both;
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.social a,
.link a {
  color: #ffffff;
  font-size: 2rem;
}
.social a:hover,
.link a:hover {
  color: #1f4941;
}

.nav-effect {
  position: relative;
}
.nav-effect::before {
  content: "";
  position: absolute;
  bottom: 0%;
  left: 33%;
  width: 1.25rem;
  height: 6px;
  background: #1f4941;
  transform-origin: center center;
  transform: scale(0, 1);
  transition: transform 0.4s cubic-bezier(1, 0, 0, 1);
  border-radius: 3rem;
}
@media screen and (max-width: 992px) {
  .nav-effect::before {
    left: 0%;
  }
}
.nav-effect:hover:before {
  transform-origin: center center;
  transform: scale(1, 1);
}

.hero {
  position: relative;
}
.hero .slider-item {
  min-height: 100vh;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 575px) {
  .hero .slider-item {
    min-height: 80vh;
  }
}
.hero .slider-item .banner-wrap {
  position: absolute;
  width: 100%;
  height: 100%;
  inset-inline-start: 0;
  top: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: -1;
  transform: scale(1);
  transition: all 8s linear 0s;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero .slider-item .banner-wrap:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  inset-inline-start: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.2) 100%);
}
.hero .slider-item.slick-active .banner-wrap {
  transform: scale(1.12);
}
.hero .slick-dots {
  bottom: 0;
}
.hero .slick-dots li button:before {
  font-size: 1rem;
}
.hero .slick-dots li.slick-active button:before {
  color: #1f4941;
}
.hero .slick-dotted.slick-slider {
  margin-bottom: 0;
}
.hero .slick-active .hero-ele {
  opacity: 0;
  animation: herofadeInUp 1s ease-in-out 0s forwards;
}
.hero .slick-active .hero-ele.first {
  animation-delay: 1s;
}
.hero .slick-active .hero-ele.second {
  animation-delay: 2s;
}
.hero .slick-active .hero-ele.third {
  animation-delay: 3s;
}
.hero .slick-active .hero-ele.fourth {
  animation-delay: 1s;
}
.hero .slick-active .hero-ele.fifth {
  animation-delay: 2s;
}
.hero .slick-active .hero-ele.sixth {
  animation-delay: 3s;
}
@keyframes herofadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.about-company .about-pic {
  position: relative;
  width: 80%;
  margin: 0 auto;
}
.about-company .about-pic .experience-box {
  position: absolute;
  bottom: 10px;
  left: -20px;
  background-color: #1f4941;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.about-company .about-pic .experience-box p {
  color: #ffffff;
}
.about-company .about-list {
  padding: 1rem 0;
}
.about-company .about-list li {
  font-size: 0.875rem;
  line-height: 2rem;
}
.about-company .about-list li i {
  color: #1f4941;
  margin-right: 0.8rem;
}
.about-company .call {
  width: 2rem;
  height: 2rem;
  padding: 1.4rem;
  justify-content: center;
  align-items: center;
  display: flex;
}
.about-company .call:hover {
  background-color: #ffaf00;
}
.about-company .service-card .point {
  width: 2.8rem;
  height: 2.8rem;
  color: #ffffff;
}

.core-services {
 background-color: rgba(31, 73, 65, 0.1);
  background-image: url(../images/section/charity-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  min-height: 750px;
  background-position: center center;
  position: relative;
  align-items: center;
  justify-content: center;
  display: flex;
  padding: 6rem 0;
  background-attachment: fixed;
}
.core-services .icon-wrap {
  width: 5rem;
  height: 5rem;
  background-color: #1f4941;
  border-radius: 50%;
  display: inline-block;
  line-height: 5rem;
}
.core-services .icon-wrap svg path {
  fill: #ffffff;
}
.core-services .cardeffect:hover .icon-wrap {
  background-color: #ffaf00;
}
.core-services .cardeffect:hover .icon-wrap svg path {
  fill: #000000;
  transition: all ease-in-out 0.3s;
}

.services {
  position: relative;
  background-color: #222222;
}
.services .top-sec {
  position: relative;
  padding: 5rem 0;
  min-height: 550px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.services .top-sec:before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #ffaf00;
  background-image: url(../images/section/service-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 0;
  position: absolute;
  left: 0;
  top: 0;
}
@media screen and (max-width: 992px) {
  .services .top-sec:before {
    display: none;
  }
}
.services .top-sec:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  background-color: rgba(0, 0, 0, 0.7);
}
.services .top-sec .slider-item {
  overflow: hidden;
  border: 1px solid #ffaf00;
  position: relative;
  margin: 0 1em;
}
.services .top-sec .slider-item .more-service {
  padding-left: 0 !important;
  padding-right: 0 !important;
  position: relative;
}
.services .top-sec .slider-item .more-service .content {
  width: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  bottom: 0;
  padding: 1rem;
  position: absolute;
  z-index: 3;
  overflow: hidden;
}
.services .top-sec .slider-item .more-service .content p {
  color: #ffffff;
  margin-top: 0;
  max-height: 0;
  opacity: 0;
  transition: all 0.5s ease-in-out;
}
.services .top-sec .slider-item .more-service .content a {
  color: #ffffff;
  display: flex;
}
.services .top-sec .slider-item .more-service .content a:hover {
  color: #1f4941;
}
.services .top-sec .slider-item .more-service:hover .content p {
  margin-top: 10px;
  max-height: 150px;
  opacity: 1;
}
.services .owl-nav {
  position: absolute;
  left: 44%;
}
@media screen and (max-width: 767px) {
  .services .owl-nav {
    left: 0;
  }
}
.services .owl-nav .owl-prev,
.services .owl-nav .owl-next {
  background: #ffffff !important;
  color: #1f4941 !important;
  box-shadow: 0 0 1.375rem rgba(0, 0, 0, 0.1);
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  font-size: 2rem !important;
}
.services .owl-nav .owl-prev:hover,
.services .owl-nav .owl-next:hover {
  background: #ffaf00 !important;
  color: #ffffff !important;
}

.project-sec {
  background-color: #000000;
}
.project-sec .project-card {
  position: relative;
  width: 100%;
}
.project-sec .project-card figure {
  position: relative;
  overflow: hidden;
  margin: 0px;
  width: 100%;
  height: auto;
  text-align: center;
  cursor: pointer;
}
.project-sec .project-card figure img {
  position: relative;
  display: block;
  min-height: 100%;
  min-width: 100%;
  opacity: 0.8;
}

.free-consult {
  background-color: rgba(31, 73, 65, 0.1);
  background-image: url(../images/section/bg1.avif);
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  min-height: 750px;
  background-position: center center;
  position: relative;
  align-items: center;
  justify-content: center;
  display: flex;
  padding: 6rem 0;
  background-attachment: fixed;
}
.free-consult::before {
  content: "";
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  border-radius: 0 10px 10px 0;
}

.testimonials {
  position: relative;
  background-color: #9e9a75;
}
.testimonials .client-con {
  text-align: justify;
}
.testimonials .client-con .avatar {
  position: relative;
}
.testimonials .client-con .avatar .client {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background: #9e9a75;
  display: flex;
  border: 2px solid #ffaf00;
  margin: 0 auto;
  overflow: hidden;
}
.testimonials .client-con .avatar .qotes-img {
  width: auto;
  height: auto;
  display: inline-block;
  position: absolute;
  left: 0;
  bottom: -20px;
}
.testimonials .carouselTestimonials .slick-prev,
.testimonials .carouselTestimonials .slick-next {
  background-color: transparent;
  top: 50%;
  background-repeat: no-repeat;
  background-position: center;
  width: 3rem;
  height: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0;
  z-index: 10;
  border: none;
  box-shadow: none;
  background-size: 90%;
}
.testimonials .carouselTestimonials .slick-prev::before,
.testimonials .carouselTestimonials .slick-next::before {
  font-size: 0rem;
  opacity: 0;
}
.testimonials .carouselTestimonials .slick-prev {
  left: 0;
  background-image: url(../images/icons/arrow-prev.svg);
}
@media screen and (max-width: 1200px) {
  .testimonials .carouselTestimonials .slick-prev {
    left: 0;
  }
}
@media screen and (max-width: 575px) {
  .testimonials .carouselTestimonials .slick-prev {
    
  }
}
.testimonials .carouselTestimonials .slick-next {
  right: 0;
  background-image: url(../images/icons/arrow-next.svg);
}
@media screen and (max-width: 1200px) {
  .testimonials .carouselTestimonials .slick-next {
    right: 0;
  }
}
@media screen and (max-width: 575px) {
  .testimonials .carouselTestimonials .slick-next {
    display: none !important;
  }
}
.testimonials .carouselTestimonials .slick-prev:hover {
  background-color: none;
  background-image: url(../images/icons/arrow-prev-hover.svg);
}
.testimonials .carouselTestimonials .slick-next:hover {
  background-color: none;
  background-image: url(../images/icons/arrow-next-hover.svg);
}

.news .news-card {
  background-color: #ffffff;
}
.news .news-card a {
  color: #1f4941;
}
.news .news-card a:hover {
  color: #ffaf00;
}

.contact-sec {
  background-color: #000000;
}
.contact-sec .contact-form {
  position: relative;
}
.contact-sec .contact-form:before {
  content: "";
  display: block;
  background-image: url(../images/section/technical-support.png);
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  position: absolute;
  left: -360px;
  top: 0px;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .contact-sec .contact-form:before {
    left: 0;
  }
}

.partner {
  position: relative;
}
.partner .carouselPartner img {
  margin: auto;
  opacity: 0.35;
  transition: all 0.3s ease-out 0s;
}
.partner .carouselPartner img:hover {
  opacity: 1;
}

.subscribe .video-bg {
  background-size: cover;
  width: 100%;
  height: 100%;
  min-height: 205px;
  background-position: center center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.subscribe .video-bg::before {
  content: "";
  background: rgba(0, 0, 0, 0.1);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.subscribe .video-bg .video-icon {
  border-radius: 50%;
  background-color: #ffffff;
  color: #ffaf00;
  line-height: 60px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulseBig infinite 4s linear;
  z-index: 10;
  position: absolute;
  right: -5%;
}
@media screen and (max-width: 767px) {
  .subscribe .video-bg .video-icon {
    right: 0;
    bottom: 0;
  }
}
.subscribe .video-bg .video-icon:hover {
  color: #1f4941;
}

.footer {
  background-color: #222222;
}
.footer h1,
.footer h2,
.footer h3,
.footer p {
  color: #ffffff;
}
.footer p {
  line-height: 2.2rem;
}
.footer .footer-link li {
  line-height: 2.5rem;
}
.footer .footer-link li a {
  color: #222222;
  font-size: 0.875rem;
  padding: 0 0 0.5rem 0;
}
.footer .footer-link li a:hover {
  color: #1f4941;
}
.footer .content-box {
  text-align: center;
  cursor: pointer;
}
.footer .content-box .footer-icon {
  background-color: #1f4941;
  width: 5rem;
  height: 5rem;
  display: inline-block;
  line-height: 5rem;
  text-align: center;
  transition-duration: 0.3s;
  margin-bottom: 2rem;
}
.footer .content-box .footer-icon i {
  font-size: 2.5rem;
  color: #ffffff;
}
.footer .content-box:hover .footer-icon {
  background-color: #000000;
  transform: translateY(-5px);
}
.footer .content-box:hover .footer-icon i {
  color: #ffaf00;
}
.footer .social a,
.footer .social .botom-link {
  color: #ffffff;
}
.footer .social a:hover,
.footer .social .botom-link:hover {
  color: #1f4941;
}

.footer-link-effect {
  position: relative;
}
.footer-link-effect::before {
  content: "";
  position: absolute;
  bottom: 0%;
  left: 0px;
  width: 100%;
  height: 2px;
  border-radius: 0.5rem;
  background: #1f4941;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform 0.4s cubic-bezier(1, 0, 0, 1);
}
.footer-link-effect:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}

.scrollup {
  overflow: hidden;
  position: fixed;
  height: 5rem;
  width: 5rem;
  line-height: 5rem;
  bottom: -5rem;
  right: 3rem;
  text-align: center;
  z-index: 1;
  background-color: rgba(31, 73, 65, 0.8);
  display: block;
  color: #ffffff;
  transition: all 0.5s cubic-bezier(0, 0, 0.15, 1.88);
  transform: rotate(90deg);
}
.scrollup i {
  font-size: 1.5rem;
  display: inline-block;
  transition: all 0.5s ease-out;
}
.scrollup i:hover, .scrollup i:focus {
  animation: toBottomFromTop 0.5s forwards;
}
.scrollup:hover, .scrollup:focus {
  color: #ffaf00;
}
.scrollup.back-top {
  bottom: 20px;
}
@keyframes toBottomFromTop {
  49% {
    transform: translateX(-20%);
  }
  50% {
    opacity: 0;
    transform: translateX(20%);
  }
  51% {
    opacity: 0;
  }
  80% {
    opacity: 1;
  }
}
/* Ticker Container */
.donation-ticker {
  background-color: #f5f5f5;
  padding: 20px;
  border-radius: 10px;
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.ticker-container {
  height: 30px;
  overflow: hidden;
  position: relative;
}

.ticker-list {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  animation: scroll-ticker 10s linear infinite;
}

.ticker-item {
  padding: 10px;
  font-size: 16px;
  color: #333;
  background-color: #ffffff;
  border-bottom: 1px solid #ddd;
  text-align: center;
}

/* Animation for scrolling */
@keyframes scroll-ticker {
  0% {
    top: 0;
  }
  100% {
    top: -200%; /* Adjust this based on the number of items */
  }
}
/* Ticker Wrapper Styling */
.ticker-wrapper {
  width: 100%;
  background-color: #000000; /* Ticker background color */
  position: fixed; /* Keeps it fixed at the top */
  top: 0; 
  left: 0;
  z-index: 999; /* Ensure it's above other elements */

}

/* Container for the ticker items */
.ticker-container {
  width: 100%;
  overflow: hidden; /* Ensures that the ticker scrolls horizontally */
  white-space: nowrap; /* Prevents text from wrapping to new lines */
}

/* Ticker item list */
.ticker-list {
  display: inline-block;
  animation: ticker-scroll 15s linear infinite; /* Continuous scroll effect */
}

.ticker-item {
  display: inline-block;
  padding: 0 30px; /* Spacing between ticker items */
  font-size: 16px;
  color: #333;
}

/* Ticker scroll animation */
@keyframes ticker-scroll {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

/*# sourceMappingURL=main.css.map */