div#wrapperHPcontent .grid .maingrid a {
  width: 177.594px;
}

div#wrapperHPcontent .pcgrid {
  display: block;
}

div#wrapperHPcontent .mobliegrid {
  display: none;
}

div#wrapperHPcontent .clickhere {
  left: 35%;
  position: absolute;
  top: 41%;
  cursor: pointer;
  width: 450px;
  height: 150px;
}

div#wrapperHPcontent .clickhere button {
  width: 454px;
  height: 160px;
  background-color: transparent;
  color: transparent;
  border: transparent;
  cursor: pointer;
}

div#wrapperHPcontent .mainfooter {
  margin-top: -1px;
}

body {
  padding: 0px 0px 0px;
}

/* =====================
video
===================== */
div#wrapperHPcontent #pc_video {
  display: block;
}

div#wrapperHPcontent #mobile_video {
  display: none;
}

div#wrapperHPcontent .background-container {
  /* or absolute, depending on your needs */
  top: 0;
  left: 0;
  width: 100%;
  height: 850px;
  z-index: -1;
  /* Sends the video to the background */
  overflow: hidden;
  pointer-events: none;
  /* Allows clicks to pass through the video to elements beneath it */
}

div#wrapperHPcontent .background-container {
  position: relative;
  inset: 0;
  z-index: 0;
}

div#wrapperHPcontent .background-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* dark overlay so text pops */
div#wrapperHPcontent main .video-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 26, 46, 0.72) 0%,
    rgba(26, 26, 46, 0.45) 50%,
    rgba(201, 168, 76, 0.12) 100%
  );
}

/* optional dark overlay */
div#wrapperHPcontent .divider {
  display: none;
}

/* =====================
.button
===================== */

div#wrapperHPcontent .buttongrid {
  position: absolute;
  top: 63%;
  bottom: 4%;
  left: 11%;
}

div#wrapperHPcontent .buttongrid .inner-button {
  margin-top: 3px;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.4);
  /* White with 40% opacity */
  text-transform: uppercase;
  /* 2. Apply the blur effect to the background area */
  backdrop-filter: blur(5px);
  /* Adjust the pixel value for more or less blur */

  /* 3. Add vendor prefix for broader browser support (especially Safari) */
  -webkit-backdrop-filter: blur(1px);
  /* Optional: Add padding for better content readability */

  /* Optional: Add rounded corners and shadow for a "glass" look */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border: 1px solid;
  font-family: "Oswald", Calibri, Arial;
  box-shadow: 0px 3px 6px #00000029;
  color: white;
  font-weight: bold;
  font-size: large;
  text-align: center;
  height: 27%;
  top: 0;
  width: 188px;
}

div#wrapperHPcontent .buttongrid .inner-button:hover {
  background-color: #204f96;
  color: white;
  border: 1px solid white;
  box-shadow: 0px 3px 6px #e6e0e029;
}

div#wrapperHPcontent .container {
  width: 100%;
  max-width: 600px;
  animation: fadeIn 0.8s ease-in;
  padding-top: 60%;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

div#wrapperHPcontent .grid-section {
  display: block;
}

/* Responsive Design */

@media only screen and (max-width: 914px) {
  div#wrapperHPcontent a {
    text-decoration: none;
  }

  div#wrapperHPcontent .buttongrid .inner-button {
    height: 74px;
    margin-top: 0px;
    font-size: 14px;
  }

  div#wrapperHPcontent .pcgrid {
    display: none;
  }

  div#wrapperHPcontent .mobliegrid {
    display: block;
  }

  div#wrapperHPcontent .background-container video {
    width: 100%;
    height: 100%;
    min-width: 390px;
    min-height: 820px;
    object-fit: cover;
    display: block;
    object-fit: fill;
  }

  div#wrapperHPcontent .grid {
    width: 577.781px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  /* =====================
    divider
===================== */

  div#wrapperHPcontent .divider {
    display: block;
    align-items: center;
    gap: 0px;
    margin: 10px 0;
    position: relative;
    z-index: 1;
    left: 32px;
  }

  div#wrapperHPcontent .divider-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ffffff, transparent);
  }

  div#wrapperHPcontent .divider-icon {
    font-size: 20px;
    color: #ffffff;
    margin-left: 46%;
    background-color: transparent;
    border: none;
  }

  div#wrapperHPcontent .buttongrid {
    position: absolute;
    top: 57%;
  }
}

/* mobile Layout */
@media only screen and (max-width: 480px) {
  div#wrapperHPcontent .flexwrapper-c {
    padding: 0px 0px;
  }

  div#wrapperHPcontent .clickhere {
    left: 0%;
    position: absolute;
    top: 28.6%;
    cursor: pointer;
    width: 100%;
    height: 62px;
  }

  div#wrapperHPcontent #pc_video {
    display: none;
  }

  div#wrapperHPcontent #mobile_video {
    display: block;
  }

  div#wrapperHPcontent .background-container video {
    width: 100%;
    height: 100%;
    min-width: 390px;
    min-height: 800px;
    object-fit: cover;
    display: block;
    object-fit: fill;
  }

  div#wrapperHPcontent .grid {
    width: 100%;
  }

  div#wrapperHPcontent .buttongrid {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 40%;
  }

  /* Grid Layouts */
  div#wrapperHPcontent .grid-section {
    margin-bottom: 1px;
    animation: slideUp 0.7s ease-out;
  }

  div#wrapperHPcontent .container {
    width: 100%;
    max-width: 600px;
    animation: fadeIn 0.8s ease-in;
    padding-top: 10%;
  }

  div#wrapperHPcontent .buttongrid .inner-button {
    max-height: 60px;
    top: 24px;
    width: 119px;
    color: white;
  }

  /* Accessibility */
  div#wrapperHPcontent .inner-button:focus {
    outline: 2px solid #7eb3d4;
    outline-offset: 2px;
  }

  div#wrapperHPcontent .inner-button {
    background-color: rgba(255, 255, 255, 0.4);
    /* White with 40% opacity */
    /* 2. Apply the blur effect to the background area */
    border: 1.5px solid rgba(126, 179, 212, 0.3);
    padding: 28px 16px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    min-height: 75px;
    font-weight: 700;
    font-size: 14px;
  }

  div#wrapperHPcontent .inner-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
      90deg,
      transparent,
      rgba(255, 255, 255, 0.1),
      transparent
    );
    transition: left 0.5s;
  }

  div#wrapperHPcontent .inner-button:hover::before {
    left: 100%;
  }

  div#wrapperHPcontent .inner-button:hover {
    background: linear-gradient(
      135deg,
      rgba(70, 120, 170, 0.8) 0%,
      rgba(90, 140, 190, 0.8) 100%
    );
    border-color: rgba(126, 179, 212, 0.6);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(126, 179, 212, 0.2);
  }

  div#wrapperHPcontent .inner-button:active {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(126, 179, 212, 0.15);
  }

  div#wrapperHPcontent .inner-button.highlight {
    background: linear-gradient(
      135deg,
      rgba(180, 140, 80, 0.7) 0%,
      rgba(210, 170, 100, 0.7) 100%
    );
    border-color: rgba(240, 200, 120, 0.4);
  }

  div#wrapperHPcontent .inner-button.highlight:hover {
    background: linear-gradient(
      135deg,
      rgba(210, 160, 100, 0.9) 0%,
      rgba(240, 190, 120, 0.9) 100%
    );
    border-color: rgba(240, 200, 120, 0.6);
    box-shadow: 0 8px 20px rgba(240, 200, 120, 0.2);
  }

  div#wrapperHPcontent .divider {
    display: block;
    align-items: center;
    gap: 0px;
    margin: 6px 0;
    position: relative;
    z-index: 1;
    left: -4px;
    top: 24px;
  }

  div#wrapperHPcontent .clickhere button {
    width: 100%;

    height: 101px;
  }
}

div#wrapperHPcontent .modal {
  display: none;
  /* Hidden by default */
  position: fixed;
  /* Stay in place */
  z-index: 1;
  /* Sit on top */
  padding-top: 100px;
  /* Location of the box */
  left: 0;
  top: 0;
  width: 100%;
  /* Full width */
  height: 100%;
  /* Full height */
  overflow: auto;
  /* Enable scroll if needed */
  background-color: rgb(0, 0, 0);
  /* Fallback color */
  background-color: rgba(0, 0, 0, 0.4);
  /* Black w/ opacity */
}

/* Modal Content */

/* The Close Button */
div#wrapperHPcontent .close {
  color: #aaaaaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

div#wrapperHPcontent .close:hover {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

div#wrapperHPcontent .close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

div#wrapperHPcontent .modal-content {
  background-color: transparent;
  margin: auto;
  padding: 20px;
  width: 50%;
  max-width: 896px;
}

div#wrapperHPcontent .VR_POPUP {
  content: url(/MediaWeb/Web_General/Images/VR_POPUP.jpg);
}

@media only screen and (max-width: 644px) {
  div#wrapperHPcontent .modal-content {
    background-color: transparent;
    margin: auto;
    width: 350px;
    max-width: 400px;
  }

  div#wrapperHPcontent .VR_POPUP {
    content: url(/MediaWeb/Web_General/Images/VR_POPUP_Mobile.jpg);
    width: 350px;
    max-width: 400px;
  }

  div#wrapperHPcontent div.clickhere {
    width: 100%;
  }
}

section.maincontent.clearer {
  border-top: 2px solid #c5c5c5;
}

section.maincontent.clearer {
  border-top: 2px solid #c5c5c5;
}

div#wrapperHPcontent #btnFAQ {
  background-image: none !important;
}
div#wrapperHPcontent .grid .maingrid a {
  width: 177.594px;
}

div#wrapperHPcontent .pcgrid {
  display: block;
}

div#wrapperHPcontent .mobliegrid {
  display: none;
}

div#wrapperHPcontent .clickhere {
  left: 35%;
  position: absolute;
  top: 41%;
  cursor: pointer;
  width: 450px;
  height: 150px;
}

div#wrapperHPcontent .clickhere button {
  width: 450px;
  height: 150px;
  background-color: transparent;
  color: transparent;
  border: transparent;
  cursor: pointer;
}

div#wrapperHPcontent .mainfooter {
  margin-top: -1px;
}

body {
  padding: 0px 0px 0px;
}

/* =====================
video
===================== */
div#wrapperHPcontent #pc_video {
  display: block;
}

div#wrapperHPcontent #mobile_video {
  display: none;
}

div#wrapperHPcontent .background-container {
  /* or absolute, depending on your needs */
  top: 0;
  left: 0;
  width: 100%;
  height: 850px;
  z-index: -1;
  /* Sends the video to the background */
  overflow: hidden;
  pointer-events: none;
  /* Allows clicks to pass through the video to elements beneath it */
}

div#wrapperHPcontent .background-container {
  position: relative;
  inset: 0;
  z-index: 0;
}

div#wrapperHPcontent .background-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* dark overlay so text pops */
div#wrapperHPcontent main .video-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 26, 46, 0.72) 0%,
    rgba(26, 26, 46, 0.45) 50%,
    rgba(201, 168, 76, 0.12) 100%
  );
}

/* optional dark overlay */
div#wrapperHPcontent .divider {
  display: none;
}

/* =====================
.button
===================== */

div#wrapperHPcontent .buttongrid {
  position: absolute;
  top: 63%;
  bottom: 4%;
  left: 11%;
}

div#wrapperHPcontent .buttongrid .inner-button {
  margin-top: 3px;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.4);
  /* White with 40% opacity */
  text-transform: uppercase;
  /* 2. Apply the blur effect to the background area */
  backdrop-filter: blur(5px);
  /* Adjust the pixel value for more or less blur */

  /* 3. Add vendor prefix for broader browser support (especially Safari) */
  -webkit-backdrop-filter: blur(1px);
  /* Optional: Add padding for better content readability */

  /* Optional: Add rounded corners and shadow for a "glass" look */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border: 1px solid;
  font-family: "Oswald", Calibri, Arial;
  box-shadow: 0px 3px 6px #00000029;
  color: white;
  font-weight: bold;
  font-size: large;
  text-align: center;
  height: 27%;
  top: 0;
  width: 188px;
}

div#wrapperHPcontent .buttongrid .inner-button:hover {
  background-color: #204f96;
  color: white;
  border: 1px solid white;
  box-shadow: 0px 3px 6px #e6e0e029;
}

div#wrapperHPcontent .container {
  width: 100%;
  max-width: 600px;
  animation: fadeIn 0.8s ease-in;
  padding-top: 60%;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

div#wrapperHPcontent .grid-section {
  display: block;
}

/* Responsive Design */

@media only screen and (max-width: 914px) {
  div#wrapperHPcontent a {
    text-decoration: none;
  }

  div#wrapperHPcontent .buttongrid .inner-button {
    height: 74px;
    margin-top: 0px;
    font-size: 14px;
  }

  div#wrapperHPcontent .pcgrid {
    display: none;
  }

  div#wrapperHPcontent .mobliegrid {
    display: block;
  }

  div#wrapperHPcontent .background-container video {
    width: 100%;
    height: 100%;
    min-width: 390px;
    min-height: 820px;
    object-fit: cover;
    display: block;
    object-fit: fill;
  }

  div#wrapperHPcontent .grid {
    width: 577.781px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  /* =====================
    divider
===================== */

  div#wrapperHPcontent .divider {
    display: block;
    align-items: center;
    gap: 0px;
    margin: 10px 0;
    position: relative;
    z-index: 1;
    left: 32px;
  }

  div#wrapperHPcontent .divider-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ffffff, transparent);
  }

  div#wrapperHPcontent .divider-icon {
    font-size: 20px;
    color: #ffffff;
    margin-left: 46%;
    background-color: transparent;
    border: none;
  }

  div#wrapperHPcontent .buttongrid {
    position: absolute;
    top: 57%;
  }
}

/* mobile Layout */
@media only screen and (max-width: 480px) {
  div#wrapperHPcontent .flexwrapper-c {
    padding: 0px 0px;
  }

  div#wrapperHPcontent .clickhere {
    left: 0%;
    position: absolute;
    top: 28.6%;
    cursor: pointer;
    width: 100%;
    height: 62px;
  }

  div#wrapperHPcontent #pc_video {
    display: none;
  }

  div#wrapperHPcontent #mobile_video {
    display: block;
  }

  div#wrapperHPcontent .background-container video {
    width: 100%;
    height: 100%;
    min-width: 390px;
    min-height: 800px;
    object-fit: cover;
    display: block;
    object-fit: fill;
  }

  div#wrapperHPcontent .grid {
    width: 100%;
  }

  div#wrapperHPcontent .buttongrid {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 40%;
  }

  /* Grid Layouts */
  div#wrapperHPcontent .grid-section {
    margin-bottom: 1px;
    animation: slideUp 0.7s ease-out;
  }

  div#wrapperHPcontent .container {
    width: 100%;
    max-width: 600px;
    animation: fadeIn 0.8s ease-in;
    padding-top: 10%;
  }

  div#wrapperHPcontent .buttongrid .inner-button {
    max-height: 60px;
    top: 24px;
    width: 119px;
    color: white;
  }

  /* Accessibility */
  div#wrapperHPcontent .inner-button:focus {
    outline: 2px solid #7eb3d4;
    outline-offset: 2px;
  }

  div#wrapperHPcontent .inner-button {
    background-color: rgba(255, 255, 255, 0.4);
    /* White with 40% opacity */
    /* 2. Apply the blur effect to the background area */
    border: 1.5px solid rgba(126, 179, 212, 0.3);
    padding: 28px 16px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    min-height: 75px;
    font-weight: 700;
    font-size: 14px;
  }

  div#wrapperHPcontent .inner-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
      90deg,
      transparent,
      rgba(255, 255, 255, 0.1),
      transparent
    );
    transition: left 0.5s;
  }

  div#wrapperHPcontent .inner-button:hover::before {
    left: 100%;
  }

  div#wrapperHPcontent .inner-button:hover {
    background: linear-gradient(
      135deg,
      rgba(70, 120, 170, 0.8) 0%,
      rgba(90, 140, 190, 0.8) 100%
    );
    border-color: rgba(126, 179, 212, 0.6);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(126, 179, 212, 0.2);
  }

  div#wrapperHPcontent .inner-button:active {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(126, 179, 212, 0.15);
  }

  div#wrapperHPcontent .inner-button.highlight {
    background: linear-gradient(
      135deg,
      rgba(180, 140, 80, 0.7) 0%,
      rgba(210, 170, 100, 0.7) 100%
    );
    border-color: rgba(240, 200, 120, 0.4);
  }

  div#wrapperHPcontent .inner-button.highlight:hover {
    background: linear-gradient(
      135deg,
      rgba(210, 160, 100, 0.9) 0%,
      rgba(240, 190, 120, 0.9) 100%
    );
    border-color: rgba(240, 200, 120, 0.6);
    box-shadow: 0 8px 20px rgba(240, 200, 120, 0.2);
  }

  div#wrapperHPcontent .divider {
    display: block;
    align-items: center;
    gap: 0px;
    margin: 6px 0;
    position: relative;
    z-index: 1;
    left: -4px;
    top: 24px;
  }

  div#wrapperHPcontent .clickhere button {
    width: 100%;

    height: 101px;
  }
}

div#wrapperHPcontent .modal {
  display: none;
  /* Hidden by default */
  position: fixed;
  /* Stay in place */
  z-index: 1;
  /* Sit on top */
  padding-top: 100px;
  /* Location of the box */
  left: 0;
  top: 0;
  width: 100%;
  /* Full width */
  height: 100%;
  /* Full height */
  overflow: auto;
  /* Enable scroll if needed */
  background-color: rgb(0, 0, 0);
  /* Fallback color */
  background-color: rgba(0, 0, 0, 0.4);
  /* Black w/ opacity */
}

/* Modal Content */

/* The Close Button */
div#wrapperHPcontent .close {
  color: #aaaaaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

div#wrapperHPcontent .close:hover {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

div#wrapperHPcontent .close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

div#wrapperHPcontent .modal-content {
  background-color: transparent;
  margin: auto;
  padding: 20px;
  width: 50%;
  max-width: 896px;
}

div#wrapperHPcontent .VR_POPUP {
  content: url(/MediaWeb/Web_General/Images/VR_POPUP.jpg);
}

@media only screen and (max-width: 644px) {
  div#wrapperHPcontent .modal-content {
    background-color: transparent;
    margin: auto;
    width: 350px;
    max-width: 400px;
  }

  div#wrapperHPcontent .VR_POPUP {
    content: url(/MediaWeb/Web_General/Images/VR_POPUP_Mobile.jpg);
    width: 350px;
    max-width: 400px;
  }

  div#wrapperHPcontent div.clickhere {
    width: 100%;
  }
}

section.maincontent.clearer {
  border-top: 2px solid #c5c5c5;
}

section.maincontent.clearer {
  border-top: 2px solid #c5c5c5;
}

div#wrapperHPcontent #btnFAQ {
  background-image: none !important;
}
