/**** Hero bg image  ****/
.hero-one {
    position: relative; 
    z-index: 1; 
    background-size: cover; 
    background-position: center center;
    background-color: #F9F2EC;
    padding: 120px 0 40px;
    color:#fff;
}
.hero-one::before {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: -1;
    background-color: #000;
    content: '';
    opacity: 0.36;
}

.hero-one .title-style-one {color: #fff;}


/**** Hero Video  ****/

.hero-video {
  position: relative;
  background-color: black;
  height: 100vh;
  min-height: 25rem;
  width: 100%;
  overflow: hidden;
}

.hero-video video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  max-width: fit-content;
  width: auto;
  height: auto;
  z-index: 0;
  -ms-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}
.hero-video .container {
  position: relative;
  z-index: 2;
}

.hero-video .overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: black;
  opacity: 0.4;
  z-index: 1;
}

.hero-video:before {
    position: absolute;
    content: "";
    bottom: 0;
    left: 20%;
    margin-left: -13px;
    border-style: solid;
    border-width: 0px 24px 30px 24px;
    border-color: transparent transparent #222 transparent;
    z-index: 2;
}

/* Media Query for devices withi coarse pointers and no hover functionality */
/* This will use a fallback image instead of a video for devices that commonly do not support the HTML5 video element */

@media (pointer: coarse) and (hover: none) {
  .hero-video {
    background: url('/storage/image/202411/iceland-0043-3.webp') black no-repeat center center scroll;
  }
  .hero-video video {
    display: none;
  }
}























