/*
Theme Name: Heatons Theme Modern
Author: Adam White
Author URI: https://adamwhite.tech
Description: A custom WordPress theme developed by Adam White.
Version: 1.0.0
License: Proprietary
Text Domain: my-custom-theme
Tags: blog, custom-background, etc
*/
* {
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: white;
}

.btn {
  border: none;
}

html {
  background-color: #d9e3ec;
  height: 100%;
  margin: 0 !important;
  font-size: 16px;
}

p,
a {
  font-family: "Outfit", "Open Sans", serif;
}

span {
  font-family: "Outfit", "Open Sans", serif;
  letter-spacing: 0.035em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Lora", "Open Sans", serif;
  font-weight: 600;
  letter-spacing: 0.035em;
  color: #096a25;
}

body {
  font-size: 16px;
  max-width: 2000px;
  margin: auto;
  background-color: white;
  position: relative;
}

.icon {
  width: 50px;
  height: 50px;
}

.capitalise {
  text-transform: capitalize;
}

main {
  width: 95%;
  max-width: 1200px;
  margin: auto;
}

main p:first-child {
  margin: 15px;
  font-style: italic;
  padding-left: 3px;
}

nav {
  margin: auto;
  text-transform: lowercase;
}
nav ul {
  margin: 0;
}

nav a {
  font-size: 1.25em;
  color: rgb(0, 30, 28);
  font-family: "Outfit", Tahoma, Geneva, Verdana, sans-serif;
}
@media (min-width: 550px) and (max-width: 1049px) {
  nav a {
    font-size: 1.1em;
  }
}
@media (min-width: 1300px) {
  nav a {
    font-size: 1.3em;
  }
}

nav #menu-nav-menu {
  list-style-type: none;
  width: 100%;
  display: flex;
}

nav li {
  padding: 0.5em 1em;
}
@media (min-width: 1050px) {
  nav li:last-of-type {
    padding-right: 0;
  }
}

#navigation ul {
  list-style: none;
}

.nav-burger-menu-cont {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 939px) {
  .nav-burger-menu-cont {
    width: 100%;
  }
}

#toggle-nav {
  font-size: 2em;
  color: black;
  padding: 0.2em;
  border-radius: 5px;
}
@media (min-width: 940px) {
  #toggle-nav {
    display: none;
  }
}

.blog-nav {
  display: flex;
}
@media (min-width: 940px) {
  .blog-nav {
    align-items: center;
  }
}

.blog-nav ul {
  flex-direction: column;
  list-style-type: none;
  padding-left: 0;
  font-size: 0.9em;
}
@media (min-width: 940px) and (max-width: 1049px) {
  .blog-nav ul {
    margin-top: 0;
  }
}
@media (min-width: 940px) {
  .blog-nav ul {
    display: flex !important;
    flex-direction: row;
    padding: 0.6em 0;
    font-size: 1em;
  }
}
.blog-nav ul a[href*=donate],
.blog-nav ul .menu-item-9150 a {
  background: rgb(156, 0, 161);
  color: white;
  padding: 0.5em;
  border-radius: 5px;
}
.blog-nav ul a[href*=donate]::before,
.blog-nav ul .menu-item-9150 a::before {
  content: "\f1b0";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 8px;
}

.blog-nav ul > li {
  border-radius: 5px;
  text-decoration: none;
  letter-spacing: 0.07em;
}

.blog-nav .menu-item a {
  padding-top: 0.25em;
  padding-bottom: 0.25em;
  position: relative;
} /* Base nav hidden on mobile */
@media (max-width: 939px) {
  #mobile-nav {
    position: fixed;
    top: 86px;
    left: -100%;
    width: 80%;
    height: 100vh;
    background-color: white;
    z-index: 1000;
    padding: 2em 1em;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.2);
    transition: left 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
  }
  #mobile-nav ul {
    align-items: flex-start;
  }
}

/* Nav visible */
#mobile-nav.open {
  left: 0;
  padding: 0;
}

/* Overlay */
#nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
}

/* Show overlay when nav is open */
#nav-overlay.active {
  display: block;
}

/* Hide toggle button on desktop */
#toggle-nav {
  font-size: 2em;
  color: black;
  padding: 0.2em;
  border-radius: 5px;
}

@media (min-width: 940px) {
  #toggle-nav {
    display: none;
  }
  #mobile-nav {
    position: static;
    height: auto;
    flex-direction: row;
    left: 0;
    background-color: transparent;
    box-shadow: none;
  }
  #nav-overlay {
    display: none !important;
  }
}
header {
  top: 0;
  width: 100%;
  background: white;
  box-shadow: 0px 0px 5px gray;
  z-index: 1000;
}

header.hidden {
  opacity: 0;
}

header.visible {
  position: sticky;
  transition: opacity 0.5s ease;
  opacity: 1;
}

.nav-cont {
  display: flex;
  padding: 0em 5%;
  background-color: #089e35;
  color: rgb(0, 30, 28);
  background: white;
  font-family: "Cooper";
  flex-direction: column;
  align-items: center;
}
@media (min-width: 1560px) {
  .nav-cont {
    padding: 0em calc(15% + 0.75rem);
  }
}
.nav-cont .container {
  max-width: none;
  padding: 0;
}
@media (min-width: 1200px) {
  .nav-cont {
    flex-direction: row;
    justify-content: space-between;
  }
}
.nav-cont a[href="index.php"] {
  position: relative;
}
.nav-cont .header_logo {
  border-radius: 15px;
  height: 70px;
  width: auto;
  margin: 0.5em auto;
}
.nav-cont .header_logo:hover {
  animation: pulse 0.3s forwards;
}

.category-page-cont .alert {
  padding-bottom: 0;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7);
  }
  70% {
    transform: scale(1.2);
    box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }
}
.title-the {
  position: absolute;
  display: inline-block;
  font-family: "Amatic SC", cursive;
  font-weight: bold;
  font-style: italic;
  font-size: 1.25em;
  top: -3.25em;
  left: -1em;
}

.cat-gallery-section {
  margin-top: -5px;
  position: relative;
  padding-bottom: 50px;
}
@media (min-width: 800px) {
  .cat-gallery-section {
    margin-top: -50px;
  }
}

.paw-svg {
  position: absolute;
  left: 5%;
  top: 0;
  width: 150px;
  height: 150px;
  transform: rotate(30deg);
}

.cats-link-cont {
  display: flex;
  font-size: 1.5rem;
  justify-content: flex-end;
  padding: 2rem 5%;
  position: relative;
  z-index: 2;
  text-align: right;
}
.cats-link-cont a {
  display: inline-block;
}
.cats-link-cont a:hover {
  color: orange;
  transition: color 0.5s ease;
}

.cat-info__title-adoption-status-cont h3 {
  overflow: hidden;
}

.cat-adoption-status-pill {
  position: absolute;
  top: 10px;
  right: 10px;
  border-radius: 10px;
  font-size: 1rem;
  padding: 0.5rem;
  color: white;
  text-transform: lowercase;
}

.cat-info__grid-cont {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.cat-gallery-section,
.about-section {
  padding: 3rem 5%;
}
@media (min-width: 800px) {
  .cat-gallery-section,
  .about-section {
    padding: 2rem calc(15% + 0.75rem);
  }
}
.cat-gallery-section h2,
.about-section h2 {
  text-align: center;
  color: inherit;
  padding-bottom: 2rem;
}
.cat-gallery-section h3,
.about-section h3 {
  font-size: 1.85rem;
  margin: 0;
}
.cat-gallery-section h3 a,
.about-section h3 a {
  color: rgb(9, 41, 0);
}

.cat-gallery-section {
  color: white;
  background: #072a00;
  z-index: 2;
  position: relative;
}
@media (min-width: 550px) {
  .cat-gallery-section {
    padding: 2rem 20%;
  }
}
@media (min-width: 800px) {
  .cat-gallery-section {
    padding: 2rem calc(15% + 0.75rem);
  }
}

.svg-wave {
  width: 100%;
  margin: -150px 0;
  position: relative;
  z-index: 2;
}

.flip-vertical {
  transform: scaleY(-1);
  z-index: 1;
}

.flip-horizontal {
  transform: scaleX(-1);
  z-index: 1;
}

.banner {
  width: 100%;
  height: 70vh; /* Or any height you like */
  background-image: url("images/cat-6706354_1920.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.banner .banner-content {
  width: 100%;
  height: 100%;
  color: white;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.361);
}
@media (max-width: 800px) {
  .banner .banner-content {
    font-size: 0.8em;
  }
}
.banner .banner-content h1 {
  font-family: "Lora";
  color: white;
  font-size: 3em;
  margin-bottom: 0.15em;
}
.banner .banner-content p {
  font-size: 1.25em;
  padding: 0 1rem;
  margin: auto;
}
@media (min-width: 650px) {
  .banner .banner-content p {
    width: 50%;
  }
}
.banner .banner-content .btn-cont {
  padding-top: 1em;
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
}
.banner .banner-content .btn-cont a {
  display: inline-block;
}
.banner .opening-times {
  font-weight: bold;
}

.jumbo-content {
  width: 100%;
  height: fit-content;
  text-align: center;
  background: #007c7d;
  padding: 3rem;
  margin-top: -10px;
  position: relative;
  z-index: 3;
}
.jumbo-content h2 {
  font-size: 1.75rem;
  font-weight: bold;
}
.jumbo-content h2,
.jumbo-content p {
  color: white;
  margin: auto;
}
@media (min-width: 1024px) {
  .jumbo-content h2,
  .jumbo-content p {
    width: 50%;
  }
}
.jumbo-content p {
  font-size: 1.25rem;
}
.jumbo-content .btn-cont {
  padding: 0.5em 0;
}

.btn {
  text-transform: lowercase;
  padding: 0.5em;
  padding: 0.5em 1em;
  border-radius: 5px;
}

.btn-1 {
  background-color: #3e8e41;
}

.btn-2 {
  background-color: #053f15;
}

.btn-3 {
  background-color: #3e4fe4;
}

.donate-btns {
  padding-top: 1.5em;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.donate-btns img {
  margin-bottom: 1em;
}

.partners-notices {
  position: relative;
  z-index: 2;
  background: white;
  width: 100%;
  margin-top: -75px;
  padding: 1rem 5% 150px 5%;
}
.partners-notices h3 {
  font-size: 1.5em;
  padding-bottom: 1rem;
}
@media (min-width: 800px) {
  .partners-notices {
    padding: 3rem 10% 150px 10%;
  }
}
@media (min-width: 1400px) {
  .partners-notices {
    display: flex;
    justify-content: space-evenly;
    padding: 2rem calc(15% + 0.75rem) 150px calc(15% + 0.75rem);
  }
}
.partners-notices .partners {
  display: block;
}
.partners-notices .partners .partner-cards-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (min-width: 1224px) {
  .partners-notices .partners .partner-cards-container {
    flex-direction: row;
  }
}
.partners-notices .partners .partner-card {
  width: 100%;
  border: 1px lightgray solid;
  box-shadow: 1px 1px 5px rgb(177, 177, 177);
  border-radius: 10px;
  margin-bottom: 1em;
  display: grid;
  grid-template-columns: 15% 75%;
}
@media (max-width: 550px) {
  .partners-notices .partners .partner-card {
    grid-template-columns: 100%;
  }
}
@media (max-width: 550px) {
  .partners-notices .partners .partner-card {
    flex-direction: column;
    text-align: center;
  }
}
.partners-notices .partners .partner-card img {
  margin: auto;
  padding-top: 1em;
  width: 150px;
  height: 150px;
}
@media (min-width: 550px) {
  .partners-notices .partners .partner-card img {
    padding: 1em;
    margin: 0;
  }
}
.partners-notices .partners .partner-card .partner-card-content {
  width: 100%;
  padding: 1em;
}
.partners-notices .partners .partner-card .partner-card-content h4 {
  font-weight: bold;
  font-size: 1.25em;
}
@media (max-width: 549px) {
  .partners-notices .partners .partner-card .partner-card-content h4 {
    margin-top: 0;
  }
}
@media (min-width: 1220px) {
  .partners-notices .partners .partner-card .partner-card-content h4 {
    margin: 0 auto 0.5em auto;
  }
}

.cat-grid-container {
  padding: 0 2rem 2rem 2rem;
  position: relative;
  z-index: 2;
}
.cat-grid-container .cat-preview {
  border: 1px solid black;
}
@media (min-width: 800px) {
  .cat-grid-container {
    padding: 0 10% 125px 10%;
  }
}
@media (min-width: 1400px) {
  .cat-grid-container {
    padding: 2rem calc(15% + 0.75rem) 25px calc(15% + 0.75rem);
  }
}

#rehoming-process {
  background: rgb(0, 112, 120);
  padding-bottom: 5rem;
  margin-top: -5px;
  position: relative;
  z-index: 2;
  color: white;
  padding: 0 5% 50px 5%;
}
#rehoming-process a {
  color: orange;
  font-weight: 500;
}
@media (min-width: 800px) {
  #rehoming-process {
    padding: 2rem 10% 125px 10%;
  }
}
@media (min-width: 1400px) {
  #rehoming-process {
    padding: 2rem calc(15% + 0.75rem) 125px calc(15% + 0.75rem);
  }
}
#rehoming-process h3 {
  font-weight: bold;
  font-size: 2.5rem;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  color: white;
}
#rehoming-process .subheading {
  font-size: 1.75rem;
  margin-top: -0.25rem;
}
#rehoming-process .list-group-item {
  border: none;
  padding-top: 0;
}
#rehoming-process ol {
  counter-reset: my-awesome-counter;
  list-style: none;
  padding-left: 40px;
  margin: 0;
}
#rehoming-process ol li {
  margin: 0 0 2.5rem 0; /* control vertical spacing */
  counter-increment: my-awesome-counter;
  position: relative;
  color: white;
  background: transparent;
  font-size: 1.2em;
  font-family: "Outfit", Tahoma, Geneva, Verdana, sans-serif;
}
#rehoming-process ol li::before {
  content: counter(my-awesome-counter);
  color: white;
  font-size: 1.2rem;
  font-weight: bold;
  position: absolute;
  --size: 2.2rem;
  left: calc(-1 * var(--size) - 10px);
  top: 0;
  width: var(--size);
  height: var(--size);
  background: #7e968d;
  border-radius: 50%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
#rehoming-process ol li::after {
  content: "";
  position: absolute;
  --size: 2.2rem;
  left: calc(-1 * var(--size) - 10px + var(--size) / 2);
  top: calc(var(--size) / 2);
  width: 2px;
  height: calc(100% + 1.5rem); /* extend to center of next circle */
  background-color: #7e968d;
  z-index: 0;
}
#rehoming-process ol li:last-child::after {
  display: none;
}

.breadcrumbs {
  display: block;
  margin-bottom: 2rem;
}
.breadcrumbs a {
  color: rgb(0, 111, 222);
}
.breadcrumbs a,
.breadcrumbs span {
  text-transform: capitalize;
  font-size: 1rem;
}

.single-post-cont {
  width: 100%;
  padding: 2rem;
  /* Set height for the slider */
  /* Ensure the track and slide fill the container */
  /* Style images inside the slide */
}
.single-post-cont .cat-title-container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding-bottom: 1rem;
}
.single-post-cont .cat-adoption-status-pill {
  position: unset;
  display: inline-block;
  margin-left: 1.5rem;
}
@media (min-width: 600px) {
  .single-post-cont {
    padding: 50px calc(15% + 0.75rem);
  }
}
.single-post-cont .adoption-banner {
  height: auto;
}
.single-post-cont .nav-link {
  margin-bottom: 2rem;
  display: block;
}
.single-post-cont .cat-info {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  padding: 0;
  padding-bottom: 1.5rem;
}
.single-post-cont .cat-info i {
  font-size: 1.25em;
  color: rgb(0, 100, 230);
}
.single-post-cont .cat-info .cat-info-content-cont {
  padding-left: 0.5rem;
  padding-right: 1rem;
}
.single-post-cont .cat-info .cat-info-content-cont strong {
  padding-bottom: 0;
}
.single-post-cont .post-text {
  padding-right: 1.5rem;
}
.single-post-cont .adoption-btn {
  background: orangered;
  color: white;
  display: inline-block;
  padding: 0.5rem;
  border-radius: 10px;
}
.single-post-cont #cat-image-slider {
  max-width: 100%;
  height: 500px; /* Adjust as needed */
  margin-bottom: 1rem;
}
.single-post-cont #cat-image-slider .splide__track,
.single-post-cont #cat-image-slider .splide__list,
.single-post-cont #cat-image-slider .splide__slide {
  height: 100%;
}
.single-post-cont .splide__arrow {
  top: 42%;
}
.single-post-cont .splide__slide img,
.single-post-cont .splide__slide-image {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures consistent image aspect ratio */
  display: block;
  border-radius: 15px;
}

.cat-summary-cont {
  display: grid;
}
@media (max-width: 999px) {
  .cat-summary-cont {
    grid-template-rows: auto;
  }
  .cat-summary-cont .post-text {
    grid-row: 2;
  }
  .cat-summary-cont .cat-summary-cont__image-wrapper {
    grid-row: 1;
  }
}
@media (min-width: 1000px) {
  .cat-summary-cont {
    grid-template-columns: 60% 40%;
  }
}
.cat-summary-cont p {
  font-size: 1.15rem;
}
.cat-summary-cont .cat-summary-cont__content {
  display: flex;
  flex-direction: column;
  padding-right: 5%;
}

.extra-images-cont {
  width: 100%;
  padding-top: 50px;
}
.extra-images-cont img {
  width: 30%;
  height: auto;
}

.single-post {
  background-color: rgba(207, 241, 218, 0.1);
  border: 1px solid #afafaf;
  border-radius: 5px;
  padding: 1em;
  padding-bottom: 2em;
  font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
  display: block;
}
@media (min-width: 1050px) {
  .single-post {
    margin-right: 1em;
    padding: 1em 2em 2em 2em;
  }
}
.single-post h1 {
  text-align: center;
  font-size: 2em;
  margin: 0.5em auto;
}
.single-post img {
  width: 85%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  display: block;
  margin: 0 auto 1.25em auto;
  border-radius: 10px;
}
@media (max-width: 850px) {
  .single-post img {
    width: 100%;
  }
}
.single-post p,
.single-post div {
  width: 85%;
  margin: auto;
  padding-top: 0.75em;
  text-align: justify;
}

.page-cont {
  width: 100%;
  padding: 2rem calc(15% + 0.75rem) 150px calc(15% + 0.75rem);
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: flex-start;
}
.page-cont .category-content {
  flex: 70%;
}
@media (max-width: 650px) {
  .page-cont .category-content {
    padding: 0.5em 1em;
  }
}
@media (min-width: 1050px) {
  .page-cont .category-content {
    margin-right: 1em;
  }
}

.category-content {
  display: block;
}
.category-content a,
.category-content p a {
  color: #089e35 !important;
}
.category-content h3 {
  font-size: 1.25em;
  margin-bottom: 0.25em;
}
.category-content .adoption-heading {
  font-size: 1.5em;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
}
.category-content .adoption-heading h1 {
  margin-top: 0.15em;
  margin-bottom: 0;
  text-align: center;
}
.category-content .adoption-heading hr {
  color: 1px solid gray;
  width: 70%;
}
.category-content .adoption-heading img {
  width: 50px;
  height: auto;
}
.category-content .adoption-heading p {
  font-size: 0.65em;
  margin-bottom: 0;
}
.category-content .adoption-heading a {
  color: #089e35;
}

@media (min-width: 1024px) {
  #cat-carousel {
    padding: 0 5%;
  }
}

.cat-card {
  display: flex;
  flex-direction: column;
  background-color: white;
  border: gray solid 1px;
  box-shadow: lightgray 1px 1px 3px;
  border-radius: 10px;
  margin-top: 1em;
}
@media (min-width: 500px) {
  .cat-card {
    flex-direction: row;
  }
}
.cat-card .cat-card-content {
  padding: 1em;
  overflow: hidden;
  flex-basis: 60%;
}
@media (max-width: 500px) {
  .cat-card .cat-card-content {
    padding-top: 0;
  }
}
@media (min-width: 650px) {
  .cat-card .cat-card-content {
    padding: 1em 1em 1em 0;
  }
}
.cat-card .cat-card-content p {
  line-height: 1.25em;
}
.cat-card .cat-card-content a {
  color: #089e35;
}
.cat-card a {
  color: #053f15;
  flex: 35%;
  font-size: 1.5em;
  font-family: Cooper, Cochin, Georgia, Times, "Times New Roman", serif;
}
@media (min-width: 1050px) {
  .cat-card a {
    flex: 40%;
  }
}
.cat-card a:hover {
  color: orange;
  transition: color 0.15s;
}
.cat-card a .wp-post-image {
  height: 225px;
  width: 100%;
  border: 0.75em solid transparent;
  border-radius: 25px;
  object-fit: cover;
}
@media (max-width: 500px) {
  .cat-card a .wp-post-image {
    height: 275px;
  }
}
@media (min-width: 1050px) {
  .cat-card a .wp-post-image {
    height: 100%;
    max-height: 240px;
    width: 100%;
  }
}
.cat-card a .wp-post-image:hover {
  opacity: 0.7;
  transition: 0.2s;
}

.adopt-side-widget {
  width: 100%;
  margin-bottom: 3em;
  border: 1px solid #afafaf;
  border-radius: 5px;
  box-shadow: 1px 1px 3px rgb(231, 231, 231);
  background-color: rgba(207, 241, 218, 0.1);
  padding: 1.5em;
}
@media (min-width: 425px) and (max-width: 549px) {
  .adopt-side-widget {
    width: 85%;
    padding: 2em;
  }
}
@media (min-width: 550px) and (max-width: 775px) {
  .adopt-side-widget {
    width: 75%;
    margin: 2em auto;
  }
}
.adopt-side-widget a {
  color: orange;
}
.adopt-side-widget img {
  display: block;
  margin: auto;
}
.adopt-side-widget .icon-padding {
  padding: 0.25em;
}
.adopt-side-widget .widget-title,
.adopt-side-widget h2 {
  border-bottom: 1px solid #707070;
  text-align: center;
  width: 80%;
  margin: auto;
  padding-bottom: 0.5em;
  color: #096a25;
  font-size: 1.3em;
}
.adopt-side-widget .phone-num,
.adopt-side-widget .email-text {
  margin: 0.5em;
  font-family: Cooper, Cochin, Georgia, Times, "Times New Roman", serif;
  text-align: center;
  font-weight: bold;
  color: #089e35;
}
@media (max-width: 850px) {
  .adopt-side-widget .phone-num,
  .adopt-side-widget .email-text {
    font-size: 1em;
  }
}
.adopt-side-widget .email-text {
  font-size: 1.25em;
}
.adopt-side-widget .email-text:hover {
  color: #40c9ff;
  transition: color 0.1s;
}
.adopt-side-widget .just-giving img {
  padding-top: 2em;
}
.adopt-side-widget .paypal-btn {
  padding-top: 1em;
}
.adopt-side-widget .phone-num {
  font-size: 2em;
}
.adopt-side-widget .custom-html-widget {
  text-align: center;
}

.about-us > h4 {
  font-weight: bold;
  font-size: 2em;
}

.wp-block-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
  margin: auto;
}

footer {
  position: relative;
  width: 100%;
  background-color: #3b3b3b;
  font-family: "Arial Narrow", Arial, sans-serif;
  margin: auto;
  padding: 2rem 5%;
}
@media (min-width: 800px) {
  footer {
    padding: 2rem 10%;
  }
}
@media (min-width: 1400px) {
  footer {
    padding: 2rem calc(15% + 0.75rem);
  }
}
footer h2 {
  font-size: 1.5rem;
  color: rgb(187, 231, 255);
}
footer hr {
  color: white;
}
footer .footer-content {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: auto;
}
@media (min-width: 800px) {
  footer .footer-content {
    width: 100%;
    margin: auto;
    flex-direction: row;
  }
}
footer h4 {
  font-size: 1.25em;
  color: rgb(250, 250, 250);
}
footer ul,
footer li,
footer p {
  color: rgb(250, 250, 250);
}
footer .designed-by {
  text-align: center;
}
footer .designed-by p {
  margin: 0.5em auto;
}
footer a:hover {
  text-decoration: underline;
}
footer .cat-1,
footer .cat-2,
footer .cat-3 {
  position: absolute;
  z-index: 3;
}
footer .cat-1 {
  left: 5%;
  width: 70px;
  top: -62px;
  height: auto;
}
@media (min-width: 800px) {
  footer .cat-1 {
    left: 10%;
    top: -88px;
    width: 100px;
  }
}
@media (min-width: 1400px) {
  footer .cat-1 {
    left: calc(15% + 0.75rem);
  }
}
footer .cat-2 {
  left: 30%;
  width: 105px;
  top: -84px;
  height: auto;
}
@media (min-width: 800px) {
  footer .cat-2 {
    width: 150px;
    top: -120px;
  }
}
footer .cat-3 {
  right: 5%;
  width: 84px;
  top: -63px;
  height: auto;
}
@media (min-width: 800px) {
  footer .cat-3 {
    right: 10%;
    width: 120px;
    top: -90px;
  }
}
@media (min-width: 1400px) {
  footer .cat-3 {
    right: calc(15% + 0.75rem);
  }
}

h3.widget-title {
  font-size: 1.25em;
  color: #807f7f;
}

#menu-footer-nav.menu {
  list-style-type: none;
  padding: 0;
}
#menu-footer-nav.menu a:hover {
  color: #40c9ff;
}

.links-col-2 a:hover {
  color: #40c9ff !important;
  transition: color 0.1s;
}

footer li {
  list-style: none;
}

footer .footer-desc {
  list-style-type: none;
  padding: 0;
}
@media (min-width: 1000px) {
  footer .footer-desc {
    flex: 2.5;
  }
}

@media (max-width: 999px) {
  footer .links-col-1,
  footer .links-col-2 {
    padding-left: 0;
  }
}
@media (min-width: 1000px) {
  footer .links-col-1,
  footer .links-col-2 {
    flex: 1;
  }
}

/* SOCIAL MEDIA */
#fb-root {
  width: 100% !important;
  height: auto;
}

.social-media {
  list-style: none;
  display: flex;
  margin: auto;
  justify-content: center;
}

.social-media li {
  font-size: 1.5em;
  padding: 0.3em;
}

.social-media :hover {
  color: orange;
}

.wp-post-image {
  width: 75%;
  max-width: 750px;
  height: auto;
}

.covid-notice {
  width: 100%;
  position: absolute;
  top: 0;
  background: rgb(0, 39, 90);
  color: white;
}

.covid-notice-content {
  display: flex;
  position: relative;
  padding: 1em;
  align-items: center;
}

.covid-notice h2 {
  text-transform: uppercase;
  padding: 0 0.75em;
}

.covid-notice p {
  margin: 0.25em 0;
}

img[alt=warning] {
  width: 50px;
  height: 50px;
}

img[alt=close] {
  position: absolute;
  right: 5px;
  top: 5px;
}

img[alt=close]:hover {
  cursor: pointer;
}

.hide {
  display: none;
}

.flex-cont {
  display: flex;
  align-items: center;
  padding-bottom: 1rem;
}
.flex-cont .icon-cont {
  width: 1em;
}

.cat-info {
  padding: 0 1.5em;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.cat-info h2 > a {
  font-size: 1.25em;
  margin: 0.5em 0;
  color: #1a1a1a;
}
.cat-info .cat-info-content-cont {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 0.75em;
  line-height: 1.25rem;
}
.cat-info .icon-cont {
  display: flex;
  justify-content: center;
}
.cat-info i {
  font-size: 1.25em;
  color: rgb(0, 181, 132);
}

.cat-preview {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  color: black;
  height: 100%;
  position: relative;
}
.cat-preview .cat-image {
  height: 48%;
  overflow: hidden;
}
.cat-preview .cat-image img {
  max-width: 100%;
  width: 100%;
  height: 300px;
  object-fit: cover;
}
.cat-preview .cat-info {
  height: 52%;
}
.cat-preview h3 {
  padding-top: 0;
  text-align: left;
}
.cat-preview h3 > a {
  color: black;
  padding: 0.5em 0;
  display: inline-block;
}
.cat-preview .cat-preview__more-info-wrapper {
  bottom: 15px;
  right: 15px;
  display: flex;
  justify-content: flex-end;
}
.cat-preview .cat-preview__more-info {
  display: flex;
  align-items: center;
  margin-right: 0;
  padding-bottom: 1.25em;
  border-radius: 5px;
  color: rgb(0, 79, 10);
}
.cat-preview .cat-preview__more-info:hover {
  color: orange;
  transition: color 0.25s ease-in-out;
}
.cat-preview .cat-preview__more-info:hover i {
  color: orange;
  transition: color 0.25s ease-in-out;
}
.cat-preview .cat-preview__more-info i {
  color: rgb(0, 79, 10);
  padding-left: 5px;
}

.flex {
  display: flex;
}

.adoption-banner {
  width: 100%;
  height: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem;
  background: rgb(15, 81, 0);
  border-radius: 10px;
  background-position: center;
  background-size: cover;
}
@media (min-width: 600px) {
  .adoption-banner {
    flex-direction: row;
    align-items: center;
    text-align: left;
  }
}
.adoption-banner i {
  font-size: 3rem;
  padding-right: 1rem;
}
.adoption-banner h1,
.adoption-banner h2,
.adoption-banner h3,
.adoption-banner h4,
.adoption-banner h5,
.adoption-banner h6,
.adoption-banner p,
.adoption-banner i {
  color: white;
}
.adoption-banner a {
  color: rgb(255, 199, 94);
}

a[href="/rehoming-process"] h3 {
  font-family: "Outfit";
}

.about-section {
  text-align: center;
  background: #00395a;
  position: relative;
  z-index: 2;
  color: white;
  padding-bottom: 100px;
}
.about-section h1 {
  font-size: 2rem;
  color: white;
  display: inline-block;
  padding: 0.2em 0.5em;
  font-weight: 700;
  margin: 0.2em 0;
}
.about-section h2 {
  font-size: 1rem;
  color: #f6f6f6;
  text-align: center;
  padding: 1rem 0 0 0;
}
.about-section .card {
  display: flex;
  flex-direction: column;
  color: black;
}
.about-section .card i {
  font-size: 2em;
}

.about-section > p {
  max-width: 700px;
  margin: 1em auto;
  line-height: 1.6;
}

.animal-card {
  padding: 2rem !important;
}
.animal-card h3 {
  font-size: 2rem;
  text-align: left;
}
.animal-card p {
  font-size: 1rem;
}

.card-grid {
  padding: 2rem 5%;
  display: grid;
  grid-template-columns: 1fr;
  justify-content: center;
  gap: 1.5rem;
}
@media (min-width: 1024px) {
  .card-grid {
    grid-template-columns: repeat(2, minmax(0, 400px));
  }
}

@media (min-width: 800px) {
  .text-widget {
    padding: 2rem 10% 125px 10%;
  }
}
@media (min-width: 1400px) {
  .text-widget {
    padding: 2rem calc(15% + 0.75rem) 25px calc(15% + 0.75rem);
  }
}

.category-page-cont {
  padding-top: 2rem;
}
@media (max-width: 799px) {
  .category-page-cont {
    padding: 2rem;
  }
}
.category-page-cont .adoption-banner {
  background-image: url("images/cat-3059075_1280.jpg");
  background-position: center;
  background-size: cover;
}
@media (min-width: 1024px) {
  .category-page-cont .adoption-banner {
    width: calc(100% - (15% + 0.75rem) * 2);
    margin: auto;
  }
}

.svg-wave-rehoming {
  position: relative;
}

.category-grid {
  display: grid;
  justify-content: center;
  grid-template-columns: repeat(auto-fill, minmax(250px, 0.75fr));
  gap: 30px; /* Spacing between the cards */
  padding: 40px 0;
}

.card {
  background: white;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  text-align: left;
}

.card img {
  width: 40px;
  margin-bottom: 1rem;
}

.card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  padding-top: 0.5rem;
  border-bottom: 1px solid transparent;
  display: inline-block;
}

.card p {
  line-height: 1.4;
}



/*# sourceMappingURL=style.css.map */
