

/*---------------------------------------
               
-----------------------------------------*/
:root {
  --white-color:                  #FFFFFF;
  --primary-color:                #247cff;
  --section-bg-color:             #F9F9F9;
  --dark-color:                   #000000;
  --title-color:                  #565758;
  --p-color:                      #717275;
  --border-color:                 #eaeaea;

  --body-font-family:             'Open Sans', sans-serif;

  --h1-font-size:                 48px;
  --h2-font-size:                 36px;
  --h3-font-size:                 32px;
  --h4-font-size:                 28px;
  --h5-font-size:                 24px;
  --h6-font-size:                 22px;
  --p-font-size:                  20px;
  --menu-font-size:               16px;

  --font-weight-light:            300;
  --font-weight-normal:           400;
  --font-weight-semibold:         600;
  --font-weight-bold:             700;
}

body {
    background: var(--white-color);
    font-family: var(--body-font-family);    
    position: relative;
    cursor: url('../images/bee.png'),auto;

}




/*---------------------------------------
  TYPOGRAPHY               
-----------------------------------------*/

h2,
h3,
h4,
h5,
h6 {
  color: #674459;
  line-height: normal;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: var(--font-weight-semibold);
  font-family: 'quesha-gndr';
}

h1,
h2 {
  font-weight: var(--font-weight-bold);
}

h1 {
  font-size: var(--h1-font-size);
  line-height: normal;
}

h2 {
  font-size: var(--h2-font-size);
}

h3 {
  font-size: var(--h3-font-size);
}

h4 {
  font-size: var(--h4-font-size);
}

h5 {
  font-size: var(--h5-font-size);
}

h6 {
  font-size: var(--h6-font-size);
}

@font-face {
    font-family: 'appetite-rounded';
    src: url('../fonts/poppins-regular.ttf');
  }

@font-face {
    font-family: 'poppins-regular';
    src: url('../fonts/poppins-regular.ttf');
  }

@font-face {
    font-family: 'kano';
    src: url('../fonts/kano.otf');
  }

@font-face {
    font-family: 'quesha-gndr';
    src: url('../fonts/quesha-gndr.ttf');
  }

body {
  font-family: kano;
}

p {
  color: #121212;
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-light);

}

a, 
button {
  touch-action: manipulation;
  transition: all 0.3s;
}

a {
  color: var(--p-color);
  text-decoration: none;
}

a:hover {
  color: var(--primary-color);
}

.section-padding {
  padding-top: 7rem;
  padding-bottom: 7rem;
}

.breadcrumb-item+.breadcrumb-item::before {
  color: #fff;
}

/*---------------------------------------
  CUSTOM LINK               
-----------------------------------------*/
.custom-link {
  display: inline-block;
  text-decoration: none;
  border: 1px solid var(--border-color);
  color: var(--primary-color);
  pointer-events: auto;
  font-weight: var(--font-weight-semibold);
  line-height: 40px;
  position: relative;
  padding: 0 30px;
  box-sizing: border-box;
  margin: 0;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  overflow: hidden;
  border-radius: 0;
  text-transform: uppercase;
}

.custom-link::before {
  content: attr(data-hover);
  background-color: var(--border-color);
  color: var(--primary-color);
  position: absolute;
  top: 100%;
  bottom: 0;
  left: 0;
  transition: all 300ms cubic-bezier(0.19, 1, 0.56, 1);
  right: 0;
  text-align: center;
}

.custom-link:hover::before {
  top: 0;
}

b,
strong {
  font-weight: var(--font-weight-bold);
}

/*---------------------------------------
  LIST GROUP               
-----------------------------------------*/
.list-group-item {
  background-color: transparent;
  color: var(--p-color);
  font-size: var(--p-font-size);
  padding: 1rem 0;
}

.list-group-item:first-child {
  padding-top: 0;
}

.list-group-item span {
  font-weight: var(--font-weight-semibold);
  margin-left: auto;
}

/*---------------------------------------
  ANIMATED TEXT              
-----------------------------------------*/
.animated {
  position: relative;
}

.animated-info {
  display: inline-block;
  vertical-align: top;
  min-width: 250px;
  position: relative;
}

.animated-item {
  color: var(--primary-color);
}

.animated-item {
  display: block;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  animation: BottomTotop 6s linear infinite 0s;
}

.animated-item:nth-child(2n+2) {
  animation-delay: 2s;
}

.animated-item:nth-child(3n+3) {
  animation-delay: 4s;
}

@keyframes BottomTotop {
  0% {
    opacity: 0;
  }
  5% {
    opacity: 0;
    transform: translateY(5px);
  }
  10% {
    opacity: 1;
    transform: translateY(0px);
  }
  25% {
    opacity: 1;
    transform: translateY(0px);
  }
  30% {
    opacity: 0;
    transform: translateY(5px);
  }
  80% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}


/*---------------------------------------
  NAVIGATION              
-----------------------------------------*/
.navbar {
  padding-top: 20px;
  padding-bottom: 20px;
  /*background-color: rgb(201, 76, 76, 0%);*/
}

.submenu {
  left: 80%;
}

.navbar-nav li:hover > ul.dropdown-menu {
    display: block;
}

.navbar-brand {
  color: var(--primary-color);
  font-size: var(--h5-font-size);
  font-weight: var(--font-weight-bold);
  margin: 0 30px;
  padding: 0;
  text-align: center;
}

.navbar-brand strong {
  color: var(--p-color);
  font-size: 12px;
  position: relative;
  bottom: 5px;
}

.navbar-expand-lg .navbar-nav .nav-link {
  padding-right: 1.5rem;
  padding-left: 1.5rem;
}

.navbar-nav .nav-link {
  color: var(--p-color);
  font-size: var(--menu-font-size);
  padding-top: 15px;
  padding-bottom: 15px;
}

.nav-item {
  align-self: center;
}


.navbar-nav .nav-item.active .nav-link, 
.nav-link:focus, 
.nav-link:hover {
  color: #68475a;
}

.nav-link:focus {
  color: var(--p-color);
}

.navbar-toggler {
  border: 0;
  padding: 0;
  cursor: pointer;
  margin: 0;
  width: 30px;
  height: 35px;
  outline: none;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before,
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transition: top 300ms 50ms ease, -webkit-transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease, -webkit-transform 300ms 350ms ease;
  top: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
  transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transform: rotate(-45deg);
}

.navbar-toggler .navbar-toggler-icon {
  background: var(--dark-color);
  transition: background 10ms 300ms ease;
  display: block;
  width: 30px;
  height: 2px;
  position: relative;
}

.navbar-toggler .navbar-toggler-icon:before,
.navbar-toggler .navbar-toggler-icon:after {
  transition: top 300ms 350ms ease, -webkit-transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease, -webkit-transform 300ms 50ms ease;
  position: absolute;
  right: 0;
  left: 0;
  background: var(--dark-color);
  width: 30px;
  height: 2px;
  content: '';
}

.navbar-toggler .navbar-toggler-icon:before {
  top: -8px;
}

.navbar-toggler .navbar-toggler-icon:after {
  top: 8px;
}


.reviews-carousel .owl-nav {
  display: flex;
  justify-content: space-between;
  margin: auto;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.reviews-carousel .owl-nav span {
  width: 35px;
  height: 35px;
  line-height: 35px;
  display: block;
}

.reviews-carousel .owl-nav .owl-prev {
  position: relative;
  left: -80px;
}

.reviews-carousel .owl-nav .owl-next {
  position: relative;
  right: -80px;
}

.reviews-carousel .owl-prev span,
.reviews-carousel .owl-next span {
  color: transparent;
}

.reviews-carousel .owl-prev span::before,
.reviews-carousel .owl-next span::before {
  font-family: bootstrap-icons;
  display: block;
  font-size: var(--h3-font-size);
  color: var(--p-color);
  width: 35px;
  height: 35px;
}

.reviews-carousel .owl-prev span::before {
  content: "\f12f";
}

.reviews-carousel .owl-next span::before {
  content: "\f138";
}



  .navbar {
    padding-top: 10px;
    padding-bottom: 10px;
    width: 95%;
    margin: auto;
  }

  .navbar-nav .nav-link {
    padding-top: 5px;
    padding-bottom: 10px;
  }

@media screen and (max-width: 767px) {
  .heroText {
    padding: 1.5rem;
  }

  .animated-info {
    min-width: 125px;
  }

  .featured-circle {
    margin-top: 20px;
  }

  .reviews-carousel .owl-nav {
    position: relative;
    width: auto !important;
    transform: inherit;
    top: 0;
    bottom: 0;
    left: 0;
    max-width: 100px;
    margin: 20px auto;
  }

  .reviews-carousel .owl-nav .owl-prev,
  .reviews-carousel .owl-nav .owl-next {
    right: 0;
    left: 0;
  }
}

/*===== slider =====*/

.carousel {
  height: 100vh;
}


.carousel-item {
  height: 100vh;
  background-color: 
}

.desktop_banner {
  display: block;
}

.mobile_banner {
  display: none;
}

/*===== section_1 =====*/

.section_1 {
  padding: 40px;
  text-align: center;
  background-color: #f9dacd;
}

.section_1-btn {
  text-align: center;
  margin: auto;
  border: none;
  outline: none;
  color: #fff;
  margin-top: 1rem;
  padding: 4px 1rem;
  background-color: #674459;
}


/*====== section_2 =====*/

.section_2 {
  padding: 60px;
}

.section_2-btn {
  text-align: center;
  margin: auto;
  border: none;
  outline: none;
  color: #fff;
  margin-top: 1rem;
  padding: 4px 1rem;
  background-color: #674459;
}

.section_2-about { 
  align-self: center;
}



/*===== section_5 =====*/

.section_5 {
  padding: 60px;
  text-align: center;
  background-color: #f3c8b5;
}

.section_5-about { 
  align-self: center;
  padding: 30px;
  /*
  background-image: url(../images/about_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  */
}

.bg-color-about {
  background-color: #674459;
}



/*===== footer =====*/
/**
 * 7. - FOOTER
 * -----------------------------------------------------------------------------
 */
.footer {
  width: 100%;
  margin: auto;
  padding: 40px 0 0 0;
  background-color: #674459;
  color: #ffffff; }
  .footer > .container {
    padding-bottom: 0px; }
  .footer .footer-item .logo-bottom {
    margin-top: 20px;
    margin-bottom: 30px; }
  .footer .footer-item .footer-title {
    font-size: 24px;
    font-weight: 600;
    padding: 20px 0 20px 0;
    margin-bottom: 35px;
    position: relative; }
    
  .footer .footer-item .footer-sosmed {
    margin-top: 30px;
    margin-bottom: 30px;
    display: inline-block; }
    .footer .footer-item .footer-sosmed a .item {
      color: #674459;
      display: table-cell;
      vertical-align: middle;
      margin: 0 14px;
      width: 40px;
      height: 40px;
      text-align: center;
      background-color: #fff;
      -webkit-border-radius: 50px;
      -moz-border-radius: 50px;
      -ms-border-radius: 50px;
      border-radius: 50px; }
      .footer .footer-item .footer-sosmed a .item:hover {
        background-color: #fbb717; }
      .footer .footer-item .footer-sosmed a .item .fa {
        font-size: 16px; }
  .footer .footer-item .list {
    margin: 0;
    padding: 0; }
    .footer .footer-item .list li {
      list-style: none;
      margin: 14px 0; }
      .footer .footer-item .list li a {
        color: rgba(255, 195, 29, 0.7); }
        .footer .footer-item .list li a:hover {
          color: #fbb717; }
  .footer .footer-item .footer-subscribe {
    position: relative; }
    .footer .footer-item .footer-subscribe input[type=email] {
      width: 100%;
      background: #fff;
      /*padding: 10px 57px 10px 17px;*/
      min-height: 38px;
      max-width: 480px;
      -webkit-border-radius: 0;
      -moz-border-radius: 0;
      -ms-border-radius: 0;
      border-radius: 0; }
      .footer .footer-item .footer-subscribe input[type=email]:focus {
        background: #fff;
        -webkit-border-radius: 2px;
        -moz-border-radius: 2px;
        -ms-border-radius: 2px;
        border-radius: 2px;
        -webkit-box-shadow: 0 0 0 2px #fbb717;
        -moz-box-shadow: 0 0 0 2px #fbb717;
        box-shadow: 0 0 0 2px #fbb717;
        border-color: transparent; }
    .footer .footer-item .footer-subscribe input[type=submit] {
      position: absolute;
      left: 0;
      top: 0;
      visibility: hidden; }
    .footer .footer-item .footer-subscribe label {
      position: absolute;
      right: 0;
      top: 0;
      border: 0;
      width: 40px;
      height: 38px;
      line-height: 40px;
      padding: 0;
      cursor: pointer;
      text-align: center;
      font-size: 13px;
      background: none;
      color: #151d4a;
      outline: 0 !important;
      -webkit-transition: color .3s ease;
      -moz-transition: color .3s ease;
      -ms-transition: color .3s ease;
      -o-transition: color .3s ease;
      transition: color .3s ease;
      background: #fff; }
    .footer .footer-item .footer-subscribe .icon {
      font-size: 18px; }
    .footer .footer-item .footer-subscribe p {
      color: rgba(255, 255, 255, 0.7);
      font-size: 13px;
      margin-top: 16px; }
  .footer .footer-item .recent-post {
    margin: 0;
    padding: 0; }
    .footer .footer-item .recent-post li {
      list-style: none;
      margin: 0 0 30px; }
      .footer .footer-item .recent-post li a {
        color: #fff;
        line-height: 20px;
        display: inline-block;
        vertical-align: top;
        margin: 0 0 14px; }
        .footer .footer-item .recent-post li a:hover {
          color: #fbb717; }
      .footer .footer-item .recent-post li .date {
        display: block;
        font-size: 12px;
        padding: 0;
        color: rgba(255, 255, 255, 0.7); }
        .footer .footer-item .recent-post li .date i {
          margin-right: 5px; }
  .footer .fcopy {
    padding: 20px 0;
    color: #ffffff;
    font-size: 14px;
    border-top: 1px solid #fff; }

.list-info {
  margin: 0;
  padding: 0; }
  .list-info li {
    margin-bottom: 20px;
    list-style: none; }
    .list-info li .info-icon {
      display: inline-block;
      color: #041e42;
      font-size: 16px;
      float: left; }
    .list-info li .info-text {
      margin-left: 30px; }

.footer-icon {
  color: #674459;
}

.desktop-whatsapp {
  display: block;
}

.mobile-whatsapp {
  display: none;
}


/*======*/

.page-header {
    margin-bottom: 6rem;
    background: url(../images/slider/top-banner.jpg) center center no-repeat;
    background-size: cover;
}

.py-6 {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.heading {
  font-family: 'quesha-gndr';
  color: #674459;
  font-weight: 100;
  font-size: 4.5rem;
  line-height: 60px;
}

.gallery-section {
  padding: 40px;
}

.card {
  padding-bottom: 4px;
}

.card_wrapper {
    column-gap: 5px;
    column-count: 4;
}

.card-title {
  margin-bottom: 0;
}

.list-group-item {
  margin-top: 1rem;
  margin-left: 1rem;
}

.card img {
    width: 100%;
}

.galary_heading {
    position: sticky;
    top: 0;
    z-index:99999999;
    padding: 30px;
    background-color: rgb(214, 236, 255);
    margin-bottom: 5px;
}

.galary_heading h1 {
    color: darkorange;
    text-align: center;
    font-size: 50px;
}

@media (max-width: 576px) {
    .card_wrapper {
        column-count: 2;
    }
}

@media (max-width: 992px) {
    .card_wrapper {
        column-count: 3;
    }
}

@media (max-width: 1366px) {
      .heading {
    font-size: 3.5rem;
    line-height: 60px;
  }
}


.sction-1-heading {
  color: #674459;
}

#navbarDropdown:hover .dropdown-menu {
  display: block;
}


/*======== contact =======*/

.form-section {
  padding: 60px;
} 

.btn-primary {
  background-color: #674459;
  border-color: #674459;
}

.btn-primary:hover {
  background-color: #674459;
  border-color: #674459;
} 



/*======== product page ======*/

.product-carousel {
  height: 80vh;
}
#product-carousel-inner {
  transition: .25s linear; 
  height: 100vh 
}

#product-carousel-inner:hover {
  transform: translatey(-1%);
}

#btn-color-1 {
  background-color: #e6c336;
  opacity: 100;
  width: 15px;
  height: 15px;
  border-radius: 50%;
}

#btn-color-2 {
  background-color: #c20001;
  opacity: 100;
  width: 15px;
  height: 15px;
  border-radius: 50%;
}

#btn-color-3 {
  background-color: #c46631;
  opacity: 100;
  width: 15px;
  height: 15px;
  border-radius: 50%;
}

#btn-color-4 {
  background-color: #66435b;
  opacity: 100;
  width: 15px;
  height: 15px;
  border-radius: 50%;
}

#btn-color-5 {
  background-color: #7f4730;
  opacity: 100;
  width: 15px;
  height: 15px;
  border-radius: 50%;
}

#btn-color-6 {
  background-color: #694230;
  opacity: 100;
  width: 15px;
  height: 15px;
  border-radius: 50%;
}

#btn-color-7 {
  background-color: #d28560;
  opacity: 100;
  width: 15px;
  height: 15px;
  border-radius: 50%;
}

#btn-color-8 {
  background-color: #edc47f;
  opacity: 100;
  width: 15px;
  height: 15px;
  border-radius: 50%;
}

#btn-color-9 {
  background-color: #d37f4e;
  opacity: 100;
  width: 15px;
  height: 15px;
  border-radius: 50%;
}


.collection_dis {
  font-size: 16px;
}

.collection_head {
  font-size: 32px;
}

/*
.section_1 h5 {
  font-size: 28px;
}
*/

.dropdown-item:focus, .dropdown-item:hover {
  background-color: #674459;
  color: #fff;
}

.dropdown-item.active, .dropdown-item:active {
  background-color: #674459;
}

.location_icon {
  color: #674459;
}

.card_2 {
  background-color: #f5f5f5;
}

.border {
  border: solid 1px #674459;
}

.card-text {
  margin-bottom: 0.5.rem;
}


//*======= address 3 =======*//

.address-3 {
  padding: 40px;
}


//*======= blog page =======*//

.aside_section {
  padding: 30px 0px 30px 0px;
}

.sticky-aside {
  position: -webkit-sticky;
    position: sticky;
    top: 0;
  width: auto;
  display: block;
  width: 100%;
  background-color: transparent;
}

.aside_heading {
  color: #674459;
  margin-bottom: .3rem;
}

.bi-arrow-right-circle-fill {
  color: #674459;
}

.bi-clock-fill {
  color: #674459; 
}

.bi-chat-fill {
  color: #674459;
}

.aside-2-heading {
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 5px;
}

.aside-2-pera {
  font-size: 14px;
  margin-bottom: 7px;
}

.read_more_btn {
  font-weight: 500;
  color: #674459;
  text-decoration: none;
}

.review {
  display: flex;
    flex-direction: row;
    align-self: center;
    padding-top: 10px;
}

.post-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #fff;
}

.post-img img {
  display: flex;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.review h5 {
  align-self: center;
    display: flex;
    flex-direction: column;
    padding-left: 15px;
}

.color-icon-1 {
  color: #3b5998;
}

.color-icon-3 {
  color: #00acee;
}

.color-icon-2 {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  -webkit-background-clip: text;
          /* Also define standard property for compatibility */
          background-clip: text;
  -webkit-text-fill-color: transparent;
}

.coming_soon {
  font-size: 7.5rem;
  color: #674459;
}

.swiggy-icon {
  margin-right: 10px;
}

/*===== responsive blog ======*/

@media(max-width: 475px) {
  .navbar-light .navbar-toggler {
    color: #fff;
      border-color: #fff;
  }
  .navbar {
    border-radius: 0px 0px 15px 15px;
  }
  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 0rem;
      padding-left: 0rem;
  }
  .navbar-nav {
    padding-top: 10px;
  }
  .sction-1-heading {
    font-size: 3rem;
  }
  .social a {
    padding-left: 0px;
  }
  #desktop-banner {
    display: none !important;
  }
  #mobile-banner {
    display: block!important;
  }
  .learn-section {
    padding: 10px 0px 40px 0px;
  }
  .learn-pera-sec {
    padding: 20px;
  }
  footer p {
    font-size: 0.8rem;
  }
  .section_5 {
    padding-left: 18px;
    padding-right: 18px;
  }
  .section_5-about {
    padding: 0px;
  }
  .section_2 {
    padding-left: 18px;
    padding-right: 18px;
  }
  .section_1 {
    padding-left: 18px;
    padding-right: 18px;
  }
  .form-section {
    padding-left: 18px;
    padding-right: 18px;
  }
  .desktop_banner {
  display: none;
  }
  .mobile_banner {
    display: block;
  }
  .display-4 {
    font-size: 4rem;
  }
  .heading {
    line-height: 45px;
  }
  .navbar-toggler .navbar-toggler-icon {
    background-color: #4d3343;
  }
  .navbar-toggler .navbar-toggler-icon:before {
    background-color: #4d3343;
  }
  .navbar-toggler .navbar-toggler-icon:after {
    background-color: #4d3343;
  }
  .mob-pad {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
  .coming_soon {
    line-height: 0.8;
  }
}