/* 
  Collide Kids Podcast - styles.css (cleaned)
  Changes:
   - Fixed '-moz-text-sze-adjust' -> '-moz-text-size-adjust'
   - Fixed rgba syntax for .overlay background-color
   - Added 'cursor: -webkit-grab' for wider support
   - Added visible :focus styles for accessibility
   - Whitespace normalized
*/

/*=== GLOBAL STYLES ============================*/

html,
body {
    border: 0px;
    width: 100%;
    margin: 0px;
    padding: 0px;
    line-height: 1.7;
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
}

/*--- IOS Input Reset ----*/

input, textarea {
    border-radius: 0;
    -webkit-border-radius:0px;
}

html {
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

/*=== FLEXBOX / FLOATS / CLEARFIX ================*/

/*=== HEADER =====================================*/

/*--- INDEX PAGE HEADER ---*/

.header_bg {
    transition: .3s;
}

.index-header .fixed-header {
  background-image: url("../images/header_image_1a.png");
  height: 493px;
  text-align: center;
  position: fixed;
  top: 0;
  width: 100%;
  transform: translateZ(0);
  -moz-transform: translatez(0);
  -ms-transform: translatez(0);
  -o-transform: translatez(0);
  -webkit-transform: translateZ(0);
  -webkit-font-smoothing: antialiased;
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100%;
}

.index-header .fixed-header h1 {
    margin: 0;
}

/*--- NAVIGATION ---*/

.navigation {
  position: fixed;
  top: 0;
  z-index: 99;
}

.overlay {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  background-color: rgba(57, 133, 229, 0.9);
  overflow-x: hidden;
  transition: 0.5s;
}

.overlay-content {
  position: relative;
  top: 5%;
  width: 100%;
  text-align: center;
  margin-top: 30px;
  z-index: 99;
}

.overlay a {
  cursor: -webkit-grab;
  cursor: grab;
  padding: 8px;
  text-decoration: none;
  font-size: 22px;
  color: white;
  display: block;
  transition: 0.3s;
}

.overlay a:hover, .overlay a:focus {
  color: #E7D551;
  opacity: 1;
}

.overlay .closebtn {
  position: absolute;
  top: 20px;
  right: 45px;
  font-size: 60px;
}

@media screen and (max-height: 450px) {
  .overlay a {
    font-size: 20px
  }
}

.menu-socials {
  display: flex;
  justify-content: center;
}

/*=== MAIN CONTENT ===============================*/

.display {
  display: none;
}

main {
    position:relative;
}

h2, h3 {
  text-align: center;
}

.intro-section {
  width: 335px;
  margin: 390px auto 80px auto;
  padding: 20px;
  background-color: #f8f8fa;
}

.section {
  width: 335px;
  background-color: #f8f8fa;
  margin: 0 auto 60px auto;
  padding: 20px;
}

/*--- REVIEW SECTION ---*/

/* Slideshow container */
.slideshow-container {
  position: relative;
  width: 335px;
  margin: auto;
}

/* Slides */
.mySlides {
  display: none;
  width: 100%;
  margin: auto;
  text-align: center;
}

.mySlides img {
  display: block;
  width: 100%;
  max-width: 335px;
  margin: auto;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 425px;
  width: auto;
  margin-top: -30px;
  padding: 10px;
  color: white;
  background-color: #9b148d;
  font-weight: bold;
  font-size: 20px;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  position: absolute;
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: #9b148d;
  color: white;
}

/* The dot/bullet/indicator container */
.dot-container {
    text-align: center;
    margin-top: 10px;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

/* Add a background color to the active dot/circle */
.active, .dot:hover {
  background-color: #9b148d;
}

/* Add an italic font style to all quotes */
.quote {
  font-style: italic;
  margin-top: 10px;
}

/* Add a blue color to the author */

.review-name {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 0;
}
.review-credentials {
  width: 328px;
  font-size: 18px;
  margin: 0 auto;
}

/*=== VIDEOS =============================*/

.main-image {
  display: block;
  width: 335px;
  margin: auto;
}

.iframe-container {
  margin: auto;
}

/*=== IMAGES =============================*/

#latest-episode iframe {
  height: 200px;
  width:100%;
  max-width:660px;
  overflow:hidden;
  border: none;
  border-radius:10px;
}

/*=== BUTTONS / LINKS ====================*/

.text-link {
  color: #9b148d;
}

.link-button {
    display: block;
    width: 199px;
    text-decoration: none;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    border: none;
    border-radius: 10px;
    color: white;
    background-color: #9b148d;
    padding: 20px;
    margin: 20px auto 0 auto;
}

.link-section {
    text-align: center;
    width: 335px;
    margin: 0 auto;
    padding: 10px 0 10px 0;
}

.episode-nav-links {
  text-align: center;
  font-size: 28px;
  font-weight: bold;
  color: #9b148d;
  margin: 120px 0 30px 0;
}

.episode-prev {
  text-decoration: none;
  color: white;
  background-color: #9b148d;
  padding: 10px;
  border-radius: 10px;
  margin-right: 20px;
}

.episode-next {
  text-decoration: none;
  color: white;
  background-color: #9b148d;
  padding: 10px;
  border-radius: 10px;
  margin-left: 20px;
}

/*=== FOOTER =============================*/

footer {
    text-align: center;
    padding-top: 20px;
}

footer a {
    display: block;
    color: #9b148d;
    text-decoration: none;
}

/*=== HOVER/TRANSITIONS ==================*/

.link-button:hover,
.link-section a:hover,
footer a:hover {
    opacity: 0.6;
    transition: 0.3s;
}

/* BEGIN SECOND MEDIA QUERRY HERE -----------------------------------------------------------------*/
/* media query screen=below 769px -------------------------------------------------------*/

@media (min-width: 768px)  {

.display {
    display: block;
    width: 500px;
    margin: auto;
  }

.index-header .fixed-header {
    background-image: url("../images/header_image_2a.png");
    height: 493px;
    text-align: center;
    position: fixed;
    top: 0;
    width: 100%;
    transform: translateZ(0);
    -moz-transform: translatez(0);
    -ms-transform: translatez(0);
    -o-transform: translatez(0);
    -webkit-transform: translateZ(0);
    -webkit-font-smoothing: antialiased;
    background-repeat: no-repeat;
    background-position: center top;
    background-size: 100%;
}

/*=== MAIN CONTENT =======================*/

.intro-section {
  width: 600px;
  margin-top: 280px;
}

.section {
  width: 600px;
}

}

/* BEGIN THIRD MEDIA QUERRY HERE -------------------------------------------------------------------*/
/* media query screen=below 1280px -------------------------------------------------------*/

@media (min-width: 1280px)  {

  .index-header .fixed-header {
    background-image: url("../images/header_image_2a-2.png");
    height: 493px;
    text-align: center;
    position: fixed;
    top: 0;
    width: 100%;
    transform: translateZ(0);
    -moz-transform: translatez(0);
    -ms-transform: translatez(0);
    -o-transform: translatez(0);
    -webkit-transform: translateZ(0);
    -webkit-font-smoothing: antialiased;
    background-repeat: no-repeat;
    background-position: center top;
    background-size: 100%;
}

/*=== MAIN CONTENT =======================*/

.intro-section {
    width: 800px;
    margin-top: 360px;
}

.section {
  width: 800px;
}

}
