:root {
    --white: #fff;
    --black: #000;
    --btn-bg: #B99D75;
    --border-radius: 50px;
    --border: #B99D75;
    --bg-color: #F3F3F0;
    --p-color: #333632;
    --h2--color: #1A1B1A;
    --green: #53624E;
}

* {
    margin: 0px;
    padding: 0px;

}
*,
*::before,
*::after {
  box-sizing: border-box;
}
@font-face {
    font-family: "Friday-vibes";
    src: url("friday_vibes/Friday-Vibes.ttf");
}
.friday-vibes{
    font-family: "Friday-vibes" !important;
    font-size: 80px;
}
@media(max-width:767px) {
    .friday-vibes{
        font-family: "Friday-vibes" !important;
        font-size: 48px;
    }
}
.manrope{
    font-family: "Manrope" !important;
}
.lora{
    font-family: "Lora" !important;
}
.green{
    color: var(--green) !important;
}
.light-grey{
    color: #333632;
}
.margin-l-200{
    margin-left: 10% !important;
}
.font-14{
    font-size: 14px;
}
.font-25{
    font-size: 25px;
    font-weight: 600;
}
.font-16{
    font-size: 16px;
}
/* Define scrollbar styles for WebKit browsers (Chrome, Safari) */
::-webkit-scrollbar {
    width: 5px; /* Adjust the width of the scrollbar */
}

::-webkit-scrollbar-track {
    background: #f1f1f1; /* Set the background color of the scrollbar track */
}

::-webkit-scrollbar-thumb {
    background: var(--btn-bg); /* Set the color of the scrollbar thumb */
}


::-webkit-scrollbar-track {
    background: #f1f1f1; /* Set the background color of the scrollbar track */
}

::-webkit-scrollbar-thumb {
    background-color: var(--btn-bg); /* Set the color of the scrollbar thumb */
}

::-webkit-scrollbar {
    width: 5; /* Hide the scrollbar */
}



body,
html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family: "Manrope", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    background-color: var(--white);
    color: var(--black);
}

h2 {
    font-family: "Lora", serif;
    font-weight: normal;
    font-size: 56px;
    color: var(--h2--color);
}

h3 {
    font-family: "Lora";
    font-weight: normal;
    font-size: 20px;
}

h5{
    color: var(--h2--color);
    font-family: "Lora";
}

p {
    font-size: 20px;
    color: var(--p-color)
}
hr{
    margin: 5px;
}
.flex{
    display: flex;
}
/* Navigation styles */
.navbar-1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: transparent;
    font-size: 14px;
    padding: 1rem;
    position: absolute;
    top: 0;
    z-index: 1;
    width: 80%;
    left: 50%;
    transform: translateX(-50%);
}

.nav-items,
.nav-right {
    display: flex;
    list-style: none;
    padding-left: 0px;
    align-items: center;
}

.nav-item {
    padding: 0 1rem;
    color: white;
    text-decoration: none;
}
.nav-toggle{
    position: absolute;
    right: 0;
    top: 25px;
}

.nav-items {
    list-style: none;
    padding: 0;
}

.nav-item {
    display: inline-block;
    margin-right: 20px;
    position: relative;

}

.nav-item a {
    text-decoration: none;
    position: relative;
    color: var(--white);
}

.nav-item a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0;
    height: 2px;
    background-color: #aaa;
    transition: width 0.3s ease;
}

.nav-item a:hover::after {
    width: 100%;
}
.mobile-nav {
    display: none;
}

.logo {
    flex-grow: 1;
    text-align: center;
    color: white;
}
.logo img{
    position: absolute;
    left: 43%;
    top: 20px;
}

/* Header section styles */
.header {
    position: relative;
    width: 100%;
    height: 80vh;
    /* background-image: url("images/Shilpi-pool.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center; */
    background-color: #3f3f3f;
}

.slider {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    position: relative;
}

.header-banner {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.header-banner.active {
    opacity: 1;
}
.header-banner.active .header-text {
    opacity: 0;
    transition: opacity 1s ease-in-out;
    animation: slideInText 1s forwards;
    font-size: 35px;
}

@keyframes slideInText {
    from {
        opacity: 0;
        top: 90%;
        font-size: 35px;

    }
    to {
        opacity: 1;
        top: 80%;
        font-size: 38px;

    }
}


.header-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: bottom;
}
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Adjust the color and opacity as needed */
}
.centered-text {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: rgb(255, 255, 255);
    text-align: center;
    font-size: 38px;
}
.header-text {
    font-family: "Lora", serif;
    /* line-height: 0.3; */
}

.header-text p{
  font-size: 20px;
  margin-top: 20px;
  color: var(--white)
}
.header-text h1{
  font-size: 56px;
  width: 90vw;
  margin: 0px !important;
  font-weight: lighter;
}
.reserve-now-btn {
    padding: 18px 30px;
    border-radius: 50px;
    color: var(--white);
    border: none;
    transition: all 0.3s linear;
    font-family: "Manrope", serif;
    background-color: var(--btn-bg);
}
.reserve-now-btn:hover{
    background-color: #3e0505;
    color: var(--white);
}



.nav-toggle {
    display: none;
}



.lora-italic {
    font-family: "Lora", serif;
    font-style: italic;
    font-weight: normal;
}

.divider {
    display: block;
    margin: auto;
}

/* first section after header section */
/*slider section after hero */

#amenities {
    opacity: 0;
    transition: opacity 1s ease-in-out;
    animation: slideIn 1.2s forwards;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(50px);

    }
    to {
        opacity: 1;
        transform: translateY(0px);

    }
}

.slider-section .cursive-text{
    font-size: 52px;
    font-weight: normal;
}
#slider-container {
  width: 100%;
  overflow: hidden;
  position: relative;
}

#slides {
  display: flex;
  gap: 20px;
  background-color: var(--bg-color);

}

.slide1 {
  flex: 0 0 25%; /* Display four slides at a time */

}

.slide1 img {
  width: 100%;
}

.slide1 .caption {
  /* position: absolute;
  bottom: 0; */
  width: 100%;
  background-color: var(--white);
  color: var(--black);
  padding: 10px;
  font-weight: 600;
  text-align: center;

}

#prev,
#next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255);
  color: rgb(0, 0, 0);
  border: none;
  padding: 10px 15px;
  border-radius: 50px;
  cursor: pointer;
}

#prev {
  left: 10px;
}

#next {
  right: 10px;
}
#slider-container .cursive-text{
    font-size: 26px;
}


/* Card */

.cards {
  font-family: "Lora";
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2%;
}

.cards_item {
  display: flex;
  width: 49%;
  /* padding: 1rem; */

}


.card_image {
  position: relative;
  max-height: 250px;
}

.card_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* .card_price {
  position: absolute;
  bottom: 8px;
  right: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 45px;
  border-radius: 0.25rem;
  background-color: #c89b3f;
  font-size: 18px;
  font-weight: 700;
} */

.card_price span {
  font-size: 12px;
  margin-top: -2px;
}

.note {
  position: absolute;
  top: 8px;
  left: 8px;
  padding: 4px 8px;
  background-color: #ffffff;
  font-size: 14px;
}

/* @media (min-width: 40rem) {
  .cards_item {
    width: 50%;
  }
} */

/* @media (min-width: 56rem) {
  .cards_item {
    width: 33.3333%;
  }
} */

.card1 {
  /* background-color: white; */
  /* border-radius: 0.25rem; */
  /* box-shadow: 0 20px 40px -14px rgba(0, 0, 0, 0.25); */
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.5s ease-in-out;
}
.card1:hover{
    transform: scale(1.02);
}
.card_content {
  position: relative;
  /* padding: 16px 12px 32px 24px; */
  margin: 16px 8px 8px 0;
  max-height: 290px;
  /* overflow-y: scroll; */
}
.card_content .btn, .images-section .btn{
    color: #1A1B1A;
    font-family: "Lora";
}
.images-section hr{
    background-color: #B99D75;
    color: #B99D75;
    height: 1px;
}
.images-section h3{
    font-size: 36px;
}
/* .card_content::-webkit-scrollbar {
  width: 8px;
}

.card_content::-webkit-scrollbar-track {
  box-shadow: 0;
  border-radius: 0;
}

.card_content::-webkit-scrollbar-thumb {
  background: #c89b3f;
  border-radius: 15px;
} */

.card_title {
  position: relative;
  margin: 0 0 24px;
  padding-bottom: 10px;
  text-align: left;
  font-size: 30px;
}

/* .card_title::after {
  position: absolute;
  display: block;
  width: 50px;
  height: 2px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: #c89b3f;
  content: "";
} */


.card_text p {
  margin: 0 0 24px;
  font-size: 14px;
  line-height: 1.5;
}

.card_text p:last-child {
  margin: 0;
}

.suite{
    gap: 20px;
    margin-bottom: 20px;
}

.card_content a::after{
    content: '';
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0;
    height: 2px;
    background-color: var(--border);
    transition: width 0.3s ease;
}
.card_content a:hover::after {
    width: 80px;
}



/*images section */

.reasons {
    position: relative;
}
.reasons .text-over-image p{
    font-family: "Manrope";
}
.reasons .text-over-image h2, .reasons .text-over-image p{
    color: var(--white);
}
.text-over-image {
    position: absolute;
    top: 200px;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    padding: 20px;
    z-index: 1;
    line-height: 1;
    /* background-color: rgba(0, 0, 0, 0.5); */
}
.images-section-all{
    margin-top: -26%;
}
.images-section-all div:nth-child(2){
    padding-top: 200px;
}
.text-over-image h2, .text-over-image p {
    /* margin: 0; */
    font-family: "Lora";
}

.text-over-image span {
    display: block;
    font-size: 14px;
    margin-top: 10px;
    font-family: "Manrope";
}

/* .reasons{
    height: 100vh;
} */
.reasons .images-section{
    gap: 50px;

}
/*
.reasons .images-section div:nth-child(2){
    padding-top: 150px;
} */

.images-section div{
    flex: 1;
    text-align: center;
}
.images-section p{
    /* width:420px; */
    margin: auto;
    text-align: center;
    font-size: 14px;
}




/*packages Section */



/* Video section */
.video-section  {
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.video-section h2,
.video-section p {
    /* flex: 1; */
    margin: auto;
}
.video-section .service p{
    font-size: 14px;
}

.video-section {
    position: relative;
    overflow: hidden;
}

.video-section-text {
    margin-bottom: 50px;
    margin-top: 80px;
}

.video-container {
    position: relative;
    max-width: 100%;
    overflow: hidden;
}
.video-section .reserve-now-btn{
    font-family: "Lora";
    border-radius:0px;
    padding: 18px 48px;
    border-radius: 50px;
}
.video {
    width: 100%;
    display: block;
    object-fit: cover;
}
.cursive-text{
    font-family: "La Belle Aurore", cursive;
    font-size: 26px;
}



.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
}

.play-button svg {
    width: 64px;
    height: 64px;
    fill: #fff;
}

.waves {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid #fff;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.5;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.5;
    }
}

.card-1 {
    border: 1px solid #4d4d4d5d;
    padding: 20px;
    height: 230px;
}

.icon-invert {
    filter: invert(100%);
    margin-bottom: 10px;
}
.card-1 .icon {
  margin-bottom: 10px;
}
.experiences .reserve-now-btn {
    display: block;
    margin: 50px auto;
    background-color: var(--btn-bg);
    color: var(--white);
    padding: 10px 20px;
    transition: background-color 0.3s linear;
    font-family: "Manrope", serif;
}
.experiences .reserve-now-btn:hover{
    background-color: #3e0505;
}
.horse-section div{
    flex:1;
    justify-content: center;
}
.horse-section{
    align-items: center;
}

.bg-color-cream{
  background-color: #F3F3F0;
}

/* services */
.grid-section {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Two columns */
    grid-template-rows: repeat(3, auto); /* Three rows */
    gap: 10px; /* Gap between grid items */
    column-gap: 40px;
}

.grid-item {
    /* background-color: #f0f0f0; */
    padding: 15px 0px;
    /* border: 1px solid #ccc; */
}
.service{
    gap: 10px;
}
.services-section{
    /* gap: 50px; */
    margin: auto;
}


/* Contact section */
.contact-section p, .contact-section h2{
    color:var(--white);
}
.contact-section a{
    color: var(--white)
}
.contact-section{
  background-color: #3f3f3f;
  background-image: url("images/contact-bg.jpg");
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
  color: var(--white)
}
.contact-icon {
  width: 50px;
  height: 50px;
  background-color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}

.icon-text {
  text-align: center;
  margin-top: 10px;
}
.contact-icon i{
  color: black;
  /* font-size: 18px; */
}
/* Testimonial Section */
.testimonials-section .card-img-top {
    margin-top: 10px;
    padding: 2px 20px;
    max-width: 50%;
}

.stars-count {
    font-weight: normal;
    margin-right: 5px;
    font-size: 12px;
}
.owl-carousel .owl-item img {
  display: block;
  width: 100%;
  height: auto;

}

.owl-nav .owl-prev{
    position: absolute;
    top: 40%;
    width: 30px;
    left: -20px;
}
.owl-nav .owl-next{
    position: absolute;
    top: 40%;
    right: 250px;
    width: 20px;
}
.owl-nav .owl-prev span, .owl-nav .owl-next span{
    font-size: 30px;
    background-color: white;
    border-radius: 50px;
    padding: 6px 18px;

}

/* Footer Section */

footer.footer{
    background-color: var(--bg-color);
    color: var(--black);
    background-image: url("images/Amantra_Shilpi_Resort.png");

}

ul{
    padding-left: 0px;
}
.footer-menu ul>li{
    list-style-type: none;
    line-height: 30px;

}
.footer-menu ul a, .address p>a{
    text-decoration: none;
    color: var(--black);
    font-size: 14px;
}
.footer-menu ul a:hover, .address p>a:hover{
    color: var(--btn-bg)
}
.footer-last div:nth-child(2){
    gap:20px;

}
footer p{
    font-size: 14px;
}

a{
    transition: color 0.2s linear;
    text-decoration: none;
    color:var(--black);
}
a:hover{
    color: var(--btn-bg);
}
.footer-last{
    font-size: 12px;
}
.footer-logo-section p{
    padding: 0px;
}
.footer-logo{
    width: 250px;
}

/* Form Model */

.modal-body{
    background-color: var(--black) !important;
}
input, select, textarea{
    background-color: var(--white) !important;
}
.modal-title{
    display: block;
    margin: auto;
}
.modal-header .close{
    position: absolute;
    top: 10px;
    right: 10px;
}
.form-message{
    color: var(--white);
}


/* The Modal (background) */
.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 46.25%; /* 16:9 aspect ratio for responsive videos */
    overflow: hidden;
}

.video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
}

.play-icon {
    width: 50px;
    height: 50px;
}

.video-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
}

.video-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.video-close {
    position: absolute;
    top: 0px;
    right: 10px;
    font-size: 24px;
    color: #fff;
    cursor: pointer;
}
#videoFrame{
    width:80vw;
    height:70vh;
}

.contact-section h2, .services h2{
    font-size: 38px;
}

/*form Styles*/
.has-error input,
.has-error textarea,
.has-error select {
    border: 1px solid red; /* Change the border color to red */
}
.list-unstyled {
  color: red;
}
/* Mobile and Tablet Reponsive styles */
@media (max-width: 1020px) {
    .margin-l-200{
        margin-left: 0px !important;
    }
    .slider-section h2>.cursive-text{
        font-size: 36px !important;
        font-weight: normal;
    }
    .cursive-text{
        font-size: 20px !important;
        font-weight: normal;
    }
    .nav-items,
    .nav-right {
        display: none;
    }

    .nav-item {
        text-align: center;
        padding: 1rem;

    }
    .mobile-nav{
        display: none;
    }
    .mobile-nav .nav-item, .mobile-nav .nav-items{
        display: block;
    }
    .navbar-1 {
        align-items: flex-start;
        width: 90%;
    }
    .logo{
        position: absolute;
        left: 0;
    }
    .nav-toggle {
        display: block;
        color: white;
        cursor: pointer;
    }
    .images-section-all{
        margin-top: 20px;
    }
    .images-section-all div:nth-child(2){
        padding-top: 0px;
    }
    .owl-nav .owl-prev{
        position: static;
    }
    .owl-nav .owl-next{
        position: static;

    }
    .owl-nav .owl-prev span, .owl-nav .owl-next span{
        font-size: 30px;
        background-color: rgba(255, 255, 255, 0);
        /* border-radius: 50px;
        padding: 6px 18px; */

    }
}
@media screen and (max-width: 1280px) {
    .images-section{
        flex-direction: column;
        /* background-image: url(images/reasons-to-visit.jpg);
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover; */
    }
    .images-section-all{
        margin-top: 20px;
    }
    .images-section-all div:nth-child(2){
        padding-top: 0px;
    }
}
@media screen and (max-width: 767px) {
    /* .header{
        height: 60vh;
    }
    .slider{
        height: 60vh;
    } */
    .font-25{
        font-size: 18px !important;
    }
    .header-text p{
        font-size: 14px;
    }
    .header-text h1{
      font-size: 36px !important;
      margin: 0px !important;
    }
    .header-text {
      font-family: "Lora", serif;
  }
    .logo img{
      position: absolute;
      left: 43%;
      top: 0px;
  }
  .card_title{
    font-size: 22px;
  }
.text-over-image{
    top:100px;
}
.text-over-image p{
    font-size: 12px;
}
  .reasons .images-section div:nth-child(2){
    padding-top: 0px;
}
.images-section-all{
    margin-top: 0px;
}
.images-section-all div:nth-child(2){
    padding-top: 0px;
}
.images-section-all{
    margin-top: 20px;
}
.images-section h3{
    font-size: 24px;
}
    .slide .slide__img img{
      object-fit: cover;
      zoom: 0.7;
      object-position: top;
    }
    .footer-logo-section p{
      padding: 0px;
    }
    .footer{
        text-align: center;
    }
    .container{
      padding: 15px;
    }
    .services-section div{
        padding:0px;
        display: flex;
        flex-direction: column;
        justify-content: center !important;
        align-items: center !important;
        text-align: center;
    }
    .services-section .grid-item p{
        display: none;
    }
    .services-section .grid-item h5{
        font-size: 16px;
    }
    .services-section .grid-item img{
        width: 38px;
    }
    .packages h2, .card h3 {
      text-align: center;
    }
    .nav-toggle .fas{
      font-size: 25px;
    }
    .slider, .header{
      height: 70vh;
    }
    .slide .other-sec{
      /* margin-top: 0px; */
      display: none;
    }
    .slide .slide__content{
      top: 25%;
    }
    .card-1{
      height: unset;
    }

    /* .other-sec img {
      width: 272px;
  }
    .bg-color-cream .container{
      padding: 5px;
    } */
    .footer-links .footer-menu{
      display: none;
    }
    h2{
      font-size: 28px;
    }
    p{
      font-size: 14px;
    }
    .footer-last .terms-conditions{
      justify-content: center !important;
    }
    .contact-section div:nth-child(1){
        text-align: center;
    }
    .footer-menu{
      display: none;
    }
    .down-arrow {
        top: 90%;
    }
    .card-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-1 {
        grid-template-columns: repeat(1, 1fr);
    }
    .navbar-1 {
        justify-content: space-between;
    }

    .nav-items {
        display: none;
    }
    .mobile-nav .nav-item, .mobile-nav .nav-items{
        display: block;
        text-align: left;
    }
    .mobile-nav {
        background-color: #ffffff;
        color: var(--white);
        position: absolute;
        top:50px;
        right: 0px;
        z-index: 1;
        height: 280px;
        width: 220px;
        display:none;
        padding-left: 15px;
        padding-right: 5px;
        padding-top: 20px;
    }
    .reserve-now-btn{
        padding: 5px 15px;
    }
    #videoFrame{
        width:460px;
        height:215px;
    }

    .slider-section{
        margin-left: 0px !important;
    }.slider-section .text-left{
        text-align: center !important;
    }
}
@media(max-width:768px){
    .cards_item {
        display: flex;
        width: 100%;
        gap: 50px;
      }
      .nav-item a{
        color: var(--black);
    }
}

@media screen and (max-width: 480px) {
    .card-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}


.btn-enquire{
    background-color: var(--border) !important;
    color: var(--white) !important;
}
.btn:active, .btn:focus{
    box-shadow: none !important;
    outline: none !important;
    border-color: none;
}

.btn{
    font-weight: bold;
}


/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.zoom-in {
    opacity: 0;
    transform: scale(0.5);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-in-up.active {
    opacity: 1;
    transform: translateY(0);
}

.zoom-in.active {
    opacity: 1;
    transform: scale(1);
}
@keyframes floatAnimation {
    0% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-10px); /* Adjust the amount of upward movement */
    }
    100% {
      transform: translateY(0);
    }
  }

  .floating-container {
    /* background-color: #ffffff;  */
    padding: 20px;
    border-radius: 10px;
    /* box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); Box shadow for a subtle elevation effect */
    animation: floatAnimation 3s infinite ease-in-out; /* Adjust the duration and timing function as needed */
  }

    /*--dev-alok-css--*/
.bg-color-cream .cards .card_image .note{
    display: none !important;
}
  
