.text-warning {
    color: rgb(240, 98, 15);
}

.bg-war {
    color: rgb(221, 123, 11);
}

.text-dark {
    color: rgb(5, 5, 63);
}

.text-light {
    color: rgba(32, 141, 4, 0.836);
}

ul {
    list-style: none;
}


/*--====== Sidebar ======--*/
#sidebar {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    max-width: 300px;
    width: 80%;
    height: 100%;
    padding: 2rem;
    background-color: black;
    box-shadow: 0 10px 20px -4px #000;
    overflow-x: hidden;
    overflow-y: auto;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-100%);
    transition: opacity 0.3s ease, visibility 0.2s ease, transform 0.3s ease;
}

@media (max-width:670px) {
    .width {
        max-width: 130px !important;
    }
}

.z-index {
    z-index: 10000022;
}

.position-sticky {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 2px -2px gray;
}

/* when the sidebar has 'show' class */
#sidebar.show {
    pointer-events: all;
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.sidebar_content {
    padding: 2.8rem 0;
    pointer-events: none;
    /* so that the Sidebar does not get closed while clicking on sidebar_content */
}

.sidebar_content a {
    pointer-events: all;
    /* so that all the <a> inside sidebar_content are clickable */
}

.sidebar_body {
    border-top: 1px dashed var(--text-color);
    border-bottom: 1px dashed var(--text-color);
}

.side_navlinks ul {
    display: grid;
    gap: 2rem;
}

.side_navlinks li a {
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

.side_navlinks a:hover {
    opacity: 1;
}

/*---- Sidebar-Toggler ----*/
.sidebar_toggler {
    top: 4vh;
    right: 3vw;
    width: 1.75rem;
    height: 1.3rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    overflow: hidden;
}

.sidebar_toggler span {
    background-color: #ddd;
    width: 100%;
    height: 2.4px;
    transition: all 0.3s ease;
    pointer-events: none;
    /* so that it doesn't overlap the sidebar_toggler */
}

/* if the sidebar has 'show' class then their adjacent-sibling (i.e., sidebar_toggler) will... */
#sidebar.show+.sidebar_toggler {
    justify-content: center;
}

#sidebar.show+.sidebar_toggler span {
    margin-top: -1.2px;
    margin-bottom: -1.2px;
}

#sidebar.show+.sidebar_toggler span:first-child {
    transform: rotate(45deg);
}

#sidebar.show+.sidebar_toggler span:nth-child(2) {
    opacity: 0;
    transform: translateX(-100%);
}

#sidebar.show+.sidebar_toggler span:last-child {
    transform: rotate(-45deg);
}

.text-warning {
    color: rgb(221, 123, 11) !important;
}

.bg-war {
    background-color: rgb(240, 98, 15) !important;
}

.text-dark1 {
    color: rgb(5, 5, 63) !important;
}

.text-light1 {
    color: rgba(23, 23, 206, 0.836) !important;
}

.bg-custom {
    background-image: url('imgs/background.jpg');
    background-position: center;

}

.round {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.text-card {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    word-wrap: break-word;
}

/* .hover {
    animation-duration: 2s;
    animation-iteration-count: infinite;
    transform-origin: bottom;
}

.hover:hover {
    animation-name: bounce;
    animation-timing-function: ease;
    color: blue !important;
} */

@keyframes bounce {
    0% {
        transform: translateY(6px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(6px);
    }
}

.hover2 {
    transition: all ease-in-out .5s;
}

.hover2:hover {
    border-bottom: 10px solid blue !important;

}

.z-index {
    z-index: 1000;
    bottom: -110px;
    left: 50%;
    transform: translate(-50%);
}



.object {
    object-fit: cover;
}

.success {
    color: rgba(32, 141, 4, 0.836);
}

.bgsuccess {
    background-color: rgba(32, 141, 4, 0.836);
    border-radius: 20px;
    color: white;
}

.bg-rain {
    background-image: linear-gradient(blue, purple, black);
    border-radius: 20px;
    padding-left: 20px;
    padding-right: 20px;
}

.fs {
    font-size: 12px;
}

.hover3:hover {
    color: blue !important;
}

@media (max-width:550px) {
    .text-w {
        font-size: 13px !important;
    }

    .wi {
        width: 30px !important;
        color: #8f7d7d88;
    }

}

.lh {
    line-height: 3px !important;
}

.shadow-sm:hover {
    box-shadow: #8f7d7d88 5px 5px 30px !important;
}


.btn-a:hover {
    color: blue !important;
}

@media(max-width:450px) {
    .text-center-at {
        text-align: center;
        align-items: center;
        justify-content: center;
    }
}

@media(min-width:550px) {
    .text-enda {
        text-align: end !important;
    }

}

.border-radius-30 {
    border-radius: 30px;
}

.text-card {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    word-wrap: break-word;
}

.border-cus {
    box-sizing: border-box;
    border-right: 2px solid black;
}

.bg-custom3 {
    background-color: rgba(78, 78, 238, 0.26);
}

.cus-radius {
    border-radius: 30px !important;
}

#faq {

    margin: auto;
    padding: 0 15px;
    text-align: center;
}

section.faq {
    padding-top: 2em;
    padding-bottom: 3em;
}

#faq ul {
    text-align: left;
}

.transition,
p,
ul li i:before,
ul li i:after {
    transition: all 0.3s;
}

#faq .no-select,
#faq h2 {
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    user-select: none;
}

#faq h1 {
    color: #000;
    margin-bottom: 30px;
    margin-top: 0;
}

#faq h2 {
    color: #cc071e;
    font-family: 'hm_light', sans-serif;
    font-size: 20px;
    line-height: 34px;
    text-align: left;
    padding: 15px 15px 0;
    text-transform: none;
    font-weight: 300;
    letter-spacing: 1px;
    display: block;
    margin: 0;
    cursor: pointer;
    transition: .2s;
}

#faq p {
    color: #333;
    text-align: left;
    font-family: 'hm_light', sans-serif;
    font-size: 14px;
    line-height: 1.45;
    position: relative;
    overflow: hidden;
    max-height: 250px;
    will-change: max-height;
    contain: layout;
    display: inline-block;
    opacity: 1;
    transform: translate(0, 0);
    margin-top: 5px;
    margin-bottom: 15px;
    padding: 0 50px 0 15px;
    transition: .3s opacity, .6s max-height;
    hyphens: auto;
    z-index: 2;
}

#faq ul {
    list-style: none;
    perspective: 900;
    padding: 0;
    margin: 0;
}

#faq ul li {
    position: relative;
    overflow: hidden;
    padding: 0;
    margin: 0;
    /*padding-bottom: 4px;*/
    /*padding-top: 18px;*/
    background: #fff;
    box-shadow: 0 3px 10px -2px rgba(0, 0, 0, 0.1);
    -webkit-tap-highlight-color: transparent;
}

#faq ul li+li {
    margin-top: 15px;
}

#faq ul li:last-of-type {
    padding-bottom: 0;
}

#faq ul li i {
    position: absolute;
    transform: translate(-6px, 0);
    margin-top: 28px;
    right: 15px;
}

#faq ul li i:before,
ul li i:after {
    content: "";
    position: absolute;
    background-color: #cc071e;
    width: 3px;
    height: 9px;
}

#faq ul li i:before {
    transform: translate(-2px, 0) rotate(45deg);
}

#faq ul li i:after {
    transform: translate(2px, 0) rotate(-45deg);
}

#faq ul li input[type=checkbox] {
    position: absolute;
    cursor: pointer;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0;
    touch-action: manipulation;
}

#faq ul li input[type=checkbox]:checked~h2 {
    color: #000;
}

#faq ul li input[type=checkbox]:checked~p {
    /*margin-top: 0;*/
    max-height: 0;
    transition: .3s;
    opacity: 0;
    /*transform: translate(0, 50%);*/
}

#faq ul li input[type=checkbox]:checked~i:before {
    transform: translate(2px, 0) rotate(45deg);
}

#faq ul li input[type=checkbox]:checked~i:after {
    transform: translate(-2px, 0) rotate(-45deg);
}

.a,
.a:visited,
.a:focus,
.a:active,
.a:link {
    text-decoration: none;
    outline: 0;
}

.a {
    color: currentColor;
    transition: .2s ease-in-out;
}



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

.img {
    vertical-align: middle;
    height: auto;
    width: 100%;
}

.bg-image {
    background-image: url(imgs/stripe-g1dc569223_1280.png);
    background-position: center;
}

.lh {
    line-height: 3px !important;
}

.shadow-sm:hover {
    box-shadow: #8f7d7d88 5px 5px 30px !important;
}

.image {
    height: 220px;
    width: 100%;
    object-fit: cover;
}

.image_dec {
    width: 45px;
    height: 45px;
    border-radius: 50%;
}

.custom-size {
    font-size: 10px;
}

.lh-1 {
    line-height: 7px !important;
}

.border-radius {
    border-radius: 5px;
}

.fs-14 {
    font-size: 14px;
}

.btn-custom {
    border: solid yellowgreen 1px;
    color: yellowgreen;
}

.btn-custom:hover {
    background-color: yellowgreen;
}

.btn-a {
    text-decoration: none;
    color: black;
}

.object-fit {
    object-fit: cover;
}

@media(min-width:900px) {
    .col-md-cus {
        width: 20%;
    }
}

/* search box css */
.search-box {
    display: flex;
    align-items: center;
    position: relative;
}

.search-input {
    padding: 10px 40px 10px 20px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    background-color: #ffffff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    width: 250px;
    transition: width 0.3s;
}

.search-input:focus {
    outline: none;
    width: 300px;
}

.search-button {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    padding: 10px;
    border: none;
    background-color: transparent;
    cursor: pointer;
    transition: color 0.3s;
}

.search-button:hover {
    color: #555;
}

.fa-search {
    font-size: 18px;
    color: #555;
}

@media(min-width:450px) {
    .height {
        height: 190px;
    }

    .logo {
        margin-left: 45px;
    }

}

@media(max-width:45px) {
    .search-box-width {
        width: 180px;
    }


}

.image {
    transition: all 0.3s ease-in-out;
    height: 100%;
    width: 100%;
    z-index: 20;
}

.card-wrapper {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}

.card-wrapper:hover .image {
    filter: blur(1.4px);
    transform: scale(1.5);
    overflow: hidden;
    transition: all 0.3s linear;
}

.card-wrapper:hover .card-bottom {
    transform: translate(0%, -50%);
    transition: all 0.8s ease;
    background-color: rgba(110, 122, 92, 0.7);
}

.card-top {
    position: relative;
    height: 350px;
    z-index: 1;
}

.card-bottom {
    width: 100%;
    position: absolute;
    z-index: 20;
    display: nonee;
    top: 50%;
    background-color: rgba(110, 122, 92, 0);
    padding: 100px 20px;
    color: #fff;
    transform: translate(100%, -50%);
}

.bottom-text {
    font-size: 15px;
}

/* tooltip */




.item-hints .hint {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}



.item-hints .hint:hover .hint-radius {
    opacity: 1;
    visibility: visible;
    -webkit-transform: scale(1);
    transform: scale(1);
}

.item-hints .hint-content {
    background-color: wheat;
    color: black;
    width: 300px;
    position: absolute;
    z-index: 5000;
    padding: 12px 10;
    border-radius: 10px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 0.7s ease, visibility 0.7s ease;
    transition: opacity 0.7s ease, visibility 0.7s ease;
    pointer-events: none;
    visibility: hidden;
    pointer-events: none;
}

.item-hints .hint:hover .hint-content {
    color: black;
    width: 300px;
    position: absolute;
    z-index: 5000;
    padding: 12px 10px;
    border-radius: 10px;
    opacity: 1;
    visibility: visible !important;
    -webkit-transition: opacity 0.7s ease, visibility 0.7s ease;
    transition: opacity 0.7s ease, visibility 0.7s ease;
    pointer-events: none;
    color: black;
    visibility: hidden;
    pointer-events: none;
}

.item-hints .hint-content::before {
    width: 0px;
    bottom: 0;
    left: 0;
    content: "";
    background-color: black;
    height: 1px;
    position: absolute;
    transition: width 0.4s;
}



.item-hints .hint:hover .hint-content::after {
    opacity: 1;
    visibility: visible;
}

.item-hints .hint[data-position="4"] .hint-content {
    bottom: 155px;
}

@media(min-width:900px) {
    .col-md-cus {
        width: 25%;
    }
}

.w-100 {
    width: 100%;
}

.buy-now-button {
    display: inline-block;
    position: relative;
    padding: 10px 20px;
    background: linear-gradient(45deg, #884366, #ff0303);
    color: #fff;
    text-decoration: none;
    overflow: hidden;
    transition: all 0.3s ease;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    bottom: 0;
}

.buy-now-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.buy-now-button:hover {
    padding-right: 50px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.buy-now-button:hover::before {
    width: 100%;
}

.buy-now-button span {
    position: relative;
    z-index: 1;
}

.buy-now-button:hover span {
    transform: translateX(50px);
}

.card-height {
    height: 400px;
}

/* Button styles */
.view-more-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #b10093fb;
    /* background-image: linear-gradient(to right, rgb(185, 0, 161), rgb(255, 0, 0) rgb(222, 255, 144)); */
    color: #fff;
    font-size: 16px;
    text-decoration: none;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.view-more-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: black;
    transition: all 0.3s ease;
    z-index: -1;
}

.view-more-button:hover {
    color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

.view-more-button:hover::before {
    left: 0;
}



.background-body {
    background-color: #0ebfc5bd;
}

.border-btn {
    border-radius: 50% !important;
    border: yellow solid 2px !important;
    background-color: white !important;
}

.bg-image {
    background-image: url(imgs/white-flower-g1da5bde95_1280.jpg);
    background-position: center;
}

.margin {
    margin-left: 40px;
}


@media (max-width:670px) {
    .width {
        max-width: 150px !important;
    }
}






.faq {
    background-color: transparent;
    border: 1px solid #9FA4A8;
    border-radius: 10px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    margin: 20px 0;
    transition: 0.3s ease;
}

.faq.active {
    background-color: #fff;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1), 0 3px 6px rgba(0, 0, 0, 0.1);
}

.faq.active::after,
.faq.active::before {
    color: #2ecc71;
    content: '\f075';
    font-family: 'Font Awesome 5 Free';
    font-size: 7rem;
    position: absolute;
    opacity: 0.2;
    top: 20px;
    left: 20px;
    z-index: 0;
}

.faq.active::before {
    color: #3498db;
    top: -10px;
    left: -30px;
    transform: rotateY(180deg);
}

.faq-title {
    margin: 0 35px 0 0;
}

.faq-text {
    display: none;
    margin: 30px 0 0;
}

.faq.active .faq-text {
    display: block;
}

.faq-toggle {
    background-color: transparent;
    border: none;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    padding: 0;
    position: absolute;
    top: 30px;
    right: 30px;
    height: 30px;
    width: 30px;
}

.faq-toggle:focus {
    outline: none;
}

.faq.active .faq-toggle {
    background-color: #9FA4A8;
}

.faq-toggle .fa-times {
    display: none;
}

.faq.active .faq-toggle .fa-times {
    display: block;
}

.faq-toggle .fa-chevron-down {
    color: #83888E;
}

.faq.active .faq-toggle .fa-chevron-down {
    display: none;
}

.justify {
    display: flex;
    justify-content: space-between;
}

@media screen and (min-width: 1480px) {



    .height-on {
        height: 500px !important;
    }


}

@media screen and (min-width: 900px) {


    .col-md-cus1 {
        width: 20%;
    }


}



@media screen and (max-width: 900px) {


    .fs-cus {
        font-size: 10px !important;
    }

    .fs-9 {
        font-size: 9px !important;
        list-style: none !important;
    }

    .fs-16 {
        font-size: 16px;
    }

    .fs-18 {
        font-size: 18;
    }

    .size {
        height: auto;
    }

    .card-height {
        height: 110;
    }

}

.bg-footer {
    background-color: #ffc2fe;
}

#scrollToTopButton {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    font-size: 24px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    /* Initially hide the button */
}

#scrollToTopButton:hover {
    background-color: #0056b3;
}

.video {
    object-fit: cover;
}

.video-bg {
    position: relative;
}

.top {
    position: absolute;
    z-index: 10;
    width: 98%;
    height: 600px;
}

.text {

    margin: auto;
}

.fs-custom {
    font-size: 50px;
    font-weight: bold;
    font-family: serif;
}

.bg-color {
    background-color: #f77834 !important;
}

.text-none {
    text-decoration: none;
    color: black;
}

.maintanence {
    background-color: black;
    height: 100vh;
    width: 100%;
}

.maint {
    display: flex;
    justify-content: center;
    align-items: center;

    /* position the div in center */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}