@import url('https://fonts.googleapis.com/css?family=Poppins:200,300,400,500,600,700,800,900&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'poppins', sans-serif;
}
a{
    text-decoration: none;
    color: #fff;
    font-size: 1rem;
}
li{
    list-style: none;
}
a, button, div[role="button"]{
    -webkit-tap-highlight-color: transparent;
}
ul{
    list-style: none;
}
section{
    width: 100vw;
}
body{
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    max-width: 100vw;
}

header{
    display: flex;
    justify-content: space-around;
    top: 0;
    height: 100px;
    position: relative;
    max-width: 100vw;
    width: 100%;

}
 .banner img{
    width: 200px;
    height: 100px;
    margin-left: 50px;
}

header .navbar-link{
    max-width: 100vw;
    margin: 0px auto;
    width: 100%;
    display: inline-flex;
    justify-content: space-around;
}

header .navbar-link .navbar-list{

    display: inline-flex;
    list-style: none;
    color: rgb(184, 167, 167);
    margin-top: 25px;
    justify-content: space-around;
}
header .navbar-list li {
    width: 130px;
    padding: 10px;
    text-align: center;
    border-radius: 10px;
}
header .navbar-list li a{
    position: relative;
    text-decoration: none;
    color: #fff;
    text-align: center;
    padding: 0 10px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
}
.navbar-list li a::after {
    content: "";
    position: absolute;
    background-color: #00c5cd;
    height: 3px;
    border-radius: 5px;
    width: 0;
    left: 0;
    bottom: -5px;
    transition: 0.3s;
}
.navbar-list li a:hover::after{
    width: 100%;
}
 header .navbar-list li a:hover {
    color: #00c5cd;
}
.navbar-link .donate {
    display: inline;
}
.navbar-link .donate a{
    margin: 30px;
    text-align: right;
    padding: 7px 30px;
    font-weight: bold;
    background: transparent;
    color: #00c5cd;
    border: 1px solid #00c5cd;
    border-radius: 20px;
    box-shadow: 0 7px 10px rgba(41, 51, 59, 0.5);
    cursor: pointer;
    transition: scale 0.2s ease;
}
.navbar-link .donate a:hover{
    background: linear-gradient(90deg,#2384ec,#00c5cd);
    scale: 1.05;
    color: #fff;
    cursor: pointer;
}
header .navbar-link i{
    color: #fff;
    cursor: pointer;
    display: none;
}

.dropdown-menu{
    display: none;
    position: absolute;
    right: 2rem;
    width: 300px;
    height: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border-radius: 10px;
    overflow: hidden;
    transition: height 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.dropdown-menu.open{
    height: 240px;
}
.dropdown-menu li{
    padding: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.dropdown-menu li button{
    width: 100%;
    padding: 10px;
    color: #fff;
    background-color: #00c5cd;
    border: 1px solid #00c5cd;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    cursor: pointer;
}
.details{
    position: relative;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 550px;
    margin-top: -70px;
}
.details h1{
    font-size: 3em;
    color: #fff;
    text-shadow: 0 0 2px #000;
}
.details p{
    color: #fff;
    margin: 10px;
    margin-bottom: 30px;
}
.details a{
    padding: 20px 20px;
    margin: 20px 10px;
    border: 1px solid #00c5cd;
    border-radius: 5px;
    color: #00c5cd;
    box-shadow: 0 7px 10px rgba(41, 51, 59, 0.5);
    background: transparent;
    font-weight: bold;
} 
.details a .fa{
    margin-right: 9px;
    transform: scale(1.7);
}
.details a:hover{
    color: #fff;
    background: linear-gradient(90deg,#2384ec,#00c5cd);
    cursor: pointer;
    
}
.contain{
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    animation: animate 30s ease-in-out infinite;
    background-size: cover;
    
} 
@keyframes animate{
    0%,100%{
        background-image: url(img/back4.jpeg);
    }
    20%{
        background-image: url(img/pexels2.jpg);
    }
    40%{
        background-image: url(img/back3.jpeg);
    }
    60%{
        background-image: url(img/back2.jpeg);
    }
    80%{
        background-image: url(img/back1.jpeg);
    }
} 

.outer{
    
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,0.5);
}

.patient{
    margin: 120px 0;
    width: 100vw;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.patient .patient-steps{
    margin-bottom: 50px;
}
.patient .patient-steps h1{
    text-align: center;
    font-weight: bold;
    color: #00c5cd;
    padding-bottom: 4px;
    font-size: 2em;
}
.patient .patient-steps h1::after{
    content: '';
    display: block;
    height: 3px;
    margin: 0px auto 5px;
    border: 5px;
    background: #00c5cd;
    width: 250px;
}
.patient .patient-steps p{
    text-align: center;
    margin: 10px;
    margin-bottom: 40px;
    color: #555;
}
.how{
    width: 100vw;
    cursor: default;
    display: flex;
    column-gap: 30px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
}
.how .box{
    width: 300px;
    position: relative;
    padding: 100px 10px 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    align-items: center;
    text-align: center;
}
.how .box::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #00c5cd;
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.5s;
}
.how .box:hover::before{
    transform: scaleY(1);
    transform-origin: bottom;
    transition: transform 0.5s;
}
.how .box h2{
    position: absolute;
    left: 100px;
    top: 20px;
    font-size: 4em;
    font-weight: 800;
    z-index: 1;
    color: #00c5cd;
    opacity: 1;
    transition: 0.5s;
}
.how .box:hover h2{
    opacity: 1;
    color: #fff;
    transform: translateY(-15px);
}
.how .box h3{
    position: relative;
    font-size: 1.5em;
    z-index: 2;
    color: #333;
    transition: 0.5s;
}
.how .box p{
    position: relative;
    font-size: 1em;
    z-index: 2;
    color: #555;
    transition: 0.5s;
    text-align: center;
}
.how .box:hover h3, .how .box:hover p{
    color: #fff;
}
section.partner h1{
    text-align: center;
    font-size: 4em;
    color: #555;
}
section.partner h1::after{
    content: '';
    display: block;
    height: 5px;
    margin: 0px auto 5px;
    border: 5px;
    border-radius: 10px;
    background: #777;
    width: 300px;
}
.partners{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
}
.part{
    display: inline-flex;
    justify-content: center;
    align-items: center;
}
.part img{
    width: 20vw;
    margin: 40%;
}



footer{
    position: fixed;
    bottom: 0px;
    width: 100vw;
    background-color: #111;
}
.footer{
    width: 100vw;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    
}
.boxy{
    margin: 10px;
}
.boxy h2{
    font-size: 1.125rem;
    font-weight: 600;
    color: #fff;
}
.foot{
    width: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.footerimage{
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
.footerimage img{
    width: 250px;
    height: 100px;
}
.socialicons{
    display: flex;
    justify-content: center;
    margin-top: -10px;
}
.socialicons a{
    text-decoration: none;
    padding: 5px 9px;
    background-color: #fff;
    margin: 10px;
    border-radius: 50%;
}
.socialicons a i{
    font-size: 1.1em;
    color: #000;
    opacity: 0.9;
}
.socialicons a:hover{
    background-color: #111;
    transition: 0.5s;
}
.socialicons a:hover i{
    color: #fff;
    transition: 0.5s;
}
.footerContainer{
    margin: 20px;
    width: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: left;
}
.footerContainer h2.h{
    text-align: left;
    margin-left: -90px;
}
.footerContainer ul{
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    margin-left: -90px;
}

.footerContainer ul li a{
    color: #fff;
    text-decoration: none;
    font-size: 1em;
    opacity: 0.7;
    transition: 0.5s;
}
.footerContainer ul li a:hover{
    opacity: 1;
}
.right{
    margin-top: 20px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items:  left;
    text-align: left;
}
.right h2{
    text-align: left;
}
.right span{
    opacity: 0.7;
}
.right span i{
    opacity: 0.9;
}
.contac{
    width: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: left;
    color: #fff;
}
.contac h2{
    text-align: left;
    margin-left: -80px;
}
.contac span{
    margin: 20px;
    opacity: 0.8;
}
.contac span span{
    margin-left: 47px;
    opacity: 1;
}
.microsoft{
    margin: 0;
    padding: 0;
    width: 300px;
    right: 0px;
    display: flex;
    justify-content: left;
    align-items: left;
    
}
.microsoft img{
    width: 90%;
    margin: 10px;
}
.footerbottom{
    display: block;
    /* margin-top: 120px; */
    width: 100vw;
    background-color: #000;
    padding: 15px;
    text-align: center;
}
.footerbottom p{
    color: #fff;
}
.designer{
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 400;
    margin: 0px 5px;
}
.container{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: -10px;
}

.crowd_video{
    width: 90%;
    height: 72%;
    position: relative;
    outline: none;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}






/* making the site responsive */



@media(max-width: 1200px){
    .navbar-list{
        margin-right: 0px;
    }
    .how .box{
        margin: 10px;
        width: 30%;
    }
    .how .box h2{
        left: 120px;
    }
}
@media(max-width: 1050px){
    .boxy{
        width: 40vw;
    }
    .right{
        margin-top: 20px;
        align-items:  center;
        text-align: left;
    }
    .right h2{
        text-align: left;
        margin-right: 105px;
    }
}
@media(max-width: 991px){
    .navbar-link .banner img{
        margin-right: 100px;
    }
    .how .box{
        margin: 10px;
        width: 40%;

    }
    .how .box h2{
        left: 140px;
    }
}
@media(max-width: 940px){
    .navbar-link .navbar-list li{
        width: 70%;
    }
 
}
@media(max-width: 843px){
    .navbar-link .banner img{
        margin-left: -40px;
    }
    .navbar-link .links, 
    .navbar-link button{
        display: none;
    }
    header .navbar-link i{
        display: inline-flex;
        margin-top: 40px;
    }
    header .navbar-link .links{
        width: 200px;
        height: 90vh;
        right: 0px;
        position: absolute;
        margin-top: 70px;
        box-shadow: 0 2px 2px rgba(255, 255, 255, 0.5);
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(15px);
        border-radius: 10px;
        overflow: hidden;
        z-index: 222;
    }
    header .navbar-link .links.navactive{
        display: block;
    }
    .navbar-link .donate a{
        display: inline;
        margin: 30px 35px;
    }
    header .navbar-link .navbar-list{
        margin-bottom: 20px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .patient .patient-steps p{
        width: 80%;
        margin-left: 10%;
    }
    .how .box{
        margin: 10px;
        width: 50%;
    }
    .how .box h2{
        left: 150px;
    }
}
@media(max-width: 843px){
    .footer{
        flex-direction: column;
        column-gap: 20px;
    }
    .boxy{
        width: 80vw;
    }
    @keyframes animate{
        0%,100%{
            background-image: url(img/pexels7.jpg);
        }
        20%{
            background-image: url(img/pexels8.jpg);
        }
        40%{
            background-image: url(img/pexels9.jpg);
        }
        60%{
            background-image: url(img/pexels10.jpg);
        }
        80%{
            background-image: url(img/pexels11.jpg);
        }
    } 
}
@media(max-width: 600px){
    .details{
        width: 80vw;
    }
    .details h1{
        font-size: 2.2em;
    }
    .details p{
        font-size: 1em;
    }
    .how .box{
        margin: 10px;
        width: 60%;
    }
    .how .box h2{
        left: 130px;
    }
    section.partner h1{
        font-size: 2.5em;
    }
    section.partner h1::after{
        width: 200px;
    }
    .partners{
        flex-direction: column;
        margin: 10px;
    }
    .part img{
        width: 50vw;
    }
    
}
@media(max-width: 500px){
    .navbar-link .banner img{
        margin-left: 0px;
    }
    .details h1{
        font-size: 2em;
    }
    .how .box{
        margin: 10px;
        width: 70%;
    }
    .how .box h2{
        left: 120px;
    }
    .details{
        margin-top: -150px;
    }
    .details a{
        padding: 10px 20px;
        border-radius: 20px;
        margin: 5px;
    }
    .details a .fa{
        margin-right: 4px;
        transform: scale(1);
    }
   
}
@media(max-width: 430px){
    .details{
        margin-top: -100px;
    }
    .details h1{
        font-size: 2em;
        margin: 30px 0;
    }
    .details p{
        margin: 30px 0;
    }
    .details a{
        padding: 6px;
    }
    .details a .fa{
        margin-right: 4px;
        transform: scale(1);
    }
    .patient .patient-steps h1{
        font-size: 1.5em;
    }
    .how .box{
        margin: 10px;
        width: 80%;
    }
    .how .box h2{
        left: 100px;
    }
    header .navbar-link i{
        margin-left: -20px;
    }
}
@media(max-width: 360px){
    .details a .fa{
        display: none;
        margin: 10%;
    }
}
@media(max-width: 340px){
    header .navbar-link i{
        margin-left: -40px;
    }
}
@media(max-width: 300px){
    .details a{
        margin-bottom: 30px;
    }
}

.reveal{
    position: relative;
    transform: translateY(150px);
    opacity: 0;
    transition: all 1.5s ease;
    width: 100vw;
}
.reveal.active{
    transform: translateY(0px);
    opacity: 1;
}