/*
Theme Name: Hakuna Matata Rescue
Author: Les Sturgeon
Version: 2.0 
*/
*,
*:before,
*:after {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
p {
  margin: 0;
  padding: 0;
}
.center {
  text-align: center !important;
}
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
.center {
  text-align: center !important;
}
.alignLeft {
  text-align: left;
}
.alignRight {
  text-align: right;
}
html {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  color: black;
  font-size: 16px;
  font-weight: 400;
  background-color: #f8f5ee;
}
a {
  color: black;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
  color: black;
}
a:focus {
  padding-left: 5px;
  padding-right: 5px;
}
.skip-nav-link {
  position: absolute;
  left: 10px;
  transform: translateY(-150px);
  padding: 20px;
  border-radius: 0 0 20px 20px;
  transition: transform 325ms;
}
.skip-nav-link:focus {
  transform: translateY(60%);
}
.responsive-menu-button {
  margin: 5px !important;
  border-radius: 10px;
}
/* Button reset*/
button {
  background: none;
  border: 0;
  color: inherit;
  /* cursor: default; */
  font: inherit;
  line-height: normal;
  overflow: visible;
  padding: 0;
  -webkit-user-select: none;
  /* for button */
  -moz-user-select: none;
  -ms-user-select: none;
}
/* --- Accessibility --- */
/* Text meant only for screen readers */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}
.screen-reader-text:hover,
.screen-reader-text:active,
.screen-reader-text:focus {
  background-color: #f8f5ee;
  clip: auto !important;
  color: black;
  display: block;
  font-size: 14px;
  font-weight: bold;
  height: auto;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 1px;
  left: 1px;
  width: auto;
  z-index: 100000;
  /* Above WP toolbar */
}
/* Focus outline style */
/* Menu styles*/
.sticky {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 9999999;
}
.menu {
  display: flex;
  width: 100%;
  justify-content: center;
  background-color: #f8f5ee;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 700;
  font-size: clamp(1rem, 2.1vw, 1.4rem);
}
.menu a {
  display: inline-block;
  text-align: left;
  padding: 14px 16px;
  text-decoration: none;
  color: black;
}
.menu a:hover {
  background-color: #648057;
  color: black;
}
.menu > ul {
  display: flex;
  position: relative;
}
.sub-menu {
  display: flex;
  flex-direction: column;
  position: absolute;
  overflow: hidden;
  transition: max-height 0.45s ease-in-out;
  background-color: #648057;
  border-radius: 10px;
}
.close {
  max-height: 0;
}
.display {
  max-height: 484px;
}
.has-children-button {
  display: flex;
  position: relative;
  align-items: center;
}
.has-children-button a {
  padding-right: 65px;
}
.has-children-button .menu-toggle {
  position: absolute;
  right: 16px;
}
.menu-toggle {
  background-color: #648057;
  border: 1px solid white;
  border-radius: 10px;
}
.menu-toggle .fa {
  padding: 6px 8px;
  color: black;
}
/* Mobile menu */
@media only screen and (max-width: 800px) {
  .sticky {
    position: relative;
    top: 0;
    left: 0;
  }
  .site-branding {
    padding-left: 16px;
  }
  .site-branding h1 {
    font-size: 2em;
  }
  .menu > ul {
    flex-direction: column;
    width: 100%;
  }
  .menu li a {
    width: 100%;
  }
  .has-children-button {
    display: flex;
    position: relative;
    align-items: center;
  }
  .has-children-button .menu-toggle {
    position: absolute;
    right: 16px;
  }
  .sub-menu {
    position: relative;
  }
  .sub-menu li:first-child {
    border-top: 1px dotted black;
  }
  .sub-menu li {
    border-bottom: 1px dotted black;
  }
  .sub-menu li a {
    padding-left: 30px;
  }
}
.headerArea {
  margin-top: 40px;
}
.headerArea .logo {
  width: 60%;
  margin: 0 auto;
}
.headerArea .logo img {
  width: 100%;
  display: block;
}
.headerArea .statement h1 {
  font-family: "cormorant-garamond", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: clamp(2rem, 4.1vw, 6rem);
  margin-bottom: 20px;
}
.headerArea .statement h1 .green {
  color: #648057;
}
.headerArea .statement h2 {
  font-size: clamp(1rem, 2.1vw, 1.4rem);
  line-height: 1.4;
  padding: 0 30px;
  max-width: 40ch;
  margin: 0 auto;
}
.headerArea .statement .inner4 {
  display: flex;
  align-items: center;
  justify-content: center;
}
.headerArea .statement .inner4 .youTube,
.headerArea .statement .inner4 .facebook,
.headerArea .statement .inner4 .instagram,
.headerArea .statement .inner4 .amazon {
  font-size: clamp(2rem, 2.1vw, 3rem);
  margin: 20px;
}
.headerArea .statement .inner4 .youTube i {
  color: #CC181E;
}
.headerArea .statement .inner4 .facebook i {
  color: #1877F2;
}
.headerArea .statement .inner4 .instagram i {
  color: #f77737;
}
.headerArea .statement .inner4 .amazon i {
  color: #FF9900;
}
.headerArea .statement .inner2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.headerArea .statement .volunteer,
.headerArea .statement .donate {
  border: 0;
  padding: 20px 30px;
  border-radius: 20px 0 20px 0;
  color: black;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 700;
  font-size: clamp(0.9rem, 2.1vw, 1.4rem);
}
.headerArea .statement .volunteer {
  background-color: #648057;
}
.headerArea .statement .donate {
  background-color: #cd903f;
}
.headerArea .statement .donate:hover,
.headerArea .statement .volunteer:hover {
  background-color: #f8f5ee;
  color: black;
  border: 2px solid #648057;
  text-decoration: underline;
}
@media screen and (min-width: 800px) {
  .headerArea {
    margin-top: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
.heroDesktop {
  display: none;
}
.heroMobile {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.heroMobile img {
  width: 100%;
}
@media screen and (min-width: 800px) {
  .heroMobile {
    display: none;
  }
  .heroDesktop {
    display: block;
  }
  .heroDesktop video {
    display: block;
    width: 100%;
    height: 80vh;
    z-index: 1;
    object-fit: cover;
  }
}
.about-us {
  background-color: #e8e1cf;
}
.about-us .grid2 {
  display: grid;
  grid-template-columns: 1fr;
}
.about-us .grid2 .inner2top {
  display: flex;
  margin-top: 20px;
}
.about-us .grid2 .inner2top .dHeart img {
  width: 40%;
}
.about-us .grid2 .inner2top .heading {
  font-size: clamp(2rem, 4.1vw, 6rem);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "cormorant-garamond", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 700;
  padding-left: 5%;
}
.about-us .grid2 .inner2text {
  display: grid;
  grid-template-columns: 1fr;
}
.about-us .grid2 .inner2text p {
  width: 90%;
  margin: 0 auto;
  font-size: clamp(1.1rem, 2.1vw, 1.8rem);
  line-height: 1.2;
  text-align: left;
}
.about-us .grid2 .inner2text .leavesRight {
  display: none;
}
.about-us .grid2 .inner3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 20px;
}
.about-us .grid2 .inner3 div {
  width: 70%;
  margin: 0 auto;
  font-size: clamp(1rem, 2.1vw, 2rem);
  font-family: "Familjen Grotesk", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  text-align: center;
}
.about-us .grid2 .inner3 div img {
  width: 100%;
}
.about-us .grid2 .about-us-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas: "pinky jc" "pip jc" "sheep mikey";
}
.about-us .grid2 .about-us-images .pinky {
  grid-area: pinky;
}
.about-us .grid2 .about-us-images .pinky img {
  border: 6px solid #e8e1cf;
  border-left: 0;
  border-bottom-right-radius: 30px;
}
.about-us .grid2 .about-us-images .pip {
  grid-area: pip;
}
.about-us .grid2 .about-us-images .pip img {
  border: 6px solid #e8e1cf;
  border-left: 0;
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
}
.about-us .grid2 .about-us-images .sheep {
  grid-area: sheep;
}
.about-us .grid2 .about-us-images .sheep img {
  border: 6px solid #e8e1cf;
  border-left: 0;
  border-top-right-radius: 30px;
}
.about-us .grid2 .about-us-images .mikey {
  grid-area: mikey;
}
.about-us .grid2 .about-us-images .mikey img {
  border: 6px solid #e8e1cf;
  border-right: 0;
  border-top-left-radius: 30px;
}
.about-us .grid2 .about-us-images .jc {
  grid-area: jc;
}
.about-us .grid2 .about-us-images .jc img {
  width: 100%;
  height: 100%;
  max-height: 1000px;
  display: block;
  border: 6px solid #e8e1cf;
  border-right: 0;
  border-bottom-left-radius: 30px;
}
.about-us .grid2 .about-us-images .pinky img,
.about-us .grid2 .about-us-images .pip img,
.about-us .grid2 .about-us-images .sheep img,
.about-us .grid2 .about-us-images .mikey img {
  width: 100%;
  height: 100%;
  max-height: 500px;
  display: block;
}
@media screen and (min-width: 500px) {
  .about-us .grid2 .inner2text {
    display: grid;
    grid-template-columns: 1fr 0.2fr;
  }
  .about-us .grid2 .inner2text .leavesRight {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .about-us .grid2 .inner2text .leavesRight img {
    width: 100%;
    opacity: 0.4;
  }
}
@media screen and (min-width: 800px) {
  .about-us .grid2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
.thePeople {
  background-color: #f8f5ee;
  margin-top: 30px;
}
.thePeople .grid31 {
  display: grid;
  grid-template-columns: 1fr;
}
.thePeople .grid31 .hayleyPhoto {
  width: 90%;
  margin: 0 auto;
}
.thePeople .grid31 .hayleyPhoto img {
  width: 100%;
  border-radius: 30px;
}
.thePeople .grid31 .inner2 {
  display: grid;
  grid-template-columns: 1fr 0.3fr;
}
.thePeople .grid31 .inner2 .heading {
  font-size: clamp(2rem, 4.1vw, 6rem);
  font-family: "cormorant-garamond", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 5%;
  margin-bottom: 10px;
}
.thePeople .grid31 .inner2 img {
  width: 50%;
}
.thePeople .grid31 p {
  width: 90%;
  margin: 0 auto;
  font-size: clamp(1.1rem, 2.1vw, 1.8rem);
  line-height: 1.2;
  text-align: left;
}
.thePeople .grid31 .readOurStory {
  border: 0;
  padding: 20px 30px;
  border-radius: 20px 0 20px 0;
  color: black;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 700;
  font-size: clamp(1.2rem, 2.1vw, 1.8rem);
  background-color: #cd903f;
}
.thePeople .grid31 .readOurStory:hover {
  background-color: #f8f5ee;
  color: black;
  border: 2px solid #648057;
  text-decoration: underline;
}
.thePeople .grid31 .strapline {
  display: flex;
  align-items: center;
  justify-content: center;
}
.thePeople .grid31 .strapline img {
  width: 100%;
}
@media screen and (min-width: 800px) {
  .thePeople .grid31 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.support {
  margin-top: 20px;
}
.support .heading {
  font-size: clamp(2rem, 4.1vw, 6rem);
  font-family: "cormorant-garamond", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 5%;
}
.support .heading img {
  width: 15%;
}
.support .grid4 {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
}
.support .grid4 .box {
  margin: 20px;
  border: 2px solid #e8e1cf;
  border-radius: 20px;
  background-color: white;
  text-align: center;
  font-size: clamp(1.2rem, 2.1vw, 2rem);
  line-height: 1.4;
  font-family: "Familjen Grotesk", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}
.support .grid4 .box .cost {
  font-weight: 700;
  font-size: 1.6rem;
  font-size: clamp(1.5rem, 2.1vw, 2.5rem);
}
.support .grid4 .box .hero {
  font-weight: 700;
  font-size: clamp(1.5rem, 2.1vw, 2.5rem);
  color: #648057;
}
.support .donate {
  border: 0;
  padding: 20px 50px;
  border-radius: 20px 0 20px 0;
  color: black;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 700;
  font-size: clamp(1.2rem, 2.1vw, 1.8rem);
  background-color: #648057;
}
.support .donate:hover {
  background-color: #f8f5ee;
  color: black;
  border: 2px solid #648057;
  text-decoration: underline;
}
@media screen and (min-width: 500px) {
  .support .grid4 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 800px) {
  .support .grid4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }
}
.becomeAHero {
  position: relative;
  width: 100%;
}
.becomeAHero img {
  object-fit: cover;
  width: 100%;
}
.becomeAHero h4 {
  font-size: clamp(1.1rem, 4.1vw, 8.5rem);
  width: 60%;
  font-family: "Cormorant Garamond", serif;
  font-optical-sizing: auto;
  font-style: normal;
  position: absolute;
  top: 25%;
  left: 15%;
  color: #6fdd44;
}
.becomeAHeroSub {
  text-align: center;
  padding: 0 20px;
  font-size: clamp(1.4rem, 3.1vw, 3.5rem);
  color: #648057;
  max-width: 30ch;
  margin: 0 auto;
}
.becomeAHeroSub .heroButton {
  border: 0;
  padding: 20px 50px;
  border-radius: 20px 0 20px 0;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 700;
  font-size: clamp(1.2rem, 2.1vw, 1.8rem);
  background-color: #cd903f;
}
.becomeAHeroSub .heroButton:hover {
  background-color: #f8f5ee;
  color: black;
  border: 2px solid #648057;
  text-decoration: underline;
}
.social {
  background-color: #e6e0d3;
}
.social .left .logo {
  width: 50%;
  margin: 0 auto;
}
.social .left .logo img {
  width: 100%;
  display: block;
}
.social .left p {
  font-size: clamp(1rem, 2.1vw, 2rem);
  line-height: 1.2;
  padding: 0 5%;
  text-align: center;
}
.social .thankYou p {
  font-family: "Marck Script", cursive;
  font-weight: 400;
  font-style: normal;
  font-size: clamp(1.5rem, 2.1vw, 2.5rem);
  text-align: center;
  transform: rotate(-20deg);
  padding-top: 10vh;
}
.social .thankYou .heart {
  width: 20%;
  margin: 20px auto;
}
.social .thankYou .heart img {
  width: 100%;
}
.social .right {
  margin-top: 10vh;
}
.social .right p {
  font-size: clamp(1.5rem, 2.1vw, 2.5rem);
  padding: 5%;
  text-align: center;
}
.social .right .inner4 {
  display: flex;
  align-items: center;
  justify-content: center;
}
.social .right .inner4 .youTube,
.social .right .inner4 .facebook,
.social .right .inner4 .instagram,
.social .right .inner4 .amazon {
  font-size: clamp(2rem, 2.1vw, 3rem);
  margin: 20px;
}
.social .right .inner4 .youTube i {
  color: #CC181E;
}
.social .right .inner4 .facebook i {
  color: #1877F2;
}
.social .right .inner4 .instagram i {
  color: #f77737;
}
.social .right .inner4 .amazon i {
  color: #FF9900;
}
@media screen and (min-width: 800px) {
  .social {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
}
.privacy {
  font-size: clamp(1.5rem, 2.1vw, 2.5rem);
  line-height: 1.6;
  text-align: center;
}
.cookiePolicy {
  width: 80%;
  margin: 0 auto;
  font-size: clamp(1rem, 2.1vw, 2rem);
  line-height: 1.2;
}
.shop {
  width: 80%;
  margin: 0 auto;
  margin-bottom: 30px;
}
.shop h1 {
  font-size: clamp(5.5rem, 4.1vw, 6.5rem);
  color: #648057;
  font-weight: 700;
  text-align: center;
  font-family: "Cormorant Garamond", serif;
  font-optical-sizing: auto;
}
.shop .sort {
  border: 2px dashed #648057;
  padding: 10px;
  border-radius: 20px;
}
.shop .sort .formInput {
  background-color: white;
  color: #000;
  outline: 0;
  border: 0;
  border-radius: 10px;
  font-size: clamp(1.5rem, 2.1vw, 2.5rem);
  padding: 5px 20px;
}
.shop .sort label {
  font-size: clamp(1.5rem, 2.1vw, 2.5rem);
  display: block;
}
.shop .sort .button {
  font-size: clamp(1.5rem, 2.1vw, 2.5rem);
  margin: 20px auto;
  padding: 10px 20px;
  border-radius: 20px;
  background-color: #648057;
  border: 2px solid black;
  color: black;
}
.shop .sort .button:hover {
  background-color: #f8f5ee;
}
.goods {
  width: 80%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
}
.goods .shopBox {
  position: relative;
  margin: 2%;
  color: black;
  border: 4px solid #648057;
  border-radius: 20px;
}
.goods .shopBox .image img {
  width: 100%;
  border-radius: 16px;
}
.goods .shopBox .itemName {
  font-size: clamp(1.5rem, 2.1vw, 2rem);
  padding: 10px 20px;
  text-align: center;
  background-color: #648057;
}
.goods .shopBox .cost {
  text-align: center;
  font-size: clamp(2.5rem, 2.1vw, 4.5rem);
}
.goods .shopBox .description {
  font-size: clamp(1rem, 2.1vw, 1.4rem);
  text-align: center;
  padding: 10px 30px;
  line-height: 1.2;
}
.goods .shopBox .button {
  font-size: clamp(1.5rem, 2.1vw, 2.5rem);
  margin: 20px auto;
  padding: 10px 20px;
  border-radius: 20px;
  background-color: #648057;
  border: 2px solid black;
  color: black;
}
.goods .shopBox .button:hover {
  background-color: #f8f5ee;
}
@media screen and (min-width: 950px) {
  .goods {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 1200px) {
  .sort form {
    width: 40%;
    margin: 0 auto;
  }
  .goods {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }
}
.readOurStory {
  width: 80%;
  margin: 0 auto;
}
.readOurStory h1,
.readOurStory h2 {
  font-size: clamp(2.5rem, 2.1vw, 4.5rem);
  text-align: center;
  color: #648057;
  margin-bottom: 10px;
}
.readOurStory .image {
  margin-bottom: 20px;
}
.readOurStory .image img {
  width: 100%;
  border-radius: 40px;
}
.readOurStory p {
  font-size: clamp(1rem, 2.1vw, 2rem);
  line-height: 1.2;
  margin-bottom: 10px;
}
.donate h1 {
  font-size: clamp(2.5rem, 2.1vw, 4.5rem);
  color: #648057;
  text-align: center;
}
.donate .inner2 h2 {
  font-size: clamp(1.5rem, 2.1vw, 2.5rem);
  line-height: 1.2;
  padding: 10px 20px;
}
.donate .inner2 p {
  font-size: clamp(1rem, 2.1vw, 2rem);
  line-height: 1.2;
  padding: 10px 20px;
}
@media screen and (min-width: 800px) {
  .donate .inner2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
.donating {
  width: 100%;
  background: url(images/donatingSmallBG.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 500px;
  position: relative;
}
.donating .bubble {
  position: absolute;
  left: 5%;
  top: 45%;
  width: 90%;
  height: auto;
  display: table;
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 30px;
  padding: 20px 0;
}
.donating .bubble p {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}
.donating .h1 {
  font-size: clamp(3.5rem, 4.1vw, 7.5rem);
  font-family: "Cormorant Garamond", serif;
  font-optical-sizing: auto;
  font-style: normal;
  color: white;
  font-weight: 700;
  text-align: center;
}
.donating .h1 img {
  width: 15%;
}
.donating .h2 {
  font-size: clamp(1.5rem, 2.1vw, 2rem);
  line-height: 1.2;
  color: white;
}
@media screen and (min-width: 500px) {
  .donating {
    background: url(images/donatingMediumBG.jpg);
    height: 500px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
  }
  .donating .bubble {
    position: absolute;
    left: 5%;
    top: 40%;
    width: 90%;
    height: auto;
    display: table;
  }
}
@media screen and (min-width: 1000px) {
  .donating {
    background: url(images/donatingBG.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left center;
    width: 100%;
    height: 600px;
    position: relative;
  }
  .donating .bubble {
    position: absolute;
    left: 60%;
    top: 40%;
    width: 35%;
    height: auto;
    display: table;
  }
}
.financial {
  margin-top: 5%;
}
.financial h1 {
  font-family: "Cormorant Garamond", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 700;
  text-align: center;
  font-size: clamp(3.5rem, 4.1vw, 6.5rem);
  color: #648057;
}
.financial .line {
  width: 15%;
  margin: 0 auto;
}
.financial .line img {
  width: 100%;
}
.financial h2 {
  width: 60%;
  margin: 0 auto;
  font-size: clamp(1rem, 2.1vw, 2rem);
  text-align: center;
  line-height: 1.2;
}
.financial .donate {
  border: 0;
  padding: 20px 60px;
  border-radius: 20px 0 20px 0;
  color: black;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 700;
  font-size: clamp(0.9rem, 2.1vw, 1.4rem);
}
.financial .donate {
  background-color: #cd903f;
}
.financial .donate:hover {
  background-color: #f8f5ee;
  color: black;
  border: 2px solid #648057;
  text-decoration: underline;
}
.financial h3 {
  width: 60%;
  margin: 0 auto;
  font-size: clamp(1rem, 2.1vw, 1.8rem);
  text-align: center;
  line-height: 1.2;
}
.financial ul {
  width: 90%;
  margin: 0 auto;
  font-size: clamp(1rem, 2.1vw, 1.6rem);
  line-height: 1.4;
}
.financial .bold {
  font-weight: 700;
}
.financial .paypal {
  border: 0;
  padding: 20px 60px;
  border-radius: 20px 0 20px 0;
  color: black;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 700;
  font-size: clamp(0.9rem, 2.1vw, 1.4rem);
}
.financial .paypal {
  background-color: #1877f2;
}
.financial .paypal:hover {
  background-color: #f8f5ee;
  color: black;
  border: 2px solid #648057;
  text-decoration: underline;
}
.financial .amazon {
  border: 0;
  padding: 20px 60px;
  border-radius: 20px 0 20px 0;
  color: black;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 700;
  font-size: clamp(0.9rem, 2.1vw, 1.4rem);
}
.financial .amazon {
  background-color: #648057;
}
.financial .amazon:hover {
  background-color: #f8f5ee;
  color: black;
  border: 2px solid #648057;
  text-decoration: underline;
}
@media screen and (min-width: 500px) {
  .financial ul {
    width: 70%;
    margin: 0 auto;
    font-size: clamp(1rem, 2.1vw, 1.6rem);
    line-height: 1.4;
  }
}
@media screen and (min-width: 800px) {
  .financial ul {
    width: 30%;
    margin: 0 auto;
    font-size: clamp(1rem, 2.1vw, 1.6rem);
    line-height: 1.4;
  }
}
.donorBoxForm .grid3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.heroForm {
  width: 90%;
  margin: 0 auto;
  border: 2px solid black;
  padding: 20px;
  border-radius: 20px;
}
.heroForm .enquiryAbout {
  font-size: clamp(1.5rem, 2.1vw, 2.5rem);
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 10px;
}
.heroForm h2 {
  font-size: clamp(1.5rem, 2.1vw, 2.5rem);
}
.heroForm label {
  font-size: clamp(1rem, 2.1vw, 2rem);
  font-weight: 600;
}
.heroForm fieldset {
  border: 2px dashed #648057;
  border-radius: 20px;
  padding: 20px;
}
.heroForm input[type="text"],
.heroForm input[type="email"],
.heroForm input[type="tel"] {
  background-color: white;
  border: 1px solid black;
  color: #000;
  width: 80%;
  outline: 0;
  border-radius: 10px;
  font-size: clamp(1rem, 2.1vw, 2rem);
  padding: 5px 20px;
  margin: 5px 0 15px 0;
}
.heroForm .wpcf7-textarea {
  background-color: white;
  color: #000;
  width: 80%;
  border: 0;
  outline: 0;
  border-radius: 10px;
  font-size: clamp(1.5rem, 2.1vw, 2.5rem);
  padding: 5px 20px;
}
.heroForm .wpcf7-submit {
  font-size: clamp(1.5rem, 2.1vw, 2.5rem);
  margin: 20px auto;
  padding: 10px 20px;
  border-radius: 20px;
  background-color: #648057;
  border: 2px solid black;
  color: black;
}
.heroForm .wpcf7-submit:hover,
.heroForm .wpcf7-submit:focus {
  background-color: #648057;
  border: 4px solid black;
  text-decoration: underline;
}
.heroForm input[type="checkbox"] {
  font-size: clamp(1.5rem, 2.1vw, 2.5rem);
  width: 30px;
  height: 30px;
  outline: 2px solid yellow;
  margin-right: 10px;
}
.heroForm .wpcf7-list-item-label {
  font-size: 1rem;
}
.heroForm .hidden input[type="text"] {
  background-color: #f8f5ee;
  color: #f8f5ee;
  border: 0;
}
.bunnyHero .left img {
  width: 100%;
}
.bunnyHero .right h1 {
  font-size: clamp(2.5rem, 4.1vw, 7rem);
  padding: 20px;
  font-weight: 600;
  color: #648057;
  font-family: "Cormorant Garamond", serif;
  font-optical-sizing: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bunnyHero .right .heart {
  position: relative;
  float: right;
}
.bunnyHero .right .heart img {
  width: 50%;
}
.bunnyHero .right p {
  padding: 20px;
  font-size: clamp(1.2rem, 2.1vw, 1.8rem);
  line-height: 1.2;
  margin-bottom: 1.2;
}
@media screen and (min-width: 800px) {
  .bunnyHero {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .bunnyHero .left img {
    width: 100%;
  }
  .bunnyHero .right h1 {
    font-size: clamp(2.5rem, 4.1vw, 7rem);
    padding: 20px;
    font-weight: 600;
    color: #648057;
    font-family: "Cormorant Garamond", serif;
    font-optical-sizing: auto;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .bunnyHero .right .heart {
    position: relative;
    float: right;
  }
  .bunnyHero .right .heart img {
    width: 50%;
  }
  .bunnyHero .right p {
    padding: 20px;
    font-size: clamp(1.2rem, 2.1vw, 1.8rem);
    line-height: 1.2;
    margin-bottom: 1.2;
  }
}
.meetTheFamily {
  margin-top: 20px;
}
.meetTheFamily h2 {
  font-size: clamp(2.5rem, 4.1vw, 7rem);
  text-align: center;
  color: #648057;
  font-weight: 600;
  font-family: "Cormorant Garamond", serif;
  font-optical-sizing: auto;
}
.meetTheFamily .orangeLine {
  text-align: center;
}
.meetTheFamily .orangeLine img {
  width: 100px;
}
.meetTheFamily h3 {
  font-size: clamp(1.5rem, 2.1vw, 2.5rem);
  text-align: center;
  padding: 0 20px;
}
.meetTheFamily .grid2 {
  border-radius: 40px;
  width: 90%;
  margin: 0 auto;
  background-color: white;
}
.meetTheFamily .grid2 .left img {
  width: 100%;
  border-radius: 40px;
}
.meetTheFamily .grid2 .right {
  padding: 0 20px;
}
.meetTheFamily .grid2 .right .inner2 .name {
  font-size: clamp(3.5rem, 4.1vw, 7.5rem);
  color: #648057;
  font-weight: 600;
  font-family: "Cormorant Garamond", serif;
  font-optical-sizing: auto;
  text-align: center;
  margin-bottom: 10px;
}
.meetTheFamily .grid2 .right .inner2 .careTeam {
  font-size: clamp(1rem, 2.1vw, 1.6rem);
  line-height: 1.2;
  border: 2px dashed #648057;
  border-radius: 10px;
  padding: 10px;
  text-align: center;
}
.meetTheFamily .grid2 .right .inner2 .careTeam i {
  color: green;
}
.meetTheFamily .grid2 .right .inner2 .careTeam .bgColour {
  color: #cd903f;
}
.meetTheFamily .grid2 .right p {
  font-size: clamp(1rem, 2.1vw, 1.4rem);
  line-height: 1.2;
  margin: 10px 0;
}
.meetTheFamily .grid2 .right .heroButton {
  border: 0;
  padding: 20px 30px;
  border-radius: 20px 0 20px 0;
  color: black;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 700;
  font-size: clamp(0.9rem, 2.1vw, 1.4rem);
  margin: 20px 0;
  background-color: #648057;
}
.meetTheFamily .grid2 .right .guardianButton {
  border: 0;
  padding: 20px 30px;
  border-radius: 20px 0 20px 0;
  color: black;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 700;
  font-size: clamp(0.9rem, 2.1vw, 1.4rem);
  margin: 20px 0;
  background-color: #cd903f;
}
.meetTheFamily .grid2 .right .heroButton:hover,
.meetTheFamily .grid2 .right .guardianButton:hover {
  background-color: #f8f5ee;
  color: black;
  border: 2px solid #648057;
  text-decoration: underline;
}
@media screen and (min-width: 800px) {
  .meetTheFamily .grid2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
.contactUs {
  padding-top: 30px;
  width: 100%;
  margin: 0 auto;
}
.contactUs .logoBottom {
  display: none;
}
.contactUs .left,
.contactUs .right {
  width: 90%;
  margin: 0 auto;
}
.contactUs h1 {
  font-family: "Cormorant Garamond", serif;
  font-optical-sizing: auto;
  font-size: clamp(2.5rem, 2.1vw, 4.5rem);
  color: #648057;
  font-weight: 700;
  margin-bottom: 10px;
}
.contactUs h2 {
  font-size: clamp(1.5rem, 2.1vw, 2.5rem);
  line-height: 1.2;
  margin-bottom: 10px;
}
.contactUs .volunteerButton {
  border: 0;
  padding: 20px 50px;
  border-radius: 20px 0 20px 0;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 700;
  font-size: clamp(1.2rem, 2.1vw, 1.8rem);
  background-color: #648057;
}
.contactUs .volunteerButton:hover {
  background-color: #f8f5ee;
  color: black;
  border: 2px solid #648057;
  text-decoration: underline;
}
.contactUs label {
  font-size: clamp(1rem, 2.1vw, 2rem);
  font-weight: 600;
}
.contactUs fieldset {
  border: 2px dashed #648057;
  border-radius: 20px;
  padding: 20px;
}
.contactUs input[type="text"],
.contactUs input[type="email"],
.contactUs input[type="tel"] {
  background-color: white;
  border: 1px solid black;
  color: #000;
  width: 80%;
  outline: 0;
  border-radius: 10px;
  font-size: clamp(1rem, 2.1vw, 2rem);
  padding: 5px 20px;
  margin: 5px 0 15px 0;
}
.contactUs .wpcf7-textarea {
  background-color: white;
  color: #000;
  width: 80%;
  border: 0;
  outline: 0;
  border-radius: 10px;
  font-size: clamp(1.5rem, 2.1vw, 2.5rem);
  padding: 5px 20px;
}
.contactUs .wpcf7-submit {
  font-size: clamp(1.5rem, 2.1vw, 2.5rem);
  margin: 20px auto;
  padding: 10px 20px;
  border-radius: 20px;
  background-color: #648057;
  border: 2px solid black;
  color: black;
}
.contactUs .wpcf7-submit:hover,
.contactUs .wpcf7-submit:focus {
  background-color: #648057;
  border: 4px solid black;
  text-decoration: underline;
}
.contactUs input[type="checkbox"] {
  font-size: clamp(1.5rem, 2.1vw, 2.5rem);
  width: 30px;
  height: 30px;
  outline: 2px solid yellow;
  margin-right: 10px;
}
.contactUs .wpcf7-list-item-label {
  font-size: 1rem;
}
.contactUs .logoTop img,
.contactUs .logoBottom img {
  width: 100%;
}
.contactUs p {
  font-size: clamp(1.5rem, 2.1vw, 2.5rem);
  line-height: 1.2;
  margin-bottom: 10px;
}
@media screen and (min-width: 800px) {
  .contactUs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .contactUs .logoTop {
    display: none;
  }
  .contactUs .logoBottom {
    display: block;
  }
}
.volunteering .inner2 {
  display: grid;
  grid-template-columns: 1fr 0.2fr;
  margin-left: 5%;
}
.volunteering .inner2 .leaf img {
  width: 100%;
}
.volunteering .inner2 h1 {
  font-size: clamp(4.5rem, 4.1vw, 6.5rem);
  font-family: "Cormorant Garamond", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 700;
  color: #648057;
}
.volunteering .inner2 h2 {
  font-size: clamp(1rem, 2.1vw, 2rem);
  line-height: 1.2;
  padding-right: 10px;
}
.volunteering .inner2 .line {
  width: 50%;
  margin: 0 auto;
}
.volunteering .inner2 .line img {
  width: 100%;
}
.volunteering .mikeyBG {
  width: 100%;
}
.volunteering .mikeyBG img {
  width: 100%;
}
@media screen and (min-width: 800px) {
  .volunteering .grid2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
.withUs {
  background-color: #e6e0d3;
}
.withUs h3 {
  font-size: clamp(3.5rem, 4.1vw, 6.5rem);
  font-family: "Cormorant Garamond", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 700;
  color: #648057;
  text-align: center;
}
.withUs p {
  font-size: clamp(1rem, 2.1vw, 2rem);
  line-height: 1.2;
  width: 90%;
  margin: 0 auto;
  text-align: center;
}
.withUs .greenText {
  color: #648057;
  font-weight: 700;
}
.withUs .box {
  width: 80%;
  margin: 0 auto;
  margin-top: 20px;
  margin-bottom: 20px;
  border: 2px solid #648057;
  background-color: white;
  border-radius: 20px;
  padding: 10px 30px;
}
.withUs .box img {
  height: 50px;
  vertical-align: bottom;
  display: none;
}
.withUs .box .heading {
  font-size: clamp(1.5rem, 2.1vw, 2.5rem);
  font-family: "Cormorant Garamond", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 700;
  color: #648057;
  line-height: 1.4;
}
.withUs .box .orangeText {
  font-size: clamp(1rem, 2.1vw, 1.4rem);
  color: #cd903f;
  font-weight: 700;
}
.withUs .box .mainText {
  font-size: clamp(1rem, 2.1vw, 1.4rem);
  margin: 10px 0;
  line-height: 1.2;
}
.withUs .box .donate {
  border: 0;
  padding: 20px 30px;
  border-radius: 20px 0 20px 0;
  color: black;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 700;
  font-size: clamp(0.9rem, 2.1vw, 1.4rem);
}
.withUs .box .donate {
  background-color: #cd903f;
}
.withUs .box .donate:hover {
  background-color: #f8f5ee;
  color: black;
  border: 2px solid #648057;
  text-decoration: underline;
}
.withUs .joinFamily {
  width: 100%;
  border-top: 2px solid #648057;
  border-bottom: 2px solid #648057;
}
.withUs .joinFamily img {
  width: 100%;
}
.withUs .volunteerForm {
  width: 80%;
  margin: 0 auto;
}
.withUs .volunteerForm .logo img {
  width: 100%;
}
.withUs .volunteerForm .heading {
  font-size: clamp(2.5rem, 2.1vw, 4.5rem);
  font-family: "Cormorant Garamond", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 700;
  color: #648057;
  line-height: 1.4;
  text-align: center;
}
.withUs .volunteerForm label {
  font-size: clamp(1rem, 2.1vw, 2rem);
  font-weight: 600;
}
.withUs .volunteerForm fieldset {
  border: 2px dashed #648057;
  border-radius: 20px;
  padding: 20px;
}
.withUs .volunteerForm input[type="text"],
.withUs .volunteerForm input[type="email"],
.withUs .volunteerForm input[type="tel"],
.withUs .volunteerForm input[type="date"] {
  background-color: white;
  border: 1px solid black;
  color: #000;
  width: 80%;
  outline: 0;
  border-radius: 10px;
  font-size: clamp(1rem, 2.1vw, 2rem);
  padding: 5px 20px;
  margin: 5px 0 30px 0;
}
.withUs .volunteerForm .wpcf7-textarea {
  background-color: white;
  color: #000;
  width: 80%;
  border: 0;
  outline: 0;
  border-radius: 10px;
  font-size: clamp(1.5rem, 2.1vw, 2.5rem);
  padding: 5px 20px;
  margin: 5px 0 30px 0;
}
.withUs .volunteerForm .wpcf7-select {
  background-color: white;
  color: #000;
  width: 100%;
  border: 0;
  outline: 0;
  border-radius: 10px;
  font-size: clamp(1.5rem, 2.1vw, 2.5rem);
  padding: 5px 20px;
  margin: 5px 0 30px 0;
}
.withUs .volunteerForm .wpcf7-submit {
  font-size: clamp(1.5rem, 2.1vw, 2.5rem);
  margin: 20px auto;
  padding: 10px 20px;
  border-radius: 20px;
  background-color: #648057;
  border: 2px solid black;
  color: black;
}
.withUs .volunteerForm .wpcf7-submit:hover,
.withUs .volunteerForm .wpcf7-submit:focus {
  background-color: white;
  border: 4px solid black;
  text-decoration: underline;
}
.withUs .volunteerForm .wpcf7-list-item-label {
  font-size: 1rem;
}
@media screen and (min-width: 500px) {
  .withUs .box img {
    display: inline-block;
  }
}
@media screen and (min-width: 800px) {
  .withUs p {
    font-size: clamp(1rem, 2.1vw, 2rem);
    line-height: 1.2;
    width: 55%;
    margin: 0 auto;
    text-align: center;
  }
  .withUs .grid3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
  .withUs .grid4 {
    display: grid;
    grid-template-columns: 0.5fr 1fr 1fr 0.5fr;
    margin-top: 50px;
  }
  .withUs .box {
    width: 80%;
    margin: 0 auto;
    border: 2px solid #648057;
    background-color: white;
    border-radius: 20px;
    padding: 10px 30px;
  }
  .withUs .box img {
    height: 50px;
    vertical-align: bottom;
  }
  .withUs .box .heading {
    font-size: clamp(1.5rem, 2.1vw, 2.5rem);
    font-family: "Cormorant Garamond", serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 700;
    color: #648057;
    line-height: 1.4;
  }
  .withUs .box .orangeText {
    font-size: clamp(1rem, 2.1vw, 1.4rem);
    color: #cd903f;
    font-weight: 700;
  }
  .withUs .box .mainText {
    font-size: clamp(1rem, 2.1vw, 1.4rem);
    margin: 10px 0;
    line-height: 1.2;
  }
  .withUs .box .donate {
    border: 0;
    padding: 20px 30px;
    border-radius: 20px 0 20px 0;
    color: black;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 700;
    font-size: clamp(0.9rem, 2.1vw, 1.4rem);
  }
  .withUs .box .donate {
    background-color: #cd903f;
  }
  .withUs .box .donate:hover {
    background-color: #f8f5ee;
    color: black;
    border: 2px solid #648057;
    text-decoration: underline;
  }
  .withUs .volunteerForm .logo {
    width: 30%;
    margin: 0 auto;
  }
  .withUs .volunteerForm .logo img {
    width: 100%;
  }
}
.montserrat {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}
.cormorant-garamond {
  font-family: "Cormorant Garamond", serif;
  font-optical-sizing: auto;
  font-style: normal;
}
.marck {
  font-family: "Marck Script", cursive;
  font-weight: 400;
  font-style: normal;
}
.familjen-grotesk {
  font-family: "Familjen Grotesk", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}
.secondHeading .logo {
  width: 50%;
  margin: 0 auto;
}
.secondHeading .logo img {
  width: 100%;
}
@media screen and (min-width: 800px) {
  .secondHeading {
    display: grid;
    grid-template-columns: 1fr 3fr;
  }
  .secondHeading div:nth-child(2) {
    position: relative;
  }
  .secondHeading div:nth-child(2) .menuBottom {
    position: absolute;
    bottom: 20%;
    width: 100%;
  }
  .secondHeading .logo {
    width: 80%;
    margin: 0 auto;
  }
  .secondHeading .logo img {
    width: 100%;
  }
}
.faq {
  background-color: white;
  padding: 20px 10%;
  margin: 0 auto;
}
.faq h1,
.faq h4 {
  font-size: clamp(3.5rem, 2.1vw, 6.5rem);
  font-weight: 800;
  color: #648057;
  font-family: "Cormorant Garamond", serif;
  font-optical-sizing: auto;
  margin-bottom: 10px;
}
.faq .heading {
  font-family: "Cormorant Garamond", serif;
  font-optical-sizing: auto;
  font-size: clamp(2rem, 2.1vw, 3.5rem);
  line-height: 1.1;
  color: #648057;
  margin-bottom: 10px;
  font-weight: 700;
}
.faq .subHeading {
  font-family: "Cormorant Garamond", serif;
  font-optical-sizing: auto;
  font-size: clamp(2rem, 2.1vw, 3.5rem);
  line-height: 1.1;
  color: #648057;
  margin-bottom: 10px;
  font-weight: 700;
}
.faq p,
.faq .subText {
  font-size: clamp(1.2rem, 2.1vw, 1.6rem);
  line-height: 1.2;
  padding-left: 20px;
  margin-bottom: 20px;
}
.faq p i,
.faq .subText i {
  color: #cd903f;
  font-weight: 700;
  padding-right: 10px;
}
.adminSignIn {
  width: 60%;
  margin: 0 auto;
}
.adminSignIn fieldset {
  border: 2px dashed black;
  padding: 20px;
  border-radius: 10px;
}
.adminSignIn .formInput {
  font-size: clamp(1rem, 2.1vw, 2rem);
  border: 0;
  outline: 0;
  padding: 5px 10px;
}
.adminSignIn .button {
  background-color: #648057;
  border: 2px solid black;
  border-radius: 20px;
  padding: 5px 20px;
  font-size: clamp(1rem, 2.1vw, 2rem);
}
.adminSignIn .button:hover {
  background-color: white;
}
.adminSelectAnimal .heading {
  font-size: clamp(2.5rem, 2.1vw, 4.5rem);
  font-weight: 700;
}
.adminSelectAnimal .box .grid2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.adminSelectAnimal .box .name01 {
  font-size: clamp(1.5rem, 2.1vw, 2.5rem);
  display: flex;
  align-items: center;
  justify-content: center;
}
.adminSelectAnimal .box .image {
  width: 100%;
}
.adminSelectAnimal .box .image img {
  max-width: 200px;
}
.adminUpdateAnimal {
  width: 60%;
  margin: 0 auto;
}
.adminUpdateAnimal .heading {
  font-size: clamp(2.5rem, 2.1vw, 4.5rem);
  font-weight: 700;
}
.adminUpdateAnimal fieldset {
  border: 2px dashed black;
  padding: 20px;
  border-radius: 10px;
}
.adminUpdateAnimal .formInput {
  font-size: clamp(1rem, 2.1vw, 2rem);
  border: 0;
  outline: 0;
  padding: 5px 10px;
}
.adminUpdateAnimal .button {
  background-color: #648057;
  border: 2px solid black;
  border-radius: 20px;
  padding: 5px 20px;
  font-size: clamp(1rem, 2.1vw, 2rem);
}
.adminUpdateAnimal .button:hover {
  background-color: white;
}
