/* navbar Css styles */

@import "navbar.css";

@import "footer.css";
/* navbar Css styles */

body{
    overflow-x: hidden;
}
#loading{
    width: 100%;
    height: 100vh;
    background:#d3d3d3 url(all-images/VAyR.gif) no-repeat center;
    background-size: 35px;
    position: fixed;
    z-index: 99999;
    display: flex;
    flex-direction:column ;
    justify-content: center;
    align-items: center;
}
.announcement_card{
    height: 35px;
    width: 100%;
    background-color: #6C5F5B;
    display: flex;
    align-items: center;
    position: absolute;
    z-index: 10;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.announcement_para{
    width: 100%;
    margin: auto;
    color: #ED7D31;
    font-size: 15px;
    text-align: center;
    font-family: 'MuseoModerno', cursive;
    font-weight: 580;
}
.main-navbar{
    background-color: #F6F1EE;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    width: 100%;
    top: 35px;
    z-index: 5;
}
.AH-logo{
    height: 30px;
    width: 100%;
}
@media (min-width: 700px){
    .AH-logo{
        height: 50px;
        width: 100%;
    }
}
.nav-link{
    color: #ED7D31;
    font-weight: bold;
    font-size: 17px;
    font-family: 'MuseoModerno', cursive;
    font-weight: 550;
    cursor: pointer;
}
.nav-link:hover{
    color: #6C5F5B;
    font-weight: 600;
}
.navbar-icon{
    height: 30px;
    margin-right: 10px;
    font-size: 30px;
}
@media (min-width: 1000px){
    .navbar-icon{
        height: 30px;
        margin-right: 5px;
        font-size: 30px;
    }
}
.navbar-offcanvas{
    background-color: #F6F1EE;
    margin-top: 35px;
    z-index: 99999;
}
.navbar-button{
    border-radius: 5px;
    background-color: #6C5F5B;
}
/* Dropdown Button */
.dropbtn {
    background-color: transparent;
    color: #ED7D31;
    font-weight: bold;
    font-size: 17px;
    font-family: 'MuseoModerno', cursive;
    font-weight: 550;
    padding: 8px;
    cursor: pointer;
    border: none;
  }
  
  /* The container <div> - needed to position the dropdown content */
  .dropdown {
    position: relative;
    display: inline-block;
  }
  
  /* Dropdown Content (Hidden by Default) */
  .dropdown-content {
    font-size: 17px;
    font-family: 'MuseoModerno', cursive;
    display: none;
    position: absolute;
    background-color: #F6F1EE;
    min-width: 200px;
    /* box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2); */
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
    z-index: 1;
  }
  
  /* Links inside the dropdown */
  .dropdown-content a {
    color: #ED7D31;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
  }
  
  /* Change color of dropdown links on hover */
  .dropdown-content a:hover {
        background-color: #6C5F5B;
        font-weight: bold;
}
  
  /* Show the dropdown menu on hover */
  .dropdown:hover .dropdown-content {display: block;}
  
  /* Change the background color of the dropdown button when the dropdown content is shown */
  .dropdown:hover .dropbtn {
    color: #6C5F5B;
    font-weight: 600;
}

/* Carousel base class */
.carousel {
    top: 35px;
    margin-bottom: 30px;
  }
  @media (min-width: 1000px){
    .carousel-item {
        height: 512px;
      }
}

  /* Collection */
.collection-section{
    width: 100%;
    height: auto;
    background-color: #fcf7f5;
}
.collection-heading{
    color: #ED7D31;
    font-family:'MuseoModerno', cursive ;
    font-weight: 500;
    margin: 0px;
}
.collection-description{
    color: #6C5F5B;
    font-family:'MuseoModerno', cursive ;
    font-weight: bold;
}
.table-responsive::-webkit-scrollbar{
    width: 0px;
    height: 0px;
}
.table th{
    background-color: transparent;
    width: 120px;
    border: hidden;
}
.product-card{
    background: linear-gradient(
        to bottom,
        transparent 0%,
        transparent 40%,
        #e4e0dc 40%,
        #dfd9d4 60%,
        #d3cabf 60%,
        #cabdad 100%
      ); ;
    width: 250px;
    min-height: 350px;
    border-top-right-radius: 20px;
    border-top-left-radius: 20px;
    /* box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px; */
    cursor: pointer;
}
.product-card:hover{
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    transform: scale(1.01);
}
.product-image{
    width: 100%;
    border-top-right-radius: 20px;
    border-top-left-radius: 20px;
}
.product-image2{
    width: auto;
    height: auto;
    border-top-right-radius: 20px;
    border-top-left-radius: 20px;
}
.product-title{
    font-size: 17px;
    color: #4F4A45;
    font-family:'MuseoModerno', cursive ;
    font-weight: 700;
}
.product-price{
    font-size: 17px;
    color: #102c57;
    font-family:'MuseoModerno', cursive ;
}
.shopnow-button{
  border: 1px solid #6C5F5B;
  color: #F6F1EE;
    background-color: #6C5F5B;
    font-family:'MuseoModerno', cursive ;
}
.shopnow-button:hover{
    background-color: #F6F1EE;
    color: #6C5F5B;
    border: 1px solid #6C5F5B;
}

  /* MARKETING CONTENT
  -------------------------------------------------- */
  .marketing-container{
    background-color: #f1f1f1;
  }
  /* Center align the text within the three columns below the carousel */
  .marketing .col-lg-4 {
    margin-bottom: 1.5rem;
    text-align: center;
    font-family: 'MuseoModerno', cursive;
  }
  /* rtl:begin:ignore */
  .marketing .col-lg-4 p {
    margin-right: .75rem;
    margin-left: .75rem;
    font-family: 'MuseoModerno', cursive;

  }
  /* rtl:end:ignore */
.Marketing-image{
    width: 100%;
    height: 100%;
    max-width: 250px;
    max-height: 250px;
}
.marketing-heading{
    color: #ED7D31;
}
.marketing-para{
    color: #4F4A45;
    font-family: 'MuseoModerno', cursive;
    font-size: 16px;
}
  
  /* Featurettes
  ------------------------- */
  
  /* Thin out the marketing headings */
  /* rtl:begin:remove */
  .featurette-heading {
    letter-spacing: -.05rem;
    font-family: 'MuseoModerno', cursive;
    color: #ED7D31;
  }
  .spanheading{
    color: #bd5c1b;
    font-size: 20px;
}
  
  /* rtl:end:remove */
  
  /* RESPONSIVE CSS
  -------------------------------------------------- */
  
  @media (min-width: 40em) {
    /* Bump up size of carousel content */
    .carousel-caption p {
      margin-bottom: 1.25rem;
      font-size: 1.25rem;
      line-height: 1.4;
      font-family: 'MuseoModerno', cursive;

    }
  
    .featurette-heading {
      font-size: 40px;
      color: #ED7D31;
      font-family: 'MuseoModerno', cursive;

    }
    .spanheading{
      color: #bd5c1b;
      font-size: 30px;
  }
  }
  
  @media (min-width: 62em) {
    .featurette-heading {
      color: #ED7D31;
      margin-top: 7rem;
      font-family: 'MuseoModerno', cursive;

    }
  }

.featurette-para{
    color: #4F4A45;
    font-family: 'MuseoModerno', cursive;
}
.FEATURETTES-gifs{
    width:100%;
    height: auto;
    border-radius: 20px;
}

footer starts 
.footer-container{
    background-color: #ffeadd;
    color: #ED7D31;
    font-family: 'MuseoModerno', cursive;
    width: 100%;
}
.subscribe-button{
    border: none;
    color: #F6F1EE;
    background-color: #6C5F5B;
    font-family:'MuseoModerno', cursive ;
}
.subscribe-button:hover{
    transform: scale(1.07);
    background-color: #F6F1EE;
    color: #4F4A45;
    border: 1px solid #4F4A45;
}
.social-icons{
    color: #6C5F5B;
    font-size: 25px;
    cursor: pointer;
}
.social-icons:hover{
    color: #ED7D31;
    transform: scale(1.07);
}
.marquee-container{
    height: auto;
    background-color: #f1f1f1;
    margin-top: 6px;
    border-left: none;
    border-right: none;
}
.marquee-image{
    width: auto;
    height: 150px;
    padding: 5px;
    margin: 0 20px;
}
.tooltip-heading{
    font-family:'MuseoModerno', cursive;
    color: #ED7D31;
    font-size: 15px;
}
.tooltip-text {
    visibility: hidden;
    position: absolute;
    z-index: 1;
    width: auto;
    color: #4F4A45;
    font-size: 12px;
    background-color: rgb(230, 219, 213);
    border-radius: 10px;
    padding: 10px 15px 10px 15px;
    font-family:'MuseoModerno', cursive;
  }
  
  .hover-text:hover .tooltip-text {
    visibility: visible;
  }
  #right {
    top: -8px;
    left: 70%;
  }
  #left{
    top: -8px;
    left: -50%;
  }
  .hover-text {
    position: relative;
    display: inline-block;
    margin: 20px;
    font-family: Arial;
    text-align: center;
  }