/*
Theme Name: SPCA Design
Author: Peter Papasotiriou
Author URI: www.lionmarketing.com
Description: Theme Created For SPCA Boksburg
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: 
Text Domain: SPCA Boksburg
*/

/*-----------------------------------*/
/*------- Global Styles Start -------*/
/*-----------------------------------*/

:root {
    --spca-navbar: #ffffff;
    --spca-hero: #68C5F0;
    --spca-primary: #1C3F94;
    --spca-button: #8EBC46;

    --text-dark: #000000;
    --text-grey: #5a5a5a;
    --text-light: #ffffff;
    --hero-text: #14244D;

    --section-grey: #eef1f6;

    --border-radius: 8px;
    --transition: 0.3s ease;
}

html, body {
    margin: 0;
    padding: 0;
    font-family: "Segoe UI", Arial, sans-serif;
    color: var(--text-dark);
}

.container-custom{
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-fluid {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--spca-primary);
    font-weight: 600;
}

p {
    line-height: 1.6;
    margin-bottom: 1rem;
}

.site-logo {
    font-weight: 700;
    color: var(--spca-primary);
    font-size: 1.2rem;
    text-transform: uppercase;
}

.main-logo img,
.custom-logo {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.secondary-logo-header {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.custom-logo-link {
    display: flex;
    align-items: center;
}

.site-name {
    margin: 0 5px;
}

.image-setup {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.secondary-logo {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 50%;
}

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

.text-dark {
    color: var(--text-dark);
}

.text-primary-spca {
    color: var(--spca-primary);
}

.text-green-spca {
    color: var(--spca-button)
}

.bg-navbar {
    background: var(--spca-navbar);
}

.bg-hero {
    background: var(--spca-hero);
}

.bg-grey {
    background: var(--section-grey);
}

.bg-primary-spca {
    background: var(--spca-primary);
}

.bg-button-spca {
    background: var(--spca-button);
}

.bg-svg {
  width: 100%;
  max-width: 100%;
  flex: 0 0 100%;

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.btn-primary {
    background: var(--spca-primary);
    color: var(--text-light);
}

.btn-secondary {
    background: var(--spca-button);
    color: var(--text-light);
}

/*-------- Global Styles end --------*/


/*-----------------------------------*/
/*----------- Dog Button -----------*/
/*-----------------------------------*/

.button-container {
  position: relative;
  display: inline-block;
}

.dog-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 64px;
  padding: 0 28px;
  color: var(--spca-primary);
  font-family: 'Poppins', sans-serif;
  font-size: clamp(18px, 2.5vw, 20px);
  font-weight: 600;
  text-decoration: none;
  background-color: var(--spca-button);
  border: 5px solid var(--spca-button);
  border-radius: 20px;
  box-sizing: border-box;
  position: relative;
  z-index: 2;
}

.button-container:hover .dog {
  transform: translate(18px, -52px) rotate(15deg);
  transition-delay: 0.6s;
}

.button-container:hover .paw {
  transition-delay: 0.3s;
  right: 0px;
}

.button-container:hover .paw::after {
  transition-delay: 0s;
  left: 0;
}

.button-container:hover .paw.top {
  transition-delay: 0.4s;
  right: 48px;
  top: -8px;
}

.button-container:hover .tail {
  opacity: 1;
  transition-delay: 0.6s;
}

.dog {
  position: absolute;
  width: 65px;
  height: 65px;
  top: -15px;
  right: 5px;
  transform: translate(0, 0) rotate(0);
  transition: 0.3s transform cubic-bezier(0.33, 1, 0.68, 1);
  z-index: 1;
}

.dog div {
  position: absolute;
}

.dog .tail {
  width: 10%;
  height: 35%;
  left: -50%;
  bottom: -34%;
  transform: rotate(-25deg);
  transition: 0.1s opacity;
  transition-delay: 0s;
  opacity: 0;
}

.dog .tail::after {
  content: '';
  position: absolute;
  transform-origin: bottom center;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50% 50% 0 0;
  background-color: #E1A46E;
  animation: tailSkew .3s infinite alternate cubic-bezier(0.65, 0, 0.35, 1);
}

@keyframes tailSkew {
  from {
    transform: skewX(15deg);
  }
  to {
    transform: skewX(-15deg);
  }
}

.dog .body {
  width: 70%;
  height: 50%;
  bottom: -20%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #9F6A43;
  border-radius: 50% 50% 0 0;
}

.dog .head {
  width: 65%;
  height: 70%;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 80% 80% 60% 60%;
  background-color: #E1A46E;
}

.dog .nuzzle {
  width: 70%;
  height: 40%;
  bottom: 0%;
  left: 50%;
  transform: translateX(-50%);
}

.dog .nuzzle::before,
.dog .nuzzle::after {
  content: '';
  width: 50%;
  height: 100%;
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #C28E5F;
  border-radius: 70% 30% 50% 20%;
  z-index: 1;
}

.dog .nuzzle::after {
  left: auto;
  right: 0;
  transform: scaleX(-1);
}

.dog .mouth {
  width: 50%;
  height: 90%;
  border-radius: 100%;
  background-color: #111827;
  left: 50%;
  bottom: -20%;
  transform: translateX(-50%);
}

.dog .tongue {
  width: 50%;
  height: 50%;
  background-color: #ef4444;
  left: 50%;
  transform: translateX(-50%);
  bottom: 5%;
  border-radius: 50%;
  animation: tongueBounce 0.3s alternate infinite cubic-bezier(0.45, 0, 0.55, 1);
}

@keyframes tongueBounce {
  from {
    bottom: 20%;
  }
  to {
    bottom: 15%;
  }
}

.dog .nose {
  width: 30%;
  height: 20%;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  z-index: 10;
}

.dog .nose::before {
  content: '';
  width: 100%;
  height: 60%;
  top: -50%;
  left: 0;
  position: absolute;
  display: inline-block;
  background-color: #1f2937;
  border-radius: 1000px 1000px 0 0;
}

.dog .nose::after {
  content: '';
  width: 100%;
  height: 100%;
  top: 10%;
  left: 0;
  position: absolute;
  display: inline-block;
  background-color: #1f2937;
  border-radius: 0 0 1000px 1000px;
}

.dog .nose .nostrils {
  width: 90%;
  height: 100%;
  top: 0;
  z-index: 1;
  left: 50%;
  transform: translateX(-50%);
}

.dog .nose .nostrils::before,
.dog .nose .nostrils::after {
  content: '';
  display: inline-block;
  width: 30%;
  height: 100%;
  position: absolute;
  background-color: #000;
  border-radius: 100%;
}

.dog .nose .nostrils::before {
  left: 10%;
}

.dog .nose .nostrils::after {
  right: 10%;
}

.dog .nose .highlight {
  top: -50%;
  left: 50%;
  width: 80%;
  height: 30%;
  transform: translateX(-50%);
  background: linear-gradient(#fff, rgba(255, 255, 255, 0));
  border-radius: 1000px 1000px 0 0;
  opacity: 0.3;
}

.dog .eyes {
  width: 80%;
  height: 35%;
  top: 25%;
  left: 50%;
  transform: translateX(-50%);
}

.dog .eyes .left,
.dog .eyes .right {
  border-radius: 1000px;
  background-color: #111;
  width: 25%;
  height: 52%;
  top: 50%;
  transform: translateY(-50%);
}

.dog .eyes .left::after,
.dog .eyes .right::after {
  content: '';
  display: inline-block;
  position: absolute;
  width: 30%;
  height: 30%;
  background-color: #fff;
  opacity: 0.7;
  border-radius: 1000px;
  left: 15%;
  top: 15%;
}

.dog .eyes .left {
  left: 15%;
}

.dog .eyes .right {
  right: 15%;
}

.dog .ears {
  width: 90%;
  height: 90%;
  top: 70%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.dog .ears div {
  width: 30%;
  height: 50%;
  left: 0;
  top: 0;
  background-color: #9F6A43;
  transform: rotate(15deg);
  border-radius: 60% 20% 80% 10%;
  z-index: 1;
}

.dog .ears .right {
  transform: rotate(-15deg) scaleX(-1);
  left: auto;
  right: 0;
}

.paw {
  position: absolute;
  right: -20px;
  top: 18px;
  overflow: hidden;
  width: 20px;
  height: 20px;
  transition: right .3s cubic-bezier(0.33, 1, 0.68, 1);
  z-index: 3;
}

.paw::after {
  content: '';
  position: absolute;
  left: -90%;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #E1A46E;
  transition: left .3s cubic-bezier(0.33, 1, 0.68, 1);
  transition-delay: .3s;
}

.paw.top {
  transform: rotate(-90deg);
  top: -18px;
  right: 48px;
  transition: top .3s cubic-bezier(0.33, 1, 0.68, 1),
              right .3s cubic-bezier(0.33, 1, 0.68, 1);
}

/*-----------------------------------*/
/*----------- Donate Button -----------*/
/*-----------------------------------*/

.donate-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 64px;
  padding: 0 28px;
  color: var(--text-light);
  font-family: 'Poppins', sans-serif;
  font-size: clamp(18px, 2.5vw, 20px);
  font-weight: 600;
  text-decoration: none;
  background-color: var(--spca-primary);
  border-radius: 20px;
  box-sizing: border-box;
  position: relative;
  z-index: 2;
  overflow: hidden;

  transition: all 0.3s ease;
}

.heart-icon {
  position: absolute;
  left: 50%;
  opacity: 0;
  transition: left 0.3s ease;
}

.donate-btn:hover .heart-icon {
  left: 20px;
  opacity: 1;
  transition:
    left 0.3s ease,
    opacity 0.3s ease 0.15s;
}

.donate-btn:hover {
  padding-left: 50px;
}

/*-----------------------------------*/
/*----------- Default Button -----------*/
/*-----------------------------------*/

.btn-default {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 0 26px;
  border-radius: 14px;

  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-decoration: none;

  border: none;

  cursor: pointer;
  position: relative;
  overflow: hidden;

  transition:
    background-color 0.2s ease,
    transform 0.15s ease,
    box-shadow 0.2s ease;
}

.btn-default:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.btn-default:active {
  transform: translateY(0);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/*-----------------------------------*/
/*----------- CTA Button -----------*/
/*-----------------------------------*/

/* From Uiverse.io by alexmaracinaru */ 
.cta-spca {
  border: none;
  background: none;
  cursor: pointer;
}

.cta-spca span {
  padding-bottom: 7px;
  letter-spacing: 4px;
  font-size: 14px;
  padding-right: 15px;
  text-transform: uppercase;
}

.cta-spca svg {
  transform: translateX(-8px);
  transition: all 0.3s ease;
}

.cta-spca:hover svg {
  transform: translateX(0);
}

.cta-spca:active svg {
  transform: scale(0.9);
}

.cta-spca-hover-underline-animation {
  position: relative;
  color: var(--spca-primary);
  padding-bottom: 20px;
}

.cta-spca-hover-underline-animation:after {
  content: "";
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--spca-primary);
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}

.cta-spca:hover .cta-spca-hover-underline-animation:after {
  transform: scaleX(1);
  transform-origin: bottom left;
}


/*-----------------------------------*/
/*----------- Header Start -----------*/
/*-----------------------------------*/

.site-header {
    position: relative;
    z-index: 1000;
}

.site-nav {
    padding: 0.75rem 0;
    z-index: 99999;
}

.site-nav .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.site-nav .navbar-brand {
    display: flex;
    align-items: center;
    margin: 0;
    max-width: 70%;
    z-index: 1002;
}

.site-nav .custom-logo {
    max-height: 70px;
    width: auto;
    display: block;
}

.site-nav .navbar-collapse {
    transition: all 0.3s ease;
}

.site-nav .navbar-nav {
    align-items: center;
}

.site-nav .navbar-nav .menu-item {
    position: relative;
}

.site-nav .navbar-nav .nav-link,
.site-nav .navbar-nav > li > a {
    color: var(--text-dark);
    font-weight: 600;
    padding: 0.75rem 1rem;
    text-decoration: none;
    display: block;
    transition: color 0.2s ease, background 0.2s ease;
}

.site-nav .navbar-nav .nav-link:hover,
.site-nav .navbar-nav > li > a:hover,
.site-nav .navbar-nav .current-menu-item > a,
.site-nav .navbar-nav .current-menu-ancestor > a {
    color: var(--spca-primary);
}

.site-nav .sub-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    background: var(--spca-navbar);
    min-width: 240px;
}

.site-nav .sub-menu li a {
    color: var(--text-dark);
    padding: 0.85rem 1rem;
    display: block;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
}

.site-nav .sub-menu li a:hover {
    background: var(--spca-primary);
    color: var(--text-light);
}

/* Custom hamburger */
.nav-checkbox {
    display: none;
}

.toggle {
    position: relative;
    width: 40px;
    height: 40px;
    cursor: pointer;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: 0.5s;
    z-index: 1002;
}

.bars {
    width: 100%;
    height: 4px;
    background-color: var(--spca-primary);
    border-radius: 4px;
}

#bar2 {
    transition-duration: 0.8s;
}

#bar1,
#bar3 {
    width: 70%;
    transition-duration: 0.5s;
}

#checkbox:checked + .toggle .bars {
    position: absolute;
    transition-duration: 0.5s;
}

#checkbox:checked + .toggle #bar2 {
    transform: scaleX(0);
    transition-duration: 0.5s;
}

#checkbox:checked + .toggle #bar1 {
    width: 100%;
    transform: rotate(45deg);
    transition-duration: 0.5s;
}

#checkbox:checked + .toggle #bar3 {
    width: 100%;
    transform: rotate(-45deg);
    transition-duration: 0.5s;
}

#checkbox:checked + .toggle {
    transform: rotate(180deg);
    transition-duration: 0.5s;
}

/* MOBILE */
@media (max-width: 991.98px) {
    .site-nav {
        padding: 0.65rem 0;
    }

    .site-nav .custom-logo {
        max-height: 56px;
    }

    .toggle {
        display: flex;
    }

    .site-nav .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        z-index: 1001;
        margin-top: 10px;
        padding: 1rem;
        background: var(--spca-navbar);
        box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
        border-top: 1px solid rgba(0, 0, 0, 0.08);
    }

    .site-nav .navbar-collapse:not(.show) {
        display: none;
    }

    .site-nav .navbar-nav {
        align-items: stretch;
        width: 100%;
    }

    .site-nav .navbar-nav > li {
        width: 100%;
    }

    .site-nav .navbar-nav > li > a,
    .site-nav .navbar-nav .nav-link {
        padding: 0.95rem 1rem;
        border-radius: 12px;
        font-size: 1rem;
        line-height: 1.4;
    }

    .site-nav .navbar-nav > li > a:hover,
    .site-nav .navbar-nav .nav-link:hover {
        background: rgba(0, 0, 0, 0.04);
    }

    .site-nav .navbar-nav .menu-item + .menu-item {
        margin-top: 0.25rem;
    }

    .site-nav .menu-item-has-children > a {
        padding-bottom: 0.8rem;
    }

    .site-nav .sub-menu {
        position: static;
        display: block;
        min-width: 100%;
        background: transparent;
        margin-top: 0.2rem;
        padding-left: 0.75rem;
        border-left: 3px solid var(--spca-primary);
    }

    .site-nav .sub-menu li a {
        padding: 0.75rem 0.9rem;
        border-bottom: none;
        border-radius: 10px;
        font-size: 0.95rem;
        margin-bottom: 0.3rem;
    }

    .site-nav .sub-menu li a:hover {
        background: var(--spca-primary);
        color: var(--text-light);
    }
}

/* DESKTOP */
@media (min-width: 992px) {
    .site-nav .menu-item-has-children {
        position: relative;
    }

    .site-nav .menu-item-has-children .sub-menu {
        position: absolute;
        top: 100%;
        left: 0;
        display: none;
        z-index: 999;
        overflow: hidden;
        box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
    }

    .site-nav .menu-item-has-children:hover > .sub-menu {
        display: block;
    }

    .site-nav .navbar-collapse {
        display: flex !important;
        position: static;
        width: auto;
        background: transparent;
        box-shadow: none;
        padding: 0;
    }
}
/*-------- Header end --------*/

/*-----------------------------------*/
/*----------- Footer Start -----------*/
/*-----------------------------------*/

.site-footer {
    background: var(--spca-primary);
    color: var(--text-light);
}

.footer-title {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 700;
}

.footer-text,
.footer-text p {
    color: var(--text-light);
    margin-bottom: 0rem;
}

.site-footer a {
    color: var(--text-light);
    text-decoration: none;
}

.site-footer a:hover {
    color: var(--spca-hero);
}

.footer-social-nav {
    list-style: none;
    display: flex;
    gap: 14px;
    padding: 0;
    margin: 0;
}

.footer-social-nav li {
    margin: 0;
}

.footer-social-nav a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--text-light);
}

.footer-social-nav a:hover {
    color: var(--spca-button);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.15);
    padding: 1rem 0;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    color: var(--text-light);
}

.to-top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 999;
}

.to-top a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--spca-button);
    background: #fff;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.to-top a:hover {
    color: var(--spca-primary);
}

/*-------- Footer end --------*/

/*-----------------------------------*/
/*----------- Hero Section -----------*/
/*-----------------------------------*/

.hero-row{
    min-height: 65vh;
    align-items: stretch;
}

.hero-row-smaller{
    min-height: 30vh;
}

.hero-image{
    height: auto;
    border-bottom-left-radius: 750px;
    overflow: hidden;
}

.hero-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.hero-panel{
    padding: 3rem;
    position: relative;
    overflow: hidden;
    display: flex;
}

.hero-panel-content,
.hero-panel__content{
    width: 100%;
    height: 100%;
}

.hero-panel h2{
    text-align: center;
    margin-bottom: 1rem;
    color: var(--spca-primary);
    font-size: clamp(3rem, 5vw, 3rem);
    line-height: 1.05;
    font-weight: 800;
}

.hero-h2 {
    text-align: center;
    margin-bottom: 1rem;
    color: var(--spca-primary);
    font-size: clamp(3rem, 5vw, 3rem);
    line-height: 1.05;
    font-weight: 800;
}

.hero-panel p{
    text-align: center;
    margin: 0;
    color: var(--text-light);
    font-size: clamp(1rem, 1.1vw, 1.2rem);
    line-height: 1.6;
}

@media (max-width: 991.98px){
    .hero-row{
        min-height: 0;
    }

    .hero-panel{
        padding: 2rem 1.25rem;
    }

    .hero-image{
        height: 300px;
        border-radius: 0;
    }

    .hero-panel h2{
        font-size: clamp(2.2rem, 8vw, 3.2rem);
        text-align: start;
    }

    .hero-panel p{
        max-width: 100%;
    }
}

/*-----------------------------------*/
/*----------- About Section -----------*/
/*-----------------------------------*/

.about-section{
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.about-section .about-items{
    width: 100%;
}

.about-image-wrap{
    position: relative;
    width: 100%;
    max-width: 100%;
}

.about-shape{
    position: absolute;
    inset: 28px -16px -16px 28px;
    background: linear-gradient(
        135deg,
        rgba(104, 197, 240, 0.18),
        rgba(142, 188, 70, 0.18)
    );
    border-radius: 32px;
    z-index: 1;
}

.about-us-image{
    position: relative;
    z-index: 2;
    width: 100%;
    height: 560px;
    overflow: hidden;
    border-radius: 28px;
    box-shadow: 0 24px 60px rgba(28, 63, 148, 0.12);
}

.about-us-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 60%;
    transition: transform 0.5s ease;
}

.about-us-text{
    width: 100%;
    max-width: 100%;
    padding-left: clamp(0rem, 2vw, 1.5rem);
}

.about-title{
    font-size: clamp(3rem, 5.4vw, 5.8rem);
    line-height: 0.92;
    letter-spacing: -0.05em;
    color: var(--spca-primary);
    max-width: 100%;
}

.hero-gradient{
    display: inline-block;
    background: linear-gradient(90deg, var(--spca-hero), var(--spca-button));
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: inherit !important;
    line-height: inherit;
}

.about-us-text p{
    font-size: clamp(1.05rem, 1.15vw, 1.18rem);
    line-height: 1.9;
    color: var(--text-dark);
    max-width: 100%;
    margin-bottom: 0;
}

.about-note{
    border-left: 4px solid var(--spca-hero);
    padding-left: 18px;
    margin-top: 1.75rem;
}

.about-note p{
    font-size: 1rem;
    line-height: 1.8;
    color: var(--spca-primary);
    max-width: 100%;
}

@media (max-width: 991.98px){
    .about-section{
        min-height: auto;
    }

    .about-image-group{
        width: 100%;
    }

    .about-image-wrap{
        width: 100%;
    }

    .about-us-image{
        width: 100%;
        height: 420px;
    }

    .about-us-text{
        padding-left: 0;
        margin-top: 0;
        margin-bottom: 1rem;
    }
}

@media (max-width: 575.98px){
    .about-us-image{
        height: 320px;
        border-radius: 20px;
    }

    .about-shape{
        inset: 18px -8px -8px 18px;
        border-radius: 22px;
    }

    .about-title{
        font-size: clamp(2.4rem, 9vw, 3.4rem);
        line-height: 0.98;
    }

    .about-us-text p{
        line-height: 1.75;
    }
}

/*-----------------------------------*/
/*----------- Our Mission -----------*/
/*-----------------------------------*/

.mission-section {
    background: var(--section-grey);
}

.mission-heading {
    color: var(--spca-primary);
    font-size: clamp(2.8rem, 6vw, 5.8rem);
    line-height: 0.95;
    letter-spacing: -0.05em;
}

.mission-heading-light {
    color: var(--spca-button);
    margin-left: clamp(0rem, 4vw, 4rem);
}

.mission-lead {
    color: var(--text-dark);
    font-size: 1.08rem;
    line-height: 1.9;
    max-width: 680px;
}

.mission-card {
    border-color: rgba(28, 63, 148, 0.12) !important;
    transition: var(--transition);
}

.mission-card-title {
    color: var(--spca-primary);
}

.mission-visual {
    max-width: 520px;
}

.mission-shape {
    inset: 40px 50px 60px 0;
    background: linear-gradient(160deg, rgba(104, 197, 240, 0.22), rgba(255, 255, 255, 0.75));
    border-radius: 34% 66% 58% 42% / 34% 41% 59% 66%;
}

.mission-image {
    width: 86%;
    height: 480px;
    margin-left: auto;
    border-radius: 28px;
}

.mission-quote {
    left: 0;
    bottom: 0;
    width: 62%;
    border-radius: 24px;
}

.mission-quote-mark {
    font-size: 4rem;
    color: var(--spca-primary);
}

.mission-quote p {
    color: var(--spca-primary);
    font-size: 1.05rem;
    line-height: 1.8;
}

.mission-quote small {
    color: var(--spca-button);
    letter-spacing: 0.05em;
}

@media (max-width: 991.98px) {
    .mission-heading-light {
    margin-left: 0;
    }

    .mission-visual {
    min-height: 540px;
    }

    .mission-image {
    height: 400px;
    }

    .mission-quote {
    width: 78%;
    }

    .mission-lead {
        max-width: 100%;
    }

    .steralization-image {
        margin-left: 0 !important;
        width: 100% !important;
    }
}

@media (max-width: 575.98px) {
    .mission-section {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
    }

    .mission-image {
    width: 100%;
    }

    .mission-quote {
    position: relative !important;
    width: 100%;
    margin-top: -40px;
    }
}

/*-----------------------------------*/
/*------- Carousel Front Page -------*/
/*-----------------------------------*/

.adoption-type-card{
    position: relative;
    transition: transform var(--transition);
}

.adoption-type-card:hover{
    transform: translateY(-6px);
}

.adoption-type-card__image-wrap{
    position: relative;
    height: 420px;
    background: var(--section-grey);
    border-radius: 1.75rem !important;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(28, 63, 148, 0.12);
}

.adoption-type-card__image-wrap::after{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(28, 63, 148, 0.18) 0%,
        rgba(28, 63, 148, 0.04) 35%,
        rgba(255,255,255,0) 65%
    );
    pointer-events: none;
    z-index: 2;
}

.adoption-type-card__image-wrap .carousel,
.adoption-type-card__image-wrap .carousel-inner,
.adoption-type-card__image-wrap .carousel-item{
    height: 100%;
}

.adoption-type-card__image-wrap img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.adoption-type-card__content{
    width: calc(100% - 2.25rem);
    margin: -6.5rem auto 0;
    z-index: 2;
    min-height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.75rem !important;
    background: rgba(255,255,255,0.98);
    border-radius: 1.5rem !important;
    border: 1px solid rgba(104, 197, 240, 0.18);
    box-shadow:
        0 16px 36px rgba(28, 63, 148, 0.14),
        0 4px 12px rgba(0,0,0,0.06) !important;
    backdrop-filter: blur(4px);
}

.adoption-type-card__content h3{
    color: var(--spca-primary);
    font-size: clamp(1.5rem, 2vw, 2rem);
    line-height: 1.05;
    margin-bottom: 1rem !important;
}

.adoption-type-card-paragraph {
    color: var(--spca-primary);
    font-size: 1.2rem !important;
    margin-bottom: 0.5rem !important;
}

.adoption-type-card__link{
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    width: fit-content;
    padding: 0 !important;
    color: var(--spca-button) !important;
    letter-spacing: 0.08em;
    font-size: 0.95rem;
    font-weight: 800 !important;
    text-transform: uppercase;
    text-decoration: none !important;
    transition:
        transform 0.25s ease,
        color 0.25s ease,
        text-shadow 0.25s ease;
}

.adoption-type-card__link::after{
    content: "→";
    display: inline-block;
    transition: transform 0.25s ease;
}

.adoption-type-card__link::before{
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.3rem;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg,var(--spca-hero), var(--spca-button));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
}

.adoption-type-card:hover .adoption-type-card__link{
    color: var(--spca-primary) !important;
    transform: translateY(-2px);
    text-shadow: 0 6px 18px rgba(28, 63, 148, 0.18);
}

.adoption-type-card:hover .adoption-type-card__link::after{
    transform: translateX(4px);
}

.adoption-type-card:hover .adoption-type-card__link::before{
    transform: scaleX(1);
}

.adoption-types-header__title{
    color: var(--spca-primary);
    font-size: clamp(2.3rem, 4.2vw, 4.4rem);
    line-height: 0.98;
    letter-spacing: -0.04em;
}

@media (max-width: 991.98px){
    .adoption-type-card{
        padding-bottom: 3rem;
    }

    .adoption-type-card__image-wrap{
        height: 360px;
    }

    .adoption-type-card__content{
        width: calc(100% - 1.5rem);
        margin-top: -5.5rem;
        min-height: 100px;
    }
}

@media (max-width: 575.98px){
    .adoption-type-card{
        padding-bottom: 2rem;
    }

    .adoption-type-card:hover{
        transform: none;
    }

    .adoption-type-card__image-wrap{
        height: 300px;
        border-radius: 1.25rem !important;
        box-shadow: 0 14px 28px rgba(28, 63, 148, 0.12);
    }

    .adoption-type-card__content{
        width: calc(100% - 1rem);
        margin-top: -4.25rem;
        padding: 1.35rem !important;
        border-radius: 1.2rem !important;
        min-height: 100px;
    }

    .adoption-type-card__content h3{
        font-size: 1.45rem;
    }
}

/*-----------------------------------*/
/*----------- steralization -----------*/
/*-----------------------------------*/

.steralization-shape {
    inset: -40px -80px 160px 100px;
    background: linear-gradient(135deg,rgba(104, 197, 240, 0.3),rgba(255, 255, 255, 0.75), rgba(142, 188, 70, 0.3));
    border-radius: 55% 45% 60% 40% / 40% 60% 40% 60%;
}

.steralization-image {
    width: 86%;
    height: 480px;
    margin-left: auto;
    border-radius: 28px;
}

@media (max-width: 991.98px) {

    .steralization-image {
        margin-left: 0;
        width: 100%;
    }
}

/*-----------------------------------*/
/*----------- Adoption Page -----------*/
/*-----------------------------------*/
.hero-row {
  overflow: hidden;
}

.hero-panel-bigger {
  min-height: 50vh;
  padding: 3rem;
  position: relative;
  overflow: hidden;
}

.hero-panel-bigger h2 {
  text-align: start;
  margin-bottom: 1rem;
  color: var(--text-light);
  font-size: clamp(3rem, 6vw, 6rem);
  line-height: 1;
  font-weight: 800;
  word-break: break-word;
  -webkit-text-stroke: 1px var(--spca-primary);
}

.hero-panel-bigger p {
  text-align: start;
  margin: 0;
  color: var(--text-light);
  font-size: clamp(1rem, 1.8vw, 1.5rem);
  line-height: 1.6;
}

.hero-images-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  padding: 2rem 1rem;
  flex-wrap: nowrap;
}

.pill-image {
  width: 100%;
  max-width: 320px;
  aspect-ratio: 1 / 1.8;
  border-radius: 999px;
  overflow: hidden;
  border: 16px solid #fff;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 1 320px;
}

.pill-image img,
.image-setup {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 991.98px) {
  .hero-row {
    flex-direction: column;
  }

  .hero-panel-bigger {
    min-height: auto;
    padding: 2rem 1.25rem 1rem;
    align-items: center !important;
  }

  .hero-panel-bigger h2 {
    text-align: center;
    font-size: clamp(2.4rem, 10vw, 4rem);
    line-height: 1.05;
    margin-bottom: 1rem;
  }

  .hero-panel-bigger p {
    text-align: center;
    font-size: 1.05rem;
    line-height: 1.5;
    max-width: 95%;
  }

  .hero-images-wrap {
    width: 100%;
    padding: 1rem 1rem 2rem;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .pill-image {
    max-width: 240px;
    flex: 0 1 240px;
    border-width: 12px;
  }
}

@media (max-width: 575.98px) {
  .hero-panel-bigger {
    padding: 1.5rem 1rem 1rem;
  }

  .hero-panel-bigger h2 {
    font-size: clamp(2rem, 12vw, 3rem);
  }

  .hero-panel-bigger p {
    font-size: 0.95rem;
    max-width: 100%;
  }

  .pill-image {
    max-width: 200px;
    flex: 0 1 200px;
    border-width: 10px;
  }
}

/*-----------------------------------*/
/*----------- Taxonomy Animal Page -----------*/
/*-----------------------------------*/

.hero-inner {
  height: 100%;
}

.hero-col {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 100%;
}

.hero-side {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.hero-center-col {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.image-setup-contain {
  display: block;
  width: auto;
  height: clamp(220px, 34vh, 380px);
  object-fit: contain;
}

@media (max-width: 991.98px) {

  .hero-inner{
    min-height: 300px;
  }

  .image-setup-contain {
    height: clamp(220px, 34vh, 380px);
  }
}

/*-----------------------------------*/
/*----------- Singular Adopt Page -----------*/
/*-----------------------------------*/

.pet-mini-hero {
    min-height: 15vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.pet-mini-hero h1 {
    margin: 0;
    font-weight: 800;
    line-height: 1;
}

.pet-mini-hero p{
    text-align: center;
    margin-top: 0;
    color: var(--text-light);
    font-size: clamp(1rem, 1.1vw, 1.2rem);
    line-height: 1.6;
}

.pet-profile-section,
.pet-details-section,
.pet-gallery-section {
    padding: 4rem 0;
}

.pet-profile-card,
.pet-details-card,
.pet-compat-card {
    height: 100%;
}

.pet-profile-media {
    position: relative;
    display: flex;
    width: 100%;
    height: 100%;
}

.pet-blob {
    position: absolute;
    z-index: 1;
    pointer-events: none;
    line-height: 0;
}

.pet-blob svg {
    display: block;
    width: 100%;
    height: 100%;
}

.pet-blob-top {
    top: -120px;
    left: -120px;
    width: 300px;
    height: 300px;
    color: rgba(142, 188, 70, 0.22);
}

.pet-blob-bottom {
    right: -120px;
    bottom: -120px;
    width: 300px;
    height: 300px;
    color: rgba(104, 197, 240, 0.28);
}

.pet-image-shell {
    position: relative;
    z-index: 2;
    width: 100%;
    overflow: hidden;
    border-radius: 26px;
    background: #fff;
}

.pet-main-image {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
}

.pet-profile-content {
    height: 100%;
    padding: 2rem;
}

.pet-name {
    color: var(--spca-primary);
    font-weight: 800;
    line-height: 1.05;
}

.pet-id-badge {
    white-space: nowrap;
    padding: 0.45rem 0.85rem;
    border: 1px solid rgba(28, 63, 148, 0.12);
    border-radius: 999px;
    background: rgba(28, 63, 148, 0.06);
    color: rgba(28, 63, 148, 0.7);
    font-size: 0.88rem;
    font-weight: 700;
}

.pet-chip {
    display: inline-block;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    padding: 0.5rem 0.95rem;
    border-radius: 999px;
    background: var(--section-grey);
    color: var(--spca-primary);
    font-size: 0.92rem;
    font-weight: 700;
}

.pet-body-text {
    color: var(--text-grey);
    line-height: 1.85;
}

.pet-text-box {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(28, 63, 148, 0.08);
}

.section-heading {
    margin-bottom: 1.25rem;
    color: var(--spca-primary);
    font-weight: 800;
}

.btn-adopt {
    padding: 0.9rem 1.4rem;
    border: none;
    border-radius: 12px;
    background: var(--spca-button);
    color: #fff;
    font-weight: 700;
    transition: var(--transition);
}

.btn-adopt:hover {
    background: #7ca43b;
    color: #fff;
}

.pet-info-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.9rem 0;
    border-bottom: 1px solid rgba(28, 63, 148, 0.08);
}

.pet-info-row:last-child {
    border-bottom: none;
}

.pet-info-label {
    flex-shrink: 0;
    color: var(--spca-primary);
    font-weight: 700;
}

.pet-info-value {
    color: var(--text-grey);
    text-align: right;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1rem;
}

.gallery-image-wrap {
    overflow: hidden;
    border-radius: 18px;
    aspect-ratio: 4 / 5;
}

.gallery-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition);
}

.gallery-image:hover {
    transform: scale(1.04);
}

@media (max-width: 991.98px) {
    .pet-profile-section,
    .pet-details-section,
    .pet-gallery-section {
        padding: 3rem 0;
    }

    .pet-main-image {
        min-height: 380px;
    }

    .pet-profile-content {
        padding: 1.5rem;
    }

    .pet-name {
        font-size: 2.4rem;
    }
}

@media (max-width: 767.98px) {
    .pet-mini-hero {
        min-height: 22vh;
        text-align: center;
    }

    .pet-mini-hero h1 {
        font-size: 2rem;
        line-height: 1.15;
    }

    .pet-profile-section,
    .pet-details-section,
    .pet-gallery-section {
        padding: 2.5rem 0;
    }

    .pet-main-image {
        min-height: 300px;
    }

    .pet-profile-content {
        padding: 1.25rem;
    }

    .pet-name {
        font-size: 2rem;
    }

    .pet-id-badge {
        font-size: 0.8rem;
    }

    .pet-info-row {
        flex-direction: column;
        gap: 0.25rem;
    }

    .pet-info-value {
        text-align: left;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .pet-blob-top {
        width: 70px;
        height: 70px;
    }

    .pet-blob-bottom {
        width: 85px;
        height: 85px;
    }
}

@media (max-width: 575.98px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/*-----------------------------------*/
/*----------- Sterilization Page -----------*/
/*-----------------------------------*/

.hero-panel-sterilization {
  min-height: 50vh;
  padding: 3rem;
  position: relative;
  overflow: hidden;
}

.hero-panel-sterilization h2 {
  text-align: start;
  margin-bottom: 1rem;
  color: var(--spca-primary);
  font-size: clamp(3rem, 6vw, 6rem);
  line-height: 1;
  font-weight: 800;
  word-break: break-word;
}

.hero-panel-sterilization p {
  text-align: start;
  margin: 0;
  color: var(--text-light);
  font-size: clamp(1rem, 1.8vw, 1.5rem);
  line-height: 1.6;
}

.hero-image-fill {
  width: 100%;
  height: 100%;
}

.hero-main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-divider {
  position: absolute;
  top: 0;
  right: 0;
  aspect-ratio: 1/1;
  height: 100%;
  z-index: 2;
  pointer-events: none;
  flex-shrink: 0;
}

.hero-divider svg {
  width: 100%;
  height: 100%;
  display: block;
}

@media (max-width: 991.98px) {
  .hero-row,
  .hero-image-col,
  .hero-panel-sterilization {
    min-height: auto;
  }

  .hero-image-col {
    height: 380px;
  }

  .hero-panel-sterilization {
    padding: 2rem 1.25rem;
    align-items: center !important;
    text-align: center;
  }

  .hero-panel-sterilization h2,
  .hero-panel-sterilization p {
    text-align: center;
  }
}

.pricing-card-prices {
    background: 
        radial-gradient(circle at center, rgba(0,0,0,0) 50%, rgba(0,0,0,0.20) 100%),
        #63c9eb;

    border-top-left-radius: 0.375rem;
    border-bottom-left-radius: 0.375rem;
}

.pricing-card-prices h3 {
    font-size: clamp(1.8rem, 3vw, 3rem);
    font-weight: 700;
    line-height: 1.1;
}

.pricing-card-prices p {
    color: #fff;
    font-size: clamp(1rem, 1.8vw, 1.4rem);
    line-height: 1.5;
}

/*-----------------------------------*/
/*----------- News Page -----------*/
/*-----------------------------------*/

.news-featured-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 250px 250px;
    gap: 12px;
}

.news-card {
    position: relative;
    display: block;
    overflow: hidden;
    min-height: 250px;
    text-decoration: none;
    color: #fff;
    border-radius: 6px;
}

.news-card-large {
    grid-row: 1 / 3;
    grid-column: 1 / 2;
    min-height: 100%;
}

.news-card-small:nth-child(2) {
    grid-column: 2 / 4;
    grid-row: 1 / 2;
}

.news-card-small:nth-child(3) {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
}

.news-card-small:nth-child(4) {
    grid-column: 3 / 4;
    grid-row: 2 / 3;
}

.news-card-image,
.news-card-img {
    width: 100%;
    height: 100%;
}

.news-card-image {
    position: absolute;
    inset: 0;
}

.news-card-img {
    object-fit: cover;
    display: block;
}

.news-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.75), rgba(0,0,0,.15));
    z-index: 1;
}

.news-card-content {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 20px;
    z-index: 2;
}

.news-card-category {
    display: inline-block;
    background: rgba(0,0,0,.65);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 8px;
    margin-bottom: 10px;
    border-radius: 3px;
    letter-spacing: .5px;
}

.news-card-title {
    color: #fff;
    margin: 0 0 8px;
    line-height: 1.15;
    font-weight: 700;
}

.news-card-large .news-card-title {
    font-size: 2rem;
    max-width: 80%;
}

.news-card-small .news-card-title {
    font-size: 1.25rem;
}

.news-card-meta {
    font-size: 13px;
    color: rgba(255,255,255,.9);
}

@media (max-width: 991px) {
    .news-featured-grid {
        grid-template-columns: 1fr 1fr;
    }

    .news-card-large {
        grid-column: 1 / 3;
        grid-row: 1 / 2;
    }

    .news-card-small:nth-child(2) {
        grid-column: 1 / 3;
        grid-row: 2 / 3;
    }

    .news-card-small:nth-child(3) {
        grid-column: 1 / 2;
        grid-row: 3 / 4;
    }

    .news-card-small:nth-child(4) {
        grid-column: 2 / 3;
        grid-row: 3 / 4;
    }

    .news-card-large .news-card-title {
        font-size: 1.6rem;
        max-width: 100%;
    }
}

@media (max-width: 767px) {
    .news-featured-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, 260px);
    }

    .news-card,
    .news-card-large,
    .news-card-small:nth-child(2),
    .news-card-small:nth-child(3),
    .news-card-small:nth-child(4) {
        grid-column: auto;
        grid-row: auto;
    }

    .news-card-title,
    .news-card-large .news-card-title,
    .news-card-small .news-card-title {
        font-size: 1.25rem;
    }
}

.news-sidebar-height {
    display: flex;
    align-self: stretch;
}

.news-sidebar {
    position: sticky;
    top: 120px;
    height: fit-content;
    width: 100%;
}

.news-sidebar-box {
    max-width: 360px;
    width: 100%;
    margin: 0 auto;
}

.news-sidebar-link {
    display: block;
    padding: 12px 14px;
    border-radius: 12px;
    transition: background-color 0.25s ease, transform 0.25s ease;
    cursor: pointer;
}

.news-sidebar-link:hover,
.news-sidebar-link:focus {
    background-color: rgba(255, 255, 255, 0.12);
    transform: translateX(6px);
}

.news-sidebar-link h3 {
    margin: 0;
    transition: color 0.25s ease;
}

.news-sidebar-link:hover h3,
.news-sidebar-link:focus h3 {
    color: #fff;
    text-decoration: underline;
}

@media (max-width: 991px) {
    .row.g-5 {
        align-items: stretch;
    }

    .news-sidebar-height {
        display: block;
    }

    .news-sidebar {
        position: static;
        top: auto;
    }

    .news-sidebar-box {
        max-width: 100%;
    }
}


/*-----------------------------------*/
/*----------- Article Content -----------*/
/*-----------------------------------*/

.article-content {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #333;
}

.article-content p {
    margin-bottom: 1.5rem;
}

.article-content h1,
.article-content h2,
.article-content h3,
.article-content h4 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.3;
}

.article-content ul,
.article-content ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.article-content img {
    max-width: 100%;
    height: auto;
}

.article-content blockquote {
    border-left: 4px solid #0d6efd;
    padding-left: 1rem;
    margin: 2rem 0;
    font-style: italic;
    color: #555;
}

/*-----------------------------------*/
/*----------- Contact Page -----------*/
/*-----------------------------------*/
.contact-panel {
    height: 100%;
}

.contact-page-intro {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-grey);
}

.contact-details .contact-card {
    background: var(--spca-navbar);
    padding: 1rem;
    height: 100%;
}

.contact-card h2 {
    color: var(--spca-primary);
    margin-bottom: 0.75rem;
}

.contact-card a {
    color: var(--spca-primary);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.contact-card a:hover {
    color: var(--spca-button);
    text-decoration: underline;
}

.contact-card-form {
    background: var(--spca-navbar);
    padding: 2rem;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    margin-top: 2rem;
}

.contact-card-form h2 {
    color: var(--spca-primary);
}

.contact-card-form p {
    color: var(--text-grey);
}

@media (min-width: 992px) {
    .row.align-items-stretch > [class*="col-lg-6"] {
        display: flex;
    }

    .contact-page-content,
    .contact-card-form{
        height: 100%;
    }
}

@media (max-width: 991.98px) {
    .contact-card-form {
        margin-top: 2rem;
    }
}