﻿
/* Info Bar */
.info-bar {
    width: 100%;
    background-color: #446027;
    color: #d3d8ce;
    font-size: 14px;
    font-weight: normal;
    display: flex;
    justify-content: center;
    align-items: center;
    /* gap: 40px; */
    flex-wrap: wrap;
    text-align: center;
}


section {
    margin-bottom: 20px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px;
    text-align: center;
    color: #fcfcfc;
    /* border-right: 1px solid #ccc; */
}

.info-item a {
    text-decoration: none;
    color: #fcfcfc;
}


.logo {
    font-size: 22px;
    font-weight: bold;
    padding-right: 28px;
}

.logo img {
    height: auto;
    max-height: 11vh;
    min-height: 9vh;
    width: auto;
}


/* .info-item:last-child { 
    border-right: none;
} */

.btnReserv {
    display: inline-block;
    background: #b4041d; /* Red */
    color: #ffffff;
    border: none;
    border-radius: 12px; /* round corners */
    padding: 15px 25px;
    font-size: 1.0em;
    font-weight: bold;
    cursor: pointer;
    
}

.btnReserv a {
    color: white;
    text-decoration: none;
}

.btnReserv a:hover {
    color: white;
}

/* Horizontal expanding layer */
.btnReserv::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 0;
    height: 100%;
    background: #446027; /* Dark Green */
    transform: translateX(-50%);
    transition: width 0.5s ease;
    z-index: -1;
    color: white;
}

/* Expand left & right from center */
.btnReserv:hover::before {
    width: 100%;
}



.hero {
    position: relative;
    width: 100%;
    height: 445px;
    overflow: hidden;
    box-shadow: 0px 8px 11px -6px rgba(7, 45, 100, 0.66);
}

/*.hero.home {
    height: 798px;
}*/

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

    .slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.lowerPic{
    object-position: 20% 28%;
}

.active {
    opacity: 1;
}

.slideTitle {
    font-size: 1.5em;
    font-weight: 700;
    padding-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-150%, -50%); /* start off-screen left */
    /*transform: translate(-50%, -50%);*/
    background: rgba(41, 73, 124, 0.6);
    color: #fff;
    padding: 20px 30px;
    border-radius: 8px;
    text-align: center;
    width: 88vw;
    font-size: 1.5em;
    transition: left 1s ease;
    opacity: 0;
    /*transition: none;*/
}

    .caption.show {
        /*left: 50%; */
        animation: flyInLeft 1.5s ease-out forwards;
    }

@keyframes flyInLeft {
    from {
        transform: translate(-150%, -50%);
        opacity: 0;
    }

    to {
        transform: translate(-50%, -50%); /* perfectly centered */
        opacity: 1;
    }
}

.caption .btn {
    display: inline-block;
    padding: 12px 28px;
    background-color: #c70850; /* Your preferred color */
    color: #fff;
    font-size: 0.8em;
    border-radius: 20px; /* Rounded corners */
    text-decoration: none; /* Remove underline */
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    z-index:999;
}

.still {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-150%, -50%); /* start off-screen left */
    /*transform: translate(-50%, -50%);*/
    background: rgba(41, 73, 124, 0.6);
    color: #fff;
    padding: 20px 30px;
    border-radius: 8px;
    text-align: center;
    width: 65vw;
    font-size: 1.5em;
    transition: left 1s ease;
    opacity: 0;
    /*transition: none;*/
}

.caption.still.show {
    left: 50%; 
}

.section-1 {
    /*background-color: #eff4ea;*/
    /*background: linear-gradient(180deg, #e6e6e1 31%, #f5f4f0 67%, rgb(189 199 179) 100%);*/
    background: linear-gradient(180deg, #e6e6e1 18%, #f5f4f0 45%, rgb(87 113 60 / 68%) 100%);
}

.section-4 {
    /*background-color: #eff4ea;*/
    /*background: linear-gradient(180deg, #e6e6e1 31%, #f5f4f0 67%, rgb(189 199 179) 100%);*/
    background: linear-gradient(180deg, rgb(87 113 60 / 24%), #f5f4f0 45%, rgb(87 113 60 / 68%) 100%);
}

.section-1, .section-2, .section-3 {
    padding: 20px 0 15px;
}


.feature-boxes {
    max-width: 1100px;
    margin: 0px auto;
    padding: 20px 0 15px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.topPad20 {
    padding-top: 20px;
}

.topPad50 {
    padding-top: 33px;
}
/*
.caption .btn a {
    color: white;
    text-decoration: none;
    cursor: pointer;
}*/
.redbarbottom {
    border-bottom: #c70850 solid 3px;
}

.red-bar {
    width: 80%;
    height: 3px;
    background-color: #c70850;
    margin: 0px auto 10px; /* keeps it centered */
/*    background-color: red;*/
    animation: expandFromCenter 2s ease forwards;
}

@keyframes expandFromCenter {
  from {
    width: 0%;
  }
  to {
    width: 90%;
  }
}

.red-bar40 {
    width: 40%;
    height: 3px;
    background-color: #c70850; /* red shade */
    margin: 0px auto 20px;
}

.heroDesc {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

main {
    color: #525252;
/*    padding: min(1em, 7%);*/
    text-align: center;
}

main p{
    margin-top: .35em;
}

.content-box {
    max-width: 1040px;
    margin: 0px auto;
    padding: min(1em, 7%);
}

.content-box p {
    margin-bottom: 1.5em;
    color: #0d3658f2;
    padding: 10px;
}

 .colorwhite p {
        color: white;
    }

.txtLeft {
    text-align: left;
}

.contentSection {
    background-color: #f8f8f8f2; /* change to any color you want */
    padding: 8px 0;
    width: 100%;
}
.secTitle, .secTitle2, .secTitle3 {
    font-size: 1.5em;
    padding-bottom: 5px;
    font-weight: 700;
    text-align: center;
}

.secTitle {
    color: white;
}

.secTitle2 {
    color: #446027;
}

.secTitle3 {
    color: #f5f4f0;
}

#eff4ea

.content-wrapper {
    max-width: 1100px; /* keeps your content centered like your site layout */
    margin: 0 auto;
    padding: 20px; /* small side padding for mobile */
    background-color: white;
}

.title2 {
    font-size: 1.5em;
    padding-bottom: 16px;
    font-weight: 700;
}

.section2 {
    max-width:1040px;
    margin:20px auto;
    text-align:center;
}

.pgTitle {
    color: #f5f4f0;
    font-size: 1.6em;
    padding: 20px 0 15px;
    font-weight: 700;
}

.pgTitle2 {
    color: #0d3658f2;
    font-size: 2em;
}

.pgTitle3 {
    margin-bottom: 10px;
    color: #2b4412;
    font-size: 2em;
}

.pgDesc {
    font-size: 1.2em;
    padding-bottom: 25px;
    color: beige;
    width: 88%;
    max-width: 1100px;
    margin: 0 auto;
}


/* Box Banner Triangle */
.box-banner {
    position: relative;
}

.box-banner::before {
    content: "";
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #104b7df2;
}

.box-bannerdown {
    background: #104b7df2;
    color: #fff;
    padding: 10px 15px;
    font-weight: 700;
    text-align: center;
    font-size: 1.3em;
    border-radius: 8px 0px;
}

.noPadding {
    padding: 0px;
}

.pTitleBold {
    font-weight: bold;
    font-size: 1.1em;
    color: #fcfcfc;
}


.two-col {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    margin: 40px 0;
}

.col-left {
    flex: 1; /* slightly wider */
    color: #153c1d;
}

.col-left a {
    color: #153c1d;
    text-decoration: none;
}

.col-left2 {
    flex: 0.5; /* slightly wider */
/*    color: #153c1d;*/
}

.col-left2 img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.col-left3 {
    flex: 1; /* slightly wider */
    /*    color: #153c1d;*/
}

.col-left3 img {
    min-width: 30%;
    width: auto;
    height: auto;
    display: block;
    border-radius: 8px;
}


.col-right2 {
    position: relative;
    background: #c9c9c9;
    padding: 10px;
    border-radius: 8px;
    flex: 1;
}

.col-right2 img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.col-right3 {
    position: relative;
    background: #c9c9c9;
    padding: 10px;
    border-radius: 8px;
    flex: 1;
}

.col-right3 img {
    max-width: 100%;
    min-width: 60%;
    width: auto;
    height: auto;
    border-radius: 8px;
}

.col-right iframe {
    min-width: 600px;
    width: auto;
    min-height: 450px;
    height: auto;
}

.section4 {
    color: #153c1d;
    font-weight: bold;
    font-size: 1.5em;
    padding-bottom: 20px;
}

.subTitle1 {
    color: #153c1d;
    font-weight: bold;
    font-size: 1.15em;
    padding-bottom: 5px;
}

.signature {
    font-family: "Style Script", cursive;
    font-weight: 400;
    font-style: italic;
    font-size: 1.5em;
}

.two-col-section {
    display: flex;
    align-items: stretch;
    gap: 20px;
    margin: 40px auto;
    width: 1100px;
    background-image: linear-gradient(to bottom, #ffffff 0%, #E8E8E8 100%);
}

.two-col-section2 {
    display: flex;
    align-items: stretch;
    gap: 20px;
    margin: 40px auto;
    min-width: 48%;
    max-width: 80vw;
    width: auto;
    background-image: linear-gradient(to bottom, #ffffff 0%, #E8E8E8 100%);
}

.col-left img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

/* FIXED CAPTION BOX */
.hero-caption {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    background: rgba(41, 73, 124, 0.6); /* background behind text */
    color: #fff;
    padding: 20px 25px;
    max-width: 80%;
    border-radius: 8px;
}

/* SLIDING ANIMATION */
@keyframes slideHero {
    0% {
        transform: translateX(0);
    }

    30% {
        transform: translateX(0);
    }

    33% {
        transform: translateX(-100%);
    }

    63% {
        transform: translateX(-100%);
    }

    66% {
        transform: translateX(-200%);
    }

    96% {
        transform: translateX(-200%);
    }

    100% {
        transform: translateX(0);
    }
}




/* ****** Footer ****** */
footer {
    background-color: #104b7d;
    padding: 15px 0;
    text-align: center;
    font-weight: 400;
    background-image: linear-gradient(to top, #ffffff 0%, #E8E8E8 100%);
    color: #264903;
}

.footer-cols {
    color: #b7b7b7;
    display: flex;
    align-items: flex-start;
    gap: 25px;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 40px 15px;
}

.footer-spah-logo {
    max-width: 288px;
    width: 100%;
    height: auto;
    margin-bottom: 15px;
}


footer h3 {
    color: #264903;
}

footer ul { 
    list-style: none; 
}

footer a {
    text-decoration: none;
    color: #264903;
}

footer a:hover { 
    color: white;
}

.footer-col {
    flex: 1;
    min-width: 220px;
}

.footer-col h3 {
    margin-bottom: 10px;
}

.footer-col p {
    color: #264903;
    line-height: 1.5;
    text-align: left;
}

.footer-2col {
    display: flex;
    align-items: flex-start; /* Vertically align content to the TOP */
    gap: 20px;
    text-align: left;
    margin-left: 60px;
}

.footer-2col-ul {
    flex: 1;
}

/* ******** Appointment Form ************* */
.emailForm {
    max-width: 80vw;
    margin: 10px auto;
    background-image: linear-gradient(to bottom, #ffffff 0%, #E8E8E8 100%);
    padding: 20px;
    border-radius: 20px; /* Increased for more rounded corners */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.form-container {
    max-width: 1000px;
    margin: auto;
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Two-column layout */
.form-row {
    display: flex;
    gap: 20px;
}

/* Columns */
.form-column {
    flex: 1;
}

    /* Section titles */
    .form-column h2 {
        margin-bottom: 15px;
        color: #c70850;
        border-bottom: 3px solid #c70850;
        padding-bottom: 5px;
    }

/* Inputs */
.form-group {
    margin-bottom: 15px;
}

    .form-group label {
        display: block;
        margin-bottom: 5px;
        font-weight: bold;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        padding: 10px;
        border: 1px solid #ccc;
        border-radius: 5px;
        font-size: 14px;
    }

/* Submit button */
.submit-btn {
    margin-top: 20px;
    text-align: center;
}

.submit-btn button {
    background: #c70850;
    color: #fff;
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    border-radius: 25px;
    cursor: pointer;
    transition: 0.3s;
}

.submit-btn button:hover {
    background: #a0063f;
}




.box-bannerdown {
    position: relative;
}

.box-bannerdown::before {
    content: "";
    position: absolute;
    bottom: -10px; /* move to bottom */
    left: 50%;
    transform: translateX(-50%);
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #104b7df2; /* triangle pointing down */
}

.box {
    flex: 1;
    min-width: 280px;
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
    background: #fff;
}

.box a {
    text-decoration: none;
}

.box-vaccin, .box-parasite, .box-diet, .box-allergy, .box-vomit, .box-arthritis, .box-Urin, .box-xray, .box-inhouse, .box-dental, .box-surg02, .box-surg03, .box-travel, .box-dphd, .box-endlife, .box-walkin, .box-doctor, .box-spah {
    height: 300px;
}

.box-vaccin {
    background: url('../images/SPAH/vaccination.jpg') center/cover no-repeat;
}

.box-parasite {
    background: url('../images/SPAH/parasite.jpg') center/cover no-repeat;
}

.box-diet {
    background: url('../images/SPAH/dogcatdiet.jpg') center/cover no-repeat;
}

.box-allergy {
    background: url('../images/SPAH/allergy.jpg') center/cover no-repeat;
}

.box-vomit {
    background: url('../images/SPAH/Vomitting.jpg') center/cover no-repeat;
}

.box-arthritis {
    background: url('../images/SPAH/arthritis.jpg') center/cover no-repeat;
}

.box-Urin {
    background: url('../images/SPAH/urinationproblems.jpg') center/cover no-repeat;
}

.box-xray {
    background: url('../images/SPAH/Dog-X-ray.jpg') center/cover no-repeat;
}

.box-inhouse {
    background: url('../images/SPAH/In-HouseTesting-2.jpg') center/cover no-repeat;
}

.box-dental {
    background: url('../images/SPAH/teetchcleaning.jpg') center/cover no-repeat;
}

.box-surg02 {
    background: url('../images/SPAH/surgery-2.jpg') center/cover no-repeat;
}

.box-surg03 {
    background: url('../images/SPAH/surgery-3.jpg') center/cover no-repeat;
}

.box-travel {
    background: url('../images/SPAH/Travel.jpg') center/cover no-repeat;
}

.box-dphd {
    background: url('../images/SPAH/DPHD_Building.jpg') center/cover no-repeat;
}

.box-endlife {
    background: url('../images/SPAH/End-of-LifeCare-1.jpg') center/cover no-repeat;
}

.box-walkin {
    background: url('../images/SPAH/home-Walk-in.jpg') center/cover no-repeat;
}

.box-doctor {
    background: url('../images/SPAH/wellness.jpg') center/cover no-repeat;
}

.box-spah {
    background: url('../images/SPAH/LocalOwn.jpg') center/cover no-repeat;
}

.boxlink {
    text-decoration: none;
}
.box-banner {
    background: #104b7df2;
    color: #fff;
    padding: 10px 15px;
    font-weight: 700;
    text-align: center;
    font-size: 1.1em;
}

.box-content {
    padding: 15px;
    text-align: center;
    /*font-size: 1.2em;*/
}

.box-content .title {
    font-size: 1.3em;
    font-weight: 700;
    color: #9c0b42;
    padding-bottom: 10px;
}

.box-content .title a {
    color: #9c0b42;
}

.box-content .price {
    padding-bottom: 10px;
}

.btn-reservation {
    text-align: center;
    margin: 40px 0;
}
    
.price .from {
    position: relative;
    bottom: 0.3em;
    color: #707172;
    font-style: italic;
}

.price .price {
    color: #9c0b42;
    font-size: 1.8em;
    padding-left: 5px;
    font-weight: 700;
}

.copyright-bar {
    font-size: 0.8em;
    width: 100%;
    background: #eaeaea;
    text-align: center;
    padding: 12px 0 20px;
    font-size: 14px;
    color: #555;
    margin: 0 auto;
}

.copyright-bar span{
    width: 100%;
    padding-bottom: 10px;
}

/* ********* facility bullets ************ */
.nice-bullets {
    list-style: none;
    padding-left: 0;
}

.nice-bullets li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 12px;
    font-size: 17px;
    line-height: 1.5;
}

.nice-bullets li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: #c70850; /* your red brand color */
    font-weight: bold;
    font-size: 18px;
}

/* ******* Price Rates ****** */
.price-container {
    display: flex;
    gap: 20px;
    margin: 0 auto;
    width: 95%;
}

.price-box {
    flex: 1;
/*    background: #f7f7f7;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;*/
}

.priceTbl {
    width: 100%;
    padding-bottom: 10px;
}

.priceTbd td {
    background-color: #f5f4f0;
    color: #3d3939;
    border-color: #ffffff;
    padding: 0.8em;
    text-align: left;
    font-size: 0.9em
}

.box-title {
    background: #c70850;
    color: #fff;
    padding: 10px;
    margin: -20px -20px 20px -20px;
    border-radius: 10px 10px 0 0;
    text-align: center;
    font-size: 1.0em;
}

.price-list {
    display: grid;
    grid-template-columns: 1fr auto;
    row-gap: 12px;
    column-gap: 20px;
}

.item {
    font-size: 16px;
}

.price {
    font-weight: bold;
    font-size: 16px;
    text-align: right;
}

.pricing-wrapper {
    display: flex;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

/* Each column box */
.plan-box {
    flex: 1;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
}

/* Header title */
.plan-header {
    background: #c70850;
    color: #fff;
    padding: 12px 16px;
    font-weight: 600;
    font-size: 18px;
}

/* Price list table-style */
.price-list {
    border-top: 1px solid #ddd;
}

/* Each row is 2-column with grid lines */
.price-list .row {
    display: grid;
    grid-template-columns: 1fr auto;
    padding: 10px 16px;
    border-bottom: 1px solid #ddd;
}

.price-list .row span:last-child {
    text-align: right;
    white-space: nowrap;
}


/* Staff */
/* Featured Doctors Row */
.featured-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 20px auto 50px;
    padding: 0 20px;
}

.featured {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    position: relative;
    margin: 0 auto;
    max-width: 530px;
}

.featured::before {
    content: "🩺";
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 24px;
    background: #fff;
    padding: 5px 10px;
    border-radius: 50%;
}

.featured img {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #eaf4f3;
    margin-bottom: 15px;
}

.featured-name {
    font-size: 20px;
    font-weight: 600;
}

.featured-title {
    color: #5d9c99;
    margin: 6px 0;
}

.featured-desc {
    font-size: 14px;
    color: #777;
}

/* Staff Grid */
.team-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 25px;
    padding: 20px 60px 80px;
    max-width: 1100px;
    margin: auto;
}

.team-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    transition: 0.3s;
    margin: 0 auto;
}

    .team-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 12px 28px rgba(0,0,0,0.1);
    }

    .team-card img {
        width: 250px;
        height:250px;
        border-radius: 50%;
        object-fit: cover;
        margin-bottom: 10px;
    }

.team-name {
    font-weight: 600;
}

.team-title {
    font-size: 14px;
    color: #7f8c8d;
}

.partnerSection {
    display: flex;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
    padding-top: 20px;
}

.dphd-partner-logo {
    max-width: 218px;
    width: 100%;
    height: auto;
}

.hills-partner-logo {
    max-width: 218px;
    width: 100%;
    height: auto;
}

.lcAnimal-partner-logo {
    max-width: 218px;
    width: 100%;
    height: auto;
}


/* Footer */

footer {
    text-align: center;
    padding: 20px;
    font-size: 13px;
    color: #aaa;
}

footer nav ul {
    justify-content: center;
}


.fcol01, .fcol02, .fcol03 {
    min-height: 18vh;
    height: auto;
}

.fcol03 p{
    padding-left: 50px;
}


/* ************** MOBILE ************* */

@media screen and (min-width: 1025px) {
    .logo img {
        max-height: 11vh;
        min-height: 9vh;
    }
}

@media (max-width: 1040px) {
    .info-bar {
        gap: 5px;
        padding-bottom: 2px;
    }

    .info-item {
        padding: 0px 6px;
    }
}

@media (max-width: 1025px) {
    .logo img {
        max-height: 11vh;
        min-height: 7vh;
    }

    .two-col-section2 {
        min-width: 48%;
        max-width: 85vw;
    }
}

@media (max-width: 855px){
    .logo img {
        max-height: 11vh;
        min-height: 5vh;
    }

    .footer-col {
        flex: auto;
    }

    .fcol01, .fcol02, .fcol03 {
        min-height: 10vh;
    }

    .fcol02, .fcol03 {
        width: 40%;
        float: left;
        height: auto;
    }

    .fcol03 p {
        padding-left: 40px;
    }
}

@media (max-width: 768px) {

    .slideTitle {
        font-size: 1.2em;
        padding-bottom: 15px;
    }

    .two-col-section {
        flex-direction: column;
    }

    .two-col-section2 {
        flex-direction: column;
    }

    .two-col-section2 {
        min-width: 48%;
        max-width: 75vw;
    }

    .col-left2 {
        order: 1;
    }

    .col-right2 {
        order: 0;
    }

    .col-right:after {
        display: none; /* hide triangle on small screens */
    }

    .two-col-section {
        width: auto;
    }

    .footer-col {
        flex: auto;
    }

    .fcol02, .fcol03 {
        width: 40%;
        float: left;
        height: auto;
    }

    .fcol03 p{
        padding-left:40px;
    }

    .form-row {
        flex-direction: column;
    }
}

@media (max-width: 720px) {
    .logo img {
        max-height: 11vh;
        min-height: 6vh;
    }

    .hero {
        height: 300px;
    }

    .hero-slide img {
        height: 320px;
    }

    .hero-caption {
        left: 5%;
        right: 5%;
        max-width: none;
    }

    .slideTitle {
        font-size: 1.3em;
    }

    .caption {
        font-size: 1.3em;
        width: 95vw;
    }

    .dphd-partner-logo {
        max-width: 218px;
        width: 78%;
    }

    .hills-partner-logo {
        max-width: 200px;
        width: 86%;
    }

    .lcAnimal-partner-logo {
        max-width: 218px;
        width: 72%;
    }

    .price-container {
        flex-direction: column;
    }

    .pricing-wrapper {
        flex-direction: column;
    }

    .footer-2col {
        flex-direction: column;
        display: flex;
        align-items: center;
        gap: 0;
        text-align: center;
        margin-left: unset;
    }

    .two-col {
        flex-direction: column;
    }

    .team-container {
        padding: 20px 20px 80px;
    }
}

@media (max-width: 668px) {
    .logo img {
        max-height: 11vh;
        min-height: 6vh;
    }
}

@media (max-width: 600px) {


    .info-bar {
        flex-direction: initial;
        gap: 0px;
        padding: 6px;
    }

    .team-container {
        padding: 20px;
    }
}

@media (max-width: 580px) {
    .footer-2col {
        margin-left: 0px;
    }
}

@media (max-width: 550px) {
    .logo img {
        max-height: 11vh;
        min-height: 5.5vh;
    }

    .pgTitle {
        font-size: 1.5em;
        width: 75%;
        margin: 0 auto;
    }

    .pgDesc {
        font-size: 1.2em;
        padding-bottom: 0px;
    }

    .slideTitle {
        font-size: 1.2em;
    }

    .caption {
        font-size: 1.2em;
    }

    .pgDesc {
        /*font-size: 1.2em;*/
        width: 85%;
    }

    .topPad50 {
        padding-top: 28px;
    }

    .secTitle2 {
        padding-bottom: 0px;
    }

    .two-col-section2 {
        min-width: 48%;
        max-width: 90vw;
    }
}

@media (max-width: 440px) {

    .logo img {
        max-height: 11vh;
        min-height: 5.5vh;
    }

    .slideTitle {
        padding-bottom: 5px;
    }

    .section-1, .section-2, .section-3 {
        padding: 10px 0 5px;
    }

    .secTitle, .secTitle2, .secTitle3 {
        font-size: 1.2em;
    }

    .box-banner {
        font-size: 1.0em;
    }

    .box-content {
        font-size: 0.9em;
    }

    .feature-boxes {
        padding: 15px 10px 15px;
        display: flex;
        gap: 20px;
        flex-wrap: wrap;
    }

    .featured img, .team-card img {
        width: 88%;
        height: auto;
    }

    .fcol03 p {
        padding-left: 0;
    }

    .info-item {
        padding: 0px 4px;
    }

    .footer-spah-logo {
        max-width: 218px;
    }

    .footer-col p {
        text-align: center;
    }

    .footer-cols {
        color: #b7b7b7;
        display: flex;
        align-items: flex-start;
        gap: 25px;
        justify-content: space-between;
        flex-wrap: wrap;
        padding: 0px;
    }
}

@media (max-width: 390px) {
    .logo img {
        max-height: 8vh;
        min-height: 5.5vh;
    }

    section {
         margin-bottom: 0px; 
    }
}



