

/*-------------------------- Vision Page ------------------------------*/
.blog_banner {
width: 50%;
margin: 30px auto 15px auto;
display: flex;
flex-direction: column;
min-height: 600px;
justify-content: center;
}

#first_landing {
width: 100%;
margin: 0px auto;
background-color: #22262f;
}
.confetti {
width: 35px;
}
.welcome_para {
text-align: center;
}

.pepul_download {
text-align: center;
padding-bottom: 0px;
}
.download_now {
background-image: linear-gradient(183deg, #FFC75E 0%, #F4648F 100%);
padding: 10px 35px 10px;
outline: none;
border: none;
border-radius: 50px;
color: var(--white);
font: 17px/25px var(--pepul_m);
transition: 5s;
animation: zoom-in 2s ease-out infinite;
}
.pepul_video {
padding: 0px 0;
position: relative;
}
#video {
position:absolute;
z-index:-1;
top:0;
left:0;
width:100%; 
height: 95vh;
}
.pepul_download {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background-color: #1b1e23;
padding: 15px 0;
}
.download_now:hover {
background-image: linear-gradient(183deg, #F4648F 0%, #FFC75E 100%);
transition:5s;
}

.fix_head {
position: absolute;
width: 100%;
text-align: var(--center);
}
.logo {
width: 120px;
}
.header_head {
padding: 20px 0 10px;
}
.head_para {
font: 30px/35px var(--pepul_b);
margin: 0 0 5px;
color: linear-gradient(100deg,#4ef2bd 0%,#26a9b7 100%);
background: -webkit-linear-gradient(30deg,#4ef2bd 0%,#26a9b7 100%);
background-clip: border-box;
background-clip: border-box;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.head_para1 {
font: 20px/25px var(--pepul_m);
color: var(--white);
margin: 0;
}
.download {
width: 20px;
position: relative;
top: -1px;
right: 5px;
}

.logo_section {
background-color: #1b1e23;
}

@keyframes zoom-in {
0% {
transform: scale(1,1);
}
50% {
transform: scale(1.2, 1.2);
}
100% {
transform: scale(1, 1);
}
}

@media only screen and (max-width: 500px) {
#first_landing {
width: 100%;
}
.pepul_download {
width: 100%;
}
#video {
height: 93vh;
}
}
