@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@300;400;500;600;700&display=swap');

@font-face {
  font-family: 'Dangmen';
  src: url('../font/DangmenRegular.woff2') format('woff2'),
    url('../font/DangmenRegular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

.rajdhani-light {
  font-family: "Rajdhani", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.rajdhani-regular {
  font-family: "Rajdhani", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.rajdhani-medium {
  font-family: "Rajdhani", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.rajdhani-semibold {
  font-family: "Rajdhani", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.rajdhani-bold {
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  font-style: normal;
}


body {
  font-family: "Rajdhani", sans-serif;
  text-align: center;
  overflow-x: hidden;
}

a,
a:hover {
  text-decoration: none;
}

.clear {
  clear: both;
}

header {
  width: 100%;
  padding: 15px 0px;
  background: none;
  position: absolute;
  z-index: 10;
}

.bg {
  background: url(../images/bg2.png) no-repeat;
  background-size: cover;
}

.site_logo {
  width: 100%;
  padding-top: 10px;
}

.site_logo img {
  width: 100%;
}

.header_nav {
  margin-top: 5px;
}

.banner {
  width: 100vw;
  height: auto;
  margin: 0px;
  padding-bottom: 100px;
  position: relative;
  background-color: #000;
  background-size: cover;
}

.banner_overlay {
  width: 100vw;
  height: auto;
  background: #000;
  opacity: 0.5;
  position: absolute;
}

.banner_content {
  /* position: absolute;
    top: 35%;
    right: 50%;
    transform: translate(50%); */
  text-align: left;
  color: #fff;
  width: 100%;
  padding-top: 120px;

}

.banner_content h1 {
  font-family: 'Dangmen';
  font-size: 3vw;
  line-height: 60px;
  padding-top: 100px;
}

.banner_content p {
  font-size: 20px;
  line-height: 25px;
}

.tracking-in-expand {
  -webkit-animation: tracking-in-expand 1s cubic-bezier(0.215, 0.610, 0.355, 1.000) both;
  animation: tracking-in-expand 1s cubic-bezier(0.215, 0.610, 0.355, 1.000) both;
}

/*query form*/
/* From Uiverse.io by ammarsaa */
.form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  padding: 30px;
  position: relative;
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
}

.title {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -1px;
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 30px;
  color: #00bfff;
}

.title::before {
  width: 18px;
  height: 18px;
}

.title::after {
  width: 18px;
  height: 18px;
  animation: pulse 1s linear infinite;
}

.title::before,
.title::after {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  border-radius: 50%;
  left: 0px;
  background-color: #00bfff;
}

.message,
.signin {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.7);
}

.signin {
  text-align: center;
}

.signin a:hover {
  text-decoration: underline royalblue;
}

.signin a {
  color: #00bfff;
}

.flex {
  display: flex;
  width: 100%;
  gap: 6px;
}

.form label {
  position: relative;
}

.form label .input {
  background-color: #333;
  color: #fff;
  width: 100%;
  padding: 20px 05px 05px 10px;
  outline: 0;
  border: 1px solid rgba(105, 105, 105, 0.397);
  background-color: rgba(0, 0, 0, 0.7);
}

.form select {
  background-color: #333;
  color: rgba(255, 255, 255, 0.5);
  width: 100%;
  padding: 10px 10px 10px 10px;
  outline: 0;
  border: 1px solid rgba(105, 105, 105, 0.397);
  background-color: rgba(0, 0, 0, 0.7);
}

.form label .input+span {
  color: rgba(255, 255, 255, 0.5);
  position: absolute;
  left: 15px;
  top: 2px;
  font-size: 0.9em;
  cursor: text;
  transition: 0.3s ease;
}

.form label .input:placeholder-shown+span {
  top: 16px;
  font-size: 0.9em;
}

.form label .input:focus+span,
.form label .input:valid+span {
  color: #fbff00;
  top: 0px;
  font-size: 0.7em;
  font-weight: 600;
}

.input {
  font-size: medium;
}

.submit {
  border: none;
  outline: none;
  padding: 10px;
  color: #fff;
  font-size: 16px;
  transform: .3s ease;
  background-color: rgba(0, 0, 0, 0.7);
  border: 1px solid#fff;
  width: 50%;
  margin: 0px auto;
}

.submit:hover {
  background-color: #fff;
  color: #000;
}

@keyframes pulse {
  from {
    transform: scale(0.9);
    opacity: 1;
  }

  to {
    transform: scale(1.8);
    opacity: 0;
  }
}

/* end of query form */


/* ----------------------------------------------
 * Generated by Animista on 2025-6-23 22:52:6
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation tracking-in-expand
 * ----------------------------------------
 */
@-webkit-keyframes tracking-in-expand {
  0% {
    letter-spacing: -0.5em;
    opacity: 0;
  }

  40% {
    opacity: 0.6;
  }

  100% {
    opacity: 1;
  }
}

@keyframes tracking-in-expand {
  0% {
    letter-spacing: -0.5em;
    opacity: 0;
  }

  40% {
    opacity: 0.6;
  }

  100% {
    opacity: 1;
  }
}

.bg2 {
  width: 100vw;
  height: 630px;
  margin: 0px;
  padding: 0px;
  position: relative;
  background-size: cover;
}

.bg2 h1 {
  font-family: 'Dangmen';
  font-size: 3vw;
  line-height: 60px;
  padding-top: 150px;
  text-align: center;
  width: 350px;
  margin: 0px auto;
}

.s3 {
  width: 100%;
  padding: 50px 35px;
  background-color: #000;
}

.s3 p {
  color: #fff;
  font-size: 18px;
  text-align: center;
  padding-bottom: 30px;
}

.s3 a {
  color: #fff;
  text-transform: uppercase;
  font-size: 16px;
  border: 1px solid#fff;
  padding: 10px 30px;
  margin-top: 30px;
}

.s4 h2 {
  font-family: 'Dangmen';
  font-size: 3vw;
  line-height: 60px;
  padding-top: 50px;
}

.s4 h6 {
  font-size: 18px;
  padding: 0px 200px;
  line-height: 30px;
}

.service_box {
  width: 100%;
  height: 300px;
  position: relative;
  background: #ccc;
  margin: 15px 0px;
}

.service_box img {
  width: 100%;
  height: 100%;
  object-fit: cov;
}

.service_box_content {
  background: #000;
  color: #fff;
  position: absolute;
  bottom: 20px;
  left: 35px;
  text-align: center;
  width: 80%;
  height: 75px;
  padding: 20px;
  margin: 0px auto;
  transition: all .3s ease-out;
}

.service_box:hover .service_box_content {
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  position: absolute;
  bottom: 0px;
  left: 0px;
  text-align: center;
  width: 100%;
  height: 100%;
  padding: 30px 20px 20px 20px;
  margin: 0px auto;
  transition: all .3s ease-out;
}

.service_box_content h3 {
  font-family: 'Dangmen';
  font-size: 28px;
}

.service_box_content p {
  display: none;
}

.service_box_content a {
  color: #fff;
  text-transform: uppercase;
  font-size: 16px;
  border: 1px solid#fff;
  padding: 10px 30px;
  margin-top: 15px;
  display: none;
  width: 50%;
  margin: 0px auto;
}


.service_box:hover .service_box_content p {
  display: block;
}

.service_box:hover .service_box_content a {
  display: block;
}

.s5 {
  background-color: #F6F6F6;
  padding: 60px 0px;
  position: relative;
}

.s5 h3 {
  font-family: 'Dangmen';
  font-size: 3vw;
  text-align: center;
}

.s5 h6 {
  font-size: 18px;
  padding: 0px 0px;
  line-height: 30px;
}

.menu_list {}

.menu_list ul {
  display: flex;
  flex-wrap: wrap;
}

.menu_list ul li {
  list-style-type: none;
  text-align: left;
  /* float: left; */
  width: 33.333333%;
  font-size: 20px;
  font-weight: 500;
  margin: 5px 0px;
  position: relative;
  color: #333;
}

.menu_list ul li::before {
  content: '\f192';
  position: absolute;
  top: 3px;
  left: -25px;
  font-family: 'Font Awesome 6 Free';
  font-size: 16px;
  color: #949494;
}

#MenuTabs .item button {
  display: block;
  width: 100%;
  color: #000;
  background: transparent;
  font-size: 26px;
  font-weight: 500;
  border: 1px solid #000;
  padding: 8px 8px;
}

.menu-tabs-sec> :not(:first-child) {
  display: none;
}

#MenuTabs .item button.active {
  background: #000;
  color: #fff;
}

.menu_next {
  position: absolute;
  top: 13px;
  right: -35px;
  font-size: 24px;
}

.menu_pre {
  position: absolute;
  top: 13px;
  left: -35px;
  font-size: 24px;
}

img.wine-left {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 140px;
}

img.wine-right {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 140px;
}

.transparent-pricing {
  padding: 40px 0;
  text-align: left;
}

.transparent-pricing-img {
  text-align: left;
  position: relative;
  height: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}

.transparent-pricing-img-top {
  position: absolute;
  top: 0;
  left: 0;
}

.transparent-pricing-img-top img {
  width: 77%;
  position: relative;
  z-index: 1;
}

.transparent-pricing-img-bottom {
  text-align: right;
}

.transparent-pricing-img-bottom img {
  width: 78%;
}

.transparent-pricing h3 {
  font-family: 'Dangmen';
  font-size: 3vw;
  text-align: left;
}

.transparent-pricing p {
  font-size: 18px;
  padding: 0px 0px;
  line-height: 1.7;
}

.transparent-pricing ul {
  padding-left: 20px;
}

.transparent-pricing ul li {
  font-size: 18px;
  color: #666;
}

.outline-bttn {
  color: #000;
  text-transform: uppercase;
  font-size: 16px;
  border: 1px solid#000;
  padding: 13px 30px;
  /* margin-top: 30px; */
  display: inline-block;
  background: transparent;
  line-height: 1;
}

.site-info {
  background: #000;
  padding: 20px 15px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.site-info-card {
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
}

.site-info-card h5 {
  font-family: 'Dangmen';
  color: #fff;
}

.site-info-card p {
  margin: 0;
  font-size: 16px;
  color: #fff;
}

.site-info-card-icon img {
  width: 72px;
}

.Success-img {
  display: flex;
  gap: 28px;
  height: 100%;
}

.Success-img img {
  width: 100%;
}

.Success-img-top {
  flex: 1;
  width: 47%;
}

.Success-img-top .owl-carousel {
  height: 100%;
}

.Success-img-top .owl-carousel .owl-stage-outer {
  height: 100%;
}

.Success-img-bottom {
  flex: 1;
  margin-top: auto;
  width: 47%;
}

.Gallery-sec {
  background: #F8F8F8;
  padding: 30px 0;
}

.Gallery-sec h3 {
  font-family: 'Dangmen';
  font-size: 3vw;
  text-align: center;
}

.Gallery-sec h6 {
  font-size: 18px;
  padding: 0px 0px;
  line-height: 30px;
  margin-bottom: 30px;
}

.galler-list {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  position: relative;
}

.galler-list-card {
  width: 18%;
}

.galler-list-card img {
  width: 100%;
  object-fit: cover;
  height: 240px;
}

.galler-list-card:nth-child(4) img {
  height: 500px;

}

.galler-list-card:nth-child(3) {
  position: absolute;
  bottom: 0;
  left: 19.8%;
}

.galler-list-card:nth-child(6) {
  position: absolute;
  bottom: 0;
  right: 22.6%;
}

.galler-list-card:first-child {
  align-self: center;
}

.galler-list-card:last-child {
  align-self: center;
}

footer.fotter {
  background: #121210;
  padding: 30px 0;
  text-align: left;
}

.fotter-widget ul {
  margin: 0;
  padding: 0;
  list-style: none;
  color: #fff;
}

.fotter-widget ul li a {
  color: #fff;
  display: block;
  padding: 5px 0;
}

.fotter-widget ul li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.fotter-widget h3 {
  color: #fff;
  margin: 0 0 18px 0;
}

.client-sec {
  background-color: #FFF;
  padding: 60px 0px;
  position: relative;
}

.client-sec h3 {
  font-family: 'Dangmen';
  font-size: 3vw;
  text-align: center;
}

.client-sec h6 {
  font-size: 18px;
  padding: 0px 0px;
  line-height: 30px;
}

.inner-banner {
  position: relative;
  height: 360px;
}

.inner-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.inner-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  flex-direction: column;
}

.menu-column {
  display: flex;
  flex-wrap: wrap;
  /* Adjust the gap as needed */
}

.menu-item {
  flex: 1 0 calc(25% - 20px);
  /* Adjust the width and margin as needed */
  max-width: calc(25% - 20px);
  /* Limit maximum width to maintain 4 columns */
  transition: transform 0.3s ease-in-out;
  margin: 0 10px 20px 0;
  /* Adjust the margin as needed */
}

.menu-item img {
  width: 100%;
  height: 205px;
  border-radius: 5px 5px 0 0;
}

.menu-item-content {
  padding: 20px;
}

.menu-filter {
  text-align: center;
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 19px;
  flex-wrap: wrap;
}

.menu-filter button {
  /* margin: 5px; */
  padding: 6px 20px;
  font-size: 16px;
  cursor: pointer;
  border: 1px solid #000;
  border-radius: 5px;
  background-color: transparent;
  color: #000;
  transition: background-color 0.3s ease-in-out;
}

.menu-filter button:hover,
.menu-filter button.active {
  background-color: #000;
  color: #fff;
}

.testimonial-sec {
  padding: 60px 0;
  text-align: left;
}

.testimonial-list {
  display: flex;
  gap: 25px;
  border: 1px solid #e9e9e9;
  padding: 15px;
  border-radius: 5px;
  margin-bottom: 30px;
}

.testimonial-list-pic {
  width: 197px;
  height: 203px;
}

.testimonial-list-pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
}

.testimonial-list-info {
  width: 74%;
}

.testimonial-list-info h4 {
  font-family: 'Dangmen';
  font-size: 26px;
}

.testimonial-list-info i.active {
  color: #D38D01;
}

.testimonial-list:nth-child(even) {
  flex-direction: row-reverse;
}

.contact-left {
  border-right: 1px solid #CFD3D4;
  /* margin-right: 28px; */
  padding-right: 20px;
  text-align: left;
}

.contact-left h3 {
  color: #1c1c1c;
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  margin: 0 0 17px;
}

.contact-left li {
  padding: 0 0 13px 48px;
  position: relative;
  width: 48%;
}

.contact-left li span {
  left: 0;
  position: absolute;
  top: 4px;
  width: 38px;
  height: 33px;
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  font-size: 16px;
  color: #fff;
}

.contact-left li h5 {
  color: #11192a;
  font-size: 14px;
  margin: 0;
}

.form-style .form-group .form-control {
  border: 1px solid #CFD3D4;
  font-size: 13px;
  color: #000;
  padding: 12px 15px;
  -webkit-appearance: auto;
  text-align: left;
  height: auto;
}

.contact-left ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.toggle-form-bttn {
  position: fixed;
  bottom: 10%;
  right: 3px;
  z-index: 999;
  cursor: pointer;
}

.toggle-form-bttn>img {
  width: 61px;
  animation: scale-animation 2s ease-in-out infinite;
}

@keyframes scale-animation {
  0% {
    transform: scale(1);
    /* Initial size */
  }

  50% {
    transform: scale(1.1);
    /* Grow to 120% size */
  }

  100% {
    transform: scale(1);
    /* Return to initial size */
  }
}

.toggle-form {
  position: fixed;
  right: -50%;
  bottom: 0;
  width: 445px;
  max-width: 100%;
  background: #fff;
  z-index: 9999;
  padding: 30px;
  transition: 0.3s ease-in-out;
}

button.toggle-form-close {
  background: #fff;
  border: none;
  position: absolute;
  top: 0;
  left: -35px;
  color: #000;
  font-size: 22px;
  padding: 1px 11px;
}

.toggle-form.active {
  transition: 0.3s ease-in-out;
  right: 0;
}

.how-we-work {
  padding: 60px 0;
}

.work-list {
  text-align: left;
  margin-bottom: 15px;
}

.service-accordian {
  padding: 60px 0;
}

.accordion-card-header .btn-link {
  color: #000;
  font-size: 18px;
  font-weight: 500;
  padding: 0;
  position: relative;
  text-decoration: none;
}

.accordion-card-body {
  color: #666;
  text-align: left;
  padding: 10px 0;
}

.accordion-card {
  border-bottom: 1px solid #e3e3e3;
  padding: 15px 0;
}

.accordion-card-header .btn-link span {
  position: absolute;
  right: 0;
  top: 0;
}

.accordion-card-header .btn-link .minusIcon {
  display: block;
}

.accordion-card-header .btn-link .plusIcon {
  display: none;
}

.accordion-card-header .btn-link.collapsed .minusIcon {
  display: none;
}

.accordion-card-header .btn-link.collapsed .plusIcon {
  display: block;
}

.accordion-card-header .btn-link:focus {
  outline: none !important;
  box-shadow: none !important;
}


/* .accordion-card-header .btn-link.collapsed::before {
    content: "\2b";
    position: absolute;
    right: 0;
    font-family: 'Font Awesome 6 Free';
    top: 3px;
}
.accordion-card-header .btn-link::before {
    content: "\f068";
    position: absolute;
    right: 0;
    font-family: 'Font Awesome 6 Free';
    top: 3px;
} */



.goTo {
  cursor: pointer;
}