/*!
Xi Tauri v1.01
Copyright 2016 Cameron T Arrington. All rights reserved.
http://cameronarrington.com/
Licensed under the BSD License.
https://github.com/yahoo/pure/blob/master/LICENSE.md
*/

/* Colors */
:root {
  --black: #000000;
  --white: #ffffff;
  --gray: #b3b3b3;
  --yellow: #ffd96a;
}

::selection {
  color: var(--white);
    background: var(--yellow); /* WebKit/Blink Browsers */
}
::-moz-selection {
  color: var(--white);
    background: var(--yellow); /* Gecko Browsers */
}

/* Grid */
*,
*:after,
*:before {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box
}

/* Set the width of the grid */
.frame {
  width: 1120px; /* desired width plus 2x the padding. Replace with "100%" for full-width layouts */
  margin: 0 auto;
}

/* Attribute selector */
[class*='bit-'] {
  float: left;
  padding: 10px;
}

/* Clearfix */
.frame:after, {
  content: "";
  display: table;
  clear: both
}

/* Main Widths */
.bit-1  { width: 100% }
.bit-2  { width: 50% }
.bit-3  { width: 33.33%}
.bit-4  { width: 25% }
.bit-5  { width: 20% }
.bit-6  { width: 16.6666666667% }
.bit-7  { width: 14.2857142857% }
.bit-8  { width: 12.5% }
.bit-9  { width: 11.1111111111% }
.bit-10 { width: 10% }
.bit-11 { width: 9.09090909091% }
.bit-12 { width: 8.33% }
.bit-15 { width: 15% }
.bit-40 { width: 40% }
.bit-60 { width: 60% }
.bit-75 { width: 75% }
.bit-85 { width: 85% }

/*! Body */
body {
width: 100%;
overflow-x: hidden;
background-color: var(--black);
margin:0px !important;
}

h1 {
  font-family: 'Poppins', serif;
  font-weight: 700;
  font-size: 60px;
  line-height: 70px;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 24px;
}
h1 i { font-size: 34px; position: relative; margin-left: 20px; bottom: 5px; }
#listing-title { margin-bottom: 0; }
h2 {
  font-family: 'Hind', serif;
  font-weight: 400;
  font-size: 18px;
  color: var(--white);
  margin-bottom: -3px;
}
h2 i { font-size: 11px; position: relative; margin-left: 10px; bottom: 2px; }
p {
	font-family: 'Hind', sans-serif;
	font-weight: 400;
	font-size: 16px;
  line-height: 22px;
	color: var(--gray);
}
p a { text-decoration: underline; color: var(--gray); }
p a:hover { color: var(--white); }

img {
	border: none;
}
.resp_img {
	width: 100%;
}
.object-fit {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
input, text area {
	-webkit-appearance: none;
	-webkit-border-radius: 0;
}
#header {
  width: 100%;
  padding: 70px 0 100px;
  position: relative;
  z-index: 12;
}
#header [class*='bit-'],#home-intro [class*='bit-'], #page-content [class*='bit-'], #footer [class*='bit-'] { padding: 0 20px; }
#logo { height: 40px; margin-bottom: 120px; position: relative; z-index: 11; }

/* Nav */
#hamburger {
 cursor: pointer;
 display: none;
}
#close-button {
 cursor: pointer;
 display: none;
}
#menu-toggle {
 display: none; /* hide the checkbox */
}

#navigation { float: right; list-style-type: none; position: relative; }
#navigation li { display: inline; line-height: 40px; }
#navigation li a, #navigation li a:link, #navigation li a:visited {
  position: relative;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--white);
  margin: 0 10px 5px;
  letter-spacing: 1px;
  text-decoration: none;
  text-transform: uppercase;
}
#navigation li a:after{
  content: '';
  position: absolute;
  width: 0; height: 2px;
  display: block;
  margin-top: -3px;
  right: 0;
  background: var(--white);
  transition: width .2s ease;
  -webkit-transition: width .2s ease;
}
 
#navigation li a:hover:after{
  width: 100%;
  left: 0;
}
#navigation li.active a { color: var(--yellow); }
#navigation li.active a:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  display: block;
  margin-top: -3px;
  left: 0;
  background: var(--white);
}
#navigation li:last-of-type a { margin-right: 0; }
#navigation li:last-of-type a:hover ~ .listing-gif { opacity: 1; transition: all 0.5s; z-index: -1; }
#navigation li a:hover { color: var(--yellow); }

#content { width: 100%; overflow-x: hidden; }
#content .bit-1 { padding: 0; }
#page-content .frame .bit-1, #page-content .frame .bit-40, #page-content .frame .bit-40 { margin-bottom: 60px; }
#page-content p { margin-bottom: 22px; }
#page-content ul { margin-bottom: 22px; }
#page-content li {
  font-family: 'Hind', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: var(--gray);
  margin-left: 20px;
}
#page-content .frame .bit-40 .listing-button {
  position: static;
  width: 100%;
}
#posts {
  padding: 100px 0 60px;
}
#titles {
  width: calc(100% - 40px);
  margin-left: 20px;
  padding-left: 70px;
  list-style-type: none;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--white);
  letter-spacing: 1px;
  text-decoration: none;
  text-transform: uppercase;
  margin-bottom: 14px;
}
#titles li {
  display: inline-block;
}
#titles li:nth-of-type(1) {
  width: 300px;
  padding-right: 20px;
}
#titles li:nth-of-type(2) {
  width: 110px;
  padding-right: 20px;
}
#titles li:nth-of-type(3) {
  width: calc(100% - 610px);
  padding-right: 20px;
}
#titles-hr { 
    border: 0;
    height: 0;
    padding: 0 20px;
    width: calc(100% - 40px);
    position: relative;
    left: 20px;
    border-top: 2px solid #fff;
}
.listing a, .listing a:link, .listing a:visited { text-decoration: none; }
.listing [class*='bit-'] { padding: 0; }
.listing-gif {
  position: fixed;
  width: 100%;
  height: 100%;
  opacity: 0;
  left: 0;
  top: 0;
  pointer-events: none;
  z-index: 1;
  transition: all 1s;
}
.cover {
  position: relative;
  display: inline-block;
  width: 4.464286%;
  padding-bottom: 6.25%;
  background-color: gray;
  margin-right: 20px;
  margin-bottom: 0;
}
.listing-title {
  display: inline-block;
  width: 300px;
  padding-right: 20px;
  position: relative;
  bottom: 13px;
}
.listing-title a:hover > h2 { color: var(--gray); }
.listing-info {
  font-family: 'Hind', sans-serif;
  font-weight: 400;
  font-size: 12px;
  font-style: italic;
  color: var(--gray);
  line-height: 12px;
  margin-bottom: 0;
  text-transform: capitalize;
}
.genre { list-style-type: none; }
.genre li { display: inline; }
.genre li:not(:last-child):after{
    content: ", ";
}
.listing-rating {
  display: inline-block;
  width: 110px;
  padding-right: 20px;
}
.rating-container { position: absolute; top: 33px; }
.rating-container img { width: 16px; height: auto; }
.listing-review {
  display: inline-block;
  width: calc(100% - 580px);
  padding-right: 20px;
  position: relative;
  bottom: 20px;
}
.listing-button {
  position: absolute;
  top: 32px;
  display: inline-block;
  width: 90px;
  height: 40px;
  border: 2px solid var(--white);
  text-align: center;
  line-height: 36px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--white);
  letter-spacing: 1px;
  text-decoration: none;
  text-transform: uppercase;
}
.listing-button:hover{ background-color: var(--yellow); border-color: var(--yellow); color: var(--black); cursor: pointer; }
.listing-box { position: relative; z-index: 0; padding: 20px 20px 12px; background-color: #000; transition: transform .2s, box-shadow .2s; box-shadow: 0 1px 3px rgba(0,0,0,0); }
.listing-box hr { 
  border: 0;
  height: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  top: 12px;
}
.listing:hover > .listing-box { z-index: 3; transform: scale(1.05); box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22); }
.listing:hover > .listing-box hr { border-top: 1px solid rgba(0, 0, 0, 0); }
.listing:hover > .listing-gif {
  opacity: 1;
  transition: all 0.5s;
}

.quote {
  margin-bottom: 100px;
}

.listing-page-info {
  font-family: 'Hind', sans-serif;
  font-weight: 300;
  font-size: 20px;
  color: var(--gray);
  line-height: 18px;
  text-transform: capitalize;
}
.listing-page-info .genre { display: inline; }
.listing-page-info .rating-container { position: relative; display: inline; top: 2px; }
#listing-hr { 
    border: 0;
    height: 0;
    padding: 0 20px;
    width: 100%;
    border-top: 2px solid #fff;
    margin: 20px 0;
}
#listing-footer-hr { 
    border: 0;
    height: 0;
    width: 100%;
    border-top: 1px solid #333333;
    margin: 100px 0 0;
}

.videoWrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  padding-top: 25px;
  height: 0;
}
.videoWrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#submission { margin: 40px 0 60px; }

#submission input[type="text"] {
  font-family: 'Hind', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 40px;
  height: 36px;
  color: var(--white);
  border: 0;
  border-bottom: 2px solid var(--white);
  background-color: var(--black);
  margin-right: 20px;
}
#submission input[type="text"]::placeholder { color: var(--gray); }
#submission input[type="submit"] {
  display: inline-block;
  width: 90px;
  height: 40px;
  border: 2px solid var(--white);
  text-align: center;
  line-height: 36px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--white);
  background-color: var(--black);
  letter-spacing: 1px;
  text-decoration: none;
  text-transform: uppercase;
}
#submission input[type="submit"]:hover { background-color: var(--yellow); border-color: var(--yellow); color: var(--black); cursor: pointer; }

#footer p { font-size: 12px; line-height: 16px; }

/*base mobile styles - everything 100%*/
@media (max-width: 1140px) {

	.frame {
    width: 100%;
    }
}

@media (max-width: 1060px) {

  #titles, #titles-hr { display: none; }
  .cover {
  position: absolute;
  width: 50px;
  padding-bottom: 70px;
  display: inline-block;
  margin-bottom: 40px;
  }
  .listing-title {
    display: inline-block;
    position: relative;
    width: calc(100% - 200px);
    top: 0px;
    left: 70px;
    margin: -5px 0 5px;
  }
    .listing-rating {
    display: inline;
    position: relative;
    left: 70px;
    text-align: left;
    padding-right: 20px;
    }
    .rating-container { position: static; width: calc(100% - 110px);}
    .listing-review {
    display: block;
    width:  100%;
    position: static;
  }
  .listing-button {
    right: 20px;
  }
  .listing:hover > .listing-box { transform: none; box-shadow: none; }
  .listing:hover > .listing-box hr { border-top: 1px solid rgba(255, 255, 255, 0.2); }
  .listing:hover > .listing-gif, #navigation li:last-of-type a:hover ~ .listing-gif {
    opacity: 0;
  }
}

@media (max-width: 870px) {

  h1 {
  font-size: 48px;
  line-height: 54px;
  letter-spacing: 1px;
  }
  h1 i { font-size: 24px; position: relative; margin-left: 10px; bottom: 4px; }
  /* mobile nav menu */
  #hamburger {
    display: block;
    position: absolute;
    z-index: 11;
    right: 0;
    top: 67px;
    height: 50px;
    line-height: 50px;
    color: var(--white);
    width: 50px;
    font-size: 20px;
    background-color: var(--blue1);
    text-align: center;
  }
  #close-button {  
    display: none;
    position: absolute;
    z-index: 11;
    right: 0;
    top: 67px;
    height: 50px;
    line-height: 50px;
    color: var(--white);
    width: 50px;
    font-size: 20px;
    background-color: var(--blue1);
    text-align: center;
  }
  #menu-toggle:checked ~ #hamburger { display: none; }
  #menu-toggle:checked ~ #close-button { display: block; }
  #navigation {
    position: absolute;
    right: 0;
    top: 120px;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    background-color: var(--black);
    z-index: 15;
    transition: max-height 0.5s ease, opacity 0.5s;
  }
  #menu-toggle:checked ~ #navigation {
    max-height: 300%;
  }
  #navigation li { display: block; line-height: 40px; }
#navigation li a, #navigation li a:link, #navigation li a:visited {
  display: block;
  width: 100%;
  margin: 0;
  padding: 10px 20px;
  border-bottom: 1px solid #333;
  letter-spacing: 1px;
  text-decoration: none;
  text-transform: uppercase;
}
#navigation li a:after, #navigation li.active a:after {
  display: none;
}
#navigation li:last-of-type a { border-bottom: 2px solid var(--white) }

.listing-page-info { font-size: 18px; }

@media (max-width: 600px) {

  .bit-60 { width: 100%; }
  #page-content .frame .bit-40 { width: 100%; }
}
@media (max-width: 520px) {

  #logo { height: 30px; }
  #hamburger, #close-button { top: 62px; }

  #submission input[type="text"], #submission input[type="submit"] { width: 100%; }
  #submission input[type="text"] { margin-bottom: 40px; }

}

@media (max-width: 470px) {

  #logo { height: 25px; }
  #hamburger, #close-button { top: 59px; }
  .listing-title {
    width: calc(100% - 70px);
    padding-right: 0;
  }
  .listing-button {
  position: static;
  display: block;
  width: 100%;
  margin: 20px 0 8px;
  }
  .listing-page-info { font-size: 14px; }

}
