/* Header
-------------------------------------------------- */
header.main-header {
  position: static;
  background-color: #FF4021;
}
@media (max-width: 767px) {
  header.main-header {
    position: fixed;
  }
}
/* Red section
-------------------------------------------------- */
.red-section {
  padding: 15px 0 20px 0;
  background-color: #FF4021;
  text-align: center;
}
@media (max-width: 767px) {
  .red-section {
    text-align: left;
    padding: 0 15px;
  }
}
@media (max-width: 767px) {
  .red-section {
    padding-top: 59px;
  }
}
.red-section h1 {
  color: #fff;
  margin: 12px;
}
@media (max-width: 767px) {
  .red-section h1 {
    margin: 0;
    line-height: 53px;
  }
}
@media (max-width: 480px) {
  .red-section h1 {
    font-size: 22px;
  }
  .red-section h1 i {
    font-size: 16px;
  }
}
.red-section p {
  color: #fff;
}
@media (max-width: 767px) {
  .red-section p {
    display: none;
  }
}
/* Section list
-------------------------------------------------- */
.section-list {
  display: table;
  padding: 50px 0;
  width: 100%;
  border-bottom: 1px solid #ecedf0;
  overflow: hidden;
}
@media (max-width: 767px) {
  .section-list {
    padding: 40px 30px;
  }
}
@media (max-width: 480px) {
  .section-list {
    padding: 20px 15px;
  }
}
.section-list .list-item {
  display: table-cell;
  vertical-align: top;
}
.section-list .list-item h1 {
  text-transform: uppercase;
  text-align: center;
  margin-top: 45px;
}
.section-list .list-item h3 {
  text-align: center;
  font-style: italic;
  font-weight: normal;
  margin-top: -3px;
  margin-bottom: 15px;
}
.section-list img {
  max-width: 100%;
  margin: 20px 0 30px;
}
