@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,h5,h6,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: black;
    height: 4px;
    width: 30px;
    margin: 3px;
    border-radius: 10px;
}
nav .hamburger{
    display: none;
}
.main_tech{
    padding: 5rem 10vw;
}
.tech_navigeter{
    padding: 10px;
}
.main_tech .tech_navigeter a{
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    text-decoration: none;
    color: #333;
} 
.main_tech .tech_navigeter .tech{
 color: #0099ff;;
}
.list_img{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: start;
    margin-top: 10px;
}
.main_tech .container{
    width: 30%;
    /* border: 2px solid blue; */
    padding: 20px 20px 10px 0px;
    flex-shrink: 0;
}
.main_tech .container img{
    width: 100%;
    height: auto;
    aspect-ratio: 3/2 auto;
    object-fit: cover;
    object-position: center;
    border-radius: 4px;
}
.main_tech .container .title a{
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    color: #474747;
    text-decoration: none;
}
.main_tech .container h3{
    margin-top: 0.75rem;
    font-size: 28px;
    font-weight: 600;
    line-height: 32px;
color: #333;
}
.main_tech .container p{
    margin-top: 16px;
    font-weight: 400;
    line-height: 1.5rem;
    color: #474747;
}
.main_tech h6{
    margin-top: 10px;
    font-weight: 400;
    font-size: 16px;
    line-height: 16px;
    color: #555;
}

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

.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: 10%; 
    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;
}


@media  only screen and (max-width:768px){
   nav ul{
    display: none;
   }
   nav .hamburger{
    border: 2px solid black;
    display: flex;
    flex-direction: column;
   justify-content: space-between;
    align-items: center;
    color: #0099ff;

}
    .main_tech .container{
        width: 50%;
        /* border: 2px solid blue; */
        padding: 20px 20px 10px 0px;
        flex-shrink: 0;
    }
   
    
}
@media only screen and (max-width: 480px){
    .main_tech .container{
        width: 100%;
        /* border: 2px solid blue; */
         padding: 10px 10px; 
        flex-shrink: 0;
        flex-grow: 0;
    }
}
