/*@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 {
  width: 85%;
  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 .branding-logo {
  /*background-color: var(--white-main);
    padding-block: 0.5rem;
    padding-inline: 1.5rem;
    border-radius: 20px;*/
}

.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#animalStory.banner {
  width: 100vw;
  height: 100%;
  background-image: none;
  position: relative;
  min-height: unset;
  isolation: isolate;
  aspect-ratio: 1400 / 680;
}

section#animalStory.banner img {
  object-fit: cover;
  width: 100%;
  object-position: bottom;
  height: 100%;
  aspect-ratio: 1400 / 680;
  display: block;
}

section#animalStory.banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: black;
  opacity: 0.5;
}

section#animalStory.banner .banner-heading {
  position: absolute;
  z-index: 100;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--design-fonts);
  font-size: 70px;
  color: white;
}

/*===== ANIMAL STORY STYLES =====*/

section.animal-story {
  margin-bottom: 3rem;
}

section.animal-story.container {
  width: clamp(71.25rem, 52.5rem + 25vw, 74.375rem);
  padding-top: clamp(1rem, 0.3077rem + 3.0769vw, 3rem);
}

section.animal-story h2 {
  font-family: var(--design-fonts);
  font-size: 150px;
  color: var(--green-primary);
  line-height: 1;
  text-transform: uppercase;
}

section.animal-story .animal-story-body {
  margin-top: 3rem;
  display: flex;
  gap: clamp(3rem, -6rem + 12vw, 4.5rem);
}

section.animal-story .animal-story-body p {
  font-size: 18px;
}

section.animal-story .animal-story-body h2 span {
  display: block;
  font-family: var(--knockout-font-family);
  font-size: 107px;
  color: black;
  grid-column-start: 1;
  grid-column-end: 2;
}

section.animal-story .animal-story-body h2.ranger-heading {
  font-size: 120px;
}

section.animal-story .animal-story-body h2.ranger-heading span {
  font-size: 96px;
}

section.animal-story h2 span.scholarship-title {
  text-transform: uppercase;
  font-size: 89px;
  letter-spacing: 1px;
}

section.animal-story h2 span.k9-title {
  text-transform: uppercase;
  font-size: 107px;
  letter-spacing: 1px;
}

section.animal-story h2 span.najin-title {
  text-transform: uppercase;
  font-size: 107px;
  letter-spacing: 1px;
}

section.animal-story h2 span.sudan-title {
  text-transform: uppercase;
  font-size: 60px;
  letter-spacing: 1px;
}

section.animal-story h2 span.max-title {
  text-transform: uppercase;
  font-size: 280px;
  letter-spacing: 15px;
}

section.animal-story h2 span.poco-title {
  text-transform: uppercase;
  font-size: 240px;
  letter-spacing: 4px;
}

section.animal-story h2 span.manno-title {
  text-transform: uppercase;
  font-size: 180px;
  letter-spacing: 1px;
}

section.animal-story h2 span.baraka-title {
  text-transform: uppercase;
  font-size: 170px;
  letter-spacing: 1px;
}

section.animal-story h2 span.bo-title {
  font-size: 21.875rem;
}

section.animal-story .animal-story-body .animal-story-images {
  grid-row-start: 2;
  grid-column-end: 5;
  grid-column-start: 1;
  grid-column-end: 2;
}

section.animal-story .animal-story-body .animal-story-images .main-image {
  position: relative;
  height: 390px;
  width: 428px;
  overflow: hidden;
}

section.animal-story .animal-story-body .animal-story-images .main-image .track {
  transition: transform 250ms ease-in;
  width: 100%;
  height: 100%;
}

section.animal-story .animal-story-body .animal-story-images .main-image .slider {
  position: absolute;
  height: 100%;
  width: 100%;
}

section.animal-story .animal-story-body .animal-story-images .main-image .slider img {
  width: 100%;
  display: block;
}

section.animal-story .animal-story-body .animal-story-images .main-image i {
  position: absolute;
  font-size: 1.5rem;
  color: white;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0.25rem 0.75rem;
  border-radius: 5px;
}

section.animal-story .animal-story-body .animal-story-images .main-image i:hover {
  background: black;
}

.left-arrow {
  left: 3%;
}

.right-arrow {
  right: 3%;
}

section.animal-story .animal-story-body .animal-story-images .animal-story-thumbnails {
  margin-top: 8px;
  display: flex;
  gap: 13px;
}

section.animal-story .animal-story-body .animal-story-images .animal-story-thumbnails .animal-story-thumbnail {
  width: 134px;
  height: 120.5px;
  cursor: pointer;
  position: relative;
}

section.animal-story .animal-story-body .animal-story-images .animal-story-thumbnails .animal-story-thumbnail img {
  display: block;
  width: 100%;
}

/*section.animal-story .animal-story-body .animal-story-images .animal-story-thumbnails .animal-story-thumbnail::after{
    content: "";
    position: absolute;
    inset: 0;
    background-color: black;
    opacity: 0.5;
}*/

.thumbnail-overlay {
  position: absolute;
  inset: 0;
  background-color: #000;
  opacity: 0.6;
}

.animal-story-thumbnail.active-thumbnail .thumbnail-overlay {
  /*border: 3px solid var(--green-primary);*/
  opacity: 0;
}

section.animal-story .animal-story-body .animal-story-images .main-image .active-thumbnail {
  border: none;
}

i.is-hidden {
  display: none;
}

section.animal-story .animal-story-body .animal-story-first {
  margin-bottom: 2rem;
}

section.animal-story .animal-story-body .the-story {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-bottom: 1px dotted var(--gray);
  padding-bottom: clamp(1rem, 7rem + -8vw, 0rem);
}

section.animal-story .animal-story-body .animal-story-rest a {
  color: black;
}

section.animal-story .animal-story-body .animal-stats {
  margin-top: 1rem;
  grid-column-start: 2;
  grid-column-end: 3;
  display: grid;
  grid-template-columns: repeat(2, auto);
  grid-row-gap: 16px;

  color: var(--gray);
}

section.animal-story .animal-story-body .animal-stats .stats-line {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}

section.animal-story .animal-story-body .animal-stats .stats-line .icon {
  font-size: 24px;
}

section.animal-story .animal-story-body .animal-stats.sudan-stats .stats-line:first-child {
  align-items: start;
}

.sudan-stats .baraka-age {
  display: inline-block;
  width: 200px;
}

/*----- ANIMAL STORY RESPONSIVENESS -----*/
@media screen and (max-width: 1200px) {
  section.animal-story.container {
    width: 96%;
  }

  section.animal-story .animal-story-body {
    gap: 1.5rem;
  }

  .sudan-stats .baraka-age {
    width: 150px;
  }
}

@media screen and (max-width: 1023px) {
  section.animal-story .animal-story-body .animal-stats {
    display: flex;
    flex-direction: column;
  }

  .sudan-stats .baraka-age {
    width: initial;
  }

  section.animal-story .animal-story-body .animal-stats .stats-line:nth-child(2) {
    margin-left: -0.5rem;
  }

  section.animal-story .animal-story-body .animal-stats.sudan-stats .stats-line:nth-child(4) {
    margin-left: -0.3rem;
  }

  section.animal-story .animal-story-body .the-story {
    gap: 1.2rem;
  }

  section.animal-story .animal-story-body .animal-stats.k9-stats .stats-line:nth-child(2) {
    margin-left: 0;
  }
}

@media screen and (max-width: 935px) {
  section.animal-story .animal-story-body {
    flex-direction: column;
    align-items: center;
  }

  section.animal-story .animal-story-body {
    margin: 0 auto;
    width: clamp(27rem, 8.7284rem + 62.069vw, 45rem);
  }

  section.animal-story .animal-story-body.not-ranger {
    width: 725px;
    margin: 0 auto;
  }

  section.animal-story .animal-story-body .the-story {
    width: 100%;
  }

  section.animal-story h2 {
    font-size: 15.5rem;
  }

  section.animal-story h2 span.baraka-title {
    font-size: 17.8125rem;
  }

  section.animal-story h2 span.najin-title {
    font-size: 11.25rem;
  }

  section.animal-story h2 span.sudan-title {
    font-size: 6.3125rem;
  }

  section.animal-story h2 span.manno-title {
    font-size: 19.375rem;
  }

  section.animal-story h2 span.poco-title {
    font-size: 25.625rem;
  }

  section.animal-story h2 span.max-title {
    font-size: 28.75rem;
  }

  section.animal-story h2 span.k9-title {
    font-size: 11.25rem;
  }

  section.animal-story h2 span.scholarship-title {
    font-size: 9.25rem;
  }

  section.animal-story h2 span.bo-title {
    font-size: 21.875rem;
  }

  section.animal-story .animal-story-body .animal-story-images .main-image {
    height: clamp(24.375rem, -2.8571rem + 72.619vw, 39.625rem);
    width: 100%;
  }

  section.animal-story .animal-story-body h2.ranger-heading {
    font-size: clamp(7.45rem, 2.07rem + 18.2759vw, 12.75rem);
  }

  section.animal-story .animal-story-body h2.ranger-heading span {
    font-size: clamp(5.95rem, 1.5851rem + 14.8276vw, 10.25rem);
  }

  .main-image .track img {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 438 / 386;
    display: block;
  }

  section.animal-story .animal-story-body .animal-story-images .animal-story-thumbnails {
    gap: 10px;
  }

  section.animal-story .animal-story-body .animal-story-images .animal-story-thumbnails .animal-story-thumbnail {
    flex-basis: 33%;
    height: auto;
  }

  section.animal-story .animal-story-body .animal-story-images .animal-story-thumbnails .animal-story-thumbnail img {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 134 / 120;
  }

  section.animal-story .animal-story-body .animal-stats {
    margin-top: 1rem;
    grid-column-start: 2;
    grid-column-end: 3;
    display: grid;
    grid-template-columns: repeat(2, auto);
    grid-row-gap: 16px;
    color: var(--gray);
  }

  .sudan-stats .baraka-age {
    width: 150px;
  }
}

@media screen and (max-width: 767px) {
  section.animal-story .animal-story-body.not-ranger {
    width: 620px;
  }
  section.animal-story h2 {
    font-size: 12.75rem;
  }

  section.animal-story h2 span.scholarship-title {
    font-size: 7.75rem;
  }

  section.animal-story h2 span.k9-title {
    font-size: 9.25rem;
  }

  section.animal-story h2 span.max-title {
    font-size: 24rem;
  }

  section.animal-story h2 span.poco-title {
    font-size: 21.5rem;
  }

  section.animal-story h2 span.manno-title {
    font-size: 15.5rem;
  }

  section.animal-story h2 span.sudan-title {
    font-size: 5.25rem;
  }

  section.animal-story h2 span.baraka-title {
    font-size: 14.75rem;
  }

  section.animal-story h2 span.najin-title {
    font-size: 9.35rem;
  }
}
@media screen and (max-width: 719px) {
  section.animal-story .animal-story-body .animal-stats {
    display: flex;
    flex-direction: column;
  }

  .sudan-stats .baraka-age {
    width: initial;
  }
}

@media screen and (max-width: 639px) {
  section.animal-story .animal-story-body.not-ranger {
    width: 450px;
  }
  section.animal-story h2 {
    font-size: 9.75rem;
  }
  section.animal-story h2 span.scholarship-title {
    font-size: 5.75rem;
  }
  section.animal-story h2 span.k9-title {
    font-size: 7rem;
  }

  section.animal-story h2 span.max-title {
    font-size: 18rem;
  }

  section.animal-story h2 span.poco-title {
    font-size: 16.5rem;
  }

  section.animal-story h2 span.manno-title {
    font-size: 12.5rem;
  }

  section.animal-story h2 span.sudan-title {
    font-size: 3.85rem;
  }

  section.animal-story h2 span.baraka-title {
    font-size: 11rem;
  }

  section.animal-story h2 span.najin-title {
    font-size: 6.75rem;
  }
}

@media screen and (max-width: 471px) {
  section.animal-story.container {
    width: 92%;
  }

  section.animal-story .animal-story-body {
    width: 100%;
  }

  section.animal-story .animal-story-body.not-ranger {
    width: 100%;
  }

  section.animal-story .animal-story-body .animal-story-images {
    width: 100%;
  }

  section.animal-story h2 {
    font-size: clamp(7.1875rem, 0.0929rem + 31.5315vw, 9.375rem);
    display: inline-block;
    width: fit-content;
  }

  section.animal-story h2 span.scholarship-title {
    font-size: clamp(4.1875rem, -0.272rem + 19.8198vw, 5.5625rem);
  }

  section.animal-story h2 span.k9-title {
    font-size: clamp(5.125rem, 0.0574rem + 22.5225vw, 6.6875rem);
  }

  section.animal-story h2 span.max-title {
    font-size: clamp(13.125rem, -1.0642rem + 63.0631vw, 17.5rem);
  }

  section.animal-story h2 span.poco-title {
    font-size: clamp(11.5625rem, 0.4139rem + 49.5495vw, 15rem);
  }

  section.animal-story h2 span.manno-title {
    font-size: clamp(8.75rem, 0.6419rem + 36.036vw, 11.25rem);
  }

  section.animal-story h2 span.sudan-title {
    font-size: clamp(2.8125rem, -0.228rem + 13.5135vw, 3.75rem);
  }

  section.animal-story h2 span.baraka-title {
    font-size: clamp(8.125rem, 0.0169rem + 36.036vw, 10.625rem);
  }

  section.animal-story h2 span.najin-title {
    font-size: clamp(5rem, -0.473rem + 24.3243vw, 6.6875rem);
  }

  section.animal-story .animal-story-body .animal-story-images .main-image {
    height: clamp(18.25rem, -1.6149rem + 88.2883vw, 24.375rem);
    width: 100%;
  }

  .needed-number {
    font-size: 16px;
  }

  section.animal-story .animal-story-body h2.ranger-heading {
    font-size: clamp(5.875rem, 0.6047rem + 23.4234vw, 7.5rem);
  }

  section.animal-story .animal-story-body h2.ranger-heading span {
    font-size: clamp(4.65rem, 0.2716rem + 19.4595vw, 6rem);
  }

  /*section.animal-story .animal-story-body .animal-story-images .animal-story-thumbnails .animal-story-thumbnail{
        width: 134px;
        height: clamp(5.69rem, -0.2816rem + 26.5405vw, 7.53125rem);
    } */
}

/*===== EXTRA PARAGRAPHS STYLES =====*/
section.extra-paragraphs {
  border: thin solid var(--green-primary);
  margin-bottom: 4rem;
  margin-inline: auto;
  padding: 2rem;
  gap: 2rem;
}

section.extra-paragraphs.container {
  display: flex;
  justify-content: space-between;
  gap: 2.5rem;
  width: clamp(71.25rem, 52.5rem + 25vw, 74.375rem);
}

section.extra-paragraphs.container .the-paragraphs {
  flex-basis: 65%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

section.extra-paragraphs p {
  font-size: 18px;
}

section.extra-paragraphs.container .extra-paragraph-image {
  width: 328px;
  height: 380px;
}

section.extra-paragraphs.container .extra-paragraph-image img {
  width: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 328 / 379;
}

section.extra-paragraphs.container .extra-paragraph-image .paragraph-image:last-child {
  display: none;
}

/*----- EXTRA PARAGRAPH RESPONSIVENESS -----*/
@media screen and (max-width: 1200px) {
  section.extra-paragraphs.container {
    width: 96%;
  }
}

@media screen and (max-width: 935px) {
  section.extra-paragraphs.container {
    flex-direction: column;
  }

  section.extra-paragraphs.container .extra-paragraph-image {
    display: flex;
    gap: 2rem;
    width: 100%;
    height: auto;
  }

  section.extra-paragraphs.container .extra-paragraph-image .paragraph-image {
    flex-basis: 50%;
  }

  section.extra-paragraphs.container .extra-paragraph-image .paragraph-image:last-child {
    display: block;
  }
}

@media screen and (max-width: 599px) {
  section.extra-paragraphs {
    padding: clamp(1rem, -0.5rem + 6.6667vw, 2rem);
  }

  section.extra-paragraphs.container .extra-paragraph-image .paragraph-image:last-child {
    display: none;
  }

  section.extra-paragraphs.container .extra-paragraph-image {
    width: 100%;
  }

  section.extra-paragraphs.container .extra-paragraph-image .paragraph-image {
    width: 100%;
    flex-basis: 100%;
  }
}

/*===== DONATION FORMS MODAL =====*/

.adoption-forms {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 1);
}

.adoption-forms .container {
  margin-top: 6rem;
  position: relative;
  background-color: white;
}

.adoption-forms .container .close-adoption-modal {
  position: absolute;
  top: -10%;
  border: thin solid white;
  padding: 0.5rem 1rem;
  outline: none;
  background-color: transparent;
  color: white;
  font-size: 16px;
  cursor: pointer;
}

.adoption-forms .container iframe {
  width: 100%;
  height: 78vh;
  object-fit: cover;
}

/*===== TAKE ACTION STYLES =====*/
section.take-action {
  margin-bottom: 3rem;
}

section.take-action .container {
  display: flex;
  gap: clamp(3rem, -5.069rem + 13.7931vw, 7rem);
  align-items: center;
  width: clamp(71.25rem, 52.5rem + 25vw, 74.375rem);
}

section.take-action .container .take-action-content {
  flex-basis: 45%;
  font-size: 18px;
  font-family: var(--akzidenz-font-family);
}

section.take-action .container .take-action-content h2 {
  font-family: var(--design-fonts);
  font-size: 42px;
  color: var(--green-primary);
  margin-bottom: 1rem;
}

section.take-action .container .take-action-content p {
  margin-bottom: 1rem;
  font-size: 18px;
}

.take-action-links {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.take-action-links button {
  width: 100%;
  font-family: var(--knockout-font-family);
  font-size: 34px;
  color: var(--green-primary);
  cursor: pointer;
  padding-block: 1.25rem;
  background-color: transparent;
  border-radius: 50px;
  border: thin solid var(--green-primary);
  transition: all 0.3s ease;
}

.take-action-links button:hover {
  background-color: var(--green-primary);
  color: white;
}

/*----- TAKE ACTION RESPONSIVENESS -----*/
@media screen and (max-width: 1200px) {
  section.take-action .container {
    width: 96%;
  }
}

@media screen and (max-width: 935px) {
  section.take-action .container {
    flex-direction: column;
    width: clamp(26.75rem, -5.8393rem + 86.9048vw, 45rem);
  }

  .take-action-links {
    width: 100%;
  }
}

@media screen and (max-width: 471px) {
  section.take-action .container {
    width: 95%;
  }

  .take-action-links button {
    font-size: clamp(1.875rem, 1.0642rem + 3.6036vw, 2.125rem);
  }
}

/*===== ADOPT PACKAGE STYLES =====*/
section.adopt-package {
  padding-bottom: 6rem;
  padding-top: 3rem;
}

section.adopt-package .container {
  width: clamp(71.25rem, 52.5rem + 25vw, 74.375rem);
}

section.adopt-package h2 {
  font-family: var(--design-fonts);
  font-size: 40px;
  line-height: 1.25;
}

section.adopt-package h2 span {
  color: var(--green-primary);
}

section.adopt-package h3 {
  margin-block: 2rem;
  font-size: 24px;
  font-weight: bold;
  color: var(--green-primary);
}

section.adopt-package .package-icons {
  display: grid;
  grid-template-columns: repeat(4, auto);
  grid-row-gap: 3rem;
}

section.adopt-package .package-icons {
  text-align: center;
  margin-top: 3rem;
}

section.adopt-package .package-icons p {
  font-size: 18px;
}

section.adopt-package .package-icons .package-icon:first-child {
  justify-self: start;
}

section.adopt-package .package-icons .package-icon:nth-child(4) {
  justify-self: end;
}

section.adopt-package .package-icons .package-icon:nth-child(5) {
  justify-self: start;
}

/*----- ADOPT PACKAGE RESPONSIVENESS -----*/

@media screen and (max-width: 1200px) {
  section.adopt-package .container {
    width: 96%;
  }
}

@media screen and (max-width: 935px) {
  section.adopt-package h2 {
    text-align: center;
  }

  section.adopt-package .container {
    width: 90%;
  }

  section.adopt-package .package-icons {
    grid-template-columns: repeat(3, auto);
  }

  section.adopt-package .package-icons .package-icon:nth-child(4) {
    justify-self: start;
  }

  section.adopt-package .package-icons .package-icon:nth-child(5) {
    justify-self: center;
  }
}

@media screen and (max-width: 765px) {
  section.adopt-package .package-icons {
    grid-template-columns: repeat(2, auto);
  }

  section.adopt-package .package-icons .package-icon:nth-child(1) {
    justify-self: center;
  }

  section.adopt-package .package-icons .package-icon:nth-child(4) {
    justify-self: center;
  }

  section.adopt-package .package-icons .package-icon:nth-child(5) {
    justify-self: center;
  }
}

@media screen and (max-width: 560px) {
  section.adopt-package .container {
    width: 95%;
  }

  .large-icon {
    width: 280px;
  }
}

@media screen and (max-width: 483px) {
  section.adopt-package h2 {
    font-size: clamp(1.875rem, 0.0457rem + 8.1301vw, 2.5rem);
    text-align: center;
  }

  section.extra-buttons .take-action-links {
    width: 90vw;
  }

  .large-icon {
    width: 200px;
  }
}

@media screen and (max-width: 389px) {
  section.adopt-package .package-icons {
    display: flex;
    flex-direction: column;
  }

  section.adopt-package .package-icons p {
    margin: 0 auto;
  }

  .large-icon {
    width: 300px;
  }
}

/*===== EXTRA BUTTONS STYLES =====*/
section.extra-buttons {
  margin-bottom: 6rem;
}

section.extra-buttons .take-action-links {
  width: 450px;
  margin-inline: auto;
}

@media screen and (max-width: 483px) {
  section.extra-buttons .take-action-links {
    width: 95%;
  }
}

.to-iframe-page {
  display: none;
}

/*===== FOOTER STYLES =====*/
