@charset "UTF-8";
/*
 |--------------------------------------------------------------------------
 | Table of Contents
 |--------------------------------------------------------------------------
 |
 | 1.0 - Config, Grid, Reset
 | 2.0 - Base Styles
 | 3.0 - Layouts Styles
 | 4.0 - Modules Styles
 | 5.0 - Responsive Styles
 | 6.0 - Vendors
 |
*/
/*
 |--------------------------------------------------------------------------
 | 1.0 - Config, Grid, Reset
 |--------------------------------------------------------------------------
 |
*/
/* base/config
----------------------------------------------------------------------------- */
/* Reset

   http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
----------------------------------------------------------------------------- */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

.clear:before, .clear:after {
  content: " ";
  display: table;
}

.clear:after {
  clear: both;
}

.row:before, .row:after {
  content: "";
  display: table;
}

.row:after {
  clear: both;
}

.row {
  position: relative;
  margin-left: -15px;
  margin-right: -15px;
}

.container {
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
}

.container-full {
  padding-left: 0;
  padding-right: 0;
  margin-left: auto;
  margin-right: auto;
}

@media only screen and (min-width: 740px) {
  .container, .container-full {
    width: 720px;
  }
  .container-tablet {
    width: 720px;
    padding-left: 15px;
    padding-right: 15px;
    margin-left: auto;
    margin-right: auto;
  }
  .container-full-tablet {
    width: 720px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    padding-right: 0;
  }
}

@media only screen and (min-width: 980px) {
  .container, .container-full {
    width: 960px;
  }
  .container-desktop {
    width: 960px;
    padding-left: 15px;
    padding-right: 15px;
    margin-left: auto;
    margin-right: auto;
  }
  .container-full-desktop {
    width: 960px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    padding-right: 0;
  }
}

@media only screen and (min-width: 1190px) {
  .container, .container-full {
    width: 1170px;
  }
  .container-hd {
    width: 1170px;
    padding-left: 15px;
    padding-right: 15px;
    margin-left: auto;
    margin-right: auto;
  }
  .container-full-hd {
    width: 1170px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    padding-right: 0;
  }
}

.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
.col-12 {
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  float: left;
}

.col-1 {
  width: 8.33333%;
}

.col-2 {
  width: 16.66667%;
}

.col-3 {
  width: 25%;
}

.col-4 {
  width: 33.33333%;
}

.col-5 {
  width: 41.66667%;
}

.col-6 {
  width: 50%;
}

.col-7 {
  width: 58.33333%;
}

.col-8 {
  width: 66.66667%;
}

.col-9 {
  width: 75%;
}

.col-10 {
  width: 83.33333%;
}

.col-11 {
  width: 91.66667%;
}

.col-12 {
  width: 100%;
}

.push-1 {
  left: 8.33333%;
}

.push-2 {
  left: 16.66667%;
}

.push-3 {
  left: 25%;
}

.push-4 {
  left: 33.33333%;
}

.push-5 {
  left: 41.66667%;
}

.push-6 {
  left: 50%;
}

.push-7 {
  left: 58.33333%;
}

.push-8 {
  left: 66.66667%;
}

.push-9 {
  left: 75%;
}

.push-10 {
  left: 83.33333%;
}

.push-11 {
  left: 91.66667%;
}

.pull-1 {
  left: -8.33333%;
}

.pull-2 {
  left: -16.66667%;
}

.pull-3 {
  left: -25%;
}

.pull-4 {
  left: -33.33333%;
}

.pull-5 {
  left: -41.66667%;
}

.pull-6 {
  left: -50%;
}

.pull-7 {
  left: -58.33333%;
}

.pull-8 {
  left: -66.66667%;
}

.pull-9 {
  left: -75%;
}

.pull-10 {
  left: -83.33333%;
}

.pull-11 {
  left: -91.66667%;
}

@media only screen and (min-width: 740px) {
  .col-1-tablet,
  .col-2-tablet,
  .col-3-tablet,
  .col-4-tablet,
  .col-5-tablet,
  .col-6-tablet,
  .col-7-tablet,
  .col-8-tablet,
  .col-9-tablet,
  .col-10-tablet,
  .col-11-tablet,
  .col-12-tablet {
    padding-left: 15px;
    padding-right: 15px;
    position: relative;
    float: left;
  }
  .col-1-tablet {
    width: 8.33333%;
  }
  .col-2-tablet {
    width: 16.66667%;
  }
  .col-3-tablet {
    width: 25%;
  }
  .col-4-tablet {
    width: 33.33333%;
  }
  .col-5-tablet {
    width: 41.66667%;
  }
  .col-6-tablet {
    width: 50%;
  }
  .col-7-tablet {
    width: 58.33333%;
  }
  .col-8-tablet {
    width: 66.66667%;
  }
  .col-9-tablet {
    width: 75%;
  }
  .col-10-tablet {
    width: 83.33333%;
  }
  .col-11-tablet {
    width: 91.66667%;
  }
  .col-12-tablet {
    width: 100%;
  }
  .push-1-tablet {
    left: 8.33333%;
  }
  .push-2-tablet {
    left: 16.66667%;
  }
  .push-3-tablet {
    left: 25%;
  }
  .push-4-tablet {
    left: 33.33333%;
  }
  .push-5-tablet {
    left: 41.66667%;
  }
  .push-6-tablet {
    left: 50%;
  }
  .push-7-tablet {
    left: 58.33333%;
  }
  .push-8-tablet {
    left: 66.66667%;
  }
  .push-9-tablet {
    left: 75%;
  }
  .push-10-tablet {
    left: 83.33333%;
  }
  .push-11-tablet {
    left: 91.66667%;
  }
  .pull-1-tablet {
    left: -8.33333%;
  }
  .pull-2-tablet {
    left: -16.66667%;
  }
  .pull-3-tablet {
    left: -25%;
  }
  .pull-4-tablet {
    left: -33.33333%;
  }
  .pull-5-tablet {
    left: -41.66667%;
  }
  .pull-6-tablet {
    left: -50%;
  }
  .pull-7-tablet {
    left: -58.33333%;
  }
  .pull-8-tablet {
    left: -66.66667%;
  }
  .pull-9-tablet {
    left: -75%;
  }
  .pull-10-tablet {
    left: -83.33333%;
  }
  .pull-11-tablet {
    left: -91.66667%;
  }
}

@media only screen and (min-width: 980px) {
  .col-1-desktop,
  .col-2-desktop,
  .col-3-desktop,
  .col-4-desktop,
  .col-5-desktop,
  .col-6-desktop,
  .col-7-desktop,
  .col-8-desktop,
  .col-9-desktop,
  .col-10-desktop,
  .col-11-desktop,
  .col-12-desktop {
    padding-left: 15px;
    padding-right: 15px;
    position: relative;
    float: left;
  }
  .col-1-desktop {
    width: 8.33333%;
  }
  .col-2-desktop {
    width: 16.66667%;
  }
  .col-3-desktop {
    width: 25%;
  }
  .col-4-desktop {
    width: 33.33333%;
  }
  .col-5-desktop {
    width: 41.66667%;
  }
  .col-6-desktop {
    width: 50%;
  }
  .col-7-desktop {
    width: 58.33333%;
  }
  .col-8-desktop {
    width: 66.66667%;
  }
  .col-9-desktop {
    width: 75%;
  }
  .col-10-desktop {
    width: 83.33333%;
  }
  .col-11-desktop {
    width: 91.66667%;
  }
  .col-12-desktop {
    width: 100%;
  }
  .push-1-desktop {
    left: 8.33333%;
  }
  .push-2-desktop {
    left: 16.66667%;
  }
  .push-3-desktop {
    left: 25%;
  }
  .push-4-desktop {
    left: 33.33333%;
  }
  .push-5-desktop {
    left: 41.66667%;
  }
  .push-6-desktop {
    left: 50%;
  }
  .push-7-desktop {
    left: 58.33333%;
  }
  .push-8-desktop {
    left: 66.66667%;
  }
  .push-9-desktop {
    left: 75%;
  }
  .push-10-desktop {
    left: 83.33333%;
  }
  .push-11-desktop {
    left: 91.66667%;
  }
  .pull-1-desktop {
    left: -8.33333%;
  }
  .pull-2-desktop {
    left: -16.66667%;
  }
  .pull-3-desktop {
    left: -25%;
  }
  .pull-4-desktop {
    left: -33.33333%;
  }
  .pull-5-desktop {
    left: -41.66667%;
  }
  .pull-6-desktop {
    left: -50%;
  }
  .pull-7-desktop {
    left: -58.33333%;
  }
  .pull-8-desktop {
    left: -66.66667%;
  }
  .pull-9-desktop {
    left: -75%;
  }
  .pull-10-desktop {
    left: -83.33333%;
  }
  .pull-11-desktop {
    left: -91.66667%;
  }
}

@media only screen and (min-width: 1190px) {
  .col-1-hd,
  .col-2-hd,
  .col-3-hd,
  .col-4-hd,
  .col-5-hd,
  .col-6-hd,
  .col-7-hd,
  .col-8-hd,
  .col-9-hd,
  .col-10-hd,
  .col-11-hd,
  .col-12-hd {
    padding-left: 15px;
    padding-right: 15px;
    position: relative;
    float: left;
  }
  .col-1-hd {
    width: 8.33333%;
  }
  .col-2-hd {
    width: 16.66667%;
  }
  .col-3-hd {
    width: 25%;
  }
  .col-4-hd {
    width: 33.33333%;
  }
  .col-5-hd {
    width: 41.66667%;
  }
  .col-6-hd {
    width: 50%;
  }
  .col-7-hd {
    width: 58.33333%;
  }
  .col-8-hd {
    width: 66.66667%;
  }
  .col-9-hd {
    width: 75%;
  }
  .col-10-hd {
    width: 83.33333%;
  }
  .col-11-hd {
    width: 91.66667%;
  }
  .col-12-hd {
    width: 100%;
  }
  .push-1-hd {
    left: 8.33333%;
  }
  .push-2-hd {
    left: 16.66667%;
  }
  .push-3-hd {
    left: 25%;
  }
  .push-4-hd {
    left: 33.33333%;
  }
  .push-5-hd {
    left: 41.66667%;
  }
  .push-6-hd {
    left: 50%;
  }
  .push-7-hd {
    left: 58.33333%;
  }
  .push-8-hd {
    left: 66.66667%;
  }
  .push-9-hd {
    left: 75%;
  }
  .push-10-hd {
    left: 83.33333%;
  }
  .push-11-hd {
    left: 91.66667%;
  }
  .pull-1-hd {
    left: -8.33333%;
  }
  .pull-2-hd {
    left: -16.66667%;
  }
  .pull-3-hd {
    left: -25%;
  }
  .pull-4-hd {
    left: -33.33333%;
  }
  .pull-5-hd {
    left: -41.66667%;
  }
  .pull-6-hd {
    left: -50%;
  }
  .pull-7-hd {
    left: -58.33333%;
  }
  .pull-8-hd {
    left: -66.66667%;
  }
  .pull-9-hd {
    left: -75%;
  }
  .pull-10-hd {
    left: -83.33333%;
  }
  .pull-11-hd {
    left: -91.66667%;
  }
}

/*
|--------------------------------------------------------------------------
| 2.0 - Base Styles
|--------------------------------------------------------------------------
|
*/
@font-face {
  font-family: 'Montserrat';
  src: url("../fonts/Montserrat-Light/Montserrat-Light.eot");
  src: local("\263A"), url("../fonts/Montserrat-Light/Montserrat-Light.eot#iefix") format("embedded-opentype"), url("../fonts/Montserrat-Light/Montserrat-Light.ttf") format("truetype"), url("../fonts/Montserrat-Light/Montserrat-Light.woff") format("woff"), url("../fonts/Montserrat-Light/Montserrat-Light.svg#icomoon") format("svg");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'Montserrat';
  src: url("../fonts/Montserrat-Bold/Montserrat-Bold.eot");
  src: local("\263A"), url("../fonts/Montserrat-Bold/Montserrat-Bold.eot#iefix") format("embedded-opentype"), url("../fonts/Montserrat-Bold/Montserrat-Bold.ttf") format("truetype"), url("../fonts/Montserrat-Bold/Montserrat-Bold.woff") format("woff"), url("../fonts/Montserrat-Bold/Montserrat-Bold.svg#icomoon") format("svg");
  font-weight: 600;
  font-style: normal;
}

/* Base - base
----------------------------------------------------------------------------- */
*, *:before, *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-size: 1em;
}

hr {
  border: none;
  border-bottom: 1px solid #CCC;
}

img {
  display: block;
  height: auto;
  max-width: 100%;
  margin-bottom: 10px;
}

body {
  background-color: white;
  color: #4a4a4a;
  font-family: "Montserrat", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 26px;
}

p {
  color: #4a4a4a;
  font-size: 16px;
  font-weight: 300;
  line-height: 26px;
  margin-bottom: 25px;
}

a {
  color: #d6a037;
  font-weight: 300;
  margin-bottom: 25px;
  text-decoration: none;
}

a:hover, a:focus, a:active {
  color: #a07521;
  cursor: pointer;
}

.bold,
strong,
b {
  font-weight: bold;
}

em {
  font-style: italic;
}

ul {
  padding-left: 20px;
  list-style: disc;
  margin-bottom: 20px;
}

ol {
  padding-left: 20px;
  list-style: decimal;
  margin-bottom: 20px;
}

sup {
  font-size: 0.7em;
  vertical-align: super;
}

a:hover,
.btn:hover {
  transition: all 400ms;
  outline: none;
}

body {
  font-family: "Montserrat", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 400;
  color: #333;
}

html {
  font-size: 1em;
  line-height: 1.45em;
}

h1, h2, h3, h4 {
  margin: 0em 0 0.5em;
  font-weight: 400;
  line-height: 1.44em;
}

h1 {
  font-size: 2.6179em;
}

h2 {
  font-size: 2.0581em;
}

h3 {
  font-size: 1.618em;
}

h4 {
  font-size: 1.272em;
}

h5 {
  font-size: 1em;
}

h6 {
  font-size: 0.7862em;
}

small, .font_small {
  font-size: 0.7862em;
}

h1 {
  font-weight: bold;
}

h2 {
  font-weight: bold;
}

h3 {
  font-weight: bold;
}

h4 {
  font-weight: bold;
}

h5 {
  font-weight: bold;
}

h6 {
  font-weight: bold;
}

small,
.font_small {
  font-size: 0.707em;
}

table {
  border: 1px solid #CCC;
  margin-bottom: 40px;
  width: 100%;
}

th {
  background: #f8f8f8;
  font-weight: bold;
}

th,
td {
  border: 1px solid #CCC;
  padding: 5px 10px;
}

pre {
  background: #FBFCFF;
  box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.03);
  font-family: Monaco, Consolas, monospace;
  text-align: left;
  padding: 30px 15px;
  color: #4a4a4a;
  margin: 20px 0;
  border-radius: 2px;
  border: 1px solid #96919e;
  white-space: pre-wrap;
}

code {
  padding: 2px 4px;
  font-size: 16px;
  background-color: #F0F3F5;
  border-radius: 3px;
}

/* WP helpers
----------------------------------------------------------------------------- */
.aligncenter {
  margin: 0 auto;
}

.alignright {
  float: right;
}

.alignleft {
  float: left;
}

.size-full {
  max-width: 100%;
}

/* base/helpers
----------------------------------------------------------------------------- */
.underline {
  text-decoration: underline;
}

.mb60 {
  margin-bottom: 60px;
}

.mb15 {
  margin-bottom: 10px;
}

.team {
  margin-bottom: 80px;
}

.mrl30 {
  margin: 0px 30px;
}

.mr10 {
  margin-right: 10px;
}

.mr30 {
  margin-right: 30px;
}

/* View
----------------------------------------------------------------------------- */
.mt0 {
  margin-top: 0px !important;
}

.mb0 {
  margin-bottom: 0px !important;
}

.mt30 {
  margin-top: 30px;
}

.mt60 {
  margin-top: 60px;
}

.mt150 {
  margin-top: 100px;
}

.mt40 {
  margin-top: 40px;
}

.mb40 {
  margin-bottom: 40px;
}

.mb100 {
  margin-bottom: 100px;
}

.red {
  color: red;
}

.primary {
  color: #d6a037;
}

.underline {
  text-decoration: underline;
}

.text-small {
  font-size: 18px;
  line-height: 28px;
}

.text-bold {
  font-weight: 500;
}

.tooltip {
  position: relative;
  display: inline-block;
  text-align: center;
}

.tooltip-content {
  background: #d6a037;
  position: absolute;
  bottom: 120%;
  padding: 3px 15px;
  border-radius: 3px;
  z-index: 10;
  display: none;
  left: 50%;
  margin-left: -50px;
  width: 100px;
}

.tooltip-content p {
  font-family: "Montserrat", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 400;
  color: #FFF;
  font-size: 14px;
  line-height: 20px;
  margin: 0px;
}

.tooltip-arrow {
  position: absolute;
  display: none;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
  bottom: 110%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px 5px 0;
  border-top-color: #d6a037;
}

/* View
----------------------------------------------------------------------------- */
.view {
  position: relative;
  max-width: 100%;
  height: 100%;
}

.view:hover .mask {
  background: rgba(0, 0, 0, 0.75);
  cursor: pointer;
  opacity: 1;
  transition: all 300ms;
  z-index: 2;
}

.view:hover .content {
  opacity: 1;
  z-index: 3;
  position: absolute;
  color: #FFF;
  left: 50%;
  top: 50%;
  font-size: 30px;
  margin-top: -15px;
  margin-left: -15px;
}

.view .content,
.view .mask {
  position: absolute;
  opacity: 0;
  top: 0;
  left: 0;
  background: transparent;
  width: 100%;
  height: 240px;
  z-index: 1;
}

.view img {
  border: 0;
  height: 240px;
  width: 100%;
  max-width: 100%;
}

/* Responsive
----------------------------------------------------------------------------- */
@media only screen and (min-width: 0px) {
  .view img,
  .view .mask {
    height: 170px;
  }
}

@media only screen and (min-width: 420px) {
  .view img,
  .view .mask {
    height: 280px;
  }
}

@media only screen and (min-width: 740px) {
  .view img,
  .view .mask {
    height: 140px;
  }
}

@media only screen and (min-width: 980px) {
  .view img,
  .view .mask {
    height: 190px;
  }
}

@media only screen and (min-width: 1190px) {
  .view img,
  .view .mask {
    height: 240px;
  }
}

/* Helpers
----------------------------------------------------------------------------- */
.list-unstyled {
  list-style: none;
  margin: 0;
  padding: 0;
}

.list-unstyled li {
  margin: 0;
  padding: 0;
}

.list-inline {
  list-style: none;
  margin: 0;
  padding: 0;
}

.list-inline li {
  margin: 0;
  padding: 0;
  display: inline-block;
}

/* Flow
----------------------------------------------------------------------------- */
.none, .hide {
  display: none;
}

.hidden {
  visibility: hidden;
}

.pull-left {
  float: left;
}

.pull-right {
  float: right;
}

/* Typography
----------------------------------------------------------------------------- */
.text-serif {
  font-family: "Lilita One", Georgia, serif;
}

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

.text-right {
  text-align: right;
}

.text-center {
  text-align: center;
}

.text-justify {
  text-align: justify;
}

/* Images
----------------------------------------------------------------------------- */
.img-responsive {
  width: 100%;
  max-width: 100%;
}

br.clearfix:after,
.clearfix:after {
  content: "";
  display: table;
  clear: both;
}

/* Flexbox
----------------------------------------------------------------------------- */
.flex {
  display: flex;
}

.flex-row {
  flex-direction: row;
}

.flex-column {
  flex-direction: column;
}

.flex-space-around {
  justify-content: space-around;
}

.flex-space-between {
  justify-content: space-between;
}

.flex-start {
  justify-content: flex-start;
}

.flex-center {
  justify-content: center;
}

.flex-end {
  justify-content: flex-end;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-nowrap {
  flex-wrap: nowrap;
}

/* Clearfix
----------------------------------------------------------------------------- */
.clearfix:after {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
  height: 0;
}

.clearfix {
  display: inline-block;
}

* html .clearfix {
  height: 1%;
}

.clearfix {
  display: block;
}

/*
|--------------------------------------------------------------------------
| 3.0 - Layouts Styles
|--------------------------------------------------------------------------
|
*/
/* layouts/master
----------------------------------------------------------------------------- */
/* Navigation
----------------------------------------------------------------------------- */
.wpsisac-slick-slider button.slick-prev,
.wpsisac-slick-slider button.slick-prev:hover,
.wpsisac-slick-slider button.slick-prev:focus {
  background: url("../img/arrow-left.png") 0 0 no-repeat !important;
}

.wpsisac-slick-slider button.slick-next,
.wpsisac-slick-slider button.slick-next:hover,
.wpsisac-slick-slider button.slick-next:focus {
  background: url("../img/arrow-right.png") 0 0 no-repeat !important;
}

.wpsisac-slick-slider button.slick-prev,
.wpsisac-slick-slider button.slick-prev:hover,
.wpsisac-slick-slider button.slick-prev:focus,
.wpsisac-slick-slider button.slick-next,
.wpsisac-slick-slider button.slick-next:hover,
.wpsisac-slick-slider button.slick-next:focus {
  background-size: 51px 51px !important;
}

.wpsisac-slick-slider button.slick-arrow:hover {
  cursor: pointer;
  opacity: 0.7;
  transition: 400ms all ease;
}

.slick-slider .slick-track {
  background: #FFF;
}

.slick-slider .slick-slide {
  max-height: 600px !important;
  background: #FFF !important;
  outline: none;
  border: none;
}

.slick-slider .slick-slide img {
  margin: 0px !important;
}

.wpsisac-slick-slider button.slick-arrow {
  height: 51px;
  width: 51px;
  opacity: 1;
  transition: 400ms all ease;
}

.slick-slider-container {
  margin-bottom: 50px;
  clear: both;
}

.hamburger {
  font-size: 40px;
  margin-top: 60px;
  display: none;
}

.hamburger .fa:hover {
  cursor: pointer;
}

.nav-mobile {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  z-index: 1000;
  height: 100vh;
  text-align: center;
  overflow-y: scroll;
  position: fixed;
  background-color: rgba(214, 160, 55, 0.85);
}

.nav-mobile__list {
  display: block;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  padding: 0px;
}

.nav-mobile__list li {
  display: block;
  margin: 25px 0px;
}

.nav-mobile__list li > a {
  color: #FFF;
  font-size: 26px;
  font-weight: 900;
  text-decoration: none;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
}

.nav-mobile__list li > a.second {
  color: #FFF;
  opacity: 0.7;
}

.nav-mobile .sub-menu {
  display: none;
}

.nav-mobile .sub-menu > li {
  display: block;
  margin: 15px 0px;
  margin-bottom: 0px;
}

.nav-mobile .sub-menu > li > a {
  font-weight: 300;
  font-size: 24px;
}

.nav {
  background-image: url("../img/Menu Background.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  text-align: center;
  height: 95px;
  margin-bottom: 30px;
}

.nav__list {
  display: block;
  margin: 0 auto;
  position: relative;
  top: 43px;
  list-style: none;
}

.nav__list li {
  display: inline-block;
  padding: 0px 20px;
  position: relative;
  list-style: none;
}

.nav__list li > a {
  color: #898479;
  font-size: 19px;
  font-weight: 300;
  text-decoration: none;
  text-transform: uppercase;
}

.nav__list li a:hover {
  color: #615d55;
}

.nav .sub-menu {
  display: none;
  position: absolute;
  background: #FFF;
  padding: 5px 10px;
  margin: 0px;
  top: 42px;
  box-shadow: 0px 2px 3px 0px rgba(0, 0, 0, 0.19);
  z-index: 100;
}

.nav .sub-menu > li {
  display: block;
}

.nav .sub-menu > li > a {
  white-space: nowrap;
  display: block;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 10px;
  margin-top: 10px;
}

.profil-img {
  margin: 20px auto;
}

.social-widget {
  text-align: center;
}

.social-widget a {
  font-size: 20px;
  margin: 0 5px;
}

.sidebar .widget ul {
  padding-left: 0px;
  margin-left: 0px;
}

#wp-calendar td, #wp-calendar th {
  font-size: 13px;
  padding: 5px;
}

.widget {
  margin-bottom: 25px;
  overflow: hidden;
}

.widget ul {
  margin-bottom: 0px;
}

.widget .search-field {
  border: 1px solid #d6a037;
  width: 100%;
  vertical-align: middle;
  padding: 5px 10px;
  border-radius: 1px;
  height: 36px;
}

.widget .screen-reader-text {
  display: none;
}

.widget .search-form > label {
  display: inline-block;
  float: left;
  width: 60%;
}

.widget .search-submit {
  font-family: "Montserrat", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  box-shadow: none;
  border: none;
  background: #d6a037;
  color: #FFF;
  display: inline-block;
  float: right;
  width: 37%;
  height: 36px;
  padding: 4px 10px;
}

.widget .search-submit:hover {
  box-shadow: none;
  background: #b58425;
}

.widget .tagcloud a {
  display: inline-block;
  background: #d6a037;
  color: #FFF;
  padding: 10px 10px;
  font-size: 14px !important;
  line-height: 14px;
  margin: 3px;
  border-radius: 1px;
}

.widget .tagcloud a:hover {
  background-color: #a07521;
}

.widget h2, .widget h4 {
  color: #898479;
  font-size: 19px;
  font-weight: 300;
  overflow: hidden;
  text-align: center;
  margin-bottom: 0px;
  clear: both;
  line-height: 55px;
}

.widget h2:before,
.widget h2:after,
.widget h4:before,
.widget h4:after {
  background-color: #ebebeb;
  content: "";
  display: inline-block;
  height: 1px;
  position: relative;
  vertical-align: middle;
  width: 50%;
}

.widget h2:before,
.widget h4:before {
  right: 0.5em;
  margin-left: -50%;
}

.widget h2:after,
.widget h4:after {
  left: 0.5em;
  margin-right: -50%;
}

.widget .textwidget {
  text-align: center;
}

.widget ul {
  list-style: disc;
  padding-left: 20px;
}

.widget ul li a {
  font-size: 16px;
  font-weight: 300;
}

.social {
  float: right;
  margin-top: 5px;
}

.social .social-icon {
  display: inline-block;
  font-size: 20px;
  background-image: url("../img/social-bg.png");
  background-repeat: no-repeat;
  width: 34px;
  height: 34p;
  text-align: center;
  line-height: 34px;
}

.site-top {
  background-image: url("../img/Top Stripe.png");
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
  height: 150px;
  width: 100%;
}

.footer {
  color: #898479;
  margin-top: 100px;
  background: #fbf9f6;
  padding: 50px 0px;
  text-align: center;
  position: relative;
}

.footer-golden {
  background-image: url("../img/Golden Texture footer.png");
  background-repeat: no-repeat;
  width: 601px;
  height: 166px;
  position: absolute;
  right: 0px;
  top: -90px;
}

/* =WordPress Core
-------------------------------------------------------------- */
.alignnone {
  margin: 5px 20px 20px 0;
}

.aligncenter,
div.aligncenter {
  display: block;
  margin: 5px auto 5px auto;
}

.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}

.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}

a img.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}

a img.alignnone {
  margin: 5px 20px 20px 0;
}

a img.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}

a img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption {
  background: #fff;
  border: 1px solid #f0f0f0;
  max-width: 96%;
  /* Image does not overflow the content area */
  padding: 5px 3px 10px;
  text-align: center;
}

.wp-caption.alignnone {
  margin: 5px 20px 20px 0;
}

.wp-caption.alignleft {
  margin: 5px 20px 20px 0;
}

.wp-caption.alignright {
  margin: 5px 0 20px 20px;
}

.wp-caption img {
  border: 0 none;
  height: auto;
  margin: 0;
  max-width: 98.5%;
  padding: 0;
  width: auto;
}

.wp-caption p.wp-caption-text {
  font-size: 11px;
  line-height: 17px;
  margin: 0;
  padding: 0 4px 5px;
}

/* Text meant only for screen readers. */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  color: #21759b;
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
  /* Above WP toolbar. */
}

.sticky {
  background-color: #f7f5f0;
  padding: 60px 30px 30px 30px;
}

.sticky .tape {
  position: absolute;
  margin-left: -92px;
  left: 50%;
  top: -25px;
}

.bypostauthor b {
  color: #d6a037;
}

.tags {
  color: #a5a4a4;
}

.bloginfo {
  font-family: "Lilita One", Georgia, serif;
}

.bloginfo a {
  color: #4a4a4a;
}

.bloginfo a:hover {
  color: #4a4a4a;
}

/* WordPress Gallery
------------------------------------------ */
.wp-caption {
  margin-bottom: 40px;
  padding-bottom: 0px;
}

.wp-caption img {
  max-width: 100%;
}

.gallery-caption {
  border: 1px solid #eaeaea;
  padding: 3px;
}

.gallery {
  margin-left: -0.5em;
  margin-right: -0.5em;
  margin-bottom: 30px;
}

.gallery:after {
  display: table;
  content: "";
  clear: both;
}

.gallery-item {
  margin: 0;
  float: left;
  padding: 0.5em;
}

.gallery-item img {
  width: 100%;
}

.gallery-columns-1 .gallery-item {
  width: 100%;
  float: none;
}

.gallery-columns-2 .gallery-item {
  width: 50%;
}

.gallery-columns-3 .gallery-item {
  width: 33.3333%;
}

.gallery-columns-4 .gallery-item {
  width: 25%;
}

.gallery-columns-5 .gallery-item {
  width: 20%;
}

.gallery-columns-6 .gallery-item {
  width: 16.6667%;
}

.gallery-columns-7 .gallery-item {
  width: 14.2857%;
}

.gallery-columns-8 .gallery-item {
  width: 12.5%;
}

.gallery-columns-9 .gallery-item {
  width: 11.1111%;
}

.gallery-columns-2 .gallery-item:nth-child(2n+1),
.gallery-columns-3 .gallery-item:nth-child(3n+1),
.gallery-columns-4 .gallery-item:nth-child(4n+1),
.gallery-columns-5 .gallery-item:nth-child(5n+1),
.gallery-columns-6 .gallery-item:nth-child(6n+1),
.gallery-columns-7 .gallery-item:nth-child(7n+1),
.gallery-columns-8 .gallery-item:nth-child(8n+1),
.gallery-columns-9 .gallery-item:nth-child(9n+1) {
  clear: left;
}

/* Start
----------------------------------------------------------------------------- */
.logo {
  margin-top: 40px;
  margin-bottom: 10px;
  text-align: center;
}

.logo img {
  display: inline-block;
  max-width: 100%;
}

.logo .logo-title {
  color: #c1c1c1;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  text-align: center;
  letter-spacing: 3px;
}

.old-posts {
  float: left;
}

.new-posts {
  float: right;
}

.post__header .page-title {
  font-family: "Lilita One", Georgia, serif;
  margin-bottom: 0px;
  line-height: 1.3em;
  margin-bottom: -25px;
  font-weight: 400;
}

.post {
  margin-bottom: 65px;
}

.post__cat {
  font-family: "Lilita One", Georgia, serif;
  display: inline-block;
  background: #EFEED5;
  padding: 10px 15px;
  font-size: 22px;
  color: #c784c9;
  line-height: 30px;
  font-weight: 400;
  margin-bottom: 40px;
  margin-right: 10px;
}

.post__img img {
  max-width: 100%;
  height: auto;
  opacity: 1;
  transition: 600ms all ease;
}

.post__img a img:hover {
  opacity: 0.7;
  transition: 600ms all ease;
}

.post__title {
  font-family: "Lilita One", Georgia, serif;
  font-size: 28px;
  line-height: 46px;
}

.post__title a {
  color: #4a4a4a;
}

.post__title a:hover {
  color: #d6a037;
}

.post__subtitle {
  margin-bottom: 20px;
  margin-left: 30px;
}

.post__text {
  margin: 30px 0px;
}

.post .asterisk {
  margin-right: 13px;
  display: inline-block;
  margin-bottom: 0px;
}

.asterisk {
  margin-right: 13px;
  display: inline-block;
  margin-bottom: 0px;
}

.separator {
  height: 1px;
  margin: 50px 0px;
}

.grey {
  color: #a5a4a4;
}

.box {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 40px 5px;
  margin-bottom: 10px;
  width: 100%;
  text-align: center;
}

.box .btn {
  padding: 10px 50px;
  font-weight: 900;
}

.box__1 {
  background-image: url("../img/banner1.jpg");
}

.box__2 {
  background-image: url("../img/banner2.jpg");
}

.box__3 {
  background-image: url("../img/banner3.jpg");
}

/*
* Comments
*
----------------------------------------------------------------------------- */
.comment-reply-title,
.comments-title {
  font-family: "Lilita One", Georgia, serif;
  color: #898479;
  font-size: 20px;
  font-weight: normal;
}

ol.children {
  list-style: none;
  padding-left: 0px;
}

.comment-list {
  margin-bottom: 60px;
  list-style: none;
  padding-left: 0px;
}

.comment-list .comment-body {
  border-bottom: 1px solid #ededed;
  padding-bottom: 26px;
  margin-bottom: 30px;
}

.contact-form {
  margin-bottom: 30px;
}

.contact-form form {
  background-color: #fafafa;
  border-radius: 2px;
  padding: 30px;
  width: 100%;
  margin-bottom: 20px;
}

.comment {
  padding-left: 42px;
}

.comment-author img {
  position: absolute;
  left: -42px;
}

.comment-author {
  color: #4a4a4a;
  position: relative;
}

.comment-metadata a {
  color: #b5b5b5;
  font-size: 14px;
  font-weight: 300;
  line-height: 28px;
}

.comment-content p {
  margin: 10px 0px;
}

.comment .comment-reply-link {
  text-decoration: underline;
}

.comment-form {
  background-color: #fafafa;
  border-radius: 2px;
  padding: 30px;
  width: 100%;
}

.comment-form .submit {
  background-color: #d6a037;
  border: none;
  display: block;
  width: 100%;
  text-align: center;
  font-size: 16px;
  color: #FFF;
  font-family: "Montserrat", "Helvetica Neue", Helvetica, Arial, sans-serif;
  padding: 8px;
  border-radius: 2px;
  transition: 400ms all ease;
}

.comment-form .submit:hover {
  cursor: pointer;
  background-color: #b58425;
  transition: 400ms all ease;
}

.comment-form-comment {
  width: 100%;
  clear: both;
}

.comment-form-comment textarea {
  width: 100%;
}

.comment-form-email, .comment-form-url, .comment-form-author {
  box-sizing: border-box;
  float: left;
  display: inline-block;
  width: 33.3332%;
}

.comment-form-email input, .comment-form-url input, .comment-form-author input {
  width: 100%;
}

.comment-form-email {
  width: 31.332%;
  margin: 0px 1%;
}

/*
* Searchform
*
----------------------------------------------------------------------------- */
.page-content .search input[type=search].search-field {
  padding: 6px 10px;
}

.page-content .search-form label {
  display: inline-block;
  float: left;
}

.page-content .search-submit {
  background-color: #d6a037;
  border: none;
  display: inline-block;
  text-align: center;
  font-size: 16px;
  color: #FFF;
  font-family: "Montserrat", "Helvetica Neue", Helvetica, Arial, sans-serif;
  padding: 8px;
  border-radius: 2px;
  transition: 400ms all ease;
  margin-left: 10px;
}

.page-content .search-submit:hover {
  cursor: pointer;
  background-color: #b58425;
  transition: 400ms all ease;
}

.img-404 {
  display: inline-block;
  margin-top: 40px;
}

/*
* Responisve
*
----------------------------------------------------------------------------- */
@media only screen and (min-width: 0px) {
  .comment-form-email, .comment-form-url, .comment-form-author {
    width: 100%;
    margin: 0px;
    margin-bottom: 20px;
  }
}

@media only screen and (min-width: 740px) {
  .comment-form-url, .comment-form-author {
    width: 33.3332%;
  }
  .comment-form-email {
    width: 31.332%;
    margin: 0px 1%;
  }
}

/*
|--------------------------------------------------------------------------
| 4.0 - Modules Styles
|--------------------------------------------------------------------------
|
*/
/* modules/buttons
----------------------------------------------------------------------------- */
.search-submit,
.wpcf7-submit,
input[type=submit],
.btn {
  display: inline-block;
  text-decoration: none;
  white-space: normal;
  font-size: 16px;
  line-height: 20px;
  font-weight: 300;
  border-radius: 1px;
  text-decoration: none;
  padding: 10px 10px;
  outline: none;
  transition: 400ms all;
  font-family: "Montserrat", "Helvetica Neue", Helvetica, Arial, sans-serif;
  margin-bottom: 5px;
  -webkit-appearance: none;
}

.btn:hover {
  cursor: pointer;
  transition: 400ms all;
}

.btn-block {
  width: 100%;
}

.search-submit,
.wpcf7-submit,
input[type=submit],
.btn-primary {
  -webkit-appearance: none;
  border-radius: 0px !important;
  -webkit-appearance: none !important;
  border: 1px solid #d6a037;
  color: #FFF;
  background: #d6a037;
}

.search-submit:hover,
.wpcf7-submit:hover,
input[type=submit]:hover,
.btn-primary:hover {
  background-color: #b58425;
  color: #FFF;
}

.btn-secondary {
  background-color: #FFF;
  border: 3px solid #96919e;
  color: #96919e;
}

.btn-secondary:hover {
  border: 3px solid #635e6b;
  color: #635e6b;
}

.btn-round {
  border-radius: 50px;
  padding: 5px 25px;
}

.btn-green {
  background: #a2ae9e;
  color: #FFF;
}

.btn-green:hover {
  background-color: #7a8b74;
  color: #FFF;
}

.btn-yellow {
  background: #c7b382;
  color: #FFF;
}

.btn-yellow:hover {
  background-color: #ae924e;
  color: #FFF;
}

.btn-red {
  background: #d0a2a5;
  color: #FFF;
}

.btn-red:hover {
  background-color: #b66f74;
  color: #FFF;
}

/* modules/forms
----------------------------------------------------------------------------- */
/* Custom checkbox
----------------------------------------------------------------------------- */
textarea,
select,
input[type=text],
input[type=email],
input[type=url],
input[type=search],
input[type=password] {
  border: 1px solid #ffd061;
  box-shadow: none;
  border-radius: 2px;
  background-color: #ffffff;
  font-size: 16px;
  line-height: 24px;
  padding: 5px 10px;
  font-family: "Montserrat", "Helvetica Neue", Helvetica, Arial, sans-serif;
  width: 100%;
}

select {
  height: 60px;
}

select:hover,
select:focus,
textarea:hover,
input:hover,
textarea:focus,
input:focus {
  outline: none;
}

label {
  color: #898479;
  font-family: "Montserrat", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 28px;
  display: block;
}

input[type=radio],
input[type=checkbox] {
  border: none;
  background: #FFF;
  outline: none;
}

.post-password-form input[type=submit] {
  margin-top: 10px;
}

.post-password-form input[type=password] {
  width: auto;
  display: block;
}

.error,
label.error {
  color: #d81e05;
}

input[type=text].error,
input[type=url].error,
input[type=search].error,
input[type=email].error,
input[type=password].error,
select.error,
textarea.error {
  background: #FFF6F6;
  border-color: #FFD4D4;
  color: #d81e05;
}

/* modules/forms
----------------------------------------------------------------------------- */
/* Custom checkbox
----------------------------------------------------------------------------- */
textarea,
select,
input[type=text],
input[type=email],
input[type=url],
input[type=search],
input[type=password] {
  border: 1px solid #ffd061;
  box-shadow: none;
  border-radius: 2px;
  background-color: #ffffff;
  font-size: 16px;
  line-height: 24px;
  padding: 5px 10px;
  font-family: "Montserrat", "Helvetica Neue", Helvetica, Arial, sans-serif;
  width: 100%;
}

select {
  height: 60px;
}

select:hover,
select:focus,
textarea:hover,
input:hover,
textarea:focus,
input:focus {
  outline: none;
}

label {
  color: #898479;
  font-family: "Montserrat", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 28px;
  display: block;
}

input[type=radio],
input[type=checkbox] {
  border: none;
  background: #FFF;
  outline: none;
}

.post-password-form input[type=submit] {
  margin-top: 10px;
}

.post-password-form input[type=password] {
  width: auto;
  display: block;
}

.error,
label.error {
  color: #d81e05;
}

input[type=text].error,
input[type=url].error,
input[type=search].error,
input[type=email].error,
input[type=password].error,
select.error,
textarea.error {
  background: #FFF6F6;
  border-color: #FFD4D4;
  color: #d81e05;
}

/* Mobile menu
----------------------------------------------------------------------------- */
.hamburger-menu {
  position: absolute;
  top: 45px;
  right: 10px;
}

.mobile-menu {
  background: #2D2D2D;
  width: 100vw;
  height: 100vh;
  overflow-x: scroll;
  position: fixed;
  z-index: 9001;
  display: none;
}

.mobile-menu__close {
  position: absolute;
  top: 45px;
  right: 30px;
  font-size: 45px;
  color: #7b7978;
  cursor: pointer;
}

.mobile-menu__nav {
  text-align: center;
  margin-bottom: 60px;
}

.mobile-menu__nav li {
  display: block;
  padding: 0 20px;
  margin-top: 35px;
}

.mobile-menu__nav a {
  color: #d6a037;
  font-size: 26px;
  font-weight: 900;
  text-decoration: none;
}

.mobile-menu__nav a:hover {
  color: #d6a037;
}

.mobile-menu__nav small {
  display: block;
  color: #797979;
  font-size: 18px;
  font-weight: 300;
}

/*
|--------------------------------------------------------------------------
| 5.0 - Responsive styles
|--------------------------------------------------------------------------
|
*/
/* Responsive
----------------------------------------------------------------------------- */
/* Responsive Typography
----------------------------------------------------------------------------- */
/* Responsive
----------------------------------------------------------------------------- */
@media only screen and (min-width: 0px) {
  .footer-golden,
  .nav {
    display: none;
  }
  .hamburger {
    display: block;
  }
}

@media only screen and (min-width: 740px) {
  .footer-golden {
    display: block;
  }
  .nav {
    display: block;
  }
  .nav__list {
    top: 40px;
  }
  .nav__list li > a {
    font-size: 11px;
  }
  .hamburger {
    display: none;
  }
  #wp-calendar td, #wp-calendar th {
    font-size: 11px;
    padding: 5px 3px;
  }
}

@media only screen and (min-width: 980px) {
  #wp-calendar td, #wp-calendar th {
    font-size: 13px;
    padding: 2px 4px;
  }
  .nav {
    display: block;
  }
  .nav__list li > a {
    font-size: 14px;
  }
}

@media only screen and (min-width: 1190px) {
  .nav {
    display: block;
  }
  .nav__list li > a {
    font-size: 16px;
  }
}

@media only screen and (min-width: 1440px) {
  .nav {
    display: block;
  }
  .nav__list li > a {
    font-size: 19px;
  }
}

/* Responsive
----------------------------------------------------------------------------- */
@media only screen and (min-width: 0px) {
  .post__subtitle {
    margin-left: 0px;
  }
}

@media only screen and (min-width: 740px) {
  .post__subtitle {
    margin-left: 30px;
  }
}

/* Responsive
----------------------------------------------------------------------------- */
@media only screen and (min-width: 0px) {
  .comment-form {
    padding: 10px;
  }
  .comment-list .comment {
    padding-left: 30px;
  }
  .comment-list .avatar {
    height: 24px;
    width: 24px;
    left: -34px;
  }
}

@media only screen and (min-width: 980px) {
  .comment-form {
    padding: 30px;
  }
  .comment-list .comment {
    padding-left: 42px;
  }
  .comment-list .avatar {
    height: 32px;
    width: 32px;
    left: -42px;
  }
}

/*
|--------------------------------------------------------------------------
| 6.0 - Vendors
|--------------------------------------------------------------------------
|
*/
/*! fancyBox v2.1.5 fancyapps.com | fancyapps.com/fancybox/#license */
.fancybox-wrap,
.fancybox-skin,
.fancybox-outer,
.fancybox-inner,
.fancybox-image,
.fancybox-wrap iframe,
.fancybox-wrap object,
.fancybox-nav,
.fancybox-nav span,
.fancybox-tmp {
  padding: 0;
  margin: 0;
  border: 0;
  outline: none;
  vertical-align: top;
}

.fancybox-wrap {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 8020;
}

.fancybox-skin {
  position: relative;
  background: #f9f9f9;
  color: #444;
  text-shadow: none;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}

.fancybox-opened {
  z-index: 8030;
}

.fancybox-opened .fancybox-skin {
  -webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.fancybox-outer, .fancybox-inner {
  position: relative;
}

.fancybox-inner {
  overflow: hidden;
}

.fancybox-type-iframe .fancybox-inner {
  -webkit-overflow-scrolling: touch;
}

.fancybox-error {
  color: #444;
  font: 14px/20px "Helvetica Neue",Helvetica,Arial,sans-serif;
  margin: 0;
  padding: 15px;
  white-space: nowrap;
}

.fancybox-image, .fancybox-iframe {
  display: block;
  width: 100%;
  height: 100%;
}

.fancybox-image {
  max-width: 100%;
  max-height: 100%;
}

#fancybox-loading, .fancybox-close, .fancybox-prev span, .fancybox-next span {
  background-image: url("fancybox_sprite.png");
}

#fancybox-loading {
  position: fixed;
  top: 50%;
  left: 50%;
  margin-top: -22px;
  margin-left: -22px;
  background-position: 0 -108px;
  opacity: 0.8;
  cursor: pointer;
  z-index: 8060;
}

#fancybox-loading div {
  width: 44px;
  height: 44px;
  background: url("fancybox_loading.gif") center center no-repeat;
}

.fancybox-close {
  position: absolute;
  top: -18px;
  right: -18px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  z-index: 8040;
}

.fancybox-nav {
  position: absolute;
  top: 0;
  width: 40%;
  height: 100%;
  cursor: pointer;
  text-decoration: none;
  background: transparent url("blank.gif");
  /* helps IE */
  -webkit-tap-highlight-color: transparent;
  z-index: 8040;
}

.fancybox-prev {
  left: 0;
}

.fancybox-next {
  right: 0;
}

.fancybox-nav span {
  position: absolute;
  top: 50%;
  width: 36px;
  height: 34px;
  margin-top: -18px;
  cursor: pointer;
  z-index: 8040;
  visibility: hidden;
}

.fancybox-prev span {
  left: 10px;
  background-position: 0 -36px;
}

.fancybox-next span {
  right: 10px;
  background-position: 0 -72px;
}

.fancybox-nav:hover span {
  visibility: visible;
}

.fancybox-tmp {
  position: absolute;
  top: -99999px;
  left: -99999px;
  visibility: hidden;
  max-width: 99999px;
  max-height: 99999px;
  overflow: visible !important;
}

/* Overlay helper */
.fancybox-lock {
  overflow: hidden !important;
  width: auto;
}

.fancybox-lock body {
  overflow: hidden !important;
}

.fancybox-lock-test {
  overflow-y: hidden !important;
}

.fancybox-overlay {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  display: none;
  z-index: 8010;
  background: url("fancybox_overlay.png");
}

.fancybox-overlay-fixed {
  position: fixed;
  bottom: 0;
  right: 0;
}

.fancybox-lock .fancybox-overlay {
  overflow: auto;
  overflow-y: scroll;
}

/* Title helper */
.fancybox-title {
  visibility: hidden;
  font: normal 13px/20px "Helvetica Neue",Helvetica,Arial,sans-serif;
  position: relative;
  text-shadow: none;
  z-index: 8050;
}

.fancybox-opened .fancybox-title {
  visibility: visible;
}

.fancybox-title-float-wrap {
  position: absolute;
  bottom: 0;
  right: 50%;
  margin-bottom: -35px;
  z-index: 8050;
  text-align: center;
}

.fancybox-title-float-wrap .child {
  display: inline-block;
  margin-right: -100%;
  padding: 2px 20px;
  background: transparent;
  /* Fallback for web browsers that doesn't support RGBa */
  background: rgba(0, 0, 0, 0.8);
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
  text-shadow: 0 1px 2px #222;
  color: #FFF;
  font-weight: bold;
  line-height: 24px;
  white-space: nowrap;
}

.fancybox-title-outside-wrap {
  position: relative;
  margin-top: 10px;
  color: #fff;
}

.fancybox-title-inside-wrap {
  padding-top: 10px;
}

.fancybox-title-over-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  color: #fff;
  padding: 10px;
  background: #000;
  background: rgba(0, 0, 0, 0.8);
}

/*Retina graphics!*/
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min--moz-device-pixel-ratio: 1.5), only screen and (min-device-pixel-ratio: 1.5) {
  #fancybox-loading, .fancybox-close, .fancybox-prev span, .fancybox-next span {
    background-image: url("fancybox_sprite.png");
    background-size: 44px 152px;
    /*The size of the normal image, half the size of the hi-res image*/
  }
  #fancybox-loading div {
    background-image: url("fancybox_loading.gif");
    background-size: 24px 24px;
    /*The size of the normal image, half the size of the hi-res image*/
  }
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  -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;
  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: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}
