/**videobg**/
.banner {
    position: relative;
    height: 700px; /* Adjust the height as needed */
    overflow: hidden;
  }
  
 .banner video {
    width: 100%;
  
    /* object-fit: cover; */
    position: absolute;
   
    left: 0;
  }
  .video-banner {
    width: 100%;
    /* height: 100%; */
    object-fit: cover;
    position: absolute;
   top: 0;
    left: 0;
  }
  
  
  .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 72%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #ffffff; /* Text color on the banner */
  }
  
  .logo {
    max-width: 100%;
    max-height: 100%;
    width: 300px;
    opacity: 0;
    margin-bottom: 2%;
    animation: zoomInLogo 7s forwards; /* Adjust the animation duration as needed */
  }
  
  .text-content {
    text-align: center;
  }
  
  .upper-text {
    font-size: 30px;
    color: #f2e7c3;
    margin-top: 3%;
    margin-bottom: 3%;
  }
  
  .lower-text {
    font-size: 45px;
    animation: changeText 5s infinite; /* Adjust the animation duration as needed */
    text-transform: uppercase;
    font-weight: 600;
  }
  /* .play-button {
    font-size: 36px;
    border: none;
    background: none;
    cursor: pointer;
    color: #ffffff;
    outline: none;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    width: 100px;
    height: 100px;
  } */
  
  
  @keyframes zoomInLogo {
    from {
      transform: scale(0);
      opacity: 0;
    }
    to {
      transform: scale(1);
      opacity: 1;
    }
  }
  
  @keyframes changeText {
    0%, 25% {
      opacity: 1;
    }
    50%, 75% {
      opacity: 1;
    }
    100% {
      opacity: 1;
    }
  }
  

  /***************about**********************/

  /* Customize styles as needed */
  .video-container {
    position: relative;
    /* max-width: 640px; */
    margin: 0 auto;
  }
  .video-thumbnail {
    width: 100%;
    cursor: pointer;
  }
  .play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    color: rgb(30, 4, 4);
    z-index: 1;
  }
  .video-player {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }



  /**************************************/

  /* Slider */

.slick-slide {
  margin: 0px 20px;
}

.slick-slide img {
  width: 100%;
}

.slick-slider
{
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
          user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
      touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list
{
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}
.slick-list:focus
{
  outline: none;
}
.slick-list.dragging
{
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
  -webkit-transform: translate3d(0, 0, 0);
     -moz-transform: translate3d(0, 0, 0);
      -ms-transform: translate3d(0, 0, 0);
       -o-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

.slick-track
{
  position: relative;
  top: 0;
  left: 0;
  display: block;
}
.slick-track:before,
.slick-track:after
{
  display: table;
  content: '';
}
.slick-track:after
{
  clear: both;
}
.slick-loading .slick-track
{
  visibility: hidden;
}

.slick-slide
{
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}
[dir='rtl'] .slick-slide
{
  float: right;
}
.slick-slide img
{
  display: block;
}
.slick-slide.slick-loading img
{
  display: none;
}
.slick-slide.dragging img
{
  pointer-events: none;
}
.slick-initialized .slick-slide
{
  display: block;
}
.slick-loading .slick-slide
{
  visibility: hidden;
}
.slick-vertical .slick-slide
{
  display: block;
  height: auto;
  border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
  display: none;
}

/****************************************************/

/**************banner***********************/

.banner {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

/* .video-container {
  position: relative;
  width: 100%;
  height: 100%;
} */

#banner-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%
  object-fit: cover;
}

/* .trophy-image {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 50px; 
  height: auto;
  z-index: 10;
} */
.trophy-image {
  /* position: absolute; */
  bottom: 0px;
  right: 20px;
  width: 30%; /* Adjust size as needed */
  height: auto;
  z-index: 10;
}
.content {
  /* position: absolute; */
  bottom: 0px; /* Adjust as needed */
  right: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.text {
  font-size: 27.8px; /* Adjust size as needed */
  font-weight: bold;
  background: black;
  color: white; /* Adjust color as needed */
  margin-top: 0px; /* Adjust spacing as needed */
  position: relative;
}
.golden-triangle-section {
  width: 100%;
  overflow: hidden;
  position: relative;
  height: 120vh;
  /* display: flex;
  justify-content: center; */
}
.pb-20px{
  padding-bottom: 7% !important;
}

/* .golden-triangle-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
} */

/************about banner**************/

.about-banner {
  position: relative;
  width: 100%;
  height: 100vh; /* Or adjust the height as needed */
  overflow: hidden;
}

.about-banner .video-container {
  position: relative;
  width: 100%;
  height: 100%;
}

#about-banner-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-trophy-image {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 50px; /* Adjust size as needed */
  height: auto;
  z-index: 10;
}

/**************about section**************/
.text-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.sentence {
  position: relative;
  white-space: nowrap;
  transform: translateX(100%);
  opacity: 0;
}

.image-container {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.pop-up-image {
  transform: translateY(100%);
  opacity: 0;
}

@keyframes slideInLeft {
  0% {
      transform: translateX(100%);
      opacity: 0;
  }
  100% {
      transform: translateX(0);
      opacity: 1;
  }
}

@keyframes slideUp {
  0% {
      transform: translateY(100%);
      opacity: 0;
  }
  100% {
      transform: translateY(0);
      opacity: 1;
  }
}
