/* Colors */
/* Fonts */
/* Border Radius' */
/* Screen Sizes */
.red-gradient {
  background: #c93032;
  background: linear-gradient(310deg, #C95000, #c93032);
  color: #ffffff;
  -webkit-font-smoothing: antialiased;
  text-shadow: 0.5px 0.5px 2px #b11010;
}
.red-gradient h1 {
  margin: 0;
  line-height: 1;
}
.red-gradient a:hover, .red-gradient a:focus {
  text-shadow: none;
  color: black;
}
.red-gradient a.btn-ghost {
  background: rgba(0, 0, 0, 0);
  font-size: 1.1em;
  border: 2px solid #ffffff;
  border-radius: 5px;
}
.red-gradient a.btn-ghost:hover {
  color: #ffffff;
  text-decoration: underline;
  background: rgb(159.8313253012, 38.1686746988, 39.7590361446);
}

.green-gradient {
  background: #08b55a;
  background: linear-gradient(310deg, #85bc19, #08b55a);
}

.blue-gradient {
  background: #1a85c1;
  background: linear-gradient(310deg, #0bada8, #1a85c1);
}

.purple-gradient {
  background: #8342b2;
  background: linear-gradient(310deg, #af2cc6, #8342b2);
}

main {
  max-width: 1300px;
  margin: 0 auto;
  padding: 1em;
}

.video-js {
  overflow: hidden;
}

.video-sliders h1 {
  margin: 2em 0.5em 0.5em 0;
  font-size: 2rem;
  color: #2b2b2b;
  display: inline-block;
}
@media (max-width: 767px) {
  .video-sliders h1 {
    display: block;
  }
}
.video-sliders a.view-all {
  display: inline-block;
  margin-bottom: 1em;
}

h1 {
  margin-right: auto;
}
@media (max-width: 992px) {
  h1 {
    margin-right: 0;
  }
}

.searchbar {
  width: 40%;
  max-width: 400px;
  margin-top: 1em;
}
@media (max-width: 992px) {
  .searchbar {
    max-width: none;
    width: 90%;
    margin: 0 auto;
  }
}
.searchbar input[type=search] {
  width: 80%;
}
.searchbar input[type=submit] {
  width: 15%;
}

.featured {
  padding: 2em;
  margin: 3em 0;
  display: flex;
  border: 2px solid #ececec;
  background-color: #f9f9f9;
  position: relative;
}
@media (max-width: 1200px) {
  .featured {
    flex-direction: column-reverse;
  }
}
.featured .video-description {
  padding: 0 2em 1em;
  width: 100%;
}
@media (max-width: 1200px) {
  .featured .video-description {
    padding: 0 0 1em;
  }
}
.featured .video-description h2 {
  margin-top: 0;
}
@media (max-width: 1200px) {
  .featured .video-description h2 {
    margin-top: 20px;
  }
}
.featured .caption {
  -webkit-font-smoothing: antialiased;
  position: absolute;
  left: -2px;
  top: -20px;
  clip-path: polygon(0% 0%, 100% 0, 95% 50%, 100% 100%, 0% 100%);
  -webkit-clip-path: polygon(0% 0%, 100% 0, 95% 50%, 100% 100%, 0% 100%);
  padding: 0.3em 1em 0.4em 0.5em;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-wrapper {
  width: 80%;
  max-width: 640px;
}
@media (max-width: 1200px) {
  .video-wrapper {
    width: 100%;
    margin: 0 auto;
    max-width: none;
  }
}

.slick-wrapper {
  padding: 1em 0;
}

.slider {
  width: 90%;
  margin: 10px auto;
}

.slick-dotted.slick-slider {
  margin-bottom: 20px;
}

.slick-prev:before,
.slick-next:before {
  color: #c93032;
  font-size: 35px;
}

.slick-slide {
  margin: 0 20px;
}
.slick-slide img {
  width: 100%;
}
.slick-slide h2 {
  font-size: 1em;
  margin: 10px 0 0;
}
.slick-slide p {
  color: #6c6c6c;
}

.slick-dots {
  bottom: -28px;
}
.slick-dots li button:before {
  font-size: 12px;
}
.slick-dots li.slick-active button:before {
  color: #c93032;
  border-bottom: 2px solid #c93032;
}

@media (max-width: 767px) {
  .slick-next {
    right: -13px;
  }
}
