
@import url('https://fonts.googleapis.com/css2?family=Montserrat&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Shadows+Into+Light+Two&display=swap');


::-webkit-scrollbar {
  width: 7px;
  height: 10px;
  }
    ::-webkit-scrollbar-track-piece  {
    background-color: #35005A;
    }
    ::-webkit-scrollbar-thumb:vertical {
    /* height: 15px; */
    background-color: #fb86008f;
    
    }

    .cursive-mid{
      font-family: "Shadows Into Light Two", cursive;
      font-size: 150%;
    }
  

    #submitError{
      padding: .5rem;
      background-color: #FB8500;
      color: #fff;
      margin-bottom: 1rem;
      display: none;
      text-align: center;
    } 


header {
    background-image:transparent;
    color: #fff;
    display: flex;
    justify-content:space-around;
    align-items: center;
    position: fixed;
    padding: 5px;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    transition: all 0.2s ease;
    font-family: 'Montserrat', sans-serif;
    background-color: #00000044;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    
   
  }
  .logo{
    display: flex;
    align-items: center;
    justify-content: space-between;
    

  }


  .Mobile-header{
    display: none;
  }

  .sidebar{
    display: none;
    
  }

  .openbtn{
    display: none !important;
  }

 

  
  .logo img {
    width: 140px;

  }
  .mainnav {
    /* margin-right: 40px; */
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative !important;
    
    
  }
  .mainnav ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    
  }
  .mainnav li {
    margin: 0 10px;
    font-size: 0.9rem;
    font-weight: lighter;
    
    
  }

  #menuBar li{
    border-bottom: 1px solid transparent;
  }

  #menuBar li:hover{
    border-bottom: 1px solid #FF5D06;
    
  }

  

  .mainnav li a{
    color: #fff;
    text-decoration: none;
    /* padding: 10px; */
    margin: 5px;
    padding: 5px;
    transition: background-color 0.5s ease;
    text-transform: uppercase;
    
  }
  /* .mainnav a:hover {
    color: white;
   background-color: #ff660057;
   padding: 5px;
   margin: 5px;
  } */

  /* .enquiry-header-container{
    margin-left: 20px;
  } */

  .enquiry-header-container li a{
    /* background-color: #ff6600b6; */
   
    border-radius: 30px;
    /* padding: 5px; */
    padding-left: 10px;
    padding-right: 10px;
    
  }

  #openPopupLink{
     background-color: #00000046; 
    /*outline: 1px solid #fff;*/
    color: #ffffff;
    margin-left: 30px;
    /* font-weight: lighters; */
    /* font-weight: bold; */
    font-size: 0.9rem;
    box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
   padding: 10px;
    transition: 0.5s;
    scale:1;
   
  }

  #openPopupLink:hover{
      scale:0.7;
    box-shadow:none;
    transition: 0.5s;
    

  }

  .enquiry-header-container li i{
    margin-right: 10px;

  }

 
 

.search-container{
  background: transparent;
  /* height: 25px; */
  border-radius: 30px;
  padding: 10px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: 0.8s;
  /* box-shadow:inset 2px 2px 2px 0px rgba(255,255,255,.5),
  inset -7px -7px 10px 0px rgba(0,0,0,.1),
 7px 7px 20px 0px rgba(0,0,0,.1),
 4px 4px 5px 0px rgba(0,0,0,.1);
 text-shadow:  0px 0px 6px rgba(255,255,255,.3),
            -4px -4px 6px rgba(116, 125, 136, .2); */
/* text-shadow: 2px 2px 3px rgba(255,255,255,0.5);
box-shadow:  4px 4px 6px 0 rgba(255,255,255,.3),
            -4px -4px 6px 0 rgba(116, 125, 136, .2), 
  inset -4px -4px 6px 0 rgba(255,255,255,.2),
  inset 4px 4px 6px 0 rgba(0, 0, 0, .2); */
}

.search-container:hover > .search-input{
  width: 150px;
  

}


.search-container input::placeholder{
  font-size: 0.6rem;

}
.search-container .search-input{
  background: transparent;
  border: none;
  outline:none;
  width: 0px;
  font-weight: 500;
  font-size: 16px;
  transition: 0.8s;

}

.search-container .search-btn .fas{
  color: #FF5D06;
}

@keyframes hoverShake {
0% {transform: skew(0deg,0deg);}
25% {transform: skew(5deg, 5deg);}
75% {transform: skew(-5deg, -5deg);}
100% {transform: skew(0deg,0deg);}
}

.search-container:hover{
animation: hoverShake 0.15s linear 3;
background-color: #ffffff;
}

  
.dropdown{
  position: relative;
}


.mega-menu {
    display: none;
    position: absolute;
    top: 22px;
    min-width: 850px;
    height: 400px;
    /*background-color: #ffd3bc;*/
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    z-index: 1;
    left: 30%; 
    transform: translate(-50%) ;
    font-weight: 100;
    animation: growDown 300ms ease-in-out forwards;
    color:#000000;
    background-color: #00354fd9;
    border:1px solid #fff;
}

.mega-menu a{

  font-weight: 200;
  font-size:0.8rem !important;
    text-transform: capitalize !important;
}


.small-menu {
  display: none;
  position: absolute;
  top: 22px;
  width: 200px;
  /* min-width: 50px; */
  height: auto;
  /*background-color: #ffd3bc;*/
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  z-index: 1;
  left: 45%; 
  transform: translate(-50%) ;
  font-weight: 100;
  animation: growDown 300ms ease-in-out forwards;
  color:#000000;
   background-color: #00354fd9;
    border:1px solid #fff;
  padding: 0.5rem;
}

.small-menu ul{
  flex-direction: column;
}

.small-menu ul li{
  padding: 0.5rem;
  text-align: center;
}

.small-menu  a{

  font-weight: 200;
   font-size:0.8rem !important;
    text-transform: capitalize !important;
}


.dropdown:hover .mega-menu {
    display: block;   
}

.dropdown:hover .small-menu {
  display: block; 
}

@keyframes growDown {
  0% {
      transform:translate(-50%) scaleY(0)
  }
  80% {
      transform: translate(-50%) scaleY(1.1)
  }
  100% {
      transform: translate(-50%) scaleY(1)
  }
}




.location-list{
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  
}

.button-container{
  width: 25%;
 
 
}

.location-button ,.location-button-holi,.location-button-family ,.location-button-lux{
  padding: 10px 0px;
  background-color: #eeeeee;
  color: #FF5D06;
  border: none;
  cursor: pointer;
  width: 100%;
  height: 200px;
  font-size: 1.5rem;
  font-family: 'Lato', sans-serif;
  transition:  2s;
  
 
}


.location-button-family {
  padding: 10px 0px;
  background-color: #eeeeee;
  color: #FF5D06;
  border: none;
  cursor: pointer;
  width: 100%;
  height: 200px;
  font-size: 1.5rem;
  font-family: 'Lato', sans-serif;
 
}

.location-button-lux {
  padding: 10px 0px;
  background-color: #eeeeee;
  color: #FF5D06;
  border: none;
  cursor: pointer;
  width: 100%;
  height: 200px;
  font-size: 1.5rem;
  font-family: 'Lato', sans-serif;
 
}


/* .location-button:hover{
  outline: 1px solid #FF5D06 ;
  color: #FF5D06;

} */
.location-button.activeloc {
 color: #fff;
  background-image: linear-gradient(to right, rgb(251, 133, 0) 0%, rgb(255 93 6) 1% , rgb(53 0 90)100%);
 
}

.location-button-holi.activeholi {
  color: #fff;
   background-image: linear-gradient(to right, rgb(251, 133, 0) 0%, rgb(255 93 6) 1% , rgb(53 0 90)100%);
  
 }


 .location-button-family.activefamily {
  color: #fff;
   background-image: linear-gradient(to right, rgb(251, 133, 0) 0%, rgb(255 93 6) 1% , rgb(53 0 90)100%);
  
 }

 .location-button-lux.activelux {
  color: #fff;
   background-image: linear-gradient(to right, rgb(251, 133, 0) 0%, rgb(255 93 6) 1% , rgb(53 0 90)100%);
  
 }
 


 .sweep-to-right {
  position: relative;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transition: color 1000ms;
  transition: color 1000ms;
}
.sweep-to-right:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
 
  background-image: linear-gradient(to right, rgba(251, 134, 0, 0.616) 0%, rgba(255, 93, 6, 0.527) 1% , rgba(53, 0, 90, 0.575)100%);
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 0 50%;
  transform-origin: 0 50%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition: 300ms ease-out;
  transition: 300ms ease-out;
}
.sweep-to-right:hover:before {
  -webkit-transform: scaleX(1);
  
  transform: scaleX(1);
}


.location-button:hover{
  color: #fff;
}
 
 .location-button-holi:hover {
   color: #fff;
   
  }
 
 
  .location-button-family:hover {
   color: #fff;
   
  }
 
  .location-button-lux:hover {
   color: #fff;
   
  }


.content-container{
  width: 75%;
 
 
}

.location-link-content.activeloc{
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.location-link-content-holi.activeholi{
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.location-link-content-family.activefamily{
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.location-link-content-lux.activelux{
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}




.location-link-content {
  display: none;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  
}

.location-link-content-holi {
  display: none;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  
}

.location-link-content-family {
  display: none;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  
}

.location-link-content-lux {
  display: none;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  
}

.imgbox-content{
  width: 250px;
  margin-right: 20px;
  height: 350px;

}

.content-container img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}



.column ul{
  display: flex;
    color: #000000;
    flex-wrap: wrap;
    align-items:start;
    
    width: 350px;
    height: 300px;
    overflow-y: scroll;

  
 
    
}




.column ul li{
  width:90px !important;
  margin: 10px;
  height: 25px;
  text-align: center;
 
}

.column a {
    font-size: 0.9rem;
    text-decoration: none;
 
    
}

.column a:hover{
  padding-left: 0.5rem;
  transition: 0.3s;
  color: #FF5D06 !important;

}








 /* Styles for the popup form */
 .popup {
  display: none;
  position: fixed;
  font-family: 'Montserrat', sans-serif;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.664);
  z-index: 999;
}

.popup-content {
  background-color: #ffffff;
  width: 800px;
  top: 50%;
  left: 50%;
  transform: translate(-50% , -50%);

  padding: 20px;
  border-radius: 5px;
  position: relative;
}

.close-button {
  position: absolute;
  top: -6%;
  right: -5%;
  cursor: pointer;
  color: #ffffff;
  border-radius: 50%;
  font-size: 3rem;
}

.close-button:hover{
  color: #ff0000;

}


.popup-form-container{
  display: flex;
  justify-content: space-between;
}

.popup-form-content{
  width: 47%;
  
}

.popup-form-content h3{
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #023047;
}

.popup-form-content li{
  font-size: 0.8rem;
  margin-bottom: 1rem;
  list-style:square;
  margin-left: 20px;
  color: #FB8500 ;
  font-weight: 900;

}

.form-content-social{
  display: flex;
  justify-content: center;
  border-bottom: 1px solid #FB8500;
}

.form-content-image{
  width: 100%;
  height: 200px;

}

.form-content-image img{
  width: 100%;
  height: 100%;
}

.social-icons i{
  font-size: 3rem;
  margin: 30px;
  color: #FB8500;
}


.popup-form-main{
  width:47%;
  
  
}

.popup-form-main h3{
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #023047;
}



.popup-form-main .form {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  width: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.popup-form-main .form-flex{
  display: flex;
  justify-content: space-between;
  
  
  
  

}



.popup-form-main .form-group-flex{
  display: flex;
  flex-direction: column;
  width: 45%;
  margin-bottom: 10px;
 
}

.popup-form-main .form-group-flex label {
  font-weight: bold;
  font-size: 0.8rem;
  margin-bottom: 5px;
  color: #000000;
  
}

.popup-form-main .form-group-flex input[type="text"],
.popup-form-main .form-group-flex  input[type="date"],
.popup-form-main .form-group-flex select {
 
  padding: 10px;
  border: 1px solid #FB8500;
  border-radius: 5px;
}


.popup-form-main .form-group {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-bottom: 10px;
  
}

.popup-form-main .form-group label {
  font-weight: bold;
  font-size: 0.8rem;
  margin-bottom: 5px;
  color: #000000;
}

.popup-form-main .form-group input[type="text"],
.popup-form-main .form-group input[type="email"],
.popup-form-main .form-group select {
  padding: 10px;
  border: 1px solid #FB8500;
  border-radius: 5px;
}

.popup-form-main .form-group textarea{
  padding: 10px;
  border: 1px solid #FB8500;
  background-color: transparent;
  border-radius: 5px;
}

.popup-form-main button {
  background-color: #023047;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  width: 100%;
  font-size: 1.3rem;
  
}

.popup-form-main button:hover {
  background-color: #ffffff;
  color: #023047;
  outline: 2px solid #023047;
}

       
/* Sidebar Styles */
.sidebar {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  background-image: linear-gradient(to right, rgba(251, 134, 0, 0.726) 0%, rgba(255, 93, 6, 0.753) 1% , rgba(53, 0, 90, 0.753) 100%);
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 0px;


}
.sidebar i{
  position: absolute;
  right: 10px;
  top: 10px;
  color: #ffffff;
  font-size: 1.5rem;

 
  
}

.sidebar i:hover{
  color: red;
}

.sidebar ul{
  margin-top: 3rem;
  
}

.sidebar a{
  color: #fff;
  text-decoration: none;
  
}

.mobile-logo{
  height: auto;
}

.sidebar li{

  padding: 10px;

 
}

.sidebar ul a{
  margin-left: 10px;
  
}





.dropdown-content-sidebar {
  display: none;
  background-image: linear-gradient(to right, rgb(251, 133, 0) 0%, rgb(255 93 6) 1% , rgb(53 0 90) 100%);
  min-width: 100px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  z-index: 1;

  
}

.dropdown-content-sidebar a {
  color: rgb(255, 255, 255);
  padding: 10px 5px;
  text-decoration: none;
  display: block;
  font-size: 13px;
  
  
}

.contact-us-slidebar{
  background-color: #001124;
  width: 120px;
  margin-left: 2rem;
  font-size: 13px;
 
}







.dropdown-sidebar:hover .dropdown-content-sidebar {
  display: block;
}

.sidebar .dropdown-sidebar.open .dropbtn-sidebar {
  background-color: #ff0000; /* Set the desired background color */
}

  
  /* Curved Background Styles */
  .curved-background {
    background-color: #333;
    border-radius: 20px;
  }
  
  .curved-background a {
    background-color: #f2f2f2;
    color: #333;
  }
  
  .logo img {
    animation-name: logoSizeChange;
    animation-duration: 0.3s;
    animation-timing-function: ease-in-out;
  }
  



  @keyframes logoSizeChange {
    0% {
      transform: scale(1);
    }
    100% {
      transform: scale(0.7); /* Adjust the scale value as desired */
    }
  }

  @media (max-width:1080px ) {
    .mainnav li {
      font-size: 0.8rem;
      margin: 0 10px;
    }

    /* #openPopupLink{
      margin-left: 10px;
      font-size: 0.7rem;
    } */

    .enquiry-header-container{
      display: none;
    }

  }

  @media (max-width:980px ) {
    .search-container:hover > .search-input{
      width: 100px;
      
    }
    .mainnav li {
      margin: 0 5px;
      font-size: 0.7rem;
    }

  }

  @media (max-width:850px ) {

    
    .Mobile-header{
      
      background-image: transparent !important;
      padding-left: 20px;
      padding-top: 5px;
      padding-bottom: 5px;
      z-index: 999;
      position: fixed;
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;

      
      }

      .transparent-bg {
        background-image: linear-gradient(to right, rgb(251, 133, 0) 0%, rgb(255 93 6) 1% , rgb(53 0 90) 100%);
    }

      .Mobile-header img {
        width: 120px;
       
        
      }

   

      .openbtn{
      display: block !important;
        font-size: 1.2rem;
        color: #fff;
        margin-right: 40px;
      
    }
    .sidebar{
      display: block;
      z-index: 9999;
      
    }
    .sidebar a{
      justify-content: right;
      align-items: end;
      
    }
    
  }



  @media (max-width:550px ) {
    .logo img {
      width: 70px;
    }

  
  }

  @media (max-width:400px ) {
    .logo img {
      width: 50px;
    }

  }

@media (max-width:850px ) {
  header{
    display: none;
  }
}


