/**********************LESSONS**********************/

.all-lessons {
  display: flex;         
  gap: 20px;               
  flex-wrap: wrap;        
  justify-content: center; 
}

.lessons {
  flex: 1 1 300px;     
  border: 2px solid var(--primary-color); 
  border-radius: 12px;
  padding: 20px;
  box-sizing: border-box; 
  text-align: center;
}

.lessons > h2{
  text-align: center;
}

.lessons-prices>p{

 color: var(--primary-color);
}

.lessons-information{
  text-align: center;
  margin-top: 20px;
}

.contact-link{
   color: var(--text-color);
  text-decoration: none;
  font-weight: 500;
  border: var(--primary-color) 2px solid;
  padding: 8px 15px;
  display: inline-block;
  width: 150px;
  text-align: center
}

.contact-link:hover {
  color: var(--primary-color);
 
   background-color: var(--secondary-color);

}