@charset "utf-8";
/* CSS Document */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  font-size: 62.5%; 	/* 10px */
}
body {
  width: 100%;
  margin: 0;
  background-color: rgb(15,19,33);  
  font-family: "Roboto";
}
.album {
  width: 90%;
  list-style-type: none;
  display: flex;
  justify-content: space-between;
  margin-left: 80px;
  margin-right: auto;
}
.containter {
  /*	margin-top: 10px;
*/	width: 100%;
}
.mp3Content {
  width: 100%;
  margin: 0 auto;
  position: relative;
    background-color: rgb(15,19,33);  

  /*background-color: black;*/
}
.header {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: -1;
/*  background-image: linear-gradient(to right bottom, rgba(0, 0, 139, 0.8), rgba(0, 0, 139, 0.6)), url("./../img/PLT at night.jpg");*/
  background-size: cover;
}
.pkyLogo {
  position: fixed;
  display: block;
  top: 15px;
  left: 15px;
  width: 8rem;
}
.pkyText {
  position: relative;
  display: block;
  top: 15%;
  left: 10%;
  font-size: 8rem;
  color: #fff;
  z-index: 10;
}
.mp3Player__iFrame {
  position: absolute;
  top: 3rem;
  right: 4rem;
  
  width: 80vw;
  height: 100vh;	/* was 720 */
  margin: 0 auto;
  margin-right: 8vw;
  border: none;
  /*background-color: yellow;*/
}


.section-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  height: 12rem;
  overflow: hidden;
  border-top: 4px solid #222;
  margin-left: 2rem;
  margin-top: 2rem;
}
.Section-Title {
  height: 3rem;
  color: white;
  margin-left: 2rem;
	margin-top: 4rem;

  font-weight: 700;
  font-size: 3rem;
  border-top: 4px solid #222;
  padding-top: 4rem;
  padding-right: 4rem;
  justify-content: center;
}
.Section-TitleYT{
  color: white;
  font-weight: 700;
  font-size: 3rem;

}
.sect-title_img {
  /*width: 20rem;*/
  height: 100%;
  object-fit: cover;
  color: white;

}
/* ******************
Section Audio Players
*/ 

.audio-players {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30vw, 1fr));
  grid-row-gap: 2rem;
  width: 92%;
  margin: 0 auto;
 margin-top: 100vh;
  color: white;
  font-size: 3rem;
}
.song-desc {
 /*height: 20rem;*/
  width: 100%;
  margin-left: 1rem;
  margin-top: 2rem;
  /*background-color: yellow;*/
}
.song-desc h3 {
  margin-top: 1rem;
  font-size: 1.8rem;
}
.song-desc p {
  margin-top: 0.4rem;
  font-size: 1.5rem;
}
.song {
  width: calc((90vw - 40px) / 3);
  font-family: "Lato";
  background-color: black;
  height: 35vh;
  border-radius: 6px;
}
/* ******************
Section Album Players
*/ 
.album-players {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(28vw, 1fr));
  grid-row-gap: 2rem;
    grid-column-gap: 1rem;

  width: 92%;
  margin: 0 auto;
 margin-top: 6rem;
  color: white;
  font-size: 3rem;
  overflow: hidden;
}
.song-album {
  width: calc((90vw - 40px) / 3);
  font-family: "Lato";
  background-color: black;
  height: 40vh;
  overflow: hidden;
}
.album-poster {
  width: 100%;
  height: 50%;
  overflow: hidden;
  border-bottom: 5px solid #fff400;
  border-radius: 6px;
  
  /*border: 4px solid yellow;*/
}
.album-img {
  width: 100%;
  height: 100%;
  /*height: 60%;*/
  object-fit: cover;
  overflow: hidden;
  /*border: 4px solid red;*/
}
.song-album h3 {
  margin-top: 1rem;
  margin-left: 1rem;
  font-size: 1.8rem;
  color: white;
}

.song-list {
  display: flex;
  flex-flow: row;
}
.song-list p {
  margin-top: 0.4rem;
  margin-left: 0.8rem;
  font-size: 1.2rem;
  font-family: "Lato";
  /*line-height: 1rem;*/
}

.bg-video__content {
    	position: absolute;
	top: 0;
	left: 0;
	 width: 100%;
	 height: 100%;
    object-fit: cover; 
	margin: 0 auto;
  opacity: 1;

}
.arrow-container {
  display: block;
  width: 100px;
  height: 100px;
  position: absolute;
  top: 90%;
  left: 90%;
  transform: translate(-50%, -50%) rotateZ(0deg);
  z-index: 10;
}
.arrow-container:hover {
  cursor: pointer;
}
.arrow-container:hover .arrow {
  top: 50%;
}
.arrow-container:hover .arrow:before {
  transform: translate(-50%, -50%) rotateZ(-30deg);
}
.arrow-container:hover .arrow:after {
  transform: translate(-50%, -50%) rotateZ(30deg);
}

.arrow {
  position: absolute;
  left: 50%;
  transition: all 0.4s ease;
}
.arrow:before, .arrow:after {
  transition: all 0.4s ease;
  content: "";
  display: block;
  position: absolute;
  transform-origin: bottom right;
  background: #fff;
  width: 4px;
  height: 50px;
  border-radius: 10px;
  transform: translate(-50%, -50%) rotateZ(-45deg);
}
.arrow:after {
  transform-origin: bottom left;
  transform: translate(-50%, -50%) rotateZ(45deg);
}
.arrow:nth-child(1) {
  opacity: 0.3;
  top: 35%;
}
.arrow:nth-child(2) {
  opacity: 0.6;
  top: 55%;
}
.arrow:nth-child(3) {
  opacity: 0.9;
  top: 75%;
}
.video-section {
  width: 100%;  
	margin: 0 auto;
  overflow: hidden;
	height: 100vh;
  position: relative;  
  background-color: black;  
  
}

.video-content {
  	position: absolute;
	top: 10%;
	left: 0;
	 width: 100%;
	 height: 80%;
    object-fit: cover; 
	margin: 0 auto;
  opacity: 1;
  
}
