/*@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700&display=swap');*/

/*===== CUSTOM FONTS =====*/

@font-face {
  font-family: "CustomFont";
  src: url("../css/fonts/earthwerk/pizzadude.dk_-_earthwerk-webfont.woff") format("woff");
  src: url("../css/fonts/earthwerk/pizzadude.dk_-_earthwerk-webfont.woff2") format("woff2");
  /*font-family: "akzidenz";
    src: url("../css/fonts/akzidenz/akzidenz-grotesk-black-webfont.woff") format("woff");
    src: url("../css/fonts/akzidenz/akzidenz-grotesk-black-webfont.woff2") format("woff2");
    src: url("../css/fonts/akzidenz/akzidenz-grotesk-bold-webfont.woff") format("woff");
    src: url("../css/fonts/akzidenz/akzidenz-grotesk-bold-webfont.woff2") format("woff2");
    src: url("../css/fonts/akzidenz/akzidenz-grotesk-light-webfont.woff") format("woff");
    src: url("../css/fonts/akzidenz/akzidenz-grotesk-light-webfont.woff2") format("woff2");
    font-family: "knockout";
    src: url("../css/fonts/knockout/knockout-htf-69-full-liteweight-1361516723-webfont.woff") format("woff");
    src: url("../css/fonts/knockout/knockout-htf-69-full-liteweight-1361516723-webfont.woff2") format("woff2");*/
}

@font-face {
  font-family: "akzidenz";
  src: url("../css/fonts/akzidenz/akzidenz-grotesk-black-webfont.woff") format("woff");
  src: url("../css/fonts/akzidenz/akzidenz-grotesk-black-webfont.woff2") format("woff2");
  src: url("../css/fonts/akzidenz/akzidenz-grotesk-bold-webfont.woff") format("woff");
  src: url("../css/fonts/akzidenz/akzidenz-grotesk-bold-webfont.woff2") format("woff2");
  src: url("../css/fonts/akzidenz/akzidenz-grotesk-light-webfont.woff") format("woff");
  src: url("../css/fonts/akzidenz/akzidenz-grotesk-light-webfont.woff2") format("woff2");
}

@font-face {
  font-family: "knockout";
  src: url("../css/fonts/knockout/knockout-htf-69-full-liteweight-1361516723-webfont.woff") format("woff");
  src: url("../css/fonts/knockout/knockout-htf-69-full-liteweight-1361516723-webfont.woff2") format("woff2");
}

/*===== VARIABLES =====*/

:root {
  --green-primary: #6d8d36;
  --indigo-secondary: #1c283e;
  --white-light: #eaebed;
  --text-color: rgb(33, 37, 41);
  --black-main: #000;
  --white-main: #fff;
  --gray: #97968e;
  --design-fonts: "CustomFont";
  --akzidenz-font-family: Helvetica, Arial, sans-serif;
  --knockout-font-family: "knockout";
  --heading-font: "CustomFont";
  --line-height: 1.5;
  --letter-spacing: 1;
  --font-size: 20px;
}

/*===== PRESETS =====*/

*,
::after,
::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  overflow-x: hidden;
  font-family: var(--akzidenz-font-family);
  font-size: 18px;
}

.for-overflow {
  overflow-x: hidden;
}

ul,
li {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-weight: inherit;
  font-style: inherit;
  font-size: 100%;
  font-family: inherit;
  vertical-align: baseline;
}

p {
  line-height: var(--line-height);
  font-size: var(--font-size);
  letter-spacing: var(--letter-spacing);
  font-family: Helvetica, Arial, sans-serif;
}

/*===== UTILITY CLASSES =====*/

.container-two {
  width: 95% !important;
  max-width: 1200px;
  margin-inline: auto;
}

.section-padding {
  padding-block: 3rem;
}

/*===== HEADER STYLES =====*/

.main-header {
  padding-block: 2rem;

  position: absolute;
  z-index: 2;
  width: 100%;
}

.main-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.main-header .container .branding-wrapper {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.main-header .container .links {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.main-header .container .links .socials {
  display: flex;
  gap: 1rem;
}

.main-header .container .links .socials a {
  text-decoration: none;
  color: white;
  font-size: 2rem;
}

.main-header .container .links .socials a:hover [class^="icon-"],
.main-header .container .links .socials a:hover [class*=" icon-"] {
  color: var(--green-primary);
}

.main-header .container .links .navigation {
  display: flex;
  gap: 1.5rem;
}

.main-header .container .links ul.navigation li {
  background-color: var(--white-main);
  padding: 0.5rem 2rem;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.main-header .container .links ul.navigation li a {
  font-family: var(--design-fonts);
  color: var(--green-primary);
  font-size: 18px;

  text-decoration: none;
  transition: all 0.3s ease;
}

.main-header .container .links ul.navigation li.current-menu-item {
  background-color: var(--green-primary);
}

.main-header .container .links ul.navigation li.current-menu-item a {
  color: white;
}

.main-header .container .links ul.navigation li:hover {
  background-color: var(--green-primary);
}

.main-header .container .links ul.navigation li:hover a {
  color: white;
}

/*===== BANNER STYLES =====*/

section.banner {
  width: 100vw;
  height: 280px;

  position: relative;
  color: black;
  isolation: isolate;
}

section.banner img {
  object-fit: cover;
  width: 100%;
  object-position: center;
  height: 100%;
}

section.banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: black;
  opacity: 0.3;
}

section#blankTemplate .intro-wrapper {
  width: 100vw;
  position: absolute;
  bottom: 10%;
  z-index: 1;
}

section#blankTemplate .intro-wrapper .rhino-intro {
  width: 780px;
}

section#blankTemplate .intro-wrapper .rhino-intro h1 {
  font-family: var(--design-fonts);
  font-size: 60px;
  color: white;
  font-weight: lighter;
}

section#blankTemplate .intro-wrapper .rhino-intro h1 strong {
  color: var(--green-primary);
  font-weight: lighter;
}

section#blankTemplate .intro-wrapper .rhino-intro p {
  color: white;
}

/*===== BANNER RESPONSIVE STYLES =====*/
@media screen and (max-width: 900px) {
  section#blankTemplate .intro-wrapper .container {
    width: 90%;
  }

  section#blankTemplate .intro-wrapper .rhino-intro {
    width: 100%;
  }

  section#blankTemplate .intro-wrapper .rhino-intro h1 {
    font-size: clamp(3rem, 1.5rem + 4vw, 3.75rem);
  }
}

@media screen and (max-width: 450px) {
  section#blankTemplate .intro-wrapper .rhino-intro h1 {
    font-size: clamp(2rem, 0.5rem + 5.3333vw, 2.5rem);
  }
}

/*==== FOR CUSTOM DAFs PAGE =====*/
/*===== SECURE THE FUTURE STYLES =====*/
section.secure-the-future .secure-the-future-wrapper {
  width: 1000px;
  margin-inline: auto;
  margin-top: 3rem;
}

section.secure-the-future .secure-the-future-wrapper h2 {
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 2rem;
}

section.secure-the-future .secure-the-future-wrapper .secure-the-future-content {
  display: flex;
  align-items: start;
  justify-content: space-between;
}

section.secure-the-future .secure-the-future-wrapper .secure-the-future-content p {
  font-size: 18px;
}

section.secure-the-future .secure-the-future-wrapper .secure-the-future-paragraph {
  flex-basis: 67%;
}

section.secure-the-future .secure-the-future-wrapper .secure-the-future-image {
  flex-basis: 273px;
  height: auto;
}

section.secure-the-future .secure-the-future-wrapper .secure-the-future-image img {
  object-fit: cover;
  aspect-ratio: 273 / 180;
  width: 100%;
  height: auto;
  display: block;
}

/*----- SECURE FUTURE RESPONSIVENESS -----*/
@media screen and (max-width: 1040px) {
  section.secure-the-future .secure-the-future-wrapper {
    width: 95%;
  }

  section.secure-the-future .secure-the-future-wrapper .secure-the-future-content {
    gap: 1.5rem;
  }

  section.secure-the-future .secure-the-future-wrapper h2 {
    font-size: 32px;
  }

  section.secure-the-future .secure-the-future-wrapper .secure-the-future-content p {
    font-size: 16px;
  }
}

@media screen and (max-width: 600px) {
  section.secure-the-future .secure-the-future-wrapper .secure-the-future-content {
    flex-direction: column-reverse;
  }

  section.secure-the-future .secure-the-future-wrapper h2 {
    font-size: 24px;
  }

  section.secure-the-future .secure-the-future-wrapper .secure-the-future-image {
    width: 100%;
    height: auto;
  }

  section.secure-the-future .secure-the-future-wrapper .secure-the-future-image img {
    object-fit: cover;
    aspect-ratio: 273 / 180;
    width: 100%;
    height: auto;
    display: block;
  }

  section.secure-the-future .secure-the-future-wrapper .secure-the-future-content p {
    font-size: 16px;
  }
}

/*===== DAF CUSTOM STYLES =====*/

section.daf-code {
  display: flex;
  justify-content: space-between;
}

section.daf-code .daf-content {
  flex-basis: 52%;
}

section.daf-code .daf-content h3 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 1rem;
}

section.daf-code .daf-content p {
  font-size: 18px;
}

section.daf-code .daf-content h4 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 1rem;
  margin-top: 1.5rem;
}

section.daf-code .daf-content p.more-info {
  margin-top: 1rem;
}

section.daf-code .daf-form {
  flex-basis: 40%;
}

#dafdirectdiv {
  width: 100% !important;
  margin-inline: auto;
  padding: 2rem !important;
}

#dafdirectdiv .whatThis a {
  width: 100% !important;
}

#dafdirectdiv .dafdirectDonateFrom {
  width: 100%;
  padding-block: 1rem;
  text-indent: 1rem;
  background: none;
  font-size: 1rem;

  margin-bottom: 1rem;
}

#dafdirectdiv label {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

#dafdirectdiv .dafdirectInputFull {
  width: 100%;
  padding-block: 1rem;
  text-indent: 1rem;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
  font-size: 1rem;
}

#dafdirectdiv #amountNextContain > div {
  float: unset;
}

#dafdirectdiv #dafdirect_amnt {
  width: 200px;
  margin-top: 0.5rem;
  padding-block: 1rem;
  text-indent: 1rem;
  font-size: 1rem;
}

#dafdirectdiv div.dafdirectButtonContain {
  width: 100%;
  margin-top: 0.5rem;
}

#dafdirectdiv div.dafdirectButtonContain a {
  display: block;
  width: 100%;
  position: relative;
  height: 52px;
  margin-top: 1rem;
  color: white;
  text-decoration: none;
  font-size: 1rem;
}
#dafdirectdiv div.dafdirectButtonContain a img {
  position: relative;
  visibility: hidden;
}

#dafdirectdiv div.dafdirectButtonContain a::after {
  content: "Next";
  position: absolute;
  inset: 0%;
  padding: 1rem;
  text-align: center;
  background: #365f7d;
}

/*===== DAF RESPONSIVENESS =====*/
@media screen and (max-width: 1200px) {
  section.daf-code .daf-content {
    flex-basis: 42%;
  }

  section.daf-code .daf-form {
    flex-basis: clamp(24.375rem, 4.375rem + 41.6667vw, 35.625rem);
  }
}

@media screen and (max-width: 800px) {
  section.daf-code {
    flex-direction: column;
    gap: 2rem;

    padding-top: 0;
  }
}

@media screen and (max-width: 600px) {
  #dafdirectdiv {
    padding: 1rem !important;
  }

  #dafdirectdiv #amountNextContain > div {
    width: 100%;
  }

  #dafdirectdiv #dafdirect_amnt {
    width: 100%;
  }
}

section.donate-stocks {
  margin-bottom: 3rem;
  font-size: 18px;
  display: flex;
  justify-content: space-between;
  margin-top: 3rem;
}

section.donate-stocks h3 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 1rem;
}

section.donate-stocks h4 {
  background-color: rgba(109, 141, 54, 0.2);
  padding: 0.5rem 1rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

section.donate-stocks p {
  margin-bottom: 1rem;
  font-size: 18px;
}

section.donate-stocks .stock-content {
  flex-basis: 55%;
}

section.donate-stocks .stock-steps {
  flex-basis: 40%;
}

/*===== STOCK STEPS STYLES =====*/
.kenya-mpesa {
  width: 100%;
  border: solid 5px var(--gray);
  margin-bottom: 3rem;
}

.kenya-mpesa h2 {
  background-color: rgba(109, 141, 54, 0.2);
  padding: 0.5rem 1rem;
  color: var(--indigo-secondary);
  font-weight: bold;
}

.kenya-mpesa ul.steps-ul {
  padding: 0.5rem 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 2rem;
}

.kenya-mpesa ul.steps-ul li {
  display: flex;
  gap: 0.5rem;
  color: var(--indigo-secondary);
  line-height: 1.6;
  align-items: first baseline;
}

.kenya-mpesa ul li a {
  color: var(--indigo-secondary);
}

.kenya-mpesa ul li > div {
  display: block;
}

.kenya-mpesa ul li div:first-child {
  width: 15px;
  height: 25px;
  border-radius: 50%;
  background-color: rgba(109, 141, 54, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-basis: 25px;
}

.kenya-mpesa ul li div:last-child {
  flex-basis: 90%;
}

.or {
  margin-bottom: 3rem;
  width: 100%;
  text-align: center;
  background: var(--green-primary);
  padding-block: 1rem;
  color: white;
  font-weight: bold;
}

/*===== STOCKS RESPONSIVENESS =====*/
@media screen and (max-width: 1200px) {
  section.donate-stocks .stock-content {
    flex-basis: 42%;
  }

  section.donate-stocks .stock-steps {
    flex-basis: clamp(24.375rem, 4.375rem + 41.6667vw, 35.625rem);
  }
}

@media screen and (max-width: 800px) {
  section.donate-stocks {
    flex-direction: column;
    gap: 2rem;

    padding-top: 0;
    margin-top: unset;
  }
}

/*===== IMAGE-SHORT-DESCRIPTION-CTA BLOCK STYLES =====*/

section.image-short-description-cta .container {
  --grid-item-width: max(37vw, 512px);
  padding-right: 20px;
  border: thin solid var(--green-primary);
  display: grid;
  grid-template-columns: min(40vw, 512px) auto;
  grid-template-rows: repeat(11, min(3.55vw, 45.4px));
  grid-column-gap: clamp(1rem, -20rem + 28vw, 4.5rem);
}

section.image-short-description-cta .container .image-short-description-cta-image {
  width: 40vw;
  max-width: 512px;
  aspect-ratio: 512 / 500;
  background: var(--green-primary);
}

section.image-short-description-cta .container .image-short-description-cta-image img {
  width: 100%;
  display: block;
  height: auto;
  aspect-ratio: 512 / 500;
}

section.image-short-description-cta .container .image-short-description-cta-content {
  max-width: 547px;
}

section.image-short-description-cta .container .image-short-description-cta-content {
  padding-top: 32px;
}

section.image-short-description-cta .container h2 {
  font-family: var(--design-fonts);
  font-size: clamp(3rem, 0rem + 4vw, 3.5rem);
  padding-bottom: 32px;
  margin-bottom: 2rem;
  border-bottom: thin solid var(--gray);
}

section.image-short-description-cta .container h2 strong {
  font-weight: lighter;
  color: var(--green-primary);
}

section.image-short-description-cta .container .image-short-description-cta-content-cta {
  margin-top: 2rem;
}

section.image-short-description-cta .container .image-short-description-cta-content-heading {
  grid-column-start: 2;
  grid-row-start: 1;
  grid-row-end: 5;
  padding-right: 20px;
  padding-top: 2rem;
}

section.image-short-description-cta .container .image-short-description-cta-paragraph {
  grid-column-start: 2;
  grid-row-start: 6;
  padding-right: 1.5rem;
  padding-top: 1.5rem;
}

section.image-short-description-cta .container .image-short-description-cta-content-cta button {
  padding: 0.75rem 1.5rem;
  outline: none;
  border: thin solid var(--green-primary);
  background: var(--green-primary);
  color: white;
  font-family: var(--knockout-font-family);
  letter-spacing: 1px;
  font-size: 20px;
  cursor: pointer;
}

/*===== IMAGE-SHORT-DESCRIPTION-CTA BLOCK RESPONSIVE STYLES =====*/
@media screen and (max-width: 1199px) {
  section.image-short-description-cta .container {
    grid-template-columns: 275px auto;
    grid-template-rows: 268.55px auto;
    grid-column-gap: unset;
  }

  section.image-short-description-cta .container .image-short-description-cta-image {
    width: 275px;
  }

  section.image-short-description-cta .container .image-short-description-cta-content {
    max-width: unset;
  }

  section.image-short-description-cta .container .image-short-description-cta-content-heading {
    grid-row-end: 2;
    border-bottom: thin solid var(--gray);
    padding-right: 1rem;
  }

  section.image-short-description-cta .container .image-short-description-cta-content-heading h2 {
    padding-left: 1.25rem;
    border: none;
    width: clamp(22.3125rem, -4.3966rem + 55.8621vw, 37.5rem);
  }

  section.image-short-description-cta .container .image-short-description-cta-paragraph {
    grid-column-start: 1;
    grid-column-end: 3;
    display: unset;
    padding: 1.5rem;
  }
}

@media screen and (max-width: 767px) {
  section.image-short-description-cta .container {
    display: flex;
    flex-direction: column;
    width: 514px;
  }

  section.image-short-description-cta .container .image-short-description-cta-image {
    width: 100%;
  }

  section.image-short-description-cta .container .image-short-description-cta-content-heading {
    border: none;
  }

  section.image-short-description-cta .container .image-short-description-cta-content-heading h2 {
    width: unset;
    border-bottom: thin solid var(--gray);
    margin-left: 1.25rem;
    padding-left: unset;
    margin-bottom: unset;
  }
}

@media screen and (max-width: 599px) {
  section.image-short-description-cta .container {
    width: 90%;
  }

  section.image-short-description-cta .container h2 {
    font-size: clamp(2.5rem, 1rem + 6.6667vw, 3.5rem);
  }
}

/*===== LONG-PARAGRAPHS-WITH-A-LIST BLOCK STYLES =====*/
section.long-paragraphs-with-lists {
  width: 850px;
  margin: 0 auto;
}

section.long-paragraphs-with-lists h2 {
  font-family: var(--design-fonts);
  font-size: clamp(3rem, 0rem + 4vw, 3.5rem);
  font-weight: lighter;
  text-align: center;
  margin-bottom: 2rem;
}

section.long-paragraphs-with-lists h2 strong {
  font-weight: lighter;
  color: var(--green-primary);
}

section.long-paragraphs-with-lists .long-paragraphs-with-lists-paragraphs > div {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

section.long-paragraphs-with-lists .long-paragraphs-with-lists-paragraphs ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

section.long-paragraphs-with-lists .long-paragraphs-with-lists-paragraphs ul li h3 {
  display: flex;
  align-items: first baseline;
  gap: 0.5rem;
  font-size: 20px;
  margin-bottom: 0.5rem;
}

section.long-paragraphs-with-lists .long-paragraphs-with-lists-paragraphs ul li h3::before {
  content: "";
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: var(--green-primary);
}

section.long-paragraphs-with-lists .long-paragraphs-with-lists-paragraphs ul li > div {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/*===== LONG-PARAGRAPHS-WITH-A-LIST BLOCK RESPONSIVE STYLES =====*/
@media screen and (max-width: 899px) {
  section.long-paragraphs-with-lists {
    width: 90%;
  }
}

@media screen and (max-width: 599px) {
  section.image-short-description-cta .container h2 {
    font-size: clamp(2.5rem, 1rem + 6.6667vw, 3.5rem);
  }
}

/*===== GALLERY BLOCK STYLES =====*/

section.gallery h2 {
  font-family: var(--design-fonts);
  font-size: clamp(3rem, 0rem + 4vw, 3.5rem);
  font-weight: lighter;
  text-align: center;
  margin-bottom: 2rem;
}

section.gallery h2 strong {
  font-weight: lighter;
  color: var(--green-primary);
}

section.gallery .gallery-container {
  width: 80%;
  max-width: 1120px;
  height: 55vw;
  margin: 0 auto;
}

section.gallery .gallery-container .main-img {
  width: 70%;
  height: 35vw;
  margin: 0 auto;
  position: relative;
}

section.gallery .gallery-container .main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  box-shadow: 0 3px 10px rgb(0 0 0 / 0.2);
}

section.gallery .gallery-container .main-img .main-img-controls {
  width: 100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  color: white;
  display: flex;
  justify-content: space-between;
}

section.gallery .gallery-container .main-img .main-img-controls i {
  padding: 0.5rem 0.7rem;
  border-radius: 50%;
  background: rgba(109, 141, 54, 0.7);
  cursor: pointer;
}

section.gallery .gallery-container .main-img .main-img-controls i:nth-child(1) {
  margin-left: -3rem;
}

section.gallery .gallery-container .main-img .main-img-controls i:nth-child(2) {
  margin-right: -3rem;
}

section.gallery .gallery-container .main-img .main-img-controls i:hover {
  background: var(--green-primary);
}

section.gallery .gallery-container .scroll-imgs {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-inline: contain;
  height: 15vw;
  max-height: 210px;

  margin-top: 2rem;
  box-shadow: 0 3px 10px rgb(0 0 0 / 0.2);

  padding: 0 clamp(0.2rem, 0.1111rem + 0.4444vw, 0.5rem);
  display: grid;
  grid-gap: clamp(0.2rem, 0.0815rem + 0.5926vw, 0.6rem);
  grid-auto-flow: column;
  grid-auto-columns: 23%;
  background: var(--indigo-secondary);
}

section.gallery .gallery-container .scroll-imgs .scroll-img {
  height: 90%;
  max-height: 173.688px;
  margin: auto 0;
  background: transparent;

  z-index: 2;
  cursor: pointer;
}

section.gallery .gallery-container .scroll-imgs .scroll-img img {
  opacity: 0.5;
  position: relative;
}

section.gallery .gallery-container .scroll-imgs .scroll-img.active-image {
  border: solid 2px var(--green-primary);
}

section.gallery .gallery-container .scroll-imgs .scroll-img.active-image img {
  opacity: 1 !important;
}

section.gallery .gallery-container .scroll-img > img {
  inline-size: 100%;
  aspect-ratio: 266 / 184;
  /*height: 12.5vw; */
  object-fit: cover;
  object-position: top;
  overflow: hidden;
  position: relative;
}

/*===== GALLERY BLOCK RESPONSIVE STYLES =====*/
@media screen and (max-width: 599px) {
  section.gallery h2 {
    font-size: clamp(2.5rem, 1rem + 6.6667vw, 3.5rem);
  }
}

/*===== LONG-LIST BLOCK STYLES =====*/
section.long-list {
  margin-bottom: 6rem;
  background-color: var(--indigo-secondary);
  color: white;
}

section.long-list .container .long-list-intro {
  width: 850px;
  margin: 0 auto;
  margin-bottom: 2rem;
  text-align: center;
}

section.long-list .container .long-list-intro h2 {
  font-family: var(--design-fonts);
  font-size: clamp(3rem, 0rem + 4vw, 3.5rem);
  font-weight: lighter;
  text-align: center;
  margin-bottom: 2rem;
}

section.long-list .container .long-list-intro h2 strong {
  font-weight: lighter;
  color: var(--green-primary);
}

section.long-list .container .long-list-body {
  width: 100%;
  display: flex;
  gap: 3rem;
}

section.long-list .container .long-list-body .long-list-content {
  flex-basis: 45%;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

section.long-list .container .long-list-body .long-list-content h3 {
  margin-bottom: 0.5rem;
  display: flex;
  gap: 1.25rem;
  align-items: first baseline;
}

section.long-list .container .long-list-body .long-list-content h3 .bullet {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--green-primary);
}

section.long-list .container .long-list-body .long-list-content h3 span {
  font-size: 24px;
  font-weight: bold;
  color: var(--green-primary);
}

section.long-list .container .long-list-body .long-list-image {
  flex-grow: 1;
  aspect-ratio: 612 / 601;
  background: var(--green-primary);
  height: 100%;
}

section.long-list .container .long-list-body .long-list-image img {
  object-fit: cover;
  aspect-ratio: 612 / 601;
  display: block;
  width: 100%;
  height: auto;
}

/*===== LONG-LIST BLOCK RESPONSIVE STYLES =====*/
@media screen and (max-width: 1023px) {
  section.long-list .container {
    width: 90%;
  }

  section.long-list .container .long-list-intro {
    width: 90%;
  }

  section.long-list .container .long-list-body {
    flex-direction: column-reverse;
  }
}

@media screen and (max-width: 599px) {
  section.long-list .container .long-list-intro {
    width: 100%;
  }
  section.long-list .container .long-list-intro h2 {
    font-size: clamp(2.5rem, 1rem + 6.6667vw, 3.5rem);
  }
}

/*===== TEMPLATE-FAQ BLOCK STYLES =====*/
section.template-faq {
  margin-bottom: 6rem;
  background: var(--indigo-secondary);
}

section.template-faq h2 {
  font-size: clamp(3rem, 0rem + 4vw, 3.5rem);
  font-family: var(--design-fonts);
  text-align: center;
  margin-bottom: 3rem;
  color: white;
}

section.template-faq h2 strong {
  color: var(--green-primary);
}

.jumbotron > div {
  width: 100%;
  text-align: start;
  margin-bottom: 0.75rem;

  background: white;
  border-radius: 10px;
}

.jumbotron .accordion__label {
  text-align: start;
  color: black;
  display: block;
  gap: 1.5rem;
  align-items: center;
  font-size: 24px;
  font-weight: bold;
  padding: 1rem 0rem 1rem 1.5rem;

  cursor: pointer;
  text-decoration: none;
  position: relative;
}

.jumbotron .accordion__label h3 {
  width: 500px;
}

.jumbotron .accordion__label p {
  font-weight: unset;
  font-family: var(--akzidenz-font-family);
  color: black;
  font-size: 18px;
  width: 80%;
  margin-top: 0.25rem;
}

.jumbotron .accordion__label::after {
  content: "\f0d7";
  position: absolute;
  top: 40%;
  transform: translateY(-40%);
  right: 3%;
  width: 12px;
  height: 12px;
  font-weight: 900;
  font-family: "Font Awesome 5 Free";
  color: black;
  transform: content 0.3s ease;
}

.jumbotron .jumbotron-card {
  display: none;
}

.jumbotron .jumbtron-para p {
  color: black;

  line-height: 1.5;
  border-top: none;
  height: fit-content;

  border-top: none;
  overflow: hidden;
  transition: height 0.5s ease, padding 0.3s linear;
  margin-inline: 1.5rem;
}

.jumbotron .accordion__input {
  display: none;
}

.jumbotron .accordion__input:checked ~ .jumbotron-card {
  display: block;
}

.jumbotron .accordion__input:checked ~ .accordion__label::after {
  transform: translateY(50%) rotate(0.5turn);
  color: var(--green-primary);
}

.jumbotron .accordion__input:checked ~ .accordion__label {
  color: var(--green-primary);
}

.jumbotron .accordion__input:checked ~ .jumbotron-card p {
  border-top: thin solid var(--gray);
  padding-block: 1rem;
}

.jumbotron .accordion__input:checked ~ .accordion__label p {
  color: var(--green-primary);
}

/*===== TEMPLATE-FAQ BLOCK RESPONSIVE STYLES =====*/
@media screen and (max-width: 599px) {
  section.template-faq h2 {
    font-size: clamp(2.5rem, 1rem + 6.6667vw, 3.5rem);
  }
}

/*===== FOOTER STYLES =====*/

footer .footer-subscribe {
  background-color: var(--indigo-secondary);
  background-image: url("../images/landing/ol-pejeta-conservancy.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
}

footer .footer-subscribe .subscribe-overlay {
  position: absolute;
  inset: 0;
  z-index: 10;
  width: 100vw;
  background: var(--indigo-secondary);
  display: none;
}

.reveal-subscribe-overlay {
  display: flex !important;
  justify-content: center;
  align-items: center;
}

.reveal-subscribe-overlay p {
  color: white;
  width: 250px;
  display: none;
  text-align: center;
}

.hide-message {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

footer .footer-subscribe .subscribe-overlay .loader {
  left: unset;
  top: unset;
}

footer .footer-subscribe .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding-block: 2rem;
  width: clamp(58.875rem, 16.6622rem + 65.9574vw, 74.375rem);
}

footer .footer-subscribe .container .subscribe-brief p {
  font-size: 24px;
  font-weight: bold;
  color: white;
  text-align: center;
}

footer .footer-subscribe .container .subscribe-brief span {
  color: var(--green-primary);
}

footer .footer-subscribe .container .subscribe-form {
  display: flex;

  isolation: isolate;
  gap: 1rem;
  margin-bottom: 2rem;
  --varying-color: var(--green-primary);
}

footer .footer-subscribe .container .subscribe-form .input-box {
  position: relative;
  width: clamp(18.125rem, -0.625rem + 25vw, 21.25rem);
  isolation: isolate;
}

footer .footer-subscribe .container .subscribe-form .input-box input {
  width: 100%;

  font-size: 20px;
  letter-spacing: var(--letter-spacing);
  padding: 24px 0;
  padding-left: 2rem;
  color: white;
  background-color: transparent;
  outline: none;
  border: thin solid rgba(255, 255, 255, 0.25);
  position: relative;
  z-index: 1;
  border-radius: 5px;
}

footer .footer-subscribe .container .subscribe-form .input-box span {
  position: absolute;
  left: 2rem;
  z-index: 2;
  padding: 24px 0;
  color: rgba(255, 255, 255, 0.25);
  font-size: 18px;
  text-transform: uppercase;
  pointer-events: none;
  transition: all 0.4s ease-in-out;
}

footer .footer-subscribe .container .subscribe-form .input-box input:valid ~ span {
  color: var(--varying-color);
  transform: translateX(-27px) translateY(-22px);

  font-size: 13px;
}

footer .footer-subscribe .container .subscribe-form .input-box input:focus ~ span {
  color: var(--varying-color);
  transform: translateX(-27px) translateY(-22px);

  font-size: 13px;
}

footer .footer-subscribe .container .subscribe-form .input-box input:valid {
  border: thin solid var(--varying-color);
}

footer .footer-subscribe .container .subscribe-form .input-box input:focus {
  border: thin solid var(--varying-color);
}

footer .footer-subscribe .container .subscribe-form input::placeholder {
  font-size: 20px;
  letter-spacing: var(--letter-spacing);
  color: white;
  text-transform: uppercase;
  font-size: 18px;
}

/*footer .footer-subscribe .container  .subscribe-form{
   
    box-shadow: rgba(114, 162, 65, 0.6) 0px 0px 0px 3px, rgba(114, 162, 65, 0.1) 0px 0px 20px;
  }*/

footer .footer-subscribe .container .subscribe-form button {
  position: relative;
  z-index: 0;
  background-color: var(--green-primary);
  border: thin solid var(--green-primary);
  outline: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: white;
  height: auto;
  flex-grow: 1;
  padding: 0 1.6rem;
  text-transform: uppercase;
  transition: all 300ms ease;
  font-size: 18px;
}

footer .footer-subscribe .container .subscribe-form button:hover {
  background-color: white;
  color: var(--indigo-secondary);
}

/*footer .footer-subscribe .container .subscribe-form input:focus::placeholder{
    color: var(--gray);
  }*/

/*----- UPPER FOOTER RESPONSIVENESS -----*/
@media screen and (max-width: 1200px) {
  footer .footer-subscribe .container .subscribe-form .input-box {
    width: clamp(15.625rem, 1.0795rem + 22.7273vw, 18.125rem);
  }
}
@media screen and (max-width: 1023px) {
  footer .footer-subscribe .container {
    width: 95%;
  }

  footer .footer-subscribe .container .subscribe-form {
    flex-direction: column;
    width: 500px;
  }

  footer .footer-subscribe .container .subscribe-form .input-box {
    width: 100%;
  }

  footer .footer-subscribe .container .subscribe-form button {
    padding: 24px 0;
  }
}

@media screen and (max-width: 789px) {
  footer .footer-subscribe .container {
    flex-direction: column;
    text-align: center;
  }
}

@media screen and (max-width: 538px) {
  footer .footer-subscribe .container .subscribe-form {
    width: 95vw;
  }
}

@media screen and (max-width: 402px) {
  footer .footer-subscribe .container .subscribe-brief p {
    font-size: 20px;
  }
}

/*===== BOTTOM FOOTER STYLES =====*/

.footer-bottom {
  background-color: black;
}

.footer-bottom .container {
  width: clamp(57.5625rem, 11.7753rem + 71.5426vw, 74.375rem);
}

.footer-bottom .footer-bottom-content {
  display: grid;
  grid-template-columns: repeat(4, auto);
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--gray);
}

.footer-bottom .footer-bottom-content > div {
  align-self: self-start;
  padding-top: 2rem;
}

.footer-bottom .footer-bottom-content .footer-branding {
  padding: 0;
}

.footer-bottom .footer-socials a {
  text-decoration: none;
  color: var(--green-primary);
  font-size: 24px;
}

/*.footer-bottom .footer-socials a:hover{
    color: white;
  } */

icon-instagram::before {
  content: "\e903";
  color: white;
  font-size: 28px;
}

icon-instagram:before {
  content: "\e903";
  color: white !important;
}

.footer-bottom .footer-branding .footer-socials {
  width: 155px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1rem;
}

.footer-bottom .footer-item-heading {
  font-size: clamp(1.125rem, 0.7846rem + 0.5319vw, 1.25rem);
  font-family: var(--design-fonts);
  color: white;
  letter-spacing: 2px;
  font-weight: 300;
  display: inline-block;
}

.footer-bottom ul li i {
  color: var(--green-primary);
  margin-right: 1.25rem;
  margin-top: 1rem;
}
.footer-bottom ul li a:hover {
  color: var(--green-primary);
}

.footer-bottom ul li a {
  color: white;
  text-decoration: none;
  font-size: 20px;
  letter-spacing: var(--letter-spacing);
  font-weight: bold;
}

.footer-bottom ul li a:hover {
  color: var(--green-primary);
}

.footer-bottom .footer-methods {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: fit-content;
  gap: 1rem;
  justify-self: center;
}

.footer-bottom .footer-contact {
  color: white;
  justify-self: flex-end;
  font-family: var(--akzidenz-font-family);
  letter-spacing: var(--letter-spacing);
}

.footer-bottom .footer-contact .contacts {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-bottom .footer-contact i {
  font-size: 26px;
  color: var(--green-primary);
}

.footer-bottom .footer-contact .contacts a {
  font-size: 18px;
  font-weight: unset;
  text-decoration: underline;
  transition: all 0.3s ease;
  font-family: var(--akzidenz-font-family);
}

.footer-bottom .footer-contact svg {
  margin-right: 0.8rem;
}

.footer-bottom .footer-contact li:nth-child(3) img {
  margin-right: 1.25rem;
  margin-top: 20px;
}

.footer-bottom .footer-bottom-rights {
  color: var(--gray);
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
}

.footer-bottom .footer-bottom-rights span {
  color: var(--green-primary);
}

.footer-bottom .footer-bottom-rights .policies {
  display: flex;
  gap: 0.25rem;
  font-family: var(--knockout-font-family);
  font-size: 1rem;
}

.footer-bottom .footer-bottom-rights .policies a {
  text-decoration: none;
  font-family: var(--knockout-font-family);
  color: var(--gray);
}

.footer-bottom .footer-bottom-rights .policies li {
  padding: 0.25rem 0.5rem;
  border: 2px solid var(--gray);
  cursor: pointer;
  transition: all 0.3s ease;
}

.footer-bottom .footer-bottom-rights .policies li:hover {
  border: 2px solid white;
  color: white;
}

/*----- BOTTOM FOOTER RESPONSIVENESS -----*/

@media screen and (max-width: 1023px) {
  .footer-bottom .footer-bottom-content {
    grid-template-columns: repeat(2, auto);
    width: clamp(38rem, 5.3958rem + 81.5104vw, 57.5625rem);
    justify-content: space-around;
  }

  .footer-bottom .footer-bottom-content > div {
    justify-self: self-start;
  }

  .footer-bottom .footer-item-heading {
    font-size: 1.25rem;
  }

  .footer-bottom .footer-bottom-content .footer-branding {
    grid-column-start: 1;
    grid-column-end: 2;
    grid-row-start: 1;
    grid-row-end: 2;
  }

  .footer-bottom .footer-bottom-content .footer-links {
    grid-column-start: 2;
    grid-column-end: 3;
    grid-row-start: 2;
    grid-row-end: 3;
  }

  .footer-bottom .footer-bottom-content .footer-methods {
    grid-column-start: 2;
    grid-column-end: 3;
    grid-row-start: 1;
    grid-row-end: 2;
  }

  .footer-bottom .footer-bottom-content .footer-contact {
    grid-column-start: 1;
    grid-column-end: 2;
    grid-row-start: 2;
    grid-row-end: 3;
  }

  .footer-bottom .container {
    width: 95%;
  }
}

@media screen and (max-width: 799px) {
  .footer-bottom .container {
    flex-direction: column;
    gap: 1rem;
  }
}

@media screen and (max-width: 639px) {
  .footer-bottom .footer-bottom-content {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    width: 95%;
  }

  .footer-bottom .footer-bottom-content > div {
    justify-self: unset;
    align-self: unset;
    width: 320px;
  }

  .footer-bottom .footer-methods {
    align-items: unset;
    justify-content: unset;
  }

  .footer-bottom .footer-methods img {
    width: 250px;
  }
}

@media screen and (max-width: 639px) {
  .footer-bottom .footer-bottom-rights {
    align-items: start;
  }
}

@media screen and (max-width: 469px) {
  .footer-bottom .footer-bottom-rights span:nth-child(2) {
    display: none;
  }
}
