.glide {
  position: relative;
  width: 100%;
  box-sizing: border-box;
}

.glide * {
  box-sizing: inherit;
}

.glide__track {
  overflow: hidden;
}

.glide__slides {
  position: relative;
  width: 100%;
  list-style: none;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  transform-style: preserve-3d;
  touch-action: pan-Y;
  overflow: hidden;
  margin: 0;
  padding: 0;
  white-space: nowrap;
  display: flex;
  flex-wrap: nowrap;
  will-change: transform;
}

.glide__slides--dragging {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.glide__slide {
  width: 100%;
  height: 100%;
  flex-shrink: 0;
  white-space: normal;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
}

.glide__slide a {
       -webkit-user-select: none;
               user-select: none;
  -webkit-user-drag: none;
  -moz-user-select: none;
   -ms-user-select: none;
}

.glide__arrows {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.glide__bullets {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.glide--rtl {
  direction: rtl;
}

.glide__arrow {
  position: absolute;
  display: block;
  top: 50%;
  z-index: 2;
  color: white;
  text-transform: uppercase;
  padding: 9px 12px;
  background-color: transparent;
  border: 2px solid rgba(255, 255, 255, .5);
  border-radius: 4px;
  box-shadow: 0 .25em .5em 0 rgba(0, 0, 0, .1);
  text-shadow: 0 .25em .5em rgba(0, 0, 0, .1);
  opacity: 1;
  cursor: pointer;
  transition: opacity 150ms ease, border 300ms ease-in-out;
  transform: translateY(-50%);
  line-height: 1;
}

.glide__arrow:focus {
  outline: none;
}

.glide__arrow:hover {
  border-color: white;
}

.glide__arrow--left {
  left: 2em;
}

.glide__arrow--right {
  right: 2em;
}

.glide__arrow--disabled {
  opacity: .33;
}

.glide__bullets {
  position: absolute;
  z-index: 2;
  bottom: 2em;
  left: 50%;
  display: inline-flex;
  list-style: none;
  transform: translateX(-50%);
}

.glide__bullet {
  background-color: rgba(255, 255, 255, .5);
  width: 9px;
  height: 9px;
  padding: 0;
  border-radius: 50%;
  border: 2px solid transparent;
  transition: all 300ms ease-in-out;
  cursor: pointer;
  line-height: 0;
  box-shadow: 0 .25em .5em 0 rgba(0, 0, 0, .1);
  margin: 0 .25em;
}

.glide__bullet:focus {
  outline: none;
}

.glide__bullet--active {
  background-color: white;
}

section.features {
  height: 90px;
}

section.features .glide-item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: none;
  flex-direction: none;
  gap: 15px;
  height: 90px;
}

section.features .glide-item * {
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #000;
}

section.features .glide-item img {
  height: 30px;
  width: auto;
}

@media only screen and (min-width: 1200px) {
  section.features .glide-item * {
    font-size: 17px;
  }

  section.features .glide-item img {
    height: 40px;
  }
}

main > .title {
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: #ff0a0a;
  text-align: center;
  margin-bottom: 10px;
}

main > .content * {
  text-align: center;
  margin-top: 10px;
}

main section#filters {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: none;
  flex-direction: none;
  padding: 0 20px;
  margin: 45px 0;
  margin-bottom: 40px;
}

main section#filters select {
  font-family: Source Sans Pro, sans-serif;
  font-weight: 300;
  font-size: 18px;
  color: #000;
  padding-left: 10px;
  width: 100%;
  height: 50px;
  outline: 0;
  border: 1px solid #a7a7a7;
  border-radius: 5px;
  cursor: pointer;
  max-width: 300px;
}

main section#posts {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 40px;
  padding: 0 20px;
  margin: 40px 0;
  margin-bottom: 75px;
}

main section#posts .post {
  width: 100%;
  cursor: pointer;
  box-shadow: 0 3px 10px rgba(0, 0, 0, .2);
  transition-duration: .5s;
}

main section#posts .post:hover {
  transform: translate(-2.5px, -2.5px);
}

main section#posts .post:hover .info .title,
main section#posts .post:hover .info .content span {
  color: #223f8b;
}

main section#posts .post .img-container {
  height: 200px;
  background-position: center;
  background-size: cover;
}

main section#posts .post .info {
  background-color: #f4f4f4;
  padding: 20px;
}

main section#posts .post .info p {
  color: #000;
}

main section#posts .post .info p.title {
  color: #ff0a0a;
  font-weight: 600;
  transition-duration: .5s;
}

main section#posts .post .info .categories {
  display: flex;
  align-items: center;
  justify-content: none;
  flex-wrap: none;
  flex-direction: none;
  margin: 10px 0;
}

main section#posts .post .info .categories p {
  font-style: italic;
  padding-right: 5px;
  color: #505050;
}

main section#posts .post .info .content {
  text-align: left;
}

main section#posts .post .info .content span {
  color: #ff0a0a;
  transition-duration: .5s;
}

main section#pagination {
  text-align: center;
  padding: 0 20px;
  margin: 75px 0;
}

main section#pagination > .title {
  font-family: "Open Sans", sans-serif;
  font-weight: 300;
  font-size: 14px;
  color: #000;
}

main section#pagination .inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: none;
  flex-direction: none;
  gap: 40px;
  margin-top: 25px;
}

main section#pagination .inner p {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 500;
  font-size: 28px;
  color: #000;
}

@media only screen and (min-width: 576px) {
  main section#posts {
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 20px;
  }

  main section#pagination {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: none;
    flex-direction: none;
  }

  main section#pagination .inner {
    margin: 0;
  }
}

@media only screen and (min-width: 992px) {
  main section#posts {
    grid-template-columns: 1fr 1fr 1fr;
    grid-column-gap: 5vw;
  }
}

@media only screen and (min-width: 1200px) {
  main > .title {
    font-size: 30px;
    margin-bottom: 35px;
  }

  main > .content * {
    font-size: 16px !important;
  }

  main section#filters {
    padding: 0 100px;
    margin: 55px 0;
    margin-bottom: 35px;
  }

  main section#posts {
    grid-template-columns: 1fr 1fr 1fr;
    grid-column-gap: 2.5vw;
    padding: 0 100px;
  }

  main section#posts .post .img-container {
    height: 300px;
  }

  main section#posts .post .info {
    background-color: #f4f4f4;
    padding: 20px;
  }

  main section#posts .post .info p {
    color: #000;
  }

  main section#posts .post .info p.title {
    font-size: 18px;
  }

  main section#posts .post .info .categories {
    display: flex;
    align-items: center;
    justify-content: none;
    flex-wrap: none;
    flex-direction: none;
    margin: 10px 0;
  }

  main section#posts .post .info .categories p {
    font-style: italic;
    padding-right: 5px;
    color: #505050;
  }

  main section#posts .post .info .content {
    text-align: left;
  }

  main section#posts .post .info .content span {
    color: #ff0a0a;
  }

  main section#pagination {
    padding: 0 100px;
    margin: 110px 0;
  }

  main section#pagination > .title {
    font-size: 18px;
  }

  main section#pagination .inner {
    gap: 35px;
  }
}

@media only screen and (min-width: 1550px) {
  main section#posts {
    grid-column-gap: 5vw;
  }
}
