/* --------------- menus st2 --------------- */

/* Add this in your CSS */
.menu-desc {
    color: var(--color-three); /* You can use any other color value */
}

.tc-menus-st2 .list-item .row {
    align-items: flex-start !important; /* Override Bootstrap's default centering */
}


.nav-link {
    display: block;
    padding: var(--bs-nav-link-padding-y) var(--bs-nav-link-padding-x);
    font-size: var(--bs-nav-link-font-size);
    font-weight: var(--bs-nav-link-font-weight);
    color: var(--bs-nav-link-color);
    text-decoration: none;
    background: rgba(255, 255, 255, 0);
    border: 0;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out;
}


.tc-menus-st2 {
    position: relative;
    padding-top: var(--padding-top-100);
    padding-bottom: var(--padding-bottom-100);
    overflow: hidden;
    background: #ffffff;
}
    

.tc-menus-st2 .left-bg{
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0.5;
}
.tc-menus-st2 .left-bg img{
  opacity: 0.1;
}

.tc-menus-st2 .right-bg{
    position: absolute;
    right: 0;
    bottom: 0;
}

.tc-menus-st2 .right-bg img{
  opacity: 0.1;
}

.tc-menus-st2 .container {

    max-width: 80vw;

}


 .tc-menus-st2 .list-item .cont p {
   font-size: 1.2rem;
  }



.instagram-section {
    position: relative;
   
    overflow: hidden;
    background-color: var(--color-four);
}
    

/* Custom CSS to hide <a> elements inside the specified div */
.WidgetBackground__Content-sc-1ho7q3r-2.ciCnpO a {
  display: none !important;
}


  .tc-menus-st2 .nav-pills {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    max-width: 100%;
    border-radius: 50px;
    border: 1px dashed #fff2;
    margin: 0 auto;
    padding: 12px 25px;
  }
  .tc-menus-st2 .nav-pills .nav-item {
    position: relative;
    -webkit-padding-end: 20px;
            padding-inline-end: 20px;
  }
  .tc-menus-st2 .nav-pills .nav-item::after {
    position: absolute;
    content: "/";
    right: 5px;
    top: 10px;
  }
  .tc-menus-st2 .nav-pills .nav-item:last-of-type {
    -webkit-padding-end: 0;
            padding-inline-end: 0;
  }
  .tc-menus-st2 .nav-pills .nav-item:last-of-type::after {
    display: none;
  }
  .tc-menus-st2 .nav-pills .nav-item .nav-link {
    font-size: 16px;
    color: var(--text-color);
    border-radius: 30px;
    line-height: 1;
    padding: 10px 20px;
  }
  .tc-menus-st2 .nav-pills .nav-item .nav-link.active {
    background-color: var(--color-nine);
    color: #ffffff;
  }
  .tc-menus-st2 .list-item {
    position: relative;
    display: block;
    padding: 30px 0;
  }
  .tc-menus-st2 .list-item::after {
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background-image: -webkit-gradient(linear, left top, right top, color-stop(33%, #fff4), color-stop(0%, rgba(255, 255, 255, 0)));
    background-image: linear-gradient(to right, #fff4 33%, rgba(255, 255, 255, 0) 0%);
    background-position: bottom;
    background-size: 10px;
    background-repeat: repeat-x;
  }
  .tc-menus-st2 .list-item .img {
    width: 85px;
    height: 95px;
    border-radius: 8px;
    overflow: hidden;
    -webkit-margin-end: 20px;
            margin-inline-end: 20px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
  .tc-menus-st2 .list-item .inf {
    width: 100%;
    -webkit-padding-end: 40px;
            padding-inline-end: 40px;
  }

  .tc-menus-st2 .list-item .inf h6 {
    font-size: 20px ;
  }
  .tc-menus-st2 .list-item .price {
    margin-top: 0; /* Remove any default margin */
    padding: 0;
    text-align: right; /* Keep the text right-aligned within the price div */
/* 
    line-height: 1.4;
    -ms-flex-negative: 0;
        flex-shrink: 0; */
  }
  .tc-menus-st2 .list-item .discount {
    font-size: 13px;
    color: #fff;
    padding: 7px 20px;
    border-radius: 8px;
    background-color: var(--main-color);
    margin-top: 10px;
    display: inline-block;
  }
  .tc-menus-st2 .list-item .main-inf {
    display: flex;
    align-items: baseline; 
  }
  .tc-menus-st2 .list-item .num {
    font-size: 20px;
    color: var(--main-color);
    height: 100%;
  }
  .tc-menus-st2 .list-item .float-img {
    position: absolute;
    right: 25%;
    top: 50%;
    -webkit-transform: translateY(-50%) scale(0.5);
            transform: translateY(-50%) scale(0.5);
    width: 250px;
    height: 188px;
    border-radius: 5%;
    z-index: 20;
    max-width: unset;
    max-height: unset;
    opacity: 0;
    pointer-events: none;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
  .tc-menus-st2 .list-item:hover::after {
    background-image: -webkit-gradient(linear, left top, right top, color-stop(33%, var(--cr-brown1)), color-stop(0%, rgba(255, 255, 255, 0)));
    background-image: linear-gradient(to right, var(--color-one); 33%, rgba(255, 255, 255, 0) 0%);
  }
  .tc-menus-st2 .list-item:hover .float-img {
    -webkit-transform: translateY(-50%) scale(1);
            transform: translateY(-50%) scale(1);
    opacity: 1;
  }
  
  @media screen and (max-width: 991px) {
    .tc-menus-st2 .list-item .row > .col-lg-1 {
      display: none;
    }
    .tc-menus-st2 .list-item .main-inf {
      margin-bottom: 20px;
    }
    .tc-menus-st2 .list-item .price {
      text-align: start;
    }
  }