/* .universe-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #0d1b2a; 
  color: #fff; 
  border: 2px solid #7f8c8d; 
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.3s;

 
  border-radius: 5px;
  box-shadow: 0 0 10px #1abc9c; 
}

.universe-button:hover {
  background-color: #1abc9c; 
  transform: translate(-50%, -50%) scale(1.05); 
}


.starry-sky-button {
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #1a2a6c; 
  color: #fff;
  border: none;
  padding: 15px 30px;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s;

  border-radius: 30px;

  box-shadow: 0 0 20px #4b79a1;

  background-image: linear-gradient(rgba(255, 255, 255, 0.5) 2px, transparent 2px),
                    linear-gradient(90deg, rgba(255, 255, 255, 0.5) 2px, transparent 2px),
                    linear-gradient(rgba(255, 255, 255, 0.5) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255, 255, 255, 0.5) 1px, transparent 1px);
  background-size: 100px 100px, 100px 100px, 10px 10px, 10px 10px;
  background-position: -2px -2px, -2px -2px, -1px -1px, -1px -1px;
}

.starry-sky-button:hover {
  background-color: #16222a; 
  box-shadow: 0 0 25px #9fb8ad; 
  transform: translate(-50%, -50%) scale(1.1); 
}


.nebula-button {
  position: absolute;
  top: 70%; 
  left: 50%;
  transform: translate(-50%, -50%);
  background-image: linear-gradient(to right, #8e2de2, #4a00e0, #8e2de2); 
  color: #ffffff;
  border: none;
  padding: 10px 25px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;

  
  border-radius: 25px;

  
  box-shadow: 0 0 15px #9d50bb, 0 0 20px #e0c3fc;

  text-shadow: 0 0 2px #000000;
}

.nebula-button:hover {
  background-image: linear-gradient(to right, #9d50bb, #6e48aa); 
  box-shadow: 0 0 20px #9d50bb, 0 0 25px #e0c3fc; 
  transform: translate(-50%, -50%) scale(1.1); 
}


.supernova-button {
  position: absolute;
  top: 80%; 
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #f7971e; 
  background-image: radial-gradient(circle, #ffd200, #f7971e, #f6501e, #720017); 
  color: #ffffff;
  border: none;
  padding: 15px 30px;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;

  border-radius: 50px;

  box-shadow: 0 0 15px #ffd200, 0 0 30px #ff416c; 

  text-shadow: 0 0 3px #000000;
}

.supernova-button:hover {
  background-color: #ff416c; 
  background-image: radial-gradient(circle, #ff4b1f, #ff9068); 
  box-shadow: 0 0 20px #ffd200, 0 0 35px #ff416c; 
  transform: translate(-50%, -50%) scale(1.1); 
}



.galaxy-button {
  position: absolute;
  top: 90%; 
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #0f2027; 
  color: #fff;
  border: none;
  padding: 12px 24px;
  font-size: 17px;
  cursor: pointer;
  transition: all 0.3s ease;

  border-radius: 30px;

  background-image: radial-gradient(circle at 10% 20%, #ff9a9e 0%, #fad0c4 50%, #fad0c4 100%),
                    radial-gradient(circle at 90% 80%, #ffdde1, #ee9ca7);

  box-shadow: 0 0 10px #ee9ca7;

  text-shadow: 0 0 2px #000;
}

.galaxy-button:hover {
  background-color: #ee9ca7; 
  background-image: radial-gradient(circle at 10% 20%, #ff9a9e, #fad0c4),
                    radial-gradient(circle at 90% 80%, #ffdde1, #ffecd2); 
  box-shadow: 0 0 15px #ffecd2;
  transform: translate(-50%, -50%) scale(1.1); 
} */


/* @media (max-width: 767px) {
  #myVideo3, #myImage2, #myImage { 
      display: none; 
  }

  #myImage3, #myImage2, #myImage { 
      display: block; 
      opacity: 1; 
  }
}

@media (min-width: 768px) {
  #myImage3, #myImage2, #myImage { 
      display: none; 
  }

  #myVideo3, #myImage2, #myImage { 
      display: block;
  }
} */




/* Base styling for the select element */
.modern-select {
  width: 100%; /* Adjust width as needed */
  padding: 5px 15px;
  border: 2px solid black;
  border-radius: 15px; /* Very rounded corners */
  background-color: #f0f0f0; /* Light gray background */
  color: #5C5C5C; /* Dark gray text */
  font-family: 'Arial', sans-serif;
  font-size: 14px;
  text-align: center;
  
  box-shadow: 0 2px 5px rgba(0,0,0,0.8); /* Subtle shadow for depth */
  outline: none;
}

/* Styling for the buy button */
.modern-button {
  background-color: #007BFF; /* Bright blue background */
  color: white; /* White text */
  padding: 12px 24px;
  border: none;
  border-radius: 20px; /* Very rounded corners */
  text-align: center;
  font-family: 'Arial', sans-serif;
  font-size: 14px;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2); /* Slightly more pronounced shadow for the button */
  transition: background-color 0.3s; /* Smooth transition for hover effect */
}

/* Hover effects for button */
.modern-button:hover {
  background-color: #0056b3; /* Darker shade of blue */
}

/* Adding a subtle icon inside the select dropdown using pseudo-elements */
.modern-select {
  position: relative; /* Needed to position the pseudo-element correctly */
}

.modern-select::after {
  content: '▼'; /* Unicode down arrow, you can replace it with any icon */
  color: #5C5C5C; /* Same as text color for consistency */
  font-size: 14px;
  position: absolute;
  right: 10px;
  top: 50%;
  border: 2px solid black;
  transform: translateY(-50%);
  pointer-events: none; /* Ensures the arrow does not interfere with the dropdown functionality */
}
















.dashboard-card {
  border: none;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.82);
  background: #ffb4b4;
  max-width: 650px;  /* Adjusted for proper width management */
  margin: 2rem auto;
}

.dashboard-card .dashboard-row {
  display: flex;
  justify-content: flex-start; /* Use flex-start to align items to the left */
  align-items: center; /* Align items centrally */
  margin-bottom: 20px;
  flex-wrap: wrap;
}

/* .dashboard-card input[type="checkbox"], 
.dashboard-card label {
  margin-left: 20px;
} */

.dashboard-card input[type="checkbox"] {
  margin-left: 20px;
  transform: scale(1.3);
}

.dashboard-card input[type="text"], 
.dashboard-card input[type="number"] {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
  background: #f8f8f8;
  flex-grow: 1; /* Allow input to grow to fill the space */
  margin: 5px 0; /* Consistent margin for wrapping */
  width: 70px; /* Let width be automatic, overridden by flex-grow */
}

.dashboard-card label {
  text-align: left;
  margin-right: 10px; /* Provide some spacing between labels and inputs */
}

.dashboard-card .submit-button {
  padding: 10px 20px;
  background-color: #cf3838;
  color: rgb(255, 255, 255);
  border: none;
  font-weight: 800;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
  width: 100%; /* Full-width button for the third row */
  margin-top: 10px; /* Adds margin above the button for space */
}

.dashboard-card .submit-button2 {
  padding: 10px 20px;
  background-color: #cf3838;
  color: rgb(255, 255, 255);
  border: none;
  font-weight: 800;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
  width: 100%; /* Full-width button for the third row */
  margin-top: 10px; /* Adds margin above the button for space */
}
.dashboard-card p {
  font-size: 18px;
}


@media (max-width: 600px) {
  .dashboard-card {
    border: none;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.82);
    background: #ffb4b4;
    max-width: 650px;  /* Adjusted for proper width management */
    margin: 2rem auto;
  }
  
  .dashboard-card .dashboard-row {
    display: flex;
    justify-content: flex-start; /* Use flex-start to align items to the left */
    align-items: center; /* Align items centrally */
    margin-bottom: 10px;
    flex-wrap: wrap;
  }
  
  /* .dashboard-card input[type="checkbox"], 
  .dashboard-card label {
    margin-left: 20px;
  } */
  
  .dashboard-card input[type="checkbox"] {
    margin-left: 20px;
    transform: scale(1.3);
  }
  
  .dashboard-card input[type="text"], 
  .dashboard-card input[type="number"] {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 8px;
    background: #f8f8f8;
    flex-grow: 1; /* Allow input to grow to fill the space */
    margin: 5px 0; /* Consistent margin for wrapping */
    width: 70px; /* Let width be automatic, overridden by flex-grow */
  }
  
  .dashboard-card label {
    text-align: left;
    margin-right: 10px; /* Provide some spacing between labels and inputs */
  }
  
  .dashboard-card p {
    font-size: 14px;
    margin-bottom: 0px;
    margin-top: 0px;
    padding-top: 0px;
    padding-bottom: 0px;
    
  }
  
  .dashboard-card .specific-label2 {
    /* display: none; */
    margin-bottom: 0px;
    margin-top: 0px;
    padding-top: 0px;
    padding-bottom: 0px;
  }

  .dashboard-card .specific-label3 {
    display: none;
  }


  
  .dashboard-card .submit-button2 {
    padding: 10px 20px;
    background-color: #cf3838;
    color: rgb(255, 255, 255);
    border: none;
    font-weight: 800;
    font-size: 14px;
    border-radius: 8px;
    margin-left: 2px;
    cursor: pointer;
    width: 49%; /* Full-width button for the third row */
    margin-top: 5px; /* Adds margin above the button for space */
  }
  .dashboard-card .submit-button {
    padding: 10px 10px;
    background-color: #cf3838;
    color: rgb(255, 255, 255);
    border: none;
    font-weight: 800;
    font-size: 16px;
    border-radius: 8px;
    margin-bottom: 2px;
    cursor: pointer;
    width: 100%; 
    margin-top: 3px; 
  }
}













.space-portal-button {
  position: absolute;
  top: 70%;
  left: 50%;
  width: 70%;
  transform: translate(-50%, -50%);
  background-color: #000000; 

  background-image: linear-gradient(to right, #000000, #000000, #000000);

  color: #ffffff;
  border: 1px solid #2e2759;
  padding: 15px 30px;
  font-size: 18px;
  cursor: pointer;
  border-radius: 50px;
  box-shadow: 0 0 20px #5433FF, 0 0 30px #A5FECB;
  text-shadow: 0 0 3px #000000;
  animation: expanding-universe 2s infinite ease-in-out;
}

.space-portal-button:hover {
  transform: translate(-50%, -50%) scale(1.1); /* Slight zoom on hover */
}

@keyframes expanding-universe {
  0%, 100% {
      /* box-shadow: 0 0 20px #5433FF, 0 0 30px #A5FECB; */
      box-shadow: 0 0 60px #e4c206, 0 0 30px #e4c206;

  }
  50% {
      box-shadow: 0 0 800px #e4c206, 0 0 60px #e4c206; /* Expanded shadow */
  }
}






/* .card {
  display: none;
  position: absolute;
  top: 50%; 
  left: 50%; 
  transform: translate(-50%, -50%);
  background-color: #000000; 
  color: #ffffff;
  border: 1px solid #2e2759;
  padding: 20px; 
  font-size: 18px; 
  border-radius: 20px; 
  box-shadow: 0 0 20px #5433FF, 0 0 30px #A5FECB; 
  text-shadow: 0 0 3px #000000;
  width: 300px; 
  height: auto; 
  opacity: 0; 
  transition: opacity 0.5s ease; 
}

.space-portal-button2:hover + .card {
  display: block;
  opacity: 1;
} */

.card9 {
  background-image: linear-gradient(to right, #000000, #242323, #000000);

  visibility: hidden;
  position: absolute;
  top: 50%; 
  left: 50%;
  transform: translate(-50%, -200px) scale(0.5); 
  opacity: 0; 
  transition: all 1s ease; 
  background-color: #000000; 
  color: #ffffff;
  border: 1px solid #ffffff;
  padding: 20px; 
  font-size: 20px; 
  border-radius: 20px; 
  box-shadow: 0 0 20px #ffffff, 0 0 30px #ffffff; 
  /* text-shadow: 0 0 3px #e4c206; */
  width: 600px; 
  height: auto;
  letter-spacing: 1.5px; 
}

.space-portal-button2:hover + .card9, 
.space-portal-button2:focus + .card9  {
  visibility: visible;
  opacity: 1;
  transform: translate(-50%, -200px) scale(1); 
}


@media screen and (max-width: 1344px) {
  .card9 {
      display: none;
  }
  .space-portal-button2:hover + .card9, 
  .space-portal-button2:focus + .card9 {
      display: none; /* Ensures that hover effects are also disabled on mobile */
  }
}



.space-portal-button2 {
  margin: 5px; 
  transform: translate(-50%, -50%);
  background-color: #000000; 

  background-image: linear-gradient(to right, #000000, #242323, #000000);

  color: #ffffff;
  border: 1px solid #000000;
  padding: 15px 30px;
  font-size: 18px;
  cursor: pointer;
  border-radius: 15px;
  box-shadow: 0 0 20px #000000, 0 0 30px #000000;
  text-shadow: 0 0 3px #000000;
  animation: expanding-universe2 2s infinite ease-in-out;
  /* transition: transform 0.8s ease; */
}


.gradient-text {
  background: linear-gradient(to right, rgb(255, 201, 24), red); /* Adjust the colors as desired */
  -webkit-background-clip: text;
  color: transparent; /* This makes the text color transparent, showing the background */
  text-decoration: none; /* Removes underline from links */
  font-weight: 700;
}

/* .btn-position-1 {
  display: inline-block; 
  width: auto;
  position: absolute;
  top: 15%;
  left: 50%;
}
.btn-position-2 {
  display: inline-block; 
  width: auto;
  position: absolute;
  top: 25%;
  left: 50%;
}
.btn-position-3 {
  display: inline-block; 
  width: auto;
  position: absolute;
  top: 35%;
  left: 50%;
}
.btn-position-4 {
  display: inline-block; 
  width: auto;
  position: absolute;
  top: 45%;
  left: 50%;
}

.btn-position-5 {
  display: inline-block; 
  width: auto;
  position: absolute;
  top: 70%;
  left: 50%;

} */

.btn-position-1 {
  position: absolute;
  font-size: 32px;
  top: 20%;
  left: 147px;
  width: 240px;
  /* left: 160px;
  width: 270px; */
}
.btn-position-2 {
  position: absolute;
  font-size: 32px;
  left: 160px;
  width: 270px;
  top: 30%;
  /* left: 145px;
  width: 240px; */

}
.btn-position-3 {
  position: absolute;
  font-size: 32px;
  top: 40%;
  /* left: 160px;
  width: 270px; */
  left: 160px;
  width: 270px;
}
.btn-position-4 {
  position: absolute;
  font-size: 32px;
  top: 50%;
  left: 147px;
  width: 240px;
  /* left: 160px;
  width: 270px; */

}
.btn-position-5 {
position: absolute;
top: 60%;
left: 200px;
font-size: 32px;
width: 350px;
}


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

  .space-portal-button2 {

  
    margin: 5px; 
    transform: translate(-50%, -50%);
    background-color: #000000; 
  
    background-image: linear-gradient(to right, #000000, #242323, #000000);
  
    color: #ffffff;
    border: 1px solid #000000;
    padding: 15px 30px;
    font-size: 18px;
    cursor: pointer;
    border-radius: 15px;
    box-shadow: 0 0 20px #000000, 0 0 30px #000000;
    text-shadow: 0 0 3px #000000;
    animation: expanding-universe2 2s infinite ease-in-out;
  }
  

  .btn-position-1 {
    display:none;
    position: absolute;
    font-size: 20px;
    top: 20%;
    /* left: 110px;
    width: 190px; */
    left: 102px;
    width: 170px;
  }
  .btn-position-2 {
    display:none;
    position: absolute;
    font-size: 20px;
    top: 30%;
    left: 106px;
    width: 180px;
    /* left: 100px;
    width: 170px; */
  
  }
  .btn-position-3 {
    display:none;
    position: absolute;
    font-size: 20px;
    top: 40%;
    /* left: 105px;
    width: 180px; */
      left: 105px;
    width: 180px;
  }
  .btn-position-4 {
    display:none;
    position: absolute;
    font-size: 20px;
    top: 50%;
    left: 102px;
    width: 170px;
    /* left: 105px;
    width: 180px; */
  
  }
  .btn-position-5 {
  display:none;
  position: absolute;
  top: 60%;
  left: 140px;
  font-size: 20px;
  width: 245px;
  
  }

}




.center-imageqqq {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 60%;
  border-radius: 10px;
  border: 2px solid #f3d426;
}

@media screen and (max-width: 1024px) {
  .center-imageqqq {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 70%;
  }
}

@media screen and (max-width: 500px) {
  .center-imageqqq {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 90%;
  }
}

/* .btn-position-1 {
  display: inline-block; width: auto;
  position: absolute;
  top: 15%;
  left: 50%;
}
.btn-position-2 {
  display: inline-block; width: auto;
  position: absolute;
  top: 25%;
  left: 50%;
}
.btn-position-3 {
  display: inline-block; width: auto;
  position: absolute;
  top: 35%;
  left: 50%;
}
.btn-position-4 {
  display: inline-block; width: auto;
  position: absolute;
  top: 45%;
  left: 50%;
}

.btn-position-5 {
  position: absolute;
  top: 70%;
  left: 50%;
  width: 70%;
  font-size: 24px;
} 

@media only screen and (min-width: 1344px) {
  .btn-position-1 {
        position: absolute;
        font-size: 32px;
        top: 20%;
        left: 20%;
    }
    .btn-position-2 {
        position: absolute;
        font-size: 32px;
        top: 20%;
        left: 40%;
    }
    .btn-position-3 {
        position: absolute;
        font-size: 32px;
        top: 20%;
        left: 60%;
    }
    .btn-position-4 {
        position: absolute;
        font-size: 32px;
        top: 20%;
        left: 80%;
    }
    .btn-position-5 {
      position: absolute;
      top: 70%;
      left: 50%;
      width: 70%;
      font-size: 32px;
  } 

}*/

.space-portal-button2:hover {
  transform: translate(-50%, -50%) scale(1.1); /* Slight zoom on hover */
}








/* .modern-footer {
  background: #20232a;
  color: #61dafb;
  text-align: center;
  padding: 20px;
  position: relative;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.footer-content {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  padding: 20px;
}

.footer-brand h1 {
  font-size: 2em;
  margin: 0;
}

.footer-links {
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-link {
  color: #61dafb;
  text-decoration: none;
  margin: 0 10px;
  position: relative;
  overflow: hidden;
}

.footer-link::after {
  content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #61dafb;
  transform-origin: bottom right;
  transition: transform 0.3s ease-out;
}

.footer-link:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.footer-social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
}

.social-icon-link img {
  height: 30px;
  margin: 0 10px;
  transition: transform 0.3s ease;
}

.social-icon-link:hover img {
  transform: scale(1.1);
}

.footer-bottom-text {
  font-size: 0.75em;
  padding-top: 10px;
  border-top: 1px solid #333;
}

.footer-bottom-text a {
  color: #61dafb;
  text-decoration: none;
  margin: 0 5px;
}

.footer-bottom-text a:hover {
  text-decoration: underline;
} */

.futuristic-footer {
  background-color: #0a0a0a;
  color: #fff;
  padding: 40px 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  position: relative;
  overflow: hidden;
}

.futuristic-footer:before {
  content: '';
  position: absolute;
  top: 0; left: -100%; right: -100%; bottom: 0;
  background: linear-gradient(50deg, #000000, #000000, #000000);
  background-size: 250% 100%; /* Ensuring enough background to slide */
  z-index: 0;
  /* animation: slideBG 8s linear infinite; */
  will-change: background-position; /* Optimizes the property to be animated */
}

@keyframes slideBG {
  0% {
    background-position: 100% 0;
  }
  100% {
    background-position: 0 0;
  }
}

/* The rest of your CSS remains unchanged */


.futuristic-footer * {
  position: relative;
  z-index: 1;
}

.futuristic-brand-area {
  text-align: center;
  margin-bottom: 30px;
  margin-top: 20px;
}

.futuristic-brand {
  font-size: 2.4rem;
  text-shadow: 0 0 20px #bebebe, 0 0 30px #ffffff;


  color: #ffffff;
  text-transform: none; /* Change to 'none' to remove uppercase */
  letter-spacing: 1.5px;
  transition: all 0.3s ease;
  font-weight: 800;
  text-decoration: none; /* Add this line to remove the underline */
}


.futuristic-brand:hover {
  /* text-shadow: 0 0 15px #ffffff; */
  color: #fff;
  letter-spacing: 4px; 
  
}

.futuristic-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 30px;
  font-weight: 700;
}

.nav-link {
  color: #bbb;
  font-size: 40px;
  /* text-shadow:
  0 0 10px #ffffff, 
  0 0 20px #ffffff, 
  0 0 30px #929292, 
  0 0 40px #929292, 
  0 0 70px #3a3a3a, 
  0 0 80px #3a3a3a, 
  0 0 100px #ffffff; */
  /* text-shadow: 0 0 20px #ffffff, 0 0 30px #ffffff; */
  font-weight: 600;
  margin: 0 15px;
  transition: color 0.3s ease;
  text-decoration: none;
  letter-spacing: 1px; 
}

.futuristic-nav .nav-link {
  color: #ffffff;
  font-size: 20px;
  /* text-shadow:
  0 0 10px #ffffff, 
  0 0 20px #ffffff, 
  0 0 30px #929292, 
  0 0 40px #929292, 
  0 0 70px #3a3a3a, 
  0 0 80px #3a3a3a, 
  0 0 100px #ffffff; */
  /* text-shadow: 0 0 20px #ffffff, 0 0 30px #ffffff; */
  font-weight: 600;
  margin: 0 15px;
  transition: color 0.3s ease;
  text-decoration: none;
  letter-spacing: 1px; 
}


.futuristic-nav .nav-link:hover {
  color: #fff;
  letter-spacing: 3px; 
}

.nav-link:hover {
  color: #fff;
  /* letter-spacing: 3px;  */
}

.futuristic-social-media {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
}

.social-link {
  margin: 0 10px;
  width: 80px;
  height: auto;
  display: inline-block;
  transition: transform 0.3s ease;
}

.social-link:hover {
  transform: translateY(-8px) scale(1.5);
}


.social-link img {
  width: 80px;
  height: auto;
  border-radius: 50%;
  
}

.futuristic-bottom-text {
  font-size: 1.1rem;
  text-align: center;
  opacity: 0.8;
  color: #ffffff;
  font-weight: 600;
  /* text-shadow: 0 0 20px #ffffff, 0 0 30px #ffffff; */
}

.futuristic-bottom-text a {
  color: #ffffff;
  text-decoration: none;
  margin: 0 5px;
  transition: color 0.3s;
}

.futuristic-bottom-text a:hover {
  color: #fff;
  text-decoration: underline;
}
















@keyframes expanding-universe2 {
  0%, 100% {
      /* box-shadow: 0 0 20px #5433FF, 0 0 30px #A5FECB; #e4c206   */
      box-shadow: 0 0 20px #ffffff, 0 0 30px #ffffff;

  }
  50% {
      box-shadow: 0 0 40px #ffffff, 0 0 40px #ffffff; /* Expanded shadow */
  }
}

  /* background-image: linear-gradient(to right, #24243e, #302b63, #0f0c29); */
  /* background-color: #0f0c29;  */

/* .space-portal-button2 {
  position: absolute;
  top: 70%;
  left: 50%;
  width: 70%;
  transform: translate(-50%, -50%);
  background-color: #000000; 

  background-image: linear-gradient(to right, #000000, #000000, #000000);

  color: #ffffff;
  border: 1px solid #2e2759;
  padding: 15px 30px;
  font-size: 18px;
  cursor: pointer;
  border-radius: 50px;
  box-shadow: 0 0 20px #5433FF, 0 0 30px #A5FECB;
  text-shadow: 0 0 3px #000000;
  animation: expanding-universe2 2s infinite ease-in-out;
} */




/* .nav-link, .nav-link.special-link {
  color: #ffffff; 
  text-decoration: none; 
  padding: 10px 15px; 
  transition: color 0.3s, transform 0.3s;
  text-shadow: 0 0 3px #000000; 
}

.nav-link:hover, .nav-link.special-link:hover {
  color: #A5FECB;
  transform: scale(1.1); 
}

@keyframes glowing {
  0%, 100% {
      text-shadow: 0 0 10px #5433FF, 0 0 20px #A5FECB;
  }
  50% {
      text-shadow: 0 0 20px #5433FF, 0 0 30px #A5FECB; 
  }
}

.nav-link, .nav-link.special-link {
  animation: glowing 3s infinite ease-in-out;
}

.nav-link.special-link {
  color: rgb(228, 194, 6); 
} */

/* .space-portal-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #0f0c29; 
  background-image: linear-gradient(to right, #24243e, #302b63, #0f0c29);
  color: #ffffff;
  border: 1px solid #2e2759;
  padding: 15px 30px;
  font-size: 18px;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  border-radius: 50px;
  box-shadow: 0 0 20px #5433FF, 0 0 30px #A5FECB;
  text-shadow: 0 0 3px #000000;
  animation: pulse 2s infinite ease-in-out;
}

.space-portal-button:hover {
  transform: translate(-50%, -50%) scale(1.1); 
  animation: pulse-hover 2s infinite ease-in-out; 
}

@keyframes pulse {
  0%, 100% {
      box-shadow: 0 0 20px #5433FF, 0 0 30px #A5FECB;
  }
  50% {
      box-shadow: 0 0 25px #5433FF, 0 0 35px #A5FECB;
  }
}

@keyframes pulse-hover {
  0%, 100% {
      box-shadow: 0 0 30px #5433FF, 0 0 40px #A5FECB;
  }
  50% {
      box-shadow: 0 0 35px #5433FF, 0 0 45px #A5FECB;
  }
} */



/* .space-portal-button {
  position: absolute;
  top: 50%; 
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #0f0c29; 
  background-image: linear-gradient(to right, #24243e, #302b63, #0f0c29);
  color: #ffffff;
  border: 1px solid #2e2759;
  padding: 15px 30px;
  font-size: 18px;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;

  border-radius: 50px;

  box-shadow: 0 0 20px #5433FF, 0 0 30px #A5FECB;

  text-shadow: 0 0 3px #000000;
}

.space-portal-button:hover {
  transform: translate(-50%, -50%) scale(1.1); 
  box-shadow: 0 0 30px #5433FF, 0 0 40px #A5FECB; 
}

@keyframes pulse {
  0% {
      box-shadow: 0 0 20px #5433FF, 0 0 30px #A5FECB;
  }
  50% {
      box-shadow: 0 0 25px #5433FF, 0 0 35px #A5FECB;
  }
  100% {
      box-shadow: 0 0 20px #5433FF, 0 0 30px #A5FECB;
  }
}

.space-portal-button {
  animation: pulse 2s infinite ease-in-out;
} */



  
  
  /* Container for the card and Spline viewer */
  .container {
    display: flex;
    justify-content: space-between;
    align-items: start;
    height: 100vh; /* Adjust the height as necessary */
  }

  /* Style for the card */
  .card {
    width: 40%; /* Adjust the width as necessary */
    padding: 20px;
    margin: 20px;
    background: #f7f7f7; /* Light grey background */
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Add a subtle shadow */
  }

  /* Style for the Spline element */
  .spline {
    width: 60%; /* Adjust the width as necessary */
    margin: 20px;
    /* If you want to set a max-height or control overflow, you can add those properties here */
  }

  /* Add responsiveness if needed */
  @media (max-width: 768px) {
    .container {
      flex-direction: column;
    }

    .card, .spline {
      width: 100%;
    }
  }
















/* for hospital test */

.highlight {
  background-color: #add8e6;
}































.table-container {
  /* display: flex;
  flex-direction: column; 
  align-items: stretch; 
  width: 100%; */
  /* width: 100%;
  border-collapse: collapse; */

  background-color: rgb(255, 255, 255);
  padding: 20px;
  border: 1px solid rgb(0, 0, 0);
  border-radius: 10px;
  width: 300px; /* Adjust as needed */
  box-shadow: 0px 0px 10px 0px #e4c206;
  overflow: hidden; /* To maintain border-radius on the table */
  margin: auto; /* Center the table on the page */
  width: 80%; /* Adjust the percentage as needed */
  max-width: 800px; 
}

.table-container table {
  width: 100%; /* Table fills the container */
  border-collapse: collapse; /* For cleaner look of the internal borders */
}

.table-container th, .table-container td {
  /* white-space: nowrap; */
  padding: 10px; /* Padding for table cells */
  border: 1px solid rgb(0, 0, 0); /* Borders for cells */
  text-align: left; /* Align text to the left. Adjust as needed */
  font-size: 24px; /* Adjust text size as needed */
  font-weight: bold;
}

h1.no-marginggg {
  font-family: 'Helvetica Neue', sans-serif; /* A sleek, modern font */
  color: #555; /* A softer dark color for a more elegant look */
  font-size: 2.2rem; /* A slightly larger size for prominence */
  font-weight: 300; /* Lighter font-weight for a more refined appearance */
  margin: 0; /* Removes default margin */
  padding: 20px 0; /* More vertical padding for a spacious look */
  text-align: center; /* Keeps the text centered */
  letter-spacing: 1px; /* Increases letter spacing for a sophisticated touch */
  background-color: transparent; /* A transparent background for simplicity */
  transition: all 0.3s ease; /* Smooth transition for hover effects */
}

h1.no-marginggg2 {
  font-family: 'Helvetica Neue', sans-serif; /* A sleek, modern font */
  color: #555; /* A softer dark color for a more elegant look */
  font-size: 1.8rem; /* A slightly larger size for prominence */
  font-weight: 300; /* Lighter font-weight for a more refined appearance */
  margin: 0; /* Removes default margin */
  padding: 5px 0; /* More vertical padding for a spacious look */
  text-align: center; /* Keeps the text centered */
  letter-spacing: 1px; /* Increases letter spacing for a sophisticated touch */
  background-color: transparent; /* A transparent background for simplicity */
  transition: all 0.3s ease; /* Smooth transition for hover effects */
}

h1.no-marginggg:hover{
  color: #7F8C8D; /* Changes text color on hover to something soft yet noticeable */
  letter-spacing: 2px; /* Slightly increases letter spacing on hover */
}












@keyframes gradientAnimation {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.modern-heading {
  font-size: 2.5em;
  text-align: center;
  font-weight: bold;
  margin: 20px 0;
  background: linear-gradient(45deg, #6D83F2, #F2545B, #FDC830);
  background-size: 200% 200%;
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  animation: gradientAnimation 5s ease infinite;
  transition: text-shadow 0.3s ease;
}

.modern-heading:hover {
  text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
}


@keyframes typing {
  from { width: 0; }
  to { width: 30%; }
}

@keyframes blink-caret {
  50% { border-color: transparent; }
}

.typewriter-heading {
  font-size: 3.8em;
  font-weight: bold;
  background: linear-gradient(45deg, #0028f0, #ec2b35, #ffbd06);
  background-size: 200% 200%;
  color: transparent;
  padding: 7px;
  -webkit-background-clip: text;
  background-clip: text;
  /* color: #333; */
  overflow: hidden; /* Ensures the content doesn't exceed its container */
  border-right: .3em solid #333; /* The typewriter cursor */
  white-space: nowrap; /* Keeps the text on a single line */
  margin: 20px auto; 
  letter-spacing: .15em; /* Adjust the letter spacing */
  line-height: 1.2; 
  animation: 
      typing 3.5s steps(25, end),
      blink-caret .75s step-end infinite;
    
}

.typewriter-heading::after {
  content: '';
  animation: blink 1s infinite;
}




.typewriter-headingsss {
  font-size: 3.8em;
  font-weight: bold;
  background: linear-gradient(45deg, #0028f0, #ec2b35, #ffbd06);
  background-size: 200% 200%;
  color: transparent;
  padding: 5px;
  -webkit-background-clip: text;
  background-clip: text;
  /* color: #333; */
  overflow: hidden; /* Ensures the content doesn't exceed its container */
  border-right: .3em solid #333; /* The typewriter cursor */
  white-space: nowrap; /* Keeps the text on a single line */
  margin: 20px auto; 
  letter-spacing: .15em; /* Adjust the letter spacing */
  animation: 
      typing 3.5s steps(25, end),
      blink-caret .75s step-end infinite;
}

.typewriter-headingsss::after {
  content: '';
  animation: blink 1s infinite;
}


h2.typewriter-heading {
  font-size: 3em;
  font-weight: bold;
  background: linear-gradient(45deg, #0028f0, #ec2b35, #ffbd06);

  background-size: 200% 200%;
  color: transparent;
  padding: 5px;
  -webkit-background-clip: text;
  background-clip: text;
  /* color: #333; */
  overflow: hidden; /* Ensures the content doesn't exceed its container */
  border-right: .3em solid #333; /* The typewriter cursor */
  white-space: nowrap; /* Keeps the text on a single line */
  margin: 20px auto; 
  letter-spacing: .15em; /* Adjust the letter spacing */
  animation: 
      typing 3.5s steps(40, end),
      blink-caret .75s step-end infinite;
}

h2.typewriter-heading::after {
  content: '';
  animation: blink 1s infinite;
}






.threeD-heading {
  font-size: 2.5em;
  color: #333;
  text-align: center;
  font-weight: bold;
  margin: 20px 0;
  perspective: 150px; /* Gives a sense of depth */
  perspective-origin: 50% 50%;
}

.threeD-heading::before {
  content: attr(title);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  color: #8a8a8a;
  text-shadow: 2px 2px 2px #aaa;
  transform: translateZ(-20px) scale(0.9);
  opacity: 0.7;
}

.threeD-heading:hover::before {
  transform: translateZ(-25px) scale(0.85);
  opacity: 0.5;
}


















.centered-td {
  text-align: center; /* Center-aligns content within the cell */
  vertical-align: middle; /* Vertically centers content */
}

.modern-img {
  display: inline-block;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
  /* max-width: 100%;
  height: auto; */
  width: 100px;
  height: 100px;
  border: 1px solid #ffffff;
  /* text-align: center; */
  
  }
  
  .modern-img:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  transform: scale(1.05);
  }
  
  .round826-image {
    border-radius: 50%; /* Makes the border round */
    /* border: 5px solid #4CAF50; */
    width: 80px; /* Adjust the size as needed */
    height: 80px; /* Ensures the image is a perfect circle */
    object-fit: cover; /* Ensures the image covers the entire element without distortion */
    transition: transform 0.6s ease-in-out;
}

.no-hover-effect826:hover {
  box-shadow: none;
  transform: none;
}
.round826-image:hover {
  /* transform: rotate(1080deg) scale(1.1); */
  transform: rotate(1080deg);
}



h2.no-marginggg {
  font-family: 'Helvetica Neue', sans-serif; /* A sleek, modern font */
  color: #555; /* A softer dark color for a more elegant look */
  font-size: 2.2rem; /* A slightly larger size for prominence */
  font-weight: 300; /* Lighter font-weight for a more refined appearance */
  margin: 0; /* Removes default margin */
  padding: 20px 0; /* More vertical padding for a spacious look */
  text-align: center; /* Keeps the text centered */
  letter-spacing: 1px; /* Increases letter spacing for a sophisticated touch */
  background-color: transparent; /* A transparent background for simplicity */
  transition: all 0.3s ease; /* Smooth transition for hover effects */
}

h2.no-marginggg:hover{
  color: #7F8C8D; /* Changes text color on hover to something soft yet noticeable */
  letter-spacing: 2px; /* Slightly increases letter spacing on hover */
}



h2.no-margingggr {
  font-family: 'Helvetica Neue', sans-serif; /* A sleek, modern font */
  color: #555; /* A softer dark color for a more elegant look */
  font-size: 2.2rem; /* A slightly larger size for prominence */
  font-weight: 300; /* Lighter font-weight for a more refined appearance */
  margin: 5px; /* Removes default margin */
  padding: 20px 0; /* More vertical padding for a spacious look */
  text-align: center; /* Keeps the text centered */
  letter-spacing: 1px;
  border: 2px solid #e4c206;
  border-radius: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.8);
  background-color: transparent; /* A transparent background for simplicity */
  transition: all 0.3s ease; 
  max-height: 400px;
}

/* h2.no-margingggr:hover{
  color: #7F8C8D; 
  letter-spacing: 2px; 
} */



h3.no-marginggg {
  font-family: 'Helvetica Neue', sans-serif; /* A sleek, modern font */
  color: #555; /* A softer dark color for a more elegant look */
  font-size: 1.7rem; /* A slightly larger size for prominence */
  font-weight: 300; /* Lighter font-weight for a more refined appearance */
  margin: 0; /* Removes default margin */
  padding: 20px 0; /* More vertical padding for a spacious look */
  text-align: center; /* Keeps the text centered */
  letter-spacing: 1px; /* Increases letter spacing for a sophisticated touch */
  background-color: transparent; /* A transparent background for simplicity */
  transition: all 0.3s ease; /* Smooth transition for hover effects */
}

h3.no-marginggg:hover{
  color: #7F8C8D; /* Changes text color on hover to something soft yet noticeable */
  letter-spacing: 2px; /* Slightly increases letter spacing on hover */
}

h4.no-marginggg {
  font-family: 'Helvetica Neue', sans-serif; /* A sleek, modern font */
  color: #555; /* A softer dark color for a more elegant look */
  font-size: 1.2rem; /* A slightly larger size for prominence */
  font-weight: 300; /* Lighter font-weight for a more refined appearance */
  margin: 0; /* Removes default margin */
  padding: 3px 0; /* More vertical padding for a spacious look */
  text-align: center; /* Keeps the text centered */
  letter-spacing: 1px; /* Increases letter spacing for a sophisticated touch */
  background-color: transparent; /* A transparent background for simplicity */
  transition: all 0.3s ease; /* Smooth transition for hover effects */
}

h4.no-marginggg:hover{
  color: #7F8C8D; /* Changes text color on hover to something soft yet noticeable */
  letter-spacing: 2px; /* Slightly increases letter spacing on hover */
}

h4.no-margingggy {
  font-family: 'Helvetica Neue', sans-serif; /* A sleek, modern font */
  color: #555; /* A softer dark color for a more elegant look */
  font-size: 1.2rem; /* A slightly larger size for prominence */
  font-weight: 300; /* Lighter font-weight for a more refined appearance */
  margin: 0; /* Removes default margin */
  padding: 3px 0; /* More vertical padding for a spacious look */
  text-align: center; /* Keeps the text centered */
  letter-spacing: 1px; /* Increases letter spacing for a sophisticated touch */
  background-color: transparent; /* A transparent background for simplicity */
  transition: all 0.3s ease; /* Smooth transition for hover effects */
}

/* h4.no-margingggy:hover{
  color: #7F8C8D; 
  letter-spacing: 2px; 
} */






























.emoji-badge {
  background-color: #f2f2f2; /* Light grey background */
  border-radius: 50%; /* Makes the badge circular */
  padding: 5px; /* Padding around the emoji */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); /* Subtle shadow for depth */
  margin: 0 10px; /* Adds horizontal space around the badge */
  font-size: 1.2em; /* Adjust emoji size */
  display: inline-flex; /* Keeps the badge inline with the text */
  align-items: center; /* Centers the emoji vertically */
  justify-content: center; /* Centers the emoji horizontally */
  width: 1.5em; /* Fixed width */
  height: 1.5em; /* Fixed height */
  transition: transform 0.2s ease; /* Smooth transition for hover effect */
}

.emoji-badge:hover {
  transform: scale(1.1); /* Slightly enlarges the badge on hover */
  cursor: pointer; /* Changes the cursor to indicate it's clickable (if needed) */
}


/* .modal {
  display: none;
  position: fixed;
  z-index: 2;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.4); 
}

.modal-content {
  background-color: #fefefe;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 10%;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  border-radius: 5px;
}

.close-btn {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

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

p {
  font-family: 'Helvetica Neue', sans-serif; /* A sleek, modern font */
  color: #555; /* A softer dark color for a more elegant look */
  /* font-size: 3rem;  */
  font-weight: 600; /* Lighter font-weight for a more refined appearance */
  margin: 0; /* Removes default margin */
  padding: 3px 0; /* More vertical padding for a spacious look */
  text-align: left; /* Keeps the text centered */
  letter-spacing: 1.5px; /* Increases letter spacing for a sophisticated touch */
  background-color: transparent; /* A transparent background for simplicity */
  /* transition: all 0.3s ease;  */
  font-size: 32px;
}











/* 
.payment-wrapper {
  max-width: 600px;
  margin: 30px auto;
  padding: 20px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.payment-header {
  text-align: center;
  margin-bottom: 20px;
  font-size: 24px;
  color: #333;
}
.payment-option {
  border: 1px solid #ddd;
  margin-bottom: 15px;
  padding: 15px;
  border-radius: 5px;
  transition: box-shadow 0.3s ease;
}
.payment-option:hover {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}
.option-title {
  font-size: 18px;
  margin-bottom: 5px;
  color: #333;
}
.option-description {
  font-size: 14px;
  color: #666;
}
.option-button {
  display: inline-block;
  padding: 10px 15px;
  margin-top: 10px;
  background-color: #007bff;
  color: white;
  text-align: center;
  border-radius: 4px;
  text-decoration: none;
  transition: background-color 0.2s ease;
}
.option-button:hover {
  background-color: #0056b3;
} */






.payment-wrapper {
  max-width: 600px;
  margin: 40px auto;
  padding: 20px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.payment-header {
  text-align: center;
  font-size: 26px;
  margin-bottom: 30px;
  color: #333;
  font-weight: 600;
}

.payment-option {
  background: linear-gradient(145deg, #e6e6e6, #ffffff);
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
  transition: transform 0.2s;
}

/* .payment-option:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
} */

.option-title {
  font-size: 20px;
  color: #333;
  margin-bottom: 10px;
}

.option-description {
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
}

.option-button {
  display: inline-block;
  background-color: #007bff;
  color: white;
  padding: 10px 20px;
  text-align: center;
  border-radius: 5px;
  text-decoration: none;
  font-size: 16px;
  transition: background-color 0.3s;
}

.option-button:hover {
  background-color: #0056b3;
}

.terms-checkbox {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}
.terms-checkbox label {
  margin-left: 10px; /* Spacing between checkbox and label */
}
.option-button:disabled {
  background-color: #cccccc;
}







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



  .no-margin {
    margin: 0;
    position: static;
    font-size: 16px;
  }

  h1.no-marginggg {
    font-family: 'Helvetica Neue', sans-serif; /* A sleek, modern font */
    color: #555; /* A softer dark color for a more elegant look */
    font-size: 1.8rem; /* A slightly larger size for prominence */
    font-weight: 300; /* Lighter font-weight for a more refined appearance */
    margin: 0; /* Removes default margin */
    padding: 20px 0; /* More vertical padding for a spacious look */
    text-align: center; /* Keeps the text centered */
    letter-spacing: 1px; /* Increases letter spacing for a sophisticated touch */
    background-color: transparent; /* A transparent background for simplicity */
    transition: all 0.3s ease; /* Smooth transition for hover effects */
  }


  h3.no-marginggg {
    font-family: 'Helvetica Neue', sans-serif; /* A sleek, modern font */
    color: #555; /* A softer dark color for a more elegant look */
    font-size: 1.3rem; /* A slightly larger size for prominence */
    font-weight: 300; /* Lighter font-weight for a more refined appearance */
    margin: 0; /* Removes default margin */
    padding: 20px 0; /* More vertical padding for a spacious look */
    text-align: center; /* Keeps the text centered */
    letter-spacing: 1px; /* Increases letter spacing for a sophisticated touch */
    background-color: transparent; /* A transparent background for simplicity */
    transition: all 0.3s ease; /* Smooth transition for hover effects */
  }
  

  h2.no-marginggg{
    font-family: 'Helvetica Neue', sans-serif; /* A sleek, modern font */
    color: #555; /* A softer dark color for a more elegant look */
    /* font-size: 2.1rem;  */
    font-weight: 300; /* Lighter font-weight for a more refined appearance */
    margin: 0; /* Removes default margin */
    padding: 3px 0; /* More vertical padding for a spacious look */
    text-align: center; /* Keeps the text centered */
    letter-spacing: 1px; /* Increases letter spacing for a sophisticated touch */
    background-color: transparent; /* A transparent background for simplicity */
    transition: all 0.3s ease; /* Smooth transition for hover effects */
    font-size: 26px;
  }
  h4.no-marginggg {
    font-family: 'Helvetica Neue', sans-serif; /* A sleek, modern font */
    color: #555; /* A softer dark color for a more elegant look */
    /* font-size: 1.2rem; */
    font-weight: 300; /* Lighter font-weight for a more refined appearance */
    margin: 0; /* Removes default margin */
    padding: 3px 0; /* More vertical padding for a spacious look */
    text-align: center; /* Keeps the text centered */
    letter-spacing: 1px; /* Increases letter spacing for a sophisticated touch */
    background-color: transparent; /* A transparent background for simplicity */
    transition: all 0.3s ease; /* Smooth transition for hover effects */
    font-size: 14px;
  }

  .no-margin99 {
    margin: 0;
    position: static;
    font-size: 24px;
  }

  .table-container {

  
    background-color: rgb(255, 255, 255);
    padding: 20px;
    border: 1px solid rgb(0, 0, 0);
    border-radius: 10px;
    width: 300px; /* Adjust as needed */
    box-shadow: 0px 0px 10px 0px #e4c206;
    overflow: hidden; /* To maintain border-radius on the table */
    margin: auto; /* Center the table on the page */
    width: 80%; /* Adjust the percentage as needed */
    max-width: 800px; 
  }
  
  .table-container table {
    width: 100%; /* Table fills the container */
    border-collapse: collapse; /* For cleaner look of the internal borders */
  }
  
  .table-container th, .table-container td {
    /* white-space: nowrap; */
    padding: 10px; /* Padding for table cells */
    border: 1px solid rgb(0, 0, 0); /* Borders for cells */
    text-align: left; /* Align text to the left. Adjust as needed */
    font-size: 18px; /* Adjust text size as needed */
    font-weight: bold;
  }


}

.table-container6 {
  /* display: flex;
  flex-direction: column; 
  align-items: stretch; 
  width: 100%; */
  /* width: 100%;
  border-collapse: collapse; */

  background-color: rgb(255, 255, 255);
  padding: 20px;
  border: 1px solid rgb(0, 0, 0);
  border-radius: 10px;
  width: 300px; /* Adjust as needed */
  box-shadow: 0px 0px 10px 0px #e4c206;
  overflow: hidden; /* To maintain border-radius on the table */
  margin: auto; /* Center the table on the page */
  width: 80%; /* Adjust the percentage as needed */
  max-width: 800px; 
}


.table-container th {
  background-color: rgb(240, 240, 240); /* Slightly different background for headers */
}


.table-container6 table {
  width: 100%; /* Table fills the container */
  border-collapse: collapse; /* For cleaner look of the internal borders */
}

.table-container6 th, .table-container6 td {
  /* white-space: nowrap; */
  padding: 10px; /* Padding for table cells */
  border: 1px solid rgb(0, 0, 0); /* Borders for cells */
  text-align: left; /* Align text to the left. Adjust as needed */
  font-size: 24px; /* Adjust text size as needed */
  font-weight: bold;
}

.table-container6 th {
  background-color: rgb(240, 240, 240); /* Slightly different background for headers */
}

@media screen and (max-width: 830px) {
  .table-container6 th, .table-container6 td {
    padding: 8px; /* Smaller padding for smaller screens */
    font-size: 22px; /* Smaller font size for readability on small screens */
  }
}


@media screen and (max-width: 700px) {
  .table-container6 th, .table-container6 td {
    padding: 3px; /* Smaller padding for smaller screens */
    font-size: 12px; /* Smaller font size for readability on small screens */
  }
}

@media screen and (max-width: 380px) {
  .table-container6 th, .table-container6 td {
    padding: 3px; /* Smaller padding for smaller screens */
    font-size: 10px; /* Smaller font size for readability on small screens */
  }
}

.table-container2 {
  /* display: flex;
  overflow-x: auto;

  border-collapse: collapse; */

  background-color: rgb(255, 255, 255);
  padding: 20px;
  border: 1px solid rgb(0, 0, 0);
  /* border-radius: 10px; */
  width: 300px; 
  box-shadow: 0px 0px 10px 0px #e4c206;
  overflow: hidden; 
  margin: auto; 
  width: 80%;
  max-width: 800px; 
}

.table-container2 table {
  width: 100%; 
  border-collapse: collapse;


}

.table-container2 th, .table-container2 td {
  white-space: nowrap;
  padding: 10px; /* Padding for table cells */
  border: 1px solid rgb(0, 0, 0); /* Borders for cells */
  text-align: left; /* Align text to the left. Adjust as needed */
  font-size: 18px; /* Adjust text size as needed */
  font-weight: bold;
  /* word-wrap: break-word; */
}

.table-container2 th {
  background-color: rgb(240, 240, 240); /* Slightly different background for headers */
}




















.table-container22 {
  background-color: rgb(255, 255, 255);
  padding: 20px;
  border: none; /* Remove standard border */
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); /* Soft box shadow for 3D effect */
  overflow: hidden;
  margin: auto;
  width: 80%;
  max-width: 800px;
  border-radius: 15px; /* Rounded corners */
}

.table-container22 table {
  width: 100%;
  border-collapse: collapse;
}

.table-container22 th, .table-container22 td {
  white-space: nowrap;
  padding: 15px; /* Increased padding for a more spacious look */
  border-bottom: 2px solid #ddd; /* Light border for each cell */
  text-align: left;
  font-size: 16px;
  font-weight: normal; /* Lighter font-weight for a more modern look */
}

.table-container22 th {
  background-color: #f0f0f0; /* Subtle gradient for header */
  background-image: linear-gradient(to bottom right, #f0f0f0, #e4c206);
  color: #333;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.7); /* Soft text shadow for depth */
  font-weight: bold;
  font-size: 18px;
}

/* Added styles for hover effects on rows for better user experience */
.table-container22 tr:hover {
  background-color: #f5f5f5;
}

/* Modern scrollbar styling */
.table-container22::-webkit-scrollbar {
  width: 12px;
}

.table-container22::-webkit-scrollbar-thumb {
  background-color: #e4c206;
  border-radius: 6px;
  border: 3px solid #f0f0f0;
}




.modal {
  display: none; 
  position: fixed; 
  z-index: 2000; 
  border-radius: 0px;
  left: 0;
  top: 0;
  width: 100%; 
  height: 100%; 
  overflow: auto; 
  background-color: rgb(0,0,0); 
  background-color: rgba(0,0,0,0.4); 
  }
  
  .modal-content {
  border-radius: 10px;
  background-color: #fefefe;
  margin: 15% auto; 
  padding: 20px;
  border: 1px solid #888;
  width: 80%; 
  max-width: 500px; 
  animation: fadeIn 0.3s ease-in-out;
  }
  
  /* The Close Button */
  .close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  }
  
  .close:hover,
  .close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
  }
  
  /* Media query for mobile devices */
  @media (max-width: 768px) {
  .modal-content {
     margin: 10% auto; 
     width: 90%; 
  }

  .close {
     font-size: 22px; /* Slightly smaller font size for close button */
  }
  }
  
  
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(-20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .close2 {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  }
  
  .close2:hover,
  .close2:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
  }
  
  .close3{
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  }
  
  .close3:hover,
  .close3:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
  }
  
  .image-containeruuu {
  display: flex; /* Use flexbox for alignment */
  justify-content: center; /* Center horizontally */
  align-items: center; /* Center vertically */
  }
  
  .modern-img {
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
  /* max-width: 100%;
  height: auto; */
  margin-left: 10px;
  width: 120px;
  height: 120px;
  border: 1px solid #ffffff;
  /* text-align: center; */
  
  }
  
  .modern-img:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  transform: scale(1.05);
  }








.table-container22m {
  background-color: rgb(255, 255, 255);
  padding: 20px;
  border: none; /* Remove standard border */
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); /* Soft box shadow for 3D effect */
  overflow: hidden;
  margin: auto;
  width: 80%;
  max-width: 800px;
  border-radius: 15px; /* Rounded corners */
}

.table-container22m table {
  width: 100%;
  border-collapse: collapse;
}

.table-container22m th, .table-container22m td {
  /* white-space: nowrap; */
  padding: 15px; /* Increased padding for a more spacious look */
  border-bottom: 2px solid #ddd; /* Light border for each cell */
  text-align: left;
  font-size: 16px;
  font-weight: normal; /* Lighter font-weight for a more modern look */
}

.table-container22m th {
  background-color: #f0f0f0;
  /* background-image: linear-gradient(to bottom right, #f0f0f0, #ffd900); */
  background-image: linear-gradient(to right, #000000 0%, #ffc400 100%);
  color: #ffffff;
  /* text-shadow: 0 1px 1px rgba(255, 255, 255, 0.7); */
  font-weight: bold;
  font-size: 18px;
}




/* .table-container22m tr:hover {
  background-color: #f5f5f5;
} */

/* Modern scrollbar styling */
.table-container22m::-webkit-scrollbar {
  width: 12px;
}

.table-container22m::-webkit-scrollbar-thumb {
  background-color: #e4c206;
  border-radius: 6px;
  border: 3px solid #f0f0f0;
}

@media screen and (max-width: 830px) {
  .table-container22m th, .table-container22m td {
    padding: 8px; /* Smaller padding for smaller screens */
    font-size: 22px; /* Smaller font size for readability on small screens */
  }
}


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

  .table-container22m {
    background-color: rgb(255, 255, 255);
    padding: 20px;
    border: none; /* Remove standard border */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); /* Soft box shadow for 3D effect */
    overflow: hidden;
    margin: auto;
    width: 95%;
    max-width: 800px;
    border-radius: 15px; /* Rounded corners */
  }


  .table-container22m th, .table-container22m td {
    padding: 4px; /* Smaller padding for smaller screens */
    font-size: 12px; /* Smaller font size for readability on small screens */
  }

  .login-btnmqq {
    background-image: linear-gradient(to right, #000000, #3f3e3e, #000000);
    color: #ffffff;
    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.7);
    font-weight: bold;
    font-size: 18px;
    padding: 10px 20px; /* Comfortable padding */
    border: none; /* Remove default border */
    border-radius: 5px; /* Slightly rounded corners */
    transition: all 0.3s ease; /* Smooth transition for hover effects */
    cursor: pointer; /* Cursor changes to pointer to indicate it's clickable */
    outline: none; /* Removes the default focus outline */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Subtle shadow for depth */
  }
  .login-btnm {
    background-image: linear-gradient(to bottom right, #ffffff, #ffd900);
    color: #333;
    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.7);
    font-weight: bold;
    font-size: 14px;
    padding: 10px 20px; /* Comfortable padding */
    border: none; /* Remove default border */
    border-radius: 5px; /* Slightly rounded corners */
    transition: all 0.3s ease; /* Smooth transition for hover effects */
    cursor: pointer; /* Cursor changes to pointer to indicate it's clickable */
    outline: none; /* Removes the default focus outline */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Subtle shadow for depth */
  }
  .login-btnm827 {
    background-image: linear-gradient(to bottom right, #ffffff, #ffd900);
    color: #333;
    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.7);
    font-weight: bold;
    font-size: 14px;
    padding: 10px 20px; /* Comfortable padding */
    border: none; /* Remove default border */
    border-radius: 5px; /* Slightly rounded corners */
    transition: all 0.3s ease; /* Smooth transition for hover effects */
    cursor: pointer; /* Cursor changes to pointer to indicate it's clickable */
    outline: none; /* Removes the default focus outline */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Subtle shadow for depth */
  }
  



}
/* 
@media screen and (max-width: 380px) {
  .table-container22m th, .table-container22m td {
    padding: 6px; 
    font-size: 18px; 
  }
} */





.table-container299 {
  background-color: rgb(255, 255, 255);
  padding: 20px;
  border: 1px solid rgb(0, 0, 0);
  border-radius: 10px;
  box-shadow: 0px 0px 10px 0px #e4c206;
  margin: auto;
  width: 100%; /* Adjust the width to 100% of the container */
  max-width: 800px; /* Maximum width to maintain readability */
  overflow-x: auto; /* Scroll horizontally if the table is wider than the container */
}

.table-container299 table {
  width: 100%; /* Ensure the table takes the full width of its container */
  border-collapse: collapse;
}

.table-container299 th, .table-container299 td {
  white-space: nowrap;
  padding: 10px;
  border: 1px solid rgb(0, 0, 0);
  text-align: left;
  font-size: 24px;
  font-weight: bold;
}

.table-container299 th {
  background-color: rgb(240, 240, 240);
}







.flexible-space {
  min-height: 10vh;
}

.flexible-space-top {
  min-height: 7vh;
}

.flexible-space-one {
  min-height: 1vh;
}


.flexible-space-thirty {
  min-height: 30vh;
}


#profileContainer {
  display: flex;
  justify-content: center;  /* Center children horizontally */
  align-items: center;      /* Center children vertically */
  position: relative;
  width: 150px; /* Adjust size as needed */
  height: 150px; /* Adjust size as needed */
  margin: 0 auto; /* This centers the container horizontally */
}

#profilePic {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #ddd;
  background: #f3f3f3;
}

#profilePic2 {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #ddd;
  background: #f3f3f3;
}

#uploadIcon {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background-color: white;
  /* border-radius: 50%; */
  padding: 5px;
  cursor: pointer;
  transition: transform 0.3s;
}

#uploadIcon:hover {
  scale: 1.1;
}




img {
  -webkit-user-drag: none;
  /* user-drag: none; */
}


#fileInput {
  display: none;
}




/* .form-container {
  background-color: rgb(255, 255, 255);
  padding: 20px;
  border: 1px solid #e4c206(0, 0, 0);
  border-radius: 10px;
  width: 360px;
  box-shadow: 0px 0px 10px 0px #e4c206;
}

@media (max-width: 768px) {
  .form-container {
    background-color: rgb(255, 255, 255);
    padding: 20px;
    border: 1px solid #e4c206(0, 0, 0);
    border-radius: 10px;
    width: 320px;
    box-shadow: 0px 0px 10px 0px #e4c206;
  }
} */


/* .form-container {
  background-color: #f8f8f8; 
  padding: 25px;
  border: none; 
  border-radius: 20px; 
  width: 360px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15); 
  transition: all 0.3s ease-in-out; 
}

.form-container:hover {
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2); 
  transform: translateY(-5px); 
}

@media (max-width: 768px) {
  .form-container {
    width: 90%; 
    margin: 0 auto; 
  }
}

input[type="text"], input[type="email"], select, textarea {
  width: 100%;
  padding: 15px; 
  margin: 10px 0; 
  border: 1px solid #ddd; 
  border-radius: 8px; 
  box-sizing: border-box;
  transition: all 0.3s ease-in-out; 
}

input[type="text"]:focus, input[type="email"]:focus, select:focus, textarea:focus {
  border-color: #e4c206; 
  box-shadow: 0 0 8px #e4c206(255, 16, 95, 0.2); 
}

input[type="submit"] {
  width: 100%;
  background-color: #e4c206; 
  color: white;
  padding: 15px 20px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.3s;
}

input[type="submit"]:hover {
  background-color: #e4c206; 
  transform: scale(1.05); 
} */

/* Style for the background overlay */
#imgOverlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1050;
}

/* Style for the close button */
#closeBtn {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 120px;
  color: white;
  cursor: pointer;
  z-index: 1220;
}









.form-container_dash {
  background: linear-gradient(270deg, #f3f3f3, #b1b1b1, #bbbbbb, #c9c9c9);
  background-size: 400% 400%;
  padding: 30px;
  border-radius: 25px;
  width: 420px;
  /* max-width: 420px; */
  /* font-weight: 500; */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  color: rgb(54, 54, 54);
  position: relative;
  overflow: hidden;
  animation: AnimationName 10s ease infinite;
  backdrop-filter: blur(10px); /* Glassmorphism effect */
  border: 1px solid rgba(255, 255, 255, 0.3); /* Semi-transparent border */
}


.form-container {
  background: linear-gradient(270deg, #f3f3f3, #b1b1b1, #bbbbbb, #c9c9c9);
  background-size: 400% 400%;
  padding: 30px;
  border-radius: 25px;
  width: 420px;
  max-width: 420px;
  /* font-weight: 500; */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  color: rgb(54, 54, 54);
  position: relative;
  overflow: hidden;
  animation: AnimationName 10s ease infinite;
  backdrop-filter: blur(10px); /* Glassmorphism effect */
  border: 1px solid rgba(255, 255, 255, 0.3); /* Semi-transparent border */
}

.form-container button, .form-container input[type="submit"] {
  width: 100%; /* Full width */
  background-image: linear-gradient(to right, #ffffff, #e4c206); /* Gradient background */
  color: #333; /* White text for contrast */
  padding: 15px 20px; /* Comfortable padding */
  border: none; /* No border for a sleek look */
  border-radius: 10px; /* Rounded corners */
  cursor: pointer; /* Cursor change to indicate button */
  font-size: 18px; /* Readable font size */
  font-weight: 650; /* Medium font weight */
  text-transform: uppercase; /* Uppercase text for a modern touch */
  letter-spacing: 1px; /* Letter spacing for a polished look */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Subtle shadow for depth */
  transition: background-image 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease; /* Smooth transitions */
}

.form-container button:hover, .form-container button:focus, .form-container input[type="submit"]:hover, .form-container input[type="submit"]:focus {
  background-image: linear-gradient(to left, #ffffff, #e4c206); /* Gradient direction change on hover/focus */
  box-shadow: 0 6px 15px #616060; /* Enhanced shadow on hover/focus */
  transform: translateY(-2px); /* Slight lift on hover/focus */
}

.form-container button:active, .form-container input[type="submit"]:active {
  transform: translateY(1px); /* Pressed effect on click */
  box-shadow: 0 3px 8px rgba(46, 46, 46, 0.3); /* Adjust shadow for pressed effect */
}


@keyframes AnimationName {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@media (max-width: 768px) {
  .form-container {
    width: 90%;
    margin: 0 auto;
  }
}





.form-containerhh {
  /* background: linear-gradient(270deg, #fff9a7, #92acff, #ffcfcf, #abffa8); */
  /* background: linear-gradient(270deg, #4d4c4c, #b1b1b1, #bbbbbb, #c9c9c9); */
  background-color: #a7a7a7;
  background-size: 400% 400%;
  padding: 30px;
  border-radius: 25px;
  width: 420px;
  /* font-weight: 500; */
  /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5); */
  color: rgb(54, 54, 54);
  position: relative;
  overflow: hidden;
  animation: AnimationName 10s ease infinite;
  backdrop-filter: blur(10px); /* Glassmorphism effect */
  border: 1px solid rgba(255, 255, 255, 0.3); /* Semi-transparent border */
}

.form-containerhh button, .form-containerhh input[type="submit"] {
  width: 100%; /* Full width */
  background-image: linear-gradient(to right, #ffffff, #e4c206); /* Gradient background */
  color: #333; /* White text for contrast */
  padding: 15px 20px; /* Comfortable padding */
  border: none; /* No border for a sleek look */
  border-radius: 10px; /* Rounded corners */
  cursor: pointer; /* Cursor change to indicate button */
  font-size: 18px; /* Readable font size */
  font-weight: 650; /* Medium font weight */
  text-transform: uppercase; /* Uppercase text for a modern touch */
  letter-spacing: 1px; /* Letter spacing for a polished look */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Subtle shadow for depth */
  transition: background-image 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease; /* Smooth transitions */
}

.form-containerhh button:hover, .form-containerhh button:focus, .form-containerhh input[type="submit"]:hover, .form-containerhh input[type="submit"]:focus {
  background-image: linear-gradient(to left, #ffffff, #e4c206); /* Gradient direction change on hover/focus */
  box-shadow: 0 6px 15px #616060; /* Enhanced shadow on hover/focus */
  transform: translateY(-2px); /* Slight lift on hover/focus */
}

.form-containerhh button:active, .form-containerhh input[type="submit"]:active {
  transform: translateY(1px); /* Pressed effect on click */
  box-shadow: 0 3px 8px rgba(46, 46, 46, 0.3); /* Adjust shadow for pressed effect */
}


@keyframes AnimationName {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@media (max-width: 500px) {
  .form-containerhh {
    width: 100%;
    margin: 0 auto;
  }
}







input[type="text"], input[type="email"], input[type="password"], select, textarea {
  width: 100%;
  padding: 15px;
  margin: 5px 0;
  border: 2px solid #ffffff50;
  border-radius: 10px;
  background: rgb(233, 231, 231); /* Slightly more visible background */
  color: rgb(0, 0, 0);
  box-sizing: border-box;
  transition: all 0.3s ease-in-out;
  backdrop-filter: blur(5px); /* Glass effect on fields */
}

.form-containerhh input[type="text"],.form-containerhh input[type="email"],.form-containerhh input[type="password"],.form-containerhh select,.form-containerhh textarea {
  width: 100%;
  padding: 3px;
  margin: 3px 0;
  border: 2px solid #ffffff50;
  border-radius: 10px;
  background: rgb(233, 231, 231); /* Slightly more visible background */
  color: rgb(0, 0, 0);
  box-sizing: border-box;
  transition: all 0.3s ease-in-out;
  backdrop-filter: blur(5px); /* Glass effect on fields */
}

input[type="password"]:focus, input[type="text"]:focus, input[type="email"]:focus, select:focus, textarea:focus {
  border-color: #ffffff;
  box-shadow: 0 0 10px #ffffff80;
  background: rgba(245, 244, 244, 0.3); /* More visible on focus */
}

input[type="button"]{
  width: 100%;
  background-color: #686868;
  color: white;
  padding: 15px 20px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
  transition: background-color 0.4s, transform 0.4s, box-shadow 0.4s;
}

label {
  display: block;
  margin-bottom: 8px; /* Increased space below label */
  font-size: 18px; /* Larger font size */
  font-weight: 600; /* Bolder font weight */
  color: #000000; /* Bright color for the label */
  /* text-transform: uppercase;  */
  letter-spacing: 1.2px; /* Wider letter spacing */
  transition: transform 0.3s ease-in-out; /* Smooth transition for transformation */
  padding-left: 10px; /* Padding for a slight offset */
  /* cursor: pointer; */
  padding-bottom: 0px;
  padding-top: 15px;
}


.form-containerhh label {
  display: block;
  margin-bottom: 2px; /* Increased space below label */
  font-size: 16px; /* Larger font size */
  font-weight: 900; /* Bolder font weight */
  color: #000000; /* Bright color for the label */
  /* text-transform: uppercase;  */
  letter-spacing: 1.2px; /* Wider letter spacing */
  transition: transform 0.3s ease-in-out; /* Smooth transition for transformation */
  padding-left: 10px; /* Padding for a slight offset */
  /* cursor: pointer; */
  padding-bottom: 0px;
  padding-top: 3px;
}

label:hover {
  transform: translateX(5px); /* Slight right movement on hover */
  color: #000000; /* Color change on hover for interaction */
}

input[type="button"]:hover {
  background-color: #ffed84;
  transform: scale(1.07);
  font-weight: 650; 
  color: #000000; 
  box-shadow: 0 5px 15px #faeda3(255, 227, 71, 0.4); /* Shadow for depth */
}





.mySlider-wrapper {
  overflow: hidden;
  max-width: 500px; /* This should match the width of your images */
  position: relative;
  margin: auto;
  border-radius: 10px;
}

.mySlider-image-wrapper {
  display: flex;
  transition: transform 0.5s ease;
}

.mySlider-image {
  max-width: 100%;
  display: block;
}

.mySlider-button {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black for visibility */
  color: white; /* This should contrast with the arrow button color */
  border: none;
  cursor: pointer;
  padding: 10px;
  border-radius: 5px;
  font-size: 18px;
  z-index: 10; /* Should be higher than any other z-index values of elements in the slider */
  bottom: 10px; /* Positioning from the bottom */
  width: 50px; /* Set the width of the buttons */
  text-align: center;
}

.mySlider-left {
  left: 10px; /* Positioning from the left */
}

.mySlider-right {
  right: 10px; /* Positioning from the right */
}






.form-group {
  margin-bottom: 0px;
}

.form-group label {
  color: rgb(0, 0, 0);
  display: block;
  margin-bottom: 5px;
}

.form-group input, select, textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid rgb(0, 0, 0);
  border-radius: 5px;
  box-sizing: border-box;
}


.form-group2 {
  margin-bottom: 0px;
}

.form-group2 label {
  color: rgb(0, 0, 0);
  display: block;
  margin-bottom: 5px;
}

.form-group2 input, select, textarea {
  width: 100%;
  padding: 5px;
  border: 1px solid rgb(0, 0, 0);
  border-radius: 5px;
  box-sizing: border-box;
}

.video-style {
  border-radius: 20px;  /* Adjust the radius as needed */
  overflow: hidden;     /* Ensures the video content also gets rounded corners */
}


button {
  width: 100%;
  padding: 10px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 10px;
  background-color: rgb(228, 194, 6);
}

/* .login-btn {

  background-image: linear-gradient(to bottom right, #f0f0f0, #e4c206);
  color: #333;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.7); 
  font-weight: bold;
  font-size: 18px;
} */

.login-btn {
  background-image: linear-gradient(to bottom right, #ffffff, #ffd900);
  color: #333;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.7);
  font-weight: bold;
  font-size: 18px;
  padding: 10px 20px; /* Comfortable padding */
  border: none; /* Remove default border */
  border-radius: 5px; /* Slightly rounded corners */
  transition: all 0.3s ease; /* Smooth transition for hover effects */
  cursor: pointer; /* Cursor changes to pointer to indicate it's clickable */
  outline: none; /* Removes the default focus outline */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Subtle shadow for depth */
}

.login-btn0 {
  background-image: linear-gradient(to bottom right, #a0a0a0, #2e2e2e);
  color: #ffffff;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.7);
  font-weight: bold;
  font-size: 18px;
  padding: 10px 20px; /* Comfortable padding */
  border: none; /* Remove default border */
  border-radius: 5px; /* Slightly rounded corners */
  transition: all 0.3s ease; /* Smooth transition for hover effects */
  cursor: pointer; /* Cursor changes to pointer to indicate it's clickable */
  outline: none; /* Removes the default focus outline */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Subtle shadow for depth */
}


.login-btn:hover, .login-btn:focus {
  background-image: linear-gradient(to top left, #ffffff, #ffd900); /* Change gradient direction */
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3); /* Enhanced shadow for 3D effect */
  transform: translateY(-2px); /* Slight raise effect */
}

.login-btn:active {
  transform: translateY(1px); /* Pushes the button down when clicked */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); /* Reduces shadow to mimic being pressed */
}


.login-btnm {
  background-image: linear-gradient(to bottom right, #ffffff, #ffd900);
  color: #333;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.7);
  font-weight: bold;
  font-size: 18px;
  padding: 10px 20px; /* Comfortable padding */
  border: none; /* Remove default border */
  border-radius: 5px; /* Slightly rounded corners */
  transition: all 0.3s ease; /* Smooth transition for hover effects */
  cursor: pointer; /* Cursor changes to pointer to indicate it's clickable */
  outline: none; /* Removes the default focus outline */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Subtle shadow for depth */
}

.login-btnm827 {
  background-image: linear-gradient(to bottom right, #ffffff, #ffd900);
  color: #333;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.7);
  font-weight: bold;
  font-size: 18px;
  padding: 10px 20px; /* Comfortable padding */
  border: none; /* Remove default border */
  border-radius: 5px; /* Slightly rounded corners */
  transition: all 0.3s ease; /* Smooth transition for hover effects */
  cursor: pointer; /* Cursor changes to pointer to indicate it's clickable */
  outline: none; /* Removes the default focus outline */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Subtle shadow for depth */
}


.login-btnm:hover, .login-btnm:focus {
  background-image: linear-gradient(to top left, #ffffff, #ffd900); /* Change gradient direction */
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3); /* Enhanced shadow for 3D effect */
  transform: translateY(-2px); /* Slight raise effect */
}

.login-btnm:active {
  transform: translateY(1px); /* Pushes the button down when clicked */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); /* Reduces shadow to mimic being pressed */
}


.login-btnmqq {
  background-image: linear-gradient(to right, #000000, #3f3e3e, #000000);
  color: #ffffff;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.7);
  font-weight: bold;
  font-size: 18px;
  padding: 10px 20px; /* Comfortable padding */
  border: none; /* Remove default border */
  border-radius: 5px; /* Slightly rounded corners */
  transition: all 0.3s ease; /* Smooth transition for hover effects */
  cursor: pointer; /* Cursor changes to pointer to indicate it's clickable */
  outline: none; /* Removes the default focus outline */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Subtle shadow for depth */
}

/* margin: 5px; 
  transform: translate(-50%, -50%);
  background-color: #000000; 

  background-image: linear-gradient(to right, #000000, #242323, #000000);

  color: #ffffff;
  border: 1px solid #000000;
  padding: 15px 30px;
  font-size: 18px;
  cursor: pointer;
  border-radius: 15px;
  box-shadow: 0 0 20px #000000, 0 0 30px #000000;
  text-shadow: 0 0 3px #000000; */


.login-btnmqq:hover, .login-btnmqq:focus {
  background-image: linear-gradient(to top left, #ffffff, #ffd900); /* Change gradient direction */
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3); /* Enhanced shadow for 3D effect */
  transform: translateY(-2px); /* Slight raise effect */
  color: #2c2c2c;
}

.login-btnmqq:active {
  transform: translateY(1px); /* Pushes the button down when clicked */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); /* Reduces shadow to mimic being pressed */
}





.login-btn2 {
  background-image: linear-gradient(to bottom right, #ffd900, #fff9d8);
  color: #333;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.7);
  font-weight: bold;
  font-size: 18px;
  padding: 10px 20px; /* Comfortable padding */
  border: none; /* Remove default border */
  border-radius: 5px; /* Slightly rounded corners */
  transition: all 0.3s ease; /* Smooth transition for hover effects */
  cursor: pointer; /* Cursor changes to pointer to indicate it's clickable */
  outline: none; /* Removes the default focus outline */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Subtle shadow for depth */
}

.login-btn2:hover, .login-btn2:focus {
  background-image: linear-gradient(to top left, #ffd900, #fff9d8); /* Change gradient direction */
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3); /* Enhanced shadow for 3D effect */
  transform: translateY(-2px); /* Slight raise effect */
}

.login-btn2:active {
  transform: translateY(1px); /* Pushes the button down when clicked */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); /* Reduces shadow to mimic being pressed */
}



.login-btn1 {
  background-color: #ffe658;
  color: rgb(0, 0, 0);
  font-weight: bold;
}

.change-password-btn {
  background-color: white;
  color: black;
  border: 1px solid black;
  padding: 15px;
}

.change-password-btn2 {
  background-color: white;
  color: black;
  border: 1px solid black;
  padding: 0px;
}

button:hover {
  /* opacity: 0.8; */
  scale: 1.03;
}

















.mod-nav-main {
  background-color: #f8f8f8;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.mod-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px;
}

.mod-brand {
  display: flex;
  align-items: center;
}

.mod-text-block {
  color: #333;
  font-size: 1.2em;
}

.mod-nav-link {
  color: #ffffff;
  text-decoration: none;
  padding: 10px 15px;
  transition: background-color 0.3s, color 0.3s;
}

.mod-nav-link:hover, .mod-nav-link.mod-w--current {
  background-color: #4CAF50;
  color: white;
}

.mod-w-nav-button {
  display: none;
}

@media (max-width: 768px) {
  .mod-nav-menu {
      display: block;
      text-align: center;
  }

  .mod-nav-link {
      display: block;
  }
}




















.login-btn-google {
  background-color: #4285F4; /* Google button blue */
  color: white;
  padding: 10px 24px;
  border: none;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  border-radius: 2px;
  font-weight: 500;
  box-shadow: 0 2px 4px 0 rgba(0,0,0,0.25);
  font-family: Roboto,arial,sans-serif;
  outline: none;
  cursor: pointer;
  border: 1px solid transparent;
}

.login-btn-google:hover {
  box-shadow: 0 0 6px #668cff;
}

.login-btn-google:active {
  background-color: #3367D6;
  box-shadow: inset 0 0 0 2px rgba(0,0,0,0.15);
}

.login-btn-google:focus {
  border: 1px solid #4285F4;
}




















html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  font-family: sans-serif;
}

body {
  margin: 0;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

audio, canvas, progress, video {
  vertical-align: baseline;
  display: inline-block;
}

audio:not([controls]) {
  height: 0;
  display: none;
}

[hidden], template {
  display: none;
}

a {
  background-color: rgba(0, 0, 0, 0);
}

a:active, a:hover {
  outline: 0;
}

abbr[title] {
  border-bottom: 1px dotted;
}

b, strong {
  font-weight: bold;
}

dfn {
  font-style: italic;
}

h1 {
  margin: .67em 0;
  font-size: 2em;
}

mark {
  color: #000;
  background: #ff0;
}

small {
  font-size: 80%;
}

sub, sup {
  vertical-align: baseline;
  font-size: 75%;
  line-height: 0;
  position: relative;
}

sup {
  top: -.5em;
}

sub {
  bottom: -.25em;
}

img {
  border: 0;
}

svg:not(:root) {
  overflow: hidden;
}

figure {
  margin: 1em 40px;
}

hr {
  box-sizing: content-box;
  height: 0;
}

pre {
  overflow: auto;
}

code, kbd, pre, samp {
  font-family: monospace;
  font-size: 1em;
}

button, input, optgroup, select, textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}

button {
  overflow: visible;
}

button, select {
  text-transform: none;
}

button, html input[type="button"], input[type="reset"] {
  -webkit-appearance: button;
  cursor: pointer;
}

button[disabled], html input[disabled] {
  cursor: default;
}

button::-moz-focus-inner, input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

input {
  line-height: normal;
}

input[type="checkbox"], input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}

input[type="number"]::-webkit-inner-spin-button, input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

input[type="search"] {
  -webkit-appearance: none;
}

input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

fieldset {
  border: 1px solid silver;
  margin: 0 2px;
  padding: .35em .625em .75em;
}

legend {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
}

optgroup {
  font-weight: bold;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

td, th {
  padding: 0;
}

@font-face {
  font-family: webflow-icons;
  src: url("data:application/x-font-ttf;charset=utf-8;base64,AAEAAAALAIAAAwAwT1MvMg8SBiUAAAC8AAAAYGNtYXDpP+a4AAABHAAAAFxnYXNwAAAAEAAAAXgAAAAIZ2x5ZmhS2XEAAAGAAAADHGhlYWQTFw3HAAAEnAAAADZoaGVhCXYFgQAABNQAAAAkaG10eCe4A1oAAAT4AAAAMGxvY2EDtALGAAAFKAAAABptYXhwABAAPgAABUQAAAAgbmFtZSoCsMsAAAVkAAABznBvc3QAAwAAAAAHNAAAACAAAwP4AZAABQAAApkCzAAAAI8CmQLMAAAB6wAzAQkAAAAAAAAAAAAAAAAAAAABEAAAAAAAAAAAAAAAAAAAAABAAADpAwPA/8AAQAPAAEAAAAABAAAAAAAAAAAAAAAgAAAAAAADAAAAAwAAABwAAQADAAAAHAADAAEAAAAcAAQAQAAAAAwACAACAAQAAQAg5gPpA//9//8AAAAAACDmAOkA//3//wAB/+MaBBcIAAMAAQAAAAAAAAAAAAAAAAABAAH//wAPAAEAAAAAAAAAAAACAAA3OQEAAAAAAQAAAAAAAAAAAAIAADc5AQAAAAABAAAAAAAAAAAAAgAANzkBAAAAAAEBIAAAAyADgAAFAAAJAQcJARcDIP5AQAGA/oBAAcABwED+gP6AQAABAOAAAALgA4AABQAAEwEXCQEH4AHAQP6AAYBAAcABwED+gP6AQAAAAwDAAOADQALAAA8AHwAvAAABISIGHQEUFjMhMjY9ATQmByEiBh0BFBYzITI2PQE0JgchIgYdARQWMyEyNj0BNCYDIP3ADRMTDQJADRMTDf3ADRMTDQJADRMTDf3ADRMTDQJADRMTAsATDSANExMNIA0TwBMNIA0TEw0gDRPAEw0gDRMTDSANEwAAAAABAJ0AtAOBApUABQAACQIHCQEDJP7r/upcAXEBcgKU/usBFVz+fAGEAAAAAAL//f+9BAMDwwAEAAkAABcBJwEXAwE3AQdpA5ps/GZsbAOabPxmbEMDmmz8ZmwDmvxmbAOabAAAAgAA/8AEAAPAAB0AOwAABSInLgEnJjU0Nz4BNzYzMTIXHgEXFhUUBw4BBwYjNTI3PgE3NjU0Jy4BJyYjMSIHDgEHBhUUFx4BFxYzAgBqXV6LKCgoKIteXWpqXV6LKCgoKIteXWpVSktvICEhIG9LSlVVSktvICEhIG9LSlVAKCiLXl1qal1eiygoKCiLXl1qal1eiygoZiEgb0tKVVVKS28gISEgb0tKVVVKS28gIQABAAABwAIAA8AAEgAAEzQ3PgE3NjMxFSIHDgEHBhUxIwAoKIteXWpVSktvICFmAcBqXV6LKChmISBvS0pVAAAAAgAA/8AFtgPAADIAOgAAARYXHgEXFhUUBw4BBwYHIxUhIicuAScmNTQ3PgE3NjMxOAExNDc+ATc2MzIXHgEXFhcVATMJATMVMzUEjD83NlAXFxYXTjU1PQL8kz01Nk8XFxcXTzY1PSIjd1BQWlJJSXInJw3+mdv+2/7c25MCUQYcHFg5OUA/ODlXHBwIAhcXTzY1PTw1Nk8XF1tQUHcjIhwcYUNDTgL+3QFt/pOTkwABAAAAAQAAmM7nP18PPPUACwQAAAAAANciZKUAAAAA1yJkpf/9/70FtgPDAAAACAACAAAAAAAAAAEAAAPA/8AAAAW3//3//QW2AAEAAAAAAAAAAAAAAAAAAAAMBAAAAAAAAAAAAAAAAgAAAAQAASAEAADgBAAAwAQAAJ0EAP/9BAAAAAQAAAAFtwAAAAAAAAAKABQAHgAyAEYAjACiAL4BFgE2AY4AAAABAAAADAA8AAMAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAADgCuAAEAAAAAAAEADQAAAAEAAAAAAAIABwCWAAEAAAAAAAMADQBIAAEAAAAAAAQADQCrAAEAAAAAAAUACwAnAAEAAAAAAAYADQBvAAEAAAAAAAoAGgDSAAMAAQQJAAEAGgANAAMAAQQJAAIADgCdAAMAAQQJAAMAGgBVAAMAAQQJAAQAGgC4AAMAAQQJAAUAFgAyAAMAAQQJAAYAGgB8AAMAAQQJAAoANADsd2ViZmxvdy1pY29ucwB3AGUAYgBmAGwAbwB3AC0AaQBjAG8AbgBzVmVyc2lvbiAxLjAAVgBlAHIAcwBpAG8AbgAgADEALgAwd2ViZmxvdy1pY29ucwB3AGUAYgBmAGwAbwB3AC0AaQBjAG8AbgBzd2ViZmxvdy1pY29ucwB3AGUAYgBmAGwAbwB3AC0AaQBjAG8AbgBzUmVndWxhcgBSAGUAZwB1AGwAYQByd2ViZmxvdy1pY29ucwB3AGUAYgBmAGwAbwB3AC0AaQBjAG8AbgBzRm9udCBnZW5lcmF0ZWQgYnkgSWNvTW9vbi4ARgBvAG4AdAAgAGcAZQBuAGUAcgBhAHQAZQBkACAAYgB5ACAASQBjAG8ATQBvAG8AbgAuAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==") format("truetype");
  font-weight: normal;
  font-style: normal;
}

[class^="w-icon-"], [class*=" w-icon-"] {
  speak: none;
  font-variant: normal;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  font-family: webflow-icons !important;
}

.w-icon-slider-right:before {
  content: "��";
}

.w-icon-slider-left:before {
  content: "��";
}

/* .w-icon-nav-menu:before {
  content: "\f0c9";
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  color: #000000;
} */

.w-icon-nav-menu {
  position: relative;
  display: inline-block;
  width: 30px;
  height: 3px;
  background: #ffffff; /* Initial bar color */
  border-radius: 2px;
  transition: all 0.3s ease; /* Smooth transition */
  cursor: pointer;
}

.w-icon-nav-menu::before,
.w-icon-nav-menu::after {
  content: '';
  position: absolute;
  width: 30px;
  height: 3px;
  background: #ffffff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.w-icon-nav-menu::before {
  top: -10px; /* Top bar */
}

.w-icon-nav-menu::after {
  top: 10px; /* Bottom bar */
}

/* Animation for active menu */
.w-icon-nav-menu.active {
  background: transparent; /* Hide the middle bar */
}

.w-icon-nav-menu.active::before {
  transform: rotate(45deg) translate(5px, 5px);
}

.w-icon-nav-menu.active::after {
  transform: rotate(-45deg) translate(5px, -5px);
}



.w-icon-arrow-down:before, .w-icon-dropdown-toggle:before {
  content: "��";
}

.w-icon-file-upload-remove:before {
  content: "謅�";
}

.w-icon-file-upload-icon:before {
  content: "謅�";
}

* {
  box-sizing: border-box;
}

html {
  height: 100%;
}

body {
  min-height: 100%;
  color: #333;
  background-color: #fff;
  margin: 0;
  font-family: Arial, sans-serif;
  font-size: 14px;
  line-height: 20px;
}

img {
  max-width: 100%;
  vertical-align: middle;
  display: inline-block;
}

html.w-mod-touch * {
  background-attachment: scroll !important;
}

.w-block {
  display: block;
}

.w-inline-block {
  max-width: 100%;
  display: inline-block;
}

.w-clearfix:before, .w-clearfix:after {
  content: " ";
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-clearfix:after {
  clear: both;
}

.w-hidden {
  display: none;
}

.w-button {
  color: #fff;
  line-height: inherit;
  cursor: pointer;
  background-color: #3898ec;
  border: 0;
  border-radius: 0;
  padding: 9px 15px;
  text-decoration: none;
  display: inline-block;
}

input.w-button {
  -webkit-appearance: button;
}

html[data-w-dynpage] [data-w-cloak] {
  color: rgba(0, 0, 0, 0) !important;
}

.w-code-block {
  margin: unset;
}

.w-webflow-badge, .w-webflow-badge * {
  z-index: auto;
  visibility: visible;
  box-sizing: border-box;
  width: auto;
  height: auto;
  max-height: none;
  max-width: none;
  min-height: 0;
  min-width: 0;
  float: none;
  clear: none;
  box-shadow: none;
  opacity: 1;
  direction: ltr;
  font-family: inherit;
  font-weight: inherit;
  color: inherit;
  font-size: inherit;
  line-height: inherit;
  font-style: inherit;
  font-variant: inherit;
  text-align: inherit;
  letter-spacing: inherit;
  -webkit-text-decoration: inherit;
  text-decoration: inherit;
  text-indent: 0;
  text-transform: inherit;
  text-shadow: none;
  font-smoothing: auto;
  vertical-align: baseline;
  cursor: inherit;
  white-space: inherit;
  word-break: normal;
  word-spacing: normal;
  word-wrap: normal;
  background: none;
  border: 0 rgba(0, 0, 0, 0);
  border-radius: 0;
  margin: 0;
  padding: 0;
  list-style-type: disc;
  transition: none;
  display: block;
  position: static;
  top: auto;
  bottom: auto;
  left: auto;
  right: auto;
  overflow: visible;
  transform: none;
}

.w-webflow-badge {
  white-space: nowrap;
  cursor: pointer;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, .1), 0 1px 3px rgba(0, 0, 0, .1);
  visibility: visible !important;
  z-index: 2147483647 !important;
  color: #aaadb0 !important;
  opacity: 1 !important;
  width: auto !important;
  height: auto !important;
  background-color: #fff !important;
  border-radius: 3px !important;
  margin: 0 !important;
  padding: 6px !important;
  font-size: 12px !important;
  line-height: 14px !important;
  text-decoration: none !important;
  display: inline-block !important;
  position: fixed !important;
  top: auto !important;
  bottom: 12px !important;
  left: auto !important;
  right: 12px !important;
  overflow: visible !important;
  transform: none !important;
}

.w-webflow-badge > img {
  visibility: visible !important;
  opacity: 1 !important;
  vertical-align: middle !important;
  display: inline-block !important;
}

h1, h2, h3, h4, h5, h6 {
  margin-bottom: 10px;
  font-weight: bold;
}

h1 {
  margin-top: 20px;
  font-size: 38px;
  line-height: 44px;
}

h2 {
  margin-top: 20px;
  font-size: 32px;
  line-height: 36px;
}

h3 {
  margin-top: 20px;
  font-size: 24px;
  line-height: 30px;
}

h4 {
  margin-top: 10px;
  font-size: 18px;
  line-height: 24px;
}

h5 {
  margin-top: 10px;
  font-size: 14px;
  line-height: 20px;
}

h6 {
  margin-top: 10px;
  font-size: 12px;
  line-height: 18px;
}

p {
  margin-top: 0;
  margin-bottom: 10px;
}

blockquote {
  border-left: 5px solid #e2e2e2;
  margin: 0 0 10px;
  padding: 10px 20px;
  font-size: 18px;
  line-height: 22px;
}

figure {
  margin: 0 0 10px;
}

figcaption {
  text-align: center;
  margin-top: 5px;
}

ul, ol {
  margin-top: 0;
  margin-bottom: 10px;
  padding-left: 40px;
}

.w-list-unstyled {
  padding-left: 0;
  list-style: none;
}

.w-embed:before, .w-embed:after {
  content: " ";
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-embed:after {
  clear: both;
}

.w-video {
  width: 100%;
  padding: 0;
  position: relative;
}

.w-video iframe, .w-video object, .w-video embed {
  width: 100%;
  height: 100%;
  border: none;
  position: absolute;
  top: 0;
  left: 0;
}

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

button, [type="button"], [type="reset"] {
  cursor: pointer;
  -webkit-appearance: button;
  border: 0;
}

.w-form {
  margin: 0 0 15px;
}

.w-form-done {
  text-align: center;
  background-color: #ddd;
  padding: 20px;
  display: none;
}

.w-form-fail {
  background-color: #ffdede;
  margin-top: 10px;
  padding: 10px;
  display: none;
}

label {
  margin-bottom: 5px;
  font-weight: bold;
  display: block;
}

.w-input, .w-select {
  width: 100%;
  height: 38px;
  color: #333;
  vertical-align: middle;
  background-color: #fff;
  border: 1px solid #ccc;
  margin-bottom: 10px;
  padding: 8px 12px;
  font-size: 14px;
  line-height: 1.42857;
  display: block;
}

.w-input:-moz-placeholder, .w-select:-moz-placeholder {
  color: #999;
}

.w-input::-moz-placeholder, .w-select::-moz-placeholder {
  color: #999;
  opacity: 1;
}

.w-input::-webkit-input-placeholder, .w-select::-webkit-input-placeholder {
  color: #999;
}

.w-input:focus, .w-select:focus {
  border-color: #3898ec;
  outline: 0;
}

.w-input[disabled], .w-select[disabled], .w-input[readonly], .w-select[readonly], fieldset[disabled] .w-input, fieldset[disabled] .w-select {
  cursor: not-allowed;
}

.w-input[disabled]:not(.w-input-disabled), .w-select[disabled]:not(.w-input-disabled), .w-input[readonly], .w-select[readonly], fieldset[disabled]:not(.w-input-disabled) .w-input, fieldset[disabled]:not(.w-input-disabled) .w-select {
  background-color: #eee;
}

textarea.w-input, textarea.w-select {
  height: auto;
}

.w-select {
  background-color: #f3f3f3;
}

.w-select[multiple] {
  height: auto;
}

.w-form-label {
  cursor: pointer;
  margin-bottom: 0;
  font-weight: normal;
  display: inline-block;
}

.w-radio {
  margin-bottom: 5px;
  padding-left: 20px;
  display: block;
}

.w-radio:before, .w-radio:after {
  content: " ";
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-radio:after {
  clear: both;
}

.w-radio-input {
  float: left;
  margin: 3px 0 0 -20px;
  line-height: normal;
}

.w-file-upload {
  margin-bottom: 10px;
  display: block;
}

.w-file-upload-input {
  width: .1px;
  height: .1px;
  opacity: 0;
  z-index: -100;
  position: absolute;
  overflow: hidden;
}

.w-file-upload-default, .w-file-upload-uploading, .w-file-upload-success {
  color: #333;
  display: inline-block;
}

.w-file-upload-error {
  margin-top: 10px;
  display: block;
}

.w-file-upload-default.w-hidden, .w-file-upload-uploading.w-hidden, .w-file-upload-error.w-hidden, .w-file-upload-success.w-hidden {
  display: none;
}

.w-file-upload-uploading-btn {
  cursor: pointer;
  background-color: #fafafa;
  border: 1px solid #ccc;
  margin: 0;
  padding: 8px 12px;
  font-size: 14px;
  font-weight: normal;
  display: flex;
}

.w-file-upload-file {
  background-color: #fafafa;
  border: 1px solid #ccc;
  flex-grow: 1;
  justify-content: space-between;
  margin: 0;
  padding: 8px 9px 8px 11px;
  display: flex;
}

.w-file-upload-file-name {
  font-size: 14px;
  font-weight: normal;
  display: block;
}

.w-file-remove-link {
  width: auto;
  height: auto;
  cursor: pointer;
  margin-top: 3px;
  margin-left: 10px;
  padding: 3px;
  display: block;
}

.w-icon-file-upload-remove {
  margin: auto;
  font-size: 10px;
}

.w-file-upload-error-msg {
  color: #ea384c;
  padding: 2px 0;
  display: inline-block;
}

.w-file-upload-info {
  padding: 0 12px;
  line-height: 38px;
  display: inline-block;
}

.w-file-upload-label {
  cursor: pointer;
  background-color: #fafafa;
  border: 1px solid #ccc;
  margin: 0;
  padding: 8px 12px;
  font-size: 14px;
  font-weight: normal;
  display: inline-block;
}

.w-icon-file-upload-icon, .w-icon-file-upload-uploading {
  width: 20px;
  margin-right: 8px;
  display: inline-block;
}

.w-icon-file-upload-uploading {
  height: 20px;
}

.w-container {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
}

.w-container:before, .w-container:after {
  content: " ";
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-container:after {
  clear: both;
}

.w-container .w-row {
  margin-left: -10px;
  margin-right: -10px;
}

.w-row:before, .w-row:after {
  content: " ";
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-row:after {
  clear: both;
}

.w-row .w-row {
  margin-left: 0;
  margin-right: 0;
}

.w-col {
  float: left;
  width: 100%;
  min-height: 1px;
  padding-left: 10px;
  padding-right: 10px;
  position: relative;
}

.w-col .w-col {
  padding-left: 0;
  padding-right: 0;
}

.w-col-1 {
  width: 8.33333%;
}

.w-col-2 {
  width: 16.6667%;
}

.w-col-3 {
  width: 25%;
}

.w-col-4 {
  width: 33.3333%;
}

.w-col-5 {
  width: 41.6667%;
}

.w-col-6 {
  width: 50%;
}

.w-col-7 {
  width: 58.3333%;
}

.w-col-8 {
  width: 66.6667%;
}

.w-col-9 {
  width: 75%;
}

.w-col-10 {
  width: 83.3333%;
}

.w-col-11 {
  width: 91.6667%;
}

.w-col-12 {
  width: 100%;
}

.w-hidden-main {
  display: none !important;
}

@media screen and (max-width: 700px) {
  .typewriter-headingsss {
    font-size: 2.2em;
    font-weight: bold;
    background: linear-gradient(45deg, #0028f0, #ec2b35, #ffbd06);

    background-size: 200% 200%;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    /* color: #333; */
    overflow: hidden; /* Ensures the content doesn't exceed its container */
    border-right: .3em solid #333; /* The typewriter cursor */
    white-space: nowrap; /* Keeps the text on a single line */
    margin: 10px auto;
    /* margin-left: 10px;
    margin-right: 10px; 
    margin-top: 10px; */
    letter-spacing: .15em; /* Adjust the letter spacing */
    animation: 
        typing 3.5s steps(40, end),
        blink-caret .75s step-end infinite;
  }
  .typewriter-heading {
    font-size: 2.6em;
    font-weight: bold;
    background: linear-gradient(45deg, #0028f0, #ec2b35, #ffbd06);

    background-size: 200% 200%;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    /* color: #333; */
    overflow: hidden; /* Ensures the content doesn't exceed its container */
    border-right: .3em solid #333; /* The typewriter cursor */
    white-space: nowrap; /* Keeps the text on a single line */
    margin: 10px auto;
    /* margin-left: 10px;
    margin-right: 10px; 
    margin-top: 10px; */
    letter-spacing: .15em; /* Adjust the letter spacing */
    animation: 
        typing 3.5s steps(40, end),
        blink-caret .75s step-end infinite;
  }

  h2.typewriter-heading {
    font-size: 2em;
    font-weight: bold;
    background: linear-gradient(45deg, #0028f0, #ec2b35, #ffbd06);

    background-size: 200% 200%;
    color: transparent;
    padding: 5px;
    -webkit-background-clip: text;
    background-clip: text;
    /* color: #333; */
    overflow: hidden; /* Ensures the content doesn't exceed its container */
    border-right: .3em solid #333; /* The typewriter cursor */
    white-space: nowrap; /* Keeps the text on a single line */
    margin: 0px auto; 
    letter-spacing: .15em; /* Adjust the letter spacing */
    animation: 
        typing 3.5s steps(40, end),
        blink-caret .75s step-end infinite;
  }

  .w-container {
    max-width: 728px;
  }

  .w-hidden-main {
    display: inherit !important;
  }

  .w-hidden-medium {
    display: none !important;
  }

  .w-col-medium-1 {
    width: 8.33333%;
  }

  .w-col-medium-2 {
    width: 16.6667%;
  }

  .w-col-medium-3 {
    width: 25%;
  }

  .w-col-medium-4 {
    width: 33.3333%;
  }

  .w-col-medium-5 {
    width: 41.6667%;
  }

  .w-col-medium-6 {
    width: 50%;
  }

  .w-col-medium-7 {
    width: 58.3333%;
  }

  .w-col-medium-8 {
    width: 66.6667%;
  }

  .w-col-medium-9 {
    width: 75%;
  }

  .w-col-medium-10 {
    width: 83.3333%;
  }

  .w-col-medium-11 {
    width: 91.6667%;
  }

  .w-col-medium-12 {
    width: 100%;
  }

  .w-col-stack {
    width: 100%;
    left: auto;
    right: auto;
  }
}

@media screen and (max-width: 767px) {
  .w-hidden-main, .w-hidden-medium {
    display: inherit !important;
  }

  .w-hidden-small {
    display: none !important;
  }

  .w-row, .w-container .w-row {
    margin-left: 0;
    margin-right: 0;
  }

  .w-col {
    width: 100%;
    left: auto;
    right: auto;
  }

  .w-col-small-1 {
    width: 8.33333%;
  }

  .w-col-small-2 {
    width: 16.6667%;
  }

  .w-col-small-3 {
    width: 25%;
  }

  .w-col-small-4 {
    width: 33.3333%;
  }

  .w-col-small-5 {
    width: 41.6667%;
  }

  .w-col-small-6 {
    width: 50%;
  }

  .w-col-small-7 {
    width: 58.3333%;
  }

  .w-col-small-8 {
    width: 66.6667%;
  }

  .w-col-small-9 {
    width: 75%;
  }

  .w-col-small-10 {
    width: 83.3333%;
  }

  .w-col-small-11 {
    width: 91.6667%;
  }

  .w-col-small-12 {
    width: 100%;
  }
}

@media screen and (max-width: 479px) {
  .w-container {
    max-width: none;
  }

  .w-hidden-main, .w-hidden-medium, .w-hidden-small {
    display: inherit !important;
  }

  .w-hidden-tiny {
    display: none !important;
  }

  .w-col {
    width: 100%;
  }

  .w-col-tiny-1 {
    width: 8.33333%;
  }

  .w-col-tiny-2 {
    width: 16.6667%;
  }

  .w-col-tiny-3 {
    width: 25%;
  }

  .w-col-tiny-4 {
    width: 33.3333%;
  }

  .w-col-tiny-5 {
    width: 41.6667%;
  }

  .w-col-tiny-6 {
    width: 50%;
  }

  .w-col-tiny-7 {
    width: 58.3333%;
  }

  .w-col-tiny-8 {
    width: 66.6667%;
  }

  .w-col-tiny-9 {
    width: 75%;
  }

  .w-col-tiny-10 {
    width: 83.3333%;
  }

  .w-col-tiny-11 {
    width: 91.6667%;
  }

  .w-col-tiny-12 {
    width: 100%;
  }
}

.w-widget {
  position: relative;
}

.w-widget-map {
  width: 100%;
  height: 400px;
}

.w-widget-map label {
  width: auto;
  display: inline;
}

.w-widget-map img {
  max-width: inherit;
}

.w-widget-map .gm-style-iw {
  text-align: center;
}

.w-widget-map .gm-style-iw > button {
  display: none !important;
}

.w-widget-twitter {
  overflow: hidden;
}

.w-widget-twitter-count-shim {
  vertical-align: top;
  width: 28px;
  height: 20px;
  text-align: center;
  background: #fff;
  border: 1px solid #758696;
  border-radius: 3px;
  display: inline-block;
  position: relative;
}

.w-widget-twitter-count-shim * {
  pointer-events: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.w-widget-twitter-count-shim .w-widget-twitter-count-inner {
  text-align: center;
  color: #999;
  font-family: serif;
  font-size: 15px;
  line-height: 12px;
  position: relative;
}

.w-widget-twitter-count-shim .w-widget-twitter-count-clear {
  display: block;
  position: relative;
}

.w-widget-twitter-count-shim.w--large {
  width: 36px;
  height: 28px;
}

.w-widget-twitter-count-shim.w--large .w-widget-twitter-count-inner {
  font-size: 18px;
  line-height: 18px;
}

.w-widget-twitter-count-shim:not(.w--vertical) {
  margin-left: 5px;
  margin-right: 8px;
}

.w-widget-twitter-count-shim:not(.w--vertical).w--large {
  margin-left: 6px;
}

.w-widget-twitter-count-shim:not(.w--vertical):before, .w-widget-twitter-count-shim:not(.w--vertical):after {
  content: " ";
  height: 0;
  width: 0;
  pointer-events: none;
  border: solid rgba(0, 0, 0, 0);
  position: absolute;
  top: 50%;
  left: 0;
}

.w-widget-twitter-count-shim:not(.w--vertical):before {
  border-width: 4px;
  border-color: rgba(117, 134, 150, 0) #5d6c7b rgba(117, 134, 150, 0) rgba(117, 134, 150, 0);
  margin-top: -4px;
  margin-left: -9px;
}

.w-widget-twitter-count-shim:not(.w--vertical).w--large:before {
  border-width: 5px;
  margin-top: -5px;
  margin-left: -10px;
}

.w-widget-twitter-count-shim:not(.w--vertical):after {
  border-width: 4px;
  border-color: rgba(255, 255, 255, 0) #fff rgba(255, 255, 255, 0) rgba(255, 255, 255, 0);
  margin-top: -4px;
  margin-left: -8px;
}

.w-widget-twitter-count-shim:not(.w--vertical).w--large:after {
  border-width: 5px;
  margin-top: -5px;
  margin-left: -9px;
}

.w-widget-twitter-count-shim.w--vertical {
  width: 61px;
  height: 33px;
  margin-bottom: 8px;
}

.w-widget-twitter-count-shim.w--vertical:before, .w-widget-twitter-count-shim.w--vertical:after {
  content: " ";
  height: 0;
  width: 0;
  pointer-events: none;
  border: solid rgba(0, 0, 0, 0);
  position: absolute;
  top: 100%;
  left: 50%;
}

.w-widget-twitter-count-shim.w--vertical:before {
  border-width: 5px;
  border-color: #5d6c7b rgba(117, 134, 150, 0) rgba(117, 134, 150, 0);
  margin-left: -5px;
}

.w-widget-twitter-count-shim.w--vertical:after {
  border-width: 4px;
  border-color: #fff rgba(255, 255, 255, 0) rgba(255, 255, 255, 0);
  margin-left: -4px;
}

.w-widget-twitter-count-shim.w--vertical .w-widget-twitter-count-inner {
  font-size: 18px;
  line-height: 22px;
}

.w-widget-twitter-count-shim.w--vertical.w--large {
  width: 76px;
}

.w-background-video {
  height: 500px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.w-background-video > video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -100;
  background-position: 50%;
  background-size: cover;
  margin: auto;
  position: absolute;
  top: -100%;
  bottom: -100%;
  left: -100%;
  right: -100%;
}

.w-background-video > video::-webkit-media-controls-start-playback-button {
  -webkit-appearance: none;
  display: none !important;
}

.w-background-video--control {
  background-color: rgba(0, 0, 0, 0);
  padding: 0;
  position: absolute;
  bottom: 1em;
  right: 1em;
}

.w-background-video--control > [hidden] {
  display: none !important;
}

.w-slider {
  height: 300px;
  text-align: center;
  clear: both;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  tap-highlight-color: rgba(0, 0, 0, 0);
  background: #ddd;
  position: relative;
}

.w-slider-mask {
  z-index: 1;
  height: 100%;
  white-space: nowrap;
  display: block;
  position: relative;
  left: 0;
  right: 0;
  overflow: hidden;
}

.w-slide {
  vertical-align: top;
  width: 100%;
  height: 100%;
  white-space: normal;
  text-align: left;
  display: inline-block;
  position: relative;
}

.w-slider-nav {
  z-index: 2;
  height: 40px;
  text-align: center;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  tap-highlight-color: rgba(0, 0, 0, 0);
  margin: auto;
  padding-top: 10px;
  position: absolute;
  top: auto;
  bottom: 0;
  left: 0;
  right: 0;
}

.w-slider-nav.w-round > div {
  border-radius: 100%;
}

.w-slider-nav.w-num > div {
  width: auto;
  height: auto;
  font-size: inherit;
  line-height: inherit;
  padding: .2em .5em;
}

.w-slider-nav.w-shadow > div {
  box-shadow: 0 0 3px rgba(51, 51, 51, .4);
}

.w-slider-nav-invert {
  color: #fff;
}

.w-slider-nav-invert > div {
  background-color: rgba(34, 34, 34, .4);
}

.w-slider-nav-invert > div.w-active {
  background-color: #222;
}

.w-slider-dot {
  width: 1em;
  height: 1em;
  cursor: pointer;
  background-color: rgba(255, 255, 255, .4);
  margin: 0 3px .5em;
  transition: background-color .1s, color .1s;
  display: inline-block;
  position: relative;
}

.w-slider-dot.w-active {
  background-color: #fff;
}

.w-slider-dot:focus {
  outline: none;
  box-shadow: 0 0 0 2px #fff;
}

.w-slider-dot:focus.w-active {
  box-shadow: none;
}

.w-slider-arrow-left, .w-slider-arrow-right {
  width: 80px;
  cursor: pointer;
  color: #fff;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  margin: auto;
  font-size: 40px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: hidden;
}

.w-slider-arrow-left [class^="w-icon-"], .w-slider-arrow-right [class^="w-icon-"], .w-slider-arrow-left [class*=" w-icon-"], .w-slider-arrow-right [class*=" w-icon-"] {
  position: absolute;
}

.w-slider-arrow-left:focus, .w-slider-arrow-right:focus {
  outline: 0;
}

.w-slider-arrow-left {
  z-index: 3;
  right: auto;
}

.w-slider-arrow-right {
  z-index: 4;
  left: auto;
}

.w-icon-slider-left, .w-icon-slider-right {
  width: 1em;
  height: 1em;
  margin: auto;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.w-slider-aria-label {
  clip: rect(0 0 0 0);
  height: 1px;
  width: 1px;
  border: 0;
  margin: -1px;
  padding: 0;
  position: absolute;
  overflow: hidden;
}

.w-slider-force-show {
  display: block !important;
}

.w-dropdown {
  text-align: left;
  z-index: 900;
  margin-left: auto;
  margin-right: auto;
  display: inline-block;
  position: relative;
}

.w-dropdown-btn, .w-dropdown-toggle, .w-dropdown-link {
  vertical-align: top;
  color: #222;
  text-align: left;
  white-space: nowrap;
  margin-left: auto;
  margin-right: auto;
  padding: 20px;
  text-decoration: none;
  position: relative;
}

.w-dropdown-toggle {
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: pointer;
  padding-right: 40px;
  display: inline-block;
}

.w-dropdown-toggle:focus {
  outline: 0;
}

.w-icon-dropdown-toggle {
  width: 1em;
  height: 1em;
  margin: auto 20px auto auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
}

.w-dropdown-list {
  min-width: 100%;
  background: #ddd;
  display: none;
  position: absolute;
}

.w-dropdown-list.w--open {
  display: block;
}

.w-dropdown-link {
  color: #222;
  padding: 10px 20px;
  display: block;
}

.w-dropdown-link.w--current {
  color: #0082f3;
}

.w-dropdown-link:focus {
  outline: 0;
}

@media screen and (max-width: 767px) {
  .w-nav-brand {
    padding-left: 10px;
  }
}

.w-lightbox-backdrop {
  cursor: auto;
  letter-spacing: normal;
  text-indent: 0;
  text-shadow: none;
  text-transform: none;
  visibility: visible;
  white-space: normal;
  word-break: normal;
  word-spacing: normal;
  word-wrap: normal;
  color: #fff;
  text-align: center;
  z-index: 2000;
  opacity: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -webkit-tap-highlight-color: transparent;
  background: rgba(0, 0, 0, .9);
  outline: 0;
  font-family: Helvetica Neue, Helvetica, Ubuntu, Segoe UI, Verdana, sans-serif;
  font-size: 17px;
  font-style: normal;
  font-weight: 300;
  line-height: 1.2;
  list-style: disc;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  -webkit-transform: translate(0);
}

.w-lightbox-backdrop, .w-lightbox-container {
  height: 100%;
  -webkit-overflow-scrolling: touch;
  overflow: auto;
}

.w-lightbox-content {
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.w-lightbox-view {
  width: 100vw;
  height: 100vh;
  opacity: 0;
  position: absolute;
}

.w-lightbox-view:before {
  content: "";
  height: 100vh;
}

.w-lightbox-group, .w-lightbox-group .w-lightbox-view, .w-lightbox-group .w-lightbox-view:before {
  height: 86vh;
}

.w-lightbox-frame, .w-lightbox-view:before {
  vertical-align: middle;
  display: inline-block;
}

.w-lightbox-figure {
  margin: 0;
  position: relative;
}

.w-lightbox-group .w-lightbox-figure {
  cursor: pointer;
}

.w-lightbox-img {
  width: auto;
  height: auto;
  max-width: none;
}

.w-lightbox-image {
  float: none;
  max-width: 100vw;
  max-height: 100vh;
  display: block;
}

.w-lightbox-group .w-lightbox-image {
  max-height: 86vh;
}

.w-lightbox-caption {
  text-align: left;
  text-overflow: ellipsis;
  white-space: nowrap;
  background: rgba(0, 0, 0, .4);
  padding: .5em 1em;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: hidden;
}

.w-lightbox-embed {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.w-lightbox-control {
  width: 4em;
  cursor: pointer;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 24px;
  transition: all .3s;
  position: absolute;
  top: 0;
}

.w-lightbox-left {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9Ii0yMCAwIDI0IDQwIiB3aWR0aD0iMjQiIGhlaWdodD0iNDAiPjxnIHRyYW5zZm9ybT0icm90YXRlKDQ1KSI+PHBhdGggZD0ibTAgMGg1djIzaDIzdjVoLTI4eiIgb3BhY2l0eT0iLjQiLz48cGF0aCBkPSJtMSAxaDN2MjNoMjN2M2gtMjZ6IiBmaWxsPSIjZmZmIi8+PC9nPjwvc3ZnPg==");
  display: none;
  bottom: 0;
  left: 0;
}

.w-lightbox-right {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9Ii00IDAgMjQgNDAiIHdpZHRoPSIyNCIgaGVpZ2h0PSI0MCI+PGcgdHJhbnNmb3JtPSJyb3RhdGUoNDUpIj48cGF0aCBkPSJtMC0waDI4djI4aC01di0yM2gtMjN6IiBvcGFjaXR5PSIuNCIvPjxwYXRoIGQ9Im0xIDFoMjZ2MjZoLTN2LTIzaC0yM3oiIGZpbGw9IiNmZmYiLz48L2c+PC9zdmc+");
  display: none;
  bottom: 0;
  right: 0;
}

.w-lightbox-close {
  height: 2.6em;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9Ii00IDAgMTggMTciIHdpZHRoPSIxOCIgaGVpZ2h0PSIxNyI+PGcgdHJhbnNmb3JtPSJyb3RhdGUoNDUpIj48cGF0aCBkPSJtMCAwaDd2LTdoNXY3aDd2NWgtN3Y3aC01di03aC03eiIgb3BhY2l0eT0iLjQiLz48cGF0aCBkPSJtMSAxaDd2LTdoM3Y3aDd2M2gtN3Y3aC0zdi03aC03eiIgZmlsbD0iI2ZmZiIvPjwvZz48L3N2Zz4=");
  background-size: 18px;
  right: 0;
}

.w-lightbox-strip {
  white-space: nowrap;
  padding: 0 1vh;
  line-height: 0;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  overflow-x: auto;
  overflow-y: hidden;
}

.w-lightbox-item {
  width: 10vh;
  box-sizing: content-box;
  cursor: pointer;
  padding: 2vh 1vh;
  display: inline-block;
  -webkit-transform: translate3d(0, 0, 0);
}

.w-lightbox-active {
  opacity: .3;
}

.w-lightbox-thumbnail {
  height: 10vh;
  background: #222;
  position: relative;
  overflow: hidden;
}

.w-lightbox-thumbnail-image {
  position: absolute;
  top: 0;
  left: 0;
}

.w-lightbox-thumbnail .w-lightbox-tall {
  width: 100%;
  top: 50%;
  transform: translate(0, -50%);
}

.w-lightbox-thumbnail .w-lightbox-wide {
  height: 100%;
  left: 50%;
  transform: translate(-50%);
}

.w-lightbox-spinner {
  box-sizing: border-box;
  width: 40px;
  height: 40px;
  border: 5px solid rgba(0, 0, 0, .4);
  border-radius: 50%;
  margin-top: -20px;
  margin-left: -20px;
  animation: .8s linear infinite spin;
  position: absolute;
  top: 50%;
  left: 50%;
}

.w-lightbox-spinner:after {
  content: "";
  border: 3px solid rgba(0, 0, 0, 0);
  border-bottom-color: #fff;
  border-radius: 50%;
  position: absolute;
  top: -4px;
  bottom: -4px;
  left: -4px;
  right: -4px;
}

.w-lightbox-hide {
  display: none;
}

.w-lightbox-noscroll {
  overflow: hidden;
}

@media (min-width: 768px) {
  .w-lightbox-content {
    height: 96vh;
    margin-top: 2vh;
  }

  .w-lightbox-view, .w-lightbox-view:before {
    height: 96vh;
  }

  .w-lightbox-group, .w-lightbox-group .w-lightbox-view, .w-lightbox-group .w-lightbox-view:before {
    height: 84vh;
  }

  .w-lightbox-image {
    max-width: 96vw;
    max-height: 96vh;
  }

  .w-lightbox-group .w-lightbox-image {
    max-width: 82.3vw;
    max-height: 84vh;
  }

  .w-lightbox-left, .w-lightbox-right {
    opacity: .5;
    display: block;
  }

  .w-lightbox-close {
    opacity: .8;
  }

  .w-lightbox-control:hover {
    opacity: 1;
  }
}

.w-lightbox-inactive, .w-lightbox-inactive:hover {
  opacity: 0;
}

.w-richtext:before, .w-richtext:after {
  content: " ";
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-richtext:after {
  clear: both;
}

.w-richtext[contenteditable="true"]:before, .w-richtext[contenteditable="true"]:after {
  white-space: initial;
}

.w-richtext ol, .w-richtext ul {
  overflow: hidden;
}

.w-richtext .w-richtext-figure-selected.w-richtext-figure-type-video div:after, .w-richtext .w-richtext-figure-selected[data-rt-type="video"] div:after, .w-richtext .w-richtext-figure-selected.w-richtext-figure-type-image div, .w-richtext .w-richtext-figure-selected[data-rt-type="image"] div {
  outline: 2px solid #2895f7;
}

.w-richtext figure.w-richtext-figure-type-video > div:after, .w-richtext figure[data-rt-type="video"] > div:after {
  content: "";
  display: none;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.w-richtext figure {
  max-width: 60%;
  position: relative;
}

.w-richtext figure > div:before {
  cursor: default !important;
}

.w-richtext figure img {
  width: 100%;
}

.w-richtext figure figcaption.w-richtext-figcaption-placeholder {
  opacity: .6;
}

.w-richtext figure div {
  color: rgba(0, 0, 0, 0);
  font-size: 0;
}

.w-richtext figure.w-richtext-figure-type-image, .w-richtext figure[data-rt-type="image"] {
  display: table;
}

.w-richtext figure.w-richtext-figure-type-image > div, .w-richtext figure[data-rt-type="image"] > div {
  display: inline-block;
}

.w-richtext figure.w-richtext-figure-type-image > figcaption, .w-richtext figure[data-rt-type="image"] > figcaption {
  caption-side: bottom;
  display: table-caption;
}

.w-richtext figure.w-richtext-figure-type-video, .w-richtext figure[data-rt-type="video"] {
  width: 60%;
  height: 0;
}

.w-richtext figure.w-richtext-figure-type-video iframe, .w-richtext figure[data-rt-type="video"] iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.w-richtext figure.w-richtext-figure-type-video > div, .w-richtext figure[data-rt-type="video"] > div {
  width: 100%;
}

.w-richtext figure.w-richtext-align-center {
  clear: both;
  margin-left: auto;
  margin-right: auto;
}

.w-richtext figure.w-richtext-align-center.w-richtext-figure-type-image > div, .w-richtext figure.w-richtext-align-center[data-rt-type="image"] > div {
  max-width: 100%;
}

.w-richtext figure.w-richtext-align-normal {
  clear: both;
}

.w-richtext figure.w-richtext-align-fullwidth {
  width: 100%;
  max-width: 100%;
  text-align: center;
  clear: both;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.w-richtext figure.w-richtext-align-fullwidth > div {
  padding-bottom: inherit;
  display: inline-block;
}

.w-richtext figure.w-richtext-align-fullwidth > figcaption {
  display: block;
}

.w-richtext figure.w-richtext-align-floatleft {
  float: left;
  clear: none;
  margin-right: 15px;
}

.w-richtext figure.w-richtext-align-floatright {
  float: right;
  clear: none;
  margin-left: 15px;
}

.w-nav {
  z-index: 1000;
  background: #ddd;
  position: relative;
}

.w-nav:before, .w-nav:after {
  content: " ";
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-nav:after {
  clear: both;
}

.w-nav-brand {
  float: left;
  color: #333;
  text-decoration: none;
  position: relative;
}

.w-nav-link {
  vertical-align: top;
  /* color: #222; */
  color: #ffffff;
  text-align: left;
  margin-left: auto;
  margin-right: auto;
  padding: 20px;
  text-decoration: none;
  display: inline-block;
  position: relative;
}

.w-nav-link.w--current {
  color: #0082f3;
}

.w-nav-menu {
  float: right;
  position: relative;
}

[data-nav-menu-open] {
  text-align: center;
  min-width: 200px;
  background: #c8c8c8;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  overflow: visible;
  display: block !important;
}

.w--nav-link-open {
  display: block;
  position: relative;
}

.w-nav-overlay {
  width: 100%;
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  overflow: hidden;
}

.w-nav-overlay [data-nav-menu-open] {
  top: 0;
}

.w-nav[data-animation="over-left"] .w-nav-overlay {
  width: auto;
}

.w-nav[data-animation="over-left"] .w-nav-overlay, .w-nav[data-animation="over-left"] [data-nav-menu-open] {
  z-index: 1;
  top: 0;
  right: auto;
}

.w-nav[data-animation="over-right"] .w-nav-overlay {
  width: auto;
}

.w-nav[data-animation="over-right"] .w-nav-overlay, .w-nav[data-animation="over-right"] [data-nav-menu-open] {
  z-index: 1;
  top: 0;
  left: auto;
}

.w-nav-button {
  float: right;
  cursor: pointer;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  padding: 18px;
  font-size: 24px;
  display: none;
  position: relative;
}

.w-nav-button:focus {
  outline: 0;
}

.w-nav-button.w--open {
  color: #fff;
  background-color: #c8c8c8;
}

.w-nav[data-collapse="all"] .w-nav-menu {
  display: none;
}

.w-nav[data-collapse="all"] .w-nav-button, .w--nav-dropdown-open, .w--nav-dropdown-toggle-open {
  display: block;
}

.w--nav-dropdown-list-open {
  position: static;
}

@media screen and (max-width: 1150px) {
  .w-nav[data-collapse="medium"] .w-nav-menu {
    display: none;
  }

  .w-nav[data-collapse="medium"] .w-nav-button {
    display: block;
  }
}

@media screen and (max-width: 767px) {
  .w-nav[data-collapse="small"] .w-nav-menu {
    display: none;
  }

  .w-nav[data-collapse="small"] .w-nav-button {
    display: block;
  }

  .w-nav-brand {
    padding-left: 10px;
  }
}

@media screen and (max-width: 479px) {
  .w-nav[data-collapse="tiny"] .w-nav-menu {
    display: none;
  }

  .w-nav[data-collapse="tiny"] .w-nav-button {
    display: block;
  }
}

.w-tabs {
  position: relative;
}

.w-tabs:before, .w-tabs:after {
  content: " ";
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-tabs:after {
  clear: both;
}

.w-tab-menu {
  position: relative;
}

.w-tab-link {
  vertical-align: top;
  text-align: left;
  cursor: pointer;
  color: #222;
  background-color: #ddd;
  padding: 9px 30px;
  text-decoration: none;
  display: inline-block;
  position: relative;
}

.w-tab-link.w--current {
  background-color: #c8c8c8;
}

.w-tab-link:focus {
  outline: 0;
}

.w-tab-content {
  display: block;
  position: relative;
  overflow: hidden;
}

.w-tab-pane {
  display: none;
  position: relative;
}

.w--tab-active {
  display: block;
}

@media screen and (max-width: 479px) {
  .w-tab-link {
    display: block;
  }
}

.w-ix-emptyfix:after {
  content: "";
}

@keyframes spin {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(360deg);
  }
}

.w-dyn-empty {
  background-color: #ddd;
  padding: 10px;
}

.w-dyn-hide, .w-dyn-bind-empty, .w-condition-invisible {
  display: none !important;
}

.wf-layout-layout {
  display: grid;
}

:root {
  --dark: #111;
  --haze: rgb(248, 248, 248);
  --color-1: var(--dark);
  --grey-4: #e5e5e5;
  --grey-1: #999;
  --color-3: #0c1b50;
  --color-4: #003815;
  --grey-3: #bbb;
  --white: white;
  --grey-2: #a5a5a5;
  --color-2: #009bfa;
}

.w-commerce-commerceaddtocartform {
  margin: 0 0 15px;
}

.w-commerce-commerceaddtocartquantityinput {
  height: 38px;
  width: 60px;
  -webkit-appearance: none;
  -ms-appearance: none;
  appearance: none;
  background-color: #fafafa;
  border: 1px solid #ddd;
  border-radius: 3px;
  margin-bottom: 10px;
  padding: 8px 6px 8px 12px;
  line-height: 20px;
  display: block;
}

.w-commerce-commerceaddtocartquantityinput::-ms-input-placeholder {
  color: #999;
}

.w-commerce-commerceaddtocartquantityinput::placeholder {
  color: #999;
}

.w-commerce-commerceaddtocartquantityinput:focus {
  border-color: #3898ec;
  outline-style: none;
}

.w-commerce-commerceaddtocartbutton {
  color: #fff;
  cursor: pointer;
  -webkit-appearance: none;
  -ms-appearance: none;
  appearance: none;
  background-color: #3898ec;
  border-width: 0;
  border-radius: 0;
  align-items: center;
  padding: 9px 15px;
  text-decoration: none;
  display: flex;
}

.w-commerce-commerceaddtocartbutton.w--ecommerce-add-to-cart-disabled {
  color: #666;
  cursor: not-allowed;
  background-color: #e6e6e6;
  border-color: #e6e6e6;
  outline-style: none;
}

.w-commerce-commercebuynowbutton {
  color: #fff;
  cursor: pointer;
  -webkit-appearance: none;
  -ms-appearance: none;
  appearance: none;
  background-color: #3898ec;
  border-width: 0;
  border-radius: 0;
  align-items: center;
  margin-top: 10px;
  padding: 9px 15px;
  text-decoration: none;
  display: inline-block;
}

.w-commerce-commercebuynowbutton.w--ecommerce-buy-now-disabled {
  color: #666;
  cursor: not-allowed;
  background-color: #e6e6e6;
  border-color: #e6e6e6;
  outline-style: none;
}

.w-commerce-commerceaddtocartoutofstock {
  background-color: #ddd;
  margin-top: 10px;
  padding: 10px;
}

.w-commerce-commerceaddtocarterror {
  background-color: #ffdede;
  margin-top: 10px;
  padding: 10px;
}

.w-commerce-commerceorderconfirmationcontainer {
  width: 100%;
  min-height: 100vh;
  background-color: #f5f5f5;
  padding: 20px;
}

.w-commerce-commercelayoutcontainer {
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.w-commerce-commercelayoutmain {
  flex: 0 800px;
  margin-right: 20px;
}

.w-commerce-commercecheckoutcustomerinfosummarywrapper {
  margin-bottom: 20px;
}

.w-commerce-commercecheckoutsummaryblockheader {
  background-color: #fff;
  border: 1px solid #e6e6e6;
  justify-content: space-between;
  align-items: baseline;
  padding: 4px 20px;
  display: flex;
}

.w-commerce-commercecheckoutblockcontent {
  background-color: #fff;
  border-bottom: 1px solid #e6e6e6;
  border-left: 1px solid #e6e6e6;
  border-right: 1px solid #e6e6e6;
  padding: 20px;
}

.w-commerce-commercecheckoutrow {
  margin-left: -8px;
  margin-right: -8px;
  display: flex;
}

.w-commerce-commercecheckoutcolumn {
  flex: 1;
  padding-left: 8px;
  padding-right: 8px;
}

.w-commerce-commercecheckoutsummaryitem, .w-commerce-commercecheckoutsummarylabel {
  margin-bottom: 8px;
}

.w-commerce-commercecheckoutsummaryflexboxdiv {
  flex-direction: row;
  justify-content: flex-start;
  display: flex;
}

.w-commerce-commercecheckoutsummarytextspacingondiv {
  margin-right: .33em;
}

.w-commerce-commercecheckoutshippingsummarywrapper, .w-commerce-commercecheckoutpaymentsummarywrapper {
  margin-bottom: 20px;
}

.w-commerce-commercelayoutsidebar {
  flex: 0 0 320px;
  position: -webkit-sticky;
  position: sticky;
  top: 20px;
}

.w-commerce-commercecheckoutorderitemswrapper {
  margin-bottom: 20px;
}

.w-commerce-commercecheckoutorderitemslist {
  margin-bottom: -20px;
}

.w-commerce-commercecheckoutorderitem {
  margin-bottom: 20px;
  display: flex;
}

.w-commerce-commercecartitemimage {
  width: 60px;
  height: 0%;
}

.w-commerce-commercecheckoutorderitemdescriptionwrapper {
  flex-grow: 1;
  margin-left: 16px;
  margin-right: 16px;
}

.w-commerce-commerceboldtextblock {
  font-weight: 700;
}

.w-commerce-commercecheckoutorderitemquantitywrapper {
  white-space: pre-wrap;
  display: flex;
}

.w-commerce-commercecheckoutorderitemoptionlist {
  margin-bottom: 0;
  padding-left: 0;
  text-decoration: none;
  list-style-type: none;
}

.w-commerce-commercecheckoutordersummarywrapper {
  margin-bottom: 20px;
}

.w-commerce-commercecheckoutsummarylineitem, .w-commerce-commercecheckoutordersummaryextraitemslistitem {
  flex-direction: row;
  justify-content: space-between;
  margin-bottom: 8px;
  display: flex;
}

.w-commerce-commercecheckoutsummarytotal {
  font-weight: 700;
}

.w-commerce-commercepaypalcheckoutformcontainer {
  width: 100%;
  min-height: 100vh;
  background-color: #f5f5f5;
  padding: 20px;
}

.w-commerce-commercecheckoutshippingmethodswrapper {
  margin-bottom: 20px;
}

.w-commerce-commercecheckoutblockheader {
  background-color: #fff;
  border: 1px solid #e6e6e6;
  justify-content: space-between;
  align-items: baseline;
  padding: 4px 20px;
  display: flex;
}

.w-commerce-commercecheckoutshippingmethodslist {
  border-left: 1px solid #e6e6e6;
  border-right: 1px solid #e6e6e6;
}

.w-commerce-commercecheckoutshippingmethoditem {
  background-color: #fff;
  border-bottom: 1px solid #e6e6e6;
  flex-direction: row;
  align-items: baseline;
  margin-bottom: 0;
  padding: 16px;
  font-weight: 400;
  display: flex;
}

.w-commerce-commercecheckoutshippingmethoddescriptionblock {
  flex-direction: column;
  flex-grow: 1;
  margin-left: 12px;
  margin-right: 12px;
  display: flex;
}

.w-commerce-commercecheckoutshippingmethodsemptystate {
  text-align: center;
  background-color: #fff;
  border-bottom: 1px solid #e6e6e6;
  border-left: 1px solid #e6e6e6;
  border-right: 1px solid #e6e6e6;
  padding: 64px 16px;
}

.w-commerce-commercecheckoutdiscounts {
  background-color: #fff;
  border: 1px solid #e6e6e6;
  flex-wrap: wrap;
  padding: 20px;
  display: flex;
}

.w-commerce-commercecheckoutdiscountslabel {
  flex-basis: 100%;
  margin-bottom: 8px;
}

.w-commerce-commercecheckoutdiscountsinput {
  height: 38px;
  width: auto;
  -webkit-appearance: none;
  -ms-appearance: none;
  appearance: none;
  min-width: 0;
  background-color: #fafafa;
  border: 1px solid #ddd;
  border-radius: 3px;
  flex: 1;
  margin-bottom: 0;
  padding: 8px 12px;
  line-height: 20px;
  display: block;
}

.w-commerce-commercecheckoutdiscountsinput::-ms-input-placeholder {
  color: #999;
}

.w-commerce-commercecheckoutdiscountsinput::placeholder {
  color: #999;
}

.w-commerce-commercecheckoutdiscountsinput:focus {
  border-color: #3898ec;
  outline-style: none;
}

.w-commerce-commercecheckoutdiscountsbutton {
  color: #fff;
  cursor: pointer;
  -webkit-appearance: none;
  -ms-appearance: none;
  appearance: none;
  height: 38px;
  background-color: #3898ec;
  border-width: 0;
  border-radius: 3px;
  flex-grow: 0;
  flex-shrink: 0;
  align-items: center;
  margin-left: 8px;
  padding: 9px 15px;
  text-decoration: none;
  display: flex;
}

.w-commerce-commercecheckoutplaceorderbutton {
  color: #fff;
  cursor: pointer;
  -webkit-appearance: none;
  -ms-appearance: none;
  appearance: none;
  text-align: center;
  background-color: #3898ec;
  border-width: 0;
  border-radius: 3px;
  align-items: center;
  margin-bottom: 20px;
  padding: 9px 15px;
  text-decoration: none;
  display: block;
}

.w-commerce-commercepaypalcheckouterrorstate {
  background-color: #ffdede;
  margin-top: 16px;
  margin-bottom: 16px;
  padding: 10px 16px;
}

@media screen and (max-width: 767px) {
  .w-commerce-commercelayoutcontainer {
    flex-direction: column;
    align-items: stretch;
  }

  .w-commerce-commercelayoutmain {
    flex-basis: auto;
    margin-right: 0;
  }

  .w-commerce-commercelayoutsidebar {
    flex-basis: auto;
  }
}

@media screen and (max-width: 479px) {
  .w-commerce-commerceaddtocartquantityinput {
    font-size: 16px;
  }

  .w-commerce-commercecheckoutrow {
    flex-direction: column;
  }

  .w-commerce-commercecheckoutdiscountsinput {
    font-size: 16px;
  }
}

body {
  color: var(--dark);
  font-family: Open Sans, sans-serif;
  font-size: 14px;
  line-height: 24px;
}

h1 {
  margin-top: 0;
  margin-bottom: 20px;
  font-family: Varela Round, sans-serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 48px;
}

h2 {
  margin-top: 0;
  margin-bottom: 16px;
  font-family: Varela Round, sans-serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 40px;
}

h3 {
  margin-top: 0;
  margin-bottom: 16px;
  font-family: Varela Round, sans-serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 36px;
}

h4 {
  margin-top: 0;
  margin-bottom: 16px;
  font-family: Varela Round, sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 32px;
}

h5 {
  margin-top: 0;
  margin-bottom: 8px;
  font-family: Varela Round, sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 24px;
}

h6 {
  margin-top: 0;
  margin-bottom: 8px;
  font-family: Varela Round, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 20px;
}

p {
  margin-bottom: 28px;
  font-size: 14px;
  line-height: 24px;
}

.body {
  color: var(--dark);
  font-family: Open Sans, sans-serif;
}

.section {
  /* background-color: var(--haze); */
  background-color: white;
  text-align: left;
  -webkit-text-fill-color: inherit;
  background-clip: border-box;
  border-radius: 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 80px 24px;
  display: flex;
  position: static;
}

.section2 {
  background-color: var(--haze);
  text-align: left;
  -webkit-text-fill-color: inherit;
  background-clip: border-box;
  border-radius: 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 0px;
  padding-bottom: 80px;
  display: flex;
  position: static;
}

.section3 {
  background-color: #FFF6D1;
  text-align: left;
  -webkit-text-fill-color: inherit;
  background-clip: border-box;
  border-radius: 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 0px;
  padding-bottom: 80px;
  display: flex;
  position: static;
}

.section7 {
  background-color: #CDF1D4;
  text-align: left;
  -webkit-text-fill-color: inherit;
  background-clip: border-box;
  border-radius: 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 0px;
  padding-bottom: 80px;
  display: flex;
  position: static;
}





.section8 {
  /* background-color: #FFA9A9; */
  background-color: #99C5FF;
  text-align: left;
  -webkit-text-fill-color: inherit;
  background-clip: border-box;
  border-radius: 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 0px;
  padding-bottom: 80px;
  display: flex;
  position: static;
}
.section.color {
  background-color: var(--color-1);
  /* background-color: red; */
}

.section.color.no-padding-vertical {
  background-color: var(--dark);
}

.section.hero-section2 {
  height: 110vh;
  -webkit-text-fill-color: inherit;
  /* background-image: url("/static/image/universe.png");  */
  background-image: url("/static/image/universe.png"); 
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-clip: border-box;
  border-radius: 0;
  position: relative;
}



/* .section9.hero-section29 {
  height: auto;
  -webkit-text-fill-color: inherit;
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-clip: border-box;
  border-radius: 0;
  position: relative;
  display: flex;
  justify-content: center; 
  align-items: center; 
}

.section9.hero-section29 .column {
  flex: 1; 
  text-align: center; 
  overflow: hidden; 
  position: relative; 
}

.section9.hero-section29 .column img {
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
  transition: transform 0.3s ease, filter 0.3s ease; 
  filter: brightness(1); 
}

.section9.hero-section29 .column:hover img {
  transform: scale(1.2); 

} */









.submit-button:disabled {
  background-color: #ccc; /* Change the background color for disabled button */
  cursor: not-allowed;
}

.submit-button2:disabled {
  background-color: #ccc; /* Change the background color for disabled button */
  cursor: not-allowed;
}
.section.hero-section5 {
  height: 110vh;
  -webkit-text-fill-color: inherit;
  /* background-image: url("https://assets-global.website-files.com/65908eea263a51a2739ce17d/6590915bedabb59a8941dc29_sss.png"); */
  background-image: url("/static/image/universe.png"); 
  /* background-color: var(--haze); */
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-clip: border-box;
  border-radius: 0;
  position: relative;
}
.section.hero-section {
  height: 110vh;
  -webkit-text-fill-color: inherit;
  /* background-image: url("https://assets-global.website-files.com/65908eea263a51a2739ce17d/6590915bedabb59a8941dc29_sss.png"); */
  background-image: url("/static/image/hospital.png"); 

  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-clip: border-box;
  border-radius: 0;
  position: relative;
}

.section.video-section {
  color: #fff;
  background-image: url("https://assets-global.website-files.com/65908eea263a51a2739ce17d/6590915bedabb59a8941dc29_sss.png"), linear-gradient(rgba(0, 0, 0, .3), rgba(0, 0, 0, .3));
  background-position: 50% 30%, 0 0;
  background-repeat: repeat, repeat;
  background-size: auto, auto;
  background-attachment: scroll, scroll;
  padding-bottom: 112px;
}

.section_line2.video-section_line2 {
  color: #fff;
  background-image: url("/static/image/yo0918.png"), linear-gradient(rgba(0, 0, 0, .3), rgba(0, 0, 0, .3));
  background-position: 50% 30%, 0 0;
  background-repeat: repeat, repeat;
  background-size: auto, auto;
  background-attachment: scroll, scroll;
  padding-bottom: 112px;
}

.wrapper {
  width: 100%;
  max-width: 1200px;
  background-color: rgba(0, 0, 0, 0);
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  display: flex;
  
}

.wrapper73 {
  width: 100%;
  /* max-width: 1450px; */
  background-color: rgba(0, 0, 0, 0);
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  display: flex;
  
}

.wrapper.nav-bar-wrapper {
  height: 72px;
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
  display: flex;
}

.wrapper73.nav-bar-wrapper73 {
  height: 72px;
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
  display: flex;
}

.wrapper.nav-top-wrapper {
  height: 100%;
  flex-direction: row;
  justify-content: space-between;
}

.wrapper.side-paddings {
  padding-left: 15px;
  padding-right: 15px;
}

.button {
  width: 100%;
  height: 48px;
  float: none;
  clear: none;
  aspect-ratio: auto;
  background-color: var(--dark);
  outline-offset: 0px;
  color: #fff;
  text-align: center;
  object-fit: fill;
  object-position: 50% 50%;
  border-radius: 20px;
  outline: 3px #fff;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 19px;
  margin-bottom: 9px;
  margin-right: 0;
  padding: 12px 28px;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  transition: transform .3s, box-shadow .3s;
  display: flex;
  position: relative;
  overflow: visible;
}

.button:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 8px -4px #e4c206;
}

.button.small {
  height: 40px;
  border-radius: 20px;
  padding: 8px 24px;
  font-size: 13px;
  line-height: 24px;
}

.button.small.white {
  margin-bottom: -29px;
  margin-right: 0;
  font-size: 15px;
}

.button.white {
  color: var(--dark);
  background-color: #fff;
}

.button.white:hover {
  box-shadow: 0 8px 8px -4px rgba(17, 17, 17, .2);
}

.button.ghost {
  box-shadow: inset 0 0 0 2px var(--grey-4);
  color: var(--dark);
  background-color: rgba(0, 0, 0, 0);
}

.button.ghost-bg {
  color: #fff;
  background-color: rgba(0, 0, 0, 0);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .4);
}

.button.big {
  height: 56px;
  border-radius: 28px;
  padding: 16px 32px;
  font-size: 17px;
  line-height: 24px;
}

.button.add-to-cart-button {
  margin-top: 0;
  margin-bottom: 12px;
  margin-right: 8px;
}

.button.buy-now-button {
  box-shadow: inset 0 0 0 2px var(--grey-4);
  color: var(--dark);
  background-color: rgba(0, 0, 0, 0);
  margin-top: 0;
}

.style-block {
  text-align: left;
  padding: 40px 15px;
}

.paragraph-small {
  margin-bottom: 20px;
  font-size: 12px;
  line-height: 20px;
}

.button-styles {
  width: 100%;
  flex-wrap: wrap;
  align-items: stretch;
  padding: 24px 15px;
  display: flex;
}

.button-style-wrapper {
  width: 25%;
  text-align: center;
  flex-direction: column;
  flex: 0 auto;
  justify-content: center;
  padding: 24px 4%;
  display: flex;
}

.button-style-wrapper.dark-bg {
  background-color: var(--color-1);
  color: var(--grey-4);
}

.nav-bar {
  z-index: 100;
  /* background-color: rgba(255, 255, 255, 0.5);  */
  /* background: rgba(255, 255, 255, 0.2); */
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  flex-direction: column;
  justify-content: flex-start;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  box-shadow: 1px 1px 15px rgba(0, 0, 0, .12);

  height: 100px;
}


/* .nav-bar {
  z-index: 100;
  background-color: rgba(255, 255, 255, 0.5); 
  flex-direction: column;
  justify-content: flex-start;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  box-shadow: 1px 1px 15px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(10px); 
  -webkit-backdrop-filter: blur(10px); 
} */


.nav-link {
  /* color: var(--dark); */
  color: #fff;
  text-align: left;
  border-radius: 16px;
  padding: 12px 18px;
  font-size: 22px;
  transition: color .3s, background-color .3s, box-shadow .3s;
}


.nav-link:hover {
  /* text-decoration: underline; */
  transform: scale(1.07);
}
@media screen and (max-width: 1150px) {
  .nav-link:hover {
    transform: none;
  }
  }

.nav-link.w--current {
  color: #fff;
}

.text-white {
  color: #fff;
}

.utility-page-wrap {
  width: 100vw;
  height: 100vh;
  max-height: 100%;
  max-width: 100%;
  background-image: url("https://assets-global.website-files.com/65908eea263a51a2739ce17d/65908eea263a51a2739ce1e1_li-tzuni-507346-unsplash.jpg");
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  justify-content: center;
  align-items: center;
  padding: 48px 16px;
  display: flex;
}

.utility-page-content {
  width: 370px;
  text-align: center;
  background-color: #fff;
  border-radius: 16px;
  flex-direction: column;
  padding: 48px;
  display: flex;
}

.utility-page-form {
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.haze {
  background-color: var(--haze);
}

.text-grey {
  font-size: 18px;
  color: rgb(78, 77, 77);
  font-weight: bold;
}



 .steps .step span {
  color: #e4c206;
  font-weight: bold;
  margin-right: 10px;
  padding: 4px;
  display: inline-block;
  animation: pulse 2s infinite ease-in-out !important;

}

.steps7 .step7 span {
  color: #07B628;
  font-weight: bold;
  margin-right: 10px;
  padding: 4px;
  display: inline-block;
  animation: pulse 2s infinite ease-in-out !important;

}

.steps8 .step8 span {
  color: #011F87;
  font-weight: bold;
  margin-right: 10px;
  padding: 4px;
  display: inline-block;
  animation: pulse 2s infinite ease-in-out !important;

}


@keyframes pulse {
  0% { transform: scale(1.4); }
  50% { transform: scale(1.8); }
  100% { transform: scale(2.0); }
}


/* h2 {
  color: #333;
  text-align: center;
  font-size: 24px;
} */

.divider6 {
  height: 4px;
  background-color: #e4c206;
  width: 80%;
  margin: 10px auto;
  animation: expandDivider 1s ease-out forwards;
}

.divider7 {
  height: 4px;
  background-color: #07B628;
  width: 80%;
  margin: 10px auto;
  animation: expandDivider 1s ease-out forwards;
}

.divider8 {
  height: 4px;
  background-color: #011F87;
  width: 80%;
  margin: 10px auto;
  animation: expandDivider 1s ease-out forwards;
}

.steps .step {
  color: #444444;
  font-size: 18px;
  margin: 10px 0;
  opacity: 0;
  transform: translateX(-20px);
  animation: fadeInRight 0.5s ease-out forwards;
  text-align: center;
  align-items: center;
}

.steps .step span {
  color: #e4c206;
  font-weight: bold;
  margin-right: 10px;
}

.steps7 .step7 span {
  color: #07B628;
  font-weight: bold;
  margin-right: 10px;
}


.steps7 .step7 {
  color: #444444;
  font-size: 18px;
  margin: 10px 0;
  opacity: 0;
  transform: translateX(-20px);
  animation: fadeInRight 0.5s ease-out forwards;
  text-align: center;
  align-items: center;
}

.steps8 .step8 span {
  color: #011F87;
  font-weight: bold;
  margin-right: 10px;
}


.steps8 .step8 {
  color: #444444;
  font-size: 18px;
  margin: 10px 0;
  opacity: 0;
  transform: translateX(-20px);
  animation: fadeInRight 0.5s ease-out forwards;
  text-align: center;
  align-items: center;
}

.steps .step a {
  color: #e4c206;
  text-decoration: none;
}

.steps7 .step7 a {
  color: #23af07;
  text-decoration: none;
}

.steps8 .step8 a {
  color: #011F87;
  text-decoration: none;
}

.steps .step a:hover {
  text-decoration: underline;
}

@keyframes expandDivider {
  from { width: 0; }
  to { width: 50%; }
}

@keyframes fadeInRight {
  from {
      opacity: 0;
      transform: translateX(-20px);
  }
  to {
      opacity: 1;
      transform: translateX(0);
  }
}

.step:nth-child(1) { animation-delay: 0.6s; }
.step:nth-child(2) { animation-delay: 0.7s; }
.step:nth-child(3) { animation-delay: 0.8s; }
.step:nth-child(4) { animation-delay: 0.9s; }
.step:nth-child(5) { animation-delay: 1s; }










h1.bordered-text {
  font-size: 42px;
  position: relative;
  display: inline-block;
}

h1.bordered-text::before {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  color: transparent;
  -webkit-text-stroke: 2px black; /* Width and color of the text border */
  z-index: -1;
}





.steps99 .step99 span {
  color: #e4c206;
  font-weight: bold;
  /* margin-right: 10px; */
  margin: 5px;
  padding: 4px;
  display: inline-block;
  animation: pulse 2s infinite ease-in-out !important;
}



@keyframes pulse {
  /* 0% { transform: scale(1.4); }
  50% { transform: scale(1.8); }
  100% { transform: scale(2.0); } */
  0% {
    transform: scale(1);
    /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); */
}
50% {
    transform: scale(1.2);
    /* box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4); */
}
100% {
    transform: scale(1);
    /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); */
}
}


.divider6 {
  height: 4px;
  background-color: #e4c206;
  width: 80%;
  margin: 10px auto;
  animation: expandDivider 1s ease-out forwards;
}

.steps99 .step99 {
  color: #000000;
  font-size: 34px;
  margin: 10px 0;
  opacity: 0;
  transform: translateX(-20px);
  animation: fadeInRight 0.5s ease-out forwards;
}

.steps999 .step999 {

  transform: translateX(-20px);
  animation: fadeInRight 0.5s ease-out forwards;
}

.steps99 .step99 span {
  color: #e4c206;
  font-weight: bold;
  /* margin-right: 10px; */
}

.steps99 .step99 a {
  color: #23af07;
  text-decoration: none;
}



.steps99 .step99 a:hover {
  text-decoration: underline;
}

@keyframes expandDivider {
  from { width: 0; }
  to { width: 50%; }
}

@keyframes fadeInRight {
  from {
      opacity: 0;
      transform: translateX(-20px);
  }
  to {
      opacity: 1;
      transform: translateX(0);
  }
}

.step99:nth-child(1) { animation-delay: 0.6s; }
.step99:nth-child(2) { animation-delay: 0.7s; }
.step99:nth-child(3) { animation-delay: 0.8s; }
.step99:nth-child(4) { animation-delay: 0.9s; }
.step99:nth-child(5) { animation-delay: 1s; }








.no-margin {
  margin: 0;
  position: static;
}

.no-margin99 {
  margin: 0;
  position: static;
}

@media screen and (max-width: 700px) {
  .no-margin {
    margin: 0;
    position: static;
    font-size: 14px;
  }

  .no-margin99 {
    margin: 0;
    position: static;
    font-size: 24px;
  }

  .steps99 .step99 {
    color: #000000;
    font-size: 22px;
    margin: 10px 0;
    opacity: 0;
    transform: translateX(-20px);
    animation: fadeInRight 0.5s ease-out forwards;
  }

  .steps .step {
    color: #444444;
    font-size: 16px;
    margin: 10px 0;
    opacity: 0;
    transform: translateX(-20px);
    animation: fadeInRight 0.5s ease-out forwards;
  }
}


.no-marginpp {
  margin: 0;
  position: static;
  text-align: center;
}

.no-margin2 {
  margin: 0;
  position: static;
  text-align: left;
}

.no-margin-bottom {
  margin-bottom: 0;
}

.text-green {
  color: var(--color-1);
}

.intro {
  max-width: 600px;
  text-align: center;
  flex-direction: column;
  align-items: center;
  margin-bottom: 80px;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
}

.intro.no-margin {
  margin: 0;
}

.intro.wide {
  max-width: 800px;
}

.title {
  color: var(--dark);
  margin-bottom: 45px;
  font-size: 50px;
  font-weight: 600;
  line-height: 16px;
}

.title.white {
  color: #fff;
}

.no-padding-vertical {
  padding-top: 0;
  padding-bottom: 0;
}

.footer {
  width: 100%;
  flex-wrap: wrap;
  padding-top: 48px;
  display: flex;
  position: relative;
}

.footer-nav {
  flex-direction: row;
  flex: 1;
  justify-content: center;
  align-items: center;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
}

.footer-link {
  color: #fff;
  margin-left: 10px;
  margin-right: 10px;
  padding: 4px;
  font-size: 20px;
  text-decoration: none;
}

.footer-link:hover {
  text-decoration: underline;
}

.footer-link.w--current {
  font-size: 25px;
}

.footer-bottom {
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, .25);
  justify-content: space-between;
  margin-top: 48px;
  margin-left: 15px;
  margin-right: 15px;
  padding-top: 32px;
  padding-bottom: 32px;
  font-size: 11px;
  line-height: 16px;
  display: flex;
}

.brand {
  justify-content: center;
  align-items: center;
  padding-left: 15px;
  padding-right: 15px;
  font-family: Varela Round, sans-serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 32px;
  display: flex;
}

.nav-menu {
  align-items: center;
  padding-left: 24px;
  padding-right: 24px;
  display: flex;
}

.no-padding-top {
  padding-top: 0;
}

.no-padding-bottom {
  padding-bottom: 0;
}

.full-width {
  width: 100%;
}

.full-width.video-style {
  width: 100%;
  height: auto; /* Maintain aspect ratio */
}


.page-wrapper {
  /* padding-top: 104px; */
  /* padding-top: 70px; */
  overflow: hidden;
}

.navigation {
  flex: 1;
  justify-content: space-between;
  align-items: center;
  display: flex;
  margin-top: 26px;
}

.hero-intro {
  width: 100%;
  max-width: 570px;
  color: var(--dark);
  text-align: center;
  background-color: #fff;
  border-radius: 16px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 0;
  padding: 56px 48px;
  display: flex;
}

.nav-top {
  height: 40px;
  color: #fff;
  background-color: #111111;
  flex-direction: column;
  align-items: center;
  padding-left: 24px;
  padding-right: 24px;
  font-size: 11px;
  line-height: 16px;
  display: flex;
}

.nav-main {
  height: 72px;
  flex-direction: column;
  align-items: center;
  padding-left: 24px;
  padding-right: 24px;
  display: flex;
}

.nav-top-info {
  align-items: center;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
}

.nav-top-text {
  margin-right: 16px;
  font-size: 16px;
}

.link-white {
  color: #fff;
  text-decoration: underline;
}

.footer-brand {
  color: #fff;
  justify-content: center;
  align-items: center;
  padding-left: 15px;
  padding-right: 15px;
  font-family: Varela Round, sans-serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 32px;
  display: flex;
}

.footer-left {
  width: 200px;
  align-items: center;
  display: flex;
}

.footer-social {
  width: 200px;
  justify-content: flex-end;
  align-items: center;
  padding-left: 12px;
  padding-right: 12px;
  display: flex;
}

.footer-bottom-left {
  width: 50%;
  align-items: center;
  display: flex;
}

.footer-bottom-right {
  width: 50%;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.footer-bottom-divider {
  width: 3px;
  height: 3px;
  background-color: rgba(255, 255, 255, .5);
  border-radius: 50%;
  margin-left: 8px;
  margin-right: 8px;
}

.instagram {
  width: 100%;
  margin-bottom: 72px;
  padding-left: 7px;
  padding-right: 7px;
  display: flex;
}

.instagram-link {
  border-radius: 16px;
  flex: 1;
  margin-left: 8px;
  margin-right: 8px;
  transition: transform .3s, box-shadow .3s;
  position: relative;
  overflow: hidden;
}

.instagram-link:hover {
  z-index: 1;
  transform: scale(1.05)translate(0);
  box-shadow: 0 8px 20px -4px rgba(0, 0, 0, .16);
}

.home-categories {
  width: 78%;
  justify-content: center;
  padding-top: 32px;
  display: flex;
}
.home-categories2 {
  width: 100%;
  justify-content: center;
  padding-top: 32px;
  display: flex;
}

.home-category-card {
  background-color: var(--color-3);
  min-width: 48%;
  color: #fff;
  border-radius: 16px;
  flex: 1;
  align-items: center;
  margin-left: 10px;
  margin-right: 10px;
  padding: 48px 40px;
  display: flex;
  position: relative;
}

.home-category-card.red {
  background-color: var(--color-3);
  
  -webkit-text-fill-color: inherit;
  background-clip: border-box;
  justify-content: flex-end;
}

.home-category-image-1 {
  width: 220px;
  border-radius: 20px;
  position: absolute;
  bottom: 26px;
  left: 15px;
}

.home-category-info-1 {
  margin-left: 224px;
}

.home-category-image-2 {
  width: 220px;
  aspect-ratio: auto;
  border-radius: 20px;
  position: absolute;
  bottom: 17px;
  right: 21px;
}

.home-category-info-2 {
  text-align: right;
  margin-right: 224px;
}

.shop-header {
  width: 100%;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
}
.shop-header2 {
  width: 100%;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 40px;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
}











.no-underline {
  text-decoration: none;
  color: inherit; /* Maintain the original color */
}
.no-underline:visited {
  color: inherit; /* Maintain the original color when visited */
}



.navbar-container555 {
  width: 100%;
  overflow: hidden;
  /* background-color: rgba(255, 255, 255, 0.3);  */

  background-color: rgba(0, 0, 0, 1);
  /* padding: 10px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0); */
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 50px;
}

.navbar555 {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.navbar-item {
  color: white;
  font-weight: bold;
  text-align: center;
  font-size: 1.6rem;
  min-width: 200px;
  background-color: rgba(0, 0, 0, 0);
  padding: 14px 20px;
  position: absolute;
  opacity: 0;
  transition: color 0.3s linear, letter-spacing 0.3s linear;
  animation: fadeInOut 16s linear infinite;
}

.navbar-item:hover {
  color: transparent;
  letter-spacing: 4px;
  background: linear-gradient(45deg, #ff6b6b, #f06595, #cc5de8, #845ef7, #5c7cfa, #339af0, #CFB508, #20c997, #51cf66, #94d82d, #fcc419, #ff922b);
  -webkit-background-clip: text;
  background-clip: text;
}




@media (min-width: 1183px) {
.navbar-item {
  color: white;
  font-weight: bold;
  text-align: center;
  font-size: 1.6rem;
  min-width: 200px;
  background-color: rgba(0, 0, 0, 0);
  padding: 14px 20px;
  opacity: 0;
  position: relative;
  animation: fadeInOut 8s linear infinite;
}

@keyframes fadeInOut {
  0%, 15%, 100% {
      opacity: 0;
      transform: translateY(10px);
  }
  20%, 80% {
      opacity: 1;
      transform: translateY(0);
  }
}
}



@media (max-width: 1182px) {

  .no-underline {
    pointer-events: none;
  }
  


.navbar-item:nth-child(1) {
  animation-delay: 0s;
}

.navbar-item:nth-child(2) {
  animation-delay: 4s;
}

.navbar-item:nth-child(3) {
  animation-delay: 8s;
}

.navbar-item:nth-child(4) {
  animation-delay: 12s;
}

@keyframes fadeInOut {
  0%, 25%, 100% {
      opacity: 0;
      transform: translateY(10px);
  }
  5%, 20% {
      opacity: 1;
      transform: translateY(0);
  }
}
}















/* #loading-overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.9);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.loader-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 20px;
  color: #333; 
  font-weight: bold;
  text-align: center;
  animation: pulsate 1.5s ease-out infinite;
}

.loader-icon img {
  width: 110px;
  height: auto;
  border-radius: 50%;
  border: 2px solid #ffffff;
  margin-bottom: 10px; 
}

@keyframes pulsate {
  0%, 100% {
      transform: scale(1);
  }
  50% {
      transform: scale(1.4); 
  }
}
.loader2 {
  display: inline-block;
  width: 80px;
  height: 80px;
  position: relative;
}

.loader2:after {
  content: " ";
  display: block;
  width: 64px;
  height: 64px;
  margin: 8px;
  border-radius: 50%;
  border: 6px solid #000000; 
  border-color: #000000 transparent #000000 transparent;
  animation: dual-ring 1.2s linear infinite;
}

@keyframes dual-ring {
  0% {
      transform: rotate(0deg);
  }
  100% {
      transform: rotate(360deg);
  }
} */





/* === 黑金奢華版：光環完全貼合圖片 === */
#loading-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 15, 15, 0.95); /* 深黑底 */
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 999999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.6s ease-out;
  overflow: hidden;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* === 圖片容器 === */
.loader-icon {
  position: relative;
  width: 80px;
  height: 80px;
  /* animation: float 3.2s ease-in-out infinite; */
}

/* === 圖片：高清鎖定 === */
.loader-icon img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 110px;
  max-height: 110px;
  width: auto;
  height: auto;
  border-radius: 50%;
  object-fit: contain;
  /* border: 3px solid #FFD700;  */
  box-shadow: 
    0 0 20px rgba(255, 215, 0, 0.4),
    0 0 40px rgba(255, 215, 0, 0.2),
    inset 0 0 15px rgba(0, 0, 0, 0.5);
  z-index: 10;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

/* === 懸浮動畫 === */
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-16px) rotate(1deg); }
}

/* === 呼吸光暈：金色光暈，緊貼圖片 === */
.loader-icon::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 126px;
  height: 126px;
  border-radius: 50%;
  background: radial-gradient(circle at center, 
    rgba(255, 215, 0, 0.5) 0%, 
    rgba(255, 215, 0, 0.2) 50%, 
    transparent 70%
  );
  transform: translate(-50%, -50%);
  animation: gold-pulse 2s ease-in-out infinite;
  z-index: 1;
  pointer-events: none;
}

@keyframes gold-pulse {
  0%, 100% { 
    transform: translate(-50%, -50%) scale(0.92); 
    opacity: 0.7; 
  }
  50% { 
    transform: translate(-50%, -50%) scale(1.15); 
    opacity: 0.3; 
  }
}

/* === 旋轉光環：黑金雙色，極致貼合 === */
.loader-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 114px;
  height: 114px;
  border: 2px solid #000000;
  border-top: 4px solid #FFD700; /* 金色旋轉線 */
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: gold-spin 1.6s linear infinite;
  z-index: 2;
  box-shadow: 
    0 0 20px rgba(255, 215, 0, 0.5),
    0 0 35px rgba(255, 215, 0, 0.3);
}

@keyframes gold-spin {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* === 暗黑模式（已是黑金，無需調整）=== */
/* 黑金本來就適合深色，無需 media query */

/* === 背景微光粒子（金色漂浮粒子）=== */
#loading-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(255, 215, 0, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 215, 0, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
  animation: gold-drift 25s linear infinite;
  pointer-events: none;
  z-index: 0;
}

@keyframes gold-drift {
  from { transform: translate(0, 0); }
  to { transform: translate(120px, 120px); }
}












.image-container {
  position: relative;
  display: inline-block; /* or block depending on layout */
}

.image-container img {
  width: 100%; /* Adjust as necessary */
  height: auto;
  display: block;
}

.logo-banner {
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(135deg, #ff0000 0%, #ffa600 100%); /* Refreshing mint to lime gradient */
  color: #ffffff; /* Crisp white text */
  padding: 6px 16px; /* Refined padding */
  /* transform: translate(40%, -40%) rotate(25deg); */
  /* transform: translate(-30%, 90%) rotate(0deg); */
  transform: translate(25%, 90%) rotate(0deg);
  /* transform: translate(calc(-110vw), 90%); */

  transform-origin: top left;
  font-weight: 900;
  font-size: 21px; /* Slightly larger font */
  font-family: 'Roboto', 'Arial', sans-serif; /* Modern and versatile font */
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2); 
  border-radius: 6px; /* Smoothly rounded corners */
  /* border: 1px solid rgba(255, 255, 255, 0.4);  */
  letter-spacing: 3px; /* Ample letter spacing for a relaxed look */
  text-transform: uppercase; /* Uppercase letters for a contemporary flair */
  opacity: 0.95; /* Slightly transparent for an overlay effect */
}


.logo-banner_indi {
  position: absolute;
  top: 0;
  left: 0;
  /* color:#011F87 */
  background: linear-gradient(135deg, #007BFF 0%, #011F87 100%); /* Refreshing mint to lime gradient */
  color: #ffffff; /* Crisp white text */
  padding: 6px 16px; /* Refined padding */
  /* transform: translate(40%, -40%) rotate(25deg); */
  /* transform: translate(-30%, 90%) rotate(0deg); */
  transform: translate(25%, 90%) rotate(0deg);
  /* transform: translate(calc(-110vw), 90%); */

  transform-origin: top left;
  font-weight: 900;
  font-size: 21px; /* Slightly larger font */
  font-family: 'Roboto', 'Arial', sans-serif; /* Modern and versatile font */
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2); 
  border-radius: 6px; /* Smoothly rounded corners */
  /* border: 1px solid rgba(255, 255, 255, 0.4);  */
  letter-spacing: 3px; /* Ample letter spacing for a relaxed look */
  text-transform: uppercase; /* Uppercase letters for a contemporary flair */
  opacity: 0.95; /* Slightly transparent for an overlay effect */
}


.codeBlock {
    border: 2px solid #ffdf2c; /* Blue border */
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    padding: 10px; /* Space between the content and the border */
    background-color: #f8f8f8; /* Light background for the code block */
    font-family: 'Courier New', Courier, monospace; /* Monospaced font for better readability */
    color: #333; /* Darker text color for contrast */
}


.shop-header-line {
  width: 100%;
  height: 2px;
  background-color: var(--grey-4);
  margin-top: 52px;
  margin-bottom: 6px;

}

.button-horizon {
  display: flex;
  justify-content: center;
  align-items: center;
}
.button-horizon button {
  margin: 0 10px; /* Adds space between buttons */
}


.shop-header-line-r {
  width: 100%;
  height: 2px;
  background-color: var(--grey-4);
  margin-top: 32px;
  display: flex; 
  justify-content: flex-end;
}

.shop-header-line-r-w {
  width: 100%;
  height: 2px;
  background-color: var(--haze);
  margin-top: 3px;
  display: flex; 
  justify-content: flex-end;
}

.products {
  width: 100%;
  flex-wrap: wrap;
  display: flex;
}

.product-card-wrapper {
  width: 25%;
  flex-direction: column;
  padding: 15px;
  display: flex;
}

.product-card {
  width: 100%;
  text-align: center;
  background-color: #fff;
  border-radius: 16px;
  flex-direction: column;
  flex: 1;
  align-items: center;
  padding: 24px 24px 32px;
  text-decoration: none;
  transition: transform .3s, box-shadow .3s;
  display: flex;
  box-shadow: 0 2px 3px rgba(0, 0, 0, .7);
}

.product-card:hover {
  transform: scale(1.05)translate(0, -2px);
  box-shadow: 0 8px 20px -4px rgba(0, 0, 0, .15);
}

.product-card-image-wrapper {
  width: 100%;
  height: 200px;
  justify-content: center;
  align-items: center;
  margin-bottom: 16px;
  padding: 20px;
  display: flex;
}

.product-card-heading {
  color: var(--dark);
  margin-bottom: 12px;
}

h6.product-card-heading {
  color: var(--dark);
  margin-bottom: 12px;
  font-size: 18px;
  font-weight: 600;
}

.product-card-price {
  height: 24px;
  background-color: var(--dark);
  color: #fff;
  border-radius: 16px;
  padding: 2px 12px;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
}

/* .shop-header-color {
  width: 206px;
  height: 100%;
  background-color: var(--dark);
  
} */


/* .shop-header-color {
  width: 206px;
  height: 100%;
  background: linear-gradient(to bottom, #FF5F6D, #FFC371); 
  background-color: var(--dark); 
} */

@keyframes colorShift {
  0% { background-color: #3ca72e; }
  50% { background-color: #e4c206; } /* Intermediate color */
  100% { background-color: #2575fc; }
}

.shop-header-color {
  width: 100%;
  height: 100%;
  background-color: var(--dark);
  animation: colorShift 5s infinite; /* Apply the animation */
  /* border-right: 3px solid #ff0000; */
}


.shop-header-color2 {
  width: 166px;
  height: 100%;
  background-color: var(--dark);
  
}

.shop-header-color.green {
  background-color: var(--color-1);
}

.link {
  color: var(--dark);
  border-bottom: 2px solid #ddd;
  padding-top: 2px;
  padding-bottom: 2px;
  font-size: 13px;
  font-weight: 600;
  line-height: 20px;
  text-decoration: none;
  transition: border-color .3s;
  display: inline-block;
}

.link:hover {
  border-bottom-color: var(--color-1);
}

.link.arrow-link {
  background-image: url("https://assets-global.website-files.com/65908eea263a51a2739ce17d/65908eea263a51a2739ce1ff_arrow-right-mini-icon.svg");
  background-position: 100%;
  background-repeat: no-repeat;
  background-size: 11px;
  margin-top: 4px;
  padding-right: 20px;
  font-size: 18px;
}

.play-button {
  width: 94px;
  height: 94px;
  background-color: red;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  padding: 20px;
  transition: transform .3s;
  display: flex;
}

.play-button:hover {
  transform: scale(1.2);
  border-radius: 50%;
  background-color: red;
}

.subscribe {
  width: 100%;
  background-color: #fff;
  border-radius: 16px;
  justify-content: space-between;
  align-items: center;
  padding: 48px;
  display: flex;
  box-shadow: 0 1px 2px rgba(0, 0, 0, .15);
}

.subscribe-form-wrapper {
  width: 50%;
  margin-bottom: 0;
  padding-left: 15px;
}

.subscribe-info {
  flex: 1;
  align-items: center;
  padding-right: 15px;
  display: flex;
}

.subscribe-form {
  justify-content: center;
  align-items: center;
  display: flex;
}

.input {
  height: 48px;
  border: 2px solid var(--grey-4);
  background-color: var(--haze);
  border-radius: 24px;
  margin-bottom: 24px;
  padding-left: 28px;
  padding-right: 28px;
  transition: border-color .3s, background-color .3s;
}

.input:hover {
  background-color: #fff;
}

.input:focus {
  border-color: var(--color-1);
  background-color: #fff;
}

.input.subscribe-input {
  margin-bottom: 0;
  margin-right: 16px;
}

.input.subscribe-input:focus {
  border-color: var(--color-1);
  background-color: #fff;
}

.input.quantity-input {
  width: 80px;
  margin-bottom: 12px;
  margin-right: 8px;
}

.input.text-area {
  height: auto;
  min-height: 160px;
  padding-top: 24px;
  padding-bottom: 24px;
}

.input.center {
  text-align: center;
}

.input.no-margin-bottom {
  margin-bottom: 0;
}

.input.small {
  height: 40px;
  padding-left: 20px;
  padding-right: 20px;
}

.subscribe-icon {
  width: 64px;
  height: 64px;
  background-color: var(--dark);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  margin-right: 24px;
  padding: 18px 16px 16px;
  display: flex;
}

.form-success {
  background-color: rgba(0, 0, 0, 0);
}

.form-error {
  color: var(--color-4);
  background-color: rgba(251, 65, 107, .1);
  border-radius: 16px;
  margin-top: 12px;
  padding: 6px 20px;
  font-size: 12px;
  line-height: 20px;
}

.form-error.product-error {
  margin-top: 0;
  display: inline-block;
}

.nav-top-social {
  justify-content: flex-end;
  align-items: center;
  padding-left: 12px;
  padding-right: 12px;
  display: flex;
}

.social-link {
  width: 37px;
  height: 34px;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  padding: 5px;
  transition: background-color .3s;
  display: flex;
}

.social-link:hover {
  background-color: rgba(0, 0, 0, .08);
}

.cart-icon {
  width: 32px;
  margin-left: 10px;
}

.heading {
  font-size: 36px;
  line-height: 44px;
}

.footer-social-link {
  width: 43px;
  height: 43px;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  padding: 6px;
  transition: background-color .3s;
  display: flex;
}

.footer-social-link:hover {
  background-color: #00000014;
}

.breadcrumbs {
  width: 100%;
  height: 48px;
  border: 2px solid var(--grey-4);
  color: var(--grey-1);
  border-radius: 24px;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  margin-top: 48px;
  margin-bottom: -8px;
  padding: 8px 28px;
  font-size: 12px;
  line-height: 16px;
  display: flex;
}

.link-grey {
  color: var(--grey-1);
  text-decoration: none;
}

.link-grey:hover {
  text-decoration: underline;
}

.breadcrumbs-arrow {
  width: 9px;
  opacity: .2;
  margin-left: 10px;
  margin-right: 10px;
}

.product {
  width: 100%;
  background-color: #fff;
  border-radius: 16px;
  flex-wrap: wrap;
  margin-top: 56px;
  padding: 80px;
  display: flex;
  box-shadow: 0 2px 3px rgba(0, 0, 0, .7);
}

.product-image-wrapper {
  flex: 1;
  justify-content: center;
  align-items: center;
  padding: 32px;
  display: flex;
}

.product-info {
  width: 50%;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-right: 10%;
  display: flex;
}

.add-to-cart {
  flex-wrap: wrap;
  align-items: flex-start;
  margin-bottom: 16px;
  display: flex;
}

.product-price {
  color: var(--color-1);
  margin-bottom: 32px;
  font-family: Varela Round, sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 32px;
}

.product-details-wrapper {
  width: 100%;
  flex-flow: wrap;
  align-items: flex-start;
  padding-top: 80px;
  display: flex;
}

.product-details {
  flex: 1;
  margin-top: -30px;
  margin-left: 15px;
}

.scroll-mouse-link {
  z-index: 2;
  width: 64px;
  height: 64px;
  background-color: #fff;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  margin-bottom: -32px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  box-shadow: 0 1px 2px rgba(0, 0, 0, .15);
}

.mouse-icon {
  width: 20px;
  height: 30px;
  border: 2px solid var(--grey-3);
  border-radius: 12px;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.mouse-wheel-icon {
  width: 4px;
  height: 4px;
  background-color: var(--grey-3);
  border-radius: 50%;
  margin-top: 6px;
}

.cart-button {
  color: var(--dark);
  background-color: rgba(0, 0, 0, 0);
}

.item-count {
  height: 20px;
  min-width: 20px;
  background-color: var(--dark);
  color: #fff;
  border-radius: 10px;
  padding-top: 1px;
  padding-bottom: 1px;
  font-size: 12px;
  font-weight: 600;
}

.contacts {
  width: 100%;
  background-color: #fff;
  border-radius: 16px;
  flex-wrap: wrap;
  align-items: flex-start;
  margin-top: 56px;
  padding: 80px;
  display: flex;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(0, 0, 0, .15);
}

.map {
  width: 100%;
  height: 440px;
  border-radius: 12px;
  margin-bottom: 64px;
}

.contact-form-wrapper {
  width: 66.66%;
  padding-right: 16.66%;
}

.label {
  width: 100%;
  color: var(--dark);
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 600;
}

.contact-info {
  flex: 1;
  font-size: 12px;
}

.contact-social {
  flex-flow: wrap;
  align-items: center;
  margin-top: 48px;
  display: flex;
}

.contact-social-link {
  width: 32px;
  height: 32px;
  background-color: var(--dark);
  color: var(--dark);
  border-radius: 50%;
  align-items: center;
  margin-bottom: 8px;
  margin-right: 8px;
  padding: 8px;
  font-size: 12px;
  font-weight: 600;
  line-height: 20px;
  text-decoration: none;
  transition: transform .3s;
  display: flex;
}

.contact-social-link:hover {
  text-decoration: underline;
  transform: scale(1.12);
}

.contact-social-link.twitter {
  background-color: #2aa3f0;
}

.contact-social-link.facebook {
  background-color: #3b5998;
}

.contact-social-link.insta {
  background-color: var(--color-4);
}

.contact-social-link.youtube {
  background-color: #fc0d1c;
}

.contact-social-link.pinterest {
  background-color: #bd081c;
}

.contact-heading {
  margin-bottom: 28px;
}

.contact-social-heading {
  width: 100%;
  margin-bottom: 20px;
}

.shop-categories-wrapper {
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.shop-category-link {
  height: 32px;
  color: var(--dark);
  border-radius: 16px;
  padding: 6px 18px;
  font-size: 13px;
  line-height: 20px;
  text-decoration: none;
  display: inline-block;
}

.shop-category-link:hover {
  text-decoration: underline;
}

.shop-category-link.w--current {
  background-color: var(--color-1);
  color: #fff;
}

.shop-category-link.w--current:hover {
  text-decoration: none;
}

.shop-categories {
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.about-image {
  width: 100%;
  border-radius: 16px;
  margin-top: 64px;
}

.divider {
  width: 70px;
  height: 2px;
  background-color: var(--color-1);
  margin-top: 8px;
  margin-bottom: 23px;
}

.side-block {
  width: 50%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-left: 8.33%;
  padding-right: 8.33%;
  display: flex;
  position: relative;
}

.side-block.no-padding-left {
  padding-left: 0%;
}

.side-block.small-padding-side {
  /* padding-left: 15px; */
  padding-left: 5%;
  padding-right: 5%;
  /* padding-right: 15px; */
}

.side-block.no-padding-right {
  padding-right: 0%;
}

.side-blocks {
  width: 100%;
  justify-content: flex-start;
  align-items: stretch;
  display: flex;
}

.side-info {
  width: 100%;
  flex-direction: column;
  /* align-items: flex-start; */
  align-items: center;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
}

.side-image {
  width: 100%;
  border-radius: 16px;
}

.delivery {
  width: 100%;
  background-color: #fff;
  border-radius: 16px;
  flex-wrap: wrap;
  align-items: flex-start;
  margin-top: 56px;
  padding: 80px;
  display: flex;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(0, 0, 0, .15);
}

.delivery-info {
  width: 66.66%;
  flex: 1;
  padding-right: 8.33%;
}

.question {
  width: 270px;
  border: 2px solid var(--grey-4);
  text-align: center;
  border-radius: 16px;
  flex-direction: column;
  flex: 0 auto;
  align-items: center;
  padding: 40px;
  font-size: 12px;
  display: flex;
}

.question-heading {
  margin-bottom: 16px;
}

.licence-items {
  width: 66.66%;
  padding-left: 15px;
  padding-right: 15px;
}

.licence-item {
  background-color: #fff;
  border-radius: 16px;
  align-items: center;
  margin-bottom: 24px;
  padding: 32px;
  display: flex;
  box-shadow: 0 1px 2px rgba(0, 0, 0, .15);
}

.licence-item-info {
  flex: 1;
  padding-top: 16px;
  padding-bottom: 16px;
  padding-left: 40px;
}

.licence-link-divider {
  width: 3px;
  height: 3px;
  background-color: var(--grey-3);
  border-radius: 50%;
  margin-bottom: 4px;
  margin-left: 10px;
  margin-right: 10px;
  display: inline-block;
}

.password-heading {
  margin-bottom: 24px;
}

.product-table {
  width: 270px;
  border: 2px solid var(--grey-4);
  border-radius: 16px;
  margin-top: 24px;
  margin-left: 60px;
  margin-right: 15px;
  padding: 16px 32px;
}

.product-table-cell {
  border-bottom: 1px solid var(--grey-4);
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  padding-bottom: 16px;
  font-size: 12px;
  /* line-height: 8px; */
  display: flex;
}

.product-table-cell.no-border-bottom {
  border-bottom-style: none;
}

.product-table-info {
  justify-content: flex-end;
  align-items: center;
  font-weight: 600;
  display: flex;
}

.sku {
  color: var(--grey-1);
  justify-content: flex-end;
  align-items: center;
  padding-top: 4px;
  padding-bottom: 4px;
  padding-left: 8px;
  font-size: 11px;
  line-height: 16px;
  display: flex;
}

.out-of-stock {
  color: var(--color-4);
  background-color: rgba(0, 0, 0, 0);
  margin-top: 0;
  padding: 15px 15px 15px 0;
  display: inline-block;
}

.cart-container {
  border-radius: 16px;
}

.cart-header {
  padding: 24px 32px;
}

.cart-footer {
  padding-bottom: 32px;
  padding-left: 32px;
  padding-right: 32px;
}

.cart-list {
  padding: 16px 32px;
}

.cart-remove-link {
  color: var(--color-4);
  font-size: 12px;
  line-height: 16px;
  text-decoration: underline;
}

.cart-item {
  padding-top: 16px;
  padding-bottom: 16px;
}

.preloader {
  z-index: 10000;
  background-color: #fff;
  justify-content: center;
  align-items: center;
  display: none;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.preloader-icon {
  z-index: 1;
  width: 48px;
  position: relative;
}

.order-confirmation-container {
  background-color: rgba(0, 0, 0, 0);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 15px;
  display: flex;
}

.order-block-content {
  border-style: none;
  padding: 40px 0 48px;
}

.checkout-form {
  width: 100%;
  min-height: 50vh;
  text-align: left;
  background-color: rgba(0, 0, 0, 0);
  flex-wrap: nowrap;
  flex: 0 auto;
  justify-content: center;
  align-self: auto;
  align-items: flex-start;
  padding: 0 15px;
  display: flex;
  overflow: visible;
}

.order-block-header {
  border-style: none none solid;
  border-bottom-width: 1px;
  border-bottom-color: var(--grey-4);
  padding: 28px 0;
  font-size: 12px;
}

.order-block {
  border-top: 1px dashed var(--grey-4);
  text-align: left;
  background-color: #fff;
  margin-top: -1px;
  margin-bottom: 0;
  padding: 24px 10%;
  overflow: hidden;
}

.select {
  height: 100%;
  background-color: rgba(0, 0, 0, 0);
  border-style: none;
  border-radius: 24px;
}

.select-wrapper {
  height: 48px;
  border: 2px solid var(--grey-4);
  background-color: var(--haze);
  border-radius: 24px;
  margin-bottom: 24px;
  padding-left: 16px;
  padding-right: 16px;
}

.select-wrapper.no-margin-bottom {
  margin-bottom: 0;
}

.shipping-methods-list {
  border: 1px solid var(--grey-4);
  border-radius: 8px;
  margin-top: 48px;
  margin-bottom: 48px;
  overflow: hidden;
}

.shipping-method-item {
  margin-top: 1px;
  margin-bottom: -1px;
  padding: 24px 32px;
}

.shipping-method-radio-button {
  margin-top: 5px;
  margin-right: 6px;
}

.checkbox {
  margin-right: 2px;
  font-size: 20px;
}

.order-main-column {
  text-align: left;
  background-color: #fff;
  border-radius: 16px;
  flex: 1;
  margin-left: 0;
  margin-right: 0;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(0, 0, 0, .15);
}

.order-sidebar {
  width: 33.33%;
  max-width: 370px;
  flex: 0 auto;
  margin-left: 30px;
}

.order-block-side {
  background-color: #fff;
  border-radius: 16px;
  margin-bottom: 24px;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(0, 0, 0, .15);
}

.order-block-side.discount-block {
  border-style: none;
  padding: 20px 32px 4px;
}

.order-block-side-header {
  border-style: none none solid;
  border-bottom-width: 1px;
  border-bottom-color: var(--grey-4);
  padding: 24px 32px;
  font-size: 12px;
}

.order-block-side-content {
  border-style: none;
  padding: 32px;
}

.order-block-heading {
  margin-bottom: 0;
}

.order-confirmation {
  width: 100%;
  max-width: none;
}

.cart-pay-button {
  height: 45px;
  border-radius: 24px;
  margin-bottom: 12px;
}

.pay-buttons {
  margin-left: -8px;
  margin-right: -8px;
  display: flex;
}

.payment-method {
  z-index: 1;
  height: 35px;
  flex: 1;
  margin-left: 10px;
  margin-right: 10px;
}

.pay-button {
  height: 35px;
  border-radius: 24px;
}

.changelog {
  width: 66.66%;
  flex-direction: column;
  margin-bottom: 64px;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
}

.change-icon {
  width: 40px;
  height: 40px;
  color: #fff;
  cursor: pointer;
  background-color: #2c3340;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  font-size: 15px;
  font-weight: 700;
  display: flex;
  position: relative;
}

.change {
  background-color: #fff;
  border-radius: 10px;
  align-items: center;
  margin-bottom: 24px;
  padding: 32px;
  display: flex;
  box-shadow: 0 1px 2px rgba(0, 0, 0, .15);
}

.change-text {
  color: var(--dark);
  flex: 1;
  margin-top: 0;
  margin-bottom: 0;
}

.buy-buttons {
  flex-wrap: wrap;
  align-items: flex-start;
  display: flex;
}

.text-block {
  color: var(--color-1);
  text-align: left;
  background-color: rgba(0, 0, 0, 0);
  font-family: Changa One, Impact, sans-serif;
  font-size: 38px;
  font-weight: 400;
  line-height: 39px;
  
}

.text-block-2 {
  font-family: Droid Serif, serif;
  font-size: 26px;
}

.text-block-22 {
  font-family: Droid Serif, serif;
  font-size: 32px;
}

.bold-text {
  font-size: 15px;
}

.bold-text-2 {
  direction: ltr;
  text-align: center;
  -webkit-text-stroke-width: 0px;
  text-transform: none;
  margin-right: 0;
  font-size: 24px;
  font-style: normal;
  line-height: 18px;
  text-decoration: none;
}

.bold-text-3 {
  font-size: 20px;
}

.heading-2 {
  margin-right: 0;
}

.text-block-3 {
  font-size: 25px;
}

.button-2 {
  text-align: center;
  position: relative;
  top: -13px;
  left: 323px;
}

.button-3 {
  width: 60%;
  text-align: center;
  background-color: #000;
  border-radius: 20px;
}

.submit-button {
  width: 80%;
  text-align: center;
}

.submit-button-2 {
  width: 80%;
}

.text-block-4 {
  font-size: 16px;
}

.bold-text-4, .bold-text-5 {
  font-size: 25px;
}

.bold-text-9 {
  font-family: Droid Serif, serif;
  color:#fff;
  font-size: 32px;
  text-shadow: 0 0 20px white, 0 0 30px white;
}

.bold-text-10, .bold-text-11, .bold-text-12, .bold-text-13 {
  font-family: Droid Serif, serif;
  color:#fff;

  font-size: 23px;
}

.bold-text-14 {
  font-size: 20px;
}

.yoyo20241124 {
  margin-top: 27px;
}

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

  .bold-text-10, .bold-text-11 {
    color:#fff;

  }


  .yoyo20241124 {
    margin-top: 18px;
  }


  .nav-bar {
    z-index: 100;
    height: 90px;

    /* background: rgba(255, 255, 255, 0.2); */
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    flex-direction: column;
    justify-content: flex-start;
    display: flex;

    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    /* position: static; */

    box-shadow: 1px 1px 15px rgba(0, 0, 0, .12);
    
  }
  




  h1 {
    font-size: 32px;
    line-height: 40px;
  }

  h2 {
    font-size: 28px;
    line-height: 36px;
  }

  h3 {
    font-size: 24px;
    line-height: 32px;
  }

  .section {
    padding: 88px 8px;
  }

  .section.hero-section {
    height: auto;
    padding: 184px 16px;
  }

  .section.video-section {
    padding-bottom: 80px;
    padding-left: 8.33%;
    padding-right: 8.33%;
  }

  .section_line2.video-section_line2 {
    padding-bottom: 80px;
    padding-left: 8.33%;
    padding-right: 8.33%;
  }

  .wrapper.nav-bar-wrapper {
    height: auto;
  }

  .wrapper.side-paddings {
    padding-left: 8px;
    padding-right: 8px;
  }

  .button {
    margin-right: 0;
  }

  .button:hover {
    transform: none;
  }

  .button-style-wrapper {
    width: 50%;
    padding: 48px 8%;
  }

  .nav-bar {
    position: absolute;
  }

  .nav-link {
    /* border-bottom: 1px solid var(--grey-4); */
    border-radius: 0;
    padding: 16px 24px;
    margin: 20px;

  }

  .no-margin {
    margin: 0;
  }

  .no-margin-bottom {
    margin-bottom: 0;
  }

  .intro {
    margin-bottom: 56px;
  }

  .no-padding-vertical {
    padding-top: 0;
    padding-bottom: 0;
  }

  .footer {
    padding-top: 40px;
  }

  .footer-nav {
    justify-content: flex-end;
    padding-left: 2px;
    padding-right: 2px;
  }

  .footer-link {
    font-size: 18px;
  }

  .footer-bottom {
    margin-top: 40px;
  }

  .brand {
    padding-left: 8px;
    padding-right: 8px;
    font-size: 20px;
    line-height: 28px;
  }

  .nav-menu {
    border-top: 1px solid var(--grey-4);
    /* background-color: #fff; */
    /* background-color: #000; */
    /* background-color: rgba(255, 255, 255, 0.8); */
    padding-left: 0;
    padding-right: 0;
    box-shadow: 1px 1px 15px rgba(0, 0, 0, .8);
    padding-bottom: 5px;
    background-color:rgb(0, 0, 0, 0.8);

    backdrop-filter: blur(10px);
    color:white;
  }

  .no-padding-top {
    padding-top: 0;
  }

  .no-padding-bottom {
    padding-bottom: 0;
  }

  .page-wrapper {
    /* padding-top: 65px; */
  }

  .navigation {
    flex-direction: row-reverse;
    justify-content: flex-start;
    margin-top: 5px;
  }

  .hero-intro {
    max-width: 480px;
    padding: 40px;
  }

  .nav-top {
    padding-left: 8px;
    padding-right: 8px;
  }

  .nav-main {
    height: 64px;
    padding-left: 8px;
    padding-right: 0;
  }

  .nav-top-info {
    padding-left: 8px;
    padding-right: 8px;
  }

  .footer-left {
    width: auto;
    flex: none;
  }

  .footer-social {
    width: 100%;
    margin-top: 24px;
  }

  .instagram {
    width: 75%;
    flex-wrap: wrap;
    margin-bottom: 48px;
    padding-left: 0;
    padding-right: 0;
  }

  .instagram-link {
    flex: 25%;
    margin-top: 8px;
    margin-bottom: 8px;
  }

  .instagram-link:hover {
    transform: none;
  }

  .home-categories {
    max-width: 480px;
    flex-direction: column;
    padding-left: 8px;
    padding-right: 8px;
  }

  .home-category-card {
    margin-left: 0;
    margin-right: 0;
    padding: 40px 32px;
  }

  .home-category-card.red {
    margin-top: 64px;
  }

  .home-category-image-1 {
    width: 176px;
    left: 10px;
  }

  .home-category-info-1 {
    margin-left: 176px;
  }

  .home-category-image-2 {
    width: 176px;
  }

  .home-category-info-2 {
    margin-right: 182px;
  }

  .shop-header {
    padding-left: 8px;
    padding-right: 8px;
  }

  .products {
    padding-left: 12px;
    padding-right: 12px;
  }

  .product-card-wrapper {
    width: 50%;
    padding: 20px;
  }

  .product-card:hover {
    transform: none;
  }

  .product-card-image-wrapper {
    height: 284px;
    padding: 32px;
  }

  .subscribe {
    width: 66.66%;
    flex-direction: column;
    justify-content: flex-start;
    padding: 64px;
  }

  .subscribe-form-wrapper {
    width: 100%;
    margin-top: 32px;
    padding-left: 0;
  }

  .subscribe-info {
    text-align: center;
    flex-direction: column;
    padding-right: 0;
  }

  .subscribe-form {
    flex-direction: column;
    align-items: stretch;
  }

  .input.subscribe-input {
    text-align: center;
    margin-bottom: 20px;
  }

  .input.no-margin-bottom {
    margin-bottom: 0;
  }

  .subscribe-icon {
    margin-bottom: 20px;
    margin-right: 0;
  }

  .form-error {
    text-align: center;
  }

  .nav-top-social {
    padding-left: 8px;
    padding-right: 8px;
  }

  .breadcrumbs {
    height: 40px;
    margin-top: 20px;
  }

  .product {
    padding: 56px;
  }

  .product-image-wrapper {
    order: -1;
    padding: 48px;
  }

  .product-info {
    width: 100%;
    margin-top: 64px;
    padding-left: 8px;
    padding-right: 8px;
  }

  .product-details {
    width: 100%;
    flex: 0 auto;
    margin-left: 8px;
    margin-right: 8px;
  }

  .scroll-mouse-link {
    padding-bottom: 24px;
    display: none;
  }

  .contacts {
    padding: 64px;
  }

  .map {
    height: 400px;
  }

  .menu-button {
    height: 100%;
    border-left: 0px solid var(--grey-4);
    padding: 20px;
  }

  .menu-button.w--open {
    color: var(--dark);
    background-color: rgba(0, 0, 0, 0);
  }

  .contact-form-wrapper {
    width: 100%;
    padding-right: 0%;
  }

  .contact-info {
    margin-top: 48px;
  }

  .side-block {
    width: 100%;
    margin-bottom: 48px;
  }

  .side-block.no-padding-left {
    padding-left: 8.33%;
  }

  .side-block.small-padding-side {
    padding-left: 8px;
    padding-right: 8px;
  }

  .side-block.no-padding-right {
    padding-right: 8.33%;
  }

  .side-blocks {
    flex-wrap: wrap;
    margin-bottom: -48px;
  }

  .side-blocks.mobile-reverse {
    flex-direction: column-reverse;
    align-items: stretch;
  }

  .side-info {
    text-align: center;
    align-items: center;
    padding-left: 8px;
    padding-right: 8px;
  }

  .side-image {
    width: 83.33%;
  }

  .delivery {
    flex-direction: column;
    padding: 64px;
  }

  .delivery-info {
    width: 100%;
    flex: 0 auto;
    padding-right: 0%;
  }

  .question {
    width: 100%;
    text-align: left;
    flex-direction: row;
  }

  .question-heading {
    margin-bottom: 0;
    margin-right: 24px;
  }

  .licence-items {
    width: 81.33%;
    padding-left: 8px;
    padding-right: 8px;
  }

  .product-table {
    width: 50%;
    margin-top: -32px;
    margin-left: 8px;
    margin-right: 8px;
  }

  .order-confirmation-container {
    padding-left: 8px;
    padding-right: 8px;
  }

  .checkout-form {
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    padding-left: 8px;
    padding-right: 8px;
  }

  .order-block-header {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .order-block {
    padding: 0 32px;
  }

  .select-wrapper.no-margin-bottom {
    margin-bottom: 0;
  }

  .order-sidebar {
    width: 100%;
    max-width: none;
    margin-left: 0;
    padding-top: 24px;
  }

  .order-block-heading {
    font-size: 17px;
    line-height: 24px;
  }

  .order-confirmation {
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
  }

  .pay-buttons {
    padding: 32px 48px;
  }

  .changelog {
    width: 83.33%;
    padding-left: 8px;
    padding-right: 8px;
  }

  .change {
    padding: 24px;
  }

  .bold-text-6, .bold-text-8 {
    font-size: 20px;
  }
}

@media screen and (max-width: 767px) {
  h3 {
    font-size: 22px;
    line-height: 28px;
  }

  h4 {
    font-size: 20px;
    line-height: 28px;
  }

  .section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .section.hero-section {
    padding-top: 104px;
    padding-bottom: 104px;
  }

  .section.video-section {
    background-image: url("https://assets-global.website-files.com/65908eea263a51a2739ce17d/6590915bedabb59a8941dc29_sss.png"), linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0));
    background-position: 40% 25%, 0 0;
    padding-bottom: 72px;
  }


  .section_line2.video-section_line2 {
    background-image: url("/static/image/yo0918.png"), linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0));
    background-position: 40% 25%, 0 0;
    padding-bottom: 72px;
  }

  .button {
    margin-right: 0;
  }

  .button-style-wrapper {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .nav-link {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .no-margin {
    margin: 0;
  }

  .no-margin-bottom {
    margin-bottom: 0;
  }

  .no-padding-vertical {
    padding-top: 0;
    padding-bottom: 0;
  }

  .footer {
    padding-top: 32px;
  }

  .footer-nav {
    padding-left: 24px;
    padding-right: 0;
  }

  .footer-link {
    margin-left: 5px;
    margin-right: 5px;
    font-size: 18px;
    line-height: 20px;
  }

  .footer-bottom {
    margin-top: 32px;
    margin-left: 8px;
    margin-right: 8px;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .no-padding-top {
    padding-top: 0;
  }

  .no-padding-bottom {
    padding-bottom: 0;
  }

  .footer-brand {
    padding-left: 8px;
    padding-right: 8px;
  }

  .footer-social {
    margin-top: 16px;
    padding-left: 4px;
    padding-right: 4px;
  }

  .instagram {
    width: 100%;
  }

  .products {
    padding-left: 0;
    padding-right: 0;
  }

  .product-card-wrapper {
    padding: 8px;
  }

  .product-card-image-wrapper {
    height: 224px;
    padding: 24px;
  }

  .link.arrow-link {
    margin-top: 0;
  }

  .subscribe {
    width: 83.33%;
  }

  .subscribe-form-wrapper {
    margin-top: 16px;
  }

  .input.no-margin-bottom {
    margin-bottom: 0;
  }

  .nav-top-social {
    padding-left: 0;
    padding-right: 0;
  }

  .breadcrumbs {
    height: 32px;
    border-width: 1px;
    margin-top: 16px;
    padding-left: 20px;
    padding-right: 20px;
    font-size: 10px;
  }

  .product {
    padding: 32px 32px 48px;
  }

  .product-image-wrapper {
    width: 100%;
  }

  .scroll-mouse-link {
    display: none;
  }

  .contacts {
    padding: 40px;
  }

  .map {
    height: 280px;
  }

  .shop-categories-wrapper {
    width: 100%;
    justify-content: center;
  }

  .delivery {
    padding: 40px;
  }

  .question {
    text-align: center;
    flex-direction: column;
  }

  .question-heading {
    margin-bottom: 16px;
    margin-right: 0;
  }

  .licence-items {
    width: 100%;
  }

  .product-table {
    width: 66.66%;
  }

  .order-block {
    padding-left: 40px;
    padding-right: 40px;
  }

  .select-wrapper.no-margin-bottom {
    margin-bottom: 0;
  }

  .shipping-method-item {
    padding-left: 24px;
    padding-right: 24px;
  }

  .shipping-method-radio-button {
    margin-right: 2px;
  }

  .form-columns {
    flex-flow: column wrap;
  }

  .order-block-side-header, .order-block-side-content {
    padding-left: 40px;
    padding-right: 40px;
  }

  .pay-buttons {
    padding-left: 11px;
    padding-right: 11px;
  }

  .changelog {
    width: 100%;
  }

  .text-block-3 {
    font-size: 18px;
  }

  .bold-text-4, .bold-text-5, .bold-text-6, .bold-text-8 {
    font-size: 20px;
  }
}

@media screen and (max-width: 479px) {
  .section.hero-section {
    background-position: 50%;
  }

  .section.video-section {
    background-image: url("https://assets-global.website-files.com/65908eea263a51a2739ce17d/6590915bedabb59a8941dc29_sss.png"), linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0));
    background-position: 35% 35%, 0 0;
  }

  .section_line2.video-section_line2 {
    background-image: url("/static/image/yo0918.png"), linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0));
    background-position: 35% 35%, 0 0;
  }

  .button {
    margin-right: 0;
  }

  .button-style-wrapper {
    width: 100%;
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .utility-page-content {
    width: 100%;
    padding: 32px;
  }

  .no-margin {
    margin: 0;
  }

  .no-margin-bottom {
    margin-bottom: 0;
  }

  .title {
    font-size: 26px;
    font-weight: 800;
    text-decoration: none;
  }

  .no-padding-vertical {
    padding-top: 0;
    padding-bottom: 0;
  }

  .footer-nav {
    flex-wrap: wrap;
    justify-content: flex-start;
    padding-left: 0;
  }

  .footer-link {
    font-size: 21px;
  }

  .footer-link.w--current {
    font-size: 18px;
  }

  .footer-bottom {
    flex-wrap: wrap;
    justify-content: flex-start;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .no-padding-top {
    padding-top: 0;
  }

  .no-padding-bottom {
    padding-bottom: 0;
  }

  .nav-top-text {
    font-size: 12px;
  }

  .footer-left {
    width: 100%;
    margin-bottom: 16px;
  }

  .footer-social {
    justify-content: flex-start;
  }

  .footer-bottom-left {
    width: 100%;
    padding-top: 6px;
    padding-bottom: 6px;
  }

  .footer-bottom-right {
    width: 100%;
    justify-content: flex-start;
  }

  .instagram-link {
    margin: 4px;
  }

  .home-category-card {
    flex-direction: column;
    padding-top: 0;
  }

  .home-category-card.red {
    margin-top: 80px;
  }

  .home-category-image-1 {
    width: 80%;
    margin-top: -48px;
    margin-bottom: 16px;
    margin-left: -8px;
    position: relative;
    top: 0;
    bottom: auto;
    left: auto;
  }

  .home-category-info-1 {
    text-align: center;
    flex-direction: column;
    align-items: center;
    margin-left: 0;
    display: flex;
  }

  .home-category-image-2 {
    margin-top: -48px;
    margin-bottom: 12px;
    position: relative;
    bottom: auto;
    right: auto;
  }

  .home-category-info-2 {
    text-align: center;
    flex-direction: column;
    align-items: center;
    margin-right: 0;
    display: flex;
  }

  .product-card-wrapper {
    width: 100%;
  }

  .product-card-image-wrapper {
    height: 76vw;
  }

  .subscribe {
    width: 100%;
    padding: 40px 32px;
  }

  .input.no-margin-bottom {
    margin-bottom: 0;
  }

  .product {
    padding: 16px 16px 40px;
  }

  .product-image-wrapper {
    padding: 8px;
  }

  .product-info {
    margin-top: 40px;
  }

  .contacts {
    padding: 24px;
  }

  .contact-info {
    margin-bottom: 16px;
  }

  .shop-categories-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .shop-category-link {
    margin-bottom: 8px;
  }

  .shop-categories {
    flex-direction: column;
    justify-content: center;
  }

  .side-block {
    padding-left: 0%;
    padding-right: 0%;
  }

  .side-block.no-padding-left {
    padding-left: 0;
    padding-right: 0;
  }

  .side-image {
    width: 100%;
  }

  .delivery {
    padding: 24px;
  }

  .question {
    padding: 32px 12%;
  }

  .licence-item {
    flex-direction: column;
    padding-top: 48px;
  }

  .licence-item-info {
    text-align: center;
    margin-top: 8px;
    padding-left: 0;
  }

  .product-table {
    width: 100%;
  }

  .cart-container {
    border-radius: 0;
  }

  .order-block {
    padding: 0 32px;
  }

  .select-wrapper.no-margin-bottom {
    margin-bottom: 0;
  }

  .shipping-method-item {
    text-align: center;
    flex-direction: column;
    align-items: center;
    padding-left: 20px;
    padding-right: 20px;
  }

  .shipping-method-radio-button {
    margin-top: 0;
    margin-bottom: 13px;
    margin-right: 0;
  }

  .order-block-side-header, .order-block-side-content {
    padding-left: 32px;
    padding-right: 32px;
  }

  .pay-buttons {
    margin-left: 0;
    margin-right: 0;
    padding-bottom: 20px;
    padding-left: 0;
    padding-right: 0;
    display: block;
  }

  .payment-method {
    margin-bottom: 12px;
    margin-left: 0;
    margin-right: 0;
  }

  .text-block {
    font-size: 32px;
  }

  .bold-text-2 {
    font-size: 20px;
    line-height: 16px;
  }

  .heading-2 {
    line-height: 24px;
  }

  .bold-text-4, .bold-text-5, .bold-text-6 {
    font-size: 18px;
  }

  .bold-text-7 {
    font-size: 17px;
  }

  .bold-text-8 {
    font-size: 18px;
  }

  .bold-text-9 {
    color: #fff;
    font-size: 25px;

  }
}