html {
    height: 100%;
}

#downloadBtn {
    position: absolute;
    bottom: 0;
}

.pagination li a {
    color: var(--darkclr);
    padding: .4rem 1rem !important;
}

.pagination li.active a,
.pagination li a:hover {
    color: var(--plainclr);
    background: var(--themeprimaryclr) !important;
    border-color: var(--themeprimaryclr);
}

.owl-nav.disabled {
    display: none !important;
}

.carousel-item {
    transition: transform 0.5s ease-in-out;
}

@media (max-width:767px) {
    .banr-img {
        display: none !important;
    }

    .banr-img-two {
        display: block !important;
    }

    .carousel-indicators {
        bottom: 3px !important;
    }
}

.banr-img {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
}

.banr-img-two {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
    display: none;
}

#location {
    color: var(--plainclr) !important;
}

.search-input button span,
.search-input button i {
    color: var(--themeprimaryclr) !important;
}

.search-input button:hover span,
.search-input button:hover i {
    color: var(--plainclr) !important;
}

.carousel-banner .carousel-control-prev {
    width: 3rem;
    height: 3rem;
    top: 40%;
    left: 2%;
    color: var(--darkclr);
    border-radius: 50%;
    opacity: 1;
    border: none;
}

.carousel-banner .carousel-control-next {
    width: 3rem;
    height: 3rem;
    top: 40%;
    right: 2%;
    color: var(--darkclr);
    border-radius: 50%;
    opacity: 1;
    border: none;
}

.carousel-indicators {
    bottom: 36px !important;
    z-index: 1 !important;
}

.carousel-indicators [data-bs-target] {
    background-color: red !important;
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

@media (max-width:380px) {
    .carousel-indicators {
        bottom: -8px !important;
    }
}

.breadcrumb {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
    list-style: none;
    background-color: #e9ecef;
    border-radius: 0.25rem;
}

.breadcrumb-item a,
.breadcrumb-item.active {
    font-family: var(--primaryfont);
    color: #808080;
}

.breadcrumb-item a {
    font-size: 1rem;
}

.breadcrumb-item+.breadcrumb-item::before {
    float: left;
    padding-right: 0.5rem;
    color: #212121;
    content: ">";
    font-weight: 600;
}

.breadcrumb .breadcrumb-item .active,
.breadcrumb .breadcrumb-item .active span {
    color: var(--themeprimaryclr) !important;
    font-weight: 700;
}

.breadcrumb .breadcrumb-item a:hover {
    color: var(--darkclr);
}

@media (max-width: 1100px) {
    .breadcrumb-item a {
        font-size: 0.8rem;
    }
}

.desk-mob {
    display: none;
}

.breadcrumbbb {
    background-color: #e9ecef;
}

.breadcrumbbb a.active span {
    color: var(--themeprimaryclr) !important;
}

@media (max-width: 767px) {
    .breadcrumb-item a {
        font-size: 0.9rem;
    }

    .desk-bred {
        display: none;
    }

    .desk-mob {
        display: block;
    }
}



/* Modal */
.gallery .nav-gallery {
    border-bottom: 2px solid #efefef;
}

.gallery .nav-gallery .nav-item {
    text-align: center;
}

.gallery .nav-gallery .nav-item .nav-link {
    color: var(--darkclr);
    width: 100%;
    border-radius: 0;
    border-bottom: 4px solid transparent;
}

.gallery .nav-gallery .nav-item .nav-link:hover {
    background-color: var(--lightbg);
}

.gallery .nav-gallery .nav-item .nav-link.active {
    color: var(--themeprimaryclr);
    border-bottom: 4px solid var(--themeprimaryclr);
    background: transparent;
}

.gallery .nav-gallery .nav-item .show>.nav-link {
    color: var(--themeprimaryclr);
    border-bottom: 4px solid var(--themeprimaryclr);
    background: transparent;
}

.gallery .nav-gallery .nav-item .disabledd {
    cursor: not-allowed !important;
}

.gallery .tab-pane .images {
    position: relative;
    height: 250px;
    transition: all 0.5s linear;
    /* On hover, apply brightness to the image */
}

.gallery .tab-pane .images:hover {
    box-shadow: 0px 5px 83px 0px rgba(9, 29, 62, 0.15);
}

.gallery .tab-pane .images:hover img {
    filter: brightness(0.5);
}

.gallery .tab-pane .images:hover .title {
    transition: all 0.5s linear;
    opacity: 1;
    display: none;
}

.gallery .tab-pane .images img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background-color: #f1f1f1;
    transition: filter 0.5s linear;
    transition: all 0.5s linear;
}

.gallery .tab-pane .images .title {
    background-color: var(--themeprimaryclr);
    padding: 0.6rem;
    text-align: center;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    position: absolute;
    bottom: 0%;
    width: 100%;
    color: var(--plainclr);
    transition: all 0.5s linear;
    opacity: 0;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: var(--gallery-overlay);
    text-align: center;
}

.modal .modal-content {
    margin: auto;
    display: block;
    width: 500px;
    object-fit: cover;
    border: 7px solid var(--plainclr);
}

.modal .close {
    position: absolute;
    top: 10px;
    right: 25px;
    color: var(--plainclr);
    font-size: 1.8rem;
    font-weight: bold;
    cursor: pointer;
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    text-shadow: 0 0 0 #fff !important;
    transition: all .4s linear;
    background: var(--closeclr);
    border-radius: 50%;
}

.modal .close:hover {
    color: var(--plainclr);
    background: var(--themesecondaryclr);
}

.modal .modal-controls {
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
}

.modal .modal-controls .nav-btn {
    background-color: var(--themeprimaryclr);
    color: var(--plainclr);
    border: none;
    padding: 15px;
    cursor: pointer;
    font-size: 18px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.modal .modal-controls .nav-btn:hover {
    background-color: var(--themesecondaryclr);
}

.modal .modal-controls #prev-btn {
    left: 0;
}

.modal .modal-controls #prev-btn:hover {
    background-color: var(--themesecondaryclr);
}

.modal .modal-controls #prev-btn:focus {
    border: none;
    box-shadow: none;
}

.modal .modal-controls #next-btn {
    right: 0;
}

.gallery-img-sec {
    height: 300px;
    overflow: hidden;
    display: block;
    transition: transform 0.3s ease-in-out;
}

.gallery-img-sec .videos iframe {
    border: 0;
}

.gallery-img-sec:hover {
    cursor: pointer;
    transition: all 0.5s linear;
}

.gallery-img-sec:hover img {
    transform: scale(1.2);
}

@media (max-width:767px) {
    .gallery .tab-pane .images {
        height: 200px;
    }
}

/* videos section */
.gallery .tab-pane .videos {
    height: 230px;
    width: 100%;
}

.gallery .tab-pane .videos iframe {
    height: 100%;
    width: 100%;
}

@media (max-width:767px) {
    .gallery .tab-pane .videos {
        height: 160px;
    }
}

.hover-color-change {
    transition: all 0.4ms ease-in-out;
}

.hover-color-change:hover {
    color: var(--themehoverclr);
}