@import url("./utiles.css");

* {
    margin: 0;
    padding: 0;
}

.preloader {
    height: 100vh;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    background-color: white;
    background-image: url("../assests/preloader.gif");
    background-position: center;
    background-repeat: no-repeat;
    z-index: 9999;
}

.top-info {
    background: var(--primary);
}

.nav-item a {
    font-family: "Dosis", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
}

.menu-divider {
    width: 0%;
    height: 3px;
    /* background: #ff6cab; */
    background-image: linear-gradient(to right, var(--primary), white);
    border-radius: 50px;
    transition: 0.5s ease all;
}

.nav-item:hover .menu-divider {
    width: 100%;
}

.menu-divider-active {
    width: 100%;
}

.navbar-brand img {
    border-radius: 50%;
}

.search-btn {
    height: 30px;
    width: 30px;
    background-color: var(--primary);
    border: 2px solid var(--primary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: whitesmoke;
    cursor: pointer;
    transition: 0.3s ease all;
}

.search-btn:hover {
    color: white;
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper-pagination-bullet-active-main {
    background-color: white !important;
}

.swiper-pagination-bullet-active {
    background-color: var(--primary) !important;
}

.devider {
    width: 80%;
    height: 5px;
    background: black;
    border-radius: 20px;
}

.devider-text {
    font-family: "Dosis", sans-serif;
    font-optical-sizing: auto;
    font-weight: 900;
    font-style: normal;
}

.h-font {
    font-family: "Dosis", sans-serif;
    font-optical-sizing: auto;
    font-weight: 900;
    font-style: normal;
}

.card-title {
    font-family: "Dosis", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
}

.card-text {
    font-size: 12px;
}

.dog-card-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.load-more {
    border-radius: 50px !important;
}

.hero-left {
    position: relative;
}

.hero-cover {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    position: absolute;
    background-color: rgba(0, 0, 0, 0.34);
}

.hero-text {
    font-family: "Sacramento", cursive;
    font-weight: 400;
    font-style: normal;
}

.hero-des {
    width: 80%;
    font-size: 13px;
}

.hero-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mini-blog {
    background: var(--primary);
}

.footer {
    background: var(--primary);
}

.header img {
    width: 100%;
}

.header {
    position: relative;
}

.header-cover {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.34);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.header-cover h1 {
    font-family: "Dosis", sans-serif;
    font-optical-sizing: auto;
    font-weight: 800;
    font-style: normal;
}

.header-cover h5 {
    font-family: "Sacramento", cursive;
    font-weight: 400;
    font-style: normal;
}

.galary-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
}

.galary-card {
    width: 220px;
    height: 220px;
}

.big-galary-image {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.34);
    backdrop-filter: blur(10px);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    display: none;
}

.big-galary-image img {
    width: 60%;
    height: 100%;
    object-fit: contain;
}

.big-galary-close {
    position: absolute;
    top: 25px;
    right: 25px;
    cursor: pointer;
    font-size: 25px;
}

iframe{
    width: 100% !important;
}

@media screen and (max-width: 570px) {
    .hero-left {
        height: 500px;
    }

    .big-galary-image img {
        width: 80%;
    }

    .availability {
        font-size: 14px;

    }

    .short-details {
        flex-direction: column;
        font-size: 15px;
    }

    .details {
        font-size: 15px;
    }
}

@media screen and (max-width: 991px) {

    .sort {
        width: 50% !important;
    }
}