    html, body {
      margin: 0;
      padding: 0;
      height: 100%;
      overflow: hidden;


    }
	  
	   .firstTxt {    font-family: "Poppins", sans-serif;
    font-weight: 400;
    line-height: 21px;
    color: #494949;
    /* max-width: 500px; */
    margin: 0 auto; padding:5px 0;
    font-size: 14px;}
	  
	  .twoTxt {font-family: "Poppins", sans-serif;
    font-weight: 400;
    line-height: 21px;
    color: #c2005e;
    /* max-width: 500px; */
    margin: 0 auto; padding:5px 0;
    font-size: 14px;}
	  
	  .listTxt {    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none; padding: 0;}
	  
	  .listTxt  li {
    padding: 0 10px;
}
	  .listTxt  li a { color:#fff;}

    video {
      position: absolute;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      object-fit: cover;
      z-index: -1;
    }

     .content {
      position: relative;
      z-index: 1;
      color: white;
      text-align: center;
      top: 50%;
      transform: translateY(-50%);
      font-family: Arial, sans-serif;
      opacity: 0;
      animation: fadeIn 10s ease-in forwards;
    }
	  
	  
	  .scrollDown {
   position: fixed;
    bottom: 25px;
    width: 40px;
    height: 40px;
    z-index: 999999;
    transform: rotate(90deg);
    left: 0;
    right: 0;
    text-align: center;
    margin: 0 auto;
}

.scrollDown img{ width:60px;}

.scrollDown span {
    pointer-events: none;
    position: absolute;
    top: 50%;
    right: 0;
    left: auto;
    transform: translateY(-50%);
    border-radius: 40px;
    width: 50px;
    height: 50px;
    border: 2px solid rgba(255,255,255);
    transition: border 0.2s ease-in-out;  transition: all 0.6s ease;
}

.scrollDown span::before {
    content: "";
    width: 14px;
    height: 2px;
    background: #fff;
    position: absolute;
    top: 50%;
    margin-top: -1px;
    right:25px ;
    transition: all 0.3s ease;
}

.scrollDown span::after {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px 0 6px 6px;
    border-color: transparent transparent transparent #fff;
    position: absolute;
    top: 50%;
    margin-top: -6px;
    right: 40%;
    transition: all 0.3s ease;
}

.scrollDown:hover span {
    border: 2px solid #d9182b;
    background: #d9182b;  transition: all 0.6s ease;
}
.scrollDown:hover span:before {
    width: 20px;
    right: 15px;
}
 .scrollDown:hover span:after {
    right: 20%;
}

	  
@media (max-width: 600px) {
		  .firstTxt, .twoTxt { font-size: 11px;
        line-height: 18px;
        padding: 5px 10px;}
	
	.logoImg{
    width: 60%;
}
}

    @keyframes fadeIn {
      0% { opacity: 0; transform: translateY(-50%); }
      100% { opacity: 0.9; transform: translateY(-50%); }
    }
	  