
html,body{
  overflow: hidden;
}
.holder-1{
    position: relative;
    width: 100%;
    height: 100vh;
}

.flex{
  display: flex;
}

.justify-center{
  justify-content: center;
}

.items-center{
  align-items: center;
}

.white{
  color: #ffffff;
}

.img-background{
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; 
    z-index: -2;
}


.video-background {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}


.black-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* 50% black overlay */
  z-index: 0;
}

.holder-1 .content-links{
  z-index: 1;
  position: absolute;
  /* top: 55%; */
  top: 39%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

@media (min-width: 1280px) and (max-width: 1399px){
  .holder-1 .content-links{
    top: 45%;
  }
}

@media (max-width: 320px){
  .holder-1 .content-links{
    top: 50%;
  }
}

@media (min-width: 375px) and (max-width:425px){
  .holder-1 .content-links{
    top: 55%;
  }
}

.holder-1 .content-links .btns-holder{
  text-align: center;
  margin-top: 4%;
}

.heading-1{
  font-size: 36px;
  color: #fff;
  font-weight: 500;
}

@media (max-width: 425px){
  .heading-1{
    font-size: 15px;
  }
}

.btn {
  display: inline-block;
  padding: 10px 62px;
  background-color: #017fcd;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  font-size: 19px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.btn:hover {
  background-color: #0160a2; 
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
}

.btn:active {
  transform: translateY(0px) scale(0.98);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(1, 127, 205, 0.4);
}

.store-buttons {
  display: flex;
  gap: 15px;
  margin-top: 7%;
  flex-wrap: wrap;
  justify-content: center;
}

@media (max-width: 320px) {
  .store-buttons{
    gap: 0px;
  }
}

.store-btn img {
  height: 60px;
  transition: transform 0.3s ease;
}

@media (max-width: 425px){
  .store-btn img {
    width: 126px;
    object-fit: contain;
  }
}


.store-btn:hover img {
  transform: scale(1.05);
}

@media (max-width: 375px){
    .store-btn .img-apple{
        width: 100px;
    }

    .store-btn .img-google-play{
        height: 35px;
        margin-top: 12px;
        width: 100px;
    }
} 

@media (max-width: 320px) {
  .socials {
    flex-direction: column;
    align-items: flex-start; 
    gap: 10px;
  }
}

.social-media{
  margin-top: 50px;
}

.social-media .left-social{
  margin-right: 80px;
  align-items: center;
}

@media (max-width: 425px){
  .social-media .left-social{
    margin-right: 47px;
  }
}

@media (max-width: 375px){
  .social-media .left-social{
    margin-right: 15px;
  }
}


.social-media .right-social{
  align-items: center;
}

.insta-holder{
  margin-right: 22px;
}

.text-follow-us{
  margin-right: 24px;
  text-transform: uppercase;
}

.join-text{
  margin-right: 24px;
  text-transform: uppercase;
}

@media (max-width: 425px){
  .text-follow-us{
    white-space: nowrap;
    font-size: 9px;
  }

  .join-text{
    white-space: nowrap;
    font-size: 9px;
  }
}

.bg-image{
  width: 50%;
}

@media (max-width: 425px){
  .media-icon{
    width: 26px;
  }
  .facebook-icon{
    width: 11px;
  }
}