/* CSS Variables */
:root {
  --primary-color: #b90415;
  --primary-color-hover: #d3071b;
  --secondary-color: #103063;
  --secondary-color-hover: #143f85;
  --light-color: #f4f4f4;
}
:root {
  --accent: #3D845E;
  --dark: #17191D;
  --light: #f4f4f4;
  --overlay: rgba(23,23,29,0.8);
  --ease: all 0.3s ease 0s;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #000000;
  margin: 0;
  color: rgb(0, 0, 0);
  line-height: 1.6;
}

img {
  width: 100%;
}

a {
  text-decoration: none;
  color: #000;
}

/* Section */
.section {
  padding: 2rem 0;
}

.section-head {
  font-size: 2.5rem;
  margin: 0;
}

.section h3 {
  font-size: 3rem;
}

section#entertainment {
  background: url(../img/section-bg.jpg) no-repeat bottom/cover;
  padding: 10rem 0;
}

.gift-cards {
  display: grid;
  grid-gap: 20px;
  grid-template-columns: repeat(2, 1fr);
  text-align: left;
}

/* Showcase */
#showcase {
  margin: 0;
  padding: 0;
  background: url('../img/gif_new_website_complete.gif') no-repeat center/cover;
  width: 100%;
  height: 100vh;
  position: relative;
  overflow-y: hidden;
  background-attachment: fixed;
}

#showcase .container {
  margin-top: 5vh;
}

#showcase h1 {
  font-size: 2.2rem;
  margin-bottom: 0;
}

#showcase h2 {
  font-size: 2rem;
}
#showcase img{
  width: 45%;
  cursor: pointer;
    z-index: 2;
}

/* Footer */
footer .footer-cols {
  display: grid;
  grid-gap: 20px;
  grid-template-columns: repeat(4, 1fr);
  padding: 2rem;
  text-align: left;
  font-size: 14px;
}

footer .footer-cols ul {
  list-style: none;
}

footer .footer-cols ul li:first-child {
  font-size: 1.2rem;
  padding-bottom: 0.5rem;
  border-bottom: rgb(68, 68, 68) solid 1px;
  margin-bottom: 1rem;
}

footer .footer-bottom {
  background: #ffffff;
  padding: 1rem;
}

/* Utility Classes */
.container {
  max-width: 1180px;
  text-align: center;
  margin: 0 auto;
  padding: 50px 3rem;
  color: white;
}

.lead {
  font-size: 1.3rem;
}

.text-center {
  text-align: center;
}

/* Buttons */
.btn {
  padding: 1rem;
  color: #fff;
  display: inline-block;
}

.btn-primary {
  background: var(--primary-color);
}

.btn-primary:hover {
  background: var(--primary-color-hover);
}

.btn-secondary {
  background: var(--secondary-color);
}

.btn-secondary:hover {
  background: var(--secondary-color-hover);
}

/* Text colors */
.text-primary {
  color: var(--primary-color);
}

.text-secondary {
  color: var(--secondary-color);
}

.text-light {
  color: var(--light-color);
}

.bg-light {
  background: #000000;
  color: #fff;
}

.mb {
  margin-bottom: 1rem;
}

.mt {
  margin-top: 1rem;
}

/* Navigation */
nav {
  height: 40px;
  width: 100%;
  background-color: #181818;
  color: #eee;
  position: fixed;
}
nav ul {
  padding: 0;
  margin: 0;
}
nav li {
  display: inline;
  float: left;
}
nav a {
  display: inline-block;
  width: 100px;
  text-align: center;
  text-decoration: none;
  padding: 10px 0;
  color: #eee;
  text-decoration: none;
}
nav li:hover {
  background-color: #444;
}
nav a#openup {
  display: none;
}
#tv{
  background-color: #000;
  padding: 2rem 0;
}
h1 {
  color: white;
  text-align: center;
  font-size: 2.5rem;
  margin: 0;
}
.wrapper {
  display: grid;
  grid-template-columns: repeat(3, 100%);
  overflow: hidden;
  scroll-behavior: smooth;
  background-color: black;
}
.wrapper section {
  width: 100%;
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, auto);
  margin: 20px 0;
}
.wrapper section .item {
  padding: 0 2px;
  transition: 250ms all;
}
.wrapper section .item:hover {
  margin: 0 40px;
  transform: scale(1.2);
}
.wrapper section a {
  position: absolute;
  color: #fff;
  text-decoration: none;
  font-size: 6em;
  background: #000;
  width: 80px;
  padding: 20px;
  text-align: center;
  z-index: 1;
}
.wrapper section a:nth-of-type(1) {
  top: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(-90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
}
.wrapper section a:nth-of-type(2) {
  top: 0;
  bottom: 0;
  right: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
}
.player-control {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 80px;
  height: 80px;
}

.player-control__icon {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: inline-block;

  -webkit-transition: opacity .6s ease;
  transition: opacity .6s ease;
}
.player-control__icon__tip_visible {
  opacity: 1;
}
.player-control__icon__tip {
  position: absolute;
  right: 100%;
  top: 50%;
  display: inline-block;
  font-family: Anton,Oswald,sans-serif;
  font-size: 16px;
  color: #fff;
  text-align: right;
  white-space: nowrap;
  opacity: 0;
  -webkit-transform: translate3d(0,-50%,0);
  transform: translate3d(0,-50%,0);
  -webkit-transition: opacity .6s ease;
  transition: opacity .6s ease;
}


#video{
  background: url('../img/dribbble_background.png') no-repeat center/cover;
  width: 100%;
  position: relative;
  overflow-y: hidden;
  background-attachment: fixed;
}

frame {
  position: fixed;
  text-align: left;
  z-index: 10000;
  top: 0;
  left: 0;
  display: grid;
  align-content: space-between;
  width: 100%;
  max-width: none;
  height: 100vh;
  padding: 2rem 3rem;
  pointer-events: none;
  grid-template-columns: 75% 25%;
  grid-template-rows: auto auto auto;
  grid-template-areas: 'title links' 'content content' 'github demos';
}

.frame {
  font-size: 9vw;
  text-transform: uppercase;
  font-weight: bold;
  mix-blend-mode: soft-light;
  text-align: left;
  color: #fff;
  font-family: Righteous, Arial, sans-serif;
  margin: 300px 0px;
}
.banner {
  margin: 0;
  padding: 0;
  background: url(../img/bewhy_6.png) no-repeat center/cover;
  width: 100%;
  height: 100vh;
  position: relative;
  overflow-y: hidden;
  background-attachment: fixed;
}

.home__text {
  font-weight: 900;
  font-size: 16vw;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke-width: 3px;
  -webkit-text-stroke-color: #f05447;
  top: 50%;
  width: 100%;
  position: absolute;
  text-align: center;
  transform: translateY(-50%);
}
.home__fixed {
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  will-change: transform;
  position: absolute;
}
.frame_content{
  margin: -150px 50px;
}

/*------------------
  Video Content
---------------------*/


h1{
  font-size: 48px;
  margin-bottom: 20px ;
  text-align: center;
}
p, h4{
  font-size: 28px;
}
.audio-hero-controls{
  position: fixed;
  top: 120px!important;
  right: 25px!important;
  z-index: 2;
}

button {
  font-size: 18px;
  font-weight: 700;
  color: #1b1b1b;
  min-width: 70px;
  padding: 9px 10px;
  border-radius: 5px;
  background: #ffe400;
  height: 60px;
  z-index: 10;
  cursor: pointer;
  background-repeat: no-repeat;
  position: relative;
  background: none;
  border: none;
}
button:hover{
  transform: scale(1.02);
}

#play-button{
  background-image: url('../img/audio/pause-circle-regular-36.png');
  background-repeat: no-repeat;
}
#mute{
  background-image: url('../img/audio/volume-mute-solid-36_white.png');
  background-repeat: no-repeat;
}
#play-button:active {
  background-repeat: no-repeat;
}
#mute:active {
  background-repeat: no-repeat;
}
.promo_background {
  display: grid;
  
  grid-template-areas: 
  "top_section"
  "content-section"
}
.top_section{
  grid-area: top_section;
  min-height: 770px;
  display: grid;
  grid-template-columns: 10% 1fr 10%;
  grid-template-areas: 
  ". header .";
  background: linear-gradient(var(--overlay),rgba(23, 23, 29, 0)), url(../img/website_banner.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.image_content{
  grid-area: header;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.image_content p{
  /* max-width: 570px; */
  margin-bottom: 30px;
}
.image_content button{
  width: 131px;
  padding: 12px 0;
  background-color: var(--accent);
  border: none;
  color: white;
}
.content_section{
  grid-area: content_section;
  display: grid;
  grid-template-columns: 10% 1fr 10%;
  grid-template-areas: 
  ". playlist_one .";
  margin-bottom: 60px;
}
.playlist_one {
  grid-area: playlist_one;
}

.playlist_title {
  margin: 30px 0;
}

.videos{
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-gap: 20px;
}
.video{
  height: 180px;
  grid-column-start: span 3;
  position: relative;
  transition: var(--ease);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.video:hover{
  transform: scale(1.02);
}
.video i {
  cursor: pointer;
  font-size: 60px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: var(--light);
  opacity: 0.30;
  transition: var(--ease);
}
.video i:hover{
  opacity: 1;
}
/*------------------
  AUDIO 
---------------------*/
/*---------------------
  promotion Section
-----------------------*/
#play{
  /* margin: 5vw -20vw; */
  text-align: center;
  position: relative;
}
.site-btn {
  display: inline-block;
  border: none;
  font-size: 18px;
  font-weight: 700;
  color: #1b1b1b;
  min-width: 146px;
  padding: 9px 10px;
  border-radius: 5px;
  background: #ffe400;
  cursor: pointer;
  z-index: 2;

  
}
/*------------------
  Device
---------------------*/
.hero {
  padding: 0rem;
  /* grid styles */
  display: grid;
  /* grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); */
  /* grid-template-columns: 2fr 1fr; */
  align-items: center;
}

.hero h1 {
  font-size: 3rem;
  padding-bottom: 1rem;
  margin: 2vw;
}
.logo-grid {
  position: relative;
  display: -ms-grid;
  display: grid;
  justify-items: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-grid-row-align: center;
  align-self: center;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  grid-column-gap: 2vw;
  grid-row-gap: 1vw;
  -ms-grid-columns: 3fr 2fr;
  grid-template-columns: repeat(2, 150px);
  margin: 1vw 25vw;
  cursor: pointer;
}
.device {
 
}
/*------------------
  Responsive
---------------------*/
@media (min-width: 1200px) {
	
}

@media (max-width: 1470px) {
	
}

@media (max-width: 1320px) {
	
}

@media (max-width: 1630px) {
  
}
@media (max-height: 850px){
  #showcase h2 {
    font-size: 1.0rem;
}
#showcase {
  /* height: 80vh; */
}

}
/* Medium screen : 992px. */

@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.frame_content{
    margin: -50px 50px;
    font-size: 15vw;
  }
  .top_section {
    grid-area: top_section;
    min-height: 670px;
  }

}

/* Tablet :768px. */

@media only screen and (min-width: 768px) and (max-width: 991px) {
	#section1, #section2, #section3{
    margin: -20px;
}
.top_section {
  grid-area: top_section;
  min-height: 470px;
}
#play {
  /* margin: 5vw -50vw; */
}
}
/* IPHONE LOGO :768px. */
@media only screen and (min-width: 768px) and (max-width: 1024px){
  .frame_content{
    margin: -50px 50px;
    font-size: 13vw;
  }
  #play {
    /* margin: 5vw -50vw; */
}
#showcase .container {
  margin-top: 10vh;
}
.hero {
  margin: -1rem;
  display: grid;
  /* grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); */
  /* grid-template-columns: 2fr 1fr; */
  
}
#showcase h1 {
  font-size: 2rem;
  margin-bottom: 0;
}
.logo-grid {
  grid-template-columns: repeat(2, 140px);
  margin: 1vw 30vw;
  cursor: pointer;
}
}
@media (max-width: 768px) {
  #play {
    /* margin: 5vw -15vw; */
}
}
/* Large Mobile :480px. */

@media only screen and (max-width: 767px) {
  .frame_content{
    margin: -50px 20px;
    font-size: 13vw;
  }
  
}



@media only screen and (max-width: 600px) {
  a.arrow__btn {
    display: none;
  }
  .wrapper section a {
    position: absolute;
    color: #fff;
    text-decoration: none;
    font-size: 3em;
    background: #000;
    width: px;
    margin: -25px 0px;
}


}

@media screen and (max-width: 580px) {
  .hide-on-small {
    display: none;
  }

  #showcase {
    /* height: 60vh; */
  }

  #showcase .container {
    margin-top: 15vh;
  }

  #showcase h1 {
    font-size: 3rem;
  }

  #showcase h2 {
    font-size: 1.5rem;
  }

  nav {
    height: auto;
    border-bottom: 0;
  }
  nav ul {
    display: none;
    height: auto;
  }
  nav li {
    width: 100%;
    float: left;
    position: relative;
  }
  nav a {
    text-align: left;
    width: 100%;
    text-indent: 25px;
    background: #333;
    border-bottom: 1px solid #555;
  }
  nav a:hover {
    background: #444;
  }
  nav a#openup:after {
    content: '|||';
    transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    /* IE 9 */
    -webkit-transform: rotate(-90deg);
    /* Safari and Chrome */
    width: 30px;
    height: 30px;
    display: inline-block;
    position: absolute;
    right: 5px;
    top: 20px;
  }
  nav a#openup {
    display: block;
    background-color: #333;
    width: 100%;
    position: relative;
  }
  .wrapper section {
    width: 100%;
    position: relative;
    display: grid;
    margin: 20px 0;
  }
  .banner {
    display: grid;
    /* grid-template-columns: repeat(3, 100%); */
    overflow: hidden;
    scroll-behavior: smooth;
    background-color: black;
  }
}
.cf:before,
.cf:after {
  content: '';
  display: table;
}

.cf:after {
  clear: both;
}

.cf {
  zoom: 1;
  z-index: 3;
}

@media screen and (max-width: 780px) {
  .gift-cards {
    grid-template-columns: 1fr;
  }

  footer .footer-cols {
    display: none;
  }
  #showcase h1 {
    font-size: 1.5rem;
    margin-bottom: 0;
}
.section h3 {
  font-size: 2rem;
}
.hero h1 {
    font-size: 2rem;
    padding-bottom: 1rem;
    margin: 0vw;
}
.logo-grid {
  grid-template-columns: repeat(2, 140px);
  margin: 1vw 10vw;
  cursor: pointer;
}
}

@media screen and (max-height: 580px) {
  #showcase p.lead {
    /* display: none; */
  }
  .section h3 {
    font-size: 23px;
  }
  /* device section */
  .hero {
    padding: -1rem 2rem;
    display: grid;
    /* grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); */
  
}
  #showcase h1 {
    font-size: 1.7rem;
}
  .logo-grid {
    position: relative;
    display: -ms-grid;
    display: grid;
    justify-items: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-grid-row-align: center;
    align-self: center;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    grid-column-gap: 2vw;
    grid-row-gap: 1vw;
    -ms-grid-columns: 3fr 2fr;
    grid-template-columns: repeat(2, 150px);
    margin: 5vw -5vw;
    cursor: pointer;
}

}
/* Small Mobile :320px. */

@media only screen and (max-width: 479px) {
	.section h3 {
    font-size: 23px;
  }
  .top_section {
    grid-area: top_section;
    min-height: 270px;
  }
  #showcase h1 {
    font-size: 1.8rem;
}
  .logo-grid {
    
    grid-template-columns: repeat(2, 150px);
    margin: 0vw;
    cursor: pointer;
}
}
@media only screen and (max-width: 320px) {
	.section h3 {
    font-size: 23px;
  }
  #showcase {
    /* height: 70vh; */
}
#showcase h1 {
  font-size: 1.2rem;
}
#showcase h2 {
  font-size: 1.3rem;
}
.logo-grid {
  grid-template-columns: repeat(2, 100px);
  margin: 0vw;
  cursor: pointer;
}
}


/*------------------
  Responsive
---------------------*/
@media only screen and (max-width:1200px) {
  .video{
    grid-column-start: span 6;
    height: 240px;
  }
}

@media only screen and (max-width:800px) {
  .video{
    grid-column-start: span 12;
  }
}