@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;900&family=Raleway:wght@500;700&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Bowlby+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;0,500;0,600;0,700;1,100&display=swap');

body {
    position: relative;
    font-family: "Poppins", sans-serif;
    background: var(--white);
    overflow-x: hidden;
}

:root {
    --theme-color: #BEBEBE;
    --theme-secondary-color: #5CA249;
    --white: #fff;
    --black: #000;
    --gray: #a8a5a8;
}

p {
    font-size: 1rem;
    font-family: "Poppins", sans-serif;
    color: #828282;
    margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Bowlby One', cursive;
    color: #fff;
}

.img-auto {
    display: block;
    max-width: 100%;
    margin: 0 auto;
}

a,
button {
    text-decoration: none !important;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

a:hover,
button:hover {
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

figure {
    margin: 0;
}

.btnCont {
    display: flex;
    gap: 1rem;
    align-items: center;
    width: 100%;
}

.btnCont.middle {
    justify-content: center;
}
/* 
.themeBtn {
    display: inline-block;
    border: none;
    background: none;
    position: relative;
    padding: 0;
    width: fit-content !important;
}

.themeBtn span {
    background-color: var(--theme-color);
    border: 1px solid var(--theme-color);
    font-size: 1.125rem;
    padding: 0.5rem 1.5rem;
    text-transform: capitalize;
    color: var(--black);
    transition: all 0.3s ease-in-out;
    display: inline-block;
    border-radius: 10px;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.themeBtn::before {
    content: '';
    position: absolute;
    width: 100% !important;
    height: 100%;
    background: #e6e6e6;
    bottom: 8px;
    border-radius: 10px;
    left: 0;
    z-index: 0;
    transition: all .2s ease-in-out;
    left: 50%;
    transform: translateX(-50%);
}

.themeBtn:hover {
    color: var(--white);
}

.themeBtn:hover::before {
    bottom: 0;
} */

.playBtn {
    display: inline-flex;
    width: 50px;
    height: 50px;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 100%;
    color: var(--theme-secondary-color);
}

section {
    position: relative;
    padding: 8em 0;
}

.secHeading {
    margin-bottom: 40px;
}

.secHeading h2 {
    font-size: 3.75rem;
    color: var(--black);
    margin: 0;
    text-transform: uppercase;
}

.secHeading h2 span {
    display: block;
    font-size: 2rem;
}

.row [class*="col-"] {
    position: relative;
}

/* loder */

.preLoader {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
}

.preLoader.black {
    background-color: #000;
    z-index: 30;
}

.preLoader.white {
    z-index: 20;
    background-color: #fff;
}

.socials {
    margin-top: 20px;
    display: flex;
    gap: 1rem;
}

.socials img {
    width: 25px;
    height: 25px;
}

/*header css*/

header {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 11;
}

.navbar-nav {
    gap: 1rem 2.5rem;
    margin-right: 2rem;
}

.navbar-nav .nav-link,
.navbar-nav .nav-link.active {
    color: var(--white);
    position: relative;
    text-transform: uppercase;
    font-weight: 500;
    padding-inline: 0 !important;
    padding-bottom: 0 !important;
}

.navbar-nav .nav-link.search:before,
.navbar-nav .nav-link.search:after {
    content: none;
}

.navbar-nav .nav-link:after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    transition: all 0.4s linear;
    height: 1px;
    background-color: #fff;
}

.navbar-nav .nav-item:hover .nav-link:after {
    width: 0%;
}

.navbar-nav .nav-link:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 1px;
    background: var(--theme-color);
    transition: all 0.2s 0.3s ease-in;
}

.navbar-nav .nav-item:hover .nav-link:before {
    width: 100%;
}

header .dropdown-toggle::after {
    border-top: 0;
}

header .dropdown-menu {
    background-color: var(--theme-color);
}

header .dropdown-menu li a {
    color: var(--white);
    text-transform: uppercase;
}

header .themeBtn::before {
    background: #E6E6E6;
}

header .themeBtn span {
    background-color: var(--theme-color);
    border-color: var(--theme-color);
}

/*main slider*/

.sliderMain {
    padding: 0;
}

.sliderMain.-type-1 .sliderMain__subtitle {
    margin: 0;
    font-size: 2rem !important;
}

.sliderMain.-type-1 .js-title p {
    font-size: 1rem;
    width: 100%;
    margin: 0 auto;
    font-weight: 500;
    margin-bottom: 1rem;
    color: var(--white);
}

/*footer*/

footer {
    padding: 5em 0 1.25rem;
}

footer .footerLogo {
    margin-left: 30px;
}

footer .footerLinks h4 {
    font-size: 1.625rem;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--black);
    margin-bottom: 10px;
}

footer .footerLinks li a {
    font-size: 1.125rem;
    font-weight: 500;
    color: #707070;
    position: relative;
}

footer .footerLinks li a::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 1px;
    background: #fff;
    transition: all 0.4s ease-in-out;
}

footer .footerLinks li:hover a::before {
    width: 100%;
}

footer .footerLinks li {
    padding: 0 0 0.25rem;
}

footer .footerLinks ul {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
}

footer .footerSubtitle {
    font-size: 1.125rem;
}

footer .icon {
    display: flex;
    align-items: start;
    justify-content: start;
    color: #707070;
    font-size: 1.125rem;
    gap: 1rem;
}

footer .icon i {
    color: var(--theme-color);
}

footer .icon span {
    display: block;
}

footer .icon span:first-of-type {
    font-size: 1.125rem;
    line-height: 1;
    color: var(--black);
    font-weight: 600;
}

footer .icon span:last-of-type {
    font-size: 1.125rem;
    margin-top: 7px;
}

footer .icon span {
    line-height: 1;
}

footer .icon + .icon {
    margin-top: 20px;
}

footer hr {
    opacity: 1;
    border-color: #707070;
    margin: 30px 0 10px;
}

footer .copyright {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

footer .copyright .socials {
    margin: 0;
}

footer .copyright p {
    font-size: 1.1255rem;
    color: var(--black);
}

/* Banner Social List */
.main-section {
    position: relative;
}

.social-list {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
    position: absolute;
    right: 6rem;
    top: 50%;
    z-index: 1;
    transform: translateY(-50%);
}

.social-list li span.text {
    font-size: 1.125rem;
    color: var(--white);
    font-weight: 500;
    line-height: 1;
    writing-mode: vertical-lr;
    transform: scale(-1);
}

.social-list li span.line {
    width: 1px;
    height: 200px;
    display: inline-block;
    background: var(--white);
}

.social-list li a {
    font-size: 1.125rem;
    color: var(--white);
}

.social-list li a:hover {
    color: var(--theme-color);
}

/*main slider*/
.sliderMain.-type-1 {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100vh;
}

.sliderMain.-type-1 .sliderMain__wrap {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sliderMain.-type-1 .sliderMain__img {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.sliderMain.-type-1 .sliderMain__img.-cover-dark::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.75), transparent);
}

.sliderMain.-type-1 .sliderMain__content {
    position: relative;
}

.sliderMain.-type-1 .sliderMain__bgTitle {
    position: absolute;
    font-size: 10rem;
    line-height: 1;
    letter-spacing: -0.02em;
    color: rgba(255, 255, 255, 0.03);
    text-align: center;
}

.sliderMain.-type-1 .sliderMain__title {
    word-wrap: break-word;
    font-size: 5.625rem;
}

@media (max-width: 1229px) {
    .sliderMain.-type-1 .sliderMain__title {
        font-size: 9.6vw;
    }
}

@media (max-width: 991px) {
    .sliderMain.-type-1 .sliderMain__title {
        font-size: 5.25rem;
    }
}

@media (max-width: 767px) {
    .sliderMain.-type-1 .sliderMain__title {
        font-size: 4.5rem;
    }
}

@media (max-width: 575px) {
    .sliderMain.-type-1 .sliderMain__title {
        font-size: 3.125rem;
    }
}

.bg-image {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center bottom;
    width: 100%;
    height: 100%;
    background-color: #fff;
}

.swiper-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0 0.5rem;
    bottom: 0;
    width: 100%;
}

.swiper-pagination-bullet {
    background: #fff;
    opacity: 1;
    width: 12px;
    height: 12px;
}

.swiper-pagination-bullet-active {
    background: var(--theme-color);
}

.reveal,
.reveal2 {
    visibility: hidden;
    position: relative;
    overflow: hidden;
}

.sliderMain.-type-1 .js-title h1 {
    font-size: 3.2rem;
    line-height: 1;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.sliderMain.-type-1 .js-title h1 span {
    display: block;
}

.sliderMain.-type-1 .themeBtn::before {
    background: #E6E6E6;
}

.sliderMain.-type-1 .themeBtn span {
    background-color: var(--theme-color);
    border-color: var(--theme-color);
}

.aboutSec {
    background: url("../images/aboutBG.webp");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    margin-top: -5rem;
    padding-top: 15rem;
}

.aboutSec .secHeading h2 {
    font-size: 2.25rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.pawCard {
    background: var(--white);
    text-align: center;
    padding: 2rem 2.5rem;
    border-radius: 30px;
    box-shadow: 0 0 15px #ddd;
    transition: all 0.3s ease-in-out;
}

.pawCard .head {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F2D6BB;
    border-radius: 100%;
    transition: all 0.3s ease-in-out;
}

.pawCard .head i {
    font-size: 3rem;
}

.pawCard .content {
    display: flex;
    flex-direction: column;
    margin-top: 1rem;
    gap: 1rem;
}

.pawCard .content h3 {
    color: var(--black);
    font-size: 1.975rem;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.pawCard .content p {
    color: #828282;
}

.pawCard .themeBtn {
    width: fit-content;
    margin: 0 auto -50px;
}

.pawCard .themeBtn::before {
    background: #E6E6E6;
}

.pawCard:hover {
    background: #d1dfc6;
}

.pawCard:hover .head {
    background: var(--white);
}

.pawCard:hover .themeBtn span {
    background: var(--theme-color);
    color: var(--black);
    border-color: var(--theme-color);
}

.pawCard .themeBtn span {
    background: var(--theme-color);
    color: var(--white);
}

.aboutSec .row + .row {
    margin: 5rem 0 0;
}

.aboutSec .aboutImgs {
    display: flex;
    gap: 1rem;
}

.aboutSec .aboutImgs img {
    height: max-content;
}

.aboutSec .content-box .secHeading {
    margin-bottom: 10px;
}

.subHeading {
    color: var(--theme-secondary-color);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.aboutSec .content-box p {
    color: #828282;
    font-size: 1.125rem;
}

.aboutSec .content-box p + p {
    margin-top: 2rem;
}

.aboutSec > img {
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-top: -9rem;
}

.gallerySlider img {
    width: 370px;
    height: 350px;
    border-radius: 30px;
    object-fit: cover;
}

.facilitySec {
    background: url("../images/facilityBg.webp");
    background-size: 100% 100%;
    background-position: center top;
    background-repeat: no-repeat;
}

.facilitySec .videoBox figure {
    position: relative;
}

.facilitySec .videoBox figure a {
    position: absolute;
    top: 90%;
    left: 90%;
    transform: translate(-90%, -90%);
    width: 120px;
    height: 120px;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
}

.facilitySec .videoBox figure img, .facilitySec .videoBox figure video {
    height: 600px;
    width: 100%;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: 2px 2px 15px #333;
    position: relative;
    display: block;
}

.facilitySec .videoBox figure i {
    color: var(--black);
    font-size: 2rem;
}

.facilitySec .videoBox .content {
    width: 65%;
    margin: 0 auto;
}

.facilitySec .videoBox .content p {
    color: var(--black);
    text-align: center;
    margin: 2rem 0 0;
    font-size: 1.125rem;
}

.facilitySec .videoBox figure:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: -20px;
    right: -20px;
    background: var(--theme-color);
    border-radius: 30px;
}

.facilityCard .facilityImg {
    margin: 0 0 0 -15rem;
}

.leftCard.facilityCard .facility-content p {
    width: 75%;
    margin-left: auto;
}

.facilityCard .facility-content p {
    text-align: left;
    color: var(--black);
    margin-bottom: 1rem;
}

.facilityCard .facility-content .secHeading h2 {
    color: var(--theme-secondary-color);
}

.facilityCard .facility-content h4 {
    color: var(--black);
}

.facilityCard .facility-content {
    text-align: right;
}

.facilityCard .facility-content a span {
    background: #d1dfc6;
    border-color: #d1dfc6;
}

.facilitySec .row + .row {
    margin-top: 2rem;
}

.rightCard.facilityCard .facility-content {
    text-align: left;
}

.testimonialSec .secHeading h2 {
    font-size: 3.4375rem;
}

.testimonialSec .secHeading h2 span {
    color: var(--theme-secondary-color);
}

.testimonialSec p + p {
    margin-top: 2rem;
}

.testimonialSec .secHeading {
    margin-bottom: 20px;
}

.testimonialBox:first-of-type {
    background: #d1dfc6;
}

.testimonialBox {
    background: #F2F2F2;
    padding: 2rem 4rem 2rem 3rem;
    border-radius: 20px;
}

.testimonialBox p {
    color: var(--black);
    font-size: 1.125rem;
    font-style: italic;
    font-weight: 300;
}

.testimonialBox .profileBox {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.testimonialBox .profileBox figure img {
    width: 60px;
    height: 60px;
    border-radius: 100%;
    object-fit: cover;
}

.testimonialBox .profileBox h4 {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--black);
}

.testimonialBox + .testimonialBox {
    margin-top: 2rem;
}

.contactSec {
    padding: 8rem 0 0;
    background-image: url("../images/contactBg.png");
    background-size: 100% 100%;
    background-position: center top;
    background-repeat: no-repeat;
    text-align: center;
}

.contactSec figure {
    margin: -5rem;
}

.contactSec .secHeading h2 {
    color: var(--theme-secondary-color);
}

.contactSec p {
    color: var(--black);
    margin: 0 auto;
    width: 75%;
}

.contactSec .themeBtn {
    margin-top: 1rem;
}

.contactSec .themeBtn span {
    padding: 0.5rem 3rem;
}

footer .copyright .socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--theme-color);
    border-radius: 100%;
    width: 50px;
    height: 50px;
}

footer .copyright .socials a i {
    color: var(--black);
}

footer .copyright .socials a:hover {
    background: #d1dfc6;
}

main > section:last-of-type {
    position: relative;
    z-index: 2;
}

#contactModal .modal-content {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(5px);
    padding: 3rem 2rem 3rem;
    box-shadow: 0 0 15px rgb(0 0 0 / 35%);
    border-radius: 20px;
}

#contactModal .modal-content .inputCont input, #contactModal .modal-content .inputCont textarea {
    background: rgba(255, 255, 255, 0.25);
    border: 1px solid #fff;
    box-shadow: none;
    color: #000;
    width: 100%;
    border-radius: 5px;
    height: 40px;
}

#contactModal .modal-content .inputCont label {
    color: #fff;
}

#contactModal .modal-content .row {
    gap: 1rem 0;
}

#contactModal .modal-content .inputCont textarea {
    height: auto;
}

#contactModal .modal-content .closeBtn {
    position: absolute;
    top: 1rem;
    right: 4rem;
    background: none;
    border: none;
    outline: none;
    color: var(--white);
    font-size: 1.5rem;
}

#contactModal .modal-content .closeBtn:hover {
    color: var(--bs-danger);
}

#contactModal .modal-content .secHeading {
    margin: 0;
}

#contactModal .modal-content .secHeading h2 {
    font-size: 2.5rem;
    color: var(--white);
}

.sliderMain.-type-1 .js-title h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
}

.sliderMain.-type-1 .js-title h5 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.6rem;
}

.dogsLinks {
    text-align: center;
}

.dogsLinks h4 {
    font-size: 2rem;
    color: #000;
    text-transform: capitalize;
}

.dogsLinks span {
    display: block;
    color: #000;
    font-size: 1.2rem;
    font-weight: 500;
}

.icon-2 {
    font-size: 1.5rem !important;
    font-weight: 700 !important;
}

.sliderMain.-type-1 .sliderMain__content .socialLinks {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.sliderMain.-type-1 .sliderMain__content .socialLinks li a {
    color: #fff;
    font-size: 1.125rem;
}

.sliderMain.-type-1 .sliderMain__content .socialLinks li a span {
    font-weight: 600;
}