*{
  padding: 0;
  text-decoration: 0;
  list-style: none;
  box-sizing: border-box;
  margin: 0;


}

/* body{

  background-image: url(main1.jpg);
  background-repeat: no-repeat;
  background-size: cover;
 

} */
body{
  font-family: sans-serif;
  background:#EEF6F0; 

}
nav{
  background: #444749;
  height: 70px;
  width: 100%;
  
}
label.logo{
  color: rgb(195, 193, 201);
  font-size: 25px;
  line-height: 80px;
  padding: 0 40px;
  font-weight: bold;

}
nav ul{
  float: right;
  margin-right: 25px;
}

nav ul li{
  display: inline-block;
  line-height: 80px;
  margin: 0 12px;
}
nav ul li a{
  color: rgb(195, 193, 201) ;
  font-size: 17px;
  font-weight: bold;
  padding: 7px 13px;
  border-radius: 3px;
  text-transform: uppercase;
  text-decoration: none;
}
a.active,a:hover{
background: #24282c;
transform: .5s;
}
.checkbtn{
  font-size: 30px;
  color: white;
  float: right;
  line-height: 80px;
  margin-right: 40px;
  cursor: pointer;
  display: none;
}
#check{
  display: none;
}
@media (max-width:640px){
  label.logo{
    font-size: 20px;
    padding-left: 50px;
  }
  nav ul li a{
    font-size: 16px;
  }
}
@media (max-width:640px){
  .checkbtn{
    display: block;
  }
  ul{
    position:fixed;
    width: 100%;
    height: 100vh;
    background: #2c3e50;
    top: 80px;
    left: -100%;
    text-align: center;
    transition: all .5s;
  }
  nav ul li{
    display: block;
    margin: 20px 0;
    line-height: 30px;

  }
  nav ul li a{
    font-size: 15px;
  }
  a:hover,a.active{
    background: none;
    color: #444749;
  }
  #check:checked ~ ul{
    left:0
  }
}

section{
    background-color: #EEF6F0;
    padding-top: 50px; 
    padding-bottom: 50px;
   
   
    
    
    
  /* background: url(main1.jpg) no-repeat;
  background-size: cover; */
  /* height: calc(100vh - 80px); */

}



/* The sticky class is added to the navbar with JS when it reaches its scroll position */
.sticky {
  position: fixed;
  top: 0px;
  width: 100%;
}

/* Add some top padding to the page content to prevent sudden quick movement (as the navigation bar gets a new position at the top of the page (position:fixed and top:0) */
#main-div {
    
    width:80%;
   /* border: 5px solid red; */
   margin: auto;
   display: flex;
   justify-content: space-between;
}

.product-div{
    width: 25%;
    /* height: 200px; */
     border: 2px solid green;
     border-radius: 15px;
     text-align: center;
     background-color:#DAE6FF;
     padding: 10px;
    
}
   
.titel-id{
    margin:1px;
    padding-top: 7px;
    font-size: 1.4rem;
    color: #3B3C3D;
    
    
   
}

#test-version{
    margin-top: 5px;
   
    color: #6A109E;
    padding-bottom: 7px;
}

#inovo{
    padding-top: 5px;
    color: blue;
    font-weight: bold;
    
}

#avc{
     text-decoration: none;
}

#aud{
    text-decoration: none; 
}

#qud{
    text-decoration: none; 
}

@media (max-width:640px){
  #main-div{
   flex-direction: column;
   align-items: center;
  }
  
  .product-div{
    width: 55%;
    /* height: 200px; */
    margin: 20px;
     border-radius: 15px;

     background-color: #DAE6FF;
    
}
.titel-id{
    margin: 5px;
   
    font-size: 1rem;
    color: #1d8ac4;
    text-decoration: none;
   
}
#test-version{
    margin-top: 5px;
    font-weight: bold;
    font-size: 12px;
    color: red;
    padding-bottom: 7px;
}
  

}