@media only screen and (min-width: 651px){
    
body
{
    margin: 0;
    scroll-snap-type: y mandatory;
    background-color: #000000;
    overflow-x: hidden;
}

h1
{
    padding: 1.5%;
    text-align: center;
}

section
{
    height: 100vh;
    scroll-snap-align: start;
    position: relative;
}


.header
{
    height: 86vh;
    scroll-snap-align: start;
    background-image: url(../graphics/kl-skyline.png);
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: 100%;
    background-color: #FFFFFF;
}

.main-title
{
    position: absolute;
    top: 8%;
    left: 1.5%;
    height: 42vh;
    width: 42vw;
    background-image: url(../graphics/wip-black.png);
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
}

.rage-float
    {
        width: 8vw;
        height: 8vh;
        position: absolute;
        top: 3%;
        right: 2%;
        z-index: 15;
        cursor: pointer;
        background-image: url(../graphics/rage-trans.png);
        background-size: contain;
        background-position: center center;
        background-repeat: no-repeat;
    }


.yellow-bar
{
    position: absolute;
    bottom: 0;
    height: 16vh;
    width: 100vw;
    background-color: #FFCB03;
}

.icon-story
{
    height: 3vw;
    width: 15vw;
    position: absolute;
    bottom: 4.8%;
    right: 66%;
    z-index: 15;
    cursor: pointer;
    background-image: url(../graphics/article.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom;
}

.icon-photo
{
    height: 3vw;
    width: 15vw;
    position: absolute;
    bottom: 4.8%;
    right: 46%;
    z-index: 15;
    cursor: pointer;
    background-image: url(../graphics/photo.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom;
}

.icon-video
{
    height: 3vw;
    width: 30vw;
    position: absolute;
    bottom: 4.8%;
    right: 14%;
    z-index: 15;
    cursor: pointer;
    background-image: url(../graphics/play-icon.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom;
}

.description
    {
        position: absolute;
        top: 15%;
        right: 10%;
        border-left: 1.5vw solid #FFCB03;
        padding-left: 1.5%;
        font-family: "Merriweather", serif;
        font-size: 1.3vw;
        width: 45vw;
        line-height: 4.5vh;
    }
    

/*feature story*/

#feature-story
{
    background-color: white;
    
}

.swiper-container {
      width: 100vw;
      height: 100vh;
      padding: 0;
    }

.swiper-slide {
      text-align: center;
      font-size: 18px;
      background: #fff;
      padding: 0;
      /* Center slide text vertically */
      display: -webkit-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      -webkit-justify-content: center;
      justify-content: center;
      -webkit-box-align: center;
      -ms-flex-align: center;
      -webkit-align-items: center;
      align-items: center;
    }
    
.swiper-pagination-bullet {
      width: 15px;
      height: 15px;
      text-align: center;
      line-height: 20px;
      font-size: 12px;
      color:#000;
      opacity: 1;
      background: rgba(0,0,0);
    }
    
    .swiper-pagination-bullet-active {
      color:#fff;
      background: #FFCB03;
    }

.story
{
    text-align: justify;
    margin: 0% 20% 5% 20%;
    font-family: "Merriweather", serif;
    font-size: 1.2vw;
    line-height: 30px;
    font-weight: 400;
}

    
.quote
    {
        font-weight: 900;
        margin: 2.5% 0 2.5% 0;
        font-size: 1.75vw;
        border-left: 1.5vw solid #FFCB03;
        padding-left: 1.5%;
        line-height: 40px;
        
    }

.story h1
    {
        font-size: 3.5vw;
        border-bottom: 1px solid;
        text-align: center;
        padding-bottom: 1.25%;
        font-family: 'Staatliches', cursive;
        margin-top: 3.5%;
        margin-bottom: 3.5%;
    }
    
.story h2
    {
        font-family: 'Staatliches', cursive;
        margin-top: 3.5%;
        margin-bottom: 3.5%;
    }
    
.story p a
    {
        background-color: #FFCB03;
        color: #000000;
        
    }
    
audio
    {
        width: 60vw;
    }
    
.chart img
    {
        height: 80vh;
        padding-bottom: 10%;
        padding-right: 12%;
    }
    
.hint
    {
        position: absolute;
        bottom: 5%;
        height: auto;
        width: auto;
        z-index: 15;
        left: 43.5%;
        text-align: center;
        opacity: 0.78;
    }
/* Photo Essay */

#photo-essay
{
    background-color: black;
}


.accordion--home {
  margin: 0;
  padding: 0;
  width: 100%;
  background-color: #000000;
}
.accordion--home::after {
  clear: both;
  content: "";
  display: table;
}

.accordion--home li.slide {
  position: relative;
  width: calc(100%/6);
  overflow: hidden;
  float: left;
  -webkit-transition: all 1s;
  transition: all 1s;
  height: 100vh;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  
}


.accordion--home li.slide:after {
  content: "";
  display: none;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  opacity: 0;
  left: 0;
  top: 0;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
  z-index: 10;
  position: absolute;
}
.accordion--home:hover li.slide {
  width: calc(30%/5);
}
.accordion--home:hover li.slide:after {
  opacity: 1;
  display: block;
}

.accordion--home li.slide:hover {
  width: 70%;
}
.accordion--home li.slide:hover:after {
  opacity: 0;
  display: none;
}
.accordion--home .image--content {
  position: absolute;
    top: 10%;
  left: 0;
  text-align: center;
  width: 100%;
}

.accordion--home .image--content img
{
    content: "";
    width: 15vw;
  text-align: center;
  color: white;
  text-transform: uppercase;
  font-weight: bold;
  display: inline-block;
    
}

.accordion--home .image--content ul {
  margin: 0;
  padding: 0;
}
.accordion--home .image--content ul li {
  display: inline-block;
  clear: right;
}

.slide:hover .tl-content {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: all 0.75s ease 0.5s;
  transition: all 0.75s ease 0.5s;
  background: -webkit-linear-gradient(transparent, #2f2f2fc4, transparent);;
  background: linear-gradient(transparent, #2f2f2fc4, transparent);;
}

.tl-content {
  -webkit-transform: translate3d(0, 0, 0) translateY(25px);
          transform: translate3d(0, 0, 0) translateY(25px);
  position: relative;
  z-index: 1;
  text-align: center;
  /*margin: 1.618em 0;*/
  top: 71%;
  opacity: 0;
  color: #fff;
}

.tl-content p {
  font-size: 20px;
  padding: 10px 20px;
}

/* Photo Essay Content */
#title01
{
    background-image: url(../pictures/Iqbal-img.jpg);
}

#title02
{
    background-image: url(../pictures/Somraj-img.jpg);
}

#title03
{
   background-image: url(../pictures/Gina-img.jpg);
}

#title04
{
    background-image: url(../pictures/Shamsul-img.jpg);
}

#title05
{
    background-image: url(../pictures/Shweha-img.jpg);
}

#title06
{
   background-image: url(../pictures/Dinesh-img.jpg);
}

/* Video Section */

#vid-sec
{
    padding: 2% 5% 0% 5%;
}

/* Credit Section */

#cred-sec
{
    background-color: #000000;
    font-family: "Merriweather", serif;
    text-align: center;
    box-sizing: border-box;
    position: relative;
}
    
.credits {
    position: relative;
    height: 45vw;
    width: 100%;
    background-image: url(../graphics/credits.png);
    background-size: auto 90%;
    background-position: center center;
    background-attachment: scroll;
    background-repeat: no-repeat; }

    .bold
    {
        font-weight: 900;
    }
    
    .yellow
    {
        font-weight: 400;
        color: #FFCB03
    }

.trademark {
    color: #FFF;
    border-top: 0.8px solid grey;
    font-size: 0.8vw;
    text-align: center;
    padding: 0.8% 10% 0.5% 10%;
    position: absolute;
    width: 100vw;
    bottom: 0;
    }

    .trademark a {
      text-decoration: none;
      color: #FFCB03; }
    
    .trademark a img {
        width: 65px;
        height: auto;
    }
}

/* ------------------------------------------------------------------ */

@media only screen and (max-width: 650px){

body
{
    margin: 0;
    scroll-snap-type: y mandatory;
    background-color: #000000;
    overflow-x: hidden;
}


section
{
    height: 100vh;
    scroll-snap-align: start;
    position: relative;
    overflow-x: hidden;
}


.header
{
    scroll-snap-align: start;
    background-image: url(../graphics/kl-skyline.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    background-color: #FFFFFF;
    height: 100vh;
}

.main-title
{
    position: absolute;
    top: 10%;
    height: 30vh;
    width: 100vw;
    background-image: url(../graphics/wip-black.png);
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
}

.rage-float
    {
        width: 20vw;
        height: 10vh;
        position: absolute;
        right: 3%;
        z-index: 15;
        cursor: pointer;
        background-image: url(../graphics/rage-trans.png);
        background-size: contain;
        background-position: center center;
        background-repeat: no-repeat;
    }

.yellow-bar
{
    position: absolute;
    bottom: 0;
    height: 15vh;
    width: 100vw;
    background-color: #FFCB03;
}

.icon-story
{
    height: 10vw;
    width: 30vw;
    position: absolute;
    bottom: 5%;
    left: 10%;
    z-index: 15;
    cursor: pointer;
    background-image: url(../graphics/article-mobile.png);
    background-size: auto 100%;
    background-repeat: no-repeat;
    background-position: bottom left;
}

.icon-photo
{
    height: 10vw;
    width: 30vw;
    position: absolute;
    bottom: 5%;
    left: 32%;
    z-index: 15;
    cursor: pointer;
    background-image: url(../graphics/photo-mobile.png);
    background-size: auto 100%;
    background-repeat: no-repeat;
    background-position: bottom;
}

.icon-video
{
    height: 10vw;
    width: 30vw;
    position: absolute;
    bottom: 5%;
    left: 62%;
    z-index: 15;
    cursor: pointer;
    background-image: url(../graphics/play-mobile.png);
    background-size: auto 100%;
    background-repeat: no-repeat;
    background-position: bottom;
}
    
.description
    {
        position: absolute;
        bottom: 18%;
        right: 10%;
        font-family: "Merriweather", serif;
        font-size: 1.3vw;
        width: 80vw;
        font-size: 3.35vw;
        text-align: center;
    }
    
#feature-story
{
    background-color: white;
    
}

.swiper-container {
      width: 100vw;
      height: 100vh;
      padding: 0;
    }

.swiper-slide {
      text-align: center;
      font-size: 18px;
      background: #fff;
      padding: 0.15% 9.75% 0.5% 1.5%;
      /* Center slide text vertically */
      display: -webkit-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      -webkit-justify-content: center;
      justify-content: center;
      -webkit-box-align: center;
      -ms-flex-align: center;
      -webkit-align-items: center;
      align-items: center;
    }

.swiper-pagination-bullet {
      width: 10px;
      height: 10px;
      text-align: center;
      line-height: 20px;
      font-size: 12px;
      color:#000;
      opacity: 1;
      background: rgba(0,0,0);
    }
    
    .swiper-pagination-bullet-active {
      color:#fff;
      background: #FFCB03;
    }
.swiper-button-next
    {
        display: none;
    }
  
    .swiper-button-prev
    {
        display: none;
    }
    
    .hint
    {
        display: none;
    }
    
.story
{
    text-align: justify;
    font-family: "Merriweather", serif;
    font-size: 3.5vw;
    margin: 0.5% 2% 0.5% 2%;
}
    
.quote
    {
        font-weight: 900;
        margin: 2.5% 0 2.5% 0;
        font-size: 4.88vw;
        border-left: 2vw solid #FFCB03;
        padding-left: 3%;
        line-height: 22px;
        
    }

.story h1
    {
        font-size: 7vw;
        border-bottom: 1px solid;
        text-align: center;
        padding-bottom: 1.25%;
        font-family: 'Staatliches', cursive;
        margin-top: 3.5%;
        margin-bottom: 3.5%;
    }
    
.story h2
    {
        font-family: 'Staatliches', cursive;
        margin-top: 3.5%;
        margin-bottom: 3.5%;
        font-size: 5vw;
    }

.story p a
    {
        background-color: #FFCB03;
        color: #000000;
        
    }
        
    .chart img
    {
        height: 85vh;
    }
    
.helper-up
    {
        content: "";
        background-color: transparent;
        height: 30vh;
        width: 8vw;
        position: absolute;
        top: 0;
        right: 0;
        z-index: 15;
    }

.helper-down
    {
        content: "";
        background-color: transparent;
        height: 30vh;
        width: 8vw;
        position: absolute;
        right: 0;
        bottom: 0;
        z-index: 15;
    }

/* */
    
.accordion--home {
  margin: 0;
  padding: 0;
  width: 100%;
  background-color: #000000;
}

.accordion--home li.slide {
  position: relative;
  height: calc(100vh/6);
  display: block;
  overflow: hidden;
  float: left;
  -webkit-transition: all 1s;
  transition: all 1s;
  width: 100vw;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  
}


.accordion--home:hover li.slide {

}

.accordion--home .image--content {
  position: absolute;
  left: 0;
  text-align: center;
  width: 100vw;
  display: block;
}
    
.accordion--home .image--content img
{
  width: 35vw;
  height: 100%;
  text-align: center;
  text-transform: uppercase;
  font-weight: bold;
  display: block;
    
}

.accordion--home .image--content ul {
  margin: 0;
  padding: 0;
}
.accordion--home .image--content ul li {
  display: inline-block;
  clear: right;
}


    
#title01
{
    background-image: url(../pictures/Iqbal-img.jpg);
}

#title02
{
    background-image: url(../pictures/Somraj-img.jpg);
}

#title03
{
   background-image: url(../pictures/Gina-img.jpg);
}

#title04
{
    background-image: url(../pictures/Shamsul-img.jpg);
}

#title05
{
    background-image: url(../pictures/Shweha-img.jpg);
}

#title06
{
   background-image: url(../pictures/Dinesh-img.jpg);
}



#vid-sec
{
    padding-top: 3%;
    height: 35vh;
}
    
#cred-sec
{
    height: 65vh;
    background-color: #000000;
    font-family: "Merriweather", serif;
    text-align: center;
    box-sizing: border-box;
    position: relative;
}

.credits {
    position: relative;
    height: 70vw;
    width: 100%;
    background-image: url(../graphics/credits.png);
    background-size: contain;
    background-position: center center;
    background-attachment: scroll;
    background-repeat: no-repeat;
    }

.bold
    {
        font-weight: 900;
    }
    
    .yellow
    {
        font-weight: 400;
        color: #FFCB03
    }

.trademark {
    color: #FFF;
    border-top: 0.5px solid grey;
    font-size: 1.5vw;
    text-align: center;
    padding: 2% 10% 2% 10%;
    position: absolute;
    width: 100vw;
    bottom: 0;
    }

    .trademark a {
      text-decoration: none;
      color: #FFCB03; }
    
    .trademark a img {
        width: 50px;
        height: auto;
    }
    
}
