@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;700&display=swap');

:root {
  --primary: #f2ba36;
  --dark: #21252f;
  --body: #363636;
  --white: #ffffff;
  --box-shadow: 0 8px 22px rgba(0, 0, 0, 0.1);
  --green-highlight: #3c5629;
  --shadow: #ffffff8e;
}

body {
  font-family: "Sora", sans-serif;
  line-height: 1.7;
  color: var(--body);
  zoom: 75% !important;
  overflow-x: hidden !important;
}

h1, h2, h3, h4, h5, h6,
.display-4 {
  color: var(--dark);
  font-weight: 700;
}

a {
  color: var(--dark);
  text-decoration: none;
}

img {
  width: 100%;
}

.navbar {
  box-shadow: var(--box-shadow);
}

.logo {
  width: 160px;
}

.navbar .nav-link {
  font-size: 14px;
  font-weight: 700;
  color: var(--dark) !important;
}

.navbar .nav-link.active {
  color: var(--primary) !important;
}

.btn {
  padding: 14px 18px;
  border-width: 2px;
  border-radius: 10px;
}

.btn-donate {
  display: inline-block;
  width: 20%;
  height: fit-content !important;
  text-align: center;
}

/*.hero {
    display: flex;
    justify-content: left;
    align-items: center;
    text-align: center;
    background: linear-gradient(rgba(0,0,0,0.4),rgba(0,0,0,0.9)), url(../img/about\ us.jpg) fixed center center;
    background-size: cover;
    padding: 60px 0;
    color: #ffffff;
    margin-bottom: 0px;
    padding: 200px 0;
    position: relative;
    overflow: hidden;
}

#hero::after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	background-color: black;
	opacity: 0.7;
	z-index: -1;
}
#hero .hero {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 50px;
	justify-content: flex-start;
}

#hero h1 {
	display: block;
	width: fit-content;
	font-size: 4rem;
	/*position: relative;
    text-align: left !important;
	color: transparent;
	animation: text_reveal 0.5s ease forwards;
	animation-delay: 1s;
}
#hero h1:nth-child(1) {
	animation-delay: 1s;
}
#hero h1:nth-child(2) {
	animation-delay: 2s;
}
#hero h1:nth-child(3) {
	animation: text_reveal_name 0.5s ease forwards;
	animation-delay: 3s;
}
#hero h1 span {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 0;
	background-color: var(--green-highlight);
	animation: text_reveal_box 1s ease;
	animation-delay: 0.5s;
}
#hero h1:nth-child(1) span {
	animation-delay: 0.5s;
}
#hero h1:nth-child(2) span {
	animation-delay: 1.5s;
}
#hero h1:nth-child(3) span {
	animation-delay: 2.5s;
}*/

/*Updated hero*/
/*#hero {
  width: 100%;
  height: 100vh;
  background: url("../img/about\ us.jpg") top left;
  background-color: #fff !important;
  background-size: cover;
  position: relative;
}

#hero:before {
  content: "";
  background: rgba(0, 0, 0, 0.3);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero .container {
  position: relative;
}

#hero h1 {
  margin: 0;
  font-size: 3rem;
  font-weight: 600;
  line-height: 56px;
  color: var(--primary);
  font-family: "Poppins", sans-serif;
}

#hero h2 {
  color: #555555;
  margin: 5px 0 30px 0;
  font-size: 24px;
  font-weight: 400;
}

#hero .btn-get-started {
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px;
  border-radius: 4px;
  transition: 0.5s;
  color: #fff;
  background: var(--green-highlight);
}

#hero .btn-get-started:hover {
  background: var(--primary);
}

#Achievements .btn-get-started {
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px;
  border-radius: 4px;
  transition: 0.5s;
  color: #fff;
  background: #4cacdc;
}

#Achievements .btn-get-started:hover {
  background: #fba616;
}

#hero .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  color: #222222;
  font-weight: 600;
  display: flex;
  align-items: center;
}

#hero .btn-watch-video i {
  color: #4cacdc;
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

#hero .btn-watch-video:hover {
  color: #4cacdc;
}

#hero .btn-watch-video:hover i {
  color: #9ed1eb;
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-width: 768px) {
  #hero {
    height: 100vh;
  }

  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  #hero .btn-get-started,
  #hero .btn-watch-video {
    font-size: 13px;
  }
}

@media (max-height: 500px) {
  #hero {
    height: 120vh;
  }
}

/*Updated Hero*/

.hero-fundraising {
  display: flex;
  justify-content: left;
  align-items: center;
  text-align: center;
  background: black;
  background-size: cover;
  padding: 60px 0;
  color: #ffffff;
  margin-bottom: 0px;
  padding: 200px 0;
  position: relative;
  overflow: hidden;
}

.hero-impact {
  display: block;
  background: linear-gradient(rgba(0, 142, 99, 0.1), rgba(0, 0, 0, 0.9)), url(../img/paypal-bg.jpg) fixed center center;
  background-size: cover;
  padding: 60px 0;
  justify-content: center;
  align-items: center;
  text-align: center;
  /*background: rgba(0, 0, 0, 0.4);*/
  color: #ffffff;
  margin-bottom: 20px;
  padding: 200px 0;
  position: center;
  overflow: hidden;
}

.hero-faq {
  display: block;
  background: linear-gradient(rgba(0, 142, 99, 0.1), rgba(0, 0, 0, 0.9)), url(../img/FAQ-Page.jpg) fixed center center;
  background-size: cover;
  padding: 60px 0;
  justify-content: center;
  align-items: center;
  text-align: center;
  /*background: rgba(0, 0, 0, 0.4);*/
  color: #ffffff;
  margin-bottom: 20px;
  padding: 200px 0;
  position: center;
  overflow: hidden;
}

.hero-about {
  display: block;
  background: linear-gradient(rgba(0, 142, 99, 0.1), rgba(0, 0, 0, 0.9)), url(../img/about\ us.jpg) fixed center center;
  background-size: cover;
  padding: 60px 0;
  justify-content: center;
  align-items: center;
  text-align: center;
  /*background: rgba(0, 0, 0, 0.4);*/
  color: #ffffff;
  margin-bottom: 20px;
  padding: 200px 0;
  position: center;
  overflow: hidden;
}

.video-bg {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;

}

.video-bg-faq {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
}

.hero::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(21, 20, 51, 0.2);
  z-index: -1;
}

section {
  padding-top: 120px;
  padding-bottom: 120px;
}

.card-effect {
  box-shadow: var(--box-shadow);
  background-color: var(--white);
  padding: 25px;
  transition: all 0.35s ease;
  border-radius: 10px;
}

#card-effect .row.g-5 {
  margin-top: 20px;
}

.card-effect:hover {
  box-shadow: none;
  transform: translateY(5px);
}

.iconbox {
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary);
  color: var(--white);
  font-size: 32px;
  border-radius: 100px;
  flex: none;
}

.service {
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.service::after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: -100%;
  left: 0;
  background-color: var(--primary);
  z-index: -1;
  opacity: 0;
  transition: all 0.4s ease;
}


.service:hover .iconbox {
  background-color: var(--white);
  color: var(--dark);
}

.service:hover h5,
.service:hover p {
  color: var(--white);
  ;
}

.service:hover::after {
  opacity: 1;
  top: 0;
}

.service-SDG {
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.service-SDG::after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: -100%;
  left: 0;
  background-color: var(--green-highlight);
  z-index: -1;
  opacity: 0;
  transition: all 0.4s ease;
}


.service-SDG:hover .iconbox {
  background-color: var(--white);
  color: var(--dark);
}

.service-SDG:hover h5,
.service-SDG:hover p {
  color: var(--white);
  ;
}

.service-SDG:hover::after {
  opacity: 1;
  top: 0;
}

.col-img {
  background-image: url(../img/Givewatts\ by\ Miranda\ Grant\ 2014-6.jpg);
  background-position: center;
  background-size: cover;
  min-height: 500px;
  padding: 60px 0;
}

.col-img-2 {
  background-image: url(../img/Irene_on_Boat.webp);
  background-position: center;
  background-size: cover;
  min-height: 500px;
  padding: 60px 0;
}

.project {
  position: relative;
  overflow: hidden;
}

.project .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--primary);
  padding: 30px;
  display: flex;
  align-items: flex-end;
  transition: all 0.4s ease;
  opacity: 0;
}

.project img {
  transition: all 0.4s ease;
  height: 400px;
  width: 400px;
  size: cover;
}

.project:hover .overlay {
  opacity: 1;
}

.project:hover img {
  transform: scale(1.1);
}


.pricing i {
  font-size: 20px;
  color: var(--primary);
}

.pricing ul li {
  margin-top: 8px;
}

.team-member img {
  width: 125px;
  height: 125px;
  border-radius: 100px;
}

.team-member {
  height: 280px;
}


.social-icons {
  display: flex;
  justify-content: center;
}

.social-icons a {
  width: 70px;
  height: 70px;
  background-color: var(--green-highlight);
  border-radius: 2px solid var(--primary);
  color: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  margin-left: 5px;
  transition: all 0.4s ease;
  border: 5px solid var(--primary);
}

.social-icons a:hover {
  color: var(--primary);
  background-color: transparent;
  border-color: var(--primary);
}


form input.form-control {
  height: 56px;
}

form .form-control {
  /*border: #21252f;*/
  border-width: 5px;
  border-radius: 10px;
  background-color: rgba(0, 0, 0, 0.02);
  color: #ffffff;
}


/*.footer-top {
  padding-top: 90px;
  padding-bottom: 90px;
  /*background-color: rgb(51, 50, 50);
  background-color: black;
  position: relative;
  color: #ffffff;
}

.footer-top a {
  color: var(--body);
}

.footer-top a:hover {
  color: var(--white);
}

.footer-bottom {
  background-color: #282828;
}*/

.product-card {
  min-height: 400px;
  max-height: 400px;
  overflow: hidden;
}

.about-us-bg {
  background: linear-gradient(rgba(0, 142, 99, 0.1), rgba(0, 0, 0, 0.9)), url(../img/about-us-bg.jpg) fixed center center;
  background-size: cover;
  padding: 60px 0;
  height: 600px;
  align-items: center;
  text-align: center;
  color: #ffffff;
}

.input {
  width: 300px;
  height: 50px;
  margin: auto;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 50px;
  background-color: #f5c434;
  border-color: #f5c434;
  color: var(--dark);
  text-align: center;
}

.paypal-bg {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.6)), url(../img/impact.jpg) fixed center center;
  background-size: cover;
  padding: 60px 0;
}

.container-fluid {
  width: 100%;
  padding-right: var(--bs-gutter-x, .75rem);
  padding-left: var(--bs-gutter-x, .75rem);
  margin-right: auto;
  margin-left: auto
}

.jumbotron {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.6)), url(../img/impact.jpg) no-repeat center center fixed;
  background-size: cover;
  color: white;
  text-align: center;
  padding: 100px 0;
  margin-bottom: 0;
}

/* Center the content in the jumbotron */
.jumbotron .container {
  position: relative;
  z-index: 1;
}

/* Add some spacing to the bottom of the jumbotron */
.jumbotron::after {
  content: '';
  display: block;
  height: 0px;
  /* Adjust as needed */
}

/* Style the options section */
.options-section {
  padding: 50px 0;
  height: 100vh;
}

.design-section {
  padding: 50px 0;
  height: fit-content;
}

.spaced-paragraph {
  line-height: 2.0;
}

.news-bg {
  background: linear-gradient(rgba(111, 113, 112, 0.1), rgba(0, 0, 0, 0.9)), url(../img/paypal-bg-2.jpg) fixed center center;
  background-size: cover;
  padding: 60px 0;
}

.impact-bg {
  background: linear-gradient(rgba(111, 113, 112, 0.1), rgba(0, 0, 0, 0.9)), url(../img/paypal-bg.jpg) fixed center center;
  background-size: cover;
  padding: 60px 0;
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.pagination ul {
  list-style: none;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  /* Add this line to wrap pagination items on small screens */
}

.pagination li {
  margin: 5px 10px;
}

.pagination li a {
  color: var(--primary);
  background-color: #3c5629;
  border: none;
  padding: 10px 15px;
  text-decoration: none;
  font-size: 1.2em;
}

.pagination li.active a {
  background-color: var(--primary);
  color: #fff;
}

@media (max-width: 768px) {
  .pagination li.previous-page {
    display: none;
  }

  .pagination li.next-page {
    display: none;
  }

  .pagination li a {
    font-size: 1em;
  }
}



/*.previous-page, .next-page {
  background: var(--primary);
  width: 80px;
  border-radius: 45px;
  cursor: pointer;
  transition: 0.3s ease;
}

.previous-page:hover {
  transform: translateX(-5px);
}

.next-page:hover {
  transform: translateX(5px);
}

.current-page, .dots {
  background: var(--primary);
  width: 45px;
  border-radius: 0%;
  cursor: pointer;
}

.active-page {
  background: var(--white);
}

.disable {
  background: var(--wh);
}*/

.counts {
  padding: 60px 0;
  background-color: var(--dark);
  margin-top: 20px;
}

.counts .count-box {
  width: 100%;
  text-align: center;
}

.counts .count-box span {
  font-size: 30px;
  line-height: 48px;
  display: block;
  font-weight: 700;
  color: var(--primary);
  margin-left: 80px;
  margin: auto;
}

.counts .count-box p {
  padding: 8px 0 0 0;
  /*font-family: "Raleway", sans-serif;*/
  font-weight: 600;
  font-size: 20px;
  color: var(--white);
}

.recent-blog-posts .post-box {
  transition: 0.3s;
  height: 100%;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}

.recent-blog-posts .post-box .post-img {
  overflow: hidden;
  position: relative;
  border-radius: 10px;
}

.recent-blog-posts .post-box .post-img img {
  transition: 0.5s;
}

.recent-blog-posts .post-box .meta {
  margin-top: 3%;
}

.recent-blog-posts .post-box .meta .post-date {
  font-size: 15px;
  font-weight: 400;
  color: var(--dark);
}

.recent-blog-posts .post-box .meta .post-author {
  font-size: 15px;
  font-weight: 400;
  color: var(--color-secondary);
}

.recent-blog-posts .post-box .post-title {
  font-size: 24px;
  color: var(--dark);
  font-weight: 700;
  margin: 15px 0 0 0;
  position: relative;
  transition: 0.3s;
}

.recent-blog-posts .post-box p {
  margin: 15px 0 0 0;
  color: var(--dark);
}

.recent-blog-posts .post-box .readmore {
  display: flex;
  align-items: center;
  font-weight: 600;
  line-height: 1;
  transition: 0.3s;
  margin-top: 3%;
}

.recent-blog-posts .post-box .readmore i {
  line-height: 0;
  margin-left: 4px;
  font-size: 18px;
}

.recent-blog-posts .post-box:hover .post-title {
  color: var(--primary);
}

.recent-blog-posts .post-box:hover .post-img img {
  transform: scale(1.1);
}

.content-section {
  padding-top: 7.5rem;
  padding-bottom: 7.5rem;
  height: fit-content;
  color: var(--white) !important;
}

.content-section-heading h2, .content-section-heading .h2 {
  font-size: 3rem;
}

.content-section-heading h3, .content-section-heading .h3 {
  font-size: 1rem;
  text-transform: uppercase;
}

.banner {
  position: relative;
  overflow: hidden;
  background: #fff;
  background: url("../img/web-hero-2.webp") no-repeat 80% 50%;
  background-size: cover;
  padding: 120px 0px;
  min-height: 800px;
  color: var(--body);
  font-weight: 600;
  font-size: 1.2rem;
  border-bottom-right-radius: 40%;
}

/* .block {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
} */

.banner-about {
  position: relative;
  overflow: hidden;
  background: #fff;
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.9)), url("../img/about-us-bg.jpg") no-repeat 80% 70%;
  background-size: cover;
  padding: 120px 0px;
  min-height: 800px;
  color: var(--body);
  font-weight: 600;
  font-size: 1.2rem;
  border-bottom-right-radius: 40%;
}

.banner-christmas {
  position: relative;
  overflow: hidden;
  background: #fff;
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.9)), url("../img/Christmas_Header.webp") no-repeat 80% 70%;
  background-size: cover;
  padding: 120px 0px;
  min-height: 800px;
  color: var(--body);
  font-weight: 600;
  font-size: 1.2rem;
  border-bottom-right-radius: 40%;
}

.banner-christmas-bottom {
  position: relative;
  overflow: hidden;
  background: #fff;
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.5)), url("../img/Banner_Christmas_Bottom.webp") no-repeat 80% 70%;
  background-size: cover;
  padding: 120px 0px;
  min-height: 800px;
  color: var(--body);
  font-weight: 600;
  font-size: 1.2rem;
  /* border-bottom-right-radius: 40%; */
}

.banner-impact {
  position: relative;
  overflow: hidden;
  background: #fff;
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.9)), url("../img/Givewatts\ by\ Miranda\ Grant\ 2014-6.jpg") no-repeat 80% 70%;
  background-size: cover;
  padding: 120px 0px;
  min-height: 800px;
  color: var(--body);
  font-weight: 600;
  font-size: 1.2rem;
  border-bottom-right-radius: 40%;
}

.banner .block {
  padding-top: 120px;
}

.banner .block h1 {
  font-size: 65px;
  line-height: 1.2;
  font-weight: 400;
  letter-spacing: -1.2px;
  /*text-transform: capitalize;*/
  color: var(--primary);
}

.letter-spacing {
  letter-spacing: 2px;
}

.text-color {
  color: var(--white) !important;
}

@media (max-width: 480px) {
  .banner .block h1 {
    font-size: 38px;
    line-height: 50px;
  }

  .banner {
    padding: 126px 0 151px 0;
    background: var(--body) !important;
  }
}

@media (max-width: 400px) {
  .banner .block h1 {
    font-size: 28px;
    line-height: 40px;
  }

  .banner {
    padding: 126px 0 151px 0;
    background: var(--body) !important;
  }
}

@media (max-width: 768px) {
  .banner .block h1 {
    font-size: 56px;
    line-height: 70px;
  }

  .banner {
    background: var(--body) !important;
  }
}

@media (max-width: 992px) {
  .banner {
    background: #fff !important;
  }
}

@media (max-width: 1200px) {
  .banner {
    background: #fff !important;
  }
}

.btn-main {
  background: var(--primary);
  color: #000;
  font-weight: 600;
  border-color: var(--primary);
}

.btn-main:hover {
  color: var(--primary);
  font-weight: 600;
  background: var(--dark);
}

#footer {
  background: #fff;
  padding: 0 0 30px 0;
  color: #444444;
  font-size: 14px;
  background: #f1f6fe;
}

#footer .footer-newsletter {
  padding: 5rem 1rem;
  background: var(--dark);
  /*text-align: center;*/
  font-size: 15px;
  color: #fff;
}

#footer .footer-newsletter h4 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
  color: var(--primary);
}

#footer .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 4px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.06);
  text-align: left;
}

#footer .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px 8px;
  width: calc(100% - 100px);
  color: #000 !important;
}

#footer .footer-newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: var(--green-highlight);
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footer .footer-newsletter form input[type=submit]:hover {
  background: #0d58ba;
}

#footer .footer-top {
  padding: 60px 0 30px 0;
  background: #fff;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact h3 {
  font-size: 24px;
  margin: 0 0 15px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top .footer-contact h3 span {
  color: #4cacdc;
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Roboto", sans-serif;
  color: #777777;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #444444;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

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

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: var(--primary);
  font-size: 18px;
  line-height: 1;
}

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

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

#footer .footer-top .footer-links ul a {
  color: var(--white);
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: var(--primary);
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #fba616;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #4cacdc;
  color: #fff;
  text-decoration: none;
}

#footer .copyright {
  text-align: center;
  float: left;
}

#footer .credits {
  float: right;
  text-align: center;
  font-size: 13px;
  color: var(--white) !important;
}

@media (max-width: 768px) {

  #footer .copyright,
  #footer .credits {
    float: none;
    text-align: center;
    padding: 2px 0;
  }
}

.team .nav .nav-link {
  transition: .5s;
  background-color: var(--primary) !important;
}

.team .nav .nav-link.active {
  border-color: var(--primary) !important;
  background: var(--primary);
}

.team .nav .nav-link.active h5 {
  color: #FFFFFF !important;
}

.team .nav .nav-link.active h5 i {
  color: #FFFFFF !important;
}

.cta {
  background: linear-gradient(rgba(0, 0, 0, 0.8), var(--green-highlight)), url("../img/impact.jpg") fixed center center;
  background-size: cover;
  padding: 120px 0;
}

.cta-christmas {
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url("../img/teacher&students.jpg") fixed center center;
  background-size: cover;
  padding: 120px 0;
}

.cta-donate {
  background: var(--green-highlight);
  background-size: cover;
  padding: 120px 0;
}

.cta h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

.cta p {
  color: #fff;
}

.cta .cta-btn {
  text-transform: uppercase;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.5px;
  display: inline-block;
  padding: 8px 26px;
  border-radius: 2px;
  transition: 0.5s;
  margin: 10px;
  border-radius: 50px;
  border: 2px solid #f6b024;
  color: #fff;
}

.cta .cta-btn:hover {
  background: var(--primary);
  color: var(--dark);
  font-weight: 600;
}

@media (max-width: 1024px) {
  .cta {
    background-attachment: scroll;
  }
}

@media (min-width: 769px) {
  .cta .cta-btn-container {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

#loader-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  z-index: 9999;
}

.loader {
  width: 200px;
  height: 60px;
  position: relative;
  z-index: 1;
}

.circle {
  width: 20px;
  height: 20px;
  position: absolute;
  border-radius: 50%;
  background-color: #fff;
  left: 15%;
  transform-origin: 50%;
  animation: circle7124 .5s alternate infinite ease;
}

@keyframes circle7124 {
  0% {
    top: 60px;
    height: 5px;
    border-radius: 50px 50px 25px 25px;
    transform: scaleX(1.7);
  }

  40% {
    height: 20px;
    border-radius: 50%;
    transform: scaleX(1);
  }

  100% {
    top: 0%;
  }
}

.circle:nth-child(2) {
  left: 45%;
  animation-delay: .2s;
}

.circle:nth-child(3) {
  left: auto;
  right: 15%;
  animation-delay: .3s;
}

.shadow {
  width: 20px;
  height: 4px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.9);
  position: absolute;
  top: 62px;
  transform-origin: 50%;
  z-index: -1;
  left: 15%;
  filter: blur(1px);
  animation: shadow046 .5s alternate infinite ease;
}

@keyframes shadow046 {
  0% {
    transform: scaleX(1.5);
  }

  40% {
    transform: scaleX(1);
    opacity: .7;
  }

  100% {
    transform: scaleX(.2);
    opacity: .4;
  }
}

.shadow:nth-child(4) {
  left: 45%;
  animation-delay: .2s
}

.shadow:nth-child(5) {
  left: auto;
  right: 15%;
  animation-delay: .3s;
}

.container-checkout {
  max-width: 900px;
  margin: 20px auto;
  overflow: hidden;
  background-color: #f8f9fa;
}

.box-1 {
  max-width: 450px;
  padding: 10px 40px;
  user-select: none;
}

.box-1 div .fs-12 {
  font-size: 8px;
  color: white;
}

.box-1 div .fs-14 {
  font-size: 15px;
  color: white;
}

.box-1 img.pic {
  width: 20px;
  height: 20px;
  object-fit: cover;
}

.box-1 img.mobile-pic {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.box-1 .name {
  font-size: 11px;
  font-weight: 600;
}

.dis {
  font-size: 12px;
  font-weight: 500;
}

label.box {
  width: 100%;
  font-size: 12px;
  background: #ddd;
  margin-top: 12px;
  padding: 10px 12px;
  border-radius: 5px;
  cursor: pointer;
  border: 1px solid transparent;
}

#one:checked~label.first,
#two:checked~label.second,
#three:checked~label.third {
  border-color: #7700ff;
}

#one:checked~label.first .circle,
#two:checked~label.second .circle,
#three:checked~label.third .circle {
  border-color: #7a34ca;
  background-color: #fff;
}

label.box .course {
  width: 100%;
}

label.box .circle {
  height: 12px;
  width: 12px;
  background: #ccc;
  border-radius: 50%;
  margin-right: 15px;
  border: 4px solid transparent;
  display: inline-block;
}

input[type="radio"] {
  display: none;
}

.box-2 {
  max-width: 450px;
  padding: 10px 40px;
}


.box-2 .box-inner-2 input.form-control {
  font-size: 12px;
  font-weight: 600;
}

.box-2 .box-inner-2 .inputWithIcon {
  position: relative;
}

.box-2 .box-inner-2 .inputWithIcon span {
  position: absolute;
  left: 15px;
  top: 8px;
}

.box-2 .box-inner-2 .inputWithcheck {
  position: relative;
}

.box-2 .box-inner-2 .inputWithcheck span {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: green;
  font-size: 12px;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  right: 15px;
  top: 6px;
}

.form-control:focus,
.form-select:focus {
  box-shadow: none;
  outline: none;
  border: 1px solid #7700ff;
}

.border:focus-within {
  border: 1px solid #7700ff !important;
}

.box-2 .card-atm .form-control {
  border: none;
  box-shadow: none;
}

.form-select {
  border-radius: 0;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;

}

.address .form-control.zip {
  border-radius: 0;
  border-bottom-left-radius: 10px;

}

.address .form-control.state {
  border-radius: 0;
  border-bottom-right-radius: 10px;

}

.box-2 .box-inner-2 .btn.btn-outline-primary {
  width: 120px;
  padding: 10px;
  font-size: 11px;
  padding: 0% !important;
  display: flex;
  align-items: center;
  border: none;
  border-radius: 0;
  background-color: whitesmoke;
  color: black;
  font-weight: 600;
}

.box-2 .box-inner-2 .btn.btn-main {
  background-color: #7700ff;
  color: whitesmoke;
  font-size: 14px;
  display: flex;
  align-items: center;
  font-weight: 600;
  justify-content: center;
  border: none;
  padding: 10px;
}

.box-2 .box-inner-2 .btn.btn-main:hover {
  background-color: #7a34ca;
}

.box-2 .box-inner-2 .btn.btn-main .fas {
  font-size: 13px !important;
  color: whitesmoke;
}

.carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.carousel-inner {
  width: 100%;
  height: 250px;
}

.carousel-item img {
  object-fit: cover;
  height: 100%;
}

.carousel-control-prev {
  transform: translateX(-50%);
  opacity: 1;
}

.carousel-control-prev:hover .fas.fa-arrow-left {
  transform: translateX(-5px);
}

.carousel-control-next {
  transform: translateX(50%);
  opacity: 1;
}

.carousel-control-next:hover .fas.fa-arrow-right {
  transform: translateX(5px);
}

.fas.fa-arrow-left,
.fas.fa-arrow-right {
  font-size: 0.8rem;
  transition: all .2s ease;
}

.icon {
  width: 30px;
  height: 30px;
  background-color: #f8f9fa;
  color: black;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transform-origin: center;
  opacity: 1;
}

.fas,
.fab {
  color: #6d6c6d;
}

::placeholder {
  font-size: 12px;
}

@media (max-width:768px) {
  .container {
    max-width: 700px;
    margin: 10px auto;
  }

  .box-1,
  .box-2 {
    max-width: 600px;
    padding: 20px 90px;
    margin: 20px auto;
  }

}

@media (max-width:426px) {

  .box-1,
  .box-2 {
    max-width: 400px;
    padding: 20px 10px;
  }

  ::placeholder {
    font-size: 9px;
  }
}

/*** Donate ***/
.donate {
  background: rgba(0, 29, 35, .8);
}

.btn-group .btn-light:hover,
.btn-group input[type="radio"]:checked+label {
  border-color: var(--primary);
  color: var(--primary);
  font-weight: 600;
  background: var(--dark);
}

.project-images {
  margin: 0;
  padding: 0;
}

.project-images img {
  width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  .text-dark-small-screen {
    color: #333 !important;
  }
}

.quadrant-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  margin: 20px;
}

.quadrant {
  flex: 0 0 45%;
  margin: 10px;
}

.quadrant img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.explanation {
  flex: 0 0 45%;
  margin: 10px;
}