@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

html {
  scroll-behavior: smooth;
}
body {
  line-height: 1;
}
ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

*, *:before, *:after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}
.playfair-display-font {
  font-family: "Playfair Display", serif;
}

@media (min-width: 320px) and (max-width: 768px) {
  /* line 19, src/assets/scss/generic/_generic.box-sizing.scss */
  html {
    font-size: 88%;
  }
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  font-family: "Montserrat", sans-serif;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

article, aside, figcaption, figure, footer, header, hgroup, main, nav, section {
  display: block;
}

body {
  font-family: "Montserrat", sans-serif;
  margin: 0;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.4;
  color: #333;
  text-align: left;
  background-color: #fff;
}

[tabindex="-1"]:focus:not(:focus-visible) {
  outline: 0 !important;
}

hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  height: 0;
  overflow: visible;
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 0.938rem;
  font-family: "Montserrat", sans-serif;
}

/* line 101, node_modules/bootstrap/scss/_reboot.scss */
p {
  margin-top: 0;
  margin-bottom: 1rem;
}
.theme-rounded {
  border-radius: 1.5rem;
}
.theme-color-01{
  color: #9d6eff;
}
.theme-bg-01{
  background-color: #9d6eff;
}

.header .nav-link:hover{
  background: rgb(132 132 132 / 28%);
}
.header .nav-link{
  color: #fff;
  padding: 5px 15px !important;
  border-radius: 30px;
  font-size: 17px;
  font-weight: 600;
  text-transform: uppercase;
}
.header .navbar-brand img.color-logo{
  display: none;
}
.header .navbar-brand img{
  width: auto;
  max-height: 70px;
  transition: 0.3s;
}
.header .navbar-brand{
    color: #fff;
}
.header{    
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  transition: 0.3s;
  z-index: 9;
  backdrop-filter: blur(2px);
}
.header.sticky .navbar-brand img.color-logo{
  display: block;
}
.header.sticky .navbar-brand img.white-logo{
  display: none;
}
.header.sticky .navbar-brand img{
  max-height: 50px;
  transition: 0.3s;
}
.header.sticky .navbar-brand{
  color: #444;
}
.header.sticky .nav-link{
  color: #000;
}
.header.sticky{
  background: rgb(255 255 255);
  box-shadow: 0px 10px 40px rgb(0 0 0 / 15%);
}
.header.sticky .navbar-nav .nav-item.dropdown .dropdown-menu .dropdown-item{
  background: #fff;
  color: #000;
}
.header.sticky .navbar-nav .nav-item.dropdown .dropdown-menu .dropdown-item:hover{
  background: #ffc008;
}
.navbar-nav .nav-item.dropdown .dropdown-menu .dropdown-item{
  background: rgb(0 0 0 / 50%);
  padding: 12px 10px;
  color: #ccc;
  border-bottom: 1px solid rgb(255 255 255 / 6%);
}
.navbar-nav .nav-item.dropdown .dropdown-menu .dropdown-item:hover{
  background: #ffc008;
  color: #000;
}
.dropdown-toggle::after{
  content: '';
  width: 10px;
  height: 10px;
  border-top: 1px solid transparent;
  border-right: 1px solid;
  border-bottom: 1px solid;
  border-left: 1px solid transparent;
  transform: rotate(45deg);
  position: relative;
  top: -4px;
  margin-left: 8px;
  vertical-align: middle;

}
.navbar-nav .nav-item.dropdown .dropdown-menu{
  border-radius: 0;
  top: 100%;
  padding: 16px 0;
  margin: 0;
  border: 0;
  background: rgb(0 0 0 / 0%);
}

/* sub-title-01 */
.sub-title-01{
  background: rgb(234 91 111 / 67%);
  display: inline-block;
  padding: 10px 30px;
  color: #ffffff;
  border-radius: 10px;
  border: 0.5px solid rgb(255 255 255 / 21%);
  font-weight: 600;
  backdrop-filter: blur(5px);
}

/* Button style 01 */

.button-style-01 img{
    width: 20px !important;
}
.button-style-01 {
    padding: 0.75rem 1.25rem;
    border-radius: 10px;
    color: #fff;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    z-index: 1;
    display: inline-flex;
    gap: 5px;
}

.button-style-01::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #9d6eff;
    border-radius: 10px;
    z-index: -2;
}

.button-style-01::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: #4e17c1;
    transition: all 0.3s;
    border-radius: 10px;
    z-index: -1;
}

.button-style-01:hover {
  color: #fff;
}

.button-style-01:hover::before {
  width: 100%;
}

/* Home page Banner */
.banner .banner-slider::before{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgb(0 0 0 / 70%), transparent);
    z-index: 0;
}
.banner .banner-slider{
    min-height: 600px;
    background-size: cover;
    background-position: center right;
    display: grid;
    align-items: center;
}
.owl-dots{
    position: absolute;
    width: 100%;
    bottom: 20px;
}
.owl-carousel-btn-wrap button img{
    width: 25px;
    margin: auto;
    opacity: 0.8;
    filter: invert(1);
}
.owl-carousel-btn-wrap button:hover{
  background: #3e2671;
}
.owl-carousel-btn-wrap button{
    box-shadow: 0px 1px 0px gainsboro;
    border: none;
    width: 50px;
    height: 50px;
    background: #673ebb;
    border-radius: 50%;
}
.owl-carousel-btn-wrap{
    text-align: center;
}
.owl-theme .owl-dots .owl-dot.active span{
    width: 30px;
    background: #9d6eff;
}

/* Products Grid */

.products-section::before{
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url(../img/bg-01.webp);
  background-size: cover;
  background-position: center top;
  opacity: 0.1;
}
.products-section{
  position: relative;
}

.products-grids:hover .products-grids-content{
  background: #9d6eff;
  transform: translateY(-40px);
}
.products-grids .products-grids-content{
  transition: 0.3s;
    width: 94%;
    left: 3%;
    position: relative;
    bottom: -30px;
    background: #6940bf;
}
.products-grids:hover .products-grids-img img{
  transform: scale(1.2) translateY(20px);
}
.products-grids .products-grids-img img{
  transition: 0.3s;
  height: 200px;
  width: 100%;
  object-fit: contain;
  margin: auto;
}
.products-grids .products-grids-img{
    
}
.products-grids{
    background: linear-gradient(190deg, #dbdbdb, rgb(231 231 231 / 48%));
    position: relative;
    text-align: center;
}

/* Inner Products Grid */


.inner-products-grids:hover {
    box-shadow: 0px 7px 10px gainsboro;
    transform: translateY(-5px);
}
.inner-products-grids:hover .inner-products-grids-content{
  background: #9d6eff;
  color: #ffffff;
}
.inner-products-grids .inner-products-grids-content{
  transition: 0.3s;
  position: relative;
  background: linear-gradient(0deg, rgb(0 0 0 / 20%), transparent);
}
.inner-products-grids:hover .inner-products-grids-img img{
  transform: scale(1.2) translateY(20px);
}
.inner-products-grids .inner-products-grids-img img{
  transition: 0.3s;
  height: 300px;
  width: 100%;
  object-fit: contain;
  margin: auto;
}
.inner-products-grids{
  transition: 0.3s;
  background: linear-gradient(190deg, #dccbff, rgb(231 231 231 / 48%));
  position: relative;
  text-align: center;
  overflow: hidden;
  display: grid;
  align-content: space-between;
}

/* categories-box */

.categories-box img{
  transition: 0.3s;
}
.categories-box:hover img{
  transform: scale(1.4) translateY(-10px);
}
.categories-box:hover{
  text-decoration: none;
}
.categories-box{
  transition: 0.3s;
  color: #000;
  text-decoration: none;
  display: block;
  background: #f0f0f0;
  box-shadow: 0px 2px 0px gainsboro;
}


/* accordion-style-01 */

.accordion-style-01 .card .card-body{
    background: #FFF2EB;
    border-radius: 0px 0px 20px 20px;
}
.accordion-style-01 .card{
    border: 0;
    margin-bottom: 15px;
}
.accordion-style-01 button.collapsed{
      border-radius: 20px 20px 20px 20px;
    background: #FFF2EB;
    color: #555;
}
.accordion-style-01 button{
    box-shadow: none;
    border: 0;
    display: block;
    width: 100%;
    padding: 15px 20px;
    text-align: left;
    border-radius: 20px 20px 0px 0px;
    background: #9d6eff;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
}

/* testimonials-box */

.testimonials-section::before{
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: url(../img/bg-03.webp);
  background-size: cover;
  background-position: center top;
  opacity: 0.4;
}
.testimonials-section{
  position: relative;
}
.testimonials-box .testimonial-quote{
    width: 60px;
    height: 60px;
    background: #9d6eff;
    padding: 10px;
    position: absolute;
    top: -30px;
    border-radius: 50%;
    border: 5px solid #f1f1f1;
}
.testimonials-box .client-img{
    width: 50px;
    height: 50px;
    background: #9d6eff;
    border-radius: 50%;
    overflow: hidden;
}
.center .testimonials-box{
      background-color: #9d6eff;
    color: #fff;
    box-shadow: 0px 3px 3px #00000036;
    transform: scale(1.1);
}
.center .testimonials-box .client-info span{
  color: #ccc !important;
}
.center .testimonials-box .client-img{
  background: #5ee0e9;
}
.testimonials-box{
  background: #fff;
  position: relative;
  min-height: 350px;
}
.footer .footer-links a:hover{
    text-decoration: none;
    color: #ffffff;
}
.footer .footer-links a{
  color: #ccc;
}
.footer .footer-links{
    padding: 0;
    line-height: 30px;
}
.footer{
  background: #111;
}
.footer-add-box .footer-add-box-icon{
        width: 45px;
    height: 45px;
    text-align: center;
    line-height: 45px;
    font-size: 25px;
    background: rgb(157 110 255 / 50%);
    color: #fff;
    border-radius: 50%;
}
.social-icons li a:hover{
    background: #9d6eff;
    color: #fff;
}
.social-icons li a{
    width: 30px;
    height: 30px;
    display: block;
    text-align: center;
    line-height: 30px;
    background: #c6c6c6;
    color: #000000;
    border-radius: 50%;
}
.social-icons li{
    display: inline-block;
    margin-right: 5px;
}
.social-icons{
  padding: 0;
}
.footer-form button{
    padding: 10px 50px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0px 1px 4px rgb(0 0 0 / 50%);
    display: block;
}
.footer-form .form-control:focus{
    box-shadow: none;
    border: 0;
    outline: 0;
    background: none;
}
.footer-form input{
    background: none;
    border: 0;
}
.footer-form .form-group{
    display: flex;
    background: #ffffff24;
    border-radius: 50px;
    padding: 5px;
    align-items: center;
}
.navbar-toggler-icon img{
  filter: invert(49%) sepia(88%) saturate(2423%) hue-rotate(227deg) brightness(99%) contrast(105%);
}
.inner-banner{
  background-image: url(../img/slider-01.webp);
}
.contact-form .form-control{
    min-height: 50px;
    border-radius: 10px;
    border: 0;
    background: #f1f1f1;
}
.home-footer-map img{
    height: 400px;
    width: 100%;
    object-fit: cover;
}
.home-footer-map .home-footer-map-inner img{
    width: 100px;
    height: auto;
    padding: 15px;
    border: 1px solid #ff0000;
    border-radius: 50%;
    filter: invert(1);
    background: rgb(0 0 0 / 30%);
}
.home-footer-map .home-footer-map-inner:hover{
  opacity: 1;
}
.home-footer-map .home-footer-map-inner{
  transition: 0.3s;
  opacity: 0;
  position: absolute;
  left: 0;
  text-align: center;
  top: 0;
  display: grid;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  background-image: radial-gradient(circle farthest-corner at 50.3% 47.3%, rgb(157 110 255) 0.1%, rgb(157 110 255 / 0%) 90%);
}
.home-footer-map{
  position: relative;
}
#age_validation::before{
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url(../img/bg-01.webp);
  background-size: cover;
  background-position: center top;
  opacity: 0.1;
}
#age_validation{
  background: radial-gradient(circle at 50.3% 47.3%, rgb(157, 110, 255) 0.1%, rgb(0, 0, 0) 90%);
}

@media screen and (max-width: 767px) {
    .banner .banner-slider{
        background-position: 60% center;
    }
  .font-sm-24 {
    font-size: 24px !important;
  }
  .header{
    backdrop-filter: blur(20px);
  }
  .banner .banner-slider::before{
    background: linear-gradient(45deg, rgb(0 0 0) 30%, rgb(0 0 0 / 20%) 90%);
    opacity: 0.7;
  }
  .inner-products-grids .inner-products-grids-img img{
    height: 150px;
  }
}