@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;300;400;500;600&display=swap');

:root{
    --brown:#ffa502;/*#f9bcff*/
}

body{
    background:#ffffff!important;
}

* {
    /*font-family: 'Poppins', sans-serif;*/
    font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Liberation Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    border: none;
    text-transform: capitalize;
    text-decoration: none;
    transition: .2s linear;
}

.btn{
    margin-top: 1rem;
    display: inline-block;
    padding: .8rem 3rem;
    background-color: orangered;/*#0984e3;#b91ba4*/
    color:#fff;
    font-size:1.7rem;
    cursor: pointer;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.7);
    border:0.1rem solid rgba(0,0,0,0.7);
}

.btn:hover{
    background: lightsalmon;/*#ff84ef*/
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.1);
}

html{
    font-size: 62.5%;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

section{
    /* padding:3rem 9%; 
    padding: 2rem;*/
    max-width: 1140px;
    display:block;
    margin:0 auto;
    
}

.heading{
    background: url("imgdesign/header.jpg") no-repeat;
    background-size:cover;
    background-position: center;
    text-align: center;
    padding-top: 12rem;
    padding-bottom: 8rem;
    border-bottom: 0.1rem solid rgba(0,0,0,0.7);
}

.heading h1{
    color: rgb(11, 66, 62);
    font-size:4rem;
}

.title {
    display:flex;
    align-items: center;
    font-size: 2.5rem;
    margin-bottom:3rem;
    padding:1.2rem 0;
    border-bottom: 0.1rem solid rgba(0,0,0,0.7);
    color: #333333;
}

.title span{
    color: #222;
    padding-left: .7rem;
}

.title a{
    margin-left:auto;
    color: #333333;
    font-size: 1.5rem;
}

.title a:hover{
    color: #333333;
    text-decoration:none;
}

/*************************************************************************/

#offers {
    background: url("imgdesign/b31.jpg") center/cover no-repeat;
    max-width: 1140px;
    height: 40rem;
    /* padding-top: 100px; */

    /* animation: slide 12s infinite; */
    /* position: relative; */
    animation-name: slide;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-duration: 5s;
    animation-direction: alternate;

    display:block;
    margin:10px auto;
}

/* #offers img{
    position: absolute;
    max-width: 1280px;
    height: 40rem;
    display:block;
    margin:0 auto;
} */


@keyframes slide {
    0% {
        background-image: url(imgdesign/b41.jpg);
    }
    100% {
        background-image: url(imgdesign/b31.jpg);
    }
}
.header{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index:1000;
    background: #52307c;/*#b2bec3;var(--brown)*/
    display:flex;
    align-items: center;
    justify-content: space-between;
    /*padding:2rem 9%;*/
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.1);
    height: 65px;
    max-width:100%;
}

.header .logo{
    font-size:2.5rem;
    font-weight: bolder;
    color:#ffffff;
}

.header .logo i{
    color:#222;
    padding-right: .5rem;
}

.header a{
    font-size: 1.7rem;
    color: black;
    /*margin: 0 1rem;*/
}

.header a:hover{
    color: #e05a00;
    text-decoration: none;
}

.header .icons div{
    /*font-size: 2.5rem;*/
    margin-left: 15px;
    cursor: pointer;
    color:white;
}

.header .icons div:hover{
    color: #e05a00;
}
.icons {
    position:relative;
    right:0px;
    margin-right:20px;
}

/*.header .navbar a{
    font-size: 1.7rem;
    color: white;
    margin: 0 1rem;
}*/

.header .navbar a {
    float: left;
    font-size: 16px;
    color: #eeeeee;
    /*text-align: center;*/
    padding: 14px 16px;
    text-decoration: none;
  }
  

.header .navbar a:hover{
    color: #ffffff;/*#e05a00;*/
    text-decoration: none;
}

#menu-btn{
    display: none;
}

@keyframes fadeLeft {
    0%{
        opacity: 0;
        transform: translateY(-5rem);
    }
}

@keyframes fadeUp {
    0%{
        opacity: 0;
        transform: scale(0.5);
    }
}

.home{
   /* padding-top: 14rem;
    background: url("imgdesign/banner-5.png") no-repeat;*/
    background-size: cover;
    background-position: center;
    position: relative;
} 

.home .slides-container .slide{
    display:flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    display:none;
}

.home .slides-container .slide.active{
    display:flex;
}

.home .slides-container .slide .content{
    flex: 1 1 40rem;
    animation: fadeLeft .4s linear .4s backwards;
}

.home .slides-container .slide .content span{
    color: #000;
    font-size:2.5rem;
}

.home .slides-container .slide .content h3{
    font-size:6rem;
    color: white/*#222*/;
    padding:.5rem 0;
}

.home .slides-container .slide .img{
    flex: 1 1 40rem;
    margin: 3rem 0;
}

.home .slides-container .slide .img img{
    width: 100%;
    animation: fadeUp .4s linear;
}

.home #next-slide,

.home #prev-slide{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: 5rem;
    width: 5rem;
    line-height: 5rem;
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.7);
    border:0.1rem solid rgba(0,0,0,0.7);
    text-align: center;
    background: var(--brown);
    font-size:2rem;
    color: #fff;
    cursor: pointer;
    background-color: #b91ba4;
}

.home #next-slide:hover,

.home #prev-slide:hover{
    background:#ff84ef;
    color: #fff;
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.1);
}

.home #prev-slide{
    left:2rem;
}

.home #next-slide{
    right:2rem;
}

.banner-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(32rem, 1fr));
    gap:1.5rem;
}

.banner-container .banner{
    position: relative;
    height: 25rem;
    overflow: hidden;
    /* box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.7);*/
    border:0.1rem solid #cccccc;
}

.banner-container .banner img{
    height:100%;
    width: 100%;
    object-fit: cover;
}

.banner-container .banner .content{
    position: absolute;
    top: 50%;
    left: 2rem;
    transform: translateY(-50%);
}

.banner-container .banner .content span{
    color: #fff;
    font-size:1.5rem;
}

.banner-container .banner .content h3{
    font-size:2rem;
    padding-top:.5rem;
    color: #fff;
}

.banner-container .banner .content .btn{
    padding: .8rem 2.5rem;
}

.banner-container .banner:hover img{
    transform:scale(1.2);
}

.category .box-container{
    display:grid;
    grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
    gap:1.5rem;
    padding:10px;
}

.category .box-container .box .a:hover{
    text-decoration: none;
}

.category .box-container .box{
    text-align:center;
    /*box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.7);*/
    border:0.1rem solid #cccccc;
}

.category .box-container .box img{
    height:15rem;
    width:21rem;
}

.category .box-container .box h3{
    font-size: 2rem;
    margin: 1rem 0;
    color: #333333;
}

.category .box-container .box:hover h3{
    color: #333333;
}

.products .box-container {
    display: -ms-grid;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
    gap: 1.5rem;
}

.products .box-container .box {
    position: relative;
    background: #f3f3f3;
    text-align: center;
    overflow: hidden;
    /*box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.7);*/
    border:0.1rem solid #cccccc;
}

.products .box-container .box:hover  .icons{
    top: 0;
}

.products .box-container .box .icons {
    position: absolute;
    top: -105%;
    left: 0;
    height: 30rem;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(243, 243, 243, 0.8);
    gap: 1rem;
}

.products .box-container .box .icons a {
    font-size: 2rem;
    height: 5rem;
    width: 5rem;
    line-height: 5rem;
    background: #fff;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    color: #666;
}

.products .box-container .box .icons a:hover{
    background: var(--brown);
    color:#fff;
}    

.products .box-container .box .img {
    height:15rem;
    width:27rem;
    overflow: hidden;
}

.products .box-container .box .img img {
    height:100%;
    width:100%;
    object-fit: cover;
}

.products .box-container .box .content {
    padding: 1.5rem;
}

.products .box-container .box .content h3 {
    font-size: 2rem;
    color: #222;
}

.products .box-container .box .content .price {
    font-size: 2rem;
    color: #222;
    padding: 1rem 0;
}

.products .box-container .box .content .stars i {
    font-size: 1.7rem;
    color: var(--brown);
}

.space{
    min-height: 10vh;
}

.footer{
    background:var(--brown);
}

.footer .box-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    gap:1.5rem;
}

.footer .box-container .box h3{
    font-size: 2.2rem;
    color: #222;
    padding:1rem 0;
}

.footer .box-container .box p{
    font-size: 1.5rem;
    color: #000;
    padding-bottom: .5rem;
}

.footer .box-container .box a{
    font-size: 1.4rem;
    color: #000;
    padding:1rem 0;
    display:block;
}

.footer .box-container .box a:hover{
    color: #fff;
}

.footer .box-container .box a:hover i{
    padding-right: 2rem;
}

.footer .box-container .box a i{
    padding-right: .5rem;
    color: #000;
}

.footer .box-container .box form input[type="email"]{
    width: 100%;
    padding:1rem 1.2rem;
    font-size: 1.6rem;
    color: #000;
    margin: 1rem 0;
    text-transform: none;
}

.footer .box-container .box .payments{
    width: 100%;
    margin-top: 2rem;
}

.credit{
    text-align: center;
    background:#52307c;/*#b2bec3;var(--brown)*/
    color: white;
    font-size:1.2rem;
    max-width:100%;
}

/* media queries */

@media (max-width: 991px){
    html{
        font-size: 55%;
    }

    .header{
        padding:2rem;
    }

    section{
        padding:3rem 2rem;
    }

    .home #next-slide,

    .home #prev-slide{
        transform: translateY(0);
        top:88%;
    }

    .home #prev-slide{
        left:auto;
        right:8rem;
    }
}

@media (max-width: 768px){
    #menu-btn{
        display: inline-block;
    }

    .header .navbar{
        position:absolute;
        top: 99%;
        /*left: 0;*/
        right: 0;
        background:#222;
        border-top: 0.1rem solid rgba(0,0,0,0.1);
        border-bottom: 0.1rem solid rgba(0,0,0,0.1);
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        margin-top: 100px;
    }

    .header .navbar.active{
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    }

    .header .navbar a{
        margin: 1.5rem;
        padding:1.5rem;
        background:#7c5295;/*#b2bec3;var(--brown)*/
        font-size: 2rem;
        display: block;
        border-radius: .5rem;
    }
}

@media (max-width: 450px){
    html{
        font-size: 50%;
    }
    .header { padding:1rem; font-size:90%;}

    .home .slides-container .slide .content h3{
        font-size:4rem;
    }

    .products .box-container .box .img{
        width: 100%;
    }

    .category .box-container .box img{
        width: 100%;
    }
    .icons {
        margin-right:10px;
    }
}

  /*****************************************************/

  /* The dropdown container */
  .dropdown {
    float: left;
    overflow: display;
  }
  
  /* Dropdown button */
  .navbar .dropdown .dropbtn {
    font-size: 16px;
    border: none;
    outline: none;
    color: white;
    padding: 14px 16px;
    background-color: inherit;
    font-family: inherit; /* Important for vertical align on mobile phones */
    margin: 0; /* Important for vertical align on mobile phones */
  }
  
  
  /* Dropdown content (hidden by default) */
  .dropdown-content {
    display: none;
    position: absolute;
    background-color: #222;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
  }
  
  /* Links inside the dropdown */
  .dropdown-content span {
      
    text-align: left;
  }
  .dropdown-content a {
    float: none;
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
  }
  
  /* Add a grey background color to dropdown links on hover */
  .dropdown-content a:hover {
    color: white;
  }
  
  /* Show the dropdown menu on hover */
  .dropdown:hover .dropdown-content {
    display: block;
  }
  .title-shadow {
      text-shadow: 2px 2px 2px #000000;
  }
  
  section#accommodations {
    padding-top: 0px;
    padding-bottom: 0px;
}

  section.banner-container {
    padding-bottom:0px;
  }

  section#facilities {
    padding-top: 0px;
    padding-bottom: 0px;
}

section#merchandise {
        padding-top: 0px;
    padding-bottom: 0px;
}

section#collection {
        padding-top: 0px;
    padding-bottom: 0px;
}




    .dropdown {
        float:none;
    }
     .dropdown, .dropup {
      /*text-align:center;*/
     }
     .header .navbar a {
    margin: 10px;
    padding: 10px;
    background: #7c5295;
    font-size: 14px;
    display: block;
    border-radius: 0.5rem;
    float:none;
    text-align:left;
  }

  .dropdown-content a {
    
    text-align: center;
  }

      /*
      .contact-child {
      font-size:14px!important;
      font-weight:400!important;
      text-align:center!important;
      
    }*/
}
/*
.contact-child {
  font-size:14px;
  font-weight:400;
  text-align:left;
}*/


 .header .navbar a {
  width:97%;
 }

 .header .navbar {
  top: -73%;
 }



    .header .navbar a {
    margin: 10px 10px 0px 10px;
    padding: 10px;
    background: #7c5295;
    font-size: 14px;
    display: block;
    border-radius: 0.5rem;
    float: none;
    text-align: left;
    width: 93%;
}
.logo {
    font-size: 20px;
}
 .header .logo {
    width:244px;
}
nav.navbar {
    width: 530px;
    padding: 5px;
    margin-top: 23px;
    display: inline-block;
}
.header .navbar a {
    font-size: 13px;
    padding: 5px;
}
.navbar .dropdown .dropbtn {
    font-size: 13px;
    padding: 5px;
    margin-left: 10px;
}
.header .navbar {
    position: absolute !important;
    top: -67% !important;
    /*left: 0;*/
    right: 106px !important;
    background: #222;
    border-top: 0.1rem solid rgba(0,0,0,0.1);
    border-bottom: 0.1rem solid rgba(0,0,0,0.1);
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    margin-top: 100px !important;
    width: 18%;
}

    #menu-btn {
    display: inline-block;
    }

    .mobile-view {
    display: block !important;
    margin-top: 75px;
    }

    .web-view {
    display:none !important;
    }

   #check_availability {
    display:none !important;
   }

   .card-filter {
    display:none !important;
   }

   .d-sm-bloc {
    display:none !important;
   }

   .card-body {
   position: relative;
   margin: 10px;
   }
   .card {
    padding: 0px 0px 0px 0px !important;
   }

   input.btn.btn-primary.btn-block {
    margin-left: -10px;
   }

   .header .navbar.active {
    padding-top: 10px;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    padding-bottom: 17px;
    position: absolute !important;
   }

   .dropdown-content {
    display: none;
    position: relative;
    background-color: #222 !important;
    min-width: 17%;
    box-shadow: 0px 8px 16px 0px rgb(0 0 0 / 20%);
    z-index: 1;
   }

   .col.d-none.d-sm-block {
    display: none !important;
   }

@media (max-width: 420px) {
    .header .logo {
    width: 212px;
}
    .navbar .dropdown .dropbtn{
        width: 95%;
        background-color:transparent;
        border-radius: 6px;
        height:42px;
        margin: 0px 10px 0px 10px;
        padding: 10px;
        text-align:left;
     }
     nav.navbar.active {
        padding-bottom:21px;
    }
    .credit {
        /* position: fixed; */
        text-align: center;
        background: #52307c;
        color: white;
        bottom: -238px;
        font-size: 1.2rem;
        position: relative;
        /* bottom: -330px; */
        width: 1;
        width: 100%;
        
    }
    .dropdown-content {
      background-color:transparent;
        display: none;
        position: fixed;
        background-color: #222 !important;
        min-width: 97% !important;
        box-shadow: 0px 8px 16px 0px rgb(0 0 0 / 20%);
        z-index: 1;
}

 .header .navbar {
    margin-top:0px;
    position: absolute !important;
    top: -67% !important;
    left: 0;
    right: 0;
    background: #222;
    border-top: 0.1rem solid rgba(0,0,0,0.1);
    border-bottom: 0.1rem solid rgba(0,0,0,0.1);
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    margin-top: 100px !important;
    width: 100% ;
  }
     }

     @media (max-width: 430px){
  .header .navbar {
    margin-top: 0px;
  }
  nav.navbar.active {
    padding-bottom: 21px;
   }

  .header .navbar a {
    margin: 10px;
    padding: 10px;
    background: #7c5295;
    font-size: 14px;
    display: block;
    border-radius: 0.5rem;
    float: none;
    text-align: left;
  }

  .navbar .dropdown .dropbtn {
    width: 95%;
    background-color: transparent;
    border-radius: 6px;
    height: 42px;
    margin: 0px 10px 0px 10px;
    padding: 10px;
    text-align: left;
 }
 .dropdown {
    float: none;
  }
}

@media (max-width: 680px){
.navbar {
    border-radius: 0px;
}

 .header .navbar {
    margin-top:0px;
    position: absolute !important;
    top: -67% !important;
    left: 0;
    right: 0;
    background: #222;
    border-top: 0.1rem solid rgba(0,0,0,0.1);
    border-bottom: 0.1rem solid rgba(0,0,0,0.1);
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    margin-top: 100px !important;
    width: 100%;
  }

   .navbar {
    border-radius: 0px !important;
  }
}

@media (max-width: 380px){
  .header {
    padding: 0px !important;
  }
   .header .navbar {
    margin-top:0px;
    position: absolute !important;
    top: -67% !important;
    left: 0;
    right: 0;
    background: #222;
    border-top: 0.1rem solid rgba(0,0,0,0.1);
    border-bottom: 0.1rem solid rgba(0,0,0,0.1);
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    margin-top: 100px !important;
    width: 100%;
  }
}

