@font-face {
  font-family: "LexendRegular";
  src: url("../assets/fonts/Lexend-Regular.ttf") format("woff");
}
@font-face {
  font-family: "LexendSemiBold";
  src: url("../assets/fonts/Lexend-SemiBold.ttf") format("woff");
}
@font-face {
  font-family: "LexendMedium";
  src: url("../assets/fonts/Lexend-Medium.ttf") format("woff");
}

@font-face {
  font-family: "ProductSans";
  src: url("../assets/fonts/Product\ Sans\ Regular.ttf") format("woff");
}

* {
  margin: 0;
  box-sizing: border-box;
  padding: 0;
}

body {
  background-color: #000000;
  font-family: "ProductSans";
}

.header-logo {
  padding: 0 8rem;
}
.header-logo img {
  margin-left: auto;
  display: block;
  height: 80px;
}

.home-content {
  padding: 0 8rem;
}

.home-section {
  padding: 2rem 0rem;
}

.home-section .home-content h2 {
  font-size: 55px;
  font-family: "LexendMedium";
  color: #30c0fb;
}

.home-section .home-content p {
  color: #ffffff;
  font-size: 20px;
  position: relative;
  width: 95%;
}

.home-section .home-content p::before {
  position: absolute;
  left: -2%;
  top: 0;
  background-color: #ffffff;
  width: 2px;
  height: 100%;
  content: "";
}

.form-background {
  background-image: url("../assets/images/form-bg.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 1rem;
}

.home-form {
  border-width: 2px;
  border-style: solid;
  border-image: linear-gradient(to right, #30c0fb, #f507d0) 1;
  padding: 1rem;
}

.form-title h2 {
  color: #ffffff;
  font-size: 40px;
  font-family: "LexendMedium";
  padding-bottom: 10px;
}

.form-control:focus {
  color: #ffffff;
  background-color: #050505;
  border-image: linear-gradient(to right, #30c0fb, #f507d0) 1;
  outline: 0;
  box-shadow: none;
}

::placeholder {
  color: #cccccc !important;
  opacity: 1;
}

::-ms-input-placeholder {
  color: #cccccc;
}

input {
  color: #ffffff !important;
}

.form-control {
  border-width: 2px;
  border-style: solid;
  border-image: linear-gradient(to right, #30c0fb, #f507d0) 1;
  background-color: #050505;
  color: #cccccc;
  text-transform: uppercase;
  font-family: "ProductSans";
}
.btn {
  position: relative;
}

.btn {
  font-size: 20px;
  height: 50px;
  padding: 0 60px;
  border: none;
  outline: none;
  color: #fff;
  background: #111;
  cursor: pointer;
  position: relative;
  z-index: 0;
  border-width: 2px;
  border-style: solid;
  border-image: linear-gradient(to right, #30c0fb, #f507d0) 1;
  border-radius: 10px;
}

.btn:before {
  content: "";
  background: linear-gradient(
    124deg,
    #ff2400,
    #e81d1d,
    #e8b71d,
    #e3e81d,
    #1de840,
    #1ddde8,
    #2b1de8,
    #dd00f3,
    #dd00f3
  );
  position: absolute;
  top: -2px;
  left: -2px;
  background-size: 400%;
  z-index: -1;
  filter: blur(5px);
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  animation: glowing 20s linear infinite;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.btn:hover:before {
  opacity: 1;
}
.btn:hover {
  color: #ffffff;
  border-color: transparent;
}

.btn:after {
  z-index: -1;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #111;
  left: 0;
  top: 0;
}

.otpbox {
  display: flex;
}

.otpbox button {
  white-space: nowrap;
  margin-left: -70px;
  border: 0;
  color: #feb42b;
  background: transparent;
}
.otpbox button:disabled,
.otpbox button[disabled] {
  color: #d9d9d9;
}
#submitButton:disabled,
#submitButton[disabled] {
  color: #ffffff;
}

.modal-header {
  display: block;
  border-bottom: 0;
}

.modal-footer {
  border-top: none;
  display: block;
}

.modal-title {
  color: #000000;
  font-size: 26px;
  font-style: normal;
  text-align: center;
  font-weight: 600;
  line-height: 72px; /* 150% */
}
.wrapper {
  width: 100%;
  padding: 1rem 6rem;
}

.wrapper input.field {
  width: 50px;
  line-height: 50px;
  font-size: 32px;
  border: 1px solid #000000;
  background-color: transparent;
  border-radius: 5px;
  text-align: center;
  text-transform: uppercase;
  color: #000000 !important;
  margin: 0 10px;
  margin-bottom: 25px;
}

.wrapper input.field:focus {
  outline: none;
}

.modal .modal-body .blog_submit-btn {
  opacity: 0.5;
  padding: 10px 40px;
  color: #ececec9a;
  border-radius: 0;
  text-transform: uppercase;
}

.modal .active .modal-body .blog_submit-btn {
  opacity: 1;
  color: #ffffff;
}

.modal-footer button {
  color: #000000;
  background-color: transparent;
  border: none;
  outline: none;
  font-size: 16px;
  font-style: normal;
  text-transform: uppercase;
}

.modal-content > button {
  position: absolute;
  border-radius: 50px;
  right: 1rem;
  top: 1rem;
  border: 1px solid #572f10;
  z-index: 1;
  font-size: 12px;
  color: #572f10;
  text-transform: uppercase;
}

@keyframes glowing {
  0% {
    background-position: 0 0;
  }
  50% {
    background-position: 400% 0;
  }
  100% {
    background-position: 0 0;
  }
}

.conter-card-section {
  padding: 1rem 0;
  text-align: center;
  position: relative;
}

.counter-container h2 {
  color: #30c0fb;
  font-size: 60px;
  font-weight: 600;
  font-family: "LexendMedium";
  text-align: center;
}

.counter-container p {
  font-size: 22px;
  padding: 10px 0;
  color: #ffffff;
  font-weight: 500;
}

.gallary-card-container {
  padding: 0 2rem;
  padding-top: 2rem;
  padding-bottom: 4rem;
}

.gallary-heading h2 {
  color: #30c0fb;
  font-size: 45px;
  text-align: center;
  font-family: "LexendMedium";
}

.gallary-heading p {
  font-size: 20px;
  color: #ffffff;
  padding: 2rem 0;
  text-align: center;
}

.gallary-line,
.gallary-line-2 {
  width: 200px;
  height: 2px;
  margin: 0 auto;
  margin-top: 2rem;
  background-color: #ffffff;
}

.gallary-line-2 {
  margin: 0;
}

.gallary-card {
  position: relative;
  border-width: 2px;
  border-style: solid;
  border-image: linear-gradient(to right, #30c0fb, #f507d0) 1;
}

.gallary-card img {
  width: 100%;
}

.gallary-card .gallary-content {
  position: absolute;
  bottom: 0;
  padding: 2rem;
}

.gallary-card .gallary-content h2 {
  font-family: "LexendMedium";
  font-size: 24px;
  color: #ffffff;
}

.gallary-card .gallary-content p {
  font-family: "LexendRegular";
  font-size: 17px;
  color: #ffffff;
}

.gallary-card .gallary-content a {
  color: #30c0fb;
  text-decoration: none;
}
.gallary-card .gallary-content a i {
  margin-left: 5px;
}

.map-liquor {
  padding: 2rem 0;
}

.map-liquor .map-title {
  padding: 0 8rem;
}
.map-title p {
  color: #30c0fb;
  font-size: 30px;
  font-family: "LexendMedium";
  width: 90%;
}

.map-container,
.interactive-map {
  padding: 2rem 8rem;
  background-repeat: no-repeat;
  background-size: cover;
}

.mapImg img {
  width: 100%;
}
table {
  width: 100%;
}
table td {
  border: 1px solid #ffffff;
  color: #ffffff;
  padding: 1rem;
}

thead th {
  border: 1px solid #ffffff;
  color: #30c0fb;
  padding: 1rem;
}

.liquor-title {
  padding: 0 8rem;
}

.liquor-title h2 {
  color: #30c0fb;
  font-size: 50px;
  font-family: "LexendMedium";
  padding-bottom: 1rem;
}
.step-grid {
  padding: 4rem 8rem;
  position: relative;
  z-index: 0;
}

.horizontal-line {
  content: "";
  position: absolute;
  z-index: -9; /* Set the z-index to be behind the images */
  top: 50%;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 2px;
  background: linear-gradient(to right, #30c0fb, #f507d0);
}

.step-img {
  position: relative;
  background-color: #000000;
  z-index: 1;
  width: 70%;
  /* margin: auto; */
}
.step-img img {
  width: 100%;
  position: relative;
  z-index: 2;
  background-color: #000000;
}

.step-container-grid {
  display: grid;
  gap: 0 5rem;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}

.lastverticalline .step-img:last-child::after {
  position: absolute;
  top: 50%;
  content: "";
  height: 100%;
  z-index: -1;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  background: linear-gradient(to right, #30c0fb, #f507d0);
}

.firstverticalline .step-img:nth-child(1)::after {
  position: absolute;
  top: 50%;
  content: "";
  height: 100%;
  z-index: -1;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  background: linear-gradient(to right, #30c0fb, #f507d0);
}

.mid-center-line::after {
  content: "";
  position: absolute;
  z-index: -9; /* Set the z-index to be behind the images */
  top: 50%;
  left: 10%;
  width: 20%;
  height: 2px;
  background: linear-gradient(to right, #30c0fb, #f507d0);
}

.reviewSwiper {
  cursor: url("../assets/images/drag-cursor.png"), auto;
}

.review-container {
  padding: 4rem 0;
}

.review-container .review-img img {
  width: 100%;
}

.liquor-title {
  padding: 0 1rem;
}

.step-grid {
  padding: 4rem 1rem;
}

.discovery-swiper-slider {
  width: 400px;
  border-radius: 10px;
  padding: 2rem;
  border-width: 2px;
  border-style: solid;
  border-image: linear-gradient(to right, #30c0fb, #f507d0) 1;
}

.slider-content h2 {
  color: #ffffff;
  font-family: "LexendRegular";
}

.slider-content h5 {
  color: #ffffff;
  font-size: 16px;
}

.slider-content p {
  color: #e6e6e6;
  padding: 1rem 0;
}

.copyright p {
  margin-bottom: 0;
  font-size: 18px;
  color: #ffffff;
}
.copyright {
  text-align: center;
  padding: 15px 0;
}

.cursor {
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  border: 1px solid #ffffff;
  pointer-events: none;
}

.mobile-block {
  display: none;
}

/* New Map Update */

.interactive-container-map {
  padding: 2rem 0;
}
.map {
  position: relative;
  width: 100%;
}

.map-icon {
  position: relative;
  width: 100%;
}

.pune-map {
  position: absolute;
  top: 60%;
  left: 18%;
  width: 0;
  right: 0;
}
.nashik-map {
  position: absolute;
  top: 57%;
  left: 17%;
  width: 0;
  right: 0;
}
.nagpur-map {
  position: absolute;
  top: 54%;
  left: 36%;
  width: 0;
  right: 0;
}
.bilaspur-map {
  position: absolute;
  top: 52%;
  left: 46%;
  width: 0;
  right: 0;
}
.bhuwaneshwar-map {
  position: absolute;
  top: 53%;
  left: 58%;
  width: 0;
  right: 0;
}
.dehradun-map {
  position: absolute;
  top: 15%;
  left: 34%;
  width: 0;
  right: 0;
}
.guwahati-map {
  position: absolute;
  top: 35%;
  left: 85%;
  width: 0;
  right: 0;
}

.noida-map {
  position: absolute;
  top: 28%;
  left: 30%;
  width: 0;
  right: 0;
}
.gurgoan-map {
  position: absolute;
  top: 25%;
  left: 26%;
  width: 0;
  right: 0;
}

.varanasi-map {
  position: absolute;
  top: 38%;
  left: 50%;
  width: 0;
  right: 0;
}

.bangalore-map {
  position: absolute;
  top: 80%;
  left: 33%;
  width: 0;
  right: 0;
}
.hyderabad-map {
  position: absolute;
  top: 75%;
  left: 35%;
  width: 0;
  right: 0;
}
.hyderabad2-map {
  position: absolute;
  top: 75%;
  left: 36%;
  width: 0;
  right: 0;
}

.markers {
  height: 40px;
}

.marker-content {
  margin-left: -15px;
  margin-top: 10px;
  display: none;
  background-color: #000000;
  text-align: center;
  width: 100px;
  line-height: 25px;
  font-size: 14px;
  height: 30px;
  position: relative;
  z-index: 235;
  color: #ffffff;
  border: 1px solid #ffffff;
}

.pune-map:hover .marker-content,
.nagpur-map:hover .marker-content,
.dehradun-map:hover .marker-content,
.hyderabad-map:hover .marker-content,
.hyderabad2-map:hover .marker-content,
.bangalore-map:hover .marker-content,
.varanasi-map:hover .marker-content,
.gurgoan-map:hover .marker-content,
.bhuwaneshwar-map:hover .marker-content,
.bilaspur-map:hover .marker-content,
.noida-map:hover .marker-content,
.guwahati-map:hover .marker-content,
.nashik-map:hover .marker-content {
  display: block;
}
.map-item-list ul {
  display: flex;
  list-style: none;
  padding: 1rem 0;
  padding-top: 2rem;
}

.map-item-list li {
  display: flex;
  align-items: center;
  padding: 0 50px;
  color: #ffffff;
  font-size: 22px;
}

.map-item-list li img {
  margin-right: 20px;
}

.liquarSlider {
  padding: 8rem 0;
}

.liquarSlider .swiper-slide img {
  width: 100%;
  margin-bottom: 1rem;
}

.liquarSlider .swiper-slide {
  text-align: center;
  width: 100%;
  font-size: 18px;
  color: #ffffff;
}
.liquarSlider .swiper-slide p {
  margin-bottom: 0 !important;
}

#submitButton {
  margin-top: 20px;
}

.floting-action {
  position: fixed;
  right: -1.5%;
  z-index: 8888876662234;
  transform: rotate(90deg);
}

.floting-action a {
  padding: 10px 20px;
  border-width: 2px;
  text-decoration: none;
  color: #ffffff;
  border-style: solid;
  border-image: linear-gradient(to right, #30c0fb, #f507d0) 1;
}

.error {
  background: linear-gradient(to right, #30c0fb, #f507d0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding: 10px 0;
  font-size: 14px;
}

.footer-social-links {
  display: grid;
  place-content: center;
}

.footer-social-links ul li {
  padding: 0 10px;
}
.footer-social-links ul li a i {
  font-size: 24px;
  color: #ffffff;
}

.footer-logo img {
  width: 140px;
  padding: 20px 0;
}

@media screen and (max-width: 1700px) {
  .discovery-swiper-slider {
    width: 100%;
  }
}

@media screen and (max-width: 1580px) {
  .step-container-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    justify-items: center;
  }
  .gallary-card .gallary-content {
    padding: 1rem;
  }
  .home-section {
    height: 100%;
    padding: 1rem;
  }

  .horizontal-line {
    display: none;
  }
  .firstverticalline .step-img:nth-child(1)::after {
    display: none;
  }
  .lastverticalline .step-img:last-child::after {
    display: none;
  }
  .mid-center-line::after {
    display: none;
  }
  .mobile-block {
    display: block;
  }
  .vertical-flex {
    display: none;
  }
  .step-img {
    width: 50%;
  }
  .home-content,
  .header-logo {
    padding: 0 1rem;
  }
  .gallary-card-container {
    padding: 1rem;
  }
  .map-container {
    padding: 4rem 1rem;
  }
  .mapImg img {
    margin: 3rem 0;
  }
  .step-grid {
    padding: 1rem;
  }

  .map-liquor .map-title {
    padding: 0 1rem;
  }
  .map-container,
  .interactive-map {
    padding: 1rem;
  }
  .map-item-list ul {
    flex-wrap: wrap;
    justify-content: start;
  }
  .map-item-list li {
    padding: 20px 50px;
  }
  .interactive-container-map {
    padding: 2rem 0;
  }
  .liquor-title {
    padding: 1rem;
  }
  .gallary-heading h2 {
    font-size: 30px;
  }
  .gallary-heading p {
    font-size: 16px;
  }

  .home-section .home-content p {
    font-size: 18px;
  }
  .map-title p {
    font-size: 25px;
  }
  .home-section .home-content h2 {
    font-size: 45px;
  }
  .form-title h2 {
    font-size: 40px;
  }
  .counter-container h2 {
    font-size: 45px;
  }
  .liquor-title h2 {
    font-size: 45px;
  }
  .wrapper {
    width: 100%;
    margin: 20px 0;
    padding: 1rem 0;
  }
  .liquarSlider {
    padding: 2rem 0;
  }
}

@media screen and (max-width: 980px) {
  .gallary-card-container .col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .wrapper input.field {
    width: 40px;
    line-height: 40px;
    margin: 0;
  }
  .floting-action {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .home-section .home-content h2 {
    font-size: 40px;
    padding: 2rem 0;
    text-align: center;
  }
  .home-section .home-content p {
    width: 100%;
    padding: 1rem;
  }

  .map-title p {
    width: 100%;
  }
  .step-img {
    width: 100%;
  }

  .discovery-swiper-slider {
    width: 100%;
  }

  .cursor {
    display: none;
  }
  .gallary-line-2 {
    margin-bottom: 2rem;
  }
  .btn {
    font-size: 18px;
  }

  .form-background {
    background-image: none !important;
  }

  .home-section {
    background-image: url("../assets/images/bgmobile.png");
    background-position: bottom;
    background-repeat: no-repeat;
  }

  .home-form {
    background-color: #00000099;
  }
  .home-section .home-content p {
    color: #ffffff;
    font-size: 19px;
  }

  .map-item-list li img {
    height: 40px;
  }
  .gallary-card-container .col-lg-6 {
    flex: 0 0 auto;
    width: 100%;
  }
  .markers {
    height: 30px;
  }
  .gallary-heading h2 {
    font-size: 25px;
  }
  .liquor-title h2 {
    font-size: 40px;
  }
  .copyright {
    padding: 15px 10px;
  }
}

@media screen and (max-width: 480px) {
  .markers {
    height: 20px;
  }
  .marker-content {
    font-size: 10px;
    line-height: 20px;
    line-height: 15px;
    height: 20px;
  }
  .map-item-list ul {
    flex-wrap: wrap;
    justify-content: start;
    padding: 1rem 0;
  }
  .gallary-heading h2,
  .liquor-title h2 {
    font-size: 30px;
  }
  .counter-container h2 {
    font-size: 40px;
  }
  .counter-container p {
    font-size: 20px;
  }
  .liquarSlider {
    padding: 1rem 0;
    margin-bottom: 2rem;
  }
  #recaptcha-container {
    transform: scale(0.83);
    transform-origin: 0 0;
  }
}
@media screen and (max-width: 380px) {
  #recaptcha-container {
    transform: scale(0.75);
  }
  .gallary-heading h2 {
    color: #30c0fb;
    font-size: 30px;
  }
  .liquor-title h2 {
    font-size: 30px;
  }

  .gallary-card img {
    width: 100%;
    height: 400px;
    object-fit: cover;
  }

  .gallary-card .gallary-content {
    padding: 2rem 1rem;
  }
  .step-container-grid {
    grid-template-columns: 1fr;
  }

  .gallary-heading h2 {
    font-size: 30px;
  }
  .table td {
    font-size: 14px;
  }
  .header-logo img {
    height: 70px;
  }
  .step-img {
    width: 70%;
  }
  .form-title h2 {
    font-size: 30px;
  }
  .home-form {
    padding: 4rem 1rem;
  }
  .btn {
    font-size: 18px;
    width: 100%;
    padding: 0 20px;
  }
  .form-background {
    padding: 4rem 0rem;
  }
  .wrapper input.field {
    font-size: 26px;
  }
}

@media screen and (max-width: 320px) {
  .markers {
    height: 15px;
  }
  .wrapper input.field {
    width: 35px;
    line-height: 20px;
  }
  #recaptcha-container {
    transform: scale(0.7);
  }
}
