@import url('https://fonts.googleapis.com/css2?family=Inter&family=Noto+Sans:wght@100&display=swap');
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
* h1,h2,h3,h4,p,a {
    font-family: sans-serif;
}
nav{
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
    padding: 20px 50px;
    position: fixed;
    align-items: center;
    background-color: #fff;
}
nav ul{
    display: flex;
    flex-direction: row;
    list-style: none;
    gap: 20px;
}
nav a{
    text-decoration: none;
    color: darkslategrey;
}
.bar1, .bar2, .bar3{
    background-color: rgb(12, 12, 12);
    height: 4px;
    width: 30px;
    margin: 3px;
    border-radius: 10px;
}
nav .hamburger{
    display: none;
}
main{
    padding: 5rem 10vw;
    
}
.content{
    display: flex;
    flex-direction: row;
    /* justify-content: space-between; */
    flex-wrap: wrap;
    flex-shrink: 0;
    flex-grow: 0;
}
main h4{
    color: #09f;
    margin-bottom: 22px;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    /* font-family: Poppins; */
}
.text{
    width: 40%;
    margin-right: 40px;
    
} 
.text h1{
    color: #333;
    font-size: 24px;
    font-weight: 700;
    line-height: 36px;
}
.text p{
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    margin-top: 16px;
    color: #555;
}
 .video{
     width: 40%; 
     
} 
.future_list{
    padding: 5rem 0;
}
.future_list ul{
    display: flex;
    gap: 50px;
    list-style: none;
    
}
.future_list a{
    text-decoration: none;   
    color: #555;
    font-size: 18px;
    font-weight: 400;
}
.future_list li{
    margin-bottom: 10px;
}
.future_list a:hover{
    color: #09f;
}
.future_list hr:hover{
    color: #09f;
}
.sub_content{
    display: flex;
    flex-direction: row; 
    /* border: 1px solid black; */
    padding: 1rem;

   
}

/* .sub1{
    display: flex;
    justify-content: space-between;
} */
.sub_content .video{
    width: 50%;
    margin-bottom: 40px;
    
}
.sub_content .text{
    width: 40%;
    margin-left: 100px;
}
.sub_content:hover{
    box-shadow: 5px 5px 5px #555;
    
}* h1,h2,h3,h4,h5,h6,p,a {
    font-family: sans-serif;
}

footer{
    background-color: #333333;
    color: white;
     padding: 3rem 10vw; 
}

.footer_content{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 48px;
}
/* .footer_list_text{
     width: 50%; 
    flex-grow: 0;
    flex-shrink: 0;
} */
.footer_list{
    width: 6%; 
    flex-grow: 0;
    flex-shrink: 0;
    gap: 60px;
    
}
.footer_list a{
    color: #f0f0f0;;
    line-height: 2rem;
}
.footer_content h3{
    font-size: 1.3rem;
    line-height: 1.3rem;
    font-family: Poppins,system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Open Sans,Helvetica Neue,sans-serif;
    font-size: 1.365rem;
    color: #fdfdfd;;
    font-weight: 500;
}
.footer_content p{
    color: white;
    line-height: 1.5rem;
}
footer .copy_right{
    padding-top: 3rem;
    color:#f0f0f0;;
    text-align: center;
    line-height: 1.5rem;
}
.footer_list img{
    padding: 3px 0;
}

@media only screen and (max-width:768px) {
    nav ul{
      display: none;
    }
    main{
        padding: 5rem 5vw;
        
    }
    .content{
        display: flex;
        flex-direction: column;
    }
    .text{
        width: 100%;
        margin-right: 40px;
        
    } 
    .video{
        width: 100%; 
        
   } 
   .sub_content{
    display: flex;
    flex-direction: column; 
}
.sub_content .video{
    width: 100%;
    margin-bottom: 40px;
    
}
.sub_content .text{
    width: 100%;
    margin-left: 50px;
}
}