:root {
    --main-color: #3f71a7;
    --second-color: #ff6636;
    --light-purple: #e3e1ff;
}

.text-justify {
    text-align: justify;
}

.error {
    color: red;
}

.fs--1 {
    font-size: 13px;
}

.fw-semi-bold {
    font-weight: 600;
}

.bg-theme {
    background-color: var(--main-color);
}

.bg-light-theme {
    background-color: #ceccf9;
}

.bg-second {
    background-color: var(--second-color) !important;
}

button.bg-second:hover {
    background-color: var(--second-color) !important;
}

.text-first {
    color: var(--main-color);
}

.bg-transparent {
    background-color: transparent;
}

.text-second {
    color: var(--second-color) !important;
}

.navbar-brand img.navbar-logo {
    height: 60px;
}
.navbar {
    border-bottom: 0.5px solid lavenderblush !important;
}
.nav-item .nav-link {
    font-weight: 600;
    border-bottom: 2px solid transparent;
    padding-bottom: 2px;
}

.navbar .navbar-nav .nav-link.active,
.navbar .nav-item .nav-link:hover {
    color: var(--main-color);
    border-color: var(--main-color);
}

.btn-contact {
    display: flex;
    gap: 10px;
    background-color: var(--main-color);
    border-radius: 25px;
    text-transform: uppercase;
    color: #fff;
    padding-bottom: 8px !important;
    padding-left: 10px;
}

.btn-contact:hover,
.btn-contact:focus {
    color: #fff !important;
}

.btn-contact i {
    width: 25px;
    height: 25px;
    background-color: var(--second-color);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    outline: 3px solid #aeaeea;
}

.search-top {
    top: -110px;
    position: absolute;
    z-index: 1;
    display: flex;
    gap: 10px;
}

.search-top label {
    background-color: #ffffff;
    color: var(--main-color);
    position: relative;
    border: 1px solid var(--main-color);
}

.search-top .btn:hover {
    background-color: var(--main-color);
    color: #ffffff;
}

.search-top .btn:hover::before {
    color: var(--main-color);
}

/* .search-top .btn:not(.text-first) {
    color: #fff;
}

.search-top .btn {
    
} */

.search-top .btn::before {
    content: "▼";
    position: absolute;
    bottom: -25px;
    font-size: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
    color: #ffffff;
    display: none;
}

.search {
    box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px,
        rgba(17, 17, 26, 0.1) 0px 8px 24px, rgba(17, 17, 26, 0.1) 0px 16px 56px;
    border-radius: 15px;
    min-height: 80px;
    position: absolute;
    top: -40px;
    width: calc(100% - var(--bs-gutter-x) * 1);
    background-color: #fff;
    padding: 20px;
}

.search i {
    min-width: 35px;
    height: 35px;
    color: var(--second-color);
    background-color: #f7b9a6;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    font-size: 18px;
}

.search input,
.search select {
    font-weight: 600;
    padding-left: 0 10px;
    outline: none;
    border: none;
    background: transparent;
    color: #3f4242;
    font-size: large;
    width: 100%;
}

.search #city_id {
    font-weight: 500;
}

.search #city_id option {
    font-size: small;
}

.search button {
    background-color: var(--main-color);
    width: 100%;
    color: #fff;
    display: flex;
    gap: 10px;
    font-weight: 600;
    align-items: center;
    padding: 8px 10px;
    border-radius: 5px;
    border: 0 solid transparent;
    outline: none;
    box-shadow: var(--second-color) 3px 3px;
}

.search button i {
    background-color: transparent;
    color: #fff;
    height: 20px;
    width: 20px;
}

.flip-cards {
    margin-top: 100px;
}

@media (max-width: 991.98px) {
    .flip-cards {
        margin-top: 200px;
    }
}

.flip-cards .card {
    background-color: transparent;
    width: 100%;
    height: 300px;
    perspective: 1000px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.flip-cards .card-body {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
    /* box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2); */
    padding: 0;
    border-radius: 20px;
}

.flip-cards .card:hover .card-body {
    transform: rotateX(180deg);
}

.flip-cards .card-body .front,
.flip-cards .card-body .back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 20px;
}

.flip-cards .card-body .front {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-bottom: 10px solid var(--card-color, tomato);
}

.flip-cards .card-body .front .icon {
    background-color: var(--card-color, tomato);
    width: 100px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 40px;
    color: #fff;
}

.flip-cards .card-body .front h3 {
    color: #555555;
    font-weight: 600;
    font-size: 20px;
}

.flip-cards .card-body .back {
    background-color: var(--card-color, tomato);
    color: white;
    transform: rotateX(180deg);
    text-align: left;
    padding: 16px;
    overflow: hidden;
}

.flip-cards .card-body .back .icon {
    font-size: 40px;
}

.flip-cards .card-body .back h3 {
    font-size: 20px;
    font-weight: 600;
}

.flip-cards .card-body .back p {
    font-size: 16px;
    text-align: justify;
    line-height: 20px;
    overflow: hidden;
    font-weight: 600;
    max-height: 140px;
    display: -webkit-box;
    -webkit-line-clamp: 9;
    line-clamp: 9;
    -webkit-box-orient: vertical;
}

@media (max-width: 991.98px) {
    .flip-cards .card-body .back p {
        font-size: 12px;
        line-height: 14px;
    }
}

.home-deals {
    background-color: #3f71a7;
    min-height: 300px;
}

.home-deals .deals-cards .icon {
    font-size: 65px;
    margin-bottom: 10px;
    color: var(--second-color);
}

.home-deals .deals-cards h2 {
    color: var(--main-color);
}

.home-deals .deals-cards p {
    font-weight: 600;
    color: gray;
    font-size: 18px;
}

.home-deals .deals-cards .card {
    position: relative;
    box-shadow: #3235b7 0 10px 3px;
}

.home-deals .deals-cards .card .dot {
    position: absolute;
    background-color: #faf9fd;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.home-deals .deals-cards .card .dot p {
    color: var(--second-color);
    font-size: 80px;
}

.testimonial {
    margin-top: 50px;
}

.testimonial h1 {
    color: var(--main-color);
    font-weight: 700;
}

.testimonial h1 span {
    color: var(--second-color);
}

.testimonial .card {
    border-radius: 20px;
    border-color: transparent;
}

.testimonial .card .card-body {
    border-radius: 20px;
    aspect-ratio: 1;
    overflow: hidden;
    min-height: 400px;
    width: 100%;
    background-image: url(../img/testimonial-bg-2.png);
    background-repeat: no-repeat;
    background-size: contain;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.testimonial .card:nth-child(odd) .card-body {
    background-color: var(--main-color);
}

.testimonial .card:nth-child(even) .card-body {
    background-color: var(--second-color);
}

.testimonial .card .card-body img {
    min-width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #fff;
    aspect-ratio: 1;
}

.testimonial .card .card-body h4,
.testimonial .card .card-body p {
    color: #fff;
    text-align: justify;
}

.our-services h1,
.most-popular h1 {
    color: var(--main-color);
    text-transform: uppercase;
}

.our-services h1 span,
.most-popular h1 span {
    color: var(--second-color);
}

.most-popular .card {
    overflow: hidden;
    border-color: transparent;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.most-popular .card .card-img-top {
    height: 200px;
    object-fit: cover;
}

.our-services .card .card-body img {
    min-width: 70px;
    height: 70px;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 5px;
}

.our-services .card button,
.most-popular .card a.book-now {
    background-color: #fff;
    border-color: var(--main-color);
    box-shadow: var(--second-color) 2px 2px 1px;
}

.our-services .card button:hover,
.most-popular .card a.book-now:hover {
    background-color: var(--main-color);
    color: #fff;
    box-shadow: var(--second-color) 5px 5px 1px;
}

.most-popular .card .card-body {
    padding: 12px 10px 15px 10px;
}

.most-popular .card .card-title {
    color: var(--main-color);
    font-size: 16px;
    font-weight: 600;
    min-height: 35px;
    margin-bottom: 5px;
}

.most-popular .card .card-text {
    font-size: 14px;
    min-height: 45px;
    line-height: 16px;
    color: gray;
}
.banner-img-custom {
    max-height: 550px;
    object-fit: cover;
}
/* ################ Nav Upper ############## */
.nav-top-head {
    position: relative;
    z-index: 1001;
    display: flex;
}
.bg-orange-custom {
    background-color: #3f71a7;
}
.top-li {
    color: #fffff9 !important;
    font-size: 14px !important;
    font-weight: 300;
}
.nav-icon-text {
    color: #ffffff !important;
    text-decoration: none;
    font-size: 13px;
    font-weight: 400;
}
.nav-icon-font {
    color: #ffffff !important;
    text-decoration: none;
    font-size: 13px;
}
.faa-header-icon {
    color: #ff6636 !important;
    background-color: #ffffff;
    padding: 0px;
    margin: 0px;
    height: 25px;
    text-align: center;
    border-radius: 50%;
    font-size: 12px;
    width: 25px;
    line-height: 25px;
}
.faa-header-icon:hover {
    color: #ffffff !important;
    background-color: #ff6636;
    padding: 0px;
    margin: 0px;
    height: 25px;
    text-align: center;
    border-radius: 50%;
    font-size: 12px;
    width: 25px;
    line-height: 25px;
}

footer {
    background-color: #1e1e20;
    color: #fff;
}

footer .logo {
    height: 60px;
    filter: brightness(0) invert(1);
}

footer ul.footer-list {
    list-style: disc;
    padding-left: 25px;
}

footer ul.footer-list li.nav-item a.nav-link {
    padding: 0;
    /* font-size: 18px; */
    color: #fff;
}

footer .contact .icon {
    min-width: 40px;
    height: 40px;
    border: 2px solid #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

footer .contact p {
    font-size: 17px;
    font-weight: 600;
}

footer .social-icon {
    display: flex;
    gap: 8px;
}

footer .social-icon .icon {
    width: 30px;
    height: 30px;
    background: #ff6636;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: #1e1e20;
    text-decoration: none;
}

.bg-purple {
    background-color: var(--light-purple);
}

.text-gray {
    color: rgb(43, 41, 41);
}

.gender_box,
.room-type label {
    display: flex;
}

.gender_box div {
    width: 100%;
    height: 100%;
}

.gender_box div label {
    min-width: 100px;
    border: 1px solid var(--second-color);
    color: var(--second-color);
    border-radius: 30px 0 0 30px;
    display: flex;
    font-weight: 600;
    gap: 5px;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    background-color: #fff;
    cursor: pointer;
    width: 100%;
    height: 50px;
}

.gender_box label i,
.room-type label i {
    width: 25px;
    height: 25px;
    background: #fff;
    color: var(--second-color);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
}

.gender_box div:last-child label {
    border-radius: 0 30px 30px 0;
}

.gender_box input:checked + label {
    background-color: var(--second-color);
    color: #fff;
}

.room-type label {
    min-width: 100px;
    border: 1px solid var(--main-color);
    border-radius: 30px;
    display: flex;
    font-weight: 600;
    gap: 5px;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    background-color: #fff;
    cursor: pointer;
    height: 50px;
    color: #555555;
}

.room-type input:checked + label {
    background-color: var(--main-color);
    color: #fff;
}

.search-input .icon {
    width: 40px;
    border: 1px solid var(--second-color);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: end;
    color: var(--second-color);
}

.search-input input {
    height: 45px;
    border-color: var(--second-color);
    border-left: 0;
}

.search-input input:focus {
    border-color: var(--second-color);
    box-shadow: 0 0 0 0.25rem #ff663636;
}

.search-input input::placeholder {
    font-weight: 600;
}

.search-input button {
    background-color: var(--main-color);
    color: #fff;
    min-width: 60px;
    border-radius: 30px;
    font-size: 20px;
}

.filter .list-group-flush .list-group-item {
    border: 0;
    padding: 0 1rem;
}

.aminities {
    display: flex;
    margin: 15px auto;
    gap: 25px;
    flex-wrap: wrap;
}

.aminities .d-flex i {
    color: var(--second-color);
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    background-color: #ff653665;
    border-radius: 30px;
}

.aminities .d-flex small {
    margin-top: 5px;
    font-size: 10px !important;
}

.btn-outline-second {
    border-color: var(--second-color);
    color: var(--second-color);
}

.btn-outline-second:hover {
    color: #fff !important;
    background-color: var(--second-color) !important;
}

.library-details .sharing-radio label {
    min-width: 80px;
    padding: 3px 12px;
    border: 1px solid var(--second-color);
    border-radius: 30px;
    color: var(--second-color);
    text-align: center;
}

.library-details .sharing-radio input:checked + label {
    color: #fff;
    background-color: var(--second-color);
}

.library-details .card {
    border-radius: 20px;
    height: 100%;
}

.library-details .amazing-amenities .tile {
    flex-basis: 33%;
    flex-grow: 0;
}

.library-details .amazing-amenities .icon {
    width: 50px;
    height: 50px;
    border-radius: 5px;
}

.library-details .amazing-amenities span {
    display: block;
    color: var(--main-color);
    font-size: 14px;
    font-weight: 600;
}

.intersted-in label {
    border-color: var(--second-color);
    color: var(--second-color);
    min-width: 120px;
    width: 100%;
}

.intersted-in input:checked + label,
.intersted-in label:hover {
    border-color: var(--second-color) !important;
    background-color: var(--second-color) !important;
    color: #fff !important;
}

.contact-us .form-control {
    font-size: 18px;
    padding: 20px;
}

.contact-us .form-control::placeholder {
    font-weight: 600;
}

.contact-us input.form-control {
    height: 50px;
    border-color: transparent;
    background-color: #ececec;
}

.contact-us textarea.form-control {
    border-color: transparent;
    background-color: #ececec;
}

.contact-us .btn-contact {
    background-color: var(--second-color);
    color: #fff;
    font-weight: 600;
    text-transform: none;
    border-radius: 5px;
    padding: 10px 20px;
}

.contact-us .btn-contact:hover {
    background-color: var(--second-color);
}
.contact-us .list .icon {
    min-width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: var(--second-color);
    border: 2px solid var(--second-color);
}

.register .form-control {
    font-size: 18px;
    padding: 20px;
}

.register input.form-control {
    height: 50px;
    border-color: transparent;
    border-top: none;
    border-left: none;
    border-right: none;
    background-color: transparent;
    border-bottom: 1px solid rgb(212, 210, 210);
    border-radius: 0;
}

.register span.input-group-text {
    border: none;
    background-color: transparent;
    color: blue;
    font-size: 18px;
}

.library-filter-page {
    background-color: #ecebfc;
    /* min-height: 100vh; */
    /* overflow: hidden; */

    /* top: 85px; */
    /* position: sticky; */
    /* background-image: url(../img/light-purple-bg.jpg); */
    /* background-repeat: repeat-y; */
    /* background-size: contain; */
    /* background-blend-mode: soft-light; */
}

#libraryList {
    height: calc(100vh -145px);
    overflow: auto;
    /* scrollbar-width: none; */
}

#libraryList .card,
.filter.card {
    border: none;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

#libraryList img.library-imge {
    aspect-ratio: 1;
    object-fit: cover;
    max-height: 200px;
}

#libraryList .icon img {
    width: 2.5rem;
    height: 2.5rem;
    aspect-ratio: 1;
    object-fit: cover;
}

.pagination-box {
    border: none;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.fs-0 {
    font-size: 55px;
}

.about-us .new-features {
    width: 85px;
    height: 85px;
    padding: 15px;
    background-color: var(--main-color);
    border-radius: 5px;
}

.custom .pagination {
    margin-bottom: 0;
}

@keyframes movement {
    0% {
        top: -50px;
    }
    25% {
        top: 0;
    }
    50% {
        top: 50px;
    }
    75% {
        top: 0;
    }
    100% {
        top: -50px;
    }
}

.movement {
    animation-name: movement;
    animation-duration: 4s;
    animation-delay: 2s;
    animation-iteration-count: infinite;
}

.search-top input:checked + label {
    background-color: var(--main-color);
    color: #fff;
}

.search-top input:checked + label::before {
    color: var(--main-color);
}

.word-wrap {
    width: 80%;
    white-space: normal;
    word-wrap: break-word;
}

@media (max-width: 991.98px) {
    footer p,
    footer a {
        font-size: 12px !important;
    }

    footer .contact .icon {
        min-width: 25px;
        height: 25px;
    }
    footer .contact .icon i {
        font-size: 10px !important;
    }
    footer .social-icon .icon {
        width: 20px;
        height: 20px;
    }
    .search {
        top: 0px;
    }
    .search-top {
        top: -55px;
    }
}

.slider-container .pointer-label.high {
    right: 0;
}
.slider-container .pointer-label {
    font-size: 12px !important;
    color: #3235b7 !important;
}
.slider-container .back-bar .selected-bar {
    background-color: #3235b7 !important;
    background-image: none !important;
}

@media (max-width: 991.98px) {
    .search-padding-top {
        padding-top: 80px;
        padding-bottom: 40px;
    }
}

.invalid-feedback {
    display: block;
}

@media (max-width: 508px) {
    .switch-slider-label {
        font-size: 9px !important;
        width: 22px !important;
    }
}
