@import url('https://fonts.googleapis.com/css2?family=Titan+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');

/*Common CSS*/

@media (min-width: 1200px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl {
        max-width: 1170px !important;
    }
}


h1, h2, h4, h5, h6 {
    font-family: "Titan one";
    line-height: 1.1em;
    margin-bottom: 20px;
}

h3, p, span {
    font-family: "Manrope";
    font-size: 15px;
    font-weight: 400;
    word-wrap: break-word;
}

.strong-15 {
    font-family: "Titan One";
    font-size: 15px;
}

.h3-titan-one {
    font-family: "Titan One" !important;
}

h1 {
    font-size: 42px;
}

@media (max-width: 640px) {
    h1, h2 {
        font-size: 30px !important;
    }

    p {
        font-size: 14px !important;
    }
}

/*a {*/
/*    text-decoration: none;*/
/*    color: #3b4db3;*/
/*}*/

/*a:hover {*/
/*    color: #2a388a;*/
/*}*/

.bg-light {
    background: white !important;
}

.bg-dark {
    background: black !important;
}

.bg-primary {
    background: #1B73B8 !important;
}

.bg-purple {
    background: #3b4fb4 !important;
}

.bg-grey {
    background: #E6E6FA;
}

.bg-blue-grey {
    background: #e0eaf2;
}

.bg-orange {
    background: #F9A088;
}

.btn {
    padding: 10px 38px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    font-family: Manrope;
}

.btn-primary {
    color: white;
    background: #1b73b8;
    border-color: #ffffff00;
}

.btn-primary:hover {
    background: #1b73b8;
    border: none;
}

.btn-purple {
    background-color: #3b4fb4;
    color: #fff;
}

.btn-dark {
    background: black;
    color: white;
}

.text-black {
    color: black !important;
}

.text-grey {
    color: #7A7A7A !important;
}

.text-dark {
    color: black !important;
}

.text-primary {
    color: #1b73b8 !important;
}

.text-purple {
    color: #3b4fb4 !important;
}

/*.text-purple:hover, .text-purple:visited {*/
/*    color: #336 !important;*/
/*}*/

.text-42 {
    font-size: 42px !important;
}

.font-8 {
    font-weight: 800;
}

.text-60 {
    font-size: 60px !important;
}

.text-28 {
    font-size: 28px !important;
}

.text-23 {
    font-size: 23px !important;
}

.text-24 {
    font-size: 24px !important;
}

.text-34 {
    font-size: 34px !important;
}

@media (max-width: 640px) {
    .text-42 {
        font-size: 30px !important;
    }
}

/*Font Weights Classes*/

.fw-lighter {
    font-weight: lighter !important;
}

.fw-100 {
    font-weight: 100 !important;
}

.fw-200 {
    font-weight: 200 !important;
}

.fw-300 {
    font-weight: 300 !important;
}

.fw-400 {
    font-weight: 400 !important;
}

.fw-500 {
    font-weight: 500 !important;
}

.fw-600 {
    font-weight: 600 !important;
}

.fw-700 {
    font-weight: 700 !important;
}

.fw-800 {
    font-weight: 800 !important;
}

.fw-900 {
    font-weight: 900 !important;
}

.fw-bold {
    font-weight: bold !important;
}

.fw-bolder {
    font-weight: bolder !important;
}

/*Extra Common CSS*/
.fill-available-space {
    width: -webkit-fill-available;
    object-fit: cover;
}

.rounded-20 {
    border-radius: 20px;
}

.simple-link {
    a {
        color: inherit;
        text-decoration: unset;
    }
}

a.btn,
button.btn {
    transition: transform 0.2s ease-in-out,
    color 0.3s ease-in-out;
}

a.btn:hover,
button.btn:hover {
    transform: scale(1.07);
    color: white !important;
}

.header-fix {
    margin-top: -80px;
}

/* Master Layout */

.scroll-progress {
    position: fixed;
    top: 0;
    height: 5px;
    width: 0%;
    background-color: #1b73b8;
    z-index: 100;
    transition: width 0.25s ease;
}

/*HEADER*/
.navbar {
    padding: 0px !important;
    justify-content: left;
}

.navbar-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

@media (max-width: 640px) {
    .navbar-nav {
        text-align: start;
        /*margin-left: 35% !important;*/
        margin-bottom: 10px !important;
        /*width: max-content !important;*/
        width: 100% !important;
    }
}

.navbar-nav > li {
    padding: 4px 0;
}

.nav-link {
    color: black !important;
}

.nav-link:focus,
.nav-link:hover, .nav-link:active, .nav-link.active {
    color: #3B4FB4 !important;
}

.dropdown-item {
    padding: 11px 12px !important;
    margin-top: 2px;
    margin-bottom: 2px;
    font-weight: 400;
}

.nav-item.dropdown {
    position: relative;
}

@media (max-width: 640px) {
    .dropdown-item {
        color: #161616;
    }
}

@media (min-width: 992px) {
    .nav-item.dropdown:hover .dropdown-menu {
        display: block;
    }
}

.dropdown-item.active, .dropdown-item:active {
    background: #3b4fb4 !important;
    border-radius: 50px;
    color: white !important;
}

.dropdown-item:hover {
    background: #3b4fb4;
    border-radius: 50px;
    color: white;
}

.dropdown:hover .dropdown-menu, .dropdown-menu.show {
    border-radius: 0px 0px 30px 30px !important;
    border: none !important;
    padding: 35px 12px 10px 12px !important;
    margin-bottom: 5px !important;
    top: 100%;
    left: 0;
    margin-top: 0;
    transform: none;
}


.dropdown:hover .dropdown-menu {
    margin-left: -20px !important;
}

.dropdown-menu.show {
    margin-left: -20px !important;
}

@media (max-width: 640px) {
    .dropdown:hover .dropdown-menu, .dropdown-menu.show {
        padding: unset !important;
        margin-left: -12px !important;
        margin-bottom: unset !important;
        margin-top: 5px;
        text-align: start;
    }

}

.text-manrope {
    font-family: "Manrope";
}

.header-top {
    padding: 10px 0px 50px 0px !important;
    /*z-index: 0;*/
    position: relative;
    background: black !important;

    span {
        font-size: 14px;
        font-weight: 500;
    }
}

.header-logo {
    padding-bottom: 12px;
    padding-top: 4px;
}

.row-head {
    justify-content: center;
    margin: auto;
}

/*Header Bottom*/
.header-bottom {
    background: white !important;
    border-radius: 20px;
    position: absolute;
    z-index: 99;
    top: -40px;
    padding: 0px 25px;
    align-items: center;

    .navbar-toggler {
        border: none;
    }

    .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(59, 79, 180, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
    }

    .row {
        align-items: center;
    }

    button {
        font-weight: 700 !important;
    }

    a {
        padding: unset;
        font-size: 15px;
        font-weight: 500;
    }

    .nav-link:hover {
        color: #3b4fb4 !important;
    }

    .dropdown-toggle::after {
        display: none !important;
    }
}

.overlay-footer {
    padding-top: 100px;
}

.footer-top-overlay {
    bottom: 0px !important;
}

.custom-h3-heading {
    font-family: "Manrope";
    font-size: 15px !important;
    font-weight: lighter;
    color: #1B73B8;
}

.text-14 {
    font-size: 14px !important;
}

.text-15 {
    font-size: 15px !important;
}

.text-12 {
    font-size: 12px !important;
}


/*FOOTER*/
.footer-main {
    background-color: #191e35; /* Dark gray background */
    color: #fff;
    padding: 20px 0;

    a:link {
        color: #ffffff;
        background-color: transparent;
        text-decoration: none;
        font-size: 18px !important;
    }


    span.footer-list {
        font: 15px "Manrope" !important;
    }

    .footer-list-bold {
        font-weight: 700 !important;
    }

    .list-group-item {
        position: relative;
        display: block;
        padding: 0 0 10px;
        color: #ffffff;
        text-decoration: none;
        background-color: #191e35 !important;
        border: none !important;
    }

    .footer-bottom {
        font-family: "Manrope" !important;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
        margin-top: 0px;
        padding-top: 25px;
        font-size: 13px;
        text-align: center;
    }

    .footer-sitelogo {
        padding: 0px !important;
        margin-bottom: 20px !important;
    }

    .footer-contact-details {
        margin-bottom: 0px !important;
    }

    .useful-links, .quick-links, .fun-photos {
        font: 24px "Titan one" !important;
        margin-bottom: 20px;
        padding: 0px !important;
    }

    .fun-photos {
        width: -webkit-fill-available;
        height: auto;
        object-fit: cover;
        margin: 5px;
        border-radius: 15px;
    }

    .gallery-section {
        padding-top: 20px !important;
        padding-left: 10px !important;
        /*row-gap: 1rem;*/
        gap: 12px;
        padding-bottom: 10px;
    }

    .first-gallery {
        height: 55px;
    }

    .load-more-btn {
        background-color: #3b4fb4;
        border: none;
        padding: 8px 40px;
        color: white;
        border-radius: 10px;
        margin-top: 10px;
        align-items: center;
        font-weight: 600;
        font-size: 15px !important;
    }

    @media (max-width: 640px) {
        .fun-photos img {
            width: 70px !important;
            height: auto;
            object-fit: cover;
            margin: 5px;
            border-radius: 15px;
        }

        .gallery-div {
            min-width: 70px;
            margin: 0px;
            padding: 5px;
        }

        .gallery-section {
            column-gap: 1rem;
        }
    }

    .footer-div {
        width: 1250px !important;
        /*width: 1170px!important;*/
    }

    .footer-logo {
        width: 50% !important;
    }

    .quick-links-li, .useful-links-li {
        color: white;
    }

    .footer-gallery-image {
        border-radius: 10px !important;
        max-width: 65px;
        object-fit: cover;
        height: 65px;
    }

    .call-icon, .mail-icon {
        font-size: 20px !important;
    }

    .social-circle {
        display: inline-block;
        background-color: #3b4fb4 !important;
        color: white;
        width: 35px;
        height: 35px;
        border-radius: 50%;
        text-align: center;
        line-height: 35px;
        margin: 0 5px;
        font-size: 15px;
        transition: background 0.4s ease-in-out,
        color 0.4s ease-in-out;
        text-decoration: none;
    }

    .social-circle:hover {
        background-color: white !important;
        color: #3b4fb4 !important;
    }

    .footer-content {
        margin: 48px 48px 48px 48px;
    }

    a.inside-quick-link, a.inside-useful-link:hover {
        color: whitesmoke !important;
    }

    /*css for set footer content in center*/
    @media (max-width: 640px) {
        .footer-gallery-image {
            max-width: 160px !important;
            height: 140px !important;
        }

        .footer-contact-details,
        .elementor-social-icons-wrapper,
        .quick-links,
        .useful-links,
        .fun-photos,
        .footer-gallery-image {
            text-align: center !important;
        }

        .custom-margin {
            margin-left: 0 !important; /* remove margin on mobile */
        }

        .footer-sitelogo {
            justify-content: center;
            display: flex;
            text-align: center;
        }
    }

    .footer-useful-links-center, .footer-quicklinks-center ul.list-group {
        text-align: center;
    }
}

/*Homepage*/

/*Section-1*/
.black-bull-dog {
    width: -webkit-fill-available;
}

.first-section {
    background: #1B73B8;
    padding-top: 70px;
    padding-left: 0px;
    padding-right: 0px;
    position: relative;

    .bold-heading {
        font-family: "Titan one";
        font-size: 43px;
    }

    .extra-bold-heading {
        font-size: 51px;
        line-height: 56px;
        font-family: "Titan one";
    }

    .btn-dark {
        padding: 14px 38px !important;
        font-weight: 700;
    }

    @media (max-width: 640px) {
        .btn-dark {
            margin-bottom: 20px !important;
        }
    }

    .image-hero-section {
        border: white 8px solid;
        border-radius: 20px;
        max-width: 245px;
        padding: 0px;
        margin-right: 45px;
        margin-top: 17px;
    }

    .play-button {
        right: 47%;
        top: 50px;
        padding: 15px 24px;
        color: #3b4fb4;
        position: absolute;
        font-size: x-large;
    }

    @media (max-width: 640px) {

        .image-hero-section {
            margin-right: unset;
            max-width: -webkit-fill-available;
            margin-left: 15px;
            margin-right: 15px;
        }

        .play-button {
            left: 0%;
            top: 30% !important;
            right: unset;
        }
    }

}

.pulse {
    animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
    0% {
        box-shadow: 0 0 0 0px rgba(59, 79, 180, 0.6);
    }
    100% {
        box-shadow: 0 0 0 20px rgba(59, 79, 180, 0);
    }
}

.overlay-hero-section {
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
}


/*{{--    Section-2--}}*/
.second-section {
    color: black;

    h3 {
        font-size: 20px;
    }

    p {
        font-size: 15px;
    }

    .common-box {
        background-color: #FFFFFF;
        text-align: left;
        padding: 30px 20px;
        border-style: solid;
        border-width: 0px;
        border-radius: 20px;
    }

    /*Box Animation*/

    .common-box {
        transition: transform 0.4s ease-in-out,
        background-color 0.4s ease-in-out,
        box-shadow 0.4s ease-in-out,
        color 0.4s ease-in-out;

        i {
            transition: color 0.4s ease-in-out;
        }
    }

    .common-box:hover {
        transform: translateY(-5%);
        background-color: #1b73b8;
        box-shadow: none;
        color: white;
    }

    .common-box:hover i {
        color: white;
    }


    .box-icon-size {
        font-size: 40px;
        color: #1B73B8;
    }

    .box2 {
        background-color: #1B73B8;
        color: white;
        margin-bottom: 20px;

        i {
            color: white;
        }
    }

    @media (max-width: 640px) {
        .box2 {
            margin-top: 20px !important;
        }
    }

    .box-row {
        padding-top: 100px;
        padding-bottom: 60px;
        align-items: end;
    }

    .small-image {
        object-fit: cover;
        object-position: center center;
        border-radius: 20px 20px 20px 20px;
        max-width: -webkit-fill-available;
    }

    .long-image {
        height: 427px;
        object-fit: cover;
        object-position: center center;
        border-radius: 20px 20px 20px 20px;
        max-width: -webkit-fill-available;
        align-self: center;
    }

    .custom-button {
        padding: 10px 38px;
        border-radius: 50px;
        color: #fff;
        font-weight: 700;
        font-size: 15px;
        background-color: #3b4fb4;
    }


    .custom-link {
        text-decoration: none;
        font-weight: bold;
        color: #3b4fb4;
    }

    .box-row-2 {
        padding-bottom: 60px;
    }

    .dog-image {
        height: 70vh;
        width: -webkit-fill-available;
        object-fit: cover;
        object-position: center center;
        border-radius: 20px 20px 20px 20px;
    }

    @media (max-width: 640px) {
        .dog-image {
            height: 40vh !important;
        }
    }

    .dog-collage {
        width: -webkit-fill-available;
        object-fit: cover;
        object-position: center center;
        border-radius: 20px 20px 20px 20px;
    }
}


/*{{--    Section-3--}}*/

.third-section {
    .big-paragraph {
        font-weight: 400;
        font-size: 20px !important;
        padding: 0px 25%;
    }

    h3 {
        font-family: "Titan one" !important;
        font-size: 24px;
        color: black;
        font-weight: 100;
    }

    .third-section-row {
        z-index: 1;
        margin-bottom: -150px;
    }

    @media (max-width: 640px) {
        .big-paragraph {
            padding: 0px 0px;
        }
    }
}

.overlay {
    max-width: 100% !important;
}

/*high-quality-french bulldog-section*/

.high-quality-bulldog-bottom-blue-border {
    margin-top: -150px;
}

.high-quality-bulldog-dynamic-section {
    width: 366px;
    text-align: left;
    background-color: #FFFFFF;
    margin: 15px 10px 25px 10px;
    padding: 0px 40px 30px 40px;
    border-radius: 20px 20px 20px 20px;
    box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.1);
}

.high-quality-frenchbullgog-fst-row {
    margin: 20px 0px;
}

.high-quality-frenchbulldog-img2 {
    height: 255px;
    object-fit: cover;
}


/*why choose us section */

.why-choose-us-img2, .why-choose-us-img1 {
    border-radius: 30px !important;
}

.why-choose-us-left-content {
    padding-right: 60px;
}

@media (max-width: 640px) {
    .why-choose-us-left-content {
        padding-right: 0px !important;
    }
}

.why-choose-us-right-content {
    align-content: center;
    align-items: center;
}

.why-choose-us-img1 {
    height: 460px;
    object-fit: cover;
    object-position: center center;
}

.why-choose-us-img2 {
    height: 430px;
    object-fit: cover;
    object-position: center center;
    border-radius: 20px 20px 20px 20px;
}

.why-choose-us-main-heading {
    font-size: 42px;
    font-weight: 400;
    line-height: 46px;
    margin-bottom: 20px;
}

.why-choose-us-paragraph {
    color: #494949;
    margin: 0px 0px 34px 0px;
}

.why-us-btn-container {
    margin: 60px 0px;
}

.why-choose-us-btn {
    padding: 13px 38px;
}

@media (max-width: 640px) {
    .why-choose-us-img2 {
        height: auto;
        max-width: -webkit-fill-available;
    }

    .why-choose-us-contactus-btn {
        margin-bottom: 10px !important;
    }
}

.why-choose-us-1st-features, .why-choose-us-2nd-features, .why-choose-us-3rd-features {
    padding: 20px 20px 20px 0px;
}

.features-heading {
    font-family: "Titan one" !important;
    font-size: 21px;
    color: #0c0d0e;
    font-weight: 100;
    margin: 0px 0px 10px 0px;
}


/*testimonials section*/
@media (max-width: 640px) {
    .testimonial-container {
        padding-bottom: 10px !important;
    }
}

.testimonial-section {
    width: 366px;
    text-align: left;
    background-color: #FFFFFF;
    margin: 15px 10px 25px 10px;
    padding: 0px 40px 30px 40px;
    border-radius: 20px 20px 20px 20px;
    box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.1);
}

.testimonial-shadow {
    width: -webkit-fill-available;
    border-radius: 20px;
    box-shadow: 0px 5px 10px 0px rgb(0 0 0 / 10%)
}

.call-to-action-paragraph {
    font-size: 15px !important;
    font-weight: 400 !important;
    line-height: 23px !important;
    color: white;
    margin-bottom: 14px;
}

.call-to-action-section {
    background-color: #1b73b8;
}

.blog-article-div {
    align-content: center !important;
}

.CTA-call-btn, .CTA-mail-btn {
    padding: 15px 36px;
    background-color: #000000 !important;
    font-weight: 700;
    font-size: 15px;
    border-radius: 30px;
}

.blog-heading {
    font-size: 15px;
    font-weight: 100;
    line-height: 23px;
    color: rgb(27, 115, 184);
}

.latest-blog {
    font-size: 42px;
    font-weight: 400;
    line-height: 46px;
}

.article-section {
    padding-bottom: 40px;
}

@media (max-width: 640px) {
    .article-section {
        padding-bottom: 20px !important;
    }
}

.article-image {
    width: -webkit-fill-available;
    height: 240px;
    border-radius: 20px;
    object-fit: cover;
}

.article-image-heading {
    background-color: white;
    position: absolute !important;
    /*bottom: 175px;*/
    left: 0px;
    top: 195px;
    font-size: 11px;
    font-weight: 600;
    padding: 8px 15px;
    border-radius: 74px;
    margin: 0px 0px 10px 10px;
}

.article-headings {
    line-height: 24px;
    color: #0c0d0e;
    font-family: "titan one" !important;
    font-weight: 500;
    font-size: 22px;
    padding-top: 18px;
    margin-bottom: 10px;
}

.blog-card > a {
    text-decoration: none !important;
}

.article-paragraph {
    line-height: 23px;
    color: #393939;
    font-weight: 400;
}

@media (max-width: 640px) {
    .article-paragraph {
        margin: 0px 0px 5px 0px !important;
    }
}

.article-read-more-button {
    margin-top: 24px;
    color: #3b4fb4;
    text-decoration: none;
}

/*section our-new-french-bulldog-puppies  */
.our-new-french-bulldog-puppies {
    background-color: #1b73b8 !important;
    padding: 0 !important;
}

.bull-dog3 {
    width: -webkit-fill-available;
    border-radius: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

@media (max-width: 640px) {
    .bull-dog3 {
        height: 350px;
    }
}

.blog-article-btn {
    color: white !important;
    background-color: #1b73b8 !important;
    padding: 15px 38px !important;
    border-radius: 30px !important;
}


/*our-new-french-bulldog*/

.section3-our-new-french-bulldog {
    padding: 0px 0px 0px 60px;
}

@media (max-width: 640px) {
    .section3-our-new-french-bulldog {
        padding: 0px !important;
    }
}

/*Map Section*/

.map-heading {
    font-weight: 700;
    font-size: 42px;
    line-height: 1;
}

.map-image {
    width: 100%;
    height: auto;
}

.map-content {
    font-family: "Manrope" !important;
    font-size: 15px;
    line-height: 1.5;
    color: #7A7A7A;
}

/*Articles Page*/

.img-cover {
    object-fit: cover;
    height: 100%;
    width: 100%;
    border-radius: 20px;
}

.articles-image-div {
    height: 240px;
}

.search-box {
    margin-left: 44px;
    margin-right: 80px;
}

.post-heading, .search-box-heading {
    font-size: 21px;
}

#blue-box {
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border: none;
}

.second-recent-post-links {
    padding-bottom: 20px;
}

.arrow-links {
    font-size: 20px;
    color: #3b4fb4;
}

.articles-post-heading {
    font-size: 22px;
    font-weight: 500;
    font-family: "titan One";
    color: black;
}

.read-more-purple {
    color: #3b4fb4;
    font-weight: 700;
    padding-left: 0px;
}

.read-more-purple:hover,
.read-more-purple:focus,
.read-more-purple:active {
    color: #3b4fb4 !important;
    transform: none;
}

.date-list > span {
    color: grey;
    font-size: 13px !important;

    i {
        color: grey;
        font-size: 13px !important;
    }
}

.all-article-btn {
    padding: 10px 38px;
    border-radius: 50px;
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    background-color: #3b4fb4;
}

.next-article-btn, .previous-article-btn {
    padding: 18px 35px;
    border-radius: 50px;
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    background-color: #3b4fb4;
}

/*About-Us*/

.about-page {
    h3 {
        font-family: "Manrope" !important;
        font-size: 15px;
        color: #7a7a7a;
        margin-bottom: 10px;
        font-weight: 100;
        line-height: 23px;
    }

    h2 {
        font-family: "Titan one" !important;
        font-size: 42px;
        font-weight: 400 !important;
        line-height: 46px;
    }

    p {
        font-family: "Manrope" !important;
        font-size: 15px;
        font-weight: 400;
        line-height: 23px;
        color: #7a7a7a;
    }
}

.our-focus-img2 {
    height: 470px;
}

.dog-quality-number {
    width: 80px;
    height: 80px;
    background-color: #3b4fb4 !important;
}


.asset-connector-img1 {
    position: absolute !important;
    width: 27%;
    top: 40px;
    left: 223px;
}

.asset-connector-img2 {
    position: absolute !important;
    width: 27%;
    top: 9px;
    left: 614px;
}

.fst-quality, .second-quality, .third-quality {
    font-family: "titan One" !important;
    font-size: 20px;
    font-weight: 100;
}


/*testimonial-section on about-us page  */

.more-testimonial-btn {
    padding: 14px 32px;
    font-weight: 700 !important;
    border-radius: 30px;
}

.testimonial-sub-heading {
    font-family: "Manrope" !important;
    font-size: 15px;
    color: #1b73b8;
    margin-bottom: 10px;
    font-weight: 100;
}

.testimonial-main-heading {
    font-family: "titan one" !important;
    font-size: 42px;
    font-weight: 400;
    line-height: 46px;
    margin-bottom: 20px;
}

.testimonial-paragraph {
    font-family: "Manrope" !important;
    font-weight: 400;
    color: #494949;
}

/*Fun Photos*/

.fun-photos-first-sec-image-1 {
    width: -webkit-fill-available;
    object-fit: cover;
}

.fun-photos-first-sec-image-2 {
    width: -webkit-fill-available;
    object-fit: cover;
    height: 315px;
}

.fun-photos-blue-card {
    h3 {
        font-family: 'Manrope';
        font-size: 24px;
        font-weight: lighter;
    }

    ul {
        list-style: none;
        padding: unset;
    }

    span {
        font-family: 'Manrope';
        font-size: 15px;
        font-weight: 400;
    }

    i {
        font-size: 15px;
    }
}

.fun-photos-gallery {
    width: -webkit-fill-available;
    height: 100%;
    object-fit: cover;
}

/* Important Updates*/
.imp-updates-img1 {
    height: 400px;
}

@media (max-width: 640px) {
    .imp-updates-img1 {
        height: auto;
    }

    .fun-photos-gallery {
        width: 100vw;
        height: auto;
    }
}

.imp-updates-img2 {
    height: 552px;
}

.imp-updates-img3 {
    height: 363px;
    border-radius: 20px;
}

.imp-updates-heading {
    font-size: 42px;
    line-height: 46px;
    font-weight: 400 !important;
    margin-bottom: 20px;
}


/* Puppies for sale*/

.custom-h3 {
    font-family: "Titan one";
    font-size: 22px;
}

.box-image {
    transition: transform 0.3s ease-in-out;
    object-fit: cover;
    height: 250px;
}

.box-image:hover {
    transform: scale(0.95);
}


/* Meet our frenchies*/

.meet-our-frenchies-img1 {
    height: 520px;
    object-fit: cover;
    object-position: center center;
    border-radius: 20px;
}

.meet-our-frenchies-img2, .meet-our-frenchies-img3 {
    border-radius: 20px;
}

.play-button-frenchies {
    position: absolute;
    font-size: x-large;
    right: 5px;
    top: 400px;
    padding: 33px 33px;
    color: white;
    background-color: #3b4fb4;
}

@media (max-width: 640px) {
    .play-button-frenchies {
        left: 80%;
        top: 85% !important;
        right: unset;
    }
}

.circle {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    border: 10px solid white;
}

.purple {
    background: #3b4fb4;
}


/*blue haven males*/

.male-div {
    border-radius: 20px;
}

.bluehaven-male-links-heading {
    margin-bottom: 15px;

    a {
        font-weight: 400;
    }
}

.bluehaven-male-links {
    font-size: 20px;
    color: white;
    text-decoration: none;
}

.bluehaven-male-links:hover {
    color: white;
}

.btn-purple-custom {
    padding: 15px 40px;
    border-radius: 50px;
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    background-color: #3b4fb4;
}

.why-frenchbull-dogs-imgs, .Looking-Puppy-img {
    height: 400px;
}

.bluehaven-males-img {
    height: 366px !important;
}

.accordion-custom {
    background-color: #1b73b8;
    color: white;
    border-radius: 0.25rem;
}

.accordion-custom .accordion-button {
    background-color: #1b73b8;
    color: white;
    font-weight: 600;
    box-shadow: none;
}

.accordion-custom .accordion-button::after {
    filter: brightness(0) invert(1);
}

.accordion-custom .accordion-body {
    background-color: #1b73b8;
    color: white;
    font-size: 1rem;
    line-height: 1.7;
}

.accordion-custom .accordion-item {
    border: none;
}

.accordion-custom .accordion-header {
    /*border-bottom: 1px solid #ffffff33;*/
}

.accordion-button:focus,
.accordion-button:hover {
    box-shadow: none !important;
    background-color: #1b73b8 !important;
    color: white !important;
    transform: none !important;
}

.accordion-button {
    font-size: 16px;
    font-family: "Manrope";
}

.accordion-collapse.show {
    margin-top: 1px;
    border: 1px solid #ffffff66; /* Only show border on content when open */
    border-top: none;
    border-radius: 0 0 0.5rem 0.5rem;
}

.accordion-body {
    padding: 1rem;
}


/* Mothers With Puppies*/
.image-box {
    border-radius: 20px;
    color: black;
    box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.53);

    img {
        border-radius: 20px 20px 0px 0px;
    }
}

.image-content {
    border-radius: 0px 0px 20px 20px;

    a {
        text-decoration: none;
    }

    h3 {
        font-family: "titan One" !important;
        font-size: 21px;
        color: #3b4fb4;
        margin-bottom: 10px;
        font-weight: 100;
    }

    h3:hover {
        color: #001893;
    }
}


/* Former Puppies*/

.page-navigator {
    a {
        color: #3b4fb4;
    }
}

.text-h2 {
    font-size: 42px !important;
}

@media (max-width: 640px) {
    .text-h2 {
        font-size: 30px !important;
    }
}

.slider-dot-active {
    font-size: 10px;
    color: #3b4fb4;
}

.slider-dot {
    font-size: 8px;
    color: #7A7A7A;
}


/* Great Products*/

.garcia-dog {
    border: #1b73b8 8px solid !important;
}

.border-primary {
    border-color: #1b73b8 !important;
}

.custom-h3-great-products {
    font-family: 'Manrope';
    font-size: 20px;
    color: #3b4fb4;
}

.big-text {
    font-size: 20px;
}


/* Pet Insurance*/

.image-style-pet-insurance {
    height: 400px;
}


/* Beware of Scammers*/

.custom-h2-scammers {
    font-size: 24px;
}


/* Contracts*/

.custom-image-height {
    height: 350px;
    object-fit: cover;
}


/* Contact-Us*/

.long-image-contact {
    height: 500px;
}

.form-card {
    border: darkred !important;
    border-radius: 10px;
    width: 75%;
}

@media (max-width: 640px) {
    .form-card {
        width: 93%;
    }
}

.form-label {
    font-family: "Titan one";
}

.box-shadow-custom {
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.53);
}

.link-purple {
    color: #3b4fb4;
    text-decoration: none;
}

.h3-24 {
    font-family: "Titan one" !important;
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: 100;
}


/* puppies-for-sale-sub-page */

.puppies-for-sale-image1 {
    width: 510px;
    height: 400px;
}

.main-content {
    font-family: "titan One";
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
}

.all-new-puppies-links-box {
    height: 80px;
}

.new-puppies-links {
    font-weight: 600;
    text-decoration: none;
    color: #3b4fb4;
}

.upcoming-litter-buttons {
    padding: 15px 38px;
    border-radius: 50px;
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    background-color: #1b73b8;
}

/* Single Article */
.post-list-heading {
    font-family: "titan One";
    font-size: 24px;
}

.post-main-heading {
    font-size: 30px;
}

.article-img-div {
    width: 100%;
    height: 500px;
}

.tags {
    color: #3b4db3;
    font-weight: 600;
}


/* All Articles List*/
.articles-list {
    box-shadow: 0 0.125rem 1.25rem rgba(0, 0, 0, .075) !important;
    margin-bottom: 35px;
}

.articles-links {
    color: #3b4fb4;
    font-weight: 700;
}

.search-article-heading {
    font-size: 21px;
}


/* Why a french Bulldog? */
.why-french-bulldog-img1, .why-french-bulldog-img2 {
    width: 100%;
    height: 316px;
    border-radius: 20px;
    object-fit: cover;
}

.look-back-img1 {
    width: 100%;
    height: 350px;
}

@media (max-width: 640px) {
    .look-back-img1 {
        height: 240px;
    }

    .look-back-img2 {
        height: 76px !important;
    }
}

.look-back-img2 {
    width: 100%;
    height: 115px;
}


.let-the-bulldog {
    width: 100%;
    height: 300px;
}

.bulldog-bone {
    width: 100%;
    height: 110px;
}

.bulldog-face, .bone-img {
    object-fit: cover;
    object-position: center center;
    border-radius: 20px 20px 20px 20px;
    max-width: -webkit-fill-available;

}

.Temperament-img1 {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.Temperament-img2 {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.fun-fact-img {
    object-position: center center;
    height: auto;
}

@media (max-width: 640px) {
    .Temperament-img1 {
        height: 300px;
    }

    .Temperament-img2 {
        height: 130px;
    }
}


/* Maxiflora page*/
.maxiflora-hero-section-heading {
    font-size: 60px;
    padding-top: 125px;
    color: #f8f9fa !important;
}

.breadcrumb-paragraph {
    font-size: 20px;
}

.breadcrumb-btn, .want-to-enhance-btn, .what-is-maxiflora-btn {
    border-radius: 50px;
    padding: 15px 38px;
    color: #fff;
    font-weight: 800;
    font-size: 18px;
    background-color: #3b4fb4;
}

.maxiflora-img1 {
    border-radius: 50px !important;
}

.What-is-MaxiFlora-img {
    top: 10px;
    left: 30px;
    width: 85% !important;
}

.why-choose-maxiflora-div {
    border-radius: 20px !important;
    border-color: #3b4fb4 !important;
    box-shadow: 6px 6px 6px 0px rgba(0, 0, 0, 0.5);
}

.why-choose-maxiflora-sub-heading {
    font-family: "Titan one";
    font-size: 24px;
}

.coupon-code {
    font-size: 20px;
}

.white-border-maxiflora {
    margin-top: 125px;
}

.bg-overlay-hero-section {
    height: 100%;
    background-color: #0000008c;
}

.bg-section {
    background-size: cover;
    background-position: 32% 32%;
    background-repeat: no-repeat;
    width: 100% !important;
    background-color: transparent !important;
}

/* Pop-up Contact/Text Button*/
.cross-button-pop-up {
    margin-top: -20px;
}

.pop-up-phone {
    font-family: "Manrope";
    font-size: 50px;

    span {
        font-size: 50px;
        font-weight: 900;
    }
}

#contactModal {


    button {
        box-shadow: none !important;
        font-size: 12px;
    }

    @media (min-width: 650px) {
        .modal-dialog {
            max-width: 50%;
        }
    }
}

.modal-backdrop.show {
    opacity: 0.8 !important;
}

.btn, .btn:hover, .btn:active, .btn:visited {
    box-shadow: none !important;
}

/* Subscribe Pop up*/
#subscribeToast {
    a:hover {
        color: black !important;
    }
}

.pop-up-logo {
    width: 80px;
}

.toast {
    width: 500px !important;
    transition: opacity 0.4s ease, transform 0.4s ease;
    will-change: opacity, transform;
}

.toast.fade {
    opacity: 0;
    transform: scale(0.95);
}

.toast.show {
    opacity: 1;
    transform: scale(1);
}


/* Puppy Pop-up*/
.popup-content {
    font-size: 15px;
    font-weight: 700;
    font-family: Manrope !important;
}

.popup-right-img {
    height: 540px !important;
}

.popup-left-dog-img {
    width: 150px;
}

.popup-site-logo {
    width: 125px;
    heigh: 50px;
}

.close-popup {
    top: 20px;
    left: 570px;
    color: black !important;
    font-size: x-small;
}

.popup-model-div {
    width: 45%;
}

@media (max-width: 650px) {
    .popup-content {
        font-size: 12px !important;
    }

    .pop-up-heading {
        font-size: 20px;
    }

    .modal-content-div {
        margin: 0px 10px 0px 10px;
    }

    .modal-dialog {
        max-width: none !important;
        margin: 1.75rem auto;
    }

    .popup-model-div {
        width: 100% !important;
    }

    .close-popup {
        top: 5px;
        left: 93%;
    }

}

/* Pop-up overlapping fix*/
#subscribeToast:not(.show),
#puppyModal:not(.show) {
    z-index: -1 !important;
    pointer-events: none;
}

@media (min-width: 576px) {
    .modal-dialog {
        max-width: 45%;
    }
}

.btn-pop-up {
    padding: 5px 15px;
    font-weight: 500;
    font-size: 15px;
}

.btn-primary {
    color: white;
    background: #1b73b8;
    border: none;
}


/*Footer Top Fix (Footer overlapping fix)*/
.footer-top-fix {
    padding: 50px;
}

@media (max-width: 640px) {
    .footer-top-fix {
        padding: 25px !important;
    }
}

/*01/07/2025*/
@media (max-width: 650px) {
    /*About-us*/
    .asset-connector-img1, .asset-connector-img2 {
        display: none !important;
    }

    .testimonial-main-heading {
        line-height: 36px !important;
    }

}

.single-article-link:hover, .articles-category-link:hover {
    color: #3b4fb4 !important;;
}

.border-bottom-purple {
    border-color: #02129b !important;
}


.pop-up-video-height {
    height: 345px;
}

@media (max-width: 640px) {
    .pop-up-video-height {
        height: 223px !important;
    }

    /*maxi-flora*/
    .What-is-MaxiFlora-img {
        top: 10px;
        width: 100%;
    }

    .maxiflora-img1-bg-image {
        width: 100% !important;
    }

    .What-is-MaxiFlora-img {

        left: 0px;
        width: 100% !important;
    }

    .white-border-maxiflora {
        margin-top: 125px !important;
    }
}

/*Pagination Css*/

/*.pagination-list {*/
/*    display: inline-flex;*/
/*    gap: 8px;*/
/*    padding-left: 0;*/
/*    list-style: none;*/
/*}*/

/*.pagination-list li a,*/
/*.pagination-list li span {*/
/*    padding: 6px 12px;*/
/*    border: 1px solid #ddd;*/
/*    border-radius: 4px;*/
/*    color: #3b4fb4;*/
/*    text-decoration: none;*/
/*}*/

/*.pagination-list li.active span {*/
/*    background-color: #3b4fb4;*/
/*    color: white;*/
/*    border-color: #3b4fb4;*/
/*}*/

/*.pagination-list li.disabled span {*/
/*    color: #999;*/
/*    cursor: not-allowed;*/
/*}*/

/*.box-radius-5 {*/
/*    border-radius: 5px;*/
/*}*/

/*.rm-dark-blue-btn {*/
/*    color: #3b4fb4;*/
/*}*/

/*.rm-dark-blue-btn:hover {*/
/*    color: #336;*/
/*}*/

/*.hover-purple-dark:hover {*/
/*    color: #336;*/
/*}*/

/*.btn-no-transition:hover {*/
/*    transform: none !important;*/
/*    transition: none !important;*/
/*    color: white !important;*/
/*}*/


/*frontend pagination css*/

.custom-pagination-wrapper {
    margin-top: 20px;
}

.pagination-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;   /* mobile ke liye auto wrap */
    gap: 6px;
    justify-content: center;
}

.pagination-list li {
    display: inline-block;
}

.pagination-list li a,
.pagination-list li span {
    display: inline-block;
    padding: 8px 14px;
    border: 1px solid #ddd;
    border-radius: 6px;
    text-decoration: none;
    font-size: 15px;
    color: #333;
    transition: all 0.2s ease-in-out;
}

.pagination-list li a:hover {
    background-color: #f5f5f5;
    color: #000;
}

.pagination-list li.active span {
    background-color: #3b4fb4; /* Blue highlight */
    color: #fff;
    border-color: #3b4fb4;
    font-weight: 600;
}

.pagination-list li.disabled span {
    color: #aaa;
    cursor: not-allowed;
    background: #f9f9f9;
}

.pagination-prev a,
.pagination-next a {
    font-weight: 600;
    color: #3b82f6;
}

@media (max-width: 576px) {
    .pagination-list li a,
    .pagination-list li span {
        padding: 6px 10px;
        font-size: 13px;
    }

    .pagination-list {
        gap: 4px;
    }
}

/* Styles for iPad Mini */
@media (min-width: 768px) and (max-width: 1024px) {
    nav#navbar-bottom .col-md-2.d-none {
        display: none !important;
    }
    nav#navbar-bottom .col-md-2 {
        width: 100% !important;
    }
    .footer-fst-col,.footer-second-col,.footer-third-col{
        width: 50% !important;
    }
    .margin-left-0{
        margin-left: 0px !important;
    }
    .footer-btn{
        text-align: left !important;
    }
}
