body {
  font-family: "Raleway", sans-serif;
  overflow-x: hidden;
}

::selection {
  background: #fff04d;
}

.wrapper {
  max-width: 1230px;
  margin: 5% auto;
}

/* Banner ===================================================================== */
.banner {
  position: relative;
  background-repeat: no-repeat;
  background-position: left top;
  height: 40vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 576px) {
  .banner {
    background-position: center top;
  }
}
.banner h1, .banner h2 {
  font-family: "Raleway", sans-serif;
  margin-top: 120px;
  color: #fff;
  font-size: 2.9rem;
  font-weight: bold;
  filter: drop-shadow(2px 1px 0px black);
  letter-spacing: 1px;
  text-align: center;
}
@media (max-width: 576px) {
  .banner h1, .banner h2 {
    margin-top: 90px;
    font-size: 2rem;
  }
}

/* Page Title ===================================================================== */
.page-title {
  max-width: 1000px;
  font-size: 18px;
  padding: 50px 0 50px 0;
  margin: 0 auto;
  text-align: center;
}
.page-title h1 {
  margin-bottom: 50px;
  position: relative;
  font-weight: 400;
  font-size: 35px;
  text-align: center;
}
.page-title h1:after {
  content: ". . .";
  display: block;
  color: #04caf7;
  font-size: 3rem;
  position: absolute;
  bottom: -35px;
  left: calc(50% - 25px);
}
.page-title h1 span {
  color: #04caf7;
}
.page-title p {
  font-weight: 200;
  font-size: 1rem;
  line-height: 2rem;
}

/* Breadcrumbs ======================================================================= */
.breadcrumbs {
  width: 100%;
  background: #f5f5f5;
  border-bottom: 1px solid #f5f5f5;
  border-top: 1px solid #f5f5f5;
}
.breadcrumbs ul {
  width: 100%;
  max-width: 1230px;
  margin: 0 auto;
}
.breadcrumbs ul li {
  position: relative;
  padding: 5px 0px 5px 30px;
  display: inline-block;
  font-size: 0.75rem;
  color: #4e8aa5;
}
.breadcrumbs ul li a {
  color: #333;
  transition: all 1s;
}
.breadcrumbs ul li a:hover {
  color: #04caf7;
}
.breadcrumbs ul li:before {
  position: absolute;
  bottom: 5px;
  right: -15px;
  content: "";
  transform: skew(-45deg, 0);
  height: 25%;
  width: 1px;
  background: #ccc;
  border-right: 1px solid #ccc;
}
.breadcrumbs ul li:after {
  position: absolute;
  top: 6px;
  right: -15px;
  content: "";
  transform: skew(45deg, 0);
  height: 25%;
  width: 1px;
  background: #ccc;
  border-right: 1px solid #ccc;
}

/* Pagination ======================================================================= */
.page-number {
  margin: 30px 0;
  text-align: center;
}
.page-number ul {
  list-style-type: none;
}
.page-number a {
  width: 30px;
  height: 30px;
  line-height: 22px;
  text-align: center;
  margin: auto 5px;
  display: inline-block;
  color: #000;
}
.page-number a li {
  position: relative;
}
.page-number a:hover {
  color: #04caf7;
}
.page-number a.page-active {
  border: 3px solid #04caf7;
  border-radius: 100%;
}
.page-number a.page-prev, .page-number a.page-next {
  border-radius: 100%;
  color: #fff;
  background-color: #04caf7;
}
.page-number a.page-prev li img {
  width: 15px;
  height: 15px;
  margin: 5px 0 0 2px;
}
.page-number a.page-next li img {
  width: 15px;
  height: 15px;
  margin: 5px 0 0 2px;
}