@charset "UTF-8";
@font-face {
  font-family: "Gilroy Heavy";
  src: url("../fonts/Gilroy-Heavy.woff2") format("woff2"), url("../fonts/Gilroy-Heavy.woff") format("woff");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gilroy Extra Bold";
  src: url("../fonts/Gilroy-ExtraBold.woff2") format("woff2"), url("../fonts/Gilroy-ExtraBold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-ExtraBold.woff2") format("woff2"), url("../fonts/Gilroy-ExtraBold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gilroy Bold";
  src: url("../fonts/Gilroy-Bold.woff2") format("woff2"), url("../fonts/Gilroy-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gilroy Medium";
  src: url("../fonts/Gilroy-Medium.woff2") format("woff2"), url("../fonts/Gilroy-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gilroy Light";
  src: url("../fonts/Gilroy-Light.woff2") format("woff2"), url("../fonts/Gilroy-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
/* MIXINS */
/* RESET CSS */
/* http://meyerweb.com/eric/tools/css/reset/
         v2.0 | 20110126
         License: none (public domain)
      */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  color: inherit;
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

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;
}

* {
  box-sizing: border-box;
}

a {
  text-decoration: none;
}
a, a:hover, a:active, a:visited, a:focus {
  color: inherit;
}

i,
em,
.italic-text {
  font-style: italic;
}

.left {
  float: left;
}

.right {
  float: right;
}

.wrap-clear::after {
  content: "";
  display: block;
  clear: both;
}

.clearfix {
  zoom: 1;
  display: table;
  clear: both;
}
.clearfix:before, .clearfix:after {
  content: "";
  display: table;
}
.clearfix:after {
  clear: both;
}

:focus {
  outline: none;
}

input,
button,
textarea {
  border-radius: 0;
  appearance: none;
}

select {
  border-radius: 0;
}

textarea {
  resize: none;
}

/* COMMONS */
body {
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0.6px;
}

ol,
ul {
  margin: 0px;
}

button,
input,
select,
textarea {
  -webkit-appearance: none;
  outline: none;
  border-radius: 0;
  background-color: transparent;
}

input,
textarea {
  background: transparent;
  border: none;
}

input:focus,
select:focus,
textarea:focus,
button:focus,
a:focus {
  outline: none;
}

a {
  color: inherit;
  cursor: pointer;
}

.h1,
.h2,
.h3,
.h4,
h1,
h2,
h3,
h4 {
  line-height: 1.4;
}

p {
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

.slick-slider.reverse {
  transform: rotate(180deg);
}

.slick-slider.reverse .slick-slide {
  transform: rotate(180deg);
}

html {
  scroll-behavior: smooth;
}

@media only screen and (min-width: 1025px) {
  .hidden-lg {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .hidden-xs {
    display: none !important;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .hidden-md {
    display: none !important;
  }
}

.img-responsive {
  width: 100%;
  height: auto;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  width: 90%;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .container {
    max-width: 768px;
  }
}
@media (max-width: 767px) {
  .container {
    width: 100%;
    padding: 0 20px;
  }
}

.container-header {
  max-width: 1049px;
  margin: 0 auto;
  width: 90%;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .container-header {
    max-width: 768px;
  }
}
@media (max-width: 767px) {
  .container-header {
    width: 100%;
    padding: 0 20px;
  }
}

.container-footer {
  max-width: 1257px;
  margin: 0 auto;
  width: 90%;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .container-footer {
    max-width: 768px;
  }
}
@media (max-width: 767px) {
  .container-footer {
    width: 100%;
    padding: 0 20px;
  }
}

#age-check-wrapper {
  min-height: 100vh;
  background-color: black;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: "Gilroy Medium";
}
@media (max-width: 767px) {
  #age-check-wrapper {
    text-align: center;
    padding: 0 15px;
  }
}
#age-check-wrapper h2 {
  font-size: 30px;
  font-family: "Gilroy Bold";
  text-transform: uppercase;
}
@media (max-width: 767px) {
  #age-check-wrapper h2 {
    font-size: 20px;
  }
}
#age-check-wrapper p {
  font-family: "Gilroy Medium";
}
@media (max-width: 767px) {
  #age-check-wrapper p {
    font-size: 14px;
    margin-top: 10px;
  }
}
#age-check-wrapper img {
  width: 400px;
}
@media (max-width: 767px) {
  #age-check-wrapper img {
    margin-bottom: 20px;
    width: 150px;
  }
}
#age-check-wrapper .age-check-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  gap: 20px;
}
#age-check-wrapper input {
  display: block;
  text-align: center;
  margin-top: 20px;
  border-radius: 1px solid black;
  color: #f8e07c;
}
#age-check-wrapper input[type=text] {
  padding: 10px;
  width: 200px;
  font-size: 20px;
  border: 1px solid #f8e07c;
  border-radius: 5px;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
#age-check-wrapper input[type=text]:hover {
  border-color: #64530b; /* Blue border on hover */
}
#age-check-wrapper input[type=text]:focus {
  border-color: #f8c806; /* Blue border on focus */
}
#age-check-wrapper button {
  display: block;
  text-align: center;
  margin: auto;
  border: 1px solid #f8e07c;
  background-color: transparent;
  color: white;
  padding: 10px 40px;
  border-radius: 5px;
  margin-top: 20px;
  font-family: "Gilroy Bold";
  font-size: 20px;
  cursor: pointer;
}

.age-verification {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.verification-box {
  background: white;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
}

.error-message {
  color: red;
  margin-top: 10px;
  font-size: 14px;
  display: none;
}

.error {
  color: red;
  font-weight: bold;
}

.success {
  color: green;
  font-weight: bold;
}

/* Header setup */
.header-wrapper {
  background-color: black;
  padding-top: 15px;
  padding-bottom: 33px;
}
.header-wrapper .logo img {
  width: 100px;
}
.header-wrapper nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-wrapper nav a {
  color: white;
  font-family: "Gilroy Medium";
  font-size: 16px;
  transition: all 0.3s ease;
  text-transform: uppercase;
}
.header-wrapper nav a:hover {
  color: #f8e07c;
}
.header-wrapper nav a.active-link {
  color: #f8e07c; /* Change to your active color */
}
.header-wrapper nav a img {
  width: 95px;
}
.header-wrapper .header-wrapper {
  background-color: black;
  border-bottom: 1px solid #ddd;
  padding: 10px 20px;
}
.header-wrapper .header-wrapper .hidden-lg {
  display: none;
}
.header-wrapper .header-wrapper .hidden-xs {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-wrapper .header-wrapper .hidden-xs .logo img {
  width: 120px;
}
.header-wrapper .header-wrapper .hidden-xs .hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 24px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1000;
}
.header-wrapper .header-wrapper .hidden-xs .hamburger .bar {
  width: 100%;
  height: 3px;
  background-color: #333;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.header-wrapper .header-wrapper .hidden-xs .hamburger.open .bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.header-wrapper .header-wrapper .hidden-xs .hamburger.open .bar:nth-child(2) {
  opacity: 0;
}
.header-wrapper .header-wrapper .hidden-xs .hamburger.open .bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
.header-wrapper .header-wrapper .hidden-xs .menu {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 100%;
  right: 0;
  background: black;
  width: 100%;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.header-wrapper .header-wrapper .hidden-xs .menu a {
  color: white;
  padding: 10px 20px;
  text-align: center;
  border-bottom: 1px solid #333;
  touch-action: manipulation; /* Ensures proper handling of taps */
}
.header-wrapper .header-wrapper .hidden-xs .menu a:hover {
  background-color: #444;
}
.header-wrapper .header-wrapper .hidden-xs .menu.active {
  display: flex;
  max-height: 300px;
  z-index: 1000;
}

.header-wrapper.hidden-xs {
  background-color: black;
  padding: 15px 0;
}
.header-wrapper.hidden-xs nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  justify-content: center;
  width: 100%;
  gap: 200px;
}
.header-wrapper.hidden-xs nav a {
  color: white;
  font-family: "Gilroy Medium";
  font-size: 16px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  touch-action: manipulation; /* Ensures proper handling of taps */
}
.header-wrapper.hidden-xs nav a:hover {
  color: #f8e07c;
}
.header-wrapper.hidden-xs nav a.active-link {
  color: #f8e07c; /* Active link color */
}
.header-wrapper.hidden-xs .logo img {
  width: 150px;
}

@media (max-width: 767px) {
  .header-wrapper nav {
    width: 100%;
  }
  .header-wrapper.hidden-lg {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: black;
    padding: 10px 20px;
    position: relative;
  }
  .header-wrapper.hidden-lg .logo img {
    width: 70px;
  }
  .header-wrapper.hidden-lg .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 40px;
    height: 25px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 2;
  }
  .header-wrapper.hidden-lg .hamburger .bar {
    width: 100%;
    height: 3px;
    background-color: white;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  .header-wrapper.hidden-lg .hamburger.open .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .header-wrapper.hidden-lg .hamburger.open .bar:nth-child(2) {
    opacity: 0;
  }
  .header-wrapper.hidden-lg .hamburger.open .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  .header-wrapper.hidden-lg .menu {
    display: none; /* Initially hidden */
    flex-direction: column;
    align-items: center;
    position: absolute;
    top: 100%;
    right: 0;
    background: black;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  .header-wrapper.hidden-lg .menu a {
    color: white;
    padding: 10px 20px;
    text-align: center;
    border-bottom: 1px solid #333;
    touch-action: manipulation; /* Ensures proper handling of taps */
  }
  .header-wrapper.hidden-lg .menu a:hover {
    background-color: #444;
  }
  .header-wrapper.hidden-lg .menu.active {
    display: flex;
    max-height: 500px; /* Expand menu when active */
    min-height: 100vh;
    background-color: black;
    z-index: 1000;
  }
}
.ft-wrapper {
  background-color: black;
  padding-bottom: 40px;
}
.ft-wrapper .footer-wrapper {
  display: flex;
  justify-content: space-between;
  color: white;
  gap: 40px;
}
@media (max-width: 767px) {
  .ft-wrapper .footer-wrapper {
    flex-direction: column;
  }
}
.ft-wrapper .footer-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 35px;
  justify-content: center;
}
.ft-wrapper .footer-left .img-wrapper {
  align-self: center;
}
.ft-wrapper .footer-left .img-wrapper img {
  width: 95px;
}
@media (max-width: 767px) {
  .ft-wrapper .footer-left {
    flex-basis: unset;
  }
}
.ft-wrapper .img-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
}
.ft-wrapper .img-wrapper img {
  width: 95px;
}
.ft-wrapper .img-wrapper p {
  font-family: "Gilroy Medium";
  text-transform: uppercase;
  line-height: 1.3;
  font-size: 14px;
}
@media (max-width: 767px) {
  .ft-wrapper .img-wrapper p {
    font-size: 11px;
  }
}
.ft-wrapper .footer-icon-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  color: #f8e07c;
}
.ft-wrapper .footer-icon-wrapper a {
  font-size: 24px;
  transition: ease all 0.3s;
}
.ft-wrapper .footer-icon-wrapper a:hover {
  color: white;
}
@media (max-width: 767px) {
  .ft-wrapper .footer-icon-wrapper {
    justify-content: center;
  }
}
.ft-wrapper .footer-right {
  flex: 1;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.ft-wrapper .footer-right p {
  font-family: "Gilroy Medium";
  text-transform: uppercase;
  line-height: 1.3;
  font-size: 14px;
}
@media (max-width: 767px) {
  .ft-wrapper .footer-right {
    flex-direction: column-reverse;
    flex-basis: unset;
  }
}
.ft-wrapper .privacy-wrapper {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-family: "Gilroy Medium";
  text-transform: uppercase;
  line-height: 1.3;
}
.ft-wrapper .privacy-wrapper a {
  display: block;
  line-height: 1;
  font-family: "Gilroy Medium";
  font-size: 14px;
  text-transform: uppercase;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}
.ft-wrapper .privacy-wrapper a:hover {
  color: #f8e07c;
}
.ft-wrapper .footer-nav-wrapper {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-family: "Gilroy Bold";
}
.ft-wrapper .footer-nav-wrapper a {
  display: block;
  line-height: 1;
  font-family: "Gilroy Medium";
  font-size: 14px;
  text-transform: uppercase;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}
.ft-wrapper .footer-nav-wrapper a:hover {
  color: #f8e07c;
}

.ft-wrapper-mobile {
  background-color: black;
  padding-bottom: 40px;
}
.ft-wrapper-mobile .footer-wrapper {
  display: flex;
  justify-content: space-between;
  color: white;
  gap: 40px;
}
@media (max-width: 767px) {
  .ft-wrapper-mobile .footer-wrapper {
    flex-direction: column;
  }
}
.ft-wrapper-mobile .footer-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 35px;
  justify-content: center;
}
.ft-wrapper-mobile .footer-left .img-wrapper {
  align-self: center;
}
.ft-wrapper-mobile .footer-left .img-wrapper img {
  width: 95px;
}
@media (max-width: 767px) {
  .ft-wrapper-mobile .footer-left {
    flex-basis: unset;
  }
  .ft-wrapper-mobile .footer-left p {
    font-size: 12px;
    text-align: center;
    font-family: "Gilroy Bold";
    text-transform: uppercase;
  }
}
.ft-wrapper-mobile .img-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
}
.ft-wrapper-mobile .img-wrapper img {
  width: 95px;
}
.ft-wrapper-mobile .img-wrapper p {
  font-family: "Gilroy Medium";
  text-transform: uppercase;
  line-height: 1.3;
  font-size: 14px;
}
@media (max-width: 767px) {
  .ft-wrapper-mobile .img-wrapper p {
    font-size: 11px;
  }
}
.ft-wrapper-mobile .footer-icon-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  color: #f8e07c;
}
.ft-wrapper-mobile .footer-icon-wrapper a {
  font-size: 24px;
  transition: ease all 0.3s;
}
.ft-wrapper-mobile .footer-icon-wrapper a:hover {
  color: white;
}
@media (max-width: 767px) {
  .ft-wrapper-mobile .footer-icon-wrapper {
    justify-content: center;
  }
}
.ft-wrapper-mobile .footer-right {
  flex: 1;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.ft-wrapper-mobile .footer-right p {
  font-family: "Gilroy Medium";
  text-transform: uppercase;
  line-height: 1.3;
  font-size: 14px;
}
@media (max-width: 767px) {
  .ft-wrapper-mobile .footer-right {
    flex-direction: row-reverse;
  }
}
.ft-wrapper-mobile .privacy-wrapper {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-family: "Gilroy Medium";
  text-transform: uppercase;
  line-height: 1.3;
}
.ft-wrapper-mobile .privacy-wrapper a {
  display: block;
  line-height: 1;
  font-family: "Gilroy Medium";
  font-size: 14px;
  text-transform: uppercase;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}
.ft-wrapper-mobile .privacy-wrapper a:hover {
  color: #f8e07c;
}
.ft-wrapper-mobile .footer-nav-wrapper {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-family: "Gilroy Bold";
}
.ft-wrapper-mobile .footer-nav-wrapper a {
  display: block;
  line-height: 1;
  font-family: "Gilroy Medium";
  font-size: 14px;
  text-transform: uppercase;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}
.ft-wrapper-mobile .footer-nav-wrapper a:hover {
  color: #f8e07c;
}

#next-section {
  background-color: black;
  transition: background-color 0.3s, color 0.3s;
  position: relative;
  z-index: 10;
}
@media (max-width: 767px) {
  #next-section {
    background-color: transparent;
    margin-top: -63px;
    position: relative;
    z-index: 200;
  }
}

.active {
  background-color: #4caf50; /* Active tab color */
  color: white;
}

#next-section.white-background {
  background-color: white;
}
@media (max-width: 767px) {
  #next-section.white-background {
    background-color: transparent;
  }
}

.banner .video-banner {
  position: relative;
  width: 100%;
  height: 100vh; /* Full viewport height */
  overflow: hidden;
  background-color: black; /* Hide any overflow */
}
@media only screen and (min-width: 1025px) {
  .banner .video-banner {
    height: calc(100vh - 117px);
  }
}
.banner #muteToggleBtn {
  position: absolute;
  bottom: 20%;
  right: 20px;
  z-index: 1000;
  color: white;
  outline: none;
  border: none;
  border-radius: 50px;
  font-size: 25px;
  cursor: pointer;
}
.banner .banner-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensure the video covers the full area */
  z-index: 3; /* Ensure the video stays behind text */
}

/* Full-width video banner */
/* Main content */
main {
  position: relative;
  text-align: center;
}

/* Media Section Styling */
.media-wrapper {
  display: flex;
  flex: 1.3;
  gap: 60px;
}
.media-wrapper .text-section {
  flex: 1;
}
@media (max-width: 767px) {
  .media-wrapper {
    flex-direction: column;
  }
}

.media-section {
  flex: 3;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 20px;
}
@media (max-width: 767px) {
  .media-section {
    flex-direction: column;
  }
}

.wrapper-image {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .wrapper-image {
    align-items: center;
    gap: 20px;
    flex-direction: row;
  }
}

/* Image Box Styling */
.image-box {
  width: 250px;
  height: 350px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .image-box {
    width: 150px;
    height: 200px;
  }
}

.image-container {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease-in-out;
}

/* Video Box Styling */
.video-box {
  flex: 1.5;
  position: relative;
  height: 720px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
@media (max-width: 767px) {
  .video-box {
    width: 100%;
    flex: unset;
  }
}

.media-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer; /* Indicates the video is clickable */
}

.play-pause-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  border-radius: 50px;
  cursor: pointer;
  z-index: 1;
  display: none; /* Display only when video is paused */
}

/* Random Swipe Animation */
@keyframes swipe {
  0% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(100%, 0);
  }
  50% {
    transform: translate(0, 100%);
  }
  75% {
    transform: translate(-100%, 0);
  }
  100% {
    transform: translate(0, -100%);
  }
}
.play-section {
  padding: 80px 0;
  padding-top: 100px;
  background-color: black;
}
@media (max-width: 767px) {
  .play-section {
    padding-top: 70px;
    padding-bottom: 40px;
  }
}
.play-section .play-wrapper {
  position: relative;
  display: flex;
  background-image: url("../images/golden-hr.png");
  background-position-x: 75%;
  background-position-y: center;
  background-size: 45%;
  background-repeat: no-repeat;
  gap: 40px;
}
@media (max-width: 767px) {
  .play-section .play-wrapper {
    flex-direction: column;
  }
}
.play-section .head-media {
  color: white;
  flex: 1;
  left: 0;
  width: 550px;
}
@media (max-width: 767px) {
  .play-section .head-media {
    position: relative;
    width: unset;
  }
}
.play-section .heading {
  font-family: "Gilroy Heavy";
  text-transform: uppercase;
  color: white;
  font-size: 60px;
  line-height: 1;
  text-align: start;
  background: linear-gradient(90deg, rgb(157, 157, 157) 0%, rgb(255, 255, 255) 50%, rgb(157, 157, 157) 100%);
  -webkit-background-clip: text; /* Clips the gradient to the text */
  -webkit-text-fill-color: transparent;
}
@media (max-width: 767px) {
  .play-section .heading {
    font-size: 40px;
  }
}
.play-section p {
  text-align: start;
  font-family: "Gilroy Medium";
  margin-top: 20px;
}
@media (max-width: 767px) {
  .play-section p {
    font-size: 15px;
  }
}
.play-section a {
  width: max-content;
  display: block;
  text-align: start;
  margin-top: 20px;
  font-family: "Gilroy Medium";
  color: #f8e07c;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  transition: transform 0.4s ease; /* Smooth transition */
}
.play-section a .know-more {
  border: 1px solid #f8e07c;
  padding: 10px 12px;
  border-radius: 50%;
}
.play-section a:hover {
  transform: translateX(20px); /* Shift right on hover */
}
.text-section {
  color: black;
}
@media (max-width: 767px) {
  .text-section {
    display: none;
  }
}

.section-bottom {
  background-color: black;
  padding-top: 80px;
}
@media (max-width: 767px) {
  .section-bottom {
    padding-top: 40px;
    padding-bottom: 80px;
  }
}
.section-bottom .bell-wrapper {
  display: flex;
  color: white;
  position: relative;
}
@media (max-width: 767px) {
  .section-bottom .bell-wrapper {
    flex-direction: column-reverse;
    gap: 40px;
  }
}
.section-bottom .bell-wrapper .blue-background {
  position: absolute;
}
.section-bottom .bell-wrapper .text-copy {
  position: absolute;
  right: -30px;
  bottom: 120px;
  z-index: 40;
}
@media (max-width: 767px) {
  .section-bottom .bell-wrapper .text-copy {
    right: 0;
    bottom: 70px;
    z-index: 40;
    width: 150px;
  }
}
.section-bottom .left-bell {
  width: 780px;
  height: 780px;
  flex: 1.5;
  text-align: center;
  position: relative;
  display: flex;
  justify-content: center;
}
@media (max-width: 767px) {
  .section-bottom .left-bell {
    width: unset;
    height: unset;
  }
}
.section-bottom .left-bell.brand-left-bell {
  width: unset;
  height: unset;
}
.section-bottom .right-copy {
  flex: 1;
  text-align: center;
  position: relative;
  padding: 40px;
  background-image: url("../images/golden.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 500px;
  height: 650px;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .section-bottom .right-copy {
    width: unset;
    height: unset;
  }
}
.section-bottom .right-copy h1 {
  position: relative;
  z-index: 2;
  text-align: start;
  font-family: "Gilroy Heavy";
  font-size: 60px;
  color: white;
}
@media (max-width: 767px) {
  .section-bottom .right-copy h1 {
    font-size: 40px;
  }
}
.section-bottom .right-copy h2 {
  position: relative;
  z-index: 2;
  text-align: start;
  font-family: "Gilroy Heavy";
  font-size: 60px;
  color: white;
}
@media (max-width: 767px) {
  .section-bottom .right-copy h2 {
    font-size: 40px;
  }
}
.section-bottom .right-copy p {
  position: relative;
  z-index: 2;
  text-align: start;
  margin-top: 20px;
  font-size: 18px;
  line-height: 1.4;
  font-family: "Gilroy Medium";
}
@media (max-width: 767px) {
  .section-bottom .right-copy p {
    font-size: 15px;
    margin-top: 0;
  }
}
.section-bottom .right-copy a {
  position: relative;
  z-index: 2;
  text-align: start;
  display: block;
  margin-top: 20px;
  font-family: "Gilroy Medium";
  display: flex;
  gap: 10px;
  align-items: center;
  position: relative;
  z-index: 100;
  color: white;
  transition: all ease 0.3s;
  transition: transform ease 0.4s;
}
.section-bottom .right-copy a .right-arrow {
  padding: 10px 12px;
  border: 1px solid white;
  border-radius: 50%;
}
.section-bottom .right-copy a:hover {
  transform: translateX(20px); /* Shift right on hover */
}
.section-bottom .text-bottom-heavy {
  position: absolute;
  right: 0;
  bottom: 0;
  position: absolute;
  top: 50%;
  left: 50px;
  transform: translate(0, -50%);
  z-index: 20;
}
@media (max-width: 767px) {
  .section-bottom .text-bottom-heavy {
    left: 15px;
  }
}
.section-bottom .girls-center {
  position: relative;
  z-index: 50;
}
@media (max-width: 767px) {
  .section-bottom .girls-center {
    width: 150px;
  }
}
@media (max-width: 767px) {
  .section-bottom .girls-center.brand-model {
    width: 150px;
  }
}

.overlay-coming-soon {
  position: absolute; /* Ya fixed agar poori screen pe chahiye */
  top: -50px;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7); /* Transparent black background */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 15; /* Form ke upar laane ke liye */
  pointer-events: none; /* Form interact na ho iske liye */
}
@media (max-width: 767px) {
  .overlay-coming-soon {
    top: -5px;
  }
}
.overlay-coming-soon h2 {
  font-size: 90px;
  font-family: "Gilroy Heavy";
  text-transform: uppercase;
  background: linear-gradient(90deg, rgb(157, 157, 157) 0%, rgb(255, 255, 255) 50%, rgb(157, 157, 157) 100%);
  -webkit-background-clip: text; /* Clips the gradient to the text */
  -webkit-text-fill-color: transparent;
}
@media (max-width: 767px) {
  .overlay-coming-soon {
    text-align: center;
  }
  .overlay-coming-soon h2 {
    font-size: 50px;
  }
}

.fashion-page-main-wrapper {
  /* Modal Styling */
  /* Thank You Message */
  /* Animation for horizontal movement */
}
.fashion-page-main-wrapper #content-Guwahati {
  position: relative;
}
.fashion-page-main-wrapper #content-Guwahati .overlay-coming-soon {
  position: absolute; /* Ya fixed agar poori screen pe chahiye */
  top: -50px;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(10px);
  background: rgba(0, 0, 0, 0.88);
  /* Transparent black background */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 15px; /* Form ke upar laane ke liye */
  pointer-events: none; /* Form interact na ho iske liye */
}
.fashion-page-main-wrapper #content-Guwahati .overlay-coming-soon h2 {
  align-self: flex-start;
  margin-top: 150px;
  font-size: 90px;
  font-family: "Gilroy Heavy";
  text-transform: uppercase;
  background: linear-gradient(90deg, rgb(157, 157, 157) 0%, rgb(255, 255, 255) 50%, rgb(157, 157, 157) 100%);
  -webkit-background-clip: text; /* Clips the gradient to the text */
  -webkit-text-fill-color: transparent;
}
@media (max-width: 767px) {
  .fashion-page-main-wrapper #content-Guwahati .overlay-coming-soon {
    text-align: center;
  }
  .fashion-page-main-wrapper #content-Guwahati .overlay-coming-soon h2 {
    margin-top: 80px;
    font-size: 50px;
  }
}
.fashion-page-main-wrapper .banner-fashion-section .wrapper-banner {
  position: relative;
}
.fashion-page-main-wrapper .banner-fashion-section .pull-down {
  position: absolute;
  left: 50%;
  bottom: 150px;
  color: white;
  font-family: "Gilroy Light";
  font-size: 20px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 10;
}
.fashion-page-main-wrapper .banner-fashion-section .arrow {
  margin: auto;
  margin-bottom: 10px;
  border: 1px solid white;
  padding: 10px 12px;
  border-radius: 50px;
  cursor: pointer;
}
.fashion-page-main-wrapper .banner-fashion-section .video-banner {
  position: relative;
  width: 100%;
  height: 100vh; /* Full viewport height */
  overflow: hidden; /* Hide any overflow */
  background: black;
}
.fashion-page-main-wrapper .banner-fashion-section .video-banner #muteToggleBtn {
  position: absolute;
  bottom: 20%;
  right: 20px;
  z-index: 1000;
  color: white;
  outline: none;
  border: none;
  border-radius: 50px;
  font-size: 25px;
  cursor: pointer;
}
.fashion-page-main-wrapper .banner-fashion-section .banner-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensure the video covers the full area */
  z-index: 3; /* Ensure the video stays behind text */
}
.fashion-page-main-wrapper .black-back {
  background-color: black;
}
.fashion-page-main-wrapper .modal {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
}
.fashion-page-main-wrapper .modal-content {
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  position: relative;
}
.fashion-page-main-wrapper .form-flex {
  display: flex;
}
@media (max-width: 767px) {
  .fashion-page-main-wrapper .form-flex {
    flex-direction: column;
  }
}
.fashion-page-main-wrapper .tc-form {
  font-family: "Gilroy Medium";
  color: #808080;
  text-align: center;
  font-size: 13px;
  margin-top: 10px;
}
@media (max-width: 767px) {
  .fashion-page-main-wrapper .tc-form {
    font-size: 10px;
  }
}
.fashion-page-main-wrapper .tc-form a {
  border-bottom: 1px solid #808080;
  line-height: 1;
}
.fashion-page-main-wrapper .img-flex {
  flex: 1;
}
.fashion-page-main-wrapper .img-flex.flex-black {
  background-color: black;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.fashion-page-main-wrapper .img-flex.flex-white {
  background-color: white;
  padding: 40px 60px;
}
@media (max-width: 767px) {
  .fashion-page-main-wrapper .img-flex.flex-white {
    padding: 20px;
  }
}
.fashion-page-main-wrapper #userForm {
  display: flex;
  flex-direction: column;
  gap: 5px;
  /* Default state for the radio buttons */
  /* When the radio button is selected */
}
@media (max-width: 767px) {
  .fashion-page-main-wrapper #userForm {
    gap: 0;
  }
}
.fashion-page-main-wrapper #userForm .radio-wrapper {
  display: flex;
  align-items: start;
  line-height: 1.3;
  font-family: "Gilroy Medium";
  gap: 10px;
  margin-bottom: 10px;
  font-size: 13px;
}
@media (max-width: 767px) {
  .fashion-page-main-wrapper #userForm .radio-wrapper {
    font-size: 10px;
  }
}
.fashion-page-main-wrapper #userForm .radio-wrapper label {
  padding-top: 3px;
  word-wrap: break-word;
  overflow-wrap: break-word;
  text-align: justify; /* Text ko evenly spread karne ke liye */
}
.fashion-page-main-wrapper #userForm .radio-wrapper label a {
  border-bottom: 1px solid #808080;
  line-height: 1;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}
.fashion-page-main-wrapper #userForm input[type=checkbox].terms-checkbox,
.fashion-page-main-wrapper #userForm input[type=checkbox].legalAge-checkbox {
  width: 20px;
  height: 20px;
  border-radius: 10px;
  border: 2px solid #ccc;
  cursor: pointer;
  border-radius: 5px;
  border: 1px solid black;
  cursor: pointer;
  padding: 10px;
}
.fashion-page-main-wrapper #userForm input[type=checkbox].terms-checkbox:checked {
  position: relative;
}
.fashion-page-main-wrapper #userForm input[type=checkbox].terms-checkbox:checked::after {
  content: "✔";
  content: "\f00c"; /* Font Awesome check mark icon (✔) */
  font-family: "Font Awesome 5 Free"; /* Font Awesome icon font */
  font-weight: 900; /* This adds a check mark */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); /* Centers the tick */
  font-size: 14px; /* Adjust the size as needed */
  color: black; /* Tick color */
}
.fashion-page-main-wrapper #userForm input[type=checkbox].legalAge-checkbox:checked {
  position: relative;
}
.fashion-page-main-wrapper #userForm input[type=checkbox].legalAge-checkbox:checked::after {
  content: "✔";
  content: "\f00c"; /* Font Awesome check mark icon (✔) */
  font-family: "Font Awesome 5 Free"; /* Font Awesome icon font */
  font-weight: 900;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 14px;
  color: black; /* Tick color */
}
.fashion-page-main-wrapper .close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  padding-right: 20px;
  padding-top: 20px;
  position: absolute;
  right: -25px;
  top: -25px;
  background-color: white;
  padding: 2px 7px;
  border-radius: 50px;
  color: black;
}
@media (max-width: 767px) {
  .fashion-page-main-wrapper .close {
    right: 0px;
    top: -35px;
  }
}
.fashion-page-main-wrapper .close:hover,
.fashion-page-main-wrapper .close:focus {
  color: black;
}
.fashion-page-main-wrapper .heading-modal {
  font-family: "Gilroy Bold";
  font-size: 40px;
  text-align: center;
  color: #f8e07c;
  text-transform: uppercase;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .fashion-page-main-wrapper .heading-modal {
    font-size: 24px;
  }
}
.fashion-page-main-wrapper .copy-modal {
  font-family: "Gilroy Medium";
  font-size: 18px;
  text-align: center;
  color: white;
}
.fashion-page-main-wrapper .copy-modal span {
  font-family: "Gilroy Bold";
}
@media (max-width: 767px) {
  .fashion-page-main-wrapper .copy-modal {
    font-size: 13px;
  }
}
.fashion-page-main-wrapper .logo-modal {
  width: 300px;
}
@media (max-width: 767px) {
  .fashion-page-main-wrapper .logo-modal {
    width: 150px;
  }
}
.fashion-page-main-wrapper input,
.fashion-page-main-wrapper textarea {
  background: transparent;
  border: 1px solid black;
  border-radius: 50px;
  font-size: 16px;
  font-family: "Gilroy Medium";
  padding: 15px 30px;
  margin-bottom: 6px;
}
@media (max-width: 767px) {
  .fashion-page-main-wrapper input,
  .fashion-page-main-wrapper textarea {
    font-size: 13px;
    margin-bottom: 0;
    padding: 8px 20px;
  }
}
.fashion-page-main-wrapper .select-wrap {
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .fashion-page-main-wrapper .select-wrap {
    margin-bottom: 14px;
  }
}
.fashion-page-main-wrapper select {
  width: 100%;
  background: transparent;
  border: 1px solid black;
  border-radius: 50px;
  font-size: 16px;
  font-family: "Gilroy Medium";
  padding: 15px 30px;
  margin-bottom: 6px;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%23000' stroke-width='2' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 20px center;
  background-size: 12px 8px;
  color: black;
}
@media (max-width: 767px) {
  .fashion-page-main-wrapper select {
    font-size: 13px;
    margin-bottom: 0;
    padding: 8px 20px;
  }
}
.fashion-page-main-wrapper select option {
  color: black;
}
.fashion-page-main-wrapper input::placeholder {
  color: black; /* Change this to your desired color */
  opacity: 1; /* Ensure full opacity (default is 0.5 in some browsers) */
}
.fashion-page-main-wrapper .error {
  color: red;
  font-size: 14px;
  margin-bottom: 10px;
  font-family: "Gilroy Light";
}
@media (max-width: 767px) {
  .fashion-page-main-wrapper .error {
    font-size: 12px;
    margin-top: 3px;
  }
}
.fashion-page-main-wrapper .thank-you {
  display: none;
  background-color: black;
  padding: 60px;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
@media (max-width: 767px) {
  .fashion-page-main-wrapper .thank-you {
    padding: 30px 20px;
  }
}
.fashion-page-main-wrapper .thank-you h3 {
  font-family: "Gilroy Bold";
  text-transform: uppercase;
  font-size: 40px;
  color: #f8e07c;
}
@media (max-width: 767px) {
  .fashion-page-main-wrapper .thank-you h3 {
    font-size: 24px;
  }
}
.fashion-page-main-wrapper .thank-you p {
  font-size: 18px;
  font-family: "Gilroy Bold";
  color: white;
}
@media (max-width: 767px) {
  .fashion-page-main-wrapper .thank-you p {
    font-size: 12px;
    margin-bottom: 10px;
  }
}
.fashion-page-main-wrapper .thank-you img {
  width: 273px;
}
@media (max-width: 767px) {
  .fashion-page-main-wrapper .thank-you img {
    margin: auto;
    width: 170px;
  }
}
.fashion-page-main-wrapper .send {
  border: 1px solid black;
  font-family: "Gilroy Bold";
  color: #f8e07c;
  font-size: 18px;
  max-width: max-content;
  margin: auto;
  padding: 10px 30px;
  background-color: black;
  border-radius: 50px;
  cursor: pointer;
}
@media (max-width: 767px) {
  .fashion-page-main-wrapper .send {
    font-size: 13px;
    padding: 7px 22px;
  }
}
.fashion-page-main-wrapper .book-now-section {
  background-image: url("../images/BPFT-Bell-1.gif"), url("../images/background.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 800px, contain;
  background-color: black;
  overflow: hidden; /* Ensure the moving text doesn't overflow */
  position: relative;
}
.fashion-page-main-wrapper .book-now-section .book-now-wrapper {
  display: flex;
  justify-content: center;
  padding-top: 90px;
}
@media (max-width: 767px) {
  .fashion-page-main-wrapper .book-now-section .book-now-wrapper {
    padding-top: 0;
  }
}
@media (max-width: 767px) {
  .fashion-page-main-wrapper .book-now-section .fashion-center-image {
    width: 250px;
  }
}
@media (max-width: 767px) {
  .fashion-page-main-wrapper .book-now-section {
    background-size: contain;
    padding-top: 90px;
  }
}
.fashion-page-main-wrapper .moving-text-wrapper {
  position: absolute;
  top: 50%; /* Center vertically */
  left: 0;
  width: 100%;
  transform: translateY(-50%); /* Adjust for perfect centering */
  overflow: hidden;
  white-space: nowrap; /* 

Prevent text wrapping */
  /* Ensure text doesn't go outside the container */
}
@media (max-width: 767px) {
  .fashion-page-main-wrapper .moving-text-wrapper {
    top: 42%;
  }
}
.fashion-page-main-wrapper .moving-text {
  display: flex;
  white-space: nowrap; /* Prevent wrapping */
  animation: move-horizontal 10s linear infinite; /* Smooth scrolling */
  font-size: 1.5rem; /* Adjust font size */
  font-family: "Gilroy Light";
  text-transform: uppercase;
  font-size: 100px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Add shadow for visibility */
}
@media (max-width: 767px) {
  .fashion-page-main-wrapper .moving-text {
    font-size: 40px;
  }
}
.fashion-page-main-wrapper .moving-text span {
  margin-right: 10px;
  color: white;
}
.fashion-page-main-wrapper .moving-text .book-now {
  align-items: center;
  gap: 10px;
  color: #f8e07c;
  margin-right: 10px;
}
.fashion-page-main-wrapper .moving-text .circle {
  font-size: 30px;
  vertical-align: middle;
  padding-bottom: 15px;
  margin-left: 20px;
  margin-right: 20px;
}
@media (max-width: 767px) {
  .fashion-page-main-wrapper .moving-text .circle {
    font-size: 15px;
    vertical-align: text-bottom;
  }
}
@keyframes move-horizontal {
  0% {
    transform: translateX(0); /* Start from the right */
  }
  100% {
    transform: translateX(-100%); /* Move to the left */
  }
}
.fashion-page-main-wrapper .city-tabs {
  display: flex;
  gap: 10px;
  position: relative;
  z-index: 20;
}
@media (max-width: 767px) {
  .fashion-page-main-wrapper .city-tabs {
    overflow: scroll;
    gap: 10px;
  }
}
.fashion-page-main-wrapper .city-tabs .tab {
  cursor: pointer;
  margin-top: -35px;
  display: inline-block;
  border: none;
  text-align: center; /* Center aligns the text in each tab */
  font-family: "Gilroy Bold";
  font-size: 30px;
  text-transform: uppercase;
  flex-grow: 1; /* Makes each tab grow to occupy equal space */
  text-align: center; /* Center aligns the text in each tab */
  padding: 20px 40px;
  background-color: black; /* Tab background color */
  color: #f8e07c; /* Text color */
  border-bottom: 3px solid #f8e07c; /* Yellow border at the bottom */
  text-decoration: none; /* Removes underline from links */
  transition: background-color 0.3s, color 0.3s;
}
@media (max-width: 767px) {
  .fashion-page-main-wrapper .city-tabs .tab {
    margin-top: unset;
    font-size: 14px;
  }
}
.fashion-page-main-wrapper .city-tabs .tab:hover {
  background-color: #222; /* Slightly lighter shade on hover */
}
.fashion-page-main-wrapper .city-tabs .tab.active {
  background-color: #f8e07c; /* Yellow background for active tab */
  color: black; /* Black text for active tab */
  font-weight: bold;
  border-bottom: 3px solid #f8e07c; /* Retains the bottom border for active tab */
}
.fashion-page-main-wrapper .card-section {
  background-color: black;
  padding-bottom: 190px;
  padding-top: 80px;
}
@media (max-width: 767px) {
  .fashion-page-main-wrapper .card-section {
    padding-bottom: 100px;
    padding-top: 50px;
  }
}
.fashion-page-main-wrapper .card-section .card-section-wrapper {
  padding-top: 80px;
  padding-right: 80px;
  background-image: url("../images/golden.png");
  background-repeat: no-repeat;
  background-position: right top;
}
@media (max-width: 767px) {
  .fashion-page-main-wrapper .card-section .card-section-wrapper {
    padding-top: 40px;
    padding-right: 20px;
    background-position-y: 95%;
    background-position-x: 70%;
    background-size: 280px;
  }
}
.fashion-page-main-wrapper .card-section .flex-card {
  display: flex;
  justify-content: center;
}
@media (max-width: 767px) {
  .fashion-page-main-wrapper .card-section .flex-card {
    flex-direction: column;
    gap: 80px;
  }
}
.fashion-page-main-wrapper .card-section .copy {
  flex: 1.2;
}
.fashion-page-main-wrapper .card-section .image-card {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 767px) {
  .fashion-page-main-wrapper .card-section .image-card {
    padding-right: 40px;
  }
}
.fashion-page-main-wrapper .card-section .heading {
  font-family: "Gilroy Heavy";
  text-transform: uppercase;
  color: white;
  font-size: 60px;
  line-height: 1;
  text-align: start;
  background: linear-gradient(90deg, rgb(157, 157, 157) 0%, rgb(255, 255, 255) 50%, rgb(157, 157, 157) 100%);
  -webkit-background-clip: text; /* Clips the gradient to the text */
  -webkit-text-fill-color: transparent;
}
@media (max-width: 767px) {
  .fashion-page-main-wrapper .card-section .heading {
    font-size: 40px;
  }
}
.fashion-page-main-wrapper .card-section p {
  padding-right: 140px;
  text-align: start;
  font-family: "Gilroy Medium";
  margin-top: 20px;
  color: white;
}
@media (max-width: 767px) {
  .fashion-page-main-wrapper .card-section p {
    font-size: 15px;
    padding-right: unset;
  }
}
.fashion-page-main-wrapper .city-content {
  background-color: white;
  padding-top: 60px;
  color: black;
}
@media (max-width: 767px) {
  .fashion-page-main-wrapper .city-content .internal-tab-content .mobile-image {
    margin-top: 30px;
    background-image: url("../images/golden2.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    padding-top: 20px;
    padding-bottom: 40px;
  }
  .fashion-page-main-wrapper .city-content .internal-tab-content .mobile-image img {
    padding: 0 20px;
  }
}
@media (max-width: 767px) and (max-width: 767px) {
  .fashion-page-main-wrapper .city-content .internal-tab-content .mobile-image img {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .fashion-page-main-wrapper .city-content .internal-tab-content .mobile-image video {
    padding: 0 20px;
  }
}
@media (max-width: 767px) and (max-width: 767px) {
  .fashion-page-main-wrapper .city-content .internal-tab-content .mobile-image video {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .fashion-page-main-wrapper .city-content .internal-tab-content .mobile-image .line {
    width: 85%;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
    background-color: white;
    height: 1px;
    margin-top: 40px;
    margin-bottom: 10px;
  }
  .fashion-page-main-wrapper .city-content .internal-tab-content .mobile-image .designer {
    padding: 0;
  }
}
.fashion-page-main-wrapper .city-content .internal-tab-content .mobile-image h1 {
  font-size: 2.5rem;
  color: #ffffff;
  margin-bottom: 1rem;
  font-family: "Gilroy Bold";
  font-size: 40px;
  text-align: start;
}
.fashion-page-main-wrapper .city-content .internal-tab-content .mobile-image .left-section-wrapper {
  margin-top: 20px;
  padding: 0 20px;
}
.fashion-page-main-wrapper .city-content .internal-tab-content .mobile-image .description {
  font-size: 1rem;
  color: #ffffff;
  line-height: 1.6;
  margin-bottom: 1rem;
  font-size: 20px;
  font-family: "Gilroy Light";
  text-align: start;
}
.fashion-page-main-wrapper .city-content .internal-tab-content .mobile-image .description .bold-text-head {
  font-family: "Gilroy Bold";
}
@media (max-width: 767px) {
  .fashion-page-main-wrapper .city-content .internal-tab-content .mobile-image .description {
    font-size: 18px;
  }
}
.fashion-page-main-wrapper .city-content .internal-tab-content .mobile-image ul {
  list-style-type: disc;
  padding-left: 30px;
  margin-bottom: 20px;
}
.fashion-page-main-wrapper .city-content .internal-tab-content .mobile-image ul li {
  font-family: "Gilroy Light";
  margin-top: 10px;
  font-size: 20px;
  line-height: 1.3;
  color: white;
}
@media (max-width: 767px) {
  .fashion-page-main-wrapper .city-content .internal-tab-content .mobile-image ul li {
    font-size: 15px;
  }
}
.fashion-page-main-wrapper .city-content .city-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  width: 100%;
  justify-items: stretch;
  width: 100%;
}
@media (max-width: 767px) {
  .fashion-page-main-wrapper .city-content .city-wrapper {
    display: flex;
    flex-direction: column;
    height: unset;
    padding-bottom: 0px;
    gap: 40px;
  }
}
.fashion-page-main-wrapper .city-content .city-wrapper ul {
  list-style-type: disc;
  padding-left: 30px;
}
.fashion-page-main-wrapper .city-content .city-wrapper ul li {
  font-family: "Gilroy Medium";
  margin-top: 10px;
  font-size: 20px;
  line-height: 1.3;
}
@media (max-width: 767px) {
  .fashion-page-main-wrapper .city-content .city-wrapper ul li {
    font-size: 15px;
  }
}
.fashion-page-main-wrapper .city-content .city-wrapper .content {
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 80px;
  padding-bottom: 80px;
  justify-content: flex-start;
}
@media (max-width: 767px) {
  .fashion-page-main-wrapper .city-content .city-wrapper .content {
    padding: 0 20px;
  }
}
.fashion-page-main-wrapper .city-content .city-wrapper .content .bold-text-head {
  font-family: "Gilroy Bold";
}
.fashion-page-main-wrapper .city-content .city-wrapper .content .content-wrapper {
  width: 70%;
  /* Button Styling */
}
@media (max-width: 767px) {
  .fashion-page-main-wrapper .city-content .city-wrapper .content .content-wrapper {
    width: 100%;
  }
}
.fashion-page-main-wrapper .city-content .city-wrapper .content .content-wrapper .btn {
  display: inline-block;
  padding: 15px 40px;
  background-color: black;
  color: white;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-size: 16px;
  font-family: "Gilroy Medium";
  margin-top: 20px;
  color: #f8e07c;
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: max-content;
  transition: all 0.4s ease; /* Smooth transition */
}
.fashion-page-main-wrapper .city-content .city-wrapper .content .content-wrapper .block-event {
  pointer-events: none;
}
.fashion-page-main-wrapper .city-content .city-wrapper .content .content-wrapper .btn:hover {
  color: white; /* Shift right on hover */
}
.fashion-page-main-wrapper .city-content .city-wrapper .book-now {
  background-color: black;
  color: #f8e07c;
  padding: 15px 30px;
  border: 1px solid black;
  border-radius: 50px;
  display: block;
  width: max-content;
  margin-top: 15px;
  font-family: "Gilroy Bold";
  display: flex;
  font-size: 20px;
  gap: 10px;
  align-items: center;
}
@media (max-width: 767px) {
  .fashion-page-main-wrapper .city-content .city-wrapper .book-now {
    font-size: 16px;
    padding: 10px 20px;
  }
}
.fashion-page-main-wrapper .city-content .city-wrapper .content h1 {
  font-size: 60px;
  font-weight: bold;
  margin: 0;
  font-family: "Gilroy Bold";
  line-height: 1;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .fashion-page-main-wrapper .city-content .city-wrapper .content h1 {
    font-size: 40px;
  }
}
.fashion-page-main-wrapper .city-content .city-wrapper .content .new-ptag {
  font-size: 60px;
  font-weight: bold;
  margin: 0;
  font-family: "Gilroy Bold";
  line-height: 1;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .fashion-page-main-wrapper .city-content .city-wrapper .content .new-ptag {
    font-size: 40px;
  }
}
.fashion-page-main-wrapper .city-content .city-wrapper .content .new-htag {
  font-size: 40px;
  font-weight: bold;
  margin: 0;
  margin-top: 20px;
  font-family: "Gilroy Bold";
  line-height: 1;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .fashion-page-main-wrapper .city-content .city-wrapper .content .new-htag {
    font-size: 40px;
  }
}
.fashion-page-main-wrapper .city-content .city-wrapper .content .date,
.fashion-page-main-wrapper .city-content .city-wrapper .content .venue {
  font-size: 1.2rem;
  margin: 0.5rem 0;
  font-weight: 500;
  font-family: "Gilroy Bold";
  font-size: 20px;
}
@media (max-width: 767px) {
  .fashion-page-main-wrapper .city-content .city-wrapper .content .date,
  .fashion-page-main-wrapper .city-content .city-wrapper .content .venue {
    margin: 5px 0;
  }
}
.fashion-page-main-wrapper .city-content .city-wrapper .content .text {
  font-size: 20px;
  line-height: 1.5;
  margin-top: 1rem;
  text-align: start;
  font-family: "Gilroy Medium";
}
@media (max-width: 767px) {
  .fashion-page-main-wrapper .city-content .city-wrapper .content .text {
    font-size: 15px;
  }
}
.fashion-page-main-wrapper .city-content .city-wrapper .margin-top-booknow {
  margin-top: 10px !important;
}
.fashion-page-main-wrapper .city-content .city-wrapper .text-margin-top {
  margin-top: 30px !important;
}
@media (max-width: 767px) {
  .fashion-page-main-wrapper .city-content .city-wrapper .text-margin-top {
    margin-top: 20px !important;
  }
}
.fashion-page-main-wrapper .city-content .city-wrapper .image {
  background-image: url("../images/golden2.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 80px;
  padding-bottom: 80px;
}
@media (max-width: 767px) {
  .fashion-page-main-wrapper .city-content .city-wrapper .image {
    padding: 40px 20px;
  }
}
.fashion-page-main-wrapper .city-content .city-wrapper .image img {
  width: 70%;
  height: auto;
  object-fit: cover;
}
@media (max-width: 767px) {
  .fashion-page-main-wrapper .city-content .city-wrapper .image img {
    width: 100%;
  }
}
.fashion-page-main-wrapper .city-content .city-wrapper .image video {
  width: 70%;
  height: auto;
  object-fit: cover;
}
@media (max-width: 767px) {
  .fashion-page-main-wrapper .city-content .city-wrapper .image video {
    width: 100%;
  }
}
.fashion-page-main-wrapper .city-content .city-wrapper .image .guru-video {
  width: 60%;
}
@media (max-width: 767px) {
  .fashion-page-main-wrapper .city-content .city-wrapper .image .guru-video {
    width: 100%;
  }
}
.fashion-page-main-wrapper .city-content .city-wrapper-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
}
.fashion-page-main-wrapper .city-content .city-wrapper-bottom .bold-text-head {
  font-family: "Gilroy Bold";
}
@media (max-width: 767px) {
  .fashion-page-main-wrapper .city-content .city-wrapper-bottom {
    display: flex;
    flex-direction: column;
  }
}
.fashion-page-main-wrapper .city-content .city-wrapper-bottom ul {
  list-style-type: disc;
  padding-left: 30px;
  margin-bottom: 10px;
}
.fashion-page-main-wrapper .city-content .city-wrapper-bottom ul li {
  font-family: "Gilroy Light";
  margin-top: 10px;
  font-size: 20px;
  line-height: 1.3;
  color: white;
}
@media (max-width: 767px) {
  .fashion-page-main-wrapper .city-content .city-wrapper-bottom ul li {
    font-size: 15px;
  }
}
.fashion-page-main-wrapper .city-content .city-wrapper-bottom .left-section {
  background: linear-gradient(45deg, #c4a484, #d8c3a5);
  background-image: url("../images/golden2.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: flex-start;
  justify-content: center;
  padding-bottom: 80px;
  padding-top: 80px;
}
.fashion-page-main-wrapper .city-content .city-wrapper-bottom .left-section .left-section-wrapper {
  max-width: 70%;
}
.fashion-page-main-wrapper .city-content .city-wrapper-bottom .left-section .left-section-wrapper .bold-text-head {
  font-family: "Gilroy Bold";
}
@media (max-width: 767px) {
  .fashion-page-main-wrapper .city-content .city-wrapper-bottom .left-section .left-section-wrapper {
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .fashion-page-main-wrapper .city-content .city-wrapper-bottom .left-section {
    padding: 40px 20px;
  }
}
.fashion-page-main-wrapper .city-content .city-wrapper-bottom .left-section h1 {
  font-size: 2.5rem;
  color: #ffffff;
  margin-bottom: 1rem;
  font-family: "Gilroy Bold";
  font-size: 40px;
  text-align: start;
}
.fashion-page-main-wrapper .city-content .city-wrapper-bottom .left-section .description {
  font-size: 1rem;
  color: #ffffff;
  line-height: 1.6;
  margin-bottom: 1rem;
  font-size: 20px;
  font-family: "Gilroy Light";
  text-align: start;
}
.fashion-page-main-wrapper .city-content .city-wrapper-bottom .left-section .description .bold-text-head {
  font-family: "Gilroy Bold";
}
@media (max-width: 767px) {
  .fashion-page-main-wrapper .city-content .city-wrapper-bottom .left-section .description {
    font-size: 18px;
  }
}
.fashion-page-main-wrapper .city-content .city-wrapper-bottom .left-section img {
  max-width: 100%;
  height: auto;
  margin-top: 2rem;
}
.fashion-page-main-wrapper .city-content .city-wrapper-bottom .right-section {
  background-color: #ffffff;
  padding-top: 80px;
  padding-bottom: 80px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
}
.fashion-page-main-wrapper .city-content .city-wrapper-bottom .right-section .right-section-wrapper {
  max-width: 70%;
  display: flex;
  flex-direction: column;
}
@media (max-width: 767px) {
  .fashion-page-main-wrapper .city-content .city-wrapper-bottom .right-section .right-section-wrapper {
    max-width: 100%;
    flex-direction: column-reverse;
  }
}
.fashion-page-main-wrapper .city-content .city-wrapper-bottom .right-section .right-section-wrapper .swiper-section {
  overflow: hidden;
}
@media (max-width: 767px) {
  .fashion-page-main-wrapper .city-content .city-wrapper-bottom .right-section .right-section-wrapper .swiper-section {
    margin-top: 30px;
  }
}
.fashion-page-main-wrapper .city-content .city-wrapper-bottom .right-section .right-section-wrapper .swiper-container {
  width: 520px;
}
@media (max-width: 767px) {
  .fashion-page-main-wrapper .city-content .city-wrapper-bottom .right-section .right-section-wrapper .swiper-container {
    width: 100%;
  }
}
.fashion-page-main-wrapper .city-content .city-wrapper-bottom .right-section .right-section-wrapper .swiper-slide img {
  object-fit: cover;
}
@media (max-width: 767px) {
  .fashion-page-main-wrapper .city-content .city-wrapper-bottom .right-section {
    padding: 40px 20px;
    align-items: flex-start;
  }
}
.fashion-page-main-wrapper .city-content .city-wrapper-bottom .right-section h2 {
  font-size: 2rem;
  margin: 0.5rem 0;
  font-family: "Gilroy Bold";
  text-align: start;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .fashion-page-main-wrapper .city-content .city-wrapper-bottom .right-section h2 {
    margin: 0;
  }
}
.fashion-page-main-wrapper .city-content .city-wrapper-bottom .right-section p {
  font-size: 2rem;
  margin: 0.5rem 0;
  font-family: "Gilroy Medium";
  margin-top: 20px;
  margin-top: 10px;
}
@media (max-width: 767px) {
  .fashion-page-main-wrapper .city-content .city-wrapper-bottom .cel {
    margin-top: 10px;
  }
}
.fashion-page-main-wrapper .city-content .city-wrapper-bottom .right-section .caption {
  font-size: 1.2rem;
  color: #333;
  text-align: start;
}
.fashion-page-main-wrapper .city-content .city-wrapper-bottom .right-section .caption.mt-5 {
  margin-top: 20px;
}
.fashion-page-main-wrapper .city-content .city-wrapper-bottom .right-section .caption.chandi-caption {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .fashion-page-main-wrapper .city-content .city-wrapper-bottom .right-section .caption.chandi-caption {
    margin-top: 0px;
  }
}
.fashion-page-main-wrapper .city-content .city-wrapper-bottom .right-section .caption .bold-name {
  font-family: "Gilroy Bold";
}
@media (max-width: 767px) {
  .fashion-page-main-wrapper .city-content .city-wrapper-bottom .right-section .caption {
    font-size: 18px;
  }
}
.fashion-page-main-wrapper .city-content .card-section {
  padding-top: 110px;
}
@media (max-width: 767px) {
  .fashion-page-main-wrapper .city-content .card-section {
    padding-top: 40px;
  }
}

.register {
  background-color: black;
  display: flex;
  padding: 40px 0;
  min-height: 100vh;
}
@media (max-width: 767px) {
  .register {
    padding-bottom: 30px;
  }
}

.privacy-policy {
  background-color: black;
  padding-bottom: 80px;
}
.privacy-policy .one-two {
  list-style: lower-roman;
}
.privacy-policy .one-two a {
  border-bottom: 1px solid white;
  line-height: 1;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.privacy-policy .dots-one {
  list-style: disc;
}
.privacy-policy .alfa {
  list-style: lower-alpha;
}
.privacy-policy h1 {
  margin: 0;
  text-align: left;
  font-size: 70px;
  font-family: "Gilroy Bold";
  text-align: center;
  border-bottom: 1px solid;
  padding-bottom: 40px;
  padding-top: 30px;
  color: white;
}
@media (max-width: 767px) {
  .privacy-policy h1 {
    font-size: 40px;
    padding-bottom: 30px;
  }
}
.privacy-policy main {
  background-color: black;
}
.privacy-policy section {
  margin-bottom: 2rem;
}
.privacy-policy h2 {
  font-size: 1.5rem;
  color: black;
  padding-bottom: 0.5rem;
  text-align: left;
  font-family: "Gilroy Bold";
  font-size: 24px;
  margin-top: 20px;
  color: white;
}
.privacy-policy h3 {
  color: black;
  padding-bottom: 0.5rem;
  text-align: left;
  font-family: "Gilroy Bold";
  font-size: 20px;
  margin-top: 20px;
  color: white;
}
.privacy-policy .ul-top-qt {
  list-style: decimal;
}
.privacy-policy ul {
  text-align: left;
  padding-left: 30px;
  list-style: disc;
}
.privacy-policy ul li {
  line-height: 1.6;
  font-family: "Gilroy Light";
  font-size: 18px;
  margin: 10px 0;
  color: white;
}
.privacy-policy p {
  font-size: 1rem;
  color: black;
  text-align: left;
  font-family: "Gilroy Light";
  font-size: 18px;
  color: white;
}
.privacy-policy footer {
  color: #fff;
  text-align: center;
  padding: 1rem;
  position: fixed;
  width: 100%;
  bottom: 0;
}
.privacy-policy footer p {
  margin: 0;
}

.gallery-section {
  text-align: center;
  padding-bottom: 20px;
  padding-top: 30px;
  background-color: black;
}
@media (max-width: 767px) {
  .gallery-section {
    padding-top: 0;
  }
}

.gallery-section h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #f5f5f5;
  font-family: "Gilroy Bold";
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 100px;
}
@media (max-width: 767px) {
  .gallery-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
}

.gallery-item {
  position: relative;
}
.gallery-item img {
  width: 100%;
  transition: transform 0.3s;
}

.gallery-item span {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-image: url("../images/golden.png");
  color: #fff;
  text-align: center;
  padding: 10px;
  font-size: 0.9rem;
  display: none;
  transition: display 0.3s ease;
}
@media (max-width: 767px) {
  .gallery-item span {
    display: block;
  }
}

.gallery-item:hover span {
  display: block;
}
@media (max-width: 767px) {
  .gallery-item:hover span {
    display: unset;
  }
}

.pagination {
  margin: 20px 0;
}

.pagination button {
  background: transparent;
  border: none;
  color: white;
  padding: 10px 15px;
  margin: 0 5px;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.pagination button:hover {
  background-color: white;
  color: black;
}

.pagination button:disabled {
  background-color: #ccc;
  color: gray;
  cursor: not-allowed;
}

.section-header {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
@media (max-width: 767px) {
  .section-header {
    padding: 0;
  }
}

.section-header h1 {
  font-family: "Gilroy Heavy";
  text-transform: uppercase;
  color: white;
  font-size: 60px;
  line-height: 1;
  text-align: start;
  background: linear-gradient(90deg, rgb(157, 157, 157) 0%, rgb(255, 255, 255) 50%, rgb(157, 157, 157) 100%);
  -webkit-background-clip: text; /* Clips the gradient to the text */
  -webkit-text-fill-color: transparent;
}
@media (max-width: 767px) {
  .section-header h1 {
    font-size: 30px;
  }
}

.cities {
  display: flex;
  gap: 20px;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  outline: none;
  transition: background-color 0.3s;
}
@media (max-width: 767px) {
  .cities {
    overflow-x: scroll;
  }
}

.city {
  font-family: "Gilroy Medium";
  background-color: black;
  border: 1px solid white;
  color: white;
  padding: 10px 25px;
  font-size: 20px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s;
}
.city:hover {
  background-color: #f8e07c;
  border: 1px solid #f8e07c;
  color: black;
}
@media (max-width: 767px) {
  .city {
    min-width: max-content;
    font-size: 14px;
  }
}

.active {
  background-color: #f8e07c;
  color: black;
}

.gallary-banner {
  background-color: black;
  background-position: center;
  background-size: 120%;
  background-repeat: no-repeat;
  padding-bottom: 40px;
}

.gallary-banner-wrapper {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 30px;
}
@media (max-width: 767px) {
  .gallary-banner-wrapper {
    padding: 0;
  }
}

.img-wrapper-gallary {
  position: relative;
  display: flex;
}
.img-wrapper-gallary h2 {
  font-family: "Gilroy Medium";
  text-transform: uppercase;
  font-size: 200px;
  color: white;
  position: absolute;
  position: absolute;
  left: 50%;
  top: 40%;
  transform: translate(-50%, -50%);
  font-family: "Gilroy Heavy";
  text-transform: uppercase;
  color: white;
  line-height: 1;
  background: linear-gradient(90deg, rgb(157, 157, 157) 0%, rgb(255, 255, 255) 50%, rgb(157, 157, 157) 100%);
  -webkit-background-clip: text; /* Clips the gradient to the text */
  -webkit-text-fill-color: transparent;
}
@media (max-width: 767px) {
  .img-wrapper-gallary h2 {
    font-size: 80px;
  }
}
@media (max-width: 767px) {
  .img-wrapper-gallary h2 {
    font-size: 40px;
  }
}

.copy-gallary {
  color: white;
  font-family: "Gilroy Medium";
  font-size: 20px;
  text-align: center;
}
@media (max-width: 767px) {
  .copy-gallary {
    display: none;
  }
}

.copy-gallary-mobile {
  display: none;
  color: white;
  font-family: "Gilroy Medium";
  font-size: 20px;
  text-align: center;
}
@media (max-width: 767px) {
  .copy-gallary-mobile {
    font-size: 14px;
    display: block;
  }
}

.banner-blog {
  position: relative;
}
.banner-blog .img-blog {
  width: 100%;
}
.banner-blog h1 {
  font-family: "Gilroy Medium";
  text-transform: uppercase;
  font-size: 120px;
  text-align: center;
  color: white;
  position: absolute;
  position: absolute;
  left: 50%;
  top: 40%;
  transform: translate(-50%, -50%);
  font-family: "Gilroy Heavy";
  text-transform: uppercase;
  color: white;
  line-height: 1;
  background: linear-gradient(90deg, rgb(157, 157, 157) 0%, rgb(255, 255, 255) 50%, rgb(157, 157, 157) 100%);
  -webkit-background-clip: text; /* Clips the gradient to the text */
  -webkit-text-fill-color: transparent;
}
@media (max-width: 767px) {
  .banner-blog h1 {
    width: 100%;
    font-size: 40px;
  }
}

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
}

.banner-overlay h1 {
  font-size: 70px;
  font-family: "Gilroy Bold";
  color: #fff;
  text-transform: uppercase;
  background: linear-gradient(90deg, rgb(157, 157, 157) 0%, rgb(255, 255, 255) 50%, rgb(157, 157, 157) 100%);
  -webkit-background-clip: text; /* Clips the gradient to the text */
  -webkit-text-fill-color: transparent;
}

#pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  font-family: "Gilroy Medium";
  font-size: 18px;
}
#pagination button {
  color: white;
  border: 1px white solid;
  border-radius: 50px;
  padding: 10px 30px;
  font-size: 18px;
  transition: all 0.3s ease;
  cursor: pointer;
}
#pagination button:hover {
  color: black;
  background-color: #f8e07c;
  border: 1px solid #f8e07c;
}
#pagination span {
  color: white;
}

/* Blog Section */
.blog-section {
  padding: 20px 0px;
  padding-top: 40px;
  background-color: black;
}
.blog-section .hidden {
  display: none;
}
.blog-section #blog-banner {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
}
.blog-section .blog-detail {
  color: #fff;
  margin-top: -55px;
  border-radius: 8px;
}
.blog-section .blog-detail-content h2 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #f8e07c;
  font-family: "Gilroy Medium";
}
.blog-section .blog-detail-content span {
  display: block;
  font-size: 14px;
  margin-bottom: 15px;
  color: #bbb;
  font-family: "Gilroy Medium";
}
.blog-section .blog-detail-content p {
  line-height: 1.6;
  font-family: "Gilroy Medium";
}
.blog-section #close-detail {
  background: #f8e07c;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  border-radius: 5px;
  color: #111;
  font-weight: bold;
  margin-bottom: 20px;
}

.filter {
  text-align: right;
  margin-bottom: 20px;
}
.filter select {
  appearance: none; /* Remove default arrow */
  background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 24 24"%3E%3Cpath fill="%23000000" d="M7 10l5 5 5-5z"%3E%3C/path%3E%3C/svg%3E'); /* Add arrow */
  background-repeat: no-repeat;
  background-position: right 10px center;
  padding-right: 30px; /* Add space for the arrow */
  font-family: Arial, sans-serif;
}

#filter-dropdown {
  padding: 10px;
  background-color: #f8e07c;
  color: #000;
  border: none;
  border-radius: 50px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
@media (max-width: 767px) {
  .blog-grid {
    display: flex;
    flex-direction: column;
  }
}

.blog-container {
  text-align: center;
  font-size: 30px;
  font-family: "Gilroy Medium";
  color: white;
  margin-top: 0px;
}
.loading-container {
  margin: 80px 0;
}

.blog-card {
  overflow: hidden;
  border: 1px solid black;
  transition: border 0.3s ease-in-out;
  cursor: pointer;
  position: relative;
}
.blog-card .absolute-name {
  position: absolute;
  background-image: url("../images/golden.png");
  bottom: -100%; /* प्रारंभ में दृश्य से बाहर */
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.6);
  color: #fff;
  text-align: center;
  padding: 10px;
  transition: bottom 0.25s ease;
}
.blog-card:hover .absolute-name {
  bottom: 0;
}
@media (max-width: 767px) {
  .blog-card:hover {
    border: none;
  }
}

.blog-img-wrap {
  width: 100%;
  height: 350px;
}
@media (max-width: 767px) {
  .blog-img-wrap {
    height: 420px;
  }
}

.blog-card img {
  width: 100%;
  object-fit: cover;
}

.blog-card .post-date-wrap {
  display: flex;
  gap: 20px;
}
.blog-card .post-date {
  font-family: "Gilroy Medium";
  font-size: 16px;
  color: #808080;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .blog-card .post-date {
    font-size: 14px;
  }
}

.blog-link {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.blog-card h3 {
  font-size: 20px;
  font-family: "Gilroy Bold";
  color: #f8e07c;
  margin: 15px 0;
  text-align: left;
}
@media (max-width: 767px) {
  .blog-card h3 {
    font-size: 18px;
  }
}

.blog-card p {
  font-size: 20px;
  font-family: "Gilroy Medium";
  color: #808080;
  text-align: left;
}
@media (max-width: 767px) {
  .blog-card p {
    font-size: 16px;
  }
}

.blog-card span {
  display: block;
  margin: 10px 0;
  font-size: 12px;
  color: #aaa;
  color: #808080;
  font-family: "Gilroy Medium";
}

.single-blog-post-container {
  background-color: black;
}
.single-blog-post-container #blogs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 30px;
}
.single-blog-post-container .blog-card {
  cursor: pointer;
}
.single-blog-post-container .blog-card img {
  max-width: 100%;
  border-radius: 4px;
}
.single-blog-post-container .blog-card h3 {
  margin: 8px 0;
  font-size: 1.2rem;
}
.single-blog-post-container .single-blog-post {
  padding: 20px;
  /* border: 1px solid #ccc; */
  border-radius: 4px;
  /* background-color: #f9f9f9; */
}
.single-blog-post-container .single-blog-post .breadcrumb {
  margin-top: 15px;
  margin-bottom: 0;
  display: flex;
  gap: 5px;
  color: white;
  font-family: "Gilroy Medium";
  font-size: 18px;
}
.single-blog-post-container .single-blog-post .breadcrumb span {
  color: rgb(128, 128, 128);
}
@media (max-width: 767px) {
  .single-blog-post-container .single-blog-post .breadcrumb {
    font-size: 14px;
  }
}
.single-blog-post-container .single-blog-post h1 {
  margin-top: 0;
  color: #f8e07c;
  font-family: "Gilroy Bold";
  font-size: 30px;
  margin: 20px 0;
}
@media (max-width: 767px) {
  .single-blog-post-container .single-blog-post h1 {
    font-size: 22px;
  }
}
.single-blog-post-container .single-blog-post .back-btn {
  margin-top: 20px;
  padding: 10px 0px;
  color: white;
  border: none;
  cursor: pointer;
  font-family: "Gilroy Medium";
  font-size: 20px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}
.single-blog-post-container .single-blog-post .back-btn:hover .blog-left-arrow {
  background-color: #f8e07c;
  color: black;
  border: 1px solid #f8e07c;
}
.single-blog-post-container .blog-left-arrow {
  border: white 1px solid;
  border-radius: 50px;
  margin-right: 10px;
  padding: 14px 14px;
  padding-bottom: 10px;
  transition: all 0.3s ease;
}
.single-blog-post-container .single-blog-post img {
  max-width: 100%;
  border-radius: 4px;
  margin-top: 20px;
}
.single-blog-post-container .navigation-btns {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
}
.single-blog-post-container .post-content {
  color: #808080;
  font-family: "Gilroy Medium";
}
.single-blog-post-container .post-content p {
  font-size: 20px;
  margin: 15px 0;
  font-size: 20px;
}
.single-blog-post-container .post-content p span {
  font-weight: unset !important;
}
@media (max-width: 767px) {
  .single-blog-post-container .post-content p {
    font-size: 16px;
  }
}
.single-blog-post-container .post-content h2 {
  font-family: "Gilroy Bold";
  font-size: 22px;
  color: #929090;
}
@media (max-width: 767px) {
  .single-blog-post-container .post-content h2 {
    font-size: 18px;
  }
}
.single-blog-post-container .post-content li {
  line-height: 1.4;
  list-style-type: none !important;
  margin-bottom: 10px;
}
.single-blog-post-container .post-content a {
  border-bottom: 1px #f8e07c solid;
  transition: 0.3s all ease-in-out;
  color: #f8e07c;
}
.single-blog-post-container .post-content a:hover {
  color: white;
  border-bottom: 1px white solid;
}