@import '../fonts/font.css';

/* Reset
-------------------------------------------------- */
*, *:before, *:after {
  margin: 0;
  padding: 0;
  border: 0;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, main, nav, section, summary {
  display: block;
}
ul, ol, li {
  list-style: none;
}

/* Pix
-------------------------------------------------- */
img {
  display: block;
  max-width: 100%;
}



/* Links
-------------------------------------------------- */
a {
  color: #000;
  text-decoration: none;
  transition: color .3s, background .3s, border .3s;
}
a:hover {
  color: red;
}


/* Clearfix
-------------------------------------------------- */
.cf:after {
  content: "";
  display: table;
  clear: both;
}

/* Grid System
-------------------------------------------------- */

.container, .flex-grid, .grid {
  display: flex;
  flex-flow: row wrap;
  /*justify-content: center;*/
}

.grid-item {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 100%;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
}

@media screen and (min-width: 40em) {
  .grid-item {
    padding: 10px 10px;
    -webkit-box-flex: 0 0 50%;
    -webkit-flex: 0 0 50%;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    width: 50%;
  }
}


@media screen and (min-width: 60em) {
  .grid-item {
    -webkit-box-flex: 0 0 33.3%;
    -webkit-flex: 0 0 33.3%;
    -ms-flex: 0 0 33.3%;
    flex: 0 0 33.3%;
    width: 33.3%;
  }
}


@media screen and (min-width: 75em) {
  .grid-item {
    -webkit-box-flex: 0 0 25%;
    -webkit-flex: 0 0 25%;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    width: 25%;
  }
}


@media screen and (min-width: 100em) {
  .grid-item {
    -webkit-box-flex: 0 0 20%;
    -webkit-flex: 0 0 20%;
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    width: 20%;
  }
}

/* Site
-------------------------------------------------- */
html {
  height: 100%;
  font-family: 'FuturaStd', sans-serif;
  font-weight: 300;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}
body {
  margin: 0 auto;
  font-size: 1em;
  line-height: 1.65em;
  /*padding: 0 1.5em 1.5em;*/
  padding: 0 0 1.5em 0;
  /*max-width: 50em;*/
  background: #fff;
  color: #222;
  text-align: center;
}


.home:after {
  content: '';
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 1;
  visibility: visible;
  background: #000;
  transition: 1.5s ease .25s;
  z-index: 9;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
}

.is-ready.home:after {
  opacity: 0;
  visibility: hidden;
}

h1, h2, h3, h4, .logo, nav a {
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Header
-------------------------------------------------- */
.header {
  margin-bottom: 1.5em;
  display: flex;
  justify-content: space-between;
}
.logo {
  display: block;
  width: 75%;
  margin: 2em auto .25em 10px;
  text-align: left;
  z-index: 1001;
  font-size: .85rem;
  font-weight: 500;
  position: relative;
}
.logo img {
  margin: 0 auto 0;
  position: relative;
  top: -.6em;
  width: 33em;
  display: block;
}
.logo span {
  margin: 0 auto 0;
  position: relative;
  top: -1em;
  width: 30em;
  display: block;
}

.logo svg {
  width: 100%;
}

.logo:hover svg {
  fill: red;
}

.logo-img use {
  width: 100%;
  fill: red;
}

@media screen and (min-width: 40em) {
  .logo {
    width: auto;
    margin-left: 10px;
  }
  .logo img {
    top: -1em;
  }
}

@media screen and (min-width: 60em) {
  .logo {

  }
  .logo img {
    top: -1em;
  }
}

/* Navigation
-------------------------------------------------- */

.menu {
  text-align: center;
}
.menu a {
  display: block;
  color: #777;
}
.menu li:hover > a {
  color: red;
  text-decoration: none;
}
.menu .active {
  color: red;
}
.menu li {
  list-style: none;
}
.menu > li {
  position: relative;
}
.menu > li > a {
  padding: .35em 0;
  border-top: 1px solid #ddd;
  font-weight: 300;
}
.tmp-home .logo, .tmp-home .menu > a {
  mix-blend-mode: difference;
  color: white;
}

.menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  display: block;
  height: 100%;
  z-index: 999;
  transition: .3s ease;
  -webkit-transition: .3s ease;
  opacity: 0;
  visibility: hidden;
}

.visible .menu {
  opacity: 1;
  visibility: visible;
}

.menu > li:first-child {
  margin-top: 45%;
}

.menu > li > a {
  padding: .45em 0;
  border-top: none;
  font-size: 1rem;
}

.submenu {
  font-size: .8rem;
  padding-bottom: .5rem;
}

.submenu a {
  color: #aaa;
}

.nav-toggle {
  /*background: none;
  outline: none;
  padding: 20px;
  margin: 0 auto;
  cursor: pointer;
  z-index: 1000;
  position: relative;*/
  background: none;
  outline: none;
  padding: 20px 10px;
  margin: 0 0 0 auto;
  cursor: pointer;
  z-index: 1000;
  position: relative;
}

.nav-toggle i {
  width: 44px;
  height: 1px;
  background: #000;
  display: block;
  margin-bottom: 6px;
  border: none;
  position: relative;
  top: 0;
  transform: translateY(0px);
  transition: .3s ease;
  -webkit-transition: .3s ease;
  will-change: transform;
}

.nav-toggle.active i:nth-child(1) {
  transform: translateY(-4px);
}

.nav-toggle.active i:nth-child(3) {
  transform: translateY(4px);
}

@media screen and (min-width: 40em) {
  body {
    /*padding: 0 3em 3em;*/
    padding: 0 20px 3em;
  }
  .menu {
    margin: 0;
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    height: auto;
    background: none;
    opacity: 1;
    visibility: visible;
    float: right;
    margin-right: 10px;
    margin-top: 1.55em;
  }
  .menu > li {
    display: inline-block;
  }
  .menu > li:first-child {
    margin-top: 0;
  }
  .menu > li > a {
    padding: 0em .5em .5em;
    border: 0;
    font-size: .725rem;
  }
  .menu > li:hover .submenu {
    display: block;
  }
  .nav-toggle {
    display: none;
  }
  .submenu {
    position: absolute;
    z-index: 1;
    display: none;
    left: -10px;
    padding-bottom: 0;
    /*box-shadow: 3px 3px 0 0 rgba(0,0,0,.05);*/
  }
  .submenu:before {
    position: absolute;
    z-index: -1;
    content: '';
    top: -.5em;
    left: 0;
    border-top: .5em solid transparent;
    border-bottom: .5em solid transparent;
    border-left: .5em solid #222;
    display: none;
  }
  .submenu li {
    /*border-bottom: 1px solid #444;*/
  }
  .submenu a {
    padding: .25em 1.5em .25em;
    font-size: .85em;
    font-weight: 300;
    color: #999;
    /*background: #fafafa;*/
    background: #fff;
    text-align: left;
    white-space: nowrap;
  }
  .submenu li:hover a {
    /*background: red;*/
    color: red;
  }
  .submenu li:last-child a {
    border-radius: 0 0 10px 10px;
  }
  li:nth-child(3) .submenu {
    left: auto;
    right: -10px;
  }
  li:nth-child(3) .submenu a {
    text-align: right;
  }
}


/* Headings
-------------------------------------------------- */
h1 {
  font-size: 1.5em;
  line-height: 1.25em;
  font-weight: 400;
  margin: 2em auto 1em;
}
.story h1 {
  text-align: left;
  margin-left: 10px;
}
h2 {
  font-size: 1em;
  line-height: 1.25em;
  font-weight: 700;
  margin-bottom: .5em;
  color: black;
  text-transform: uppercase;
  letter-spacing: 1.75px;
}
h3 {
  font-size: 1.4em;
  line-height: 1.5em;
  font-weight: 400;
  margin-bottom: .5em;
}
h4 {
  font-size: 1.125em;
  font-weight: 600;
  line-height: 1.5em;
  margin-bottom: .5em;
  color: red;
}
h1 a, h2 a, h3 a, h4 a {
  color: inherit;
  border: 0 !important;
}

@media screen and (min-width: 40em) {
  h1 {
    font-size: 1.4em;
  }
}


/* Main
-------------------------------------------------- */
.main {
  padding-top: 0;
  padding-bottom: 1.5em;
  min-height: 40vh;
}
.main hr {
  margin: 3em 0;
  height: 2px;
  background: #ddd;
}
.main p,
.main figure,
.main ul,
.main ol {
  margin-bottom: 1.5em;
}
.main p {
  margin-left: 3em;
  margin-right: 3em;
}
.text img {
  margin: 1em auto;
}
.main a {
  /*border-bottom: 2px solid #ddd;*/
}
.main a:hover {
  border-color: #222;
}

@media screen and (min-width: 40em) {
  .main {
    padding-top: 1.5em;
  }
}

/* Text blocks */
.text ul,
.text ol {
  margin-left: 1em;
}

.tmp-reel .main {
  margin: 3em auto;
  padding: 10px;
}

.tmp-home .main {
  /*margin: 3em auto;
  padding: 10px;*/
  margin: -84px -20px 0;
  padding: 0;
}
@supports (object-fit: cover) {
  .tmp-home .video video {
    height: 101vh;
    object-fit: cover;
  }
}
@media(max-width: 50em) {
  .tmp-home .main {
    margin: -10px 0 0;
  }
  .tmp-home .video video {
    max-height: 80vh;
  }
}

.tmp-home .main {
}

.about .text img {
  display: none;
}

.about .main {
  margin: 3em 0;
  text-align: center;
}

.about .main p {
  margin-left: auto;
  margin-right: auto;
  color: #999;
  font-size: .9em;
}

.about .main ul {
  margin: 2em auto 2em auto;
}

.about .main li {
  color: #999;
  font-size: .9em;
}

.about .main li a {
  color: #999;
}

.about .main li a:hover {
  color: #000;
}

.clients {
  text-align: center;
  width: 100%;
  margin: 2em auto 2em 0px;
  /*justify-content: center;*/
}

.clients h5 {
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #999;
}

.about .main .clients ul {
  margin-left: 0;
}

.clients ul {
  width: 100%;
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-flow: row wrap;
}

.clients li {
  flex: 1;
  text-align: center;
}

.clients li {
  color: #999;
  font-size: .9em;
  padding: 3px 0;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 100%;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  width: 100%;
}

@media screen and (min-width: 30em) {

  .about .main {
    text-align: left;
  }

  .about .main p {
    margin-left: 10px;
  }

  .about .main ul {
    margin: 1em 0 0em 10px;
  }

  .clients {
    text-align: left;
    width: 75%;
    margin: 1em auto 2em 10px;
  }

  .clients ul {
    width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-flow: row wrap;
  }

  .clients li {
    align-items: flex-start;
    align-self: center;
    -webkit-box-flex: 0 0 50%;
    -webkit-flex: 0 0 50%;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    width: 50%;
    text-align: left;
  }
}

@media screen and (min-width: 50em) {
  .clients {
    margin: 4em 0 5em 10px;
  }
  .clients li {
    padding: 6px 0;
    -webkit-box-flex: 0 0 33.3%;
    -webkit-flex: 0 0 33.3%;
    -ms-flex: 0 0 33.3%;
    flex: 0 0 33.3%;
    width: 33.3%;
  }
}

.text table {
  margin: 6em auto 3em;
  width: 100%;
  max-width: 800px;
}

.text table td {
  padding: 18px 10px;
  color: #999;
  position: relative;
  display: block;
  width: 100%;
}

.text table td:after {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 10px;
  margin-left: -5px;
  border-bottom: 2px solid #ddd;
}

.text table tr:last-child td:after {
  display: none;
}

@media screen and (min-width: 30em) {
  .text table td {
    display: block;
  }
}

@media screen and (min-width: 60em) {
  .text table td {
    display: table-cell;
    float: none;
    width: auto;
    padding: 18px 10px;
    color: #999;
    position: relative;
  }
}

@media screen and (min-width: 100em) {
  .text table td {
    padding: 18px 10px;
    color: #999;
    position: relative;
  }
}

/* Video
-------------------------------------------------- */

.video {
  width: 100%;
  position: relative;
  margin: 0 auto 3em auto;
  padding-bottom: 56.25%; /* 16:9 */
  padding-top: 0px;
  height: 0;
}
.video--full {
  height: auto;
  padding-bottom: 0;
}
.video--full video {
  width: 100%;
  height: auto;
}

.video iframe {
  position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/* Stills
-------------------------------------------------- */

/*.stills {
  padding: 0 0;
  overflow-x: hidden;
}*/

.stills .main {
  margin-left: -20px;
  margin-right: -20px;
}

.stills-wrap {
  text-align: center;
  margin-top: -10px;
  width: 100%;
}
.stills-wrap .panel {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  margin: 50px auto;
  padding: 10px 20px;
}
.stills-wrap figure {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  -ms-flex-item-align: center;
  align-self: center;
  padding: 5px;
}
/*.stills-wrap figure.tall {
  max-width: 33%;
}*/
.stills-wrap img {
  /*max-width: 500px;*/
  width: 100%;
  height: auto;
  margin: 0 auto;
}
.stills-wrap img:hover {
  cursor: url(../images/zoom.png),url(../images/plus.cur),default;
}

.img-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255,255,255,.975);
  z-index: 9999;
  overflow: hidden;
  display: none;
}
.img-modal__frame {
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  padding: 30px;
}
.img-modal__frame .inner {
  flex: 1;
  width: 100%;
}
.img-modal__frame .inner img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 20px;
}
.img-modal__nav {
   background: none;
}
@media screen and (max-width: 50em) {
  .img-modal__frame {
    padding-left: 10px;
    padding-right: 10px;
  }
  .img-modal__frame .inner img {
    padding: 10px;
  }
  .img-modal__nav, .img-modal__nav svg {
    width: 24px;
  }
  .img-modal__nav svg {
    height: auto;
  }
}

.img-modal * {
  box-sizing: border-box;
}

.img-modal .inner {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
   padding: 0px;
   min-width: 0;
}

.hi-res {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  width: auto;
  -ms-flex-item-align: center;
  align-self: center;
  max-width: 100%; /*or width: 100%; if so the above line won't be required */
  width: 100%;
  height: auto;
}

.img-modal.show {
  opacity: 1;
  visibility: visible;
}

.img-modal .close {
  /*font-weight: 100;*/
  /*font-size: 80px;*/
  position: absolute;
  top: 30px;
  right: 30px;
  background: none;
  outline: none;
  border: none;
  cursor: pointer;
  color: #999;
  text-align: center;
}

.img-modal .close:hover {
  color: #555;
}

/* Project meta
-------------------------------------------------- */
.meta {
  margin-bottom: 1.5em;
}
.meta li {
  float: left;
  list-style: none;
  margin-right: 2em;
  color: red;
}
.meta li b {
  font-weight: 400;
  color: #000;
  padding-right: .25em;
}

/* Grid
-------------------------------------------------- */

.item {
  width: 100%;
  position: relative;
  border: 0px solid #fff;
  background-size: 100%;
  background-position: 0 0;
  transition: .2s ease;
  /*min-height: 250px;*/
}

.item:hover {
  background-position: 0 -100%;
  z-index: 99;
}

.item a:after, .frame__image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,.6);
  transition: .1s ease;
  opacity: 0;
}

.item:hover a:after, .frame__image.has-caption:hover::after {
  opacity: 1;
}

.item img {
  width: 100%;
  height: auto;
  display: block;
}

.item a {
  display: block;
  border: none;
}

.item span {
  flex: 1 0 auto;
  display: block;
}

.item .gif {
  position: absolute;
  top: 0;
  left: 0;
  transition: .25s ease;
  opacity: 0;
}

.item:hover .gif {
  opacity: 1;
}

.item h3, .frame__image h3 {
  color: #fff;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.15;
  line-height: 1.5;
  position: absolute;
  top: 50%;
  left: 5em;
  right: 5em;
  /*left: 2em;*/
  /*bottom: 1em;*/
  /*max-width: 50%;*/
  z-index: 9;
  transition: .1s ease;
  /*transform: translateY(-50%) rotate(5deg);*/
  transform: translateY(-50%);
  opacity: 0;
}

.item:hover h3, .frame__image:hover h3 {
  opacity: 1;
}

.item a:hover {
  color: #fff;
}

.tmp-project .main {
  margin: 0 10px;
}

/* Project teaser
-------------------------------------------------- */
.teaser {
  list-style: none;
}
.teaser li {
  margin-bottom: 1.5em;
  list-style: none;
}
@media screen and (min-width: 50em) {
  .teaser li {
    float: left;
    width: 30%;
    margin-left: 5%;
  }
  .teaser li:first-child {
    margin-left: 0;
  }
}

/* Story
-------------------------------------------------- */

.story .frame {
  display: flex;
}
.story button {
  background: none;
  display: none;
}
.frame__prev svg, .nav--prev svg {
  transform: scaleX(-1);
}
.frame__images {
  /*padding: 0 48px;*/
  padding: 10px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 10px;
}
.frame__image {
  display: flex;
  justify-content: center;
  align-items: center;
  /*display: none;*/
  cursor: zoom-in;
  position: relative;
}
.main .frame__image {
  margin-bottom: 0;
}
.frame__image:first-child {
  display: flex;
}
@media screen and (min-width: 50em) {
  .frame__images {
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 20px;
  }  
}



/* Posts
-------------------------------------------------- */

.posts, .single-post {
  margin: 0 auto;
  width: 90%;
  max-width: 700px;
}
.post .thumb {
  display: block;
  margin-bottom: 1.5em;
}
.posts .post {
  border-bottom: 1px solid #ccc;
  padding-bottom: 4em;
  margin: 0 auto 4em;
  display: block;
  clear: both;
}
.posts .post:last-child {
  border-bottom: 1px solid transparent;
}
.post img {
  margin: 0 auto;
  display: block;
  width: 100%;
  height: auto;
}
.post a {
  display: block;
}
.post .view {
  font-size: 13px;
  padding: .2em .75em;
  display: inline-block;
  background: #eee;
}
.post .text {
  color: #999;
}
.post .nextprev {
  margin-top: 8em;
  margin-bottom: 4em;
}
.new-work .nextprev {
  margin: 4em auto 0;
  max-width: 700px;
}

@media screen and (max-width: 40em) {
  .post .nextprev {
    margin-left: 0;
    margin-right: 0;
  }
}

/* Next/Prev nav
-------------------------------------------------- */
.nextprev, .galleries {
  margin: 3em 20px 0;
  padding: 1em 0;
}
.galleries {
  display: flex;
  justify-content: space-around;
  border-top: 1px solid #ddd;
}
.galleries a {
  padding: 1em;
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.galleries a.active {
  color: red;
}
.nextprev a {
  padding-top: 1em;
  border: 0;
  border-top: 1px solid #ddd;
  font-size: .8rem;
  width: 49.5%;
}
.nextprev .prev {
  float: left;
  text-align: left;
}
.nextprev .prev span {
  position: relative;
  display: inline-block;
  /*transform: rotateY(-180deg);*/
}
.nextprev .next {
  float: right;
  text-align: right;
}

@media screen and (min-width: 40em) {
  .nextprev {
    margin: 3em 0 0;
  }
}

/* Footer
-------------------------------------------------- */
.footer {
  padding: 4em 0 6em;
  font-size: .8em;
  color: #ccc;
}
.copyright {
  /*float: left;*/
  position: relative;
}

/* Slick
-------------------------------------------------- */

/* Slider */
.slick-slider
{
    position: relative;

    display: flex;

    -moz-box-sizing: border-box;
         box-sizing: border-box;

    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;

    display: block;
}
.slick-track:before,
.slick-track:after
{
    display: table;

    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;
    outline: none;
    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: flex;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;

    height: auto;

    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}

/* Slider */
.slick-loading .slick-list
{
    /*background: #fff url('./ajax-loader.gif') center center no-repeat;*/
}

/* Icons */
@font-face
{
    font-family: 'slick';
    font-weight: normal;
    font-style: normal;

    src: url('fonts/slick.eot');
    src: url('fonts/slick.eot?#iefix') format('embedded-opentype'), url('fonts/slick.woff') format('woff'), url('fonts/slick.ttf') format('truetype'), url('fonts/slick.svg#slick') format('svg');
}
/* Arrows */
.slick-prev,
.slick-next
{
    z-index: 99;

    position: absolute;
    top: 50%;

    display: block;

    width: 28px;
    height: 35px;
    padding: 0;
    margin-top: -20px\9; /*lte IE 8*/
    -webkit-transform: translate(0, -70%);
    -ms-transform: translate(0, -70%);
    transform: translate(0, -70%);

    cursor: pointer;
    opacity: .5;

    color: transparent;
    border: none;
    outline: none;
    background: transparent;
    background: url(../images/arrow-left.svg) no-repeat center center;
    background-size: contain;
}
.slick-next {
  background: url(../images/arrow-right.svg) no-repeat center center;
  background-size: contain;
}

.slick-prev:focus,
.slick-next:focus
{
    color: transparent;
    outline: none;
}

.slick-prev:hover,
.slick-next:hover
{
    color: transparent;
    outline: none;
    opacity: 1;
}

.slick-prev.slick-disabled,
.slick-next.slick-disabled
{
    opacity: .15;
}

.slick-prev
{
    left: 30px;
}
[dir='rtl'] .slick-prev
{
    right: -25px;
    left: auto;
}
.slick-prev:before
{
    content: '←';
}
[dir='rtl'] .slick-prev:before
{
    content: '→';
}

.slick-next
{
    right: 30px;
}
[dir='rtl'] .slick-next
{
    right: auto;
    left: 25px;
}

/* Dots */
.slick-slider
{
    margin-bottom: 30px;
}

.slick-dots
{
    position: absolute;
    bottom: -45px;

    display: block;

    width: 100%;
    padding: 0;

    list-style: none;

    text-align: center;
}
.slick-dots li
{
    position: relative;

    display: inline-block;

    width: 20px;
    height: 20px;
    margin: 0 5px;
    padding: 0;

    cursor: pointer;
}
.slick-dots li button
{
    font-size: 0;
    line-height: 0;

    display: block;

    width: 20px;
    height: 20px;
    padding: 5px;

    cursor: pointer;

    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}
.slick-dots li button:hover,
.slick-dots li button:focus
{
    outline: none;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before
{
    opacity: 1;
}
.slick-dots li button:before
{
    font-family: 'slick';
    font-size: 6px;
    line-height: 20px;

    position: absolute;
    top: 0;
    left: 0;

    width: 20px;
    height: 20px;

    content: '•';
    text-align: center;

    opacity: .25;
    color: black;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before
{
    opacity: .75;
    color: black;
}

@media screen and (min-width: 40em) {

  .slick-prev,
  .slick-next
  {
      top: 50%;
      width: 28px;
      height: 35px;
      padding: 0;
      margin-top: -20px\9; /*lte IE 8*/
      -webkit-transform: translate(0, -100%);
      -ms-transform: translate(0, -100%);
      transform: translate(0, -100%);
  }

}
