@font-face {
    font-family: 'dongding'; /* Give it a name */
    src: url(https://kindfox.com.au/wp-content/themes/kindfox-theme/assets/fonts/Dongding.ttf) format('truetype'); /* Path to the .ttf file */
    font-weight: normal; /* Adjust if needed (e.g., 700 for bold) */
    font-style: normal; /* Adjust if italic */
    font-display: auto;
  }

@font-face {
    font-family: 'cutedino'; /* Give it a name */
    src: url(https://kindfox.com.au/wp-content/themes/kindfox-theme/assets/fonts/CuteDino.ttf) format('truetype'); /* Path to the .ttf file */
    font-weight: normal; /* Adjust if needed (e.g., 700 for bold) */
    font-style: normal; /* Adjust if italic */
    font-display: auto;
  }

@font-face {
    font-family: 'catcafe'; /* Give it a name */
    src: url(https://kindfox.com.au/wp-content/themes/kindfox-theme/assets/fonts/CatCafe.ttf) format('truetype'); /* Path to the .ttf file */
    font-weight: normal; /* Adjust if needed (e.g., 700 for bold) */
    font-style: normal; /* Adjust if italic */
    font-display: auto;
  }

* {
    box-sizing: border-box;
}

:root {
    --nav-bg-colour: rgba(0, 0, 0, 0.85);
    --card-bg-colour: rgba(0, 0, 0, 0.65);
    --white: #fff;
    --overlay-colour: rgba(0, 0, 0, 0.5);
    --orange: #fc5b44;
    --purple-gradient: linear-gradient(14deg,rgba(160, 43, 189, 1) 0%, rgba(242, 39, 225, 1) 93%);
    --green: #7af04b;
    --red: #ec2456;
    --blue: #005f92;

}

html {
  scroll-behavior: smooth;
  scrollbar-color: var(--orange) #f1f1f1; /* thumb and track color for Firefox */
}

body {
  margin: 0;
  padding: 0;
  background: var(--bg-colour);
  width: 100%;
  
}

/* OVERLAY START */
/* Header Styles */
header {
    color: white;
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 100;
}

@keyframes logo-pop-in {
  0% {
    top: -100px;
    transform: scale(0.8);
    opacity: 0;
  }
  70% {
    top: 35px;
    transform: scale(1.1);
    opacity: 1;
  }
  100% {
    top: 10px;
    transform: scale(1);
  }
}
.logo img {
    position: fixed;
    left: 10px;
    max-width: 100px;
    max-height: auto;
    animation: logo-pop-in 0.6s ease-in-out forwards;
}

/* Navigation Icon */
.nav-icon {
    position: fixed;
    right: 50px;
    top: 10px;
    font-size: 2.5rem;
    cursor: pointer;
    animation: logo-pop-in 0.6s ease-in-out forwards;
    background-color: var(--nav-bg-colour);
    padding: 10px;
    padding-left: 15px;
    padding-right: 15px;
    margin: 0px;
    border-radius: 50%;
}

.nav-icon i:hover {
    transform: scale(1.1);
}

.nav-icon i {
  color: var(--white);
  transition: transform 0.3s ease;
}

/* Overlay Styles */
.overlay {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.9);
    overflow-x: hidden;
    transition: 0.5s;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.overlay-content {
    text-align: center;
    width: 100%;
    margin-top: 30px;
    font-family: 'dongding';
}

.overlay a {
    padding: 15px;
    text-decoration: none;
    font-size: 1.5rem;
    color: #f1f1f1;
    display: block;
    transition: 0.3s;
    position: relative;
    cursor: pointer;
}

/* Hide submenus by default */
.overlay-content .sub-menu {
  margin: 0;
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

/* Show submenu when parent has 'open' class */
.overlay-content li.open > .sub-menu {
  max-height: 300px; /* Adjust based on your content */
  transition: max-height 1s ease-in-out;
}

.sub-menu a {
  font-size: 1.25rem !important;
}

.overlay a:hover, .overlay a:focus {
    color: var(--orange);
}

.overlay a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--orange);
    transition: width 0.3s ease;
}

.overlay a:hover::after {
    width: 35%;
}

.close-btn {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 3rem;
    color: #f1f1f1;
    cursor: pointer;
}
.close-btn i {
  font-size: 4rem;
}
/* OVERLAY END */

/* MODAL START */
#modalOverlay {
    height: 100vh;
    width: 100vw;
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.9);
    overflow-x: hidden;
    transition: 0.5s;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#modalOverlay.active {
  display: flex;
}


#teamCardModal {
  max-width: 50%;
  min-width: 50%;
  max-height: 0px;
  
}

@keyframes team-card-modal-open {
  0% {
    max-height: 5px;
  }
  100% {
    max-height: 95vh;
  }
}
#teamCardModal.active {
  animation: team-card-modal-open 0.8s ease-in-out forwards;
}

.modal {
    flex-direction: column;
    position: fixed;
    background-color: white;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 4px;
    box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.9);
    background-color: rgba(255,255,255,1);
    z-index: 1001;
    overflow: hidden;
    overflow-y: scroll; /* enables vertical scrolling */
    scrollbar-color: var(--orange) #f1f1f1; /* thumb and track color for Firefox */
    scroll-behavior: smooth;
}

.modal-header {
    position: sticky;
    top: 0;
    background-color: var(--orange);
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 100%;
    z-index: 1001;
    flex-shrink: 0; /* prevents header from shrinking */
}

.modal-header h1 {
    color: var(--white);
    text-align: center;
    font-family: 'dongding';
    font-size: 2.5rem;
    transform: rotate(-2deg);
}

.modal-close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-weight: bold;
    cursor: pointer;
}


@keyframes close-btn-unhover {
    0% {
        transform: scale(1.1) rotate(360deg);
    }
    100% {
        transform: scale(1) rotate(0deg);
    }
}

@keyframes close-btn-hover {
    0% {
        transform: scale(1) rotate(0deg);
    }
    100% {
        transform: scale(1.1) rotate(360deg);
    }
}
.modal-close-btn i {
    color: var(--white);
    font-size: 3rem;
    animation: close-btn-unhover 0.5s ease-in-out forwards;

}

.modal-close-btn:hover i {
    animation: close-btn-hover 0.5s ease-in-out forwards;
}


#teamCardModalContent {
  opacity: 0;
}

@keyframes modal-content-text-pop-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
#teamCardModalContent.active {
  animation: modal-content-text-pop-in 1s ease-in-out forwards 0.5s;
}

.modal-content {
  padding: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.modal-content h2 {
  font-family: 'dongding';
  color: #333;
  font-size: 1.5rem;
}

.modal-content hr {
  color: #333;
  width: 85%;
}

.modal-content p {
  font-family: 'catcafe';
  font-size: 1.25rem;
}

.modal-content li {
  font-family: 'catcafe';
  font-size: 1.25rem;
}

.jess-modal-content {
  display: none;
}

.jess-modal-content.active {
  display: block;
}

.zac-modal-content {
  display: none;
}

.zac-modal-content.active {
  display: block;
}

.duke-modal-content {
  display: none;
}

.duke-modal-content.active {
  display: block;
}

.photo-list {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding-bottom: 20px;
    gap: 15px;
    flex-wrap: wrap;
}

.photo {
    flex-wrap: wrap;
    width: 200px;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.7); /* Shadow */
    cursor: pointer;
    border-radius: 5px;
    transform: scale(1) rotate(0);
    transition: transform 0.3s ease-in-out;
}

.photo:hover {
    transform: scale(1.7) rotate(-5deg);
    z-index: 2;
}

/* MODAL END */

/* SECTION NAVIGATION START  */
@keyframes section-nav-pop-in {
    0% {
        right: -100px;
    }
    70% {
        right: 35px;
    }
    100% {
        right: 10px;
    }
}
.section-nav {
  font-family: 'dongding';
  position: fixed;
  top: 10%;
  transform: translateY(50%);
  margin: 0;
  padding: 0;
  z-index: 999;
  animation: section-nav-pop-in 0.75s ease-in-out forwards;
}

.section-nav li {
  list-style: none;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  background: var(--nav-bg-colour);
  margin-bottom: 5px;
  padding-left: 10px;
  padding-right: 10px;
  cursor: pointer;
}

.section-nav li a {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  height: 45px;
  font-size: 1.3rem;
  gap: 10px;
  color: #fff;
}

.section-nav li a p {
  color: #fff;
  font-size: .85rem;
}

.section-nav li:hover {
  background: #444;
  text-decoration: none;
  color: #fff;
}
/* SECTION NAVIGATION END  */

/* ACCORDION START */
#whoWeAreContainer {
  opacity: 0;
}

.accordion-container {
    max-width: 70vw;
    margin: 0 auto;
}

.accordion-item {
    scroll-margin-top: 20px; /* Adjust based on your header/navigation height */
    margin-bottom: 10px;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    background-color: rgba(0, 0, 0, 0.75);
    border: 2.5px solid #fff;
}

.accordion-header {
  width: 100%;
  padding: 15px 20px;
  text-align: center;
  border: none;
  background: transparent;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.85);
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background 0.3s ease;
}

.accordion-header:hover {
    background: var(--nav-bg-colour);
}

.accordion-header[aria-expanded="true"] {
    background: var(--nav-bg-colour);
}

.accordion-header[aria-expanded="true"] .accordion-icon {
    transform: rotate(90deg);
}

.accordion-title {
    font-family: 'dongding';
    color: var(--orange);
    font-size: 2rem;
    font-weight: 500;
}

.accordion-icon {
    padding-left: 10px;
    position: relative;
    font-size: 2rem;
    color: var(--orange);
    transform-origin: center;
    transition: transform 0.3s ease-in-out;
}

.accordion-content {
  font-family: 'catcafe';
  font-weight: bold;
  font-size: 1.5rem;
  padding-left: 20px;
  padding-right: 20px;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-in-out, opacity 0.5s ease-in-out;
  color: white;
}

.accordion-content hr {
  background-color: var(--orange);
  height: 4px;
  width: 90%;
}

.accordion-content[aria-hidden="false"] {
    max-height: 5000px; /* Adjust based on your content */
    opacity: 1;
}

.social-media-sub-heading {
  color: var(--orange);
  font-family: 'dongding';
  text-align: center !important;
  padding: 0;
  margin: 0;
}

.social-icons {
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding-bottom: 15px;
    gap: 10px;
}

.social-icons a {
    width: 35px;
    height: 35px;
    background: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    margin: 5px;
    transition: background 250ms ease-in, transform 250ms ease-in;
}

.social-icons i {
    color: var(--white);
    font-size: 2rem;
}

.social-icons a:hover {
    background: var(--orange);
    transform: scale(1.4) rotate(-2deg);
}

/* ACCORDION END */

/* TEAM CARDS START */
.team-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 25px;
    margin-bottom: 25px;
}

.team-card {
    background: rgba(0,0,0, 0.6);
    border: 2px solid white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 0px 5px 5px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
    width: calc(25% - 30px); /* 4 cards per row on desktop */
    min-width: 250px;
}

.team-card:hover {
  transform: translateY(-5px);
}

.team-card-image {
    width: 100%;
    aspect-ratio: 1/1; /* Ensures square aspect ratio */
    object-fit: cover;
    display: block;
}

.card-content {
    padding-top: 10px;
    padding-bottom: 20px;
    text-align: center;
    font-size: 1.25rem;
}

.card-content p {
  margin: 3px;
  font-family: 'catcafe';
}

.card-content i {
  font-size: 2rem;
  padding: 5px;
}


.card-name {
    margin-bottom: 15px;
    color: var(--white);
    font-size: 1.2rem;
    font-family: 'dongding';
    margin: 3px;
}

.read-more-btn {
    font-family: 'dongding';
    background-color: var(--orange);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s;
}

.read-more-btn:hover {
    background-color: var(--blue);
}
/* TEAM CARDS END */

/* OUR SERVICES START */
.our-services-text {
  text-align: left;
}

.our-services-text ul {
  font-weight: 100;
  font-size: 1.5rem;
  margin-bottom: 25px;
}

.our-services-text li.sub-heading {
  font-family: 'catcafe';
  font-size: 1.5rem;
  margin-top: 10px;
}

.our-services-text .divider {
  height: 4px;
  margin-bottom: 25px;
  align-self: flex-start;
  justify-self: flex-start;
  text-align: left;
  width: 100%;
  left: 0;
}

.our-services-card-btns {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 10px;
  margin-bottom: 25px;
}
/* OUR SERVICES END */

/* PRICE GUIDE START */
.price-guide-text {
  text-align: center;
}

.price-guide-text h2 {
  color: var(--white);
  font-family: 'cutedino';
}

.price-guide-text li {
  font-weight: 100;
}

.price-guide-text li b {
  font-family: 'cutedino';
}

.price-guide-text p {
  margin: 0;
  font-weight: bold;
  font-family: 'cutedino';
}
/* PRICE GUIDE END */


/* FOOTER START */
/* Base Footer Styles */
footer {
  z-index: 6;
}

.site-footer {
  background-color: #f8f9fa;
  color: #333;
  padding: 40px 0 20px;
  font-family: 'Arial', sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-column {
  flex: 1 0 200px;
  margin-bottom: 30px;
  padding: 0 15px;
  max-width: 300px;
  text-align: center;
}

.footer-header {
  font-family: 'dongding';
  font-size: 1.1rem;
  transform: rotate(-1deg);
  color: var(--orange);
  font-weight: 600;
  margin-bottom: 15px;
}

.footer-divider-line {
  background-color: var(--orange);
  color: var(--orange);
  margin-bottom: 15px;
}

.footer-links {
  font-family: 'catcafe';
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #555;
  text-decoration: none;
  transition: color 0.3s ease-in-out, font-size 0.2s ease-in-out;
  font-size: 1.35rem;
}

.footer-links a:hover {
  color: #000;
  font-size: 1.5rem;
}

.footer-divider {
  border: none;
  border-top: 1px solid #ddd;
  margin: 20px auto;
  width: 90%;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  color: #777;
  font-size: 14px;
}
/* FOOTER END */

/* MAIN PAGE START */
#home-section {
  min-height: 93vh;
  z-index: 7;
  background-image: url(https://kindfox.com.au/wp-content/themes/kindfox-theme/assets/images/kind-fox-still-render.webp);
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
}

.bg-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

#who-we-are-section {
  background-image: url(https://kindfox.com.au/wp-content/themes/kindfox-theme/assets/images/emoticon-blocks-wide.webp);
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
  min-height: 100vh;
  z-index: 6;
}

.main-title {
  min-width: 100%;
  margin-top: 50px;
  margin-bottom: 50px;
}

.main-title h1 {
  color: var(--white);
  font-family: 'dongding';
  text-align: center;
  font-size: 3rem;
  text-shadow: 5px 10px rgba(0,0,0, 0.75);
}

.main-title hr {
  background-color: var(--white);
  height: 5px;
  margin-top: 0px;
  padding-top: 0px;
  border: none;
}

.who-we-are-title h1 {
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
.who-we-are-title hr {
  width: 0%;
  transition: width 0.5s ease-in-out 0.35s;
}

.who-we-are-title.active h1 {
  opacity: 1;
}
.who-we-are-title.active hr {
  width: 80%;
}

#who-we-are-section-content {
  padding-bottom: 100px;
}

#areas-we-service-section {
  background-image: url(https://kindfox.com.au/wp-content/themes/kindfox-theme/assets/images/truck-animation-still-render-wide.webp);
  background-repeat:no-repeat;
  background-position: bottom;
  background-size: cover;
  min-height: 100vh;
  z-index: 5;
}

#areas-we-service-section-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 50px;
  padding-bottom: 50px;
  margin-left: 50px;
}

#mapSectionContainer {
  opacity: 0;
}

.map-section-container {
  box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.7);
  background-color: rgba(0, 0, 0, 0.75);
  border: 2.5px solid #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 70%;
}

.map-section-title {
  padding: 10px;
  background-color: rgba(0, 0, 0, 0.4);
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.map-section-title h1 {
  font-size: 2.5rem;
  font-family: 'dongding';
  color: var(--white);
  text-align: center;
  margin-top: 5px;
  margin-bottom: 5px;
}

.map-section-title hr {
  background-color: var(--white);
  width: 100%;
}

.map-section-content {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 50px;

  margin: 0;
  padding: 0;
  max-height: 0px;
}

.map-section-column {
  flex: 1;
  min-width: 250px;
  align-self: center;
  padding-left: 20px;
  padding-right: 20px;

  opacity: 0;
}

.map-section-column p {
  color: var(--white);
  font-family: 'catcafe';
  font-size: 1.75rem;
  margin: 0;
}
.map-section-column ul {
  color: var(--white);
  font-size: 1.5rem;
  font-family: 'catcafe';
  margin: 10px;
}

.map-image {
  object-fit: contain;
  object-position: center;
  width: 100%;
  height: auto;
  border: 2.5px solid #fff;
  padding: 10px;
  box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.7);
  transition: transform 0.3s ease;
}

.map-image:hover {
  transform: translateY(-5px);
}

#contact-us-section {
  background-image: url(https://kindfox.com.au/wp-content/themes/kindfox-theme/assets/images/kind-fox-set-phone-render-wide.webp);
  background-repeat:no-repeat;
  background-position: top;
  background-size: cover;
  min-height: 100vh;
  z-index: 4;
}

.contact-us-title h1 {
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
.contact-us-title hr {
  width: 0%;
  transition: width 0.5s ease-in-out 0.35s;
}

.contact-us-title.active h1 {
  opacity: 1;
}
.contact-us-title.active hr {
  width: 80%;
}

.contact-us-content-section {
  display: flex;
  flex-direction: row;
  justify-content: center;
  min-width: 80vw;
}

/* MAIN PAGE END */

/* WP FORMS START */
#wpforms-17 {
  max-height: 0px;
  padding: 0px;
  margin-bottom: 50px;
  min-width: 50vw !important;
  border: none;
  background-color: var(--nav-bg-colour) !important;
  border-radius: 10px !important;
}

/* #wpforms-17.active {
  padding: 25px !important;
  border: 2.5px solid #fff !important;
} */

#wpforms-form-17 {
  opacity: 0;
}

/* #wpforms-form-17.active {
  opacity: 1;
} */

.wpforms-field-label {
  color: white !important;
  font-family: 'cutedino' !important;
  font-size: 1.25rem !important;
}

#wpforms-17-field_5-description {
  color: white !important;
  font-family: 'catcafe' !important;
  font-size: 1.05rem;
}

#wpforms-submit-17 {
  background-color: var(--orange);
  font-family: 'cutedino';
}

#wpforms-submit-17:hover {
  background-color: var(--blue);
}

.wpforms-field-medium {
  font-family: 'catcafe' !important;
  font-size: 1.1rem !important;
  font-weight: bold !important;
  min-width: 100% !important;
}

#wpforms-confirmation-17 {
  background: transparent !important;
  background-color: transparent !important;
  font-family: 'cutedino' !important;
  text-align: center !important;
  color: white !important;
  font-size: 2rem !important;
  border: none !important;
}

/* WP FORMS END */

/* DE PAGE START */
#what-is-a-de-section {
  background-image: url(https://kindfox.com.au/wp-content/themes/kindfox-theme/assets/images/casette-tape-render-wide.webp);
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: cover;
  min-height: 93vh;
  z-index: 7;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.de-title {
  min-width: 100%;
}

.de-title h1 {
  color: var(--white);
  font-family: 'dongding';
  text-align: center;
  font-size: 3rem;
  text-shadow: 5px 10px rgba(0,0,0, 0.75);
}

.de-title hr {
  background-color: var(--white);
  height: 5px;
  margin-top: 0px;
  padding-top: 0px;
  border: none;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.7);
}

.what-is-a-de-title h1 {
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
.what-is-a-de-title hr {
  width: 0%;
  transition: width 0.5s ease-in-out 0.35s;
}

.what-is-a-de-title.active h1 {
  opacity: 1;
}
.what-is-a-de-title.active hr {
  width: 80%;
}

.what-is-a-de-section-content {
  width: 80vw;
  margin-top: 25px;
  margin-bottom: 50px;
}

.what-is-a-de-intro {
  background-color: var(--card-bg-colour);
  padding: 10px;
  border: 2.5px solid #fff;
  border-radius: 5px;
  opacity: 0;
  transition: opacity 1s ease-in-out 0.6s;
}

.what-is-a-de-intro.active {
  opacity: 1;
}

.what-is-a-de-intro p {
  text-align: center;
  font-family: 'cutedino';
  font-size: 1.5rem;
  color: var(--white);
}

.what-is-a-de-card-list {
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 35px;
  gap: 20px;
}

.what-is-a-de-card-list .de-card-container {
  flex-wrap: wrap;
  flex: 1 0 450px;
  background-color: var(--card-bg-colour);
  border: 2.5px solid #fff;
  border-radius: 5px;
  max-width: 500px;
  min-height: 850px;
  perspective: 1000px;
  cursor: pointer;
  transition: transform 0.25s ease-in-out;
  padding-bottom: 25px;
  box-shadow: 0px 4px 10px 2px rgba(0, 0, 0, 0.9);
  opacity: 0;
}

.de-card-container:hover {
  transform: translateY(-10px);
}

.de-card {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.5s ease-in-out;
  cursor: pointer;
}

.de-card.flipped {
    transform: rotateY(180deg);
}

.de-card-front, .de-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.de-card-front {
  transform: rotateY(0deg);
}
.de-card-back {
  transform: rotateY(180deg);
}


.de-card-title {
  background-color: rgba(0,0,0,0.4);
  padding-bottom: 10px;
  border-bottom: 2.5px solid #fff;
}

.de-card-title h1 {
  text-align: center;
  font-family: 'dongding';
  font-size: 2rem;
  color: var(--white);
  text-shadow: 5px 10px rgba(0,0,0, 0.75);
}

.de-card-title hr {
  height: 2px;
  border: none;
  background-color: var(--white);
  width: 85%;
}

.de-card-front img {
  position: relative;
  max-width: 90%;
  max-height: auto;
  object-fit: cover;
}

.de-card-content {
  padding: 10px;
}
.de-card-content p {
  text-align: center;
  font-family: 'cutedino';
  font-size: 1.75rem;
  color: var(--white);
  padding: 5px;
  margin: 0;
}

.de-card-content li {
  font-family: 'catcafe';
  font-size: 1.35rem;
  color: var(--white);
}

.de-card-front .read-more-btn,
.de-card-back .read-more-btn {
  font-size: 1.5rem;
  box-shadow: 0px 4px 10px 1px rgba(0, 0, 0, 0.5);
}

#our-de-toolkit-section {
  background-image: url(https://kindfox.com.au/wp-content/themes/kindfox-theme/assets/images/little-tower-render-wide.webp);
  background-repeat: repeat;
  background-position: bottom left;
  background-size: cover;
  min-height: 93vh;
  z-index: 6;
}

.our-de-toolkit-title h1 {
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
.our-de-toolkit-title hr {
  width: 0%;
  transition: width 0.5s ease-in-out 0.35s;
}

.our-de-toolkit-title.active h1 {
  opacity: 1;
}
.our-de-toolkit-title.active hr {
  width: 75%;
}

.our-de-toolkit-section-content {
  margin-top: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 50px;
}

.our-de-toolkit-card-list {
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin-top: 35px;
  margin-bottom: 25px;
  gap: 25px;
  width: 90vw;
  flex-wrap: wrap;
}

.our-de-toolkit-card-list .our-de-toolkit-card-container {
  flex: 1 0 500px;
  background-color: var(--card-bg-colour);
  border: 2.5px solid #fff;
  border-radius: 5px;
  max-width: 600px;
  min-height: 850px;
  perspective: 1000px;
  cursor: pointer;
  transition: transform 0.25s ease-in-out;
  padding-bottom: 25px;
  box-shadow: 0px 4px 10px 2px rgba(0, 0, 0, 0.9);
  opacity: 1;
}

.our-de-toolkit-card-container:hover {
  transform: translateY(-10px);
}

.our-de-toolkit-card-title {
  background-color: rgba(0,0,0,0.4);
  padding-bottom: 10px;
  border-bottom: 2.5px solid #fff;
  padding: 15px;
}

.our-de-toolkit-card-title h1 {
  text-align: center;
  font-family: 'dongding';
  font-size: 2rem;
  color: var(--white);
  text-shadow: 5px 10px rgba(0,0,0, 0.75);
}

.our-de-toolkit-card-title hr {
  height: 2px;
  border: none;
  background-color: var(--white);
  width: 85%;
}

.our-de-toolkit-card-content {
  padding: 10px;
}
.our-de-toolkit-card-content p {
  text-align: center;
  font-family: 'cutedino';
  font-size: 1.5rem;
  color: var(--white);
  padding: 5px;
  margin: 0;
}

.our-de-toolkit-card-content li {
  font-family: 'catcafe';
  font-size: 1.5rem;
  color: var(--white);
}

#de-reporting-section {
  background-image: url(https://kindfox.com.au/wp-content/themes/kindfox-theme/assets/images/stylised-lighting-wide.webp);
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: cover;
  min-height: 100vh;
  z-index: 5;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.de-reporting-title h1 {
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
.de-reporting-title hr {
  width: 0%;
  transition: width 0.5s ease-in-out 0.35s;
}

.de-reporting-title.active h1 {
  opacity: 1;
}
.de-reporting-title.active hr {
  width: 75%;
}

.de-reporting-section-content {
  width: 100%;
  margin-top: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.de-reporting-intro {
  background-color: var(--card-bg-colour);
  padding: 10px;
  border: 2.5px solid #fff;
  border-radius: 5px;
  opacity: 0;
  transition: opacity 1s ease-in-out 0.6s;
  width: 80vw;
  margin-bottom: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.de-reporting-intro.active {
  opacity: 1;
}

.de-reporting-intro p {
  text-align: center;
  font-family: 'cutedino';
  font-size: 1.5rem;
  color: var(--white);
  margin: 0;
  padding: 10px;
  width: 80vw;
}

.de-reporting-card-list {
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin-top: 35px;
  gap: 20px;
  max-width: 80vw;
  flex-wrap: wrap;
}


.de-reporting-card-list:last-child {
  margin-bottom: 100px;
}

.de-reporting-card-list .de-reporting-card-container {
  flex: 1 0 300px;
  background-color: var(--card-bg-colour);
  border: 2.5px solid #fff;
  border-radius: 5px;
  max-width: 400px;
  min-height: 300px;
  cursor: pointer;
  transition: transform 0.25s ease-in-out;
  padding-bottom: 25px;
  box-shadow: 0px 4px 10px 2px rgba(0, 0, 0, 0.9);
  opacity: 0;
}

.de-reporting-card-container:hover {
  transform: translateY(-10px);
}

.de-reporting-card-title {
  background-color: rgba(0,0,0,0.4);
  padding-bottom: 10px;
  border-bottom: 2.5px solid #fff;
  padding: 5px;
}

.de-reporting-card-title h1 {
  text-align: center;
  font-family: 'cutedino';
  font-size: 1.75rem;
  color: var(--white);
  text-shadow: 5px 10px rgba(0,0,0, 0.75);
}

.de-reporting-card-title hr {
  height: 2px;
  border: none;
  background-color: var(--white);
  width: 85%;
}

.de-reporting-card-content {
  padding: 10px;
}
.de-reporting-card-content p {
  text-align: center;
  font-family: 'catcafe';
  font-size: 1.5rem;
  color: var(--white);
  padding: 5px;
  margin: 0;
}

.de-reporting-card-content li {
  font-family: 'catcafe';
  font-size: 1.35rem;
  color: var(--white);
}

#de-pricing-section {
  background-image: url(https://kindfox.com.au/wp-content/themes/kindfox-theme/assets/images/flower-pot-design-wide.webp);
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: cover;
  min-height: 93vh;
  z-index: 4;
}

.de-pricing-title h1 {
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
.de-pricing-title hr {
  width: 0%;
  transition: width 0.5s ease-in-out 0.35s;
}

.de-pricing-title.active h1 {
  opacity: 1;
}
.de-pricing-title.active hr {
  width: 75%;
}

.de-pricing-section-content {
  margin-top: 25px;
  margin-bottom: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.de-pricing-container {
  background-color: var(--card-bg-colour);
  padding: 10px;
  border: 2.5px solid #fff;
  border-radius: 5px;
  opacity: 0;
  transition: opacity 1s ease-in-out 0.9s;
  width: 80%;
}

.de-pricing-container.active {
  opacity: 1;
}

.de-pricing-container h2 {
  text-align: center;
  font-family: 'dongding';
  font-size: 2rem;
  color: var(--white);
}

.de-pricing-container li {
  text-align: center;
  font-family: 'catcafe';
  font-size: 1.5rem;
  color: var(--white);
}

.de-pricing-container li b {
  font-family: 'cutedino';
}

.de-pricing-container p {
  text-align: center;
  font-family: 'cutedino';
  font-size: 1.5rem;
  color: var(--white);
  padding-bottom: 5px;
}


/* DE PAGE END */

/* BLOG PAGE START */
.post {
  background-color: rgba(255, 255, 255, 0.9);
  margin-top: 25px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.7);
  margin-bottom: 25px;
}
.entry-title {
  margin-top: 0px;
  font-family: 'dongding';
  color: var(--white);
  background-color: var(--orange);
  text-align: center;
  padding: 10px;
  font-size: 3rem;
}

.entry-meta {
  padding-left: 10px;
  font-family: 'cutedino';
  color: var(--orange);
  font-size: 1.5rem;
}

.post {
  width: 75vw;
}

.entry-content {
  padding: 10px;
  padding-left: 25px;
  padding-right: 25px;
  font-family: 'catcafe';
  font-size: 1.5rem;
  font-weight: bold;
}

.entry-content h2 {
  text-align: center;
  color: var(--orange);
  font-family: 'cutedino';
}

.post-navigation {
  margin-top: 25px;
  margin-bottom: 25px;
  width: 60vw;
  display: flex;
  flex-direction: row;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.7);
  padding: 10px;
  text-align: center;
}

.nav-links {
  width: 60vw;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  font-family: 'cutedino';
  font-size: 2rem;
}

.nav-links a {
  color: var(--orange);
}

.entry-footer {
  padding: 10px;
}

.entry-footer p {
  font-family: 'cutedino';
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.entry-footer hr {
  margin-top: 10px;
  margin-bottom: 10px
}

.entry-footer a {
  color: var(--orange);
  font-family: 'cutedino';
  font-size: 1.25rem;
}

.single-post .post-thumbnail,
.single-post .wp-block-post-featured-image {
    display: none;
}

/* Ensure featured image shows on blog/archive pages */
.blog .post-thumbnail,
.archive .post-thumbnail,
.home .post-thumbnail {
    display: block;
}

#blog-video-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

#blog-video-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translateX(-50%) translateY(-50%);
  object-fit: cover;
}

.blog-video-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
}

#blog-section {
  background: none;
  min-height: 93vh;
  z-index: 7;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#primary-post {
  background: none;
  min-height: 93vh;
  z-index: 7;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.blog-title h1 {
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
.blog-title hr {
  width: 0%;
  transition: width 0.5s ease-in-out 0.35s;
}

.blog-title.active h1 {
  opacity: 1;
}
.blog-title.active hr {
  width: 80%;
}

.blog-container {
  display: flex;
  flex-direction: row;
  gap: 20px;
  min-width: 90vw;
  justify-content: space-around;
  margin-bottom: 100px;
}

.blog-posts {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 25px;
  margin-top: 25px;
  min-width: 50vw;
  opacity: 0;
  transition: opacity 1s ease-in-out 0.75s;
}

.blog-posts.active {
  opacity: 1;
}

.blog-posts article {
  background-color: rgba(255,255,255, 0.95);
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.7);
  transition: transform 0.25s ease-in-out;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 0px;
  max-width: 50vw;
}

.blog-posts article:hover {
  transform: translateY(-5px);
}

.blog-posts article > h2{
  margin-top: 0px;
  text-align: center;
  width: 100%;
  font-family: 'cutedino';
  background-color: var(--orange);
  padding: 20px;
 

}

.blog-posts article h2 a {
  font-size: 2.5rem;
  color: var(--white);
  text-decoration: none;
  text-shadow: 5px 10px rgba(0,0,0, 0.75);
}

.blog-post {
  padding-bottom: 10px;
}

.tag-sub-heading {
  font-family: 'cutedino';
  color: var(--orange);
  font-size: 1.25rem;
}

.blog-post-content {
  padding: 10px;
}

.post-thumbnail {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin-bottom: 25px;
}

.post-thumbnail a {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.post-thumbnail img{
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.7);
}

.article-tag {
  font-family: 'cutedino' !important;
  text-align: left;
  font-size: 1rem;
}

.article-tag a {
  text-decoration: none;
  color: var(--orange);
}

.post-date {
  font-family: 'cutedino';
}

.post-excerpt {
  font-family: 'catcafe';
  font-size: 1.25rem;
  font-weight: bold;
}

.article-button-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  width: 100%;
}

.no-post-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.7);
}

.no-post-container p {
  font-family: 'cutedino';
  text-shadow: 1px 3px rgba(0,0,0, 0.75);
  color: var(--orange);
  font-size: 2rem;
}

.custom-pagination {
  display: flex;
  flex-direction: row;
  justify-content: center;
  color: var(--white);
  font-size: 2.5rem;
  font-family: 'cutedino';
  font-weight: bold;
}

.custom-pagination a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.5s ease-in-out;
}

.custom-pagination a:hover {
  color: var(--orange);
}

.blog-filter-heading {
  color: var(--white);
  text-align: left;
  font-family: 'cutedino';
  font-size: 2.25rem;
  text-shadow: 5px 10px rgba(0,0,0, 0.75);
  background-color: var(--orange);
  padding: 10px;
  margin-top: 0px;
}
.blog-filters {
  position: fixed;
  right: 0;
  margin-right: 20px;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: flex-start;
  background-color: rgba(255, 255, 255, 0.95);
  border-radius: 25px !important;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.7);
  margin-top: 25px;
  opacity: 0;
  transition: opacity 1s ease-in-out 1.25s;
  max-height: 550px;
}

.blog-filters.active {
  opacity: 1;
}

.tags-container {
  padding-left: 10px;
  padding-right: 10px;
  
}

.tag {
  text-align: center;
  cursor: pointer;
  font-family: 'cutedino' !important;
  background-color: white !important;
  max-width: 300px;
  padding: 7.5px;
  padding-left: 15px;
  padding-right: 15px;
  border-radius: 25px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.7);
  transition: background-color 0.5s ease-in-out, color 0.5s ease-in-out;
  font-size: 1.25rem;
}

.tag:hover {
  background-color: var(--blue) !important;
  color: var(--white);
}

.tag.active {
  color: var(--white);
  background-color: var(--orange) !important;
}

.tag-divider {
  background-color: var(--orange);
  height: 5px;
}

/* BLOG PAGE END */

/* OTHER START */
.section-divider {
  top: 0;
  left: 0;
  min-height: 10px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.7);
  transition: max-width 0.5s ease-in-out;
}
#whoWeAreDivider {
  background-color: var(--orange);
  max-width: 0%;
}
#areasWeServiceDivider {
  background-color: var(--green);
  max-width: 0%;
}
#contactUsDivider {
  background-color: var(--red);
  max-width: 0%;
}
#whatIsADeDivider {
  background-color: var(--red);
  max-width: 0%;
}
#ourDeToolkitDivider {
  background-color: var(--green);
  max-width: 0%;
}
#dePricingDivider {
  background-color: var(--red);
  max-width: 0%;
}
#deReportingDivider {
  background-color: var(--orange);
  max-width: 0%;
}
#blogDivider {
  background-color: var(--red);
  max-width: 0%;
}
/* OTHER END */

/* 404 START */
.main-404 {
  max-width: 80vw;
}

.error-404 {
  min-width: 100vw;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-title-404 {
  background-color: var(--orange);
  min-width: 60%;
  max-width: 60%;
  text-align: center;
  color: var(--white);
  font-family: 'dongding';
  padding: 10px;
  word-wrap: break-word;
}

.page-content-404 {
  min-width: 60%;
  max-width: 60%;
  text-align: center;
  font-family: 'cutedino';
}

.message-404 {
  color: #444;
  font-size: 2rem;
}

#countdown {
  font-size: 1.5rem;
  color: var(--orange);
}

/* 404 END */

/* Tablet Responsive Styles */
@media screen and (min-width: 768px) and (max-width: 1366px) {
 .what-is-a-de-card-list .de-card-container {
    flex: 1 0 600px;
  }
  .blog-container {
    display: flex;
    flex-direction: row;
    gap: 20px;
    min-width: 90vw;
    justify-content: flex-start;
    margin-bottom: 100px;
  }
}
/* Mobile Responsive Styles */
@media (max-width: 768px) {

  /* OVERLAY START */
  .overlay a {
    font-size: 2rem;
    padding: 20px;
  }

  .overlay a:hover::after {
    width: 75%;
  }

  /* HEADER START */
  .logo img {
    display: none;
  }
  /* HEADER END */


  /* SECTION NAVIGATION START */
  .section-nav {
        /* margin-top: 10px;
        top: 0%; */
        transform: translateY(0%);
  }
  .section-nav li a p {
      display: none;
  }
  .section-nav li {
      justify-content: center;
  }
  /* SECTION NAVIGATION END */


  /* MAIN PAGE START */
  #home-section {
    min-height: 90vh;
    background-image: url(https://kindfox.com.au/wp-content/themes/kindfox-theme/assets/images/kind-fox-still-render-mobile_v1.webp);
    background-position: center;
    background-size: cover;
  }

  #who-we-are-section {
    background-image: url(https://kindfox.com.au/wp-content/themes/kindfox-theme/assets/images/emoticon-blocks.webp);
  }

  .main-title h1 {
    font-size: 2.5rem;
  }

  #areas-we-service-section {
    background-image: url(https://kindfox.com.au/wp-content/themes/kindfox-theme/assets/images/truck-animation-still-render.webp);
    background-position: left;
    overflow-x: hidden;
  }
  #areas-we-service-section-content {
    margin-left: 10px;
    align-items: flex-start;
  }

  .map-section-container {
    max-width: 95%;
  }

  .map-section-content {
    display: flex;
    flex-direction: column;
    padding-top: 0px;
    padding-left: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
  }

  .map-section-title h1 {
    font-size: 1.5rem
  }

  .map-section-column {

  }

  .map-section-column p {
    font-size: 1.25rem;
  }

  .map-section-column ul {
    font-size: 1.25rem;
  }

  #contact-us-section {
    background-image: url(https://kindfox.com.au/wp-content/themes/kindfox-theme/assets/images/kind-fox-set-phone-render.webp);
    background-position: left;
  }

  /* MAIN PAGE END */

  /* WP FORMS START */
  #wpforms-17 {
    max-width: 95vw;
  }
  /* WP FORMS END */

  /* DE PAGE START */
  #what-is-a-de-section {
      background-image: url(https://kindfox.com.au/wp-content/themes/kindfox-theme/assets/images/casette-tape-render-narrow.webp);
      background-repeat: repeat;
      background-size: contain;
      background-position: bottom;
  }

  #de-reporting-section {
    background-image: url(https://kindfox.com.au/wp-content/themes/kindfox-theme/assets/images/stylised-lighting-narrow.webp);
    background-repeat: repeat;
    background-position: bottom;
  }

  .what-is-a-de-intro p {
    font-size: 1.1rem;
  }

  .what-is-a-de-section-content {
    width: 95vw;
  }

  .de-title h1 {
    font-size: 2rem;
  }

  .what-is-a-de-card-list .de-card-container {
    min-height: 810px;
    flex: 1 0 300px;
  }

  .de-card-title h1 {
    font-size: 1.35rem;
  }
  .de-card-content {
    padding: 5px;
  }
  .de-card-content p {
    font-size: 1.1rem;
    padding: 0;
    margin: 0;
  }

  .de-card-content li {
    font-size: 1.1rem;
  }

  .our-de-toolkit-card-list {
    width: 95vw;
  }

  .our-de-toolkit-card-list .our-de-toolkit-card-container {
    min-height: 820px;
    flex: 1 0 300px;
  }

  .our-de-toolkit-card-title h1 {
    font-size: 1.5rem;
  }
  .our-de-toolkit-card-content {
    padding: 10px;
  }

  .our-de-toolkit-card-content p {
    font-size: 1.1rem;
    padding: 0;
    margin: 0;
  }

  .our-de-toolkit-card-content li {
    font-size: 1.15rem;
  }

  .de-reporting-intro {
    width: 95vw;
    
  }

  .de-reporting-intro p {
    font-size: 1.1rem;
  }

  .de-reporting-card-content p {
    font-size: 1.1rem;
  }

  .de-reporting-card-list {
    max-width: 95vw;
  }

  .de-pricing-container {
    width: 95vw;
  }

  /* DE PAGE END */

  /* BLOG PAGE START */
   #blog-video-bg {
    /* For mobile, we might need to adjust positioning */
    object-fit: cover;
    object-position: bottom;
  }

  .blog-posts {
    min-width: 90vw;
  }

  .blog-posts article {
    max-width: 90vw;
  }

  .blog-posts article h2 a {
    font-size: 1.5rem;
  }

  .post-excerpt {
    font-size: 1.1rem;
  }

  .tag-sub-heading {
    font-size: 1.1rem;
  }

  .post-thumbnail {
    margin-bottom: 25px;
    min-width: 100%;
  }

  .post-thumbnail a {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .blog-filters {
    display: none;
  }

  .post {
    width: 90vw;
    margin-bottom: 25px;
  }

  .entry-content {
    width: 100%;
  }
  .entry-content p {
    font-size: 1.1rem;
  }
  .entry-content .wp-block-heading {
    font-size: 1.5rem;
  }
  .entry-title {
    font-size: 1.25rem;
  }
  .entry-meta {
    font-size: 1.1rem;
  }
  /* BLOG PAGE END */

  /* ACCORDION START */
  .accordion-container {
    margin-left: 10px;
    max-width: 340px;
  }
  .accordion-title {
      font-size: 1.5rem;
  }

  .accordion-content {
    font-size: 1.1rem;
  }

  .accordion-icon {
      font-size: 1.5rem;
  }
  /* ACCORDION END */

  /* TEAM CARDS START */
  .team-card {
      width: calc(50% - 30px); 
      min-width: 230px;
  }
  /* TEAM CARDS END */

  /* MODAL START */
  #teamCardModal {
    min-width: 95%;
    max-height: 0px;
  }

  .modal-header h1 {
    font-size: 1.5rem;
  }

  .modal-content h2 {
    font-size: 1rem;
  }
  .modal-close-btn i {
      font-size: 2rem;
  }

  .modal-content p {
    font-size: 1.1rem;
  }

  .modal-content li {
    font-size: 1.1rem;
  }

  /* MODAL END */

  /* OUR SERVICES START */
  .our-services-text h2 {
    font-size: 1.5rem;
    margin-top: 5px;
    display: flex;
    flex-direction: column;
    text-align: center;
  }

  .our-services-text h2 i {
    font-size: 2rem !important;
    padding-bottom: 5px;
  }

  .our-services-text ul {
    padding: 0;
  }

  .our-services-text li {
    font-size: 1rem;
  }

  .our-services-text li.sub-heading {
    font-size: 1rem;
    padding: 0px;
  }

  .our-services-text p {
    font-size: 1rem;
  }

  .our-services-card-btns {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 10px;
    margin-bottom: 25px;
  }

/* OUR SERVICES END */

  /* PRICE GUIDE START */
  .price-guide-text h2 {
    font-size: 1.5rem;
    margin-top: 5px;
    display: flex;
    flex-direction: column;
  }

   .price-guide-text h2 i {
    font-size: 2rem !important;
    padding-bottom: 5px;
  }

  .price-guide-text ul {
    padding: 0;
  }

  .price-guide-text li {
    font-size: 1.25rem;
  }

  .price-guide-text p {
    font-size: 1rem;
    padding: 5px;
  }
  /* PRICE GUIDE END */

  /* WP FORMS START */
  .wpforms-field-medium {
    font-size: 0.85rem !important;
  }
  /* WP FORMS END */

    /* FOOTER START */
  .footer-container {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  
  .footer-column {
    flex: 1 0 100%;
    text-align: center;
    padding: 0;
    margin-bottom: 25px;
  }
  
  .footer-header {
    margin-bottom: 15px;
  }
  
  .footer-links li {
    margin-bottom: 8px;
  }
  /* FOOTER END */
}