@import url("https://fonts.googleapis.com/css?family=Lato:400,700");

body {
  overflow-x: hidden;
  font-family: "Lato", sans-serif;
  color: #4a88c5;
}

.navbar {
  background: rgba(0, 0, 0, 0.6);
}
.navbar-brand img {
  height: 2rem;
}

.video-background {
  position: absolute;
  width: 100%;
  min-height: 100vh;
  background-color: rgba(108, 167, 245, 0.2);
}

#bgvid{
  background-color: rgba(108, 167, 245, 0.2) !important; 
}



.caption {
  position: absolute;
  top: 3%;
  width: 100%;
  color: white;
}
.caption h1 {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 0.2rem;
  text-shadow: 0.1rem 0.1rem 0.8rem black;
  padding-bottom: 1rem;
}
.caption h3 {
  font-size: 2rem;
  text-shadow: 0.1rem 0.1rem 0.5rem black;
  padding-bottom: 1.6rem;
}
.btn-lg {
  border-width: medium;
  border-radius: 0;
  font-size: 1.1rem;
  padding: 0.6rem 1.3rem;
}

.notimage {
  padding-top: 50px;
}

.contactpic {
  width: 103px;
  height: 14px;
  opacity: 1;
  filter: alpha(opacity=100);
  background: url(contact.png) no-repeat;
  display: inline-block;
}
.contactpic:hover {
  opacity: 0.3;
  filter: alpha(opacity=30);
}

.contactimg {
  opacity: 1;
  filter: alpha(opacity=100);
}
contactimg:hover {
  opacity: 0.3;
  filter: alpha(opacity=30);
}

/*============= AUDIO SECTION ==============*/



/* container for music player */
.containermusic {

  position: absolute;
  height: 55px;
  width: 89px;
  margin: auto;
  top: -41px;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  
  display: inline-block;
 

}

/* container for play, pause, previous track, next track, and progress bar  
.box {
  position: absolute;
  height: 50%;
  width: 103%;
  background: -webkit-linear-gradient(45deg, rgb(40, 40, 40), rgb(133, 133, 133));
  z-index: 4;
  bottom: -17%;
}
*/


/* track artist */
.song-artist {
  position: absolute;
  z-index: 4;
  color: rgb(193, 255, 6);
  font-family: 'Montserrat', sans-serif;
  font-weight: bold;
  font-size: 20px;
  bottom: 21%;
  left: 28%;
}

/* track title */
.song-title {
  position: absolute;
  z-index: 4;
  color: white;
  font-family: 'Montserrat', sans-serif;
  font-size: 17px;
  bottom: 16%;
  left: 28%;
}

/* style for play and pause images */
#play-pause {
  position: absolute;
  height: 29px;
  width: 29px;
  filter: invert(1);
  cursor: pointer;
  top: 20px;
  z-index: 4;
  font-size: 53px;
  left: 0px;
}

/* style for next and previous song images */
#next-song, #previous-song {
  position: absolute;
  height: 29px;
  width: 29px;
  filter: invert(1);
  cursor: pointer;
  top: 20px;
  left: 55px;
  font-size: 40px;
  z-index: 4;
}

/* unique style for next song image */
#next-song {
  left: 59px;
}

/* unique style for previous song image */
#previous-song {
  left: 29px;
}

.playerimg {
  position: absolute;
  top: 0px;
  z-index: 4;
  font-size: 53px;
  left: 0px;
}

/* style for current time of the track */
.currentTime {
  position: absolute;
  height: 50px;
  width: 50px;
  cursor: pointer;
  bottom: -7.5%;
  left: 17%;
  z-index: 4;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  color: white;
  align-items: center;
}

/* style for the total length of the track */
.durationTime {
  position: absolute;
  height: 50px;
  width: 50px;
  cursor: pointer;
  bottom: -1%;
  right: 11%;
  z-index: 4;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  align-items: center;
  color: rgb(193, 255, 6);
}

/* style for the progress bar */
#progress-bar {
  -webkit-appearance: none;
  appearance: none;
  position: absolute;
  z-index: 4;
  height: 5px;
  background: #000000;
  width: 160pt;
  bottom: 5%;
  border-radius: 30px;
  left: 17%;
}

/* style for the progress bar's slider thumb */
#progress-bar::-webkit-slider-thumb {
  -webkit-appearance: none;
  margin-top: -3px;
  margin-left: 0px;
  height: 10px;
  width: 7px;
  border: 0;
  background: -webkit-linear-gradient(45deg,  rgb(213, 213, 213), rgb(193, 255, 6));
  border-radius: 30px;
  cursor: pointer;
}

/* style for the progress bar's runnable track */
#progress-bar::-webkit-slider-runnable-track {
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  max-height: 5px;
  border-radius: 30px;
}

/* style to remove blue shade of the progress bar when clicked on/selected */
#progress-bar:focus {
  outline: none;
}



/*============= COURSE SECTION =============*/

.col-md-8 {
  margin: 2rem auto 8rem;
  padding-top: 2rem;
}
.col-md-8 h1 {
  font-size: 2.4rem;
}
.btn-secondary {
  border-width: medium;
  border-radius: 0;
  padding: 0.6rem 1.2rem;
  font-size: 1.2rem;
  text-transform: uppercase;
  margin: 1rem;
  border-color: #1ebba3;
  background-color: #1ebba3;
  color: white;
}
.btn-secondary:hover,
.btn-secondary:focus {
  border-color: #189582;
  background-color: #189582;
  color: white;
}

@media (max-width: 768px) {
  .caption h1 {
    font-size: 1.4rem;
    letter-spacing: 0.15rem;
    padding-bottom: 0.5rem;
  }
  .caption h3 {
    font-size: 1.1rem;
    padding-bottom: 1.2rem;
  }
  .btn-lg {
    font-size: 1rem;
    padding: 0.5rem 1rem;
  }
  .col-md-8 {
    font-size: 1.7rem;
  }

  #logo-img {
    padding-top: 30px;
  }

  .notimage {
    padding-top: 50px;
  }

  .containermusic {
    top: 20px;
  }
}

/*============ BOOTSTRAP BREAK POINTS:

Extra small (xs) devices (portrait phones, less than 576px)
No media query since this is the default in Bootstrap

Small (sm) devices (landscape phones, 576px and up)
@media (min-width: 576px) { ... }

Medium (md) devices (tablets, 768px and up)
@media (min-width: 768px) { ... }

Large (lg) devices (desktops, 992px and up)
@media (min-width: 992px) { ... }

Extra (xl) large devices (large desktops, 1200px and up)
@media (min-width: 1200px) { ... }

=============*/
