/*---Airlines---*/

#airlines-header {
  background-color: #ffffff;
  width: 100%;
  height: 100px;
  color: black;
  text-align: center;
  margin-top: 20px;
}


#airlines {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0px;
  padding: 0px;
  width: 93%;
  box-shadow: 2px 2px 10px grey;
  box-shadow: 2px 4px 10px 2px #999;
  overflow: hidden;
  background-color: white;
  border: solid 2px #4B8589;
  margin-top: 150px;
  margin-left: 30px;
 }

.airline {
  width: 300px;
  margin: 20px;
  padding: 20px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.airline img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 10px;
}

.airline h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.airline p {
  font-size: 16px;
  color: #666;
  margin-bottom: 10px;
}

.airline a {
  display: block;
  background-color: #ffffff;
  color: steelblue;
  text-align: center;
  padding: 10px 0;
  border: 2px solid #4B8589;
  border-radius: 5px;
  text-decoration: none;
  font-size: 14px;
  box-shadow: 2px 2px 10px grey;
  box-shadow: 2px 4px 10px 2px #999;
}

.airline a:hover {
  background-color: #e8e8e8;
} 

.airline_btn {
    width:  100px;
    display: block;
    background-color: #ffffff;
    color: black;
    text-align: center;
    padding: 10px 0;
    border-radius: 5px;
    text-decoration: none;
    border: solid 2px #4B8589;
    box-shadow: 2px 2px 10px grey;
    box-shadow: 2px 4px 10px 2px #999;
    margin-top: 10px;
}