*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Raleway", sans-serif;
}

body{
    background-color: black;
    color: white;
}
/* Animation */

@keyframes appearFromCenter {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* .visible {
  animation: appearFromCenter 4s ease-out forwards;
} */

.animate-on-scroll {
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 2s ease-out, transform 2s ease-out;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-on-scroll2 {
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 5s ease-out, transform 2s ease-out;
}

.animate-on-scroll2.visible {
  opacity: 1;
  transform: translateX(0);
}

.animate-on-scroll3 {
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 5s ease-out, transform 2s ease-out;
}

.animate-on-scroll3.visible {
  opacity: 1;
  transform: translateX(0);
}

.animate-on-scroll4 {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 5s ease-out, transform 2s ease-out;
}

.animate-on-scroll4.visible {
  opacity: 1;
  transform: translateY(0);
}



.section {
    display: none;
}
.active {
    display: block;
}

.divider {
  width: 100% !important;
  height: 15px;
  background-image: url('../front-images/download.svg');
  /* background-repeat: no-repeat; */
  background-size: contain;

  background-position: center center;
  opacity: 0.5;

}


header{
    padding: 10px 25px;
    width: 100%;
    height: 150px;
    display: flex;
    justify-content:space-between;
    align-items:center ;
    color: white;

    box-shadow: inset;
    z-index: 9999;
    background-color: black;
}

header > span {
  cursor: pointer;
  margin-left:30px ;
  font-size: 15px;

}

header > span:hover{
  opacity: 0.7;
}


.header-logo > img {
    width: 100px;
    height: 150px;
    object-fit: contain;
}

/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 9999;
    right: 0;
    top: 0;
    width: 370px;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);

    padding-top: 60px;
  }

  .header-option{
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hamburger-icon-container{
    width: 30px;
    height: 60px;


    text-align: center;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;


  }

  .hamburger-icon{
    width: 100%;
    height: 3px;

    background-color: #AD8A44;
    margin: 3px 0px;
  }



/* Modal container */
/* .login-modal {
  background-color: #45a049;
  width: 500px;
  height: 500px;
  display: none;
  position: fixed;
  z-index: 99999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
}

/* Modal content */
/* .login-modal-content {
  background-color: #fefefe;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  max-width: 400px;
  border-radius: 8px;
  z-index: 99999;
}

/* Close button */
/* .login-close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.login-close:hover,
.login-close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
} */

/* Input styling */
/* .login-input {
  width: 100%;
  padding: 12px;
  margin: 8px 0;
  display: inline-block;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

/* Submit button */
/* .login-submit-button {
  width: 100%;
  background-color: #4CAF50;
  color: white;
  padding: 14px 20px;
  margin: 8px 0;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.login-submit-button:hover {
  background-color: #45a049;
} */ */ */ */



















  /* Modal Content */
  .modal-content {
    background-color: black;
    color: white;
    margin: -6% 15%;
    padding: 20px;

    width: 100%;
    max-width: 300px;
    border-radius: 5px;
  }

  .modal-options-container{
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    gap: 15px;
    font-size: 35px;
    font-family: "Gloock", serif;
    padding-right: 30px;
  }

  .modal-options-container > a{

    color: white;
    text-decoration: none;
    font-family: "Gloock", serif;

  }

  .modal-option{
    cursor: pointer;
    font-family: "Gloock", serif;

  }

  .modal-option.active {
    color:#AD8A44;
}


  .close-box{
    display: flex;
    justify-content: end;
    align-items: center;
  }
  .close {
    color: #AD8A44;
    float: right;
    font-size: 78px;
    font-weight: 200;

    margin: 20px 10px;
  }

  .close:hover,
  .close:focus {
    color: #AD8A44;
    text-decoration: none;
    cursor: pointer;
  }

main{
    z-index: 1;
}

.video{
    width: 100%;
    height: 700px;
    object-fit: cover;
}
.video-container{
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}
.video-text{
   font-family: "Gloock", serif;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    display: flex;
    flex-direction: column;
    color:white;
    text-align: center;
    gap: 10px;
    justify-content: center;
    align-items: center;
}


.video-text > button{
    width: fit-content;
    padding: 1.5rem 5rem;
    background-color: black;
    color:white;
    border:2px solid #AD8A44;
    font-weight: 500;
    cursor: pointer;
    font-size: 1.3vw;
    border-radius: 0px ;

}

.video-heading{
  font-family: "Gloock", serif;
    color: #AD8A44;
    font-size: 6.5vw;
    margin: none;

    font-weight: 400;
}

.video-subheading{

    font-size: 3.5vw;

    font-weight: 400;
}

.video-content{
    color: #AD8A44;
    font-size: 3.5vw;

    font-weight: 400;
}

.video-image{
    width: 30%;
    height: 35%;
    display: flex;
    justify-content: center;
    align-items: center;
    object-fit: contain;
}

.video-text >div > img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.main-content{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items:center ;
    gap: 15px;
}

.main-content > div:nth-child(2) {
  line-height: 2rem;
}

.main-content > div:nth-child(2) > p{
    color: white;
    font-size:1.2rem;
    text-align: center;

}
.span{
    color: #AD8A44;
}

.main-content >div >button{
    width: fit-content;
    padding: 1.1rem 1.2rem;
    background-color: black;
    color:white;
    border:1px solid #AD8A44;
    cursor: pointer;
    font-weight: bold;
    border-radius: 0px;
}

button{
    color: white !important;
    background-color: black !important;
    border: 1px solid #AD8A44;
}
button:hover{
   background-color: #AD8A44 !important;
   color: white !important;
   cursor: pointer;
}

.content1-img{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.content1-img > img{
    width: 70%;
}

.content2-img{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.content2-img > img{
    width: 70%;
}

.carousel {
    width: 100%;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    position: relative;
    text-align: center;
    margin: 10px 10px;

}

.carousel >span{
  font-family: "Gloock", serif;
    color: white;
    font-size: 3vw;
    margin: 25px;
}

.carousel-inner {
  display: flex;
  white-space: nowrap;
  animation: scroll 30s linear infinite;
    width: 100%;
    height: 200px;

}

.carousel-inner > img {
    width: 15%;
    flex-shrink: 0;
}

@keyframes scroll {
  0% {
      transform: translateX(0);
  }
  100% {
      transform: translateX(calc(-100% + 100vw)); /* Adjust to stop at the end */
  }
}

/* Stop animation on hover */
.carousel-inner:hover {
  animation-play-state: paused;
}


.advantage-container{
    text-align: center;
    padding: 20px;
    color: white;
}

.advantage-container > span{
  font-size: 3.4vw;
  text-align: center;
}

.advantage-inner-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 items per row */
    gap: 20px;
}

.advantage-item-container {
    padding: 10px;
    font-size: larger;
    font-family: "Gloock", serif;


   color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center; /* Align content (image and text) horizontally */
    justify-content: center; /* Center content vertically */
    text-align: center;
}

.advantage-item-container img {
    max-width: 100%;
    height: 60%;
    display: block;
    margin: 0 auto 10px;
}
.span-container{
    display: flex;
    flex-direction: column;
}

.keys-weeks{
    text-align: center;
}

.keys-img {
    width: 100%;

}

.keys-img img {
    width: 55%;
}

.keys-container{
    margin-top: 20px;
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.keys-item-container{

    box-sizing: border-box;
   width: 25%;
   display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: center;
   height: 500px;
   border: 2px solid  #AD8A44;
   font-size: x-large;
   color: white;
   padding: 25px 10px;
}

.keys-item-container > p:nth-of-type(1){

  font-family: "Gloock", serif;
  font-size: 2vw;
}

.keys-item-container > p:nth-of-type(2){


  font-size: 1.7vw;
  font-weight: 600;
}


.keys-item-img{
    width: 100%;
}
.keys-item-img img{
    width: 70%;
}

.keys-weeks > button{
    margin-top: 25px;
   border: 2px solid #AD8A44;
   background-color: black;
   color: white;
   font-size: 2vw;
   padding: 1.1rem 1.5rem;
}

.join-club{
    text-align: center;
    color: white;
    margin: 20px 0px;
}
.join-club > span{
    font-size: 4vw;
}

.join-club-container{

    display: flex;
    justify-content: space-around;
    align-items: center;
}

.join-club-item{
    margin-top: 20px;
    width: 48%;
    border: 1px solid #AD8A44;
    padding: 1.2rem;
}
.join-club-item > span{
    font-size: 4vw;
    margin: 5px 0px;
}
.join-club-item > p{
    font-size: 2vw;
}

.join-club-item-img{
    width: 100%;
}

.join-club-item-img img{
    width: 80%;
}

.join-club-item > button{
    padding: 10px 20px;
    margin-top: 20px;
    background-color: black;
    color: white;
    font-size: 3vw;
}

.key-station{
    color: white;
    text-align: center;
    gap: 15px;
    font-size: 2vw;
}

.key-station > span:nth-child(1) {
    font-size: 4vw;
    margin: 50px 0px;
}

.key-station > p{
    margin: 15px;
}

.key-station-item-container{
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.key-station-item{
    width: 25%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.key-station-item-img{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 150px;
    height: 150px;
}

.key-station-item-img > img{
    width: 60%;
    margin: 15px;
}

.key-station-options{
    margin: 20px 0px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
}




.key-station-options > button{
    padding: 0.9rem 2.5rem;
    font-size: 0.9vw;
    font-weight: 600;
}

.coming-soon{
    text-align: center;

    color: white;
}

.coming-soon p:nth-child(1){
    font-size: 4vw;
}
.coming-soon p:nth-child(2){
    font-size: 3vw;
    margin: 10px 0px;
}

.coming-soon-para{
    font-size: 1vw;
    margin: 10px 0px;
}

.coming-soon-image-container{
    margin: 10px 20px;
    width: 95%;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.coming-soon-image{
    width: 30%;

    display: flex;
    justify-content: center;
    align-items: center;
}

.coming-soon-image > img{
    width: 100%;

    object-fit: cover;
}

footer{

    color: white;
    margin: 20px 0px;
    height: 20vh;
}

.footer-container{
  padding: 10px;
    width: 100%;
    height: 100%;

    margin: 20px 0px;
    font-size: 2vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-image-container{
  height: 100%;
  width: 20%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

}
.footer-image-img{
    width: 100%;
    height: 100%;
}

.footer-image-img > img{
    width:100% ;
    height: 100%;
    object-fit: contain;
}

.footer-options{
  padding: 10px;
  display: flex;
}

  /* Key Station Page */

  .key-station-page{
    padding: 40px;
  }

  .key-station-heading{
    color: #AD8A44;
    font-size: 4vw;
    margin-bottom: 80px;

  }

  .small-screen-filter-type{
    display: none;
  }

  .key-station-search-container{
    display: flex;
    flex-direction: column;
    width: 40%;
    gap: 10px;
  }

  .key-station-search-container > span{
    color: #AD8A44;
    font-size: 2vw;
  }

  .key-station-search-container > input {
    width: 100%;
    height: 45px;
    border: 1px solid #AD8A44;
    background: transparent;
    padding-left: 10px;
    color: white;
  }

  .special-services-container{
    margin: 20px 0px;
  }

  .special-services-container > span{
      font-size: 2vw;
      color: #AD8A44;
  }

  .special-service-option-container{
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 15px;
  }

  .special-service-option-container > span {
    margin: 20px 0px;
    border: 1px solid #AD8A44;
    padding: 10px 10px;
    border-radius: 20px;
    font-size: 1vw;
  }

  .special-service-option {
    cursor: pointer;
    padding: 5px;
    transition: background-color 0.3s;
}
  .special-service-option.selected {
    background-color: #AD8A44;
    color: black;
}

.cities-option {
  cursor: pointer;
  padding: 5px;
  transition: background-color 0.3s;
}
.cities-option.selected {
  background-color: #AD8A44;
  color: black;
}

  .special-service-option-container > span:hover {
    margin: 20px 0px;
    border: 1px solid #AD8A44;
    padding: 10px 10px;
    border-radius: 20px;
    font-size: 1vw;
    cursor: pointer;
    background-color: #AD8A44;
  }

  .cities-container{
    margin: 20px 0px;
    width: 65%;
  }

  .cities-container > span {
    color: #AD8A44;
    font-size: 2vw;
    margin-bottom:  10px;
  }


  .cities-option-container{
    display: flex;
    justify-content: start;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
  }

  .cities-option-container > span{
    margin: 0px ;
    border: 1px solid #AD8A44;
    padding: 10px 10px;
    border-radius: 20px;
  }

  .cities-option-container > span:hover{
    margin: 0px ;
    border: 1px solid #AD8A44;
    padding: 10px 10px;
    border-radius: 20px;
    background-color: #AD8A44;
    cursor: pointer;
  }

  .filter-type{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    margin-right: 50px;
  }

  .filter-type >span{
    font-size: 10px;
    text-align: left;
  }

  .filter-type >select {
    font-size: 18px;
    height: 40px;
    background-color: black;
    color: gray;
    padding: 5px 15px;

  }

  .filter-type >select > option {
    font-size: 12px;

    height: 55px;
    background: transparent;
    color: #AD8A44;
    padding: 15px 15px;
    line-height: 4.5rem;
  }

  .filter-type >select > option:hover{
    background-color: white;
  }
  .companies-options-container{
    border: 1px solid #AD8A44;
    height: 300px;
    margin: 20px 0px ;
  }

  .company-option{
    padding-right:20px;
    padding-top: 5px;
    width: 100%;
    display: flex;
    justify-content:space-between ;


  }

  .company-image-box{
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: flex-start;
    width: 25%;
    height: 100%;
  }

  .company-image-box > img:nth-child(1){

    width: 70%;
    height: 50px;
    object-fit: contain;
    display: flex;
    justify-content: left;
    align-items: flex-start;
    text-align: left;
  }

  .company-image-box > img:nth-child(2){

    width: 40%;
    height: 40px;
    object-fit: contain;
  }

  .company-image-box > img:nth-child(3){

    width: 100%;
    height: 170px;
    object-fit: contain;
  }

  .company-description-box{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 35px;
  }

  .company-description-box > span:nth-child(1) {
    font-size: 2.5vw;
  }

  .company-description-box > span:nth-child(2) {
    font-size: 1.5vw;
  }

  .company-description-box > span:nth-child(3) {
    font-size: 1.5vw;
  }

  .company-button-box{
    display: flex;
    justify-content: center;
    align-items: flex-end;
  }

  .company-button-box > button {
    font-size: 2.5vw;
    padding:1.1rem 2rem;
  }


  /* Purchase Key Page */


  .purchase-key-heading{
    margin: 20px 80px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
  }

  .purchase-key-heading > h1{
    font-size: 56px;
    color: #AD8A44;
    font-weight: 400;
  }

  .purchase-key-heading > p{
    font-size: 20px;

  }

  .purchase-key-image{
    width: 100%;
  }
.purchase-key-image > img{
    width: 100%;
}

.purchase-key-offers{
    display: flex;
    text-align: center;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-size: 20px;
    margin: 20px 0px;
}

.purchase-options{
    display: flex;
    box-sizing: border-box;
    width: 100%;

    justify-content: center;
    align-items: center;


}

.purchase-options-description{
    width: 45%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    float: left;
    gap: 10px;
    margin-left: 30px;
    text-align: left;

}
.purchase-options-description >span {
    font-size: 56px;
}

.purchase-options-description > a{
    font-size: 23px;
    cursor: pointer;
    text-decoration: underline;
    color: white;
}

.purchase-options-images{
  padding: 15px;
    width: 55%;
    display: flex;
    justify-content: center;
    align-items: center;

    gap: 10px;
    margin: 15px 0px;
}
.purchase-options-images  a{
  text-decoration: none;
}

.purchase-options-option{


  display: flex;
  width: 30%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid #ccc;
  height: 500px;
  padding: 0px 20px;
  border-radius: 10px;
  gap: 10px;
}
.purchase-options-option-image{
  width: 100%;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.purchase-options-option-image > img{
  width: 70%;
  height: 100%;
  object-fit: contain;
}

.purchase-options-option-texts{
  width: 100%;
  margin-top: 10px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.purchase-options-option-texts  h1{
  color: #AD8A44;
  font-family: 'Gloock', serif;
  font-size: 1.5vw;
  font-weight: 500;

}

.purchase-options-option-texts  div {
  display: flex;
  color: white;
  font-size: 1.1vw;
  font-family: 'Gloock', serif;
  justify-content: center;
  gap: 5px;
}

.purchase-options-option-texts > div > span:nth-child(1){
  font-family: 'Gloock', serif;
  font-size: 1.5vw;
}

.purchase-options-option-texts > div > span:nth-child(2){
  font-size: 2.5vw;
  font-family: 'Gloock', serif;
}

.purchase-options-option-texts > p{
  color: #AD8A44;
}

/* .purchase-options-option-texts  button {
  width: 80%;
  background-color: white !important;
  color: black !important;
  font-family: 'Gloock', serif;
  padding: 10px 15px;
} */
 .purchase-options-option-button{
  width: 80%;
  background-color: white !important;
  color: black !important;
  font-family: 'Gloock', serif;
  padding: 10px 15px;
 }
/* .purchase-options-images >img{
    width: 32%;
} */


/* buy key-offers page */

.buy-key-page{
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
 }

.buy-key-heading{
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 35px 0px;
}
.buy-key-heading > h1{
  font-size: 3.5vw;
  color: #AD8A44;
  font-weight: 500;
}

.buy-key-offer-container{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.buy-key-offer-box {
  display: flex;
  flex-direction: column;
  border: 1px solid #ccc;

  padding: 20px 0px;
  margin: 30px;
  border-radius: 0px;
  width: 25%;
  background-color: #f9f9f9;
}
.buy-key-offer-container-image{
  width: 100%;
  height: 15vh;
  display: flex;
  justify-content: center;
  align-items: center;

}

.buy-key-offer-container-image > img {
  width: 100%;
  height: 100%;
  border-radius: 5px;
  object-fit: cover !important;
}

.buy-key-offer-texts {
  margin: 15px 0px;
  color: black;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.buy-key-offer-texts > div:nth-child(1){
  font-family: 'Gloock', serif;
  color: #AD8A44;
  font-size: 1.8vw;
  font-weight: 600;
}

.buy-key-offer-texts > div:nth-child(2) {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 5px;
}
.buy-key-offer-texts > div:nth-child(2) >  span:nth-child(1){
  color: #AD8A44;
  margin-top: 10px;
  font-size: 1.3vw;
  font-weight: 600;
}
.buy-key-offer-texts > div:nth-child(2) > span:nth-child(2){
  font-family: 'Gloock', serif;
  font-size: 4vw;
}

.buy-key-offer-texts > p{
  font-size: 0.7vw;
  font-weight: 700;
}

.buy-key-offer-texts > button{
  font-size: 1vw;
  font-weight: 600;
  width: 80%;
  padding: 15px;
  border: 0px;

}

.buy-key-page-descriptions{
  display: flex;
  flex-direction: column;
  margin: 20px 100px;

  justify-content: center;
  gap: 15px;
}

.buy-key-page-descriptions-points{
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 15px;
}

.buy-key-page-descriptions-points > span:nth-child(1){
  width: 50px;
  height: 30px;
}
.buy-key-page-descriptions-points > span:nth-child(1) > img{
  width: 100%;
  height: 100%;
}

.buy-key-page-descriptions-points > span:nth-child(2){
  font-size: 1.7vw;
}
.font-gloock {
  font-family: 'Gloock', serif;

}

/* button {
  padding: 8px 15px;
  font-size: 1em;
  background-color: #007BFF;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

button:hover {
  background-color: #0056b3;
} */


/* Buy Key Payment Page */


.buy-key-payment-page{
  background-color: white;
  color: black;
}

.buy-key-payment-heading{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 20px;
  gap: 6px;
}

.buy-key-payment-heading >h1{
  font-size: 1.1vw;
  font-weight: 700;
}
.buy-key-payment-heading >a{
  font-size: 1.2vw;
  font-weight: 700;
  color:#AD8A44;
  font-family: 'sans-serif';
  text-decoration: none;

}
.buy-key-payment-heading >p{
  font-size: 1.1vw;
  font-weight: 700;

}

.buy-key-payment-checkout{
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.buy-key-payment-header{
  width: 100%;
  display: flex;
  justify-content:center;
  align-items: center;
  text-align: left;
  margin-top: 40px;
  margin-bottom: 25px;
}
.buy-key-payment-header > h1{
   color: gray;
   font-size: 2vw;
   font-weight: 400;
   display: flex;
   justify-content: center;
   align-items: center;
}

.buy-key-payment-steps-container{
  display: flex;
  padding: 50px 0px;
  gap: 20px;
  margin: 20px 0px;
  /* border-top: 1px solid #aaa; */
}

.buy-key-payments-steps{

  max-width: 65%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.buy-key-payments-step-1{
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.buy-key-payments-step-1 > h1 {
  font-size: 1.5vw;
  font-weight: 500;
}

.buy-key-payment-buttons{
  display: flex;
  gap: 15px;
  width: 100%;
}

.buy-key-payment-buttons > button:nth-child(1) {
  font-size: 1.1vw;
  font-weight: 300;
  width: 45%;
  border-radius: 0px !important;
  padding: 10px 20px;
}

.buy-key-payment-buttons > button:nth-child(1):hover  {
  font-size: 1.1vw;
  font-weight: 300;
  width: 45%;
  border-radius: 0px !important;
  padding: 10px 20px;
  background-color: #aaa !important;
}

.buy-key-payment-buttons > button:nth-child(2) {
  font-size: 1.1vw;
  font-weight: 300;
  background-color: white !important;
  width: 45%;
  color: black !important;
  border: 1px solid black;
  border-radius: 0px !important;
  padding: 10px 20px;
}
.purchase-key-box-container{
  min-width: 35%;
  display: flex;
  flex-direction: column;
}
.purchase-key-payment-secure-box{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}
.purchase-key-payment-summary-box{
  width: 100%;
  padding: 20px;
  border: 1px solid black;
  position: relative;
}
.purchase-key-payment-header{
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: 1vw;
  margin-bottom: 15px;
}

.purchase-key-payment-header > h1{
  font-size: 1.5vw;
  font-weight: 500;
  white-space: nowrap;
  margin-bottom: 20px;
}

.purchase-key-payment-header > div{
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;

}

.purchase-key-payment-header > div > span {
  color: #1D1D1D;

}

.purchase-key-payment-coupan{
  padding: 30px 10px;

  display: flex;

  align-items: center;
  text-decoration: underline;
  gap: 10px;
  font-size: 1vw;
  white-space: nowrap;
}

.purchase-key-payment-coupan > span{
  cursor:pointer;
}

.purchase-key-add-coupan{
  display: none;
  /* display: flex;  */
  flex-direction: column;
  gap: 5px;
  padding: 30px 0px;
}

.purchase-key-add-coupan > span {
  font-size: 1vw;
}

.purchase-key-coupan-code-form{
  width: 100%;

}
.purchase-key-coupan-code-form > form {
  width: 100%;
  display: flex !important;
  flex-direction: row !important;
  gap: 10px;
}
.purchase-key-coupan-code-form input{
  width: 65%;
  box-sizing: border-box;

  padding: 8px;
  outline: none;
  border: 2px solid #AD8A44;
}




.purchase-key-coupan-code-form  > input::placeholder{
  font-size: 14px;
}

.purchase-key-coupan-code-form  > button {
  width: 33%;
  background-color: black !important;
  color: white !important;
  font-size: 15px;
  font-weight: 400;
  border-radius: 0px;
  padding: 8px;

}



/* .purchase-key-buy-now-button{
  display: none;
} */
.purchase-key-payment-total-amount{
  display: flex;
  justify-content: space-between;
  font-size: 0.9vw;
  margin-bottom: 10px;
}

.purchase-key-payment-total-discount{
  display: flex;
  justify-content: space-between;
  font-size: 0.9vw;
  color: #AD8A44;
  font-weight: 600;
  margin-bottom: 2px;
}

.purchase-key-payment-discount-details{
  display: flex;
  justify-content: space-between;
  font-size: 0.9vw;
  margin-bottom: 10px;


}

.purchase-key-payment-discount-details > span:nth-child(2){

  font-size: 1vw;
  color: #AD8A44;
  font-weight: 600;
}
.purchase-key-payment-total{
  display: flex;
  justify-content: space-between;
  font-size: 1.2vw;
  font-weight: 700;
}



/* Key Map Container */

.key-map-container{
    display: flex;
    width: 100%;
    height: 100vh;
}

.key-map-left-section{
    width: 50%;
    height: 100%;
    position: relative;

    z-index: 1;

}

.key-map-left-image{
    width: 100%;
    height: 100%;
}
.key-map-left-image > img{
    object-fit: contain;
    height: 100%;
    width: 100%;
    filter: brightness(30%);
}

.left-section-content{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    display: flex;
    flex-direction: column;
    color:white;
    text-align: center;
    gap: 20px;
    justify-content: center;
    align-items: center;
    z-index: 9;
}

.left-section-content > span {
    font-size: 3.5vw;
}

.left-section-content > button{
    font-size: 1.3vw;
    border: 1px solid #AD8A44;
    padding: 10px 20px;
    font-weight: 600;
    text-align: center;
}

.key-map-right-section{
    width: 50%;
    height: 100%;
    position: relative;

}

.key-map-right-image{
    width: 100%;
    height: 100%;
}
.key-map-right-image > img{
    object-fit: contain;
    height: 100%;
    width: 100%;
    filter: brightness(50%);
}

.right-section-content{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    display: flex;
    flex-direction: column;
    color:white;
    text-align: center;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

/* Events Page */

.events-page{
  padding: 0px 40px;
}
.events-page >h1{
  font-size: 3vw;
  color: #AD8A44;
}

.events-container{
  display: flex;
  flex-direction: column;
  gap: 20px;


  margin: 40px 0px;
}

.event-box{
  width: 100%;
  display: flex;
  gap: 30px;
  border: 1px solid #AD8A44;
  padding: 15px;

}

.event-image{
  width: 40%;
}

.event-image > img{
  width: 100%;
}

.event-details{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 15px;
}

.event-details > h1 {
  font-size: 3vw;
}

.event-details > p{
  font-size: 1.5vw;
}

.event-details > button{
  font-size: 1.1vw;
  padding: 10px 20px;
}

/* Event Gallery page */

.event-gallery-header{

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;

}

.event-gallery-header > h1{
  font-size: 3.7vw;
  color: #AD8A44;
  font-weight: 500;
}

.event-gallery-header > p{
  font-size: 1.5vw;
  margin: 30px 180px;
}

.event-gallery-container{
  width: 100%;


  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;

  flex-wrap: wrap;

}

.event-gallery-box{
  width: 45%;
  height: 65vh;

  text-align: center;
  margin-bottom: 80px;


}

.event-gallery-video{
  width: 100%;
  height: calc(65vh - 20px);
  margin-bottom: 15px;

  border: 1px solid #AD8A44;
}

.event-gallery-video > video{
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;

}

.event-gallery-box > span{
  text-align: center;
  font-size: 1.8vw;

  margin: 15px 0px;
  font-family: "Gloock", serif;
}

/* Style for the modal */
.video-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
}

.video-modal video {
  max-width: 90%;
  max-height: 100%;
}

.video-modal-close {
  position: absolute;
  top: 140px;
  right: 25px;
  font-weight: 300;
  font-size: 80px;

  cursor: pointer;
  z-index: 99;
}

/* About Page */

.header-images-container{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.header-images-container > img {
  width: 30%;
  object-fit: contain;
}

.about-welcome-section{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 5px;
}

.about-welcome-section > span{
  font-size: 2vw;
  font-weight: 400;
}

.about-welcome-section > h1{
  font-size: 6vw;
  font-weight: 400;
  color: #AD8A44;
}

.about-welcome-section > p{
  margin: 0px 25px;
  font-size: 1.2vw;
}

.about-welocme-images{
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 0px 20px;
  padding: 15px;
  height: 27vh;
}

.about-welocme-images >  img {
  width: 12% ;
  height: 100%;

}

.about-club-membership{
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 40px 40px;
}

.about-club-membership > h1{
  font-size: 2.8vw;
  font-weight: 400;

}

.about-club-membership > p{
  font-size: 1.2vw;
}

.about-club-membership-images{
  width: 100%;
  display: flex;
  gap: 25px;
  justify-content: center;
  align-items: center;
}

.about-club-membership-images > .about-club-membership-image{
  max-width: 25%;
  text-align: center;
}

.about-club-membership-images > .about-club-membership-image > img{
  max-width: 100%;
}

.about-club-membership-image-container{
  display: flex;
  gap: 30px;
}

.about-club-membership-image-container > img:nth-child(1) {
  width: 65%;
  object-fit: contain;
}

.about-club-membership-image-container > img:nth-child(2) {
  width: 30%;
  object-fit: contain;
}
.about-club-membership-images > .about-club-membership-image > p{
  font-size: 1.1vw;
}

.become-vkc-member{
  margin: 20px 40px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.become-vkc-member > h1 {
  font-size: 3vw;
  font-weight: 400;
  font-family: "Gloock", serif;
}
.become-vkc-member > p {
  font-size: 1.2vw;
}

.step-one-container{
  display: flex;
  width: 100%;
  justify-content: left;
  align-items: center;
  gap: 20px;
}

.step-one-images{
  width: 40%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 25px;
}
.step-one-images > img {
  width: 45%;
}

.step-one-description > h1{
  font-size:2.1vw ;
  font-weight: 400;
  font-family: "Gloock", serif;
}

.step-one-description > p{
  font-size:1.1vw ;
}

.step-two-container{
  display: flex;
  width: 100%;
  justify-content: left;
  align-items: center;
  gap: 20px;
}

.step-two-images{
  width: 40%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 25px;
}
.step-two-images > img {
  width: 100%;
}

.step-two-description {
  width: 60%;
}
.step-two-description > h1{
  font-size:2.1vw ;
  font-weight: 400;
  font-family: "Gloock", serif;
}

.step-two-description > p{
  font-size:1.1vw ;
}

.member-access > h1 {
  font-size: 2.6vw;
  margin-left: 30px;
  font-weight: 400;
}

.member-access-images-container{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}



.member-access-images-container > img {
  width: 30%;
  object-fit: contain;
}

.member-access-offer-container{
  width: 100%;
  display: flex;
  justify-content: space-around;
}
.member-access-offer {

  max-width:20%;
  font-size: 2.3vw;
  margin: 0px 15px;
  font-weight: 500;
  text-align:center ;
  font-family: "Gloock", serif;
}

.our-key-stations{
  text-align: center;
  margin: 20px 0px;
}

.our-key-stations > h1 {
  font-size: 2.6vw;
  margin-bottom: 10px;
  font-weight: 500;
}

.our-key-stations > p {
  font-size: 1.1vw;
  margin: 10px;
}
.video-carousel {
  width: 100%;
  overflow: hidden;
  position: relative;
  height: 60vh;

  display: flex;

}

.video-carousel-track {
  display: flex;
  gap: 15px;
  animation: scroll 15s linear infinite;
}

.video-carousel-item {
  min-width: 60%;
  transition: transform 0.5s;
}

.become-key-station{
  display: flex;
  width: 100%;
  align-items: center;
  margin: 40px 40px;

}

.become-key-station-left-part{
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.become-key-station-left-part h1{
  font-size: 2.6vw;
  font-weight: 400;
}

.become-key-station-left-part p{
  font-size: 1.2vw;
}

.become-key-station-right-part{
  width: 50%;
}

.become-key-station-images{
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  gap: 10px;
}

.become-key-station-images > img {
  width: 45%;
}



.coming-soon-key-station{
  display: flex;
  width: 100%;
  align-items: center;
  gap: 30px;
  margin: 40px 40px;
}

.coming-soon-key-station-left-part{
  width: 30%;
}

.coming-soon-key-station-images{
  display: flex ;
  width: 100%;

  align-items: center;
  gap: 30px;
  height: 70vh;
}

.coming-soon-key-station-images > img {
  width: 50%;
  height: 100%;
  object-fit: contain;
}

.coming-soon-key-station-right-part{
  display: flex;
  flex-direction: column;
  gap:10px ;
}

.coming-soon-key-station-right-part > span {
  font-size: 2vw;
  font-weight: 400;
}

.coming-soon-key-station-right-part > h1{
  font-size: 4vw;
  font-weight: 400;
  color: #AD8A44;
}

.coming-soon-key-station-right-part > p {
  font-size: 0.9vw;
}


/* Contact Page */

 .contact-page{
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
 }

 .contact-page > p{
  font-size: 1.4vw;
  width: 30%;
 }

 form{

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
 }

 .contact-page-header{
  width: 100%;
  position: relative;
  height: 20vh;
  margin-bottom: 60px;
 }
 .contact-page-header-image{
  width: 100%;
  height: 100%;
 }

 .contact-page-header-image > img{
  width: 100%;
  height: 100%;
  opacity: 0.2;
  object-fit: cover !important;
 }

 .contact-page-header > span {
  position: absolute;
  color: #AD8A44;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  font-size: 5.5vw;
  font-weight: 500;
 }

 .form-details{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;

 }

 .form-item{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
 }

 .form-item > label{
   color: #AD8A44;
   font-size: 15px;
   font-weight: 600;

 }

 .form-item > input {
  padding: 10px;
  border: 2px solid #AD8A44;
  width: 18vw;
  font-size: 15px;
 }

 .form-item > textarea {
  width: 38vw;
  padding: 10px;
  font-size: 15px;
  border: 2px solid #AD8A44;
  resize: none;
 }

 form > button {
  background-color: #AD8A44 !important;
  font-weight: 600;
  font-size: 17px;
  width: 16vw;
  padding: 10px;
  margin-bottom: 25px;
 }


 /* Login Modal */

 /* Modal background overlay */
.login-modal, .message-modal {
  display: none; /* Hidden by default */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8); /* Black background with opacity */
  z-index: 1050;
  align-items: center;
  justify-content: center;
}

/* Modal dialog box */
.login-modal-dialog {
  position: relative;
  width: 600px;
  /* margin: auto; */
  background-color: black !important;
  color: #AD8A44;
}

.login-modal-content{
  width: 100%;
}

.login-modal-header{
  color: #AD8A44;
  display: flex ;
  justify-content: center;
  align-items: center;
  margin: 15px 0px;

}

.login-modal-header > h5 {
  color: #AD8A44 !important;
  font-size: 2.5vw;
  font-family: 'Gloock', serif;
  font-weight: 500;
  margin-top: 20px;

}
.login-modal-content {
  width: 100%;
  background-color: black !important;
  border-radius: 5px;
  padding: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  /* position: relative; */
  animation: fadeIn 0.3s;
}

.login-form-group{
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;


}
.login-form-group > label {
  font-size: 15px;
  /* font-family: 'Gloock', serif; */
  font-weight: 400;
}
.login-form-group > input{
  margin: 0px;
  width: 100%;
  padding: 5px;
  color: #AD8A44;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #AD8A44;
  border-radius: 0px;

}

.login-form-group > input::placeholder{
  color: white;
}
.login-form-group > input:focus{
  outline: none;

}

.login-modal-body{
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 25px 0px;
}

/* Modal animation */
@keyframes fadeIn {
  from {
      opacity: 0;
  }
  to {
      opacity: 1;
  }
}

/* Close button */
.login-close {

  position: absolute;
  right: 10px;
  top: -10px;
  font-size:3vw;
  font-weight: 200;
  cursor: pointer;
  background-color: transparent !important;
  color: #AD8A44 !important;

  border: 0px;
  /* display: flex;
  justify-content: flex-end;
  align-items: center; */
}

.login-close:hover {
  /* width: 100%; */

  background-color: transparent !important;
}

/* Input field styles */
.login-form-control {
  width: 100%;
  padding: 10px;
  margin-top: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.invalid-feedback {
  color: red;
  font-size: 0.875rem;
  display: none;
}
.login-modal-forgot-password{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 15px;
  color: white;
  text-decoration: underline;
}
/* Footer buttons */
.login-modal-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 15px;
  gap: 15px;
}

.login-modal-footer > button:nth-child(1) {
  padding: 10px 15px;
  width: 120px;
  font-size: 1.2vw;
}
.login-modal-footer > button:nth-child(2) {
  padding: 10px 15px;
  width: 120px;
  background-color: #AD8A44 !important;
  color: white !important;
  font-size: 1.2vw;
}

/* Sign-up Modal */

/* Sign Up Modal Styles */
.signup-modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;

}

.signup-close{
  width: auto;
  font-size: 3vw;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  text-align: right;
  z-index: 999;
  color: #AD8A44;
  font-weight: 500;
  cursor: pointer;


}

.signup-modal-content {
  background-color: black;
  color: #AD8A44;
  padding: 20px;
  padding-top: 0px;
  border-radius: 10px;
  width: 600px;
  text-align: center;
  border:1px solid #AD8A44;
  border-radius: 0px;

}

.signup-modal-content > h2 {
  font-family: "Gloock", serif;
  font-weight: 400;
  padding: 20px 0px;
}
.signup-form-group {
  width: 100%;
  margin-bottom: 5px;
  text-align: left;
  border-bottom: 1px solid #AD8A44;
  margin-bottom: 15px;
}

.signup-form-group label {
  display: block;
  margin-bottom: 5px;

  font-size: 1vw;
}

.signup-form-group input {
  width: 100%;
  padding: 8px;
  outline: none;
  background-color:transparent;
  border: none;
  color: #AD8A44;


}
.signup-form-group input:focus{
  color: #AD8A44;
  outline: none;
  border-radius: 0px;
}

.signup-form-group input:hover{
  color: #AD8A44;

  border-radius: 0px;
}
.signup-form-group input::placeholder{
  color: white;
  opacity: 1;
  font-size: 1.2vw;
}
.signup-modal-login{
  color: white;
  font-size: 15px;
  text-decoration: underline;
  cursor: pointer;
}

.signup-submit{
  background-color: black !important;
  color: white;
  border-radius: 0px;
  border: 1px solid #AD8A44;
}




 .divider {
  width: 100% !important;
  height: 20px;
  background-image: url('../front-images/download.svg');
  /* background-repeat: no-repeat; */
  background-size: contain;

  background-position: center center;
  padding: 5px 0px;
}


@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

.video-carousel-item video {
  width: 100%;
  height: auto;
  pointer-events: none; /* Prevent click interactions with the video */
}

.video-carousel-item:hover video {
  pointer-events: auto; /* Enable hover interactions */
}


@media screen and (max-width:1200px){


  header{
    padding: 10px 25px;
    width: 100%;
    height: 125px;
    display: flex;
    justify-content:space-between;
    align-items:center ;
    color: white;

    box-shadow: inset;
    z-index: 9999;
    background-color: black;
}

header > span {
  cursor: pointer;
  margin-left:30px ;
  font-size: 10px;

}

header > span:hover{
  opacity: 0.7;
}


.header-logo > img {
    width: 70px;
    height: 100px;
    object-fit: contain;
}


  .video{
    width: 100%;
    height: 500px;
    object-fit: cover;
}
.video-container{
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}
.video-text{
   font-family: "Gloock", serif;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    display: flex;
    flex-direction: column;
    color:white;
    text-align: center;
    gap: 10px;
    justify-content: center;
    align-items: center;
}


.video-text > button{
    width: fit-content;
    padding: 1rem 3rem;
    background-color: black;
    color:white;
    border:2px solid #AD8A44;
    font-weight: 500;
    cursor: pointer;
    font-size: 1.5vw;
    border-radius: 0px !important;

}

.video-heading{
  font-family: "Gloock", serif;
    color: #AD8A44;
    font-size: 6.5vw;
    margin: none;

    font-weight: 400;
}

.video-subheading{

    font-size: 4vw;

    font-weight: 400;
}

.video-content{
    color: #AD8A44;
    font-size: 4vw;

    font-weight: 400;
}

.video-image{
    width: 25%;
    height: 30%;
    display: flex;
    justify-content: center;
    align-items: center;
    object-fit: contain;
}

.video-text >div > img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.main-content > div:nth-child(2) {
  line-height: 2rem;
}
.main-content > div:nth-child(2) > p{
  color: white;
  font-size:1rem;
  text-align: center;

}

.main-content >div >button{
  width: fit-content;
  padding: 1.1rem 1.2rem;
  background-color: black;
  color:white;
  border:1px solid #AD8A44;
  cursor: pointer;

}

  .carousel > span{
    font-size: 49px;
  }

  .carousel {
    white-space: nowrap;
    width: 100%;
    max-width: 100%; /* Adjust the size of the carousel */
    overflow: hidden;
    position: relative;
    text-align: center;
    text-align: center;


}



.carousel-inner {
  display: flex;
  white-space: nowrap;
  animation: scroll 30s linear infinite;
    width: 100%; /* Adjust based on the number of images */
    height: 240px;

}

.carousel-inner img {
    width: 25%;
    object-fit: cover !important;
    margin: 0px 10px;

}

.advantage-container{
  text-align: center;

  color: white;
}

.advantage-container > span{
font-size: 3vw;
text-align: center;
}

.advantage-inner-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 items per row */
  gap: 20px;
}

.advantage-item-container {
  padding: 0px 10px;
  font-size: medium;
  font-family: "Gloock", serif;


 color: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center; /* Align content (image and text) horizontally */
  justify-content: center; /* Center content vertically */
  text-align: center;
}

.advantage-item-container img {
  max-width: 100%;
  height: 40%;
  display: block;
  margin: 0 auto 10px;
}

.keys-weeks{
  text-align: center;
}

.keys-img {
  width: 100%;

}

.keys-img img {
  width: 50%;
}

.keys-container{
  margin-top: 20px;
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.keys-item-container{

  box-sizing: border-box;
 width: 30%;
 display: flex;
 flex-direction: column;
 justify-content: center;
 align-items: center;
 height: 412px;
 border: 2px solid  #AD8A44;
 font-size: x-large;
 color: white;
 padding: 25px 10px;
 gap: 15px;
}

.keys-item-container > p:nth-of-type(1){

font-family: "Gloock", serif;
font-size: 3vw;
}

.keys-item-container > p:nth-of-type(2){


font-size: 2vw;
}


.keys-item-img{
  width: 100%;
}
.keys-item-img img{
  width: 70%;
}

.keys-weeks > button{
  margin-top: 25px;
 border: 2px solid #AD8A44;
 background-color: black;
 color: white;
 font-size: 2vw;
 padding: 1.1rem 1.5rem;
}

.join-club{
  text-align: center;
  color: white;
  margin: 20px 0px;
}
.join-club > span{
  font-size: 4vw;
}

.join-club-container{

  display: flex;
  justify-content: space-around;
  align-items: center;
}

.join-club-item{
  margin-top: 20px;
  width: 45%;
  height: 600px;
  border: 1px solid #AD8A44;
  padding: 10px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content:flex-start;
  gap: 15px;
}
.join-club-item > span{
  font-size: 3.7vw;
  margin: 5px 0px;
}
.join-club-item > p{
  font-size: 2.5vw;
}

.join-club-item-img{
  width: 100%;
}

.join-club-item-img img{
  width: 80%;
}


.join-club-item > button{
  text-align: center;
  padding: 10px 10px;
  margin-top: 20px;
  background-color: black;
  color: white;
  font-size: 2.3vw;
  width: 60%;
}


.key-station{
  color: white;
  text-align: center;
  gap: 15px;
  font-size: 2vw;
}

.key-station > span:nth-child(1) {
  font-size: 3.5vw;
  margin: 50px 0px;
}

.key-station > p{
  margin: 18px;

}

.key-station-item-container{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}

.key-station-item{
  width: 25%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.key-station-item-img{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 180px;
  height: 120px;
}

.key-station-item-img > img{
  width: 45%;
  margin: 15px;
}
.key-station-item-third-img > img {
  width: 30%;
}

.key-station-options{
  margin: 20px 0px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 15px;
}




.key-station-options > button{
  padding: 0.9rem 1.5rem;
  font-size: 1.7vw;
}

/* Key Station Page */

.key-station-page{
  padding: 20px 40px;
  width: 100%;
}

.key-station-header {
  display: flex;
  justify-content: space-between;
}

.key-station-heading{
  width: 50%;
  color: #AD8A44;
  font-size: 47px;
  margin-bottom: 30px;

}

.small-screen-filter-type{
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 5px;
  width: 50%;
}

.small-screen-filter-type > span{
  color: #AD8A44;
}

.small-screen-filter-type > select {

  height:40px ;
  width: 50%;
  background-color: black;
  color: gray;
  border: 1px solid #AD8A44;
  padding: 5px 10px;
}

.small-screen-filter-type > select > option {
  color: #AD8A44;
}

.key-station-search-container{
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 10px;
}

.key-station-search-container > span{
  color: #AD8A44;
  font-size: 2vw;
}

.key-station-search-container > input {
  width: 100%;
  height: 45px;
  border: 1px solid #AD8A44;
  background-color: #1D1D1D;

  padding-left: 10px;

}

.special-services-container{
  margin: 20px 0px;
}

.special-services-container > span{
    font-size: 2vw;
    color: #AD8A44;
}

.special-service-option-container{
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 15px;
}

.special-service-option-container > span {
  margin: 20px 0px;
  border: 1px solid #AD8A44;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 1.4vw;
}

.special-service-option-container > span:hover {
  margin: 20px 0px;
  border: 1px solid #AD8A44;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 1vw;
  cursor: pointer;
  background-color: #AD8A44;
}

.cities-container{
  margin: 10px 0px 30px 0px;
  width: 90%;
}

.cities-container > span {
  color: #AD8A44;
  font-size: 2vw;
  margin-bottom:  10px;
}


.cities-option-container{
  display: flex;
  justify-content: start;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  margin: 10px 0px;
}

.cities-option-container > span{
  margin: 0px ;
  border: 1px solid #AD8A44;
  padding: 6px 12px;
  border-radius: 20px;
}

.cities-option-container > span:hover{
  margin: 0px ;
  border: 1px solid #AD8A44;
  padding: 10px 10px;
  border-radius: 20px;
  background-color: #AD8A44;
  cursor: pointer;
}

.filter-type{
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  margin-right: 50px;
}

.filter-type >span{
  font-size: 10px;
  text-align: left;
}

.filter-type >select {
  font-size: 25px;
  height: 45px;
  background-color: black;
  color: gray;
  padding: 5px 15px;

}

.filter-type >select > option {
  font-size: 12px;

  height: 55px;
  background: transparent;
  color: #AD8A44;
  padding: 15px 15px;
  line-height: 4.5rem;
}

.filter-type >select > option:hover{
  background-color: white;
}
.companies-options-container{
  border: 1px solid #AD8A44;
  height: 190px;
  margin: 20px 0px ;
}

.company-option{
  padding-right:10px;
  padding-top: 5px;
  width: 100%;
  display: flex;



}

.company-image-box{
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: flex-start;
  width: 20%;
  height: 100%;
}

.company-image-box > img:nth-child(1){

  width: 80%;
  height: 30px;
  object-fit: contain;
}

.company-image-box > img:nth-child(2){

  width: 45%;
  height: 22px;
  object-fit: contain;
}

.company-image-box > img:nth-child(3){

  width: 100%;
  height: 108px;
  object-fit: contain;
}

.company-description-box{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 15px;
}

.company-description-box > span:nth-child(1) {
  font-size: 24px;
}

.company-description-box > span:nth-child(2) {
  font-size: 20px;
}

.company-description-box > span:nth-child(3) {
  font-size: 16px;
}

.company-button-box{
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.company-button-box > button {
  font-size: 25px;
  padding: 10px 30px;
}

 /* Purchase Key Page */


 .purchase-key-heading{
  margin: 20px 80px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
}

.purchase-key-heading > h1{
  font-size: 56px;
  color: #AD8A44;
  font-weight: 400;
}

.purchase-key-heading > p{
  font-size: 20px;

}

.purchase-key-image{
  width: 100%;
}
.purchase-key-image > img{
  width: 100%;
}

.purchase-key-offers{
  display: flex;
  text-align: center;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  font-size: 20px;
  margin: 20px 0px;
}

.purchase-options{
  display: flex;
  box-sizing: border-box;
  width: 100%;

  justify-content: center;
  align-items: center;


}

.purchase-options-description{
  width: 35%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  float: left;
  gap: 10px;
  margin-left: 30px;
  text-align: left;

}
.purchase-options-description >span {
  font-size: 36px;
}

.purchase-options-description > a{
  font-size: 23px;
  cursor: pointer;
  text-decoration: underline;
  color: white;
}

.purchase-options-images{
padding: 15px;
  width: 65%;
  display: flex;
  justify-content: center;
  align-items: center;

  gap: 10px;
  margin: 15px 0px;
}
.purchase-options-images  a{
text-decoration: none;
}

.purchase-options-option{


display: flex;
width: 30%;
flex-direction: column;
align-items: center;
justify-content: center;
border: 1px solid #ccc;
height: 400px;
padding: 0px 20px;
border-radius: 10px;
gap: 10px;
}
.purchase-options-option-image{
width: 100%;
height: 100px;
display: flex;
justify-content: center;
align-items: center;
}

.purchase-options-option-image > img{
width: 70%;
height: 100%;
object-fit: contain;
}

.purchase-options-option-texts{
width: 100%;
margin-top: 10px;
text-decoration: none;
display: flex;
flex-direction: column;
align-items: center;
gap: 10px;
}

.purchase-options-option-texts  h1{
color: #AD8A44;
font-family: 'Gloock', serif;
font-size: 1.5vw;
font-weight: 500;

}

.purchase-options-option-texts  div {
display: flex;
color: white;
font-size: 1.1vw;
font-family: 'Gloock', serif;
justify-content: center;
gap: 5px;
}

.purchase-options-option-texts > div > span:nth-child(1){
font-family: 'Gloock', serif;
font-size: 1.5vw;
}

.purchase-options-option-texts > div > span:nth-child(2){
font-size: 2.5vw;
font-family: 'Gloock', serif;
}

.purchase-options-option-texts > p{
color: #AD8A44;
font-size: 1.5vw;
}

/* .purchase-options-option-texts  button {
width: 80%;
background-color: white !important;
color: black !important;
font-family: 'Gloock', serif;
padding: 10px 15px;
} */
.purchase-options-option-button{
width: 80%;
background-color: white !important;
color: black !important;
font-family: 'Gloock', serif;
padding: 5px;
}
/* .purchase-options-images >img{
  width: 32%;
} */

 /* buy key-offers page */

 .buy-key-page{
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
 }

.buy-key-heading{
  display: flex;
  justify-content: center;
  align-items: center;
}
.buy-key-heading > h1{
  font-size: 25px;
  color: #AD8A44;
  font-weight: 500;
  margin: 20px 0px;
}

.buy-key-offer-container{
  width: 100%;
  display: flex;
  /* flex-direction: column; */
  justify-content: center;
  align-items: center;
}
.buy-key-offer-box {
  display: flex;
  flex-direction: column;
  border: 1px solid #ccc;

  padding: 20px 0px;
  margin: 10px;
  border-radius: 0px;
  width: 30%;
  background-color: #f9f9f9;
}
.buy-key-offer-container-image{
  width: 100%;
  height: 50px;

}

.buy-key-offer-container-image > img {
  max-width: 100%;
  height: 100%;
  border-radius: 5px;
  object-fit: cover !important;
}

.buy-key-offer-texts {
  margin: 5px 0px;
  color: black;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 5px;
}

.buy-key-offer-texts > div:nth-child(1){
  font-family: 'Gloock', serif;
  color: #AD8A44;
  font-size: 20px;
  font-weight: 600;

}

.buy-key-offer-texts > div:nth-child(2) {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 5px;
}
.buy-key-offer-texts > div:nth-child(2) >  span:nth-child(1){
  color: #AD8A44;

  font-size: 24px;
  font-weight: 600;
}
.buy-key-offer-texts > div:nth-child(2) > span:nth-child(2){
  font-family: 'Gloock', serif;
  font-size: 70px;
}

.buy-key-offer-texts > p{
  font-size: 15px;
  font-weight: 700;
}

.buy-key-offer-texts > button{
  font-size: 16px;
  font-weight: 600;
  width: 80%;
  padding: 15px;
  border: 0px;
}

.buy-key-page-descriptions{
  display: flex;
  flex-direction: column;
  margin: 20px 70px;
  gap: 10px;

  justify-content: center;
}

.buy-key-page-descriptions-points{
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 15px;
}

.buy-key-page-descriptions-points > span:nth-child(1){
  display: none;
  width: 70px;
  height: 50px;
}
.buy-key-page-descriptions-points > span:nth-child(1) > img{
  width: 100%;
  height: 100%;
}

.buy-key-page-descriptions-points > span:nth-child(2){
  font-size: 13px;
  text-align: center;
}

.buy-key-page-descriptions-points > span:nth-child(2) > span{
  font-size: 13px;
  color: #AD8A44;
}



/* Key Map Container */

.key-map-container{
  display: flex;
  width: 100%;
  height: 33vh;
}

.key-map-left-section{
  width: 50%;
  height: 100%;
  position: relative;

  z-index: 1;

}

.key-map-left-image{
  width: 100%;
  height: 100%;
}
.key-map-left-image > img{
  object-fit: cover !important;
  height: 100%;
  width: 100%;
  filter: brightness(30%);
}

.left-section-content{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  display: flex;
  flex-direction: column;
  color:white;
  text-align: center;
  gap: 20px;
  justify-content: center;
  align-items: center;
  z-index: 9;
}

.left-section-content > span {
  font-size: 50px;
}

.left-section-content > button{
  font-size: 1.2vw;
  border: 1px solid #AD8A44;
  padding: 10px 20px;
  font-weight: 600;
  text-align: center;
}

.key-map-right-section{
  width: 50%;
  height: 100%;
  position: relative;

}

.key-map-right-image{
  width: 100%;
  height: 100%;
}
.key-map-right-image > img{
  object-fit: contain;
  height: 100%;
  width: 100%;
  filter: brightness(50%);
}

.right-section-content{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  display: flex;
  flex-direction: column;
  color:white;
  text-align: center;
  gap: 20px;
  justify-content: center;
  align-items: center;
}


/* Buy Key Payment Page */


.buy-key-payment-page{
  background-color: white;
  color: black;
}

.buy-key-payment-heading{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 20px;
  gap: 6px;
}

.buy-key-payment-heading >h1{
  font-size: 1.6vw;
  font-weight: 700;
}
.buy-key-payment-heading >a{
  font-size: 1.6vw;
  font-weight: 700;
  color:#AD8A44;
  font-family: 'sans-serif';
  text-decoration: none;

}
.buy-key-payment-heading >p{
  font-size: 1.6vw;
  font-weight: 700;

}

.buy-key-payment-checkout{
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.buy-key-payment-header{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-top: 40px;
}
.buy-key-payment-header > h1{
  width: 90%;
  text-align: center;
  margin-left: 50px;
   color: gray;
   font-size: 3vw;
   font-weight: 400;
}

.buy-key-payment-steps-container{
  display: flex;
  padding: 50px 15px;
  gap: 20px;
  margin: 20px 0px;
  border-top: 1px solid #aaa;
}

.buy-key-payments-steps{

  max-width: 65%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.buy-key-payments-step-1{
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.buy-key-payments-step-1 > h1 {
  font-size: 2vw;
  font-weight: 500;
}

.buy-key-payments-step-1 > p{
  font-size: 1.6vw;
  margin: 15px 0px;
}

.buy-key-payment-buttons{
  display: flex;
  gap: 15px;
  width: 100%;
}

.buy-key-payment-buttons > button:nth-child(1) {
  font-size: 1.5vw;
  font-weight: 300;
  width: 35%;
  border-radius: 0px !important;
  padding: 15px 20px;
}

.buy-key-payment-buttons > button:nth-child(1):hover  {
  font-size: 1.5vw;
  font-weight: 300;
  width: 35%;
  border-radius: 0px !important;
  padding: 15px 20px;
  background-color: #aaa !important;
}

.buy-key-payment-buttons > button:nth-child(2) {
  font-size: 1.5vw;
  font-weight: 300;
  background-color: white !important;
  width: 35%;
  color: black !important;
  border: 1px solid black;
  border-radius: 0px !important;
  padding: 15px 20px;
}

.purchase-key-box-container{
  min-width: 35%;
  display: flex;
  flex-direction: column;
}
.purchase-key-payment-secure-box{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}
.purchase-key-payment-summary-box{
  width: 100%;
  padding: 20px;
  border: 1px solid black;
}
.purchase-key-payment-header{
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: 1.5vw;
  margin-bottom: 15px;
}

.purchase-key-payment-header > h1{
  font-size: 2.1vw;
  font-weight: 500;
  white-space: nowrap;
  margin-bottom: 20px;
}

.purchase-key-payment-header > div{
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;

}

.purchase-key-payment-header > div > span {
  color: #1D1D1D;
  font-size: 1.5vw;
  font-weight: 600;

}

.purchase-key-payment-coupan{
  padding: 30px 10px;

  display: flex;

  align-items: center;
  text-decoration: underline;
  gap: 10px;
  font-size: 1.3vw;
  white-space: nowrap;
  font-weight: 600;
}

.purchase-key-payment-coupan > span{
  cursor:pointer;
}

.purchase-key-add-coupan{
  display: none;
  /* display: flex;  */
  flex-direction: column;
  gap: 5px;
  padding: 30px 0px;
}

.purchase-key-add-coupan > span {
  font-size: 1.3vw;
  font-weight: 600;
}

.purchase-key-coupan-code-form{
  width: 100%;
}
.purchase-key-coupan-code-form > form {
  width: 100%;
  display: flex !important;
  flex-direction: row !important;
  gap: 10px;
}
.purchase-key-coupan-code-form > input{
  width: 65%;
  box-sizing: border-box;

  padding: 6px;
  outline: none;
  border: 2px solid #AD8A44;

}

.purchase-key-coupan-code-form  > input::placeholder{
  font-size: 13px;
}

.purchase-key-coupan-code-form > button {
  width: 32%;
  background-color: black !important;
  color: white !important;
  font-size: 14px;
  font-weight: 400;
  border-radius: 0px;
  padding: 6px;
}

.purchase-key-payment-total-amount{
  display: flex;
  justify-content: space-between;
  font-size: 1.3vw;
  margin-bottom: 10px;
}

.purchase-key-payment-total-discount{
  display: flex;
  justify-content: space-between;
  font-size: 1.3vw;
  color: #AD8A44;
  font-weight: 600;
  margin-bottom: 2px;
}

.purchase-key-payment-discount-details{
  display: flex;
  justify-content: space-between;
  font-size: 1.3vw;
  margin-bottom: 10px;


}

.purchase-key-payment-discount-details > span:nth-child(2){

  font-size: 1.4vw;
  color: #AD8A44;
  font-weight: 600;
}

.purchase-key-payment-total{
  display: flex;
  justify-content: space-between;
  font-size: 1.6vw;
  font-weight: 700;
}

/* buy key-offers page */

.buy-key-page{
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
 }

.buy-key-heading{
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 15px 0px;
}
.buy-key-heading > h1{
  font-size: 3.5vw;
  color: #AD8A44;
}

.buy-key-offer-container{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.buy-key-offer-box {
  display: flex;
  flex-direction: column;
  border: 1px solid #ccc;

  padding: 10px 0px;
  margin: 10px;
  border-radius: 0px;
  width: 35%;
  background-color: #f9f9f9;
}
.buy-key-offer-container-image{
  width: 100%;
  height: 10vh;
  display: flex;
  justify-content: center;
  align-items: center;

}

.buy-key-offer-container-image > img {
  width: 100%;
  height: 100%;
  border-radius: 5px;
  object-fit: cover !important;
}

.buy-key-offer-texts {
  margin: 15px 0px;
  color: black;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.buy-key-offer-texts > div:nth-child(1){
  font-family: 'Gloock', serif;
  color: #AD8A44;
  font-size: 1.8vw;
  font-weight: 600;

}

.buy-key-offer-texts > div:nth-child(2) {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 5px;
}
.buy-key-offer-texts > div:nth-child(2) >  span:nth-child(1){
  color: #AD8A44;

  font-size: 2vw;
  font-weight: 600;
}
.buy-key-offer-texts > div:nth-child(2) > span:nth-child(2){
  font-family: 'Gloock', serif;
  font-size: 4vw;
}

.buy-key-offer-texts > p{
  font-size: 1.5vw;
  font-weight: 700;
}

.buy-key-offer-texts > button{
  font-size: 1vw;
  font-weight: 600;
  width: 80%;
  padding: 15px;
  border: 0px;

}

.buy-key-page-descriptions{
  display: flex;
  flex-direction: column;
  margin: 20px 100px;

  justify-content: center;
  gap: 15px;
}

.buy-key-page-descriptions-points{
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 15px;
}

.buy-key-page-descriptions-points > span:nth-child(1){
  width: 50px;
  height: 30px;
}
.buy-key-page-descriptions-points > span:nth-child(1) > img{
  width: 100%;
  height: 100%;
}

.buy-key-page-descriptions-points > span:nth-child(2){
  font-size: 1.7vw;
}
.font-gloock {
  font-family: 'Gloock', serif;

}

/* button {
  padding: 8px 15px;
  font-size: 1em;
  background-color: #007BFF;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

button:hover {
  background-color: #0056b3;
} */



/* Events Page */

.events-page{
  padding: 0px 40px;
}
.events-page >h1{
  font-size: 3.4vw;
  color: #AD8A44;
  margin-top: 30px;
  font-weight: 400;
}

.events-container{
  display: flex;
  flex-direction: column;
  gap: 20px;


  margin: 40px 0px;
}

.event-box{
  width: 100%;
  display: flex;
  gap: 30px;
  border: 1px solid #AD8A44;
  padding: 15px;

}

.event-image{
  width: 40%;
}

.event-image > img{
  width: 100%;
}

.event-details{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 15px;
}

.event-details > h1 {
  font-size: 3.3vw;
}

.event-details > p{
  font-size: 2.2vw;
}

.event-details > button{
  font-size: 1.4vw;
  padding: 10px 20px;
}

/* Event Gallery page */

.event-gallery-header{

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;

}

.event-gallery-header > h1{
  font-size: 52px;
  color: #AD8A44;
  font-weight: 500;
}

.event-gallery-header > p{
  font-size: 22px;
  margin: 25px 180px;
}

.event-gallery-container{
  width: 100%;


  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;

  flex-wrap: wrap;

}

.event-gallery-box{
  width: 45%;
  height: 30vh;

  text-align: center;
  margin-bottom: 180px;


}

.event-gallery-video{
  width: 100%;
  height: calc(30vh - 20px);
  margin-bottom: 15px;

  border: 1px solid #AD8A44;
}

.event-gallery-video > video{
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;

}

.event-gallery-box > span{
  text-align: center;
  font-size: 28px;

  margin: 15px 0px;
  color: #AD8A44;
  font-family: "Gloock", serif;
  font-weight: 400;
}

/* Style for the modal */
.video-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
}

.video-modal video {
  max-width: 90%;
  max-height: 100%;
}

.video-modal-close {
  position: absolute;
  top: 140px;
  right: 25px;
  font-weight: 300;
  font-size: 80px;

  cursor: pointer;
  z-index: 99;
}


/* About Page */

.header-images-container{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.header-images-container > img {
  width: 30%;
  object-fit: contain;
}

.about-welcome-section{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 5px;
}

.about-welcome-section > span{
  font-size: 2.5vw;
  font-weight: 400;
}

.about-welcome-section > h1{
  font-size: 7.7vw;
  font-weight: 400;
  color: #AD8A44;
}

.about-welcome-section > p{
  margin: 0px 25px;
  font-size: 1.6vw;
}

.about-welocme-images{
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 0px 20px;

  height: 15vh;
}

.about-welocme-images >  img {
  width: 14% ;
  height: 100%;

}

.about-club-membership{
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 40px 40px;
}

.about-club-membership > h1{
  font-size: 2.8vw;
  font-weight: 400;

}

.about-club-membership > p{
  font-size: 1.5vw;
}

.about-club-membership-images{
  width: 100%;
  display: flex;
  gap: 25px;
  justify-content: center;
  align-items: center;
}

.about-club-membership-images > .about-club-membership-image{
  max-width: 25%;
  text-align: center;
}

.about-club-membership-images > .about-club-membership-image > img{
  max-width: 100%;
}

.about-club-membership-image-container{
  display: flex;
  gap: 30px;
}

.about-club-membership-image-container > img:nth-child(1) {
  width: 65%;
  object-fit: contain;
}

.about-club-membership-image-container > img:nth-child(2) {
  width: 30%;
  object-fit: contain;
}
.about-club-membership-images > .about-club-membership-image > p{
  font-size: 1.3vw;
}

.become-vkc-member{
  margin: 20px 40px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.become-vkc-member > h1 {
  font-size: 3.8vw;
  font-weight: 400;
  font-family: "Gloock", serif;
}
.become-vkc-member > p {
  font-size: 1.6vw;
}

.step-one-container{
  display: flex;
  width: 100%;
  justify-content: left;
  align-items: center;
  gap: 20px;
}

.step-one-images{
  width: 40%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 25px;
}
.step-one-images > img {
  width: 45%;
}

.step-one-description > h1{
  font-size:2.8vw ;
  font-weight: 400;
  font-family: "Gloock", serif;
}

.step-one-description > p{
  font-size:1.7vw ;
}

.step-two-container{
  display: flex;
  width: 100%;
  justify-content: left;
  align-items: center;
  gap: 20px;
}

.step-two-images{
  width: 40%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 25px;
}
.step-two-images > img {
  width: 100%;
}

.step-two-description {
  width: 60%;
}
.step-two-description > h1{
  font-size:2.8vw ;
  font-weight: 400;
  font-family: "Gloock", serif;
}

.step-two-description > p{
  font-size:1.7vw ;
}

.member-access > h1 {
  font-size: 2.6vw;
  margin-left: 30px;
  font-weight: 400;
}

.member-access-images-container{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}



.member-access-images-container > img {
  width: 30%;
  object-fit: contain;
}

.member-access-offer-container{
  width: 100%;
  display: flex;
  justify-content: space-around;
}
.member-access-offer {

  max-width:20%;
  font-size: 2.6vw;
  margin: 0px 15px;
  font-weight: 500;
  text-align:center ;
  font-family: "Gloock", serif;
}

.our-key-stations{
  text-align: center;
  margin: 20px 0px;
}

.our-key-stations > h1 {
  font-size: 4vw;
  margin-bottom: 10px;
  font-weight: 500;
}

.our-key-stations > p {
  font-size: 1.7vw;
  margin: 10px;
}
.video-carousel {
  width: 100%;
  overflow: hidden;
  position: relative;
  height: 25vh;

  display: flex;

}

.video-carousel-track {
  display: flex;
  gap: 15px;
  animation: scroll 15s linear infinite;
}

.video-carousel-item {
  min-width: 60%;
  transition: transform 0.5s;
}

.become-key-station{
  display: flex;
  width: 100%;
  align-items: center;
  margin: 40px 40px;

}

.become-key-station-left-part{
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.become-key-station-left-part h1{
  font-size: 4vw;
  font-weight: 400;
}

.become-key-station-left-part p{
  font-size: 1.7vw;
}

.become-key-station-right-part{
  width: 50%;
}

.become-key-station-images{
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  gap: 10px;
}

.become-key-station-images > img {
  width: 45%;
}



.coming-soon-key-station{
  display: flex;
  width: 100%;
  align-items: center;
  gap: 30px;
  margin: 40px 40px;
}

.coming-soon-key-station-left-part{
  width: 28%;
}

.coming-soon-key-station-images{
  display: flex ;
  width: 100%;

  align-items: center;
  gap: 30px;
  height: 28vh;
}

.coming-soon-key-station-images > img {
  width: 50%;
  height: 100%;
  object-fit: contain;
}

.coming-soon-key-station-right-part{
  display: flex;
  flex-direction: column;
  gap:10px ;
  margin-left: 25px;
}

.coming-soon-key-station-right-part > span {
  font-size: 3vw;
  font-weight: 400;
}

.coming-soon-key-station-right-part > h1{
  font-size: 6vw;
  font-weight: 400;
  color: #AD8A44;
}

.coming-soon-key-station-right-part > p {
  font-size: 1.4vw;
}


/* Contact Page */

.contact-page{
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
 }

 .contact-page > p{
  font-size: 2.3vw;
  width: 30%;
 }

 form{

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
 }

 .contact-page-header{
  width: 100%;
  position: relative;
  height: 8vh;
  margin-bottom: 60px;
 }
 .contact-page-header-image{
  width: 100%;
  height: 100%;
 }

 .contact-page-header-image > img{
  width: 100%;
  height: 100%;
  opacity: 0.2;
  object-fit: cover !important;
 }

 .contact-page-header > span {
  position: absolute;
  color: #AD8A44;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  font-size: 5.5vw;
  font-weight: 500;
 }

 .form-details{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;

 }

 .form-item{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
 }

 .form-item > label{
   color: #AD8A44;
   font-size: 15px;
   font-weight: 600;

 }

 .form-item > input {
  padding: 10px;
  border: 2px solid #AD8A44;
  width: 18vw;
  font-size: 15px;
 }

 .form-item > textarea {
  width: 38vw;
  padding: 10px;
  font-size: 15px;
  border: 2px solid #AD8A44;
  resize: none;
 }

 form > button {
  background-color: #AD8A44 !important;
  font-weight: 600;
  font-size: 17px;
  width: 16vw;
  padding: 10px;
  margin: 10px;
 }

 footer{

  color: white;
  margin: 10px 0px;
  padding: 0px 30px;
  max-height: 15vh;
}

.footer-container{
padding: 10px;
  width: 100%;
  height: 100%;

  margin: 20px 0px;
  font-size: 2vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-image-container{
height: 100%;
width: 15%;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;

}
.footer-image-img{
  width: 100%;
  height: 100%;
}

.footer-image-img > img{
  width:100% ;
  height: 100%;
  object-fit: contain;
}

.footer-options{
padding: 8px;
display: flex;
}

/* Login Modal */

 /* Modal background overlay */
 .login-modal {
  display: none; /* Hidden by default */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8); /* Black background with opacity */
  z-index: 1050;
  align-items: center;
  justify-content: center;
}

/* Modal dialog box */
.login-modal-dialog {
  position: relative;
  width: 500px;
  margin: auto;
  background-color: black !important;
  color: #AD8A44;
}

.login-modal-content{
  width: 100%;
}

.login-modal-header{
  color: #AD8A44;
  display: flex ;
  justify-content: center;
  align-items: center;
  margin: 15px 0px;

}

.login-modal-header > h5 {
  color: #AD8A44 !important;
  font-size: 3vw;
  font-family: 'Gloock', serif;
  font-weight: 500;
  margin-top: 20px;

}
.login-modal-content {
  width: 100%;
  background-color: black !important;
  border-radius: 5px;
  padding: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  position: relative;
  animation: fadeIn 0.3s;
}

.login-form-group{
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;


}
.login-form-group > label {
  font-size: 15px;
  /* font-family: 'Gloock', serif; */
  font-weight: 400;
}
.login-form-group > input{
  margin: 0px;
  width: 100%;
  padding: 5px;
  color: #AD8A44;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #AD8A44;
  border-radius: 0px;

}

.login-modal-body{
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* Modal animation */
@keyframes fadeIn {
  from {
      opacity: 0;
  }
  to {
      opacity: 1;
  }
}

/* Close button */
.login-close {

  position: absolute;
  right: 10px;
  top: -5px;
  font-size:4vw;
  font-weight: 200;
  cursor: pointer;
  background-color: transparent !important;
  color: #AD8A44 !important;

  border: 0px;
  /* display: flex;
  justify-content: flex-end;
  align-items: center; */
}

.login-close:hover {
  /* width: 100%; */
  /* position: absolute;
  right: 10px;
  top: -10px;
  font-size:5vw; */
  cursor: pointer;
  background-color: transparent !important;
  color: white !important;

  border: 0px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

/* Input field styles */
.login-form-control {
  width: 100%;
  padding: 10px;
  margin-top: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.invalid-feedback {
  color: red;
  font-size: 0.875rem;
  display: none;
}

/* Footer buttons */
.login-modal-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 15px;
  gap: 10px;
}

.login-modal-footer > button {
  padding: 10px;
  font-size: 1.8vw;
}

/* Sign Up Modal Styles */
.signup-modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;

}

.signup-close{
  width: auto;
  font-size: 5vw;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  text-align: right;
  z-index: 999;
  color: #AD8A44;
  font-weight: 500;
  cursor: pointer;


}

.signup-modal-content {
  background-color: black;
  color: #AD8A44;
  padding: 20px;
  padding-top: 0px;
  border-radius: 10px;
  width: 600px;
  text-align: center;
  border:1px solid #AD8A44;
  border-radius: 0px;
}
.signup-modal-content > h2{
  font-size: 3.5vw;
  margin-bottom: 15px;
}

.signup-form-group {
  width: 100%;
  margin-bottom: 5px;
  text-align: left;
  border-bottom: 1px solid #AD8A44;
}

.signup-form-group label {
  display: block;
  margin-bottom: 5px;

  font-size: 2vw;
}

.signup-form-group input {
  width: 100%;
  padding: 8px;
  outline: none;
  background-color:transparent;
  border: none;
  color: #AD8A44;

}
.signup-form-group input:focus{
  color: #AD8A44;
  border: 1px solid #AD8A44;
  border-radius: 0px;
}
.signup-form-group input::placeholder{
  color: white;
  opacity: 1;
  font-size: 1.6vw;
}

.signup-submit{
  background-color: black !important;
  color: white;
  border-radius: 0px;
  border: 1px solid #AD8A44;
}




}














@media screen and (max-width: 700px) {

  .divider {
    width: 100% !important;
    height: 20px;
    background-image: url('../front-images/download.svg');
    /* background-repeat: no-repeat; */
    background-size: cover;

    background-position: center center;

  }

    header{
        height: 80px;
    }
    header > span:nth-child(1){
        display: none;
    }
    .header-logo > img {
        width: 45px;
        height: 60px;
    }


    .video{
      width: 100%;
      height: 42vh;
      object-fit: cover;

  }


.video-container{
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}
.video-text{
   font-family: "Gloock", serif;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    display: flex;
    flex-direction: column;
    color:white;

    gap: 5px;
    justify-content: flex-start;


}


.video-text > button{
  font-size: 7px;
    width: fit-content;
    padding: 10px 25px;
    background-color: black;
    color:white;
    border:1px solid #AD8A44;

    cursor: pointer;

}

.video-heading{
  font-family: "Gloock", serif;
    color: #AD8A44;
    font-size: 27px;
    margin: none;

    font-weight: 400;
}

.video-subheading{

    font-size: 20px;
    font-weight: 400;


}

.video-content{
    color: #AD8A44;

    font-size: 20px;
    font-weight: 400;
    white-space: nowrap;


}

.video-image{
    width: 35%;
    height: 45%;
    display: flex;
    justify-content: center;
    align-items: center;
    object-fit: contain;
}

.video-text >div > img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}

  .main-content >div >button{
    width: fit-content;
    padding: 0.5rem 0.7rem;
    background-color: black;
    color:white;
    border:1px solid #AD8A44;
    cursor: pointer;

}

.carousel > span{
  font-size: 26px;
}

.carousel {
  width: 100%;
  max-width: 100%; /* Adjust the size of the carousel */
  overflow: hidden;
  position: relative;
  text-align: center;
  white-space: nowrap;
  margin: 0px;


}



.carousel-inner {
  display: flex;
  white-space: nowrap;
  animation: scroll 5s linear infinite;
  width: 30%; /* Adjust based on the number of images */
  height: 106px;
  margin: 10px 0px;
}

.carousel-inner img {
  width: 100%;

}

.advantage-container{
text-align: center;
padding: 20px;
color: white;
}

.advantage-container > span{
font-size: 19px;
text-align: center;
}

.advantage-inner-container {
  width: 100%;
display: flex;
align-items: center;
justify-content: center;
flex-wrap: wrap;

}

.advantage-item-container {
  width: 45%;
padding: 10px;
font-size: 13px;
font-family: "Gloock", serif;


color: white;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
display: flex;
flex-direction: column;
align-items: center; /* Align content (image and text) horizontally */
justify-content: center; /* Center content vertically */
text-align: center;
}

.advantage-item-container > img {
max-width: 25%;
height: 10%;
display: block;
margin: 0 auto 10px;
}

.keys-weeks{
text-align: center;
}

.keys-img {
width: 100%;

}

.keys-img img {
width: 60%;
margin-top: 10px;
}

.keys-container{
margin-top: 20px;
width: 100%;
display: flex;
justify-content: space-around;
align-items: center;
}

.keys-item-container{

box-sizing: border-box;
width: 30%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 412px;
border: 2px solid  #AD8A44;
font-size: x-large;
color: white;
padding: 25px 10px;
gap: 15px;
}

.keys-item-container > p:nth-of-type(1){

font-family: "Gloock", serif;
font-size: 2vw;
}

.keys-item-container > p:nth-of-type(2){


font-size: 2vw;
}


.keys-item-img{
width: 100%;
}
.keys-item-img img{
width: 70%;
}

.keys-weeks > button{
margin-top: 20px;
border: 2px solid #AD8A44;
background-color: black;
color: white;
font-size: 11px;
padding: 10px 5px;
}

.join-club{
text-align: center;
color: white;
margin: 20px 0px;
}
.join-club > span{
font-size: 6vw;
}

.join-club-container{

display: flex;
justify-content: space-around;
align-items: center;
}

.join-club-item{
margin-top: 20px;
width: 45%;
height: 250px;
border: 1px solid #AD8A44;
padding: 10px 20px;
display: flex;
flex-direction: column;
align-items: center;
justify-content:flex-start;
gap: 5px;
}
.join-club-item > span{
font-size: 3.7vw;
margin: 5px 0px;
white-space: nowrap;
}
.join-club-item > p{
font-size: 2.5vw;
}

.join-club-item-img{
width: 100%;
}

.join-club-item-img img{
width: 80%;
}

.join-club-item > button{
text-align: center;
padding: 5px 10px;
margin-top: 20px;
background-color: black;
color: white;
font-size: 2.3vw;
width: 60%;
}


.key-station{
color: white;
text-align: center;
gap: 15px;
font-size: 2vw;
}

.key-station > span:nth-child(1) {
font-size: 24px;
margin: 50px 0px;
}

.key-station > p{
margin: 18px;
}

.key-station-item-container{
width: 100%;
display: flex;
justify-content: center;
align-items: center;
gap: 10px;
}

.key-station-item{
width: 25%;
display: flex;
flex-direction: column;

align-items: center;
}
.key-station-item-img{
display: flex;
justify-content: center;
align-items: center;
width: 100px;
height: 65px;
}

.key-station-item-img > img{
max-width: 55%;

}


.key-station-options{
margin: 20px 0px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
gap: 15px;
}

.key-station-options >button{
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
}

.main-content{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items:center ;
  gap: 10px;
}

.main-content > div:nth-child(2) > p{
  color: white;
  font-size:14px;
  text-align: center;
  margin-top: 10px;

}


.main-content >div >button{
  width: fit-content;
  padding: 2px 15px;
  background-color: black;
  color:white;
  border:1px solid #AD8A44;
  cursor: pointer;
  font-size: 9px;
}



.content1-img{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.content1-img > img{
  width: 70%;
}

.content2-img{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.content2-img > img{
  width: 70%;
}




    .keys-item-container{
        box-sizing: border-box;
       width: 30%;
       height: 200px;
       border: 2px solid  #AD8A44;
       font-size:large;
       color: white;
       padding: 25px 10px;
       display: flex;
       flex-direction: column;
       justify-content: start;
       align-items: center;
       gap: 10px;
    }

    .keys-item-container > p:nth-of-type(1){

      font-family: "Gloock", serif;
      font-size: 15px;
    }

    .keys-item-container > p:nth-of-type(2){


      font-size: 7px;
    }


    .coming-soon{
      text-align: center;

      color: white;
  }

  .coming-soon p:nth-child(1){
      font-size: 6.5vw;
  }
  .coming-soon p:nth-child(2){
      font-size: 5vw;
      margin: 10px 0px;
  }

  .coming-soon-para{
      font-size: 1vw;
      margin: 10px 0px;
  }

  .coming-soon-image-container{
      margin: 10px 20px;
      width: 95%;
      display: flex;
      justify-content: space-around;
      align-items: center;
  }

  .coming-soon-image{
      width: 30%;

      display: flex;
      justify-content: center;
      align-items: center;
  }

  .coming-soon-image > img{
      width: 100%;

      object-fit: cover !important;
  }

    .key-station-page{
        padding: 10px;
      }

      .key-station-header {
        display: flex;
        flex-direction: column;
      }

      .key-station-heading{
        width: 100%;
        color: #AD8A44;
        font-size: 31px;
        margin-bottom: 10px;
      }
      .small-screen-filter-type{
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
      }

      .small-screen-filter-type > span{
        color: #AD8A44;
        font-size: 9px;
      }

      .small-screen-filter-type > select {

        height:27px ;
        width: 50%;
        background-color: black;
        color: gray;
      }

      .small-screen-filter-type > select > option {
        color: #AD8A44;
        font-size: 10px;
        line-height: 2rem;
      }

      .key-station-search-container{
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 10px;
      }

      .key-station-search-container > span{
        color: #AD8A44;
        font-size: 15px;
        margin-top: 10px;
      }




      .key-station-search-container > input {
        width: 100%;
        height: 38px;
        border: 1px solid #AD8A44;
        background-color: #1D1D1D;
        padding-left: 10px;
      }

      .key-station-search-container > input::placeholder {
        font-size: 14px;
        font-weight: 600;
      }

      .special-services-container > span{
        font-size: 12px;
        color: #AD8A44;
    }

    .special-service-option-container > span {
        margin: 5px 0px;
        border: 1px solid #AD8A44;
        padding: 5px 7px;
        border-radius: 20px;
        font-size: 1.7vw;
      }

      .cities-container{
        margin: 0px 0px;
        width: 100%;
      }

      .cities-container > span {
        color: #AD8A44;
        font-size: 12px;
        margin-bottom:  10px;
      }

      .cities-option-container{
        display: flex;
        justify-content: start;
        align-items: center;
        flex-wrap: wrap;
        gap: 5px;
      }

      .cities-option-container > span{
        margin: 0px 0px;
        border: 1px solid #AD8A44;
        padding: 5px 7px;
        border-radius: 20px;
        font-size: 2vw;
      }

      .filter-type{
        display: none;
      }

      .companies-options-container{
        border: 1px solid #AD8A44;
        height: 100px;
        margin: 20px 0px ;
      }

      .company-option{
        padding-right:10px;
        padding-top: 5px;
        width: 100%;
        display: flex;
        justify-content:space-between ;


      }

      .company-image-box{
        display: flex;
        flex-direction: column;
        justify-content: start;
        align-items: flex-start;
        width: 20%;
        height: 100%;
      }

      .company-image-box > img:nth-child(1){

        width: 100%;
        height: 15px;
        object-fit: contain;
      }

      .company-image-box > img:nth-child(2){

        width: 50%;
        height: 10px;
        object-fit: contain;
      }

      .company-image-box > img:nth-child(3){

        width: 100%;
        height: 60px;
        object-fit: contain;
      }

      .company-description-box{
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 15px;
      }

      .company-description-box > span:nth-child(1) {
        font-size: 13px;
      }

      .company-description-box > span:nth-child(2) {
        font-size: 10px;
      }

      .company-description-box > span:nth-child(3) {
        font-size: 10px;
      }

      .company-button-box{
        display: flex;
        justify-content: center;
        align-items: flex-end;
      }

      .company-button-box > button {
        font-size: 10px;
        padding: 5px 25px;
      }

      /* Purchase key page */

      .purchase-key-heading{
        margin: 20px 10px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        text-align: center;
        gap: 20px;
      }

      .purchase-key-heading > h1{
        font-size: 26px;
        color: #AD8A44;
      }

      .purchase-key-heading > p{
        font-size: 12px;


      }

      .purchase-key-image{
        width: 100%;
        height: 15vh;


      }
    .purchase-key-image > img{
        width: 100%;
        height: 100%;
        object-fit: cover !important;
    }

    .purchase-key-offers{
        display: flex;
        text-align: center;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 15px;
        font-size: 12px;
        margin: 20px 0px;
    }

    .purchase-options{
        display: flex;
        flex-direction: column;
        width: 100%;
        margin: 20px 0px;
    }

    .purchase-options-description{
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        float: left;
        margin: 10px 0px;

    }
    .purchase-options-description >span {
        font-size: 25px;
    }

    .purchase-options-description > a{
        font-size: 15px;
        cursor: pointer;
    }

    .purchase-options-images{
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;


    }

    .purchase-options-images  a{
      text-decoration: none;
      width: 40%;
    }

    .purchase-options-option{

      width: 30%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      border: 1px solid #ccc;
      height: 250px;

      padding: 0px 20px;
      border-radius: 10px;
      gap: 10px;
    }
    .purchase-options-option-image{
      width: 100%;
      height: 80px;
    }

    .purchase-options-option-image > img{
      width: 100%;
      height: 100%;
      object-fit: contain;
    }

    .purchase-options-option-texts{
      width: 100%;
      margin-top: 10px;
      text-decoration: none;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 10px;
    }

    .purchase-options-option-texts >  h1{
      color: #AD8A44;
      font-family: 'Gloock', serif;
      font-size: 12px;
      font-weight: 500;
      white-space: nowrap;

    }

    .purchase-options-option-texts  div {
      display: flex;
      color: white;
      font-size: 10px;
      font-family: 'Gloock', serif;
      justify-content: center;
      gap: 5px;
    }

    .purchase-options-option-texts > div > span:nth-child(1){
      font-family: 'Gloock', serif;
      font-size:10px;
    }

    .purchase-options-option-texts > div > span:nth-child(2){
      font-size: 25px;
      font-family: 'Gloock', serif;
    }

    .purchase-options-option-texts > p{
      color: #AD8A44;
      white-space: nowrap;
      font-size: 10px;
    }

    /* .purchase-options-option-texts  button {
      width: 80%;
      background-color: white !important;
      color: black !important;
      font-family: 'Gloock', serif;
      padding: 10px 15px;
    } */
     .purchase-options-option-button{
      width: 65%;
      background-color: white !important;
      color: black !important;
      font-family: 'Gloock', serif;
      padding: 5px;
      font-size: 10px;
      text-align: center;
      display: flex;
      justify-content: center;
      align-items: center;
     }

    /* .purchase-options-images > img {
        width: 30%;
    } */

    /* buy key-offers page */

.buy-key-page{
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
 }

.buy-key-heading{
  display: flex;
  justify-content: center;
  align-items: center;
}
.buy-key-heading > h1{
  font-size: 25px;
  color: #AD8A44;
  font-weight: 500;
  margin: 20px 0px;

}

.buy-key-offer-container{
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.buy-key-offer-box {
  display: flex;
  flex-direction: column;
  border: 1px solid #ccc;

  padding: 20px 0px;
  margin: 10px;
  border-radius: 0px;
  width: 70%;
  background-color: #f9f9f9;
}
.buy-key-offer-container-image{
  width: 100%;
  height: 80px;

}

.buy-key-offer-container-image > img {
  max-width: 100%;
  height: 100%;
  border-radius: 5px;
  object-fit: cover !important;
}

.buy-key-offer-texts {
  margin: 15px 0px;
  color: black;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.buy-key-offer-texts > div:nth-child(1){
  font-family: 'Gloock', serif;
  color: #AD8A44;
  font-size: 20px;
  font-weight: 600;

}

.buy-key-offer-texts > div:nth-child(2) {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 5px;
}
.buy-key-offer-texts > div:nth-child(2) >  span:nth-child(1){
  color: #AD8A44;
  font-size: 24px;

}
.buy-key-offer-texts > div:nth-child(2) > span:nth-child(2){
  font-family: 'Gloock', serif;
  font-size: 70px;
}

.buy-key-offer-texts > p{
  font-size: 12px;
  font-weight: 700;
}

.buy-key-offer-texts > button{
  font-size: 16px;
  font-weight: 600;
  width: 80%;
  padding: 15px;
  border: 0px;
}

.buy-key-page-descriptions{
  display: flex;
  flex-direction: column;
  margin: 20px 70px;
  gap: 10px;

  justify-content: center;
}

.buy-key-page-descriptions-points{
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 15px;
}

.buy-key-page-descriptions-points > span:nth-child(1){
  display: none;
  width: 70px;
  height: 50px;
}
.buy-key-page-descriptions-points > span:nth-child(1) > img{
  width: 100%;
  height: 100%;
}

.buy-key-page-descriptions-points > span:nth-child(2){
  font-size: 13px;
  text-align: center;
}

.buy-key-page-descriptions-points > span:nth-child(2) > span{
  font-size: 13px;
  color: #AD8A44;
}



    /* Buy Key Payment Page */


.buy-key-payment-page{
  background-color: white;
  color: black;
  max-width: 100%;
}

.buy-key-payment-heading{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 20px;
  gap: 6px;
}

.buy-key-payment-heading >h1{
  font-size: 17px;
  font-weight: 700;
}
.buy-key-payment-heading >a{
  font-size: 17px;
  font-weight: 700;
  color:#AD8A44;
  font-family: 'sans-serif';
  text-decoration: none;

}
.buy-key-payment-heading >p{
  font-size: 17px;
  font-weight: 700;

}

.buy-key-payment-checkout{
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.buy-key-payment-header{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-top: 40px;

}
.buy-key-payment-header > h1{
  width: 100%;
  text-align: center;
  margin:0px  60px;
  padding-bottom: 30px;
   color: gray;
   font-size: 24px;
   font-weight: 400;
   border-bottom: 1px solid #aaa;

}

.buy-key-payment-steps-container{
  display: flex;
  flex-direction: column;
  padding: 10px 0px;
  gap: 20px;
  margin: 20px 0px;
  border-top: 0px
}

.buy-key-payments-steps{

  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.buy-key-payments-step-1{
  display: flex;
  flex-direction: column;
  /* justify-content: center;
  align-items: center; */
  gap: 10px;

}

.buy-key-payments-step-1 > h1 {
  font-size: 20px;
  font-weight: 500;
  margin-left: 60px;
  margin-top: 30px;
}

.buy-key-payments-step-1 > p{
  font-size: 15px;
  margin: 15px 60px;
  text-align: left;

}

.buy-key-payment-buttons{
  display: flex !important;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  margin: auto;
  padding-left: 60px;
  gap: 15px;
  width: 100%;
}

.buy-key-payment-buttons > button:nth-child(1) {
  font-size: 16px;
  font-weight: 300;
  width: 60%;
  border-radius: 0px !important;
  padding: 15px 20px;
}

.buy-key-payment-buttons > button:nth-child(1):hover  {
  font-size: 16px;
  font-weight: 300;
  width: 60%;
  border-radius: 0px !important;
  padding: 15px 20px;
  background-color: #aaa !important;
}

.buy-key-payment-buttons > button:nth-child(2) {
  font-size: 16px;
  font-weight: 300;
  background-color: white !important;
  width: 60%;
  color: black !important;
  border: 1px solid black;
  border-radius: 0px !important;
  padding: 15px 20px;
}

.purchase-key-box-container{
  width: 80%;
  display: flex;
  flex-direction: column;

  margin:0px 40px;

}
.purchase-key-payment-secure-box{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}
.purchase-key-payment-summary-box{
  width: 100%;
  padding: 20px;
  border: none;
}
.purchase-key-payment-header{
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: 14px;
  margin-bottom: 15px;
  border-bottom: 1px solid #646464;
  padding-bottom: 25px;
}

.purchase-key-payment-header > h1{
  font-size: 20px;
  font-weight: 500;
  white-space: nowrap;
  margin-bottom: 20px;
}

.purchase-key-payment-header > div{

  display: flex;


}

.purchase-key-payment-header > div > span {
  color: #1D1D1D;
  font-size: 14px;
  font-weight: 600;

}

.purchase-key-payment-coupan{
  padding: 10px 0px;

  display: flex;

  align-items: center;
  text-decoration: underline;
  gap: 10px;
  font-size: 14px;
  white-space: nowrap;
  font-weight: 600;
  border-bottom: 1px solid #646464;
}

.purchase-key-payment-coupan > span{
  cursor:pointer;
}

.purchase-key-add-coupan{
  display: none;
  /* display: flex;  */
  flex-direction: column;
  gap: 5px;
  padding: 10px 0px;
}

.purchase-key-add-coupan > span {
  font-size: 14px;
  font-weight: 600;
}

.purchase-key-coupan-code-form{
  width: 100%;
}
.purchase-key-coupan-code-form > form {
  width: 100%;
  display: flex !important;
  flex-direction: row !important;
  gap: 10px;
}
.purchase-key-coupan-code-form  > input{
  width: 65%;
  box-sizing: border-box;

  padding: 4px;
  outline: none;
  border: 2px solid #AD8A44;

}

.purchase-key-coupan-code-form  > input::placeholder{
  font-size: 16px;
}

.purchase-key-coupan-code-form  > button {
  width: 33%;
  box-sizing: border-box;
  background-color: black !important;
  color: white !important;
  font-size: 15px;
  font-weight: 400;
  border-radius: 0px;
  padding: 4px;
}
.purchase-key-buy-now-button{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.purchase-key-buy-now-button > button {
  font-size: 16px;
  padding: 15px 15px;
  width: 80%;
  border-radius: 0px !important;
  background-color: #888 !important;
}


.purchase-key-payment-total-amount{
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  margin-bottom: 10px;
}

.purchase-key-payment-total-discount{
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  color: #AD8A44;
  font-weight: 600;
  margin-bottom: 2px;
}

.purchase-key-payment-discount-details{
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  margin-bottom: 10px;


}

.purchase-key-payment-discount-details > span:nth-child(2){

  font-size: 18px;
  color: #AD8A44;
  font-weight: 600;
}
.purchase-key-payment-total{
  display: flex;
  justify-content: space-between;
  font-size: 20px;
  padding-top: 25px;
  font-weight: 700;
}

    /* Key Map Container */

.key-map-container{
  display: flex;
  width: 100%;
  height: 33vh;
}

.key-map-left-section{
  width: 50%;
  height: 100%;
  position: relative;

  z-index: 1;

}

.key-map-left-image{
  width: 100%;
  height: 100%;
}
.key-map-left-image > img{
  object-fit: cover !important;
  height: 100%;
  width: 100%;
  filter: brightness(30%);
}

.left-section-content{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  display: flex;
  flex-direction: column;
  color:white;
  text-align: center;
  gap: 20px;
  justify-content: center;
  align-items: center;
  z-index: 9;
}

.left-section-content > span {
  font-size: 24px;
}

.left-section-content > button{
  font-size: 8px;
  border: 1px solid #AD8A44;
  padding: 10px 20px;
  font-weight: 600;
  text-align: center;
}

.key-map-right-section{
  width: 50%;
  height: 100%;
  position: relative;

}

.key-map-right-image{
  width: 100%;
  height: 100%;
}
.key-map-right-image > img{
  object-fit: contain;
  height: 100%;
  width: 100%;
  filter: brightness(50%);
}

.right-section-content{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  display: flex;
  flex-direction: column;
  color:white;
  text-align: center;
  gap: 20px;
  justify-content: center;
  align-items: center;
}


    .events-page >h1{
      font-size: 30px;
      color: #AD8A44;
    }

    .event-box{
      width: 100%;
      display: flex;
      flex-direction: column;
      gap: 10px;

    }

    .event-image{
      width: 100%;
    }

    .event-details{
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 20px;
    }

    .event-details > h1 {
      font-size: 18px;
      font-weight: 400;
    }

    .event-details > p{
      font-size: 22px;
      font-weight: 600;
    }

    .event-details > button{
      font-size: 15px;
      padding: 10px 20px;
      font-weight: 600;
    }




    .event-gallery-header{

      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;

    }

    .event-gallery-header > h1{
      font-size: 35px;
      color: #AD8A44;
    }

    .event-gallery-header > p{
      font-size: 10px;
      margin: 30px 20px;
    }

    .event-gallery-container{
      width: 100%;


      display: flex;
      gap: 10px;
      margin: 0px;
    }

    .event-gallery-box{
      width: 45%;
      height: 45vh;

      text-align: center;

    }

    .event-gallery-video{
      width: 100%;
      height: calc(30vh - 30px);

      border: 1px solid #AD8A44;
    }

    .event-gallery-video > video{
      width: 100%;
      height: 100%;
      object-fit: cover;

    }

    .event-gallery-box > span{
      text-align: center;
      font-size: 30px;
      color: #AD8A44;
      margin: 15px 0px;
    }

    .header-images-container{
      display: none;
    }

    .about-welcome-section{
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      gap: 10px;
    }

    .about-welcome-section > span{
      font-size: 25px;
      font-weight: 400;
      margin-top: 25px;

    }

    .about-welcome-section > h1{
      font-size: 40px;
      font-weight: 500;
      color: #AD8A44;
    }

    .about-welcome-section > p{
      margin: 0px 15px;
      font-size: 12px;
    }

    .about-welcome-image-section{
      display: flex;
      flex-direction: column-reverse;
    }

    .about-welcome-image-section > p{
      font-size: 13px;
      margin: 0px 20px;
    }

    .about-welocme-images{
      width: 90%;
      display: flex;
      justify-content: space-around;
      align-items: center;
      margin: 0px 20px;
      height: 11vh;
    }

    .about-welocme-images >  img {
      width: 18%;

      height: 100%;
    }

    .about-club-membership{
      display: flex;
      flex-direction: column;
      gap: 20px;
      margin: 40px 40px;
      text-align: center;
    }

    .about-club-membership > h1{
      font-size: 20px;

    }

    .about-club-membership > p{
      font-size: 15px;
    }

    .about-club-membership-images{
      width: 100%;
      display: flex;
      flex-direction: column;
      gap: 65px;
      justify-content: center;
      align-items: center;
    }

    .about-club-membership-images > .about-club-membership-image{
      max-width: 80%;
      text-align: center;
    }

    .about-club-membership-images > .about-club-membership-image > img{
      max-width: 100%;
    }

    .about-club-membership-images > .about-club-membership-image:nth-child(2) > img{
      max-width: 100%;
      height: 60px;
      transform: rotate(90deg);
    }

    .about-club-membership-images > .about-club-membership-image > p{
      font-size: 12px;
    }

    .become-vkc-member{
      margin: 20px 5px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      text-align: center;
    }

    .become-vkc-member > h1 {
      font-size: 20px;
    }
    .become-vkc-member > p {
      font-size: 12px;
    }

    .step-one-container{
      display: flex;
      flex-direction: column-reverse;
      width: 100%;
      justify-content: left;
      align-items: center;
      gap: 20px;
    }

    .step-one-images{
      width: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
      margin: 15px;
      gap: 15px;
    }
    .step-one-images > img {
      width: 40%;
      object-fit: contain;
    }

    .step-one-description > h1{
      font-size:18px ;
    }

    .step-one-description > p{
      font-size:13px ;
    }

    .step-two-container{
      width: 100%;
      display: flex;
      flex-direction: column;

      justify-content: left;
      align-items: center;
      text-align: center;
      gap: 20px;
    }

    .step-two-images{
      width: 95%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin: 25px;
    }
    .step-two-images > img {
      width: 100%;
    }

    .step-two-description{
      width: 100%;
    }
    .step-two-description > h1{
      width: 100%;
      font-size:16px ;
    }

    .step-two-description > p{
      font-size:12px ;
    }


    .member-access-offer-container{
      width: 100%;
      display: flex;
      justify-content: space-around;
      color: #AD8A44;
    }

    .member-access{
      text-align: center;
    }
    .member-access > h1 {
      font-size: 20px;
      margin: 10px 0px;
    }
    .member-access-offer{
      font-size: 12px;
    }

    .our-key-stations{
      text-align: center;
      margin: 10px 0px;
    }

    .our-key-stations > h1 {
      font-size: 20px;
      margin-bottom: 5px;
    }

    .our-key-stations > p {
      font-size: 12px;
      margin: 0px;
    }

    .key-map-container{
      display: flex;
      width: 100%;
      height: 50vh;
  }

  .left-section-content >button {
    width: 100%;
    font-size: 6px;
  }
    .video-carousel {
      margin:10px 0px ;
      width: 100%;
      overflow: hidden;
      position: relative;
      height: 37vh;

      display: flex;

    }

    .video-carousel-track {

      display: flex;
      gap: 15px;
      animation: scroll 15s linear infinite;
    }

    .video-carousel-item {
      min-width: 100%;
      height: 100%;
      transition: transform 0.5s;
    }

    .video-carousel-item > video {
      height: 100%;
      object-fit: cover !important;
    }

    .key-station > span {
      font-size: 25px;
    }

    .key-station > p{
      font-size: 14px;
    }

    .become-key-station{
      display: flex;
      flex-direction: column;
      width: 100%;
      align-items: center;
      justify-content: center;
      margin: 0px 0px;

    }

    .become-key-station-left-part{
      margin: 0px 0px;
      text-align: center;
      width: 100%;
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 20px;
    }

    .become-key-station-left-part h1{
      font-size: 20px;
      font-weight: 500;
    }

    .become-key-station-left-part p{
      font-size: 12px;
    }

    .become-key-station-right-part{
      text-align: center;
      width: 100%;
    }

    .become-key-station-images{
      display: flex;
      flex-wrap: wrap;
      width: 100%;
      gap: 5px;
    }

    .become-key-station-images > img {
      width: 49%;
    }



    .coming-soon-key-station{
      display: flex;
      flex-direction: column-reverse;
      width: 100%;
      align-items: center;
      gap: 5px;
      margin: 20px 00px;
    }

    .coming-soon-key-station-left-part{
      width: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .coming-soon-key-station-images{
      display: flex ;
      width: 100%;

      align-items: center;
      justify-content: center;
      gap: 20px;
      height: 50vh;
      margin: 0px 10px;
    }

    .coming-soon-key-station-images > img {
      width: 30%;
      height: 100%;
      object-fit: contain;
    }

    .coming-soon-key-station-right-part{
      text-align: center;
      display: flex;
      flex-direction: column;
      gap:5px ;
    }

    .coming-soon-key-station-right-part > span {
      font-size: 30px;
      font-weight: 500;
    }

    .coming-soon-key-station-right-part > h1{
      font-size: 50px;
      color: #AD8A44;
    }

    .coming-soon-key-station-right-part > p {
      font-size: 14px;
    }

    .contact-page{
      width: 100%;
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 10px;
     }

     .contact-page > p{
      font-size: 23px;
      width: 90%;
     }

     form{

      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 10px;
     }

     .contact-page-header{
      width: 100%;
      position: relative;
      height: 10vh;
     }
     .contact-page-header-image{
      width: 100%;
      height: 100%;
     }

     .contact-page-header-image > img{
      width: 100%;
      height: 100%;
      opacity: 0.2;
     }

     .contact-page-header > span {
      position: absolute;
      color: #AD8A44;
      top: 50%;
      left: 50%;
      transform: translate(-50%,-50%);
      font-size: 30px;
      font-weight: 400;
     }

     .form-details{
      width: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 20px;

     }

     .form-item{
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 10px;
     }

     .form-item > label{
       color: #AD8A44;
       font-size: 15px;

     }

     .form-item > input {
      padding: 10px;
      border: 2px solid #AD8A44;
      width: 40vw;
      font-size: 15px;
     }

     .form-item > textarea {
      width: 84vw;
      padding: 10px;
      font-size: 15px;
      border: 2px solid #AD8A44;
      resize: none;
     }

     form > button {
      background-color: #AD8A44 !important;
      font-weight: 600;
      font-size: 15px;
      width: 35vw;
      padding: 10px;
     }



     footer{

      color: white;
      width: 100%;
      margin: 10px 0px;
      padding: 0px 10px;
      max-height: 10vh;
    }

    .footer-container{
    padding: 10px;
      width: 100%;
      height: 100%;

      margin: 20px 0px;
      font-size: 2vw;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .footer-image-container{
    height: 100%;
    width: 15%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    }
    .footer-image-img{
      width: 100%;
      height: 100%;
    }

    .footer-image-img > img{
      width:100% ;
      height: 100%;
      object-fit: contain;
    }

    .footer-options{
    padding: 8px;
    display: flex;
    }

    /* Login Modal */

 /* Modal background overlay */
 .login-modal {
  display: none; /* Hidden by default */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8); /* Black background with opacity */
  z-index: 1050;
  align-items: center;
  justify-content: center;
}

/* Modal dialog box */
.login-modal-dialog {
  position: relative;
  width: 100%;
  max-width: 300px;
  margin: auto;
  background-color: black !important;
  color: #AD8A44;
}

.login-modal-content{
  width: 100%;
}

.login-modal-header{
  color: #AD8A44;
  display: flex ;
  justify-content: center;
  align-items: center;
  margin: 15px 0px;

}

.login-modal-header > h5 {
  color: #AD8A44 !important;
  font-size: 30px;
  font-family: 'Gloock', serif;
  font-weight: 500;
  margin-top: 20px;

}
.login-modal-content {
  width: 100%;
  background-color: black !important;
  border-radius: 5px;
  padding: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  position: relative;
  animation: fadeIn 0.3s;
}

.login-form-group{
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;


}
.login-form-group > label {
  font-size: 15px;
  /* font-family: 'Gloock', serif; */
  font-weight: 400;
}
.login-form-group > input{
  margin: 0px;
  width: 100%;
  padding: 5px;
  color: #AD8A44;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #AD8A44;
  border-radius: 0px;

}

.login-form-group > input::placeholder{
  color: white;
}

.login-modal-body{
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* Modal animation */
@keyframes fadeIn {
  from {
      opacity: 0;
  }
  to {
      opacity: 1;
  }
}

/* Close button */
.login-close {

  position: absolute;
  right: 10px;
  top: 0px;
  font-size:30px;
  font-weight: 300;
  cursor: pointer;
  background-color: transparent !important;
  color: #AD8A44 !important;

  border: 0px;
  /* display: flex;
  justify-content: flex-end;
  align-items: center; */
}

.login-close:hover {
  /* width: 100%; */
  position: absolute;
  right: 10px;
  top: -10px;
  font-size:25px;
  cursor: pointer;
  background-color: transparent !important;
  color: white !important;

  border: 0px;
  /* display: flex;
  justify-content: flex-end;
  align-items: center; */
}

/* Input field styles */
.login-form-control {
  width: 100%;
  padding: 10px;
  margin-top: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.invalid-feedback {
  color: red;
  font-size: 0.875rem;
  display: none;
}

/* Footer buttons */
.login-modal-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 15px;
  gap: 10px;
}

.login-modal-footer > button:nth-child(1) {
  padding: 10px;
  font-size: 15px;
}
.login-modal-footer > button:nth-child(2) {
  padding: 10px;
  font-size: 15px;
}

 /* Sign Up Modal Styles */
 .signup-modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;

}

.signup-close{
  width: auto;
  font-size: 40px;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  text-align: right;
  z-index: 999;
  color: #AD8A44;
  font-weight: 200;
  cursor: pointer;


}

.signup-modal-content {
  background-color: black;
  color: #AD8A44;
  padding: 20px;
  padding-top: 0px;
  border-radius: 10px;
  width: 340px;
  text-align: center;
  border:1px solid #AD8A44;
  border-radius: 0px;
}
.signup-modal-content > h2{
  font-size: 30px;
  margin-bottom: 15px;
}

.signup-form-group {
  width: 100%;
  margin-bottom: 5px;
  text-align: left;
  border-bottom: 1px solid #AD8A44;
}

.signup-form-group label {
  display: block;
  margin-bottom: 5px;

  font-size: 15px;
}

.signup-form-group input {
  width: 100%;
  padding: 8px;
  outline: none;
  background-color:transparent;
  border: none;
  color: #AD8A44;

}
.signup-form-group input:focus{
  color: #AD8A44;
  border: 1px solid #AD8A44;
  border-radius: 0px;
}
.signup-form-group input::placeholder{
  color: white;
  opacity: 1;
  font-size: 15px;
}

.signup-submit{
  background-color: black !important;
  color: white;
  border-radius: 0px;
  border: 1px solid #AD8A44;
}




}

.font-gloock{
  font-family: "Gloock", serif;
}

.item-padding{
  padding:2vw 0px ;
}

img{
  object-fit: contain !important;
}



.footer-container a {
    text-decoration: none;
    color: white
}

