#main .special-ride-tickets {
  width: 90%;
  margin: 10px auto;
  float: initial;
}
.special-ride-tickets * {
  float: initial;
}
.special-ride-tickets div {
  margin-bottom: 50px;
  text-align: center;
}
.special-ride-tickets div img {
  margin: 0 auto;
  width: 80%;
}
.special-ride-tickets h1 {
  float: initial;
  color: #333;
  font-size: 28px;
  margin: 20px 0;
}
.special-ride-tickets h2 {
  padding: 15px 10px 12px;
  margin: 0 0 20px;
  font-size: 22px;
  text-align: left;
}
.special-ride-tickets .breadcrumb {
  display: flex;
  flex-direction: row;
  padding: 5px 10px;
}
.special-ride-tickets .breadcrumb li,
.special-ride-tickets .breadcrumb a {
  color: #4472c4;
}
.special-ride-tickets .breadcrumb li:last-child {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-left: 8px;
}
.special-ride-tickets .breadcrumb li:last-child::before {
  content: ">";
}
.special-ride-tickets .ticket-1 h2,
.special-ride-tickets .ticket-4 h2 {
  background: #ddebf7;
  color: #4472c4;
  border-bottom: 2px solid #4472c4;
}
.special-ride-tickets .ticket-2 h2 {
  background: #ffcccc;
  color: #ff0000;
  border-bottom: 2px solid #ff0000;
}
.special-ride-tickets .ticket-3 h2 {
  background: #fff2cc;
  color: #806000;
  border-bottom: 2px solid #806000;
}
.special-ride-tickets .ticket-5 h2 {
  background: #fce4d6;
  color: #ed7d31;
  border-bottom: 2px solid #ed7d31;
}
.special-ride-tickets .ticket-6 h2 {
  background: #e2efda;
  color: #70ad47;
  border-bottom: 2px solid #70ad47;
}
.special-ride-tickets .ticket-6 {
  margin-bottom: 150px;
}
.special-ride-tickets .ticket-links {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
  gap: 30px;
}
.special-ride-tickets .ticket-links a {
  padding: 25px 40px 20px 30px;
  border: 1px solid #4472c4;
  color: #4472c4;
  font-size: 18px;
  transition: 0.4s;
}
@media screen and (max-width: 767px) {
  .special-ride-tickets .ticket-links a {
    width: 100%;
    padding: 25px 5px 20px 10px;
  } 
}
.special-ride-tickets .ticket-links a:hover {
  background: #4472c4;
  color: #fff;
}
