.Topbar{
  background-color: rgba(255, 255, 255, 0.744);
  border-bottom: 1px solid rgba(0, 0, 0, 0.288);
  border-radius: 6px;
  
  padding: 18px;
  display: flex;
  margin-bottom: 40px;


  justify-content: center;

}
.Topbar #search_tutorial{
  margin: 0 auto;
  padding: 8px;
  width: 70%;
  font-size: 17px;

  border: 1px solid rgba(0, 0, 0, 0.187);
  border-radius: 6px;
  box-shadow: none;

  transition: 0.2s;
}

.Topbar #search_tutorial:focus{
  outline: none;
  box-shadow: 0 0 0 1px rgba(0, 11, 28, 0.14);
}


/*Cut page border */ 
.Wrapper{
  padding: 0 60px;
  background-color: rgba(255, 255, 255, 0.744);
}

/* Tutorial card*/
.Tutorial{
  background-color: rgba(255, 255, 255, 0.744);
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);

  padding: 18px;
  width: 100%;
  height: 100%;
  max-height: 110px;
  margin-bottom: 18px;

  overflow: hidden;
  transition: 0.2s;
}

.Tutorial a{
  color: inherit;
  text-decoration: none;
  width: 100%;
  height: 100%;
}

.Tutorial h1{
  font-size: 26px;
  padding: 0;
  margin: 0 0 4px;
  font-weight: 600;
}
.Tutorial p{
  line-height: 1.3;
  height: 100%;
  margin: 0;
  font-size: 22px;

  overflow: hidden; 
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;

  color: #818080c7;
}


.Tutorial:hover p{
  -webkit-line-clamp: 4;
  line-clamp: 4;

}
.Tutorial:hover{
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.139);
  
  max-height: 180px;
}
