:root {
  --purple-dark: #48004f;
  --purple-light: #a91a85;
  --pure-white: white;
  --yellow-2: #ffd449;
  --pure-black: black;
  --purple-medium: #650a6e;
  --pink: #ff84b4;
  --orange: #f5935b;
  --grey: #333;
  --dark-green: #114817;
  --dark-olive-green: #3d612d;
  --yellow: #ffe100;
  --light-grey: #cad2d9;
  --old-lace: #fff7e3;
  --ivory: #fcf9ea;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

body {
  color: var(--purple-dark);
  font-family: Inter, sans-serif;
  font-size: 28px;
  line-height: 1.5em;
}

h1 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: Syne, sans-serif;
  font-size: 144px;
  font-weight: 700;
  line-height: .9em;
}

h2 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: Syne, sans-serif;
  font-size: 96px;
  font-weight: 700;
  line-height: 1.1em;
}

h3 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: Syne, sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2em;
}

h4 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: Syne, sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4em;
}

h5 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: Syne, sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5em;
}

h6 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: Syne, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5em;
}

p {
  margin-bottom: 0;
  font-size: 28px;
  line-height: 1.5em;
}

a {
  color: var(--purple-dark);
  cursor: pointer;
  text-decoration: underline;
  transition: color .2s cubic-bezier(.77, 0, .175, 1);
}

a:hover {
  color: var(--purple-light);
}

ul, ol {
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 2rem;
}

li {
  line-height: 1.5em;
}

img {
  max-width: 100%;
  display: inline-block;
}

strong {
  font-weight: 700;
}

em {
  font-style: italic;
}

blockquote {
  border-left: 0 #ebebeb;
  margin-bottom: 0;
  padding: 0;
  font-family: Syne, sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.4em;
}

figure {
  margin-bottom: 10px;
}

figcaption {
  text-align: center;
  margin-top: 5px;
  margin-bottom: 80px;
}

.sg-content {
  margin-top: 3rem;
  position: relative;
}

.sg-label {
  color: #aaa;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: .5rem;
  margin-bottom: 1rem;
  font-family: Source Sans Pro;
  font-size: 11px;
  line-height: 1em;
}

.sg-section {
  background-color: var(--pure-white);
  border: 3px solid #000;
  border-radius: .25rem;
  max-width: 60rem;
  margin: 3rem auto;
  padding: 2rem;
  display: block;
  box-shadow: 0 1px 1px #0003;
}

.sg-title {
  color: #0d151c;
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-family: Source Sans Pro;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.5em;
  display: inline-block;
  position: static;
  top: 0;
  left: 0;
}

.sg-color-block {
  background-color: #ebebeb;
  border-radius: 4px;
  height: 5rem;
  margin-top: 0;
}

.sg-color-block.sg-body-color {
  color: #48004f;
  background-color: #48004f;
}

.sg-color-block.sg-yellow-color {
  background-color: var(--yellow-2);
  color: var(--yellow-2);
}

.sg-color-block.sg-header-color {
  color: #48004f;
  background-color: #48004f;
}

.sg-color-block.sg-black-color {
  background-color: var(--pure-black);
  color: var(--pure-black);
}

.sg-color-block.sg-white-color {
  background-color: var(--pure-white);
  color: var(--pure-white);
}

.sg-color-block.sg-purple-light-color {
  background-color: var(--purple-light);
  color: var(--purple-light);
}

.sg-color-block.sg-purple-medium-color {
  background-color: var(--purple-medium);
  color: var(--purple-medium);
}

.sg-color-block.sg-purple-dark-color {
  background-color: var(--purple-dark);
  color: var(--purple-dark);
}

.sg-color-block.sg-pink-color {
  background-color: var(--pink);
  color: var(--pink);
}

.sg-color-block.sg-orange-color {
  background-color: var(--orange);
  color: var(--orange);
}

.sg-description {
  color: #323f4b;
  background-color: #ffec00;
  border-radius: 4px;
  margin-bottom: 3rem;
  padding: 1rem;
  font-family: Source Sans Pro;
  font-size: 1rem;
  line-height: 1.5em;
}

.sg-logo-container {
  border: 1px solid #aaa;
  border-radius: 4px;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  display: flex;
  position: relative;
}

.sg-divider {
  background-color: #f3f3f5;
  width: 100%;
  height: 1px;
  margin-top: 1rem;
  margin-bottom: .5rem;
}

.utility-page-wrapper {
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  display: flex;
}

.utility-page-content {
  text-align: center;
  flex-direction: column;
  max-width: 20rem;
  display: flex;
}

.utility-page-form {
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.sg-column {
  padding-left: .75rem;
  padding-right: .75rem;
}

.sg-columns {
  margin-left: -1rem;
  margin-right: -1rem;
}

.sg-subtitle {
  color: #222;
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-family: Source Sans Pro;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5em;
  display: inline-block;
  position: static;
  top: 0;
  left: 0;
}

.sg-form-element {
  margin-bottom: 2rem;
}

.input {
  color: #0d151c;
  border: 1px solid #cbd2d9;
  border-radius: 3px;
  width: 100%;
  max-width: 20rem;
  height: 2.5rem;
  margin-bottom: 1rem;
  padding: 0 .5rem 0;
  line-height: 2.5rem;
  transition: border-color .2s cubic-bezier(.77, 0, .175, 1);
}

.input:hover, .input:focus {
  border-color: #616e7c;
}

.input::placeholder {
  color: #cbd2d9;
}

.input.search-input {
  margin-right: 1rem;
  font-size: 28px;
}

.field-label {
  color: #0d151c;
  max-width: 20rem;
  margin-bottom: 0;
  font-weight: 600;
}

.textarea {
  color: #0d151c;
  border: 1px solid #cbd2d9;
  border-radius: 3px;
  max-width: 32rem;
  min-height: 8rem;
  margin-bottom: 1rem;
  padding: .5rem;
  line-height: 1.5em;
  transition: border-color .2s cubic-bezier(.77, 0, .175, 1);
}

.textarea:hover, .textarea:focus {
  border-color: #616e7c;
}

.textarea::placeholder {
  color: #cbd2d9;
}

.checkbox-field {
  align-items: center;
  margin-top: 1rem;
  margin-bottom: 2rem;
  padding-left: 0;
  display: flex;
}

.checkbox {
  width: 2rem;
  height: 2rem;
  margin-top: 0;
  margin-left: 0;
  margin-right: .5rem;
  position: relative;
}

.checkbox.w--redirected-checked {
  background-color: var(--purple-medium);
}

.radio-button {
  margin-top: 0;
  margin-left: 0;
  margin-right: .5rem;
  display: block;
}

.radio-button-field {
  align-items: center;
  margin-top: 1rem;
  margin-bottom: 2rem;
  margin-right: 0;
  padding-left: 0;
  display: flex;
}

.select-field {
  background-color: var(--pure-white);
  max-width: 12rem;
}

.button-2 {
  color: var(--pure-white);
  cursor: pointer;
  background-color: #323f4b;
  border-radius: 3px;
  height: 2.5rem;
  padding: 0 1rem;
  line-height: 2.5rem;
  transition: background-color .2s cubic-bezier(.77, 0, .175, 1), color .2s cubic-bezier(.77, 0, .175, 1);
}

.button-2:hover, .button-2:active {
  background-color: #616e7c;
}

.button-2:focus {
  background-color: #323f4b;
}

.sg-label-link {
  color: #616e7c;
  cursor: pointer;
  font-size: 11px;
  font-weight: 600;
  line-height: 1em;
  transition: color .2s cubic-bezier(.77, 0, .175, 1);
}

.sg-label-link:hover {
  color: #ffec00;
}

.tri-burger {
  color: var(--pure-black);
  width: 1.5em;
  height: 1.5em;
  transition: color .2s cubic-bezier(.645, .045, .355, 1);
  display: block;
}

.tri-burger.w--open {
  color: var(--pure-black);
  background-color: #0000;
}

.tri-burger-box {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  inset: 0%;
}

.tri-burger-inner {
  height: 1px;
  top: 50%;
}

.wearegoat-link {
  cursor: pointer;
  width: 100%;
  max-width: 6rem;
  font-size: 16px;
  font-weight: 400;
}

.wearegoat-link:hover {
  color: #ffec00;
}

.sg-additional-element {
  margin-bottom: 2rem;
}

.top-bar {
  background-color: #0000;
}

.rich-text ul, .rich-text ol {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.rich-text h1 {
  max-width: 52rem;
  margin-bottom: 2rem;
  font-size: 42px;
}

.rich-text h2 {
  max-width: 52rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.rich-text h3 {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.rich-text h4, .rich-text h5 {
  max-width: 52rem;
  margin-top: 2rem;
  margin-bottom: .5rem;
}

.rich-text blockquote {
  max-width: 52rem;
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.rich-text figcaption {
  color: var(--purple-dark);
  text-align: left;
  margin-top: .5rem;
  margin-bottom: 2rem;
  font-size: 16px;
  line-height: 1.5em;
}

.rich-text figure {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.rich-text h6 {
  max-width: 52rem;
  margin-top: 2rem;
}

.rich-text li {
  max-width: 52rem;
}

.rich-text p {
  max-width: 52rem;
  margin-bottom: 1em;
}

.rich-text h3 {
  max-width: 52rem;
  margin-bottom: 0;
  font-weight: 500;
}

.rich-text.partner-content-text {
  color: var(--grey);
  flex: 0 45rem;
  max-width: 45rem;
}

.logo-container {
  color: var(--purple-medium);
  width: 100%;
  max-width: 6rem;
}

.cookie-notice-text {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4em;
}

.cookie-policy-link:hover {
  color: var(--purple-light);
}

.four-oh-four-heading, .protected-heading {
  margin-bottom: 1rem;
}

.error-notice {
  color: red;
  text-align: center;
  background-color: #0000;
  margin-top: .5rem;
  padding: 0;
}

.search {
  margin-top: 3rem;
  display: flex;
}

.search-result-item {
  margin-bottom: 7rem;
}

.search-result-title {
  margin-bottom: .5rem;
  font-size: 48px;
  font-weight: 600;
  line-height: 1.2em;
  display: block;
}

.search-result-snippet {
  max-width: 52rem;
  font-size: 28px;
  line-height: 1.4em;
}

.search-results {
  margin-top: 5rem;
}

.bi-burger {
  color: var(--pure-black);
  width: 1.5em;
  height: 1.5em;
  margin-top: .7rem;
  padding: 0;
  transition: opacity .2s cubic-bezier(.645, .045, .355, 1);
}

.bi-burger:hover {
  opacity: .7;
}

.bi-burger.w--open {
  color: var(--pure-black);
  background-color: #0000;
}

.bi-burger-box {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  inset: 0%;
}

.bi-burger-inner {
  height: 1px;
  top: 50%;
}

.cookie-notice {
  background-color: var(--pure-white);
  border-radius: .5rem;
  align-items: center;
  max-width: 20rem;
  padding: 1rem;
  font-size: 18px;
  line-height: 1.5em;
  transition: opacity .2s cubic-bezier(.19, 1, .22, 1), transform .2s cubic-bezier(.19, 1, .22, 1);
  display: flex;
  position: fixed;
  inset: auto auto 2rem 3rem;
  box-shadow: 1px 1px 20px #0000004d;
}

.cookie-close-icon {
  color: var(--purple-dark);
  text-align: center;
  cursor: pointer;
  flex: none;
  width: 1.5rem;
  height: 1.5rem;
  margin-right: 1rem;
  font-size: 16px;
  line-height: 1.5em;
  transition: color .2s cubic-bezier(.645, .045, .355, 1);
  position: relative;
}

.cookie-close-icon:hover {
  color: var(--purple-light);
}

.cookie-embed {
  opacity: 0;
  width: 0;
  height: 0;
  margin-bottom: 0;
  display: none;
  overflow: hidden;
}

.field-wrapper {
  margin-bottom: 2rem;
}

.logomark-container {
  color: var(--purple-medium);
  width: 100%;
  max-width: 5rem;
  transition: opacity .4s cubic-bezier(.19, 1, .22, 1);
  transform: translate(0, 1rem);
}

.logomark-container:hover {
  opacity: .7;
}

.top-bar-2 {
  z-index: 900;
  color: var(--yellow-2);
  background-image: linear-gradient(#fff, #fff0);
  align-items: center;
  height: 120px;
  position: fixed;
  inset: 0% 0% auto;
}

.search-trigger-container {
  width: 1.5rem;
  height: 1.5rem;
  margin-top: .7rem;
  margin-left: auto;
  line-height: 0;
  position: relative;
}

.svg-icon-embed {
  cursor: pointer;
  transition: opacity .4s cubic-bezier(.19, 1, .22, 1);
  position: absolute;
  inset: 0%;
}

.svg-icon-embed:hover {
  opacity: .7;
}

.svg-icon-embed.cross-icon {
  opacity: 0;
}

.navigation-container {
  color: #e4b10c;
  background-color: #0000;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  margin-top: 0;
  margin-left: 2rem;
  display: flex;
  position: static;
}

.navigation-container:hover {
  color: var(--yellow-2);
}

.navigation-item {
  color: var(--dark-green);
  margin-right: 2rem;
  padding: 0;
  font-family: Poetsenone, sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.5em;
  transition: opacity .4s cubic-bezier(.19, 1, .22, 1);
}

.navigation-item:hover {
  opacity: .7;
  color: var(--dark-green);
}

.navigation-item.w--current {
  color: var(--dark-green);
}

.section {
  margin-bottom: 20rem;
  position: relative;
}

.section.hero-section {
  min-height: 100vh;
  margin-bottom: 12rem;
  padding-top: 30vh;
  padding-bottom: 30vh;
}

.section.about-section {
  color: var(--pure-white);
  min-height: 75rem;
  margin-bottom: 0;
  padding-top: 20rem;
  padding-bottom: 12rem;
}

.section.first-section {
  margin-top: 12rem;
}

.section.pet-hero-section {
  min-height: 100vh;
  margin-bottom: 0;
  padding-top: 30vh;
  padding-bottom: 30vh;
}

.section.pet-about-section {
  color: var(--pure-white);
  min-height: 100vh;
  margin-bottom: 0;
  padding-top: 24rem;
  padding-bottom: 24rem;
}

.section.pet-about-section.section-no-margin {
  padding-top: 12rem;
}

.section.adopt-section {
  background-image: linear-gradient(to top, #ff97b0, #ff9d2b);
  padding-top: 2rem;
  padding-bottom: 12rem;
}

.section.adopt-section.section-no-margin, .section.details-section {
  margin-bottom: 0;
}

.section.notes-section {
  flex-direction: column;
  justify-content: center;
  min-height: 100vh;
  margin-bottom: 0;
  padding-top: 12rem;
  display: none;
}

.section.photos-section {
  margin-bottom: 0;
  padding-top: 6rem;
}

.section.prods-section {
  margin-top: 12rem;
}

.section.timeline {
  justify-content: center;
  margin-top: 12rem;
  display: flex;
}

.container {
  z-index: 1;
  color: var(--dark-olive-green);
  align-items: center;
  width: 100%;
  max-width: 90rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
  position: relative;
}

.container.flex-v {
  flex-direction: column;
  display: flex;
}

.container.about-container {
  flex-wrap: wrap;
  align-items: flex-start;
  display: flex;
}

.container.pet-information-container {
  align-items: flex-start;
  padding-top: 10rem;
  padding-bottom: 10rem;
  display: flex;
}

.container.pet-about-container {
  flex-wrap: wrap;
  align-items: flex-start;
  display: flex;
}

.container.top-bar-container {
  z-index: 900;
  flex-flow: row;
  justify-content: space-between;
  padding-left: 3.3rem;
  padding-right: 3.3rem;
  display: flex;
}

.container.footer {
  background-color: #0000;
  padding-left: 84px;
  padding-right: 84px;
}

.bg-pattern-01 {
  z-index: 0;
  color: var(--dark-olive-green);
  background-image: linear-gradient(#fff, #ffe07c8a 24%, #fff 86%), url('../images/soybean-sauce-soybean-wooden-floor-soy-sauce-food-nutrition-concept-1.jpg');
  background-position: 0 0, 0 0;
  background-size: auto, cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.hero-tagline {
  color: var(--dark-green);
  text-align: center;
  max-width: 73.5rem;
  margin-bottom: 5.25rem;
  margin-left: auto;
  margin-right: auto;
  font-family: Fredokaone, sans-serif;
  font-size: 100px;
}

.hero-text {
  color: var(--dark-green);
  text-align: center;
  max-width: 30rem;
  margin-left: auto;
  margin-right: auto;
  font-family: Fredokaone, sans-serif;
  font-size: 24px;
}

.hero-text.feat {
  color: #b78b65;
  font-family: Poetsenone, sans-serif;
  font-size: 20px;
  font-weight: 700;
}

.hero-text.wide {
  color: var(--dark-green);
  max-width: 50rem;
  margin-top: 38px;
  font-family: Fredokaone, sans-serif;
}

.hero-cta {
  margin-left: auto;
  margin-right: auto;
}

.cta {
  border: 1px solid var(--orange);
  color: var(--orange);
  text-transform: uppercase;
  background-color: #fff3;
  border-radius: 4.5rem;
  height: 4.5rem;
  margin-top: 2rem;
  padding: 0 2rem;
  font-family: Syne, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 4.5rem;
  text-decoration: none;
  transition: border-color .2s cubic-bezier(.19, 1, .22, 1), color .2s cubic-bezier(.77, 0, .175, 1);
  display: flex;
}

.cta:hover {
  border-color: var(--dark-green);
  color: var(--dark-green);
}

.cta.hero-cta {
  border-color: var(--orange);
  color: var(--orange);
  background-color: #ffffff69;
  margin-top: 3.5rem;
}

.cta.hero-cta:hover {
  border-color: var(--dark-green);
  color: var(--dark-green);
}

.cta.solid-cta {
  background-color: var(--purple-light);
  color: var(--pure-white);
  border-style: none;
  transition: background-color .4s;
}

.cta.solid-cta:hover {
  background-color: var(--purple-dark);
}

.cta.solid-cta.adopt-cta {
  margin-left: .5rem;
  margin-right: .5rem;
}

.cta.cta-color-pink {
  border-color: var(--pink);
  color: var(--pink);
  background-color: #0000;
}

.cta.cta-color-pink:hover {
  border-color: var(--purple-light);
  color: var(--purple-light);
}

.section-heading {
  text-align: center;
  width: 100%;
  max-width: 52rem;
  margin-bottom: 3rem;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.sketch-cat-head {
  width: 6.25rem;
}

.sketch-cat-head.section-heading-img-01 {
  margin-left: -3.125rem;
  position: absolute;
  top: -5rem;
  left: 50%;
}

.sketch-bunny-ears-upside-down {
  width: 9.25rem;
}

.sketch-bunny-ears-upside-down.section-heading-img-02 {
  margin-left: -4.625rem;
  position: absolute;
  bottom: -12rem;
  left: 50%;
}

.sketch-woof-04 {
  width: 15.75rem;
}

.sketch-woof-04.section-header-img-03 {
  position: absolute;
  inset: -8rem auto auto 4rem;
}

.sketch-meow-04 {
  width: 17.75rem;
}

.sketch-meow-04.section-header-img-04 {
  position: absolute;
  inset: 7rem 5rem auto auto;
}

.animals-list {
  grid-column-gap: 2rem;
  grid-row-gap: 5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.animals-collection {
  margin-top: 12rem;
}

.animal-preview {
  text-align: center;
  flex-direction: column;
  align-items: center;
}

.animal-preview-image-wrapper {
  width: 18rem;
  height: 18rem;
  margin-bottom: 1rem;
  padding: 1rem;
  position: relative;
}

.animal-preview-image {
  z-index: 1;
  border-radius: 20rem;
  width: 100%;
  height: 100%;
  position: relative;
}

.animal-preview-details {
  letter-spacing: .03em;
  text-transform: uppercase;
  flex-wrap: wrap;
  justify-content: center;
  align-items: baseline;
  font-size: 18px;
  line-height: 1.2em;
  display: flex;
}

.animal-preview-detail {
  align-items: baseline;
  font-size: 18px;
  line-height: 1.5em;
  display: flex;
}

.section-footer {
  flex-direction: column;
  align-items: center;
  margin-top: -2.6rem;
  display: flex;
}

.sketch-woof-meow-ball {
  width: 22rem;
}

.sketch-woof-meow-ball.section-footer-img-01 {
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.sketch-bunny-ears {
  width: 18.55rem;
}

.sketch-swirl-01 {
  width: 12rem;
}

.sketch-swirl-01.sketch-heading-img-01 {
  position: absolute;
  inset: -7rem auto auto -12rem;
}

.sketch-swirl-ball {
  width: 13rem;
}

.sketch-swirl-ball.sketch-footer-img-01 {
  margin-left: auto;
  margin-right: 5rem;
  display: block;
}

.resources-preview-container {
  width: 100vw;
  padding-top: 9rem;
  padding-bottom: 9rem;
  position: relative;
  overflow: hidden;
}

.resources-slider-preview-collection {
  position: absolute;
  inset: 0% auto auto 0%;
}

.resources-slider-preview {
  opacity: .2;
  color: var(--yellow-2);
  font-family: Poetsenone, sans-serif;
  line-height: 1.2em;
  display: flex;
}

.embed {
  opacity: 0;
  width: 0;
  height: 0;
  display: none;
  overflow: hidden;
}

.resources-preview-container-header {
  z-index: 3;
  color: var(--orange);
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 90rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
  display: flex;
  position: relative;
}

.heading-2 {
  text-align: center;
  justify-content: center;
  width: 100%;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  font-family: Fredokaone, sans-serif;
  display: flex;
}

.bg-pattern-02 {
  z-index: 0;
  background-image: url('../images/friends-with-four-legs-bg-pattern-02.png');
  background-position: 50% 0;
  background-repeat: repeat-x;
  background-size: auto 100%;
  background-attachment: scroll;
  width: 100%;
  height: 100%;
  max-height: 75rem;
  position: absolute;
  inset: 0%;
}

.about-left-side {
  max-width: 28.75rem;
  position: relative;
}

.about-right-side {
  max-width: 50%;
  margin-left: auto;
}

.empty-state {
  display: none;
}

.shelters-preview-collection {
  margin-top: 2rem;
}

.shelter-preview {
  background-color: var(--pure-white);
  border-radius: .5rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 8rem;
  height: 8rem;
  display: flex;
  overflow: hidden;
}

.shelters-preview-list {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.top-bar-trigger {
  width: 100%;
  height: 0;
  margin-top: -4rem;
  position: absolute;
  inset: 100vh auto auto 0%;
}

.footer {
  color: var(--pure-white);
  background-color: #fff3cbcc;
  margin-top: 0;
  padding: 3rem 15px .4rem;
}

.footer-contents {
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.footer-logo {
  width: 5.75rem;
  margin-right: 5rem;
}

.footer-navigation {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.footer-navigation-item {
  color: var(--dark-green);
  margin-bottom: .25rem;
  font-family: Poetsenone, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5em;
  text-decoration: none;
}

.footer-navigation-item:hover {
  color: var(--orange);
}

.contact-form-holder {
  flex-flow: column wrap;
  align-content: flex-end;
  align-items: flex-start;
  width: 100%;
  max-width: 50%;
  margin-left: auto;
  display: flex;
}

.animal-welfare-numbers {
  align-items: baseline;
  margin-bottom: 1rem;
  font-size: 48px;
  font-weight: 400;
  line-height: 1.5em;
  display: flex;
}

.animal-welfare-number {
  color: var(--dark-olive-green);
  white-space: nowrap;
  text-decoration: none;
}

.animal-welfare-number:hover {
  color: var(--pink);
}

.text-separator-h {
  color: var(--dark-olive-green);
  margin-left: .2em;
  margin-right: .2em;
}

.footer-credits {
  align-items: center;
  margin-top: 7rem;
  display: flex;
}

.footer-credit {
  color: var(--dark-green);
  margin-right: 2rem;
  font-size: 13px;
  line-height: 1.4em;
}

.website-credit {
  color: var(--dark-olive-green);
  justify-content: flex-end;
  align-items: center;
  margin-left: auto;
  text-decoration: none;
  display: flex;
}

.wearegoat-credit {
  cursor: pointer;
  width: 138px;
}

.credit-separator {
  color: var(--dark-green);
  margin-left: 0;
  margin-right: 0;
  font-size: 13px;
  line-height: 1.5em;
  text-decoration: none;
}

.credit-separator:hover {
  color: var(--orange);
  text-decoration: none;
}

.casual-business-credit {
  cursor: pointer;
  width: 66px;
}

.sketch-ball {
  width: 12rem;
  display: block;
  position: absolute;
  bottom: -18rem;
  left: 9rem;
}

.animal-image-wrapper {
  background-image: linear-gradient(to top, var(--orange), #ff97b0 50%, #ff58bc);
  border-radius: 20rem;
  width: 20rem;
  height: 20rem;
  margin-bottom: 1rem;
  padding: 1rem;
  position: relative;
}

.animal-image {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 20rem;
  width: 100%;
  height: 100%;
}

.animal-details {
  letter-spacing: .03em;
  text-transform: uppercase;
  align-items: baseline;
  margin-top: 2rem;
  font-size: 18px;
  line-height: 1.2em;
  display: flex;
}

.sketch-dog {
  width: 9rem;
  margin-left: -4.5rem;
  position: absolute;
  inset: -6rem auto auto 50%;
}

.section-bg-color-01 {
  background-color: var(--purple-medium);
  position: absolute;
  inset: 0% auto 0% 0%;
}

.section-bg-color-02 {
  background-color: var(--purple-dark);
  position: absolute;
  inset: 0% 0 0% auto;
}

.pet-information-left-side {
  color: var(--pure-white);
  width: 100%;
  max-width: 21rem;
}

.pet-detail {
  margin-bottom: 2rem;
}

.pet-detail-label {
  font-size: 16px;
  line-height: 1.2em;
}

.pet-detail-value {
  font-family: Syne, sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2em;
}

.pet-feature {
  align-items: center;
  margin-bottom: .5rem;
  display: flex;
}

.text-block {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2em;
}

.pet-feature-icon {
  width: 1rem;
  height: 1rem;
  margin-left: -1.5rem;
  margin-right: .5rem;
}

.pet-feature-icon.check {
  color: var(--yellow);
}

.pet-feature-icon.cross {
  color: var(--pink);
}

.pet-introduction {
  width: 100%;
  max-width: 50%;
  margin-left: auto;
}

.pet-name {
  color: var(--pink);
  align-items: baseline;
  margin-bottom: 6rem;
  margin-left: -14rem;
  display: flex;
}

.pet-name-value {
  margin-right: .25em;
}

.pet-description {
  color: var(--yellow-2);
  margin-bottom: 7.5rem;
}

.animal-preview-image-bg {
  z-index: 0;
  background-image: linear-gradient(to top, var(--orange), #ff97b0 50%, #ff58bc);
  border-radius: 20rem;
  width: 18rem;
  height: 18rem;
  margin-bottom: 1rem;
  padding: 1rem;
  position: absolute;
  inset: 0%;
}

.pet-header-container {
  display: flex;
}

.pet-images-collection {
  width: 100%;
  max-width: 120rem;
  margin-top: 3rem;
  margin-left: auto;
  margin-right: auto;
}

.pet-image-container {
  padding-left: 0;
  padding-right: 0;
}

.pet-images-list {
  align-items: flex-start;
}

.pet-img {
  object-fit: cover;
  width: 100%;
  max-width: 90vw;
  height: 100%;
  max-height: 70vh;
}

.pet-image {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 70vh;
  display: flex;
  overflow: hidden;
}

.pet-about-name {
  margin-left: .3em;
}

.pet-about-left-side {
  width: 100%;
  position: relative;
}

.pet-about-right-side {
  max-width: 50%;
  margin-top: 4rem;
  margin-left: auto;
}

.ready-top-adopt-points {
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 6rem;
  display: flex;
}

.ready-top-adopt-point {
  align-items: flex-start;
  width: 100%;
  max-width: 27rem;
}

.ready-to-adopt-text {
  margin-top: .5rem;
  font-size: 18px;
  line-height: 1.4em;
}

.search-wrapper {
  z-index: 100;
  background-color: var(--pure-white);
  opacity: 0;
  width: 100vw;
  height: 100vh;
  position: fixed;
  inset: 0 0 auto auto;
  overflow: scroll;
  transform: translate(100vw, -100vh);
}

.search-container {
  width: 100%;
  max-width: 57rem;
  margin-top: 12rem;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 5rem;
  padding-left: 2rem;
  padding-right: 2rem;
}

.search-field {
  margin-bottom: 4rem;
  display: flex;
}

.search-input {
  border-style: none none solid;
  border-width: 0 0 2px;
  border-color: black black var(--purple-dark);
  color: var(--purple-dark);
  height: 4.5rem;
  margin-bottom: 0;
  padding: 0;
  line-height: 4.5rem;
  transition: border-color .4s cubic-bezier(.19, 1, .22, 1);
}

.search-input:hover {
  border-bottom-color: var(--purple-medium);
}

.search-input:focus {
  border-bottom-color: var(--purple-light);
}

.search-input::placeholder {
  color: var(--purple-light);
  font-size: 28px;
}

.button {
  border: 1px solid var(--purple-dark);
  color: var(--purple-dark);
  text-transform: uppercase;
  background-color: #fff3;
  border-radius: 4.5rem;
  height: 4.5rem;
  margin-right: 0;
  padding: 0 2rem;
  font-family: Syne, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 4.5rem;
  text-decoration: none;
  transition: border-color .2s cubic-bezier(.19, 1, .22, 1), color .2s cubic-bezier(.77, 0, .175, 1);
}

.button:hover {
  border-color: var(--purple-light);
  color: var(--purple-light);
}

.featured-resources-collection {
  margin-top: 1rem;
}

.featured-resource {
  margin-bottom: 1rem;
  font-family: Syne, sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4em;
  text-decoration: none;
  display: inline-block;
}

.animal-preview-link {
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  display: flex;
}

.top-bar-trigger-out {
  width: 100%;
  height: 0;
  position: absolute;
  bottom: -4rem;
  left: 0%;
  right: auto;
}

.pet-details {
  margin-bottom: 6rem;
}

.pagination-button {
  border: 1px solid var(--purple-dark);
  color: var(--purple-dark);
  text-transform: uppercase;
  background-color: #fff3;
  border-radius: 4.5rem;
  height: 4.5rem;
  margin-left: 1rem;
  margin-right: 1rem;
  padding: 0 2rem;
  font-family: Syne, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 4.5rem;
  text-decoration: none;
  transition: border-color .2s cubic-bezier(.19, 1, .22, 1), color .2s cubic-bezier(.77, 0, .175, 1);
}

.pagination-button:hover {
  border-color: var(--purple-light);
  color: var(--purple-light);
}

.pagination {
  align-items: center;
  margin-top: 3rem;
}

.resources-collection {
  margin-top: 5rem;
}

.resource-preview {
  max-width: 42rem;
}

.resource-preview-description {
  color: var(--dark-olive-green);
  margin-top: 1rem;
  font-size: 20px;
  line-height: 1.5em;
}

.resource-header {
  max-width: 64rem;
  margin-bottom: 5rem;
}

.numbers-collection {
  margin-top: 5rem;
}

.number-item {
  align-items: baseline;
}

.important-numbers {
  align-items: baseline;
  font-size: 48px;
  font-weight: 400;
  line-height: 1.3em;
  display: flex;
}

.important-number {
  text-decoration: none;
}

.important-number:hover {
  color: var(--purple-light);
}

.important-email {
  font-size: 24px;
  line-height: 1.5em;
  display: inline-block;
}

.important-number-preview-description {
  color: var(--grey);
  max-width: 52rem;
  font-size: 20px;
}

.important-number-description {
  max-width: 52rem;
  margin-top: 3rem;
  margin-bottom: 5rem;
}

.resource-preview-heading {
  font-family: Syne, sans-serif;
  font-size: 48px;
  line-height: 1.2em;
  display: inline-block;
}

.partners-collection {
  margin-top: 5rem;
}

.partner-preview {
  max-width: 42rem;
}

.partner-preview-link {
  color: var(--orange);
  margin-right: 1rem;
  font-size: 20px;
  line-height: 1.2em;
}

.resource-preview-link {
  text-decoration: none;
  display: inline-block;
}

.partner-preview-heading {
  margin-bottom: 1rem;
  font-family: Syne, sans-serif;
  font-size: 48px;
  line-height: 1.2em;
  text-decoration: none;
  display: inline-block;
}

.partner-preview-links {
  align-items: baseline;
  margin-bottom: .5rem;
  font-size: 24px;
  line-height: 1.3em;
  display: flex;
}

.partner-preview-description {
  color: var(--grey);
  max-width: 52rem;
  margin-top: 1rem;
  font-size: 20px;
}

.partner-preview-link-container {
  font-size: 24px;
  display: flex;
}

.partner-preview-name {
  padding-left: 1em;
}

.resources-list, .partners-list {
  grid-column-gap: 2rem;
  grid-row-gap: 8rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.numbers-list {
  grid-column-gap: 4rem;
  grid-row-gap: 8rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.number-links {
  align-items: baseline;
  margin-bottom: .5rem;
  font-size: 24px;
  line-height: 1.3em;
  display: flex;
}

.number-link {
  color: #f5935b;
  margin-right: 1rem;
  font-size: 20px;
  line-height: 1.2em;
}

.number-heading {
  margin-bottom: 1rem;
  font-family: Syne, sans-serif;
  font-size: 48px;
  line-height: 1.2em;
  text-decoration: none;
  display: inline-block;
}

.partner-organisation {
  font-size: 20px;
  line-height: 1.6em;
}

.partner-name {
  margin-bottom: 5.5rem;
}

.partner-preview-link-block {
  border-bottom: 2px solid var(--purple-medium);
  align-items: baseline;
  margin-top: 1rem;
  font-size: 20px;
  line-height: 1.4em;
  text-decoration: none;
  display: inline-block;
}

.partner-preview-link-block-name {
  margin-right: .3em;
  display: inline-block;
}

.partner-links {
  align-items: baseline;
  margin-top: .5rem;
  font-size: 24px;
  line-height: 1.3em;
  display: flex;
}

.partner-link {
  color: var(--orange);
  margin-right: 1rem;
  font-size: 20px;
  line-height: 1.2em;
}

.partner-link:visited {
  color: var(--orange);
}

.partner-preview-link-copy {
  color: var(--orange);
  margin-right: 1rem;
  font-size: 20px;
  line-height: 1.2em;
}

.partner-content {
  align-items: flex-start;
  margin-top: 7rem;
  display: flex;
}

.partner-support-details {
  flex: 0 0 37.5rem;
  margin-left: 7.5rem;
}

.small-rich-text ul, .small-rich-text ol {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.small-rich-text h1 {
  max-width: 52rem;
  margin-bottom: 1rem;
  font-size: 32px;
}

.small-rich-text h2 {
  max-width: 52rem;
  margin-top: 2rem;
  margin-bottom: .5rem;
  font-size: 32px;
}

.small-rich-text h3 {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.small-rich-text h4 {
  max-width: 52rem;
  margin-top: 1rem;
  font-size: 20px;
}

.small-rich-text h5 {
  max-width: 52rem;
  margin-top: 1rem;
}

.small-rich-text blockquote {
  max-width: 52rem;
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.small-rich-text p {
  max-width: 38rem;
  margin-bottom: 1.2em;
}

.small-rich-text figcaption {
  color: var(--purple-dark);
  text-align: left;
  margin-top: .5rem;
  margin-bottom: 2rem;
  font-size: 16px;
  line-height: 1.5em;
}

.small-rich-text figure {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.small-rich-text h6 {
  max-width: 52rem;
  margin-top: 2rem;
}

.small-rich-text li {
  max-width: 52rem;
}

.small-rich-text p {
  max-width: 52rem;
  margin-bottom: .5em;
  font-size: 20px;
  line-height: 1.3em;
}

.small-rich-text h3 {
  max-width: 52rem;
  margin-top: 1rem;
  margin-bottom: 0;
  font-size: 24px;
  font-weight: 500;
}

.small-rich-text.partner-content-text {
  color: var(--grey);
  flex: 0 45rem;
  max-width: 45rem;
}

.partner-support-heading {
  margin-bottom: 1rem;
  font-size: 38px;
}

.donate-link {
  color: var(--orange);
  margin-top: 1rem;
  font-size: 20px;
  line-height: 1.5em;
  display: none;
}

.first-heading {
  margin-bottom: 2rem;
}

.form-container {
  margin-top: 5rem;
}

.textarea-2 {
  max-width: 32rem;
  min-height: 8rem;
}

.checkbox-label {
  color: #0d151c;
  margin-bottom: 0;
  font-size: 20px;
  font-weight: 600;
}

.checkbox-2 {
  width: 2rem;
  height: 2rem;
  margin-left: 0;
}

.form-success {
  text-align: left;
  background-color: #0000;
  max-width: 52rem;
  padding: 0;
}

.form-error {
  color: var(--purple-light);
  background-color: #0000;
  padding: 0;
  font-size: 16px;
}

.hero-sub-text {
  color: var(--orange);
  text-align: center;
  max-width: 30rem;
  margin-top: .5rem;
  margin-left: auto;
  margin-right: auto;
  font-size: 14px;
}

.animal-ctas {
  flex-wrap: wrap;
  align-items: center;
  margin-top: 5rem;
  display: flex;
}

.footer-link {
  color: var(--dark-olive-green);
}

.footer-link:visited {
  color: var(--pure-white);
}

.animal-preview-no-image {
  z-index: 3;
  color: var(--yellow-2);
  text-align: center;
  background-color: #a91a8599;
  border-radius: 20rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-left: 2rem;
  padding-right: 2rem;
  display: flex;
  position: absolute;
  inset: 1rem;
}

.text-block-2 {
  color: var(--light-grey);
}

.shelter-details {
  letter-spacing: .03em;
  text-transform: uppercase;
  align-items: baseline;
  margin-top: 1rem;
  font-size: 18px;
  line-height: 1.2em;
  display: flex;
}

.background-trigger {
  width: 100%;
  height: 0;
  position: absolute;
  inset: 50vh auto auto 0%;
}

.background-trigger.full-vh-height {
  top: 100vh;
}

.background-trigger.half-vh-height {
  top: 50vh;
}

.sketch-dog-butt {
  width: 7rem;
}

.sketch-dog-butt.section-heading-img-02 {
  margin-left: -3.5rem;
  position: absolute;
  bottom: -9rem;
  left: 50%;
}

.pet-notes {
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.pet-note {
  text-align: center;
  flex-direction: column;
  flex: 5rem;
  align-items: center;
  width: 12.5rem;
  display: flex;
}

.pet-note-image {
  background-color: var(--purple-medium);
  border-radius: 20rem;
  justify-content: center;
  align-items: center;
  width: 7rem;
  height: 7rem;
  margin-bottom: 1rem;
  display: flex;
}

.pet-note-img {
  width: 5.8rem;
}

.pet-note-text {
  max-width: 10rem;
  font-family: Syne, sans-serif;
  font-size: 20px;
  line-height: 1.2em;
}

.animal-preview-detail-comma {
  align-items: baseline;
  margin-right: .2em;
  display: flex;
}

.animal-preview-adopted {
  z-index: 10;
  background-color: var(--purple-light);
  opacity: .5;
  color: var(--pure-white);
  border-radius: 100rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 40px;
  font-weight: 700;
  display: flex;
  position: absolute;
  inset: 0%;
  transform: rotate(-20deg);
}

.heading-3, .html-embed {
  color: var(--dark-olive-green);
}

.heading-4 {
  color: var(--dark-green);
  font-family: Fredokaone, sans-serif;
}

.heading-5 {
  color: var(--dark-green);
  margin-bottom: 43px;
  font-family: Fredokaone, sans-serif;
  font-size: 40px;
  font-weight: 400;
  line-height: .9em;
}

.text-block-3 {
  color: var(--orange);
}

.heading-6 {
  color: var(--dark-green);
  text-align: center;
  font-family: Fredokaone, sans-serif;
  font-size: 80px;
}

.heading-6.left {
  text-align: left;
}

.prod-cols {
  width: 60%;
  margin-top: 119px;
  margin-left: auto;
  margin-right: auto;
}

.products-body {
  color: var(--yellow-2);
  background-color: #fffcf5;
  flex-direction: column;
  height: auto;
  display: flex;
}

.heading-7 {
  color: var(--orange);
}

.heading-7:hover {
  color: var(--yellow-2);
}

.faq-cols {
  margin-top: 52px;
}

.faq-block {
  height: 300px;
  padding: 13px;
}

.columns-2 {
  width: 70%;
  min-width: 70%;
  margin-top: 64px;
  margin-left: auto;
  margin-right: auto;
}

.features {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 180px;
  height: 180px;
  margin-left: auto;
  margin-right: auto;
  padding: 10px;
  display: flex;
}

.product-wrap, .brownie-wrap, .flour-jar {
  width: 500px;
  height: 500px;
  margin-left: auto;
  margin-right: auto;
}

.image-2 {
  margin-left: -75px;
}

.image-3 {
  margin-top: -147px;
  margin-left: 138px;
}

.arrow-down {
  justify-content: flex-end;
  align-self: flex-end;
  width: 150px;
  margin-left: 0;
  display: flex;
  transform: rotate(154deg);
}

.arrow-down.down {
  width: 250px;
  transform: rotate(180deg);
}

.product-title {
  color: var(--dark-green);
  text-align: right;
  margin-bottom: 27px;
  font-family: Poetsenone, sans-serif;
  font-size: 35px;
}

.product-title.right {
  text-align: left;
  font-family: Poetsenone, sans-serif;
}

.arrow-up {
  width: 150px;
  margin-top: -35px;
  margin-left: 0;
  transform: rotate(-77deg);
}

.arrow-up.down {
  width: 250px;
  transform: rotate(180deg);
}

.prods {
  margin-bottom: 20rem;
  position: relative;
}

.prods.hero-section {
  min-height: 100vh;
  margin-bottom: 12rem;
  padding-top: 30vh;
  padding-bottom: 30vh;
}

.prods.about-section {
  color: var(--pure-white);
  min-height: 75rem;
  margin-bottom: 0;
  padding-top: 20rem;
  padding-bottom: 12rem;
}

.prods.first-section {
  margin-top: 12rem;
}

.prods.pet-hero-section {
  min-height: 100vh;
  margin-bottom: 0;
  padding-top: 30vh;
  padding-bottom: 30vh;
}

.prods.pet-about-section {
  color: var(--pure-white);
  min-height: 100vh;
  margin-bottom: 0;
  padding-top: 24rem;
  padding-bottom: 24rem;
}

.prods.pet-about-section.section-no-margin {
  padding-top: 12rem;
}

.prods.adopt-section {
  background-image: linear-gradient(to top, #ff97b0, #ff9d2b);
  padding-top: 2rem;
  padding-bottom: 12rem;
}

.prods.adopt-section.section-no-margin, .prods.details-section {
  margin-bottom: 0;
}

.prods.notes-section {
  flex-direction: column;
  justify-content: center;
  min-height: 100vh;
  margin-bottom: 0;
  padding-top: 12rem;
  display: none;
}

.prods.photos-section {
  margin-bottom: 0;
  padding-top: 6rem;
}

.prods.prods-section {
  height: auto;
  margin-top: 12rem;
}

.specs {
  width: 90%;
  min-width: 95%;
  margin-top: -170px;
  margin-left: auto;
  margin-right: auto;
}

.jars {
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  height: auto;
  display: flex;
}

.prod-blurb {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  height: 500px;
  padding-top: 21px;
  display: flex;
}

.prod-blurb.right {
  justify-content: flex-start;
}

.product-description {
  color: var(--dark-green);
  text-align: right;
  margin-top: 0;
  font-family: Fredokaone, sans-serif;
  font-size: 18px;
  line-height: 1.2em;
}

.product-description.right {
  color: var(--dark-green);
  text-align: left;
}

.lottie-animation {
  width: 200px;
}

.hero-text-copy {
  color: var(--dark-olive-green);
  text-align: center;
  max-width: 30rem;
  margin-left: auto;
  margin-right: auto;
  font-size: 24px;
}

.hero-text-copy.feat {
  color: #b78b65;
  font-size: 20px;
  font-weight: 700;
}

.image-4 {
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.faq-container {
  z-index: 1;
  color: var(--dark-olive-green);
  align-items: center;
  width: 100%;
  max-width: 90rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 4.5rem;
  padding-right: 4.5rem;
  position: relative;
}

.faq-container.flex-v {
  flex-direction: column;
  display: flex;
}

.faq-container.about-container {
  flex-wrap: wrap;
  align-items: flex-start;
  display: flex;
}

.faq-container.pet-information-container {
  align-items: flex-start;
  padding-top: 10rem;
  padding-bottom: 10rem;
  display: flex;
}

.faq-container.pet-about-container {
  flex-wrap: wrap;
  align-items: flex-start;
  display: flex;
}

.faq-container.top-bar-container {
  z-index: 900;
  flex-wrap: nowrap;
  justify-content: space-between;
  padding-left: 3.3rem;
  padding-right: 3.3rem;
  display: flex;
}

.faq-container.footer {
  padding-left: 84px;
  padding-right: 84px;
}

.heading-8 {
  color: #114817;
  text-align: center;
  font-family: Fredokaone, sans-serif;
}

.team-wrap {
  background-color: #e4e2d2;
  background-image: url('../images/shamira.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 400px;
  justify-content: center;
  align-items: center;
  width: 300px;
  height: 300px;
  margin-left: auto;
  margin-right: auto;
  padding: 12px;
  display: flex;
}

.team-wrap._2 {
  background-image: url('../images/michelle.jpg');
}

.team-cols {
  width: 80%;
  margin-top: 32px;
  margin-left: auto;
  margin-right: auto;
}

.body-2 {
  color: var(--dark-olive-green);
  background-image: linear-gradient(#fef9ecdb, #fef9ecdb), url('../images/watermark.png');
  background-position: 0 0, 0 0;
  background-size: auto, auto;
  background-attachment: scroll, fixed;
}

.html-embed-2 {
  font-family: Poetsenone, sans-serif;
  font-size: 13px;
}

.profiles {
  color: var(--dark-green);
  text-align: center;
  margin-top: 34px;
  padding-left: 24px;
  padding-right: 24px;
  font-family: Fredokaone, sans-serif;
  font-size: 18px;
  line-height: 1.2em;
}

.profiles.right {
  text-align: left;
}

.image-5 {
  margin-top: 0;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.column, .column-2 {
  flex-direction: column;
  display: flex;
}

.link-block {
  color: var(--dark-green);
  text-align: right;
  flex: none;
  width: 40px;
  height: 40px;
  margin-top: -6px;
  margin-left: auto;
  margin-right: auto;
  position: static;
  inset: 0% 0% 0% auto;
}

.paragraph-2 {
  color: #ffffffa8;
  font-size: 21px;
  font-weight: 300;
  line-height: 26px;
}

.paragraph-2.right {
  color: var(--dark-olive-green);
  text-align: right;
  padding-top: 31px;
}

.process_card {
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.process {
  flex-direction: column;
  flex: 1;
  justify-content: flex-start;
  align-items: center;
  width: 1200px;
  max-width: 1500px;
  display: flex;
  position: relative;
}

.centre_icon_wrap {
  z-index: 5;
  background-color: #000;
  border: 3px solid #fff;
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 100px;
  padding: 10px;
  display: flex;
  position: relative;
  box-shadow: 1px 1px 35px 18px #e6cbff24;
}

.h2 {
  color: #fff;
  margin-top: -32px;
  font-size: 30px;
  font-weight: 300;
  line-height: 30px;
}

.h2.right {
  color: var(--dark-olive-green);
  text-align: right;
}

.process_card_02 {
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  margin-top: 70px;
  margin-bottom: 70px;
  display: flex;
}

.section_container {
  justify-content: center;
  max-width: 1500px;
  display: flex;
}

.process_details {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 45%;
  min-height: 300px;
  margin-top: -40px;
  padding: 30px 20px;
  display: flex;
  position: relative;
}

.process_line {
  background-image: url('../images/line.svg');
  background-position: 50%;
  background-repeat: repeat-y;
  background-size: contain;
  width: 2px;
  height: 90%;
  position: absolute;
}

.centre_step {
  color: #fff;
  font-size: 21px;
  font-weight: 600;
}

.centre_block {
  justify-content: center;
  align-items: flex-start;
  width: 120px;
  height: 80px;
  display: flex;
}

.process_image_wrap {
  justify-content: center;
  align-items: center;
  width: 45%;
  min-height: 300px;
  padding: 30px;
  display: flex;
  position: relative;
}

.content-wrap {
  justify-content: flex-end;
  width: 40%;
  display: flex;
}

.steps {
  flex-direction: column;
  align-items: stretch;
  padding-top: 135px;
  display: flex;
}

.bg-shadow {
  z-index: 1;
  border-radius: 16px;
  position: absolute;
  inset: 0%;
  box-shadow: 7px 7px 20px #12121212;
}

.content-block {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  display: flex;
  position: sticky;
  top: 0;
}

.scroll-base {
  transform-origin: 50% 0;
  background-color: #eeeff4;
  width: 6px;
  height: 100%;
}

.step-block {
  flex-wrap: nowrap;
  place-content: center space-around;
  align-items: center;
  width: 1200px;
  max-width: 1500px;
  min-height: 100vh;
  margin-top: -1px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
}

.scroll-animate {
  background-color: var(--dark-olive-green);
  transform-origin: 50% 0;
  width: 6px;
  height: 100%;
  position: absolute;
  bottom: 0;
}

.img-block {
  border-radius: 400px;
  justify-content: center;
  align-self: center;
  align-items: center;
  width: 40%;
  height: 500px;
  display: flex;
}

.step {
  z-index: 2;
  background-color: #fff;
  border-radius: 16px;
  align-items: center;
  padding: 6% 4%;
  display: flex;
  position: relative;
}

.label {
  color: var(--dark-green);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: Fredokaone, sans-serif;
  font-weight: 700;
}

.dot {
  z-index: 3;
  background-color: var(--dark-olive-green);
  border-radius: 50%;
  width: 12px;
  height: 12px;
  margin-top: -6px;
  margin-bottom: -6px;
  position: relative;
}

.heading {
  color: var(--dark-green);
  margin-top: 0;
  margin-bottom: 10px;
  font-family: Poetsenone, sans-serif;
  font-weight: 700;
  display: flex;
}

.scoll-wrap {
  flex-direction: column;
  align-items: center;
  height: 100%;
  display: flex;
  position: absolute;
  bottom: 50%;
}

.steps-clone {
  flex-direction: column;
  justify-content: center;
  width: 1500px;
  margin-top: 0;
  display: flex;
  position: relative;
}

.step-content-block {
  text-align: left;
  align-self: center;
  width: 100%;
  position: relative;
}

.container-2 {
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  max-width: 1080px;
  margin-bottom: 10%;
  padding-bottom: 0;
  display: flex;
  position: relative;
}

.content {
  margin-top: 24px;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.4;
}

.steps-blurb {
  color: var(--dark-green);
  font-family: Fredokaone, sans-serif;
  font-size: 16px;
  font-weight: 400;
}

.timeline-img {
  background-image: url('../images/soybeans.jpeg');
  background-position: 0%;
  background-size: cover;
  border-radius: 400px;
  width: 500px;
  height: 500px;
}

.timeline-img._2 {
  background-image: url('../images/bowl.jpeg');
  background-position: 50%;
}

.timeline-img._3 {
  background-image: url('../images/flour.jpeg');
  background-position: 50%;
}

.text-block-5, .text-block-6, .text-block-7 {
  text-transform: none;
  font-family: Poetsenone, sans-serif;
}

.heading-9 {
  color: var(--dark-green);
  font-family: Fredokaone, sans-serif;
}

.text-block-8 {
  text-transform: none;
  font-family: Poetsenone, sans-serif;
}

.text-block-8.faq {
  margin-right: 23px;
  padding-right: 0;
}

.bio-title {
  color: var(--dark-green);
  text-align: center;
  margin-top: 20px;
  font-family: Poetsenone, sans-serif;
  font-size: 36px;
}

.bio-title.title {
  margin-top: 0;
  font-size: 21px;
}

.faq_heading-wrap {
  font-size: 1.25rem;
  font-weight: 500;
}

.faq_aswer-wrap_spacer {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.faq_trigger {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  cursor: pointer;
  grid-template-rows: auto;
  grid-template-columns: 1fr 2rem;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  display: grid;
}

.faq-image_hover {
  display: none;
}

.faq_answer-wrap {
  padding-right: 3rem;
  overflow: hidden;
}

.faq_wrap-grid {
  grid-column-gap: 6rem;
  grid-row-gap: 4.5rem;
  grid-template-rows: auto;
  grid-template-columns: 67.75rem;
  width: 1200px;
  margin-top: 114px;
  margin-left: auto;
  margin-right: auto;
}

.faq_element {
  border-bottom: .125rem solid #111;
  width: 100%;
  min-width: 100%;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
}

.faq_element.last {
  margin-bottom: 0;
}

.questions {
  font-family: Poetsenone, sans-serif;
  font-size: 2rem;
}

.questions.centre {
  text-align: center;
}

.answers {
  font-family: Fredokaone, sans-serif;
  font-size: 18px;
  font-weight: 400;
}

.steps-mobile {
  display: none;
}

.social-wrapper {
  justify-content: flex-end;
  align-self: flex-end;
  width: 80%;
  display: flex;
}

.ask-faq {
  width: 60rem;
  margin-top: 32px;
  margin-left: auto;
  margin-right: auto;
  font-family: Poetsenone, sans-serif;
  font-size: 13px;
}

.ask-wrapper {
  z-index: 1;
  color: var(--dark-olive-green);
  align-items: center;
  width: 100%;
  max-width: 90rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 4.5rem;
  padding-right: 4.5rem;
  position: relative;
}

.ask-wrapper.flex-v {
  flex-direction: column;
  display: flex;
}

.ask-wrapper.about-container {
  flex-wrap: wrap;
  align-items: flex-start;
  display: flex;
}

.ask-wrapper.pet-information-container {
  align-items: flex-start;
  padding-top: 10rem;
  padding-bottom: 10rem;
  display: flex;
}

.ask-wrapper.pet-about-container {
  flex-wrap: wrap;
  align-items: flex-start;
  display: flex;
}

.ask-wrapper.top-bar-container {
  z-index: 900;
  flex-wrap: nowrap;
  justify-content: space-between;
  padding-left: 3.3rem;
  padding-right: 3.3rem;
  display: flex;
}

.ask-wrapper.footer {
  padding-left: 84px;
  padding-right: 84px;
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 72px;
    line-height: 1.1em;
  }

  h2 {
    font-size: 64px;
    line-height: 1.2em;
  }

  h3 {
    font-size: 38px;
  }

  p, li {
    font-size: 24px;
  }

  blockquote {
    font-size: 32px;
  }

  .tri-burger, .top-bar {
    background-color: #0000;
  }

  .search-result-item {
    margin-bottom: 5rem;
  }

  .search-result-title {
    font-size: 38px;
  }

  .search-result-snippet {
    font-size: 24px;
  }

  .bi-burger {
    color: var(--purple-medium);
    background-color: #0000;
    order: 1;
    transition-property: none;
  }

  .bi-burger.w--open {
    z-index: 2;
    color: var(--purple-medium);
  }

  .bi-burger-box {
    color: var(--dark-green);
  }

  .logomark-container {
    z-index: 2;
    position: relative;
  }

  .search-trigger-container {
    z-index: 2;
    margin-right: 1rem;
  }

  .navigation-container {
    z-index: 1;
    background-color: var(--pure-white);
    margin-top: 0;
    margin-left: 0;
    padding-top: 9rem;
    padding-left: 2rem;
    padding-right: 2rem;
    position: fixed;
    inset: 0%;
  }

  .navigation-item {
    color: var(--dark-green);
    font-family: Fredokaone, sans-serif;
    font-size: 38px;
    font-weight: 700;
    transition-property: none;
  }

  .navigation-item:hover {
    color: #004c08;
  }

  .section {
    color: var(--dark-green);
    margin-bottom: 12rem;
  }

  .section.hero-section {
    color: var(--dark-green);
    min-height: auto;
    margin-bottom: 0;
    padding-bottom: 17vh;
  }

  .section.about-section {
    padding-top: 7rem;
  }

  .section.about-section.section-no-margin, .section.pet-hero-section {
    min-height: auto;
  }

  .section.pet-about-section {
    padding-top: 7rem;
  }

  .section.pet-about-section.section-no-margin {
    min-height: auto;
  }

  .section.section-top-padding {
    padding-top: 12rem;
  }

  .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .container.about-container, .container.pet-information-container, .container.pet-about-container {
    display: block;
  }

  .container.top-bar-container {
    color: var(--dark-green);
  }

  .container.pet-photos-container {
    margin-top: 12rem;
  }

  .bg-pattern-01 {
    color: var(--dark-green);
    background-size: auto, cover;
    height: 500px;
  }

  .hero-tagline {
    margin-bottom: 3rem;
    line-height: 1em;
  }

  .hero-text.wide {
    max-width: 90%;
    font-size: 21px;
  }

  .cta.hero-cta {
    margin-top: 2rem;
  }

  .cta.solid-cta.adopt-cta {
    margin-top: 3rem;
  }

  .section-heading {
    margin-bottom: 1rem;
  }

  .sketch-cat-head.section-heading-img-01 {
    width: 5rem;
    margin-left: -2.5rem;
    top: -4rem;
  }

  .sketch-bunny-ears-upside-down.section-heading-img-02 {
    width: 7rem;
    margin-left: -3.5rem;
    bottom: -4rem;
  }

  .sketch-woof-04.section-header-img-03 {
    width: 12rem;
    top: -6rem;
    left: -5rem;
  }

  .sketch-meow-04.section-header-img-04 {
    width: 12rem;
    top: 4rem;
    right: 0;
  }

  .animals-list {
    grid-template-columns: 1fr 1fr;
  }

  .animal-preview {
    margin-bottom: 5rem;
  }

  .sketch-woof-meow-ball.section-footer-img-01 {
    width: 15rem;
  }

  .sketch-bunny-ears {
    width: 10rem;
  }

  .sketch-swirl-ball.sketch-footer-img-01 {
    width: 9rem;
  }

  .resources-preview-container {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .about-left-side {
    max-width: 100%;
    margin-bottom: 2rem;
  }

  .about-right-side {
    max-width: 100%;
  }

  .footer-contents {
    flex-wrap: wrap;
  }

  .footer-logo {
    margin-right: 2rem;
  }

  .footer-navigation {
    order: 3;
    width: 100%;
    margin-top: 3rem;
  }

  .contact-form-holder {
    order: 2;
    width: auto;
    max-width: none;
    margin-left: 0;
  }

  .animal-welfare-numbers {
    font-size: 42px;
  }

  .sketch-ball {
    display: none;
  }

  .sketch-dog {
    width: 7rem;
    margin-left: -3.5rem;
    top: -4.5rem;
  }

  .section-bg-color-01 {
    display: none;
  }

  .section-bg-color-02 {
    left: 0;
  }

  .pet-information-left-side {
    max-width: 100%;
    margin-bottom: 2rem;
    display: flex;
  }

  .pet-introduction {
    max-width: 100%;
  }

  .pet-name {
    margin-bottom: 3rem;
    margin-left: 0;
  }

  .pet-description {
    margin-bottom: 3.5rem;
  }

  .pet-image-container {
    width: 100%;
    margin-bottom: 1rem;
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .pet-img {
    max-width: none;
    height: auto;
    max-height: none;
  }

  .pet-image {
    width: 100%;
    height: auto;
    overflow: visible;
  }

  .pet-about-left-side {
    max-width: 100%;
    margin-bottom: 2rem;
  }

  .pet-about-right-side {
    max-width: 100%;
  }

  .ready-top-adopt-points {
    display: block;
  }

  .ready-top-adopt-point {
    margin-bottom: 3rem;
  }

  .pet-details {
    width: 50%;
    margin-bottom: 0;
  }

  .pet-features {
    width: 50%;
  }

  .resource-preview {
    margin-bottom: 5rem;
  }

  .number-item {
    margin-bottom: 5rem;
    display: block;
  }

  .important-numbers {
    font-size: 42px;
  }

  .resource-preview-heading {
    font-size: 38px;
  }

  .partner-preview {
    margin-bottom: 5rem;
  }

  .resource-preview-link, .partner-preview-heading {
    font-size: 38px;
  }

  .resources-list, .partners-list, .numbers-list {
    display: block;
  }

  .number-heading {
    font-size: 38px;
  }

  .partner-name {
    margin-bottom: 3rem;
  }

  .partner-content {
    margin-top: 5rem;
    display: block;
  }

  .partner-support-details {
    margin-bottom: 5rem;
    margin-left: 0;
    position: relative;
    top: 0;
  }

  .donate-link {
    display: block;
  }

  .animal-ctas {
    justify-content: center;
  }

  .sketch-dog-butt.section-heading-img-02 {
    width: 5rem;
    margin-left: -2.5rem;
    bottom: -7rem;
  }

  .pet-note-text {
    font-size: 16px;
  }

  .logo.w--current {
    z-index: 20;
    position: relative;
  }

  .image {
    padding-right: 7px;
  }

  .heading-6 {
    font-size: 70px;
  }

  .arrow-down, .arrow-up {
    display: none;
  }

  .prods {
    margin-bottom: 12rem;
  }

  .prods.hero-section {
    min-height: auto;
  }

  .prods.about-section {
    padding-top: 7rem;
  }

  .prods.about-section.section-no-margin, .prods.pet-hero-section {
    min-height: auto;
  }

  .prods.pet-about-section {
    padding-top: 7rem;
  }

  .prods.pet-about-section.section-no-margin {
    min-height: auto;
  }

  .prods.section-top-padding {
    padding-top: 12rem;
  }

  .specs {
    min-width: 80%;
    margin-top: -67px;
    margin-bottom: 61px;
  }

  .prod-blurb {
    align-items: center;
    height: auto;
  }

  .product-description {
    text-align: center;
  }

  .faq-container {
    max-width: 100%;
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .faq-container.about-container, .faq-container.pet-information-container, .faq-container.pet-about-container {
    display: block;
  }

  .faq-container.pet-photos-container {
    margin-top: 12rem;
  }

  .team-cols {
    width: 100%;
  }

  .html-embed-2 {
    margin-top: 28px;
  }

  .profiles {
    text-align: center;
  }

  .process {
    width: 100%;
    max-width: 100%;
  }

  .process_details {
    padding: 10px;
  }

  .centre_block {
    width: 150px;
  }

  .process_image_wrap {
    padding: 15px;
  }

  .content-wrap {
    width: 90%;
  }

  .steps {
    display: none;
  }

  .step-block {
    flex-direction: column-reverse;
    width: 100%;
    max-width: 100%;
    margin-top: 88px;
  }

  .scroll-animate {
    margin-bottom: -226px;
  }

  .step {
    width: 80%;
    margin: 39px auto 32px;
  }

  .steps-clone {
    width: 100%;
  }

  .timeline-img {
    z-index: 5;
    flex-direction: row;
    justify-content: center;
    width: 300px;
    height: 300px;
    margin-top: 0;
    margin-left: auto;
    margin-right: auto;
    display: block;
    position: relative;
  }

  .timeline-img._2 {
    z-index: 5;
    position: relative;
  }

  .timeline-img._3 {
    z-index: 50;
    display: flex;
    position: relative;
  }

  .faq_content-wrap {
    width: 100%;
    max-width: 100%;
  }

  .faq_wrap-grid {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .image-6 {
    padding-left: 7px;
    padding-right: 7px;
  }

  .body-3 {
    color: var(--dark-green);
  }

  .steps-mobile {
    flex-direction: column;
    padding-top: 122px;
    display: flex;
  }

  .columns-3 {
    width: 100%;
  }

  .social-wrapper {
    justify-content: flex-start;
    width: 100%;
  }

  .ask-faq {
    width: 100%;
    margin-top: 28px;
  }

  .ask-wrapper {
    max-width: 100%;
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .ask-wrapper.about-container, .ask-wrapper.pet-information-container, .ask-wrapper.pet-about-container {
    display: block;
  }

  .ask-wrapper.pet-photos-container {
    margin-top: 12rem;
  }
}

@media screen and (max-width: 767px) {
  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 38px;
  }

  h3 {
    font-size: 24px;
  }

  h4, p, li {
    font-size: 20px;
  }

  blockquote {
    font-size: 24px;
  }

  .rich-text figcaption {
    font-size: 14px;
    line-height: 1.4em;
  }

  .search {
    display: block;
  }

  .search-result-title {
    font-size: 24px;
  }

  .search-result-snippet {
    font-size: 20px;
  }

  .navigation-item {
    font-size: 24px;
  }

  .section {
    margin-bottom: 7rem;
  }

  .section.hero-section {
    margin-bottom: 0;
    padding-top: 14rem;
    padding-bottom: 8.5rem;
  }

  .section.pet-hero-section {
    padding-top: 14rem;
    padding-bottom: 12rem;
  }

  .section.section-top-padding {
    padding-top: 7rem;
  }

  .container.flex-v {
    margin-top: -82px;
  }

  .container.top-bar-container {
    padding-left: 1.3rem;
    padding-right: 1.3rem;
  }

  .container.pet-photos-container {
    margin-top: 7rem;
  }

  .container.footer {
    padding-left: 5px;
    padding-right: 5px;
  }

  .bg-pattern-01 {
    height: 300px;
  }

  .hero-tagline {
    margin-bottom: 2rem;
  }

  .cta.hero-cta {
    margin-top: 1rem;
  }

  .cta.solid-cta.adopt-cta {
    margin-top: 2rem;
  }

  .animals-list {
    grid-template-columns: 1fr;
  }

  .section-footer {
    margin-top: 0;
  }

  .shelters-preview-list {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    grid-template-columns: 1fr 1fr 1fr;
  }

  .footer-contents {
    justify-content: center;
  }

  .footer-navigation {
    align-items: center;
    margin-top: 2.4rem;
  }

  .contact-form-holder {
    align-items: center;
    width: 100%;
    margin-top: 2rem;
  }

  .animal-welfare-numbers {
    font-size: 32px;
  }

  .footer-credits {
    flex-flow: column wrap;
    place-content: center flex-start;
    margin-top: 1.8rem;
    margin-bottom: -29px;
  }

  .footer-credit {
    margin-right: 0;
  }

  .website-credit {
    margin-top: 3rem;
    margin-left: 0;
  }

  .credit-separator {
    margin-top: -50px;
    padding-top: 0;
  }

  .pet-about-right-side {
    margin-top: 2rem;
  }

  .ready-top-adopt-points {
    margin-top: 3rem;
  }

  .search-field {
    display: block;
  }

  .search-input {
    font-size: 24px;
  }

  .button {
    margin-top: 1rem;
    margin-left: 0;
  }

  .featured-resource {
    font-size: 20px;
  }

  .pet-details {
    margin-right: 2rem;
  }

  .pagination-button {
    margin-top: 1rem;
    margin-left: 0;
  }

  .resource-preview {
    margin-bottom: 3rem;
  }

  .resource-preview-description {
    margin-top: .5rem;
    font-size: 20px;
  }

  .number-item {
    margin-bottom: 3rem;
  }

  .important-numbers {
    font-size: 32px;
    line-height: 1.1em;
  }

  .important-email {
    font-size: 20px;
  }

  .resource-preview-heading {
    font-size: 24px;
  }

  .partner-preview {
    margin-bottom: 3rem;
  }

  .partner-preview-link {
    margin-bottom: .5rem;
    margin-right: 0;
    display: block;
  }

  .resource-preview-link, .partner-preview-heading {
    font-size: 24px;
  }

  .partner-preview-links {
    display: block;
  }

  .partner-preview-description {
    margin-top: .5rem;
  }

  .number-heading {
    font-size: 24px;
  }

  .partner-name {
    margin-bottom: 2rem;
  }

  .partner-links {
    display: block;
  }

  .partner-link, .partner-preview-link-copy {
    margin-bottom: .5rem;
    margin-right: 0;
    display: block;
  }

  .partner-content {
    margin-top: 3rem;
  }

  .partner-support-details {
    margin-bottom: 3rem;
  }

  .small-rich-text figcaption {
    font-size: 14px;
    line-height: 1.4em;
  }

  .partner-support-heading {
    font-size: 32px;
  }

  .pet-notes {
    flex-wrap: wrap;
  }

  .pet-note {
    flex-shrink: 0;
    flex-basis: 50%;
    margin-bottom: 3rem;
  }

  .heading-4 {
    text-align: center;
  }

  .heading-5 {
    font-size: 48px;
  }

  .image {
    padding-right: 25px;
  }

  .heading-6 {
    font-size: 60px;
  }

  .faq-block {
    height: auto;
    margin-top: 44px;
  }

  .prods {
    margin-bottom: 7rem;
  }

  .prods.hero-section, .prods.pet-hero-section {
    padding-top: 14rem;
    padding-bottom: 12rem;
  }

  .prods.section-top-padding {
    padding-top: 7rem;
  }

  .specs {
    margin-top: -20px;
  }

  .faq-container.flex-v {
    margin-top: -82px;
  }

  .faq-container.top-bar-container {
    padding-left: 1.3rem;
    padding-right: 1.3rem;
  }

  .faq-container.pet-photos-container {
    margin-top: 7rem;
  }

  .faq-container.footer {
    padding-left: 5px;
    padding-right: 5px;
  }

  .html-embed-2 {
    margin-top: 25px;
    margin-bottom: 16px;
  }

  .column-2 {
    margin-top: 55px;
  }

  .paragraph-2.right {
    text-align: left;
    font-size: 18px;
  }

  .process_card {
    flex-direction: row-reverse;
    margin-bottom: 35px;
    padding-bottom: 20px;
  }

  .centre_icon_wrap {
    width: 60px;
    height: 60px;
  }

  .h2 {
    font-size: 24px;
  }

  .h2.right {
    text-align: left;
    font-size: 22px;
  }

  .process_card_02 {
    margin-bottom: 35px;
  }

  .process_details {
    justify-content: flex-start;
    width: 90%;
    min-height: auto;
    margin-top: 14px;
    padding: 20px;
  }

  .process_line {
    inset: 0% auto 0% 25px;
  }

  .centre_step {
    font-size: 15px;
  }

  .centre_block {
    width: 55px;
  }

  .process_image_wrap {
    display: none;
  }

  .content-wrap {
    justify-content: center;
    align-items: center;
    width: 90%;
    height: 50vh;
    padding-bottom: 20px;
  }

  .step-block {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 110vh;
  }

  .img-block {
    z-index: 3;
    order: 3;
    width: 70%;
    min-height: 50vh;
    padding-top: 20px;
    position: relative;
  }

  .step {
    justify-content: center;
    margin-top: 20px;
    padding: 8%;
  }

  .dot {
    z-index: 99;
    order: 2;
    align-self: center;
    margin-bottom: 0;
    position: absolute;
    bottom: 50%;
  }

  .scoll-wrap {
    z-index: 1;
    height: 100%;
    bottom: 50%;
  }

  .step-content-block {
    z-index: 2;
    order: -1;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .container-2 {
    margin-top: 213px;
  }

  .timeline-img {
    margin-top: 0;
  }

  .faq_answer-wrap {
    padding-right: 0;
  }

  .faq_wrap-grid {
    grid-row-gap: 3rem;
  }

  .image-6 {
    margin-bottom: 51px;
    padding-left: 11px;
    padding-right: 11px;
  }

  .social-wrapper {
    justify-content: center;
    width: 100%;
  }

  .ask-faq {
    margin-top: 25px;
    margin-bottom: 16px;
  }

  .ask-wrapper.flex-v {
    margin-top: -82px;
  }

  .ask-wrapper.top-bar-container {
    padding-left: 1.3rem;
    padding-right: 1.3rem;
  }

  .ask-wrapper.pet-photos-container {
    margin-top: 7rem;
  }

  .ask-wrapper.footer {
    padding-left: 5px;
    padding-right: 5px;
  }
}

@media screen and (max-width: 479px) {
  h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 32px;
  }

  p, li {
    font-size: 16px;
  }

  blockquote {
    font-size: 20px;
  }

  .top-bar {
    height: 60px;
  }

  .rich-text figcaption {
    font-size: 12px;
    line-height: 1.4em;
  }

  .search-result-item {
    margin-bottom: 3rem;
  }

  .search-result-title {
    line-height: 1.4em;
  }

  .search-result-snippet, .bi-burger.w--open {
    font-size: 16px;
  }

  .cookie-notice {
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
  }

  .navigation-container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .navigation-item {
    font-size: 20px;
  }

  .section.first-section {
    margin-top: 7rem;
  }

  .container {
    padding-left: 1.9rem;
    padding-right: 1.9rem;
  }

  .container.top-bar-container {
    padding-left: .6rem;
    padding-right: .6rem;
  }

  .bg-pattern-01 {
    background-position: 0 0, 50%;
    height: 400px;
  }

  .hero-tagline {
    margin-bottom: 1rem;
    line-height: 1.2em;
  }

  .hero-text {
    font-size: 18px;
  }

  .hero-text.wide {
    font-size: 19px;
  }

  .cta {
    height: 3.5rem;
    margin-top: 1rem;
    font-size: 14px;
    line-height: 3.5rem;
  }

  .cta.hero-cta {
    height: auto;
    padding: 5px 1rem;
    font-size: 12px;
    line-height: 18px;
  }

  .sketch-cat-head.section-heading-img-01 {
    width: 3rem;
    margin-left: -1.5rem;
    top: -2.4rem;
  }

  .sketch-woof-04.section-header-img-03, .sketch-meow-04.section-header-img-04 {
    display: none;
  }

  .animal-preview {
    margin-bottom: 3rem;
  }

  .animal-preview-image-wrapper {
    width: 12rem;
    height: 12rem;
    margin-bottom: .5rem;
    padding: .5rem;
  }

  .animal-preview-details {
    font-size: 16px;
  }

  .sketch-woof-meow-ball.section-footer-img-01 {
    width: 10rem;
  }

  .sketch-bunny-ears {
    width: 6rem;
  }

  .resources-preview-container-header {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .shelters-preview-list {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    grid-template-columns: 1fr 1fr;
  }

  .footer {
    padding-bottom: 1.1rem;
  }

  .contact-form-holder {
    align-items: center;
  }

  .animal-welfare-numbers {
    font-size: 24px;
  }

  .animal-image-wrapper {
    width: 12rem;
    height: 12rem;
    margin-bottom: .5rem;
    padding: .5rem;
  }

  .animal-details {
    font-size: 16px;
  }

  .sketch-dog {
    width: 6rem;
  }

  .pet-information-left-side {
    margin-bottom: 5rem;
    display: block;
  }

  .pet-feature-icon {
    margin-left: 0;
  }

  .pet-name {
    margin-bottom: 1rem;
  }

  .pet-description {
    margin-bottom: 2rem;
  }

  .animal-preview-image-bg {
    width: 12rem;
    height: 12rem;
    margin-bottom: .5rem;
    padding: .5rem;
  }

  .pet-header-container {
    margin-bottom: 1rem;
  }

  .pet-image-container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .pet-about-left-side {
    margin-bottom: 1rem;
  }

  .pet-about-right-side {
    margin-top: 1rem;
  }

  .ready-top-adopt-points {
    margin-top: 2rem;
  }

  .ready-to-adopt-text {
    font-size: 16px;
  }

  .search-container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .search-input, .search-input::placeholder {
    font-size: 20px;
  }

  .button {
    height: 3.5rem;
    margin-top: 1rem;
    font-size: 16px;
    line-height: 3.5rem;
  }

  .pet-details {
    width: 100%;
    margin-bottom: 3rem;
  }

  .pet-features {
    width: 100%;
  }

  .pagination-button {
    height: 3.5rem;
    margin-top: 1rem;
    font-size: 16px;
    line-height: 3.5rem;
  }

  .resource-preview {
    font-size: 24px;
  }

  .resource-preview-description {
    font-size: 16px;
  }

  .important-numbers {
    margin-bottom: -.8rem;
    font-size: 20px;
  }

  .important-email, .important-number-preview-description, .important-number-description, .partner-preview-description, .partner-organisation {
    font-size: 16px;
  }

  .partner-link {
    margin-bottom: .25rem;
    font-size: 16px;
  }

  .partner-content {
    margin-top: 2rem;
  }

  .small-rich-text h1 {
    margin-bottom: 1rem;
    font-size: 24px;
  }

  .small-rich-text h2 {
    font-size: 24px;
  }

  .small-rich-text h3 {
    font-size: 20px;
  }

  .small-rich-text h4 {
    font-size: 18px;
  }

  .small-rich-text p {
    font-size: 16px;
  }

  .small-rich-text figcaption {
    font-size: 12px;
    line-height: 1.4em;
  }

  .partner-support-heading {
    font-size: 24px;
  }

  .donate-link {
    font-size: 16px;
  }

  .animal-preview-no-image {
    font-size: 16px;
    line-height: 1.4em;
  }

  .shelter-details {
    font-size: 16px;
  }

  .sketch-dog-butt.section-heading-img-02 {
    width: 3rem;
    margin-left: -1.5rem;
    bottom: -5rem;
  }

  .pet-notes {
    display: block;
  }

  .pet-note {
    margin-bottom: 2rem;
    margin-left: auto;
    margin-right: auto;
  }

  .heading-5 {
    font-size: 38px;
  }

  .image {
    padding-right: 64px;
  }

  .heading-6 {
    font-size: 40px;
  }

  .hero-text-copy {
    font-size: 18px;
  }

  .faq-container {
    margin-top: -72px;
    padding-left: 1.1rem;
    padding-right: 1.1rem;
  }

  .faq-container.top-bar-container {
    padding-left: .6rem;
    padding-right: .6rem;
  }

  .team-wrap {
    width: 250px;
    height: 250px;
  }

  .paragraph-2, .paragraph-2.right {
    font-size: 17px;
  }

  .h2 {
    font-size: 21px;
  }

  .process_details {
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 15px;
  }

  .content-wrap {
    align-items: flex-start;
  }

  .steps {
    margin-top: 238px;
    padding-top: 0;
  }

  .content-block {
    margin-top: 119px;
  }

  .step-block {
    justify-content: flex-start;
    min-height: auto;
  }

  .img-block {
    width: 90%;
  }

  .step {
    align-items: flex-start;
    width: 90%;
    margin-top: 17px;
  }

  .steps-clone {
    display: block;
    position: static;
  }

  .step-content-block {
    align-items: flex-start;
  }

  .content {
    font-size: 20px;
  }

  .timeline-img {
    align-items: flex-start;
    width: 250px;
    height: 250px;
    margin-top: auto;
  }

  .questions {
    font-size: 1rem;
    line-height: 1.2em;
  }

  .answers {
    font-size: 14px;
  }

  .image-6 {
    margin-bottom: 34px;
    padding-left: 11px;
    padding-right: 11px;
  }

  .image-7 {
    padding-left: 11px;
    padding-right: 11px;
  }

  .social-wrapper {
    justify-content: center;
    width: 100%;
  }

  .ask-wrapper {
    margin-top: 0;
    padding-left: 1.1rem;
    padding-right: 1.1rem;
  }

  .ask-wrapper.top-bar-container {
    padding-left: .6rem;
    padding-right: .6rem;
  }
}


@font-face {
  font-family: 'Syne';
  src: url('../fonts/Syne-Bold.woff2') format('woff2'), url('../fonts/Syne-Bold.eot') format('embedded-opentype'), url('../fonts/Syne-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: auto;
}
@font-face {
  font-family: 'Fredokaone';
  src: url('../fonts/FredokaOne-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Poetsenone';
  src: url('../fonts/PoetsenOne-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}