/* Styles for Product Page Customization */
/* NOTE: Do not edit the Bootstrap CSS files. */


/* General Sections */

section {
    background-color: #F0EC57;
    padding-top: 25px;
    padding-bottom: 25px;
}


body, html {
    height: 100%;
}

body {
    position: relative; 
  }
  
div > header {
    background-color: purple;
}
  
/* Nav Bar */

.nav-item:hover {
    transform: scale(1.1);
}

.nav-item {
    transition: all 1s ease 0s;
}

/* Parallax Scrolling */

.parallax { 
    background-image: url("img/parallax-img.jpg");
    height: 300px; 
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Smartphone & Tablet */

@media only screen and (max-width:749px) {
    .parallax {
     display: none;    
    }
}

/* Smartphone */

@media only screen and (min-device-width : 320px) and (max-device-width : 768px) {
    section {
        margin-top: -50px;
    }
    body {
        font-size: 1rem;
        font-weight: bold;
    }
}

/* Tablets */

@media only screen and (min-device-width : 768px) and (max-device-width : 1223px) {
    section {
        margin-top: -50px;
    }
    body {
        font-size: 1.1rem;
    }
    audio {
    width: 600px;
}
}

/* Desktop */

@media only screen and (min-width : 1224px) and (max-device-width : 1823px) {
    body {
        font-size: 1.2rem;
    }
    audio {
    width: 800px;
}
}

/* Extra Large Screens */

@media only screen and (min-width : 1824px) {
    body {
        font-size: 1.5rem;
        font-weight: bold;
    }
}

/* Watch and Listen Section */

.container > h2 {
    text-align: center;
}

.media-container {
    text-align: center;
}


.listen-audio {
    margin-top: 25px;
}

audio {
    max-width: 100%;
}

/* Testimonial Section */

.testimonial-header {
    text-align: center;
}

.img-responsive {
    max-height: 250px;
    max-width: 250px;
    margin: auto;
    border-radius: 50%;
}

.card-body {
    text-align: center;
}

/* Share & Sign Up */

ul.social-links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
     list-style: none;
     margin: 0;
     padding: 0;
     height: auto;
     width: auto;
}

.fab {
    margin-right: 25px;
    color: #ff6a00;
    transition: all 1s ease 0s;
}

.fab:hover {
    transform: scale(1.3);
    color: dodgerblue;
    opacity: .6;
}

.social {
    font-size: 3rem;
}

a[href*="mailto"] {
     width: 200px;
     -webkit-transition: -webkit-transform .8s ease-in-out;
     transition: transform .8s ease-in-out;
}

a[href*="mailto"]:hover {
     -webkit-transform: rotate(360deg);
     transform: rotate(360deg);
}

.call-to-action {
     font-weight: bold;
     animation-name: flash;
     animation-duration: 2s;
     animation-timing-function: ease-in-out;
     animation-iteration-count: infinite;
     animation-direction: alternate;
     animation-play-state: running;
}

@keyframes flash {
     from {color: white;}
     to {color: dodgerblue;}
}