@charset "UTF-8";
@import 'fonts.css';
/* Reset styles
*******************************/
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section {
  display: block;
}
audio[controls],
canvas,
video {
  display: inline-block;
  *display: inline;
  *zoom: 1;
}
html {
  overflow-y: scroll;
  /* 1 */
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 3 */
  -ms-text-size-adjust: 100%;
}
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
ul,
li,
ol,
a,
em,
img,
strong,
fieldset,
form,
label,
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-weight: inherit;
  font-style: inherit;
  font-size: 100%;
  font-family: inherit;
  vertical-align: baseline;
  list-style: none;
}
:focus {
  outline: 0;
}
img {
  vertical-align: middle;
  outline: 0;
  max-width: 100%;
  height: auto;
}
button::-moz-focus-inner,
input[type="reset"]::-moz-focus-inner,
input[type="button"]::-moz-focus-inner,
input[type="submit"]::-moz-focus-inner,
input[type="file"] > input[type="button"]::-moz-focus-inner {
  border: none;
}
html,
body,
textarea,
input {
  -webkit-text-size-adjust: none;
}
body {
  text-align: left;
  font-family: sans-serif;
  font-size: 12px;
  font-weight: normal;
  line-height: 1.2;
}
/* Form Elements
*******************************/
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
  background: #000000;
  cursor: pointer;
  -webkit-appearance: button;
  font-size: 16px;
  font-family: 'proxima_novasemibold';
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: normal;
  border: 0;
  border-radius: 0;
  color: #fff;
  width: 100%;
  height: 80px;
}
button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
  -moz-opacity: 0.8;
  -khtml-opacity: 0.8;
  -webkit-opacity: 0.8;
  opacity: 0.8;
}
input[type=text],
input[type=number],
input[type=email],
input[type=url],
input[type=search],
input[type=password],
textarea {
  background: #f3efea;
  border: 0;
  font: 14px/36px 'proxima_novalight';
  letter-spacing: 1px;
  color: #000;
  text-align: center;
  padding: 6px 20px;
  height: 48px;
  margin: 0;
  -webkit-transition: all 100ms linear;
  -moz-transition: all 100ms linear;
  -ms-transition: all 100ms linear;
  -o-transition: all 100ms linear;
  transition: all 100ms linear;
  width: 100%;
  border-radius: 0;
  /* gray80 */
  /* Firefox 18- (one color)*/
  /* Firefox 19+ (double colons) */
}
input[type=text]::-webkit-input-placeholder,
input[type=number]::-webkit-input-placeholder,
input[type=email]::-webkit-input-placeholder,
input[type=url]::-webkit-input-placeholder,
input[type=search]::-webkit-input-placeholder,
input[type=password]::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  opacity: 1;
  text-transform: uppercase;
}
input[type=text]:-moz-placeholder,
input[type=number]:-moz-placeholder,
input[type=email]:-moz-placeholder,
input[type=url]:-moz-placeholder,
input[type=search]:-moz-placeholder,
input[type=password]:-moz-placeholder,
textarea:-moz-placeholder {
  opacity: 1;
  text-transform: uppercase;
}
input[type=text]::-moz-placeholder,
input[type=number]::-moz-placeholder,
input[type=email]::-moz-placeholder,
input[type=url]::-moz-placeholder,
input[type=search]::-moz-placeholder,
input[type=password]::-moz-placeholder,
textarea::-moz-placeholder {
  opacity: 1;
  text-transform: uppercase;
}
input[type=text]:-ms-input-placeholder,
input[type=number]:-ms-input-placeholder,
input[type=email]:-ms-input-placeholder,
input[type=url]:-ms-input-placeholder,
input[type=search]:-ms-input-placeholder,
input[type=password]:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  opacity: 1;
  text-transform: uppercase;
}
input[type=text]:required,
input[type=number]:required,
input[type=email]:required,
input[type=url]:required,
input[type=search]:required,
input[type=password]:required,
textarea:required {
  box-shadow: none;
}
textarea {
  height: 160px;
  resize: none;
  overflow: auto;
}
select {
  background: transparent;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border: 1px solid #dcd7cb;
  height: 28px;
  font: 12px/18px 'brandon_grotesquebold';
  padding: 4px 10px;
  margin: 0;
  -webkit-transition: all 100ms linear;
  -moz-transition: all 100ms linear;
  -ms-transition: all 100ms linear;
  -o-transition: all 100ms linear;
  transition: all 100ms linear;
  width: 100%;
  color: #616161;
  border-radius: 0;
}
select:required {
  box-shadow: none;
}
.fl {
  float: left !important;
}
.fr {
  float: right !important;
}
.l {
  text-align: left;
}
.c {
  text-align: center;
}
.j {
  text-align: justify;
}
.r {
  text-align: right;
}
/* Clearfix
*******************************/
.cf:before,
.cf:after {
  content: "";
  display: table;
}
.cf:after {
  clear: both;
}
.cf {
  zoom: 1;
}
.clear {
  clear: both;
}
/* Links
*******************************/
a {
  text-decoration: none;
  color: #231f20;
  -webkit-transition: all 100ms linear;
  -moz-transition: all 100ms linear;
  -ms-transition: all 100ms linear;
  -o-transition: all 100ms linear;
  transition: all 100ms linear;
}
a:hover {
  color: #bbbdbd;
}
/* Headers
*******************************/
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 1em;
  line-height: 1.16em;
}
h1 {
  font-size: 36px;
}
h2 {
  font-size: 24px;
}
h3 {
  font-size: 18px;
}
h4 {
  font-size: 18px;
}
h5 {
  font-size: 14px;
}
h6 {
  font-size: 12px;
}
/* Text elements
*******************************/
p {
  margin: 0 0 1em 0;
}
strong {
  font-weight: bold;
}
em {
  font-style: italic;
}
img {
  border: 0;
}
.small {
  font-size: 10px;
}
hr {
  display: block;
  height: 0px;
  line-height: 0px;
  border: 0;
  border-top: 1px solid;
  border-bottom: 1px solid;
  margin: 16px 0;
  float: none;
  clear: both;
  padding: 0;
}
/* Wordpress Typo
*******************************/
.entry-content a {
  text-decoration: underline;
}
.entry-content ul {
  list-style: none;
}
.entry-content ul li {
  list-style: none;
  position: relative;
  padding-left: 35px;
}
.entry-content ul li:before {
  background: #595756;
  content: "";
  width: 5px;
  height: 5px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  position: absolute;
  top: 10px;
  left: 0;
}
.entry-content ol {
  list-style: decimal;
}
.entry-content ol li {
  list-style: decimal;
}
.entry-content ul,
.entry-content ol {
  margin: 0 0 1em 1.5em;
}
.entry-content ul ul,
.entry-content ol ul,
.entry-content ul ol,
.entry-content ol ol {
  margin-bottom: 0;
}
.entry-content ol ol {
  list-style: upper-alpha;
}
.entry-content ol ol ol {
  list-style: lower-roman;
}
.entry-content ol ol ol ol {
  list-style: lower-alpha;
}
.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
  font-family: 'poynterosdisplaybold';
  margin-bottom: .5em;
}
.entry-content h1 strong,
.entry-content h2 strong,
.entry-content h3 strong,
.entry-content h4 strong,
.entry-content h5 strong,
.entry-content h6 strong {
  font-weight: bold;
}
.entry-content h3 {
  text-align: center;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
}
.entry-content h3:before,
.entry-content h3:after {
  content: "";
  border-top: 1px solid #e0e0e0;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  position: relative;
  margin-top: 10px;
}
.entry-content h3:before {
  margin-right: 30px;
}
.entry-content h3:after {
  margin-left: 30px;
}
.entry-content table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 18px;
}
.entry-content table td,
.entry-content table th {
  padding: 6px 10px;
  text-align: center;
  border: 1px solid #e9e9e9;
}
.entry-content table th {
  font-weight: bold;
}
.entry-content pre {
  border: 1px solid #ccc;
  background: #eee;
  padding: 1em 2em;
  margin-bottom: 1em;
}
.entry-content blockquote {
  border-left: 2px solid #000;
  font-size: 20px;
  line-height: 30px;
  font-family: 'proxima_novasemibold';
  padding-left: 20px;
}
.entry-content blockquote p:before {
  content: '"';
}
.entry-content blockquote p:after {
  content: '"';
}
.entry-content img,
.entry-content img.size-auto,
.entry-content img.size-full,
.entry-content img.size-large,
.entry-content img.size-medium,
.entry-content .attachment img {
  width: 100% !important;
  height: auto !important;
  /* Override height to match resized width for correct aspect ratio. */
  margin-bottom: 2px;
}
.entry-content .alignleft,
.entry-content img.alignleft {
  display: inline;
  float: left;
  margin-right: 11px;
}
.entry-content .alignright,
.entry-content img.alignright {
  display: inline;
  float: right;
  margin-left: 11px;
}
.entry-content .aligncenter,
.entry-content img.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.entry-content .wp-caption {
  line-height: 1.5;
  margin-bottom: 1em;
  text-align: center;
}
.entry-content .wp-caption p.wp-caption-text {
  color: #888;
  font-size: 11px;
  margin: 0;
  padding: 5px 0;
  text-align: right;
}
.entry-content .wp-smiley {
  margin: 0;
}
.entry-content strong {
  font-family: 'proxima_novasemibold';
  font-weight: normal;
}
/* FlexSlider Necessary Styles
*********************************/
.flexslider {
  position: relative;
  zoom: 1;
}
.flexslider ul,
.flexslider ol {
  margin: 0;
  padding: 0;
  list-style: none;
}
.flexslider ul li,
.flexslider ol li {
  margin: 0;
  padding: 0;
  list-style: none;
}
.flexslider .slides {
  zoom: 1;
}
.flexslider .slides > li {
  position: relative;
  display: none;
  -webkit-backface-visibility: hidden;
  text-align: center;
}
.flexslider .slides > li:first-child {
  display: block;
}
.flexslider .slides img {
  max-width: 100%;
  display: block;
  margin: 0 auto;
  height: auto;
  width: auto;
}
.flex-container {
  zoom: 1;
  position: relative;
}
/* Clearfix for the .slides element */
.slides:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
html[xmlns] .slides {
  display: block;
}
* html .slides {
  height: 1%;
}
body {
  font: 16px/1.66 'proxima_nova_rgregular', Arial, Verdana, sans-serif;
  color: #000;
}
html,
body {
  height: 100%;
  /* needed for container min-height */
}
.container {
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
  max-width: 1060px;
  padding: 0 25px;
  margin: 0 auto;
  position: relative;
}
@media (min-width: 768px) {
  .container {
    padding: 0 30px;
  }
}
@media (min-width: 1281px) {
  .container {
    max-width: 1140px;
  }
}
.social ul {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
}
.social ul li {
  margin-left: 20px;
}
.social ul li:first-child {
  margin-left: 0;
}
.social ul li a {
  background: url(../images/social-icons-mobile.png?12345) 0 0 no-repeat;
  background-size: 75px 13px;
  display: block;
  height: 13px;
  text-indent: -9999px;
}
.social ul li a.facebook {
  width: 7px;
}
.social ul li a.twitter {
  background-position: -7px 0;
  width: 14px;
}
.social ul li a.instagram {
  background-position: -21px 0;
  width: 13px;
}
.social ul li a.pinterest {
  background-position: -51px 0;
  width: 10px;
}
.social ul li a.tumblr {
  background-position: -43px 0;
  width: 7px;
}
.social ul li a.snapchat {
  background-position: -50px 0;
  width: 11px;
}
.social ul li a.email {
  background-position: -34px 0;
  width: 17px;
}
.social ul li a.website {
  background-position: -51px 0;
  width: 12px;
}
.social ul li a.youtube {
  background-position: 100% 0;
  width: 14px;
}
@media (min-width: 768px) {
  .social ul li a {
    background: url(../images/social-icons.png?12345) 0 0 no-repeat;
    background-size: 97px 13px;
  }
  .social ul li a.facebook {
    width: 6px;
  }
  .social ul li a.twitter {
    background-position: -6px 0;
    width: 12px;
  }
  .social ul li a.instagram {
    background-position: -18px 0;
    width: 11px;
  }
  .social ul li a.pinterest {
    background-position: -61px 0;
    width: 10px;
  }
  .social ul li a.email {
    background-position: -29px 0;
    width: 14px;
  }
  .social ul li a.youtube {
    background-position: 100% 0;
    width: 14px;
  }
}
/* Wrappers
*******************************/
#wrapper {
  position: relative;
  /* needed for footer positioning*/
  margin: 0 auto;
  /* center, not in IE5 */
  width: 100%;
  height: auto !important;
  /* real browsers */
  height: 100%;
  /* IE6: treaded as min-height*/
  min-height: 100%;
  /* real browsers */
  overflow: hidden;
}
/* Promo
*******************************/
#promo {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 25px;
  position: relative;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
}
#promo .title a {
  font-family: 'proxima_novaregular_italic';
  text-decoration: underline;
}
#promo .button {
  margin-top: 10px;
}
#promo .close {
  background: url(../images/promo-close.png) 50% 50% no-repeat;
  background-size: 11px 11px;
  position: absolute;
  width: 11px;
  height: 11px;
  top: 50%;
  margin-top: -5px;
  right: 20px;
  cursor: pointer;
}
#promo.default {
  background-color: #000000;
  font: 15px/18px 'proxima_novalight';
  color: #fff;
}
#promo.default .title a {
  color: #fff;
}
#promo.default .button a {
  font: 14px/18px 'proxima_novasemibold';
  color: #fff;
  text-decoration: underline;
}
#promo.default .button a:hover {
  -moz-opacity: 0.8;
  -khtml-opacity: 0.8;
  -webkit-opacity: 0.8;
  opacity: 0.8;
}
#promo.black,
#promo.white {
  font: 24px/38px 'proxima_novalight';
}
#promo.black .button a,
#promo.white .button a {
  font: 16px/38px 'proxima_novasemibold';
  display: inline-block;
  padding: 0 25px;
}
#promo.black .button a:hover,
#promo.white .button a:hover {
  -moz-opacity: 0.8;
  -khtml-opacity: 0.8;
  -webkit-opacity: 0.8;
  opacity: 0.8;
}
#promo.black {
  color: #000;
}
#promo.black .title a {
  color: #000;
}
#promo.black .button a {
  background: #000;
  color: #fff;
}
#promo.black .close {
  background-image: url(../images/promo-close-black.png);
}
#promo.white {
  color: #fff;
}
#promo.white .title a {
  color: #fff;
}
#promo.white .button a {
  background: #fff;
  color: #000;
}
#promo.white .button a:hover {
  -moz-opacity: 0.8;
  -khtml-opacity: 0.8;
  -webkit-opacity: 0.8;
  opacity: 0.8;
}
@media (min-width: 768px) {
  #promo {
    text-align: left;
    padding: 20px 80px;
  }
  #promo .wrapper {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: -ms-flex;
    display: flex;
  }
  #promo .title {
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
  #promo .subtitle {
    margin-top: 0;
    padding-right: 20px;
    line-height: 26px;
  }
  #promo .button {
    margin-top: 0;
  }
  #promo.black,
  #promo.white {
    padding: 31px 80px;
  }
}
/* Header
*******************************/
#header {
  position: relative;
  z-index: 1002;
  padding: 18px 25px;
  -webkit-box-shadow: 0 4px 7px rgba(128, 175, 188, 0.15);
  -moz-box-shadow: 0 4px 7px rgba(128, 175, 188, 0.15);
  box-shadow: 0 4px 7px rgba(128, 175, 188, 0.15);
}
#header h1 {
  width: 128px;
  margin: 0 auto;
  z-index: 1;
}
#header h1 a {
  background: url(../images/mobile-logo.png) 0 0 no-repeat;
  background-size: 128px 65px;
  display: block;
  width: 128px;
  height: 65px;
  text-indent: -9999px;
}
#header .menu-toggle {
  position: absolute;
  width: 24px;
  height: 24px;
  left: 25px;
  top: 28px;
  cursor: pointer;
  z-index: 100;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
#header .menu-toggle:before,
#header .menu-toggle:after {
  background: #1b1b1b;
  content: "";
  width: 24px;
  height: 3px;
  position: absolute;
  left: 0;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
#header .menu-toggle:before {
  top: 7px;
}
#header .menu-toggle:after {
  bottom: 7px;
}
#header .search-toggle {
  background: url(../images/search-toggle.png) 0 0 no-repeat;
  background-size: 15px 15px;
  position: absolute;
  top: 32px;
  right: 25px;
  width: 15px;
  height: 15px;
}
#header .user-account {
  background: url(../images/user-account-icon.png) 50% 50% no-repeat;
  background-size: 10px 11px;
  position: absolute;
  top: 27px;
  right: 60px;
  width: 25px;
  height: 25px;
  text-indent: -9999px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
#header .user-account:before {
  background: #e0e0e0;
  content: "";
  width: 1px;
  height: 8px;
  position: absolute;
  right: -10px;
  top: 7px;
  -webkit-transform: rotate(20deg);
  -moz-transform: rotate(20deg);
  transform: rotate(20deg);
}
#header .navigation {
  background: #000;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  padding: 50px 25px 40px;
  display: none;
}
#header .main-menu a {
  color: #fff;
  -webkit-transition: opacity 0.2s ease-in-out;
  -moz-transition: opacity 0.2s ease-in-out;
  -ms-transition: opacity 0.2s ease-in-out;
  -o-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
}
#header .main-menu a:hover {
  -moz-opacity: 1;
  -khtml-opacity: 1;
  -webkit-opacity: 1;
  opacity: 1;
}
#header .main-menu > ul > li {
  font: 10px/14px 'proxima_novasemibold';
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 30px;
  position: relative;
}
#header .main-menu > ul > li:first-child {
  margin-top: 0;
}
#header .main-menu > ul > li .sub-menu {
  display: none;
}
#header .main-menu > ul > li .sub-menu li {
  margin-bottom: 10px;
}
#header .main-menu > ul > li div.sub-menu-category .items {
  display: none;
}
#header .main-menu > ul > li div.sub-menu-cities {
  padding-top: 10px;
}
#header .main-menu > ul > li div.sub-menu-cities h2 {
  display: none;
}
#header .main-menu > ul > li.sea-pink {
  position: relative;
}
#header .main-menu > ul > li.sea-pink:before {
  content: " ";
  display: block;
  width: 122%;
  height: 34px;
  position: absolute;
  top: 14px;
  left: -11%;
  transition-duration: 0.2s;
}
#header .main-menu > ul > li.sea-pink a {
  color: #efa99d;
}
#header .main-menu > ul > li.sea-pink a:before,
#header .main-menu > ul > li.sea-pink a:after {
  display: none;
}
#header .main-menu > ul > li.sea-pink:hover:before {
  background-color: #efa99d;
}
#header .main-menu > ul > li.sea-pink:hover a {
  color: #fff;
}
@media (max-width: 767px) {
  #header .main-menu > ul > li.sea-pink:before {
    display: none;
  }
  #header .main-menu > ul > li.sea-pink a {
    background-color: #efa99d;
    border: 1px solid #efa99d;
    padding: 12px;
    color: #fff;
  }
  #header .main-menu > ul > li.sea-pink a:hover {
    background-color: transparent;
    color: #efa99d;
  }
}
#header .main-menu > ul > li.holiday-red {
  position: relative;
}
#header .main-menu > ul > li.holiday-red:before {
  content: " ";
  display: block;
  width: 122%;
  height: 34px;
  position: absolute;
  top: 14px;
  left: -11%;
  transition-duration: 0.2s;
}
#header .main-menu > ul > li.holiday-red a {
  color: #c90813;
}
#header .main-menu > ul > li.holiday-red a:before,
#header .main-menu > ul > li.holiday-red a:after {
  display: none;
}
#header .main-menu > ul > li.holiday-red:hover:before {
  background-color: #c90813;
}
#header .main-menu > ul > li.holiday-red:hover a {
  color: #fff;
}
@media (max-width: 767px) {
  #header .main-menu > ul > li.holiday-red:before {
    display: none;
  }
  #header .main-menu > ul > li.holiday-red a {
    background-color: #c90813;
    border: 1px solid #c90813;
    padding: 12px;
    color: #fff;
  }
  #header .main-menu > ul > li.holiday-red a:hover {
    background-color: transparent;
    color: #c90813;
  }
}
#header .main-menu > ul > li.custom-color {
  position: relative;
}
#header .main-menu > ul > li.custom-color:before {
  content: " ";
  display: block;
  width: 122%;
  height: 34px;
  position: absolute;
  top: 14px;
  left: -11%;
  transition-duration: 0.2s;
}
#header .main-menu > ul > li.custom-color a {
  color: var(--color);
}
#header .main-menu > ul > li.custom-color a:before,
#header .main-menu > ul > li.custom-color a:after {
  display: none;
}
#header .main-menu > ul > li.custom-color:hover:before {
  background-color: var(--color);
}
#header .main-menu > ul > li.custom-color:hover a {
  color: #fff;
}
@media (max-width: 767px) {
  #header .main-menu > ul > li.custom-color:before {
    display: none;
  }
  #header .main-menu > ul > li.custom-color a {
    background-color: var(--color);
    border: 1px solid var(--color);
    padding: 12px;
    color: #fff;
  }
  #header .main-menu > ul > li.custom-color a:hover {
    background-color: transparent;
    color: var(--color);
  }
}
#header .searchform {
  background: #fff;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  padding: 40px 0;
  display: none;
}
#header .searchform .wrapper {
  position: relative;
}
#header .searchform .s {
  background: none;
  border-bottom: 1px solid #e0e0e0;
  font: 40px/1 'poynterosdisplaybold';
  text-align: left;
  padding: 0 80px 30px 0;
  height: 81px;
  /* gray80 */
  /* Firefox 18- (one color)*/
  /* Firefox 19+ (double colons) */
}
#header .searchform .s::-webkit-input-placeholder {
  opacity: 0.3;
  text-transform: none;
}
#header .searchform .s:-moz-placeholder {
  opacity: 0.3;
  text-transform: none;
}
#header .searchform .s::-moz-placeholder {
  opacity: 0.3;
  text-transform: none;
}
#header .searchform .s:-ms-input-placeholder {
  opacity: 0.3;
  text-transform: none;
}
#header .searchform .searchsubmit {
  background: none;
  font-size: 11px;
  color: #000000;
  text-transform: uppercase;
  letter-spacing: 1px;
  height: auto;
  width: auto;
  position: absolute;
  top: 20px;
  right: 0;
}
#header .searchform .close {
  background: url(../images/searchform-close.png) 0 0 no-repeat;
  background-size: 25px 25px;
  width: 25px;
  height: 25px;
  cursor: pointer;
  position: absolute;
  top: 20px;
  left: -100px;
  display: none;
}
#header .social {
  margin-top: 20px;
}
@media (min-width: 768px) {
  #header {
    padding: 18px 30px 0;
  }
  #header .wrapper {
    padding-bottom: 0;
  }
  #header h1 {
    width: 118px;
    margin: 0 0 16px;
    z-index: 1;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
  }
  #header h1 a {
    background: url(../images/logo.png) 0 0 no-repeat;
    background-size: 181px 26px;
    width: 181px;
    height: 26px;
  }
  #header .menu-toggle {
    display: none;
  }
  #header .search-toggle {
    top: 22px;
  }
  #header .user-account {
    top: 17px;
  }
  #header .navigation {
    background: #fff;
    border-top: 1px solid #e0e0e0;
    margin-left: -30px;
    margin-right: -30px;
    top: auto;
    left: auto;
    right: auto;
    position: relative;
    padding: 0 30px;
    display: block;
  }
  #header .main-menu {
    /*            white-space: nowrap;
            overflow-x: auto;
            overflow-y: hidden;*/
  }
  #header .main-menu a {
    color: #000;
  }
  #header .main-menu .menu {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: -ms-flex;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
  }
  #header .main-menu .menu > li {
    position: static;
    margin-top: 0;
  }
  #header .main-menu .menu > li > a {
    display: block;
    padding: 24px 0;
    position: relative;
  }
  #header .main-menu .menu > li > a:before,
  #header .main-menu .menu > li > a:after {
    background: #000;
    content: "";
    height: 3px;
    position: absolute;
    bottom: 0;
    width: 0;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
  }
  #header .main-menu .menu > li > a:before {
    left: 50%;
  }
  #header .main-menu .menu > li > a:after {
    right: 50%;
  }
  #header .main-menu .menu > li.current-menu-item a:before,
  #header .main-menu .menu > li a:hover:before,
  #header .main-menu .menu > li.current-menu-item a:after,
  #header .main-menu .menu > li a:hover:after {
    width: 50%;
  }
  #header .main-menu .menu > li div.sub-menu {
    background: #fff;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding: 35px 0;
  }
  #header .main-menu .menu > li div.sub-menu li {
    margin-bottom: 0;
  }
  #header .main-menu .menu > li div.sub-menu-category .sub-menu-wrapper {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: -ms-flex;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
  }
  #header .main-menu .menu > li div.sub-menu-category .left {
    border-right: 1px solid #e0e0e0;
    width: 225px;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: -ms-flex;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
  }
  #header .main-menu .menu > li div.sub-menu-category .left .title {
    font: 20px/1 'poynterosdisplaybold';
    text-transform: none;
    margin-bottom: 20px;
  }
  #header .main-menu .menu > li div.sub-menu-category .left ul li {
    margin-top: 16px;
  }
  #header .main-menu .menu > li div.sub-menu-category .left ul li:first-child {
    margin-top: 0;
  }
  #header .main-menu .menu > li div.sub-menu-category .left ul li a:hover {
    text-decoration: underline;
  }
  #header .main-menu .menu > li div.sub-menu-category .left .more {
    padding-top: 16px;
    padding-bottom: 20px;
  }
  #header .main-menu .menu > li div.sub-menu-category .left .more a {
    text-decoration: underline;
  }
  #header .main-menu .menu > li div.sub-menu-category .items {
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: -ms-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  #header .main-menu .menu > li div.sub-menu-category .items .item {
    width: 33%;
    padding-left: 34px;
  }
  #header .main-menu .menu > li .menu-post {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: -ms-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
    height: 100%;
  }
  #header .main-menu .menu > li .menu-post .image {
    width: 50%;
  }
  #header .main-menu .menu > li .menu-post .info {
    width: 40%;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: -ms-flex;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
  }
  #header .main-menu .menu > li .menu-post .info .category {
    margin-bottom: 20px;
  }
  #header .main-menu .menu > li .menu-post .info .category a {
    display: inline-block;
    background: #f3efea;
    font: 9px/21px 'proxima_novasemibold';
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0 10px;
  }
  #header .main-menu .menu > li .menu-post .info h2 {
    font: 18px/26px 'poynterosdisplay_semiboldRg';
    text-transform: none;
  }
  #header .main-menu .menu > li .menu-post-video {
    text-align: center;
  }
  #header .main-menu .menu > li .menu-post-video .image {
    margin-bottom: 28px;
  }
  #header .main-menu .menu > li .menu-post-video h2 {
    font: 15px/1 'poynterosdisplay_semiboldRg';
    letter-spacing: 1px;
    text-transform: none;
  }
  #header .main-menu .menu > li div.sub-menu-cities {
    padding-top: 0;
    padding-bottom: 60px;
  }
  #header .main-menu .menu > li div.sub-menu-cities h2 {
    font: 20px/1 'poynterosdisplay_semiboldRg';
    margin-bottom: 60px;
    text-transform: none;
    text-align: center;
    display: block;
  }
  #header .main-menu .menu > li div.sub-menu-cities .items {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: -ms-flex;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
  }
  #header .main-menu .menu > li div.sub-menu-cities .items .sep {
    background: #e0e0e0;
    width: 1px;
  }
  #header .main-menu .menu > li div.sub-menu-cities .items .col {
    position: relative;
  }
  #header .main-menu .menu > li div.sub-menu-cities .items ul li {
    margin-top: 16px;
  }
  #header .main-menu .menu > li div.sub-menu-cities .items ul li:first-child {
    margin-top: 0;
  }
  #header .main-menu .menu > li div.sub-menu-cities .items ul li a:hover {
    text-decoration: underline;
  }
  #header .main-menu .menu > li div.sub-menu-cities .items ul li.all {
    position: absolute;
    bottom: 0;
    left: 0;
  }
  #header .search-toggle {
    right: 30px;
  }
  #header .user-account {
    right: 65px;
  }
  #header .social {
    border-right: 1px solid #e0e0e0;
    padding-right: 21px;
    position: absolute;
    top: -44px;
    right: 105px;
    height: 25px;
    padding-top: 6px;
    margin-top: 0;
  }
}
@media (min-width: 768px) and only screen and (-webkit-min-device-pixel-ratio: 1.5), (min-width: 768px) and only screen and (min--moz-device-pixel-ratio: 1.5), (min-width: 768px) and only screen and (min-device-pixel-ratio: 1.5) {
  #header h1 a {
    background: url(../images/logo2x.png) 0 0 no-repeat;
    background-size: 181px 26px;
  }
}
@media (min-width: 1280px) {
  #header {
    padding-bottom: 18px;
  }
  #header h1 {
    margin-bottom: 0;
  }
  #header .navigation {
    border-top: 0;
    position: absolute;
    top: 0;
    left: 250px;
    right: 100px;
    height: 62px;
    margin: 0;
    padding: 0;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: -ms-flex;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
  }
  #header .navigation:before,
  #header .navigation:after {
    background: #e0e0e0;
    content: "";
    width: 1px;
    height: 26px;
    position: absolute;
    top: 50%;
    margin-top: -13px;
  }
  #header .navigation:before {
    left: 0;
  }
  #header .navigation:after {
    right: 0;
  }
  #header .main-menu {
    white-space: normal;
    overflow-x: visible;
    overflow-y: visible;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding: 0 15px;
    position: static;
  }
  #header .main-menu .menu {
    white-space: normal;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: -ms-flex;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
  }
  #header .main-menu .menu > li {
    display: block;
    position: static;
  }
  #header .main-menu .menu > li > a {
    margin: 0 5px;
  }
  #header .main-menu .menu > li div.sub-menu {
    background: #fff;
    position: absolute;
    top: 100%;
    left: -250px;
    right: -55px;
    padding: 35px 0;
  }
  #header .social {
    border-right: 0;
    position: relative;
    top: auto;
    right: auto;
    height: auto;
    padding-top: 24px;
    padding-left: 21px;
  }
  #header .social:after {
    background: #e0e0e0;
    content: "";
    width: 1px;
    height: 26px;
    position: absolute;
    top: 50%;
    left: 0;
    margin-top: -13px;
  }
  #header .searchform .close {
    display: block;
  }
}
body.logged-in #header .user-account {
  background-color: #f3efea;
}
body.scroll #wrapper {
  padding-top: 66px;
}
body.scroll #header {
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}
body.open #header .menu-toggle {
  background-color: #fff;
}
body.open #header .menu-toggle:before {
  top: 2px;
  left: 3px;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transform-origin: left top;
  -moz-transform-origin: left top;
  -o-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
  width: 25px;
}
body.open #header .menu-toggle:after {
  bottom: 2px;
  left: 3px;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transform-origin: left bottom;
  -moz-transform-origin: left bottom;
  -o-transform-origin: left bottom;
  -ms-transform-origin: left bottom;
  transform-origin: left bottom;
  width: 25px;
}
body.open #header .navigation {
  display: block;
}
@media (min-width: 768px) {
  body.open #header .main-menu {
    display: block;
  }
}
.top-banner {
  text-align: center;
  padding: 15px 0;
}
/* Content
*******************************/
#content {
  position: relative;
  z-index: 1;
}
#instagram {
  margin-top: 60px;
}
#instagram .wrapper {
  border-top: 1px solid #f2f2f2;
  padding-top: 50px;
}
#instagram h2 {
  font: 24px/1 'poynterosdisplaybold';
  text-align: center;
  margin-bottom: 14px;
}
#instagram .text {
  text-align: center;
  font: 15px/1 'proxima_novasemibold';
  margin-bottom: 35px;
}
/* Footer
*******************************/
#footer {
  background: #000;
  padding-top: 55px;
  padding-bottom: 32px;
  color: #fff;
}
#footer a {
  color: #fff;
}
#footer .scroll-top {
  width: 57px;
  height: 52px;
  background: #f8f8f8;
  color: #fff;
  text-align: center;
  font: 10px/1 'proxima_novasemibold';
  text-transform: uppercase;
  letter-spacing: 2px;
  padding-top: 26px;
  cursor: pointer;
  position: absolute;
  top: -16px;
  right: 25px;
}
@media (min-width: 768px) {
  #footer .scroll-top {
    right: 30px;
  }
}
#footer .scroll-top:before {
  background: url(../images/scroll-top-arrow.png) 0 0 no-repeat;
  background-size: 13px 14px;
  content: "";
  width: 13px;
  height: 7px;
  position: absolute;
  top: 11px;
  left: 22px;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
#footer .scroll-top:hover:before {
  top: 8px;
}
#footer .logo {
  background: url(../images/footer-logo.png) 0 0 no-repeat;
  background-size: 182px 24px;
  display: block;
  margin: 0 auto 50px;
  width: 182px;
  height: 12px;
}
#footer .footer-menu-categories {
  display: none;
}
#footer .footer-menu-categories .menu {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
#footer .footer-menu-categories .menu > li {
  width: 47%;
  font-size: 16px;
  line-height: 20px;
  padding: 10px 0;
}
#footer .footer-menu-categories .menu > li > a {
  font-family: 'poynterosdisplaybold';
}
#footer .footer-menu-categories .menu > li .sub-menu {
  display: none;
}
#footer .middle {
  margin-top: 50px;
  display: none;
}
#footer .middle .searchform {
  width: 200px;
  line-height: 22px;
  float: left;
}
#footer .middle .searchform .container {
  padding: 0;
}
#footer .middle .searchform .wrapper {
  position: relative;
}
#footer .middle .searchform input[type="text"],
#footer .middle .searchform input[type="number"],
#footer .middle .searchform input[type="email"],
#footer .middle .searchform input[type="url"],
#footer .middle .searchform input[type="search"],
#footer .middle .searchform input[type="password"],
#footer .middle .searchform textarea {
  background: none;
  text-align: left;
  padding: 6px 10px 6px 0;
  font-size: 10px;
  height: 22px;
  font-family: 'proxima_novasemibold';
}
#footer .middle .searchform .searchsubmit {
  background: url(../images/footer-search-icon.png) 0 0 no-repeat;
  background-size: 12px 12px;
  width: 12px;
  height: 12px;
  text-indent: -9999px;
  position: absolute;
  top: 5px;
  right: 0;
}
#footer .middle .subscribe {
  float: left;
  font: 10px/22px 'proxima_novasemibold';
  letter-spacing: 1px;
  margin-left: 35px;
  padding-left: 36px;
  position: relative;
}
#footer .middle .subscribe:before {
  background: #000;
  content: "";
  width: 1px;
  position: absolute;
  top: 6px;
  bottom: 6px;
  left: 0;
}
#footer .middle .subscribe a {
  background: url(../images/footer-subscribe-icon.png) 0 50% no-repeat;
  background-size: 14px 10px;
  display: inline-block;
  padding-left: 25px;
}
@media (min-width: 768px) {
  #footer .middle {
    display: block;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: -ms-flex;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
  }
}
#footer .bottom {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  font-size: 14px;
  line-height: 25px;
  margin-top: 15px;
}
#footer .bottom .copyrights {
  -webkit-order: 1;
  -ms-order: 1;
  order: 1;
}
#footer .bottom .floagency {
  background: url(../images/floagency-mobile.png) 0 0 no-repeat;
  background-size: 25px 25px;
  display: block;
  width: 25px;
  height: 25px;
  text-indent: -9999px;
  -webkit-order: 2;
  -ms-order: 2;
  order: 2;
}
#footer .footer-menu-bottom {
  width: 100%;
  margin-bottom: 20px;
  -webkit-order: 0;
  -ms-order: 0;
  order: 0;
}
#footer .footer-menu-bottom ul {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
#footer .footer-menu-bottom ul li {
  width: 47%;
  padding: 10px 0;
  font: 16px/20px 'poynterosdisplaybold';
}
#footer .footer-menu-bottom ul li .sub-menu {
  display: none;
}
@media (min-width: 768px) {
  #footer {
    background: #fff;
    color: #000;
  }
  #footer a {
    color: #000;
  }
  #footer .logo {
    background-position: 0 100%;
    margin: 0 0 24px;
  }
  #footer .footer-menu-categories {
    border-top: 1px solid #000000;
    padding: 60px 50px 0;
    display: block;
  }
  #footer .footer-menu-categories .menu > li {
    width: 28%;
    padding: 0;
  }
  #footer .footer-menu-categories .menu > li:nth-child(n+4) {
    margin-top: 30px;
  }
  #footer .footer-menu-categories .menu > li .sub-menu {
    display: block;
    margin-top: 30px;
  }
  #footer .footer-menu-categories .menu > li .sub-menu li {
    font: 9px/20px 'proxima_novasemibold';
    letter-spacing: 1px;
    text-transform: uppercase;
  }
  #footer .bottom {
    border-top: 1px solid #000000;
    padding-top: 23px;
    font-size: 12px;
    line-height: 19px;
  }
  #footer .bottom .floagency {
    background: url(../images/floagency.png) 0 0 no-repeat;
    background-size: 19px 19px;
    width: 19px;
    height: 19px;
  }
}
@media (min-width: 1024px) {
  #footer .footer-menu-categories {
    padding: 60px 0 0;
  }
  #footer .footer-menu-categories .menu > li {
    width: 13%;
  }
  #footer .footer-menu-categories .menu > li:nth-child(n+4) {
    margin-top: 0;
  }
  #footer .bottom .copyrights {
    -webkit-order: 0;
    -ms-order: 0;
    order: 0;
  }
  #footer .bottom .floagency {
    -webkit-order: 2;
    -ms-order: 2;
    order: 2;
  }
  #footer .footer-menu-bottom {
    width: auto;
    -webkit-order: 1;
    -ms-order: 1;
    order: 1;
    margin-bottom: 0;
  }
  #footer .footer-menu-bottom ul {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: -ms-flex;
    display: flex;
    -webkit-justify-content: flex-start;
    -ms-justify-content: flex-start;
    justify-content: flex-start;
  }
  #footer .footer-menu-bottom ul li {
    border-left: 1px solid #e6e6e6;
    margin-left: 10px;
    padding: 0 0 0 10px;
    line-height: 10px;
    width: auto;
    font: 12px/19px 'proxima_nova_rgregular';
  }
  #footer .footer-menu-bottom ul li:first-child {
    border-left: 0;
    padding-left: 0;
    margin-left: 0;
  }
  #footer .footer-menu-bottom ul li a {
    -webkit-transition: opacity 0.2s ease-in-out;
    -moz-transition: opacity 0.2s ease-in-out;
    -ms-transition: opacity 0.2s ease-in-out;
    -o-transition: opacity 0.2s ease-in-out;
    transition: opacity 0.2s ease-in-out;
  }
  #footer .footer-menu-bottom ul li a:hover {
    -moz-opacity: 1;
    -khtml-opacity: 1;
    -webkit-opacity: 1;
    opacity: 1;
  }
}
body.show-scroll-top #footer .scroll-top {
  background: #000000;
  color: #fff;
  position: fixed;
  bottom: 0;
  top: auto;
  z-index: 1000;
}
@media (min-width: 1060px) {
  body.show-scroll-top #footer .scroll-top {
    right: 50%;
    margin-right: -540px;
  }
}
body.show-scroll-top #footer .scroll-top:before {
  background-position: 0 100%;
}
body.show-scroll-top #footer.in-view .scroll-top {
  background: #f8f8f8;
  color: #000;
  position: absolute;
  bottom: auto;
  top: -16px;
}
body.show-scroll-top #footer.in-view .scroll-top:before {
  background-position: 0 0;
}
.paginator {
  position: relative;
  text-align: center;
  margin-top: 4.52%;
  font: 11px/12px 'AvenirLTStdBlack';
  text-transform: uppercase;
  color: #646362;
}
.paginator a {
  display: inline-block;
  margin: 0 2px;
  padding: 7px 10px;
  color: #646362;
}
.paginator a.active,
.paginator a:hover {
  color: #f5dc8e;
}
.paginator .next.prev-inactive,
.paginator .prev.prev-inactive,
.paginator .next.next-inactive,
.paginator .prev.next-inactive {
  display: none;
}
.paginator .next:hover,
.paginator .prev:hover {
  -moz-opacity: 0.8;
  -khtml-opacity: 0.8;
  -webkit-opacity: 0.8;
  opacity: 0.8;
}
.paginator .prev {
  left: 0;
}
.paginator .next {
  background-position: 100% 0;
  right: 0;
}
.paginator .pages {
  display: inline-block;
}
.paginator .pages a.active {
  background: #f5dc8e;
  color: #fff;
}
/* Page - Default Template
*******************************/
/* Error Page
*******************************/
#page404 {
  padding-top: 100px;
}
#page404 .main {
  background: url(../images/page404-bg.jpg) 50% 50% no-repeat;
  background-size: cover;
  max-width: 850px;
  margin: 0 auto;
  padding: 75px 20px 35px;
}
#page404 .main .wrapper {
  background: #f3efea;
  padding: 70px 20px 75px;
  text-align: center;
}
#page404 .entry-title {
  font-size: 28px;
  margin-bottom: 45px;
}
#page404 .back a {
  display: inline-block;
  background: #000000;
  color: #fff;
  padding: 10px 20px;
}
#page404 .bottom {
  text-align: center;
  margin-top: 80px;
}
#page404 .bottom ul {
  margin-top: 40px;
}
@media (min-width: 768px) {
  #page404 .main {
    padding: 75px 55px 35px;
  }
  #page404 .main .wrapper {
    padding: 70px 80px 75px;
  }
  #page404 .back a {
    padding: 10px 60px;
  }
  #page404 .bottom ul {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: -ms-flex;
    display: flex;
    -webkit-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  #page404 .bottom ul li {
    margin: 0 20px;
    font-family: 'proxima_novasemibold';
  }
}
/* Homepage
*******************************/
#homepage .slider {
  max-width: 1200px;
  margin: 0 auto 40px;
}
@media (max-width: 1280px) {
  #homepage .slider {
    max-width: 1000px;
  }
}
#homepage .slider .items {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
#homepage .slider .items .item {
  text-align: center;
  background: #f8f8f8;
  padding-bottom: 60px;
  width: 48%;
}
#homepage .slider .items .item:nth-child(n+3) {
  margin-top: 20px;
}
#homepage .slider .items .item .image img {
  width: 100%;
  -webkit-transition: opacity 0.2s ease-in-out;
  -moz-transition: opacity 0.2s ease-in-out;
  -ms-transition: opacity 0.2s ease-in-out;
  -o-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
}
#homepage .slider .items .item .image img:hover {
  -moz-opacity: 0.7;
  -khtml-opacity: 0.7;
  -webkit-opacity: 0.7;
  opacity: 0.7;
}
#homepage .slider .items .item .category {
  position: relative;
  margin-top: -10px;
  z-index: 2;
  margin-bottom: 20px;
  font: 9px/21px 'proxima_novasemibold';
}
#homepage .slider .items .item .category a {
  display: inline-block;
  background: #f3efea;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0 10px;
}
#homepage .slider .items .item h3 {
  font: 24px/30px 'poynterosdisplaybold';
  margin-bottom: 20px;
}
@media (max-width: 1280px) {
  #homepage .slider .items .item h3 {
    font: 20px/24px 'poynterosdisplaybold';
  }
}
#homepage .slider .bottom {
  position: relative;
  top: -31px;
}
#homepage .slider .bottom .wrapper {
  background: #000;
}
#homepage .slider .bottom .subscribe-button {
  background: #f3efea;
  font: 15px/62px 'proxima_novasemibold';
  padding-left: 60px;
  text-align: center;
  position: relative;
}
#homepage .slider .bottom .subscribe-button:before {
  background: url(../images/subscribe-icon.png) 0 0 no-repeat;
  background-size: 20px 20px;
  content: "";
  width: 20px;
  height: 20px;
  position: absolute;
  top: 21px;
  left: 20px;
}
#homepage .slider .bottom .subscribe-button:after {
  background: #000;
  content: "";
  width: 1px;
  height: 34px;
  position: absolute;
  top: 14px;
  left: 59px;
}
@media (min-width: 768px) {
  #homepage .slider .items .item {
    width: 24%;
  }
  #homepage .slider .items .item:nth-child(n+3) {
    margin-top: 0;
  }
  #homepage .slider .items .item h3 {
    padding: 0 40px;
  }
  #homepage .slider .bottom .subscribe-button {
    width: 310px;
  }
}
#homepage .popular-block-with-sidebar {
  margin-top: 80px;
}
#homepage .popular-block-with-sidebar .popular-block {
  position: relative;
}
#homepage .popular-block-with-sidebar .popular-block h2 {
  font: 24px/1 'poynterosdisplaybold';
  margin-bottom: 0;
  padding-bottom: 15px;
  border-bottom: 1px solid #000;
  margin-bottom: 37px;
}
#homepage .popular-block-with-sidebar .popular-block h2 span {
  font-family: 'PoynterText';
  font-style: italic;
  font-weight: 500;
}
#homepage .popular-block-with-sidebar .popular-block .items {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
#homepage .popular-block-with-sidebar .popular-block .items .item {
  width: 47%;
}
#homepage .popular-block-with-sidebar .popular-block .items .item .image {
  margin-bottom: 20px;
}
#homepage .popular-block-with-sidebar .popular-block .items .item .image img {
  width: 100%;
  -webkit-transition: opacity 0.2s ease-in-out;
  -moz-transition: opacity 0.2s ease-in-out;
  -ms-transition: opacity 0.2s ease-in-out;
  -o-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
}
#homepage .popular-block-with-sidebar .popular-block .items .item .image img:hover {
  -moz-opacity: 0.7;
  -khtml-opacity: 0.7;
  -webkit-opacity: 0.7;
  opacity: 0.7;
}
#homepage .popular-block-with-sidebar .popular-block .items .item .category {
  margin-bottom: 20px;
}
#homepage .popular-block-with-sidebar .popular-block .items .item .category a {
  display: inline-block;
  background: #f3efea;
  font: 9px/21px 'proxima_novasemibold';
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0 10px;
  -webkit-transition: all 0.2s aese-in-out;
  -moz-transition: all 0.2s aese-in-out;
  -ms-transition: all 0.2s aese-in-out;
  -o-transition: all 0.2s aese-in-out;
  transition: all 0.2s aese-in-out;
}
#homepage .popular-block-with-sidebar .popular-block .items .item .category a:hover {
  background: #000;
  color: #fff;
}
#homepage .popular-block-with-sidebar .popular-block .items .item h3 {
  font: 24px/30px 'poynterosdisplaybold';
  margin-bottom: 40px;
}
@media (max-width: 1280px) {
  #homepage .popular-block-with-sidebar .popular-block .items .item h3 {
    font: 20px/24px 'poynterosdisplaybold';
  }
}
#homepage .popular-block-with-sidebar .popular-block .more {
  text-align: center;
}
#homepage .popular-block-with-sidebar .popular-block .more a {
  border: 1px solid #000;
  display: inline-block;
  font: 11px/34px 'proxima_novasemibold';
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #000;
  padding: 0 40px;
}
#homepage .popular-block-with-sidebar .popular-block .more a:hover {
  -moz-opacity: 0.8;
  -khtml-opacity: 0.8;
  -webkit-opacity: 0.8;
  opacity: 0.8;
}
#homepage .popular-block-with-sidebar .sidebar {
  border-top: 1px solid #000000;
  margin-left: -25px;
  margin-right: -25px;
  padding: 45px 25px 0;
  margin-top: 30px;
}
#homepage .popular-block-with-sidebar .shop h2 {
  font: 24px/1 'poynterosdisplaybold';
  margin-bottom: 37px;
  text-align: center;
}
#homepage .popular-block-with-sidebar .shop .items {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
#homepage .popular-block-with-sidebar .shop .items .item {
  width: 43%;
  text-align: center;
}
#homepage .popular-block-with-sidebar .shop .items .item:nth-child(n+3) {
  margin-top: 20px;
}
#homepage .popular-block-with-sidebar .shop .items .item .image {
  margin-bottom: 20px;
}
#homepage .popular-block-with-sidebar .shop .items .item h3 {
  font: 9px/10px 'proxima_novasemibold';
  text-transform: uppercase;
  letter-spacing: 1px;
}
#homepage .popular-block-with-sidebar .shop .more {
  text-align: center;
  margin-top: 30px;
}
#homepage .popular-block-with-sidebar .shop .more a {
  font: 16px/1 'proxima_novasemibold';
  display: inline-block;
  padding-bottom: 10px;
  border-bottom: 1px solid #bbbdbd;
}
#homepage .popular-block-with-sidebar .widget {
  background: #f1f1f1;
  padding: 15px;
  margin-top: 30px;
  text-align: center;
}
@media (min-width: 768px) {
  #homepage .popular-block-with-sidebar .popular-block .more {
    position: absolute;
    top: 0;
    right: 0;
  }
  #homepage .popular-block-with-sidebar .popular-block .more a {
    border: 0;
    font: 10px/24px 'proxima_novasemibold';
    padding: 0;
  }
  #homepage .popular-block-with-sidebar .sidebar {
    border-top: 0;
    margin-left: 0;
    margin-right: 0;
    padding: 0;
  }
  #homepage .popular-block-with-sidebar .shop {
    border: 1px solid #000;
    padding: 30px 50px;
  }
  #homepage .popular-block-with-sidebar .shop .items .item {
    width: 20%;
  }
  #homepage .popular-block-with-sidebar .shop .items .item:nth-child(n+3) {
    margin-top: 0;
  }
}
@media (min-width: 1024px) {
  #homepage .popular-block-with-sidebar .container {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: -ms-flex;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
  }
  #homepage .popular-block-with-sidebar .popular-block {
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    margin-right: 40px;
  }
  #homepage .popular-block-with-sidebar .sidebar {
    width: 330px;
    margin-top: 0;
  }
  #homepage .popular-block-with-sidebar .shop {
    padding: 30px;
  }
  #homepage .popular-block-with-sidebar .shop .items .item {
    width: 40%;
  }
  #homepage .popular-block-with-sidebar .shop .items .item:nth-child(n+3) {
    margin-top: 30px;
  }
  #homepage .popular-block-with-sidebar .widget {
    display: block;
  }
}
#homepage .featured-product {
  margin-top: 60px;
}
#homepage .featured-product .wrapper {
  overflow: hidden;
  margin-left: -25px;
  margin-right: -25px;
}
#homepage .featured-product .info {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  height: 540px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  text-align: right;
  padding: 0 20px;
}
#homepage .featured-product .info .type {
  margin-bottom: 40px;
}
#homepage .featured-product .info .type a {
  background: #fff;
  font: 9px/21px 'proxima_novasemibold';
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  padding: 0 18px;
}
#homepage .featured-product .info h2 {
  font: 28px/41px 'poynterosdisplaybold';
}
#homepage .featured-product .info .text {
  font-size: 15px;
  line-height: 25px;
  margin-bottom: 30px;
}
#homepage .featured-product .info .more a {
  font: 16px/1 'proxima_novasemibold';
  display: inline-block;
  padding-bottom: 10px;
  border-bottom: 1px solid #bbbdbd;
}
#homepage .featured-product .image1,
#homepage .featured-product .image2 {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  float: left;
  height: 540px;
  display: none;
  position: relative;
}
#homepage .featured-product .image1 a,
#homepage .featured-product .image2 a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#homepage .featured-product .image1 {
  width: 361px;
}
#homepage .featured-product .image2 {
  width: 402px;
}
@media (min-width: 768px) {
  #homepage .featured-product .wrapper {
    margin-left: -30px;
    margin-right: -30px;
  }
  #homepage .featured-product .items {
    width: auto;
  }
  #homepage .featured-product .info {
    width: 29%;
    float: left;
    padding: 0 50px;
  }
  #homepage .featured-product .image1,
  #homepage .featured-product .image2 {
    display: block;
  }
  #homepage .featured-product .image1 {
    width: 33%;
  }
  #homepage .featured-product .image2 {
    width: 38%;
  }
}
@media (min-width: 1024px) {
  #homepage .featured-product .wrapper {
    margin-left: 0;
    margin-right: 0;
  }
}
#homepage .latest-stories {
  margin-top: 80px;
}
#homepage .latest-stories h2 {
  font: 24px/1 'poynterosdisplaybold';
  text-align: center;
  margin-bottom: 40px;
}
#homepage .latest-stories .navigation {
  margin-bottom: 50px;
}
#homepage .latest-stories .navigation ul {
  white-space: nowrap;
  margin-left: -25px;
  margin-right: -25px;
  overflow-x: auto;
  overflow-y: hidden;
}
#homepage .latest-stories .navigation ul li {
  display: inline-block;
  margin: 0 25px;
  font: 11px/1 'proxima_novasemibold';
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #000;
  position: relative;
  cursor: pointer;
}
#homepage .latest-stories .navigation ul li a {
  display: block;
  padding: 0 15px 11px;
  position: relative;
}
#homepage .latest-stories .navigation ul li a:before,
#homepage .latest-stories .navigation ul li a:after {
  background: #bbbdbd;
  content: "";
  height: 1px;
  position: absolute;
  bottom: 0;
  width: 0;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
#homepage .latest-stories .navigation ul li a:before {
  left: 50%;
}
#homepage .latest-stories .navigation ul li a:after {
  right: 50%;
}
#homepage .latest-stories .navigation ul li a:hover:before,
#homepage .latest-stories .navigation ul li a.active:before,
#homepage .latest-stories .navigation ul li a:hover:after,
#homepage .latest-stories .navigation ul li a.active:after {
  width: 50%;
}
@media (min-width: 1024px) {
  #homepage .latest-stories .navigation ul {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: -ms-flex;
    display: flex;
    -webkit-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
  }
}
#homepage .popular-block-full-width {
  margin-top: 60px;
}
#homepage .popular-block-full-width .wrapper {
  position: relative;
}
#homepage .popular-block-full-width h2 {
  font: 24px/1 'poynterosdisplaybold';
  margin-bottom: 0;
  padding-bottom: 15px;
  border-bottom: 1px solid #000;
  margin-bottom: 37px;
}
#homepage .popular-block-full-width h2 span {
  font-family: 'PoynterText';
  font-style: italic;
  font-weight: 500;
}
#homepage .popular-block-full-width .items .item {
  margin-top: 40px;
}
#homepage .popular-block-full-width .items .item:first-child {
  margin-top: 0;
}
#homepage .popular-block-full-width .items .item .image {
  margin-bottom: 20px;
}
#homepage .popular-block-full-width .items .item .category {
  margin-bottom: 20px;
}
#homepage .popular-block-full-width .items .item .category a {
  display: inline-block;
  background: #f3efea;
  font: 9px/21px 'proxima_novasemibold';
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0 10px;
}
#homepage .popular-block-full-width .items .item h3 {
  font: 24px/30px 'poynterosdisplaybold';
  margin-bottom: 0;
}
#homepage .popular-block-full-width .more {
  text-align: center;
}
#homepage .popular-block-full-width .more a {
  border: 1px solid #000;
  display: inline-block;
  font: 11px/34px 'proxima_novasemibold';
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #000;
  padding: 0 40px;
}
#homepage .popular-block-full-width .more a:hover {
  -moz-opacity: 0.8;
  -khtml-opacity: 0.8;
  -webkit-opacity: 0.8;
  opacity: 0.8;
}
@media (min-width: 768px) {
  #homepage .popular-block-full-width .items {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: -ms-flex;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
  }
  #homepage .popular-block-full-width .items .item {
    margin-top: 0;
    width: 49%;
  }
  #homepage .popular-block-full-width .more {
    position: absolute;
    top: 0;
    right: 0;
  }
  #homepage .popular-block-full-width .more a {
    border: 0;
    font: 10px/24px 'proxima_novasemibold';
    padding: 0;
  }
}
#homepage .subscribe {
  margin-top: 60px;
  background-position: 100% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 50px 0 30px;
}
#homepage .subscribe .wrapper {
  text-align: center;
  color: #fff;
}
#homepage .subscribe h2 {
  font: 45px/50px 'poynterosdisplaybold';
  margin-bottom: 25px;
}
#homepage .subscribe .text {
  background: url(../images/subscribe-arrows.png) 50% 100% no-repeat;
  background-size: 14px 10px;
  font: 24px/30px 'proxima_novalight';
  padding-bottom: 45px;
  margin-bottom: 25px;
}
#homepage .subscribe .form input[type=email] {
  background: none;
  border-bottom: 1px solid #f3efea;
  color: #ffffff;
  /* gray80 */
  /* Firefox 18- (one color)*/
  /* Firefox 19+ (double colons) */
}
#homepage .subscribe .form input[type=email]::-webkit-input-placeholder {
  text-transform: none;
}
#homepage .subscribe .form input[type=email]:-moz-placeholder {
  text-transform: none;
}
#homepage .subscribe .form input[type=email]::-moz-placeholder {
  text-transform: none;
}
#homepage .subscribe .form input[type=email]:-ms-input-placeholder {
  text-transform: none;
}
#homepage .subscribe .form input[type=submit] {
  font-size: 11px;
  height: 36px;
  display: inline-block;
  width: auto;
  padding: 0 40px;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 36px;
}
@media (min-width: 768px) {
  #homepage .subscribe {
    background-position: 50% 50%;
    border-bottom: 10px solid #000000;
  }
  #homepage .subscribe .container {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: -ms-flex;
    display: flex;
    -webkit-justify-content: flex-end;
    -ms-justify-content: flex-end;
    justify-content: flex-end;
  }
  #homepage .subscribe .wrapper {
    width: 430px;
  }
}
#homepage .handbook {
  margin-top: 60px;
}
#homepage .handbook .wrapper {
  position: relative;
}
#homepage .handbook h2 {
  font: 24px/1 'poynterosdisplaybold';
  margin-bottom: 0;
  padding-bottom: 15px;
  border-bottom: 1px solid #000;
  margin-bottom: 37px;
}
#homepage .handbook h2 span {
  font-family: 'PoynterText';
  font-style: italic;
  font-weight: 500;
}
#homepage .handbook .items {
  padding: 0 50px;
}
#homepage .handbook .items .owl-nav .owl-prev,
#homepage .handbook .items .owl-nav .owl-next {
  background: url(../images/handbooks-products-arrows.png) 0 0 no-repeat;
  background-size: 14px 11px;
  position: absolute;
  top: 50%;
  width: 7px;
  height: 11px;
  margin-top: -6px;
  text-indent: -9999px;
}
#homepage .handbook .items .owl-nav .owl-prev:hover,
#homepage .handbook .items .owl-nav .owl-next:hover {
  -moz-opacity: 0.5;
  -khtml-opacity: 0.5;
  -webkit-opacity: 0.5;
  opacity: 0.5;
}
#homepage .handbook .items .owl-nav .owl-prev.disabled,
#homepage .handbook .items .owl-nav .owl-next.disabled {
  -moz-opacity: 0.3;
  -khtml-opacity: 0.3;
  -webkit-opacity: 0.3;
  opacity: 0.3;
}
#homepage .handbook .items .owl-nav .owl-prev {
  left: 0;
}
#homepage .handbook .items .owl-nav .owl-next {
  background-position: 100% 0;
  right: 0;
}
#homepage .handbook .items .info {
  margin-top: 30px;
  position: relative;
}
#homepage .handbook .items .info .favorite {
  background: url(../images/handbook-favorite.png) 0 0 no-repeat;
  background-size: 14px 26px;
  position: absolute;
  top: 4px;
  right: 0;
  width: 14px;
  height: 13px;
  text-indent: -9999px;
}
#homepage .handbook .items .info .type {
  font: 11px/1 'proxima_novasemibold';
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
#homepage .handbook .items .info h3 {
  font: 16px/20px 'poynterosdisplaybold';
  margin-bottom: 2px;
  padding-right: 20px;
}
#homepage .handbook .items .info .bottom {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
}
#homepage .handbook .items .info .bottom .brand {
  font: 15px/1 'proxima_nova_rgregular';
}
#homepage .handbook .items .info .bottom .price {
  font: 14px/15px 'poynterosdisplaybold';
}
#homepage .handbook .more {
  text-align: center;
}
#homepage .handbook .more a {
  border: 1px solid #000;
  display: inline-block;
  font: 11px/34px 'proxima_novasemibold';
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #000;
  padding: 0 40px;
}
#homepage .handbook .more a:hover {
  -moz-opacity: 0.8;
  -khtml-opacity: 0.8;
  -webkit-opacity: 0.8;
  opacity: 0.8;
}
@media (min-width: 768px) {
  #homepage .handbook .more {
    position: absolute;
    top: 0;
    right: 0;
  }
  #homepage .handbook .more a {
    border: 0;
    font: 10px/24px 'proxima_novasemibold';
    padding: 0;
  }
}
.most-popular .wrapper {
  position: relative;
  padding-top: 43px;
}
.most-popular .wrapper:before {
  background: #f3efea;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 250px;
}
.most-popular .wrapper .tabs {
  text-align: center;
  position: relative;
  z-index: 1;
  margin-bottom: 40px;
}
.most-popular .wrapper .tabs ul {
  background: #fff;
  display: inline-block;
  white-space: nowrap;
  font: 10px/22px 'proxima_novasemibold';
  text-transform: uppercase;
  letter-spacing: 2px;
}
.most-popular .wrapper .tabs ul li {
  display: inline-block;
  padding: 2px 20px 0;
  cursor: pointer;
}
@media (min-width: 440px) {
  .most-popular .wrapper .tabs ul li {
    padding: 0 38px;
  }
}
.most-popular .wrapper .tabs ul li.active {
  background: #000;
  color: #fff;
}
.most-popular .wrapper h2 {
  position: relative;
  z-index: 1;
  text-align: center;
  font: 24px/1 'poynterosdisplaybold';
  margin-bottom: 50px;
}
.most-popular .wrapper .tabs-contents .tabs-content {
  display: none;
}
.most-popular .wrapper .tabs-contents .tabs-content:first-child {
  display: block;
}
.most-popular .wrapper .item {
  text-align: center;
}
.most-popular .wrapper .item .image {
  margin-bottom: 20px;
}
.most-popular .wrapper .item .image img {
  -webkit-transition: opacity 0.2s ease-in-out;
  -moz-transition: opacity 0.2s ease-in-out;
  -ms-transition: opacity 0.2s ease-in-out;
  -o-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
}
.most-popular .wrapper .item .image img:hover {
  -moz-opacity: 0.7;
  -khtml-opacity: 0.7;
  -webkit-opacity: 0.7;
  opacity: 0.7;
}
.most-popular .wrapper .item h3 {
  font: 28px/34px 'poynterosdisplaybold';
  margin-bottom: 15px;
}
.most-popular .wrapper .item .category {
  margin-bottom: 10px;
}
.most-popular .wrapper .item .category a {
  display: inline-block;
  background: #f3efea;
  font: 9px/21px 'proxima_novasemibold';
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0 10px;
  -webkit-transition: all 0.2s aese-in-out;
  -moz-transition: all 0.2s aese-in-out;
  -ms-transition: all 0.2s aese-in-out;
  -o-transition: all 0.2s aese-in-out;
  transition: all 0.2s aese-in-out;
}
.most-popular .wrapper .item .category a:hover {
  background: #000;
  color: #fff;
}
.most-popular .wrapper .flexslider {
  padding: 0 25px;
}
.most-popular .wrapper .flexslider .flex-prev,
.most-popular .wrapper .flexslider .flex-next {
  background: url(../images/slider-white-arrows.png) 0 0 no-repeat;
  background-size: 50px 8px;
  width: 25px;
  height: 8px;
  text-indent: -9999px;
  position: absolute;
  bottom: -110px;
}
.most-popular .wrapper .flexslider .flex-prev {
  right: 50px;
}
.most-popular .wrapper .flexslider .flex-next {
  background-position: 100% 0;
  right: 0;
}
@media (min-width: 768px) {
  .most-popular .wrapper .flexslider {
    padding: 0 30px;
  }
  .most-popular .wrapper .flexslider .flex-prev {
    right: 90px;
  }
  .most-popular .wrapper .flexslider .flex-next {
    right: 34px;
  }
}
.most-popular .wrapper .navigation {
  background: #000;
  color: #fff;
  margin-left: -25px;
  margin-right: -25px;
  padding: 0 25px;
}
@media (min-width: 768px) {
  .most-popular .wrapper .navigation {
    margin-left: -30px;
    margin-right: -30px;
    padding: 0 60px;
  }
}
.most-popular .wrapper .navigation ul {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
  padding: 20px 0;
}
.most-popular .wrapper .navigation ul li {
  margin-left: 25px;
  cursor: pointer;
  padding-top: 4px;
  border-bottom: 2px solid #000;
  padding-bottom: 4px;
}
.most-popular .wrapper .navigation ul li:first-child {
  margin-left: 0;
}
.most-popular .wrapper .navigation ul li.flex-active {
  border-color: #fff;
}
.most-popular .wrapper .navigation ul li .num {
  font: 12px/1 'proxima_nova_rgregular';
}
.most-popular .wrapper .navigation ul li h3 {
  display: none;
}
@media (min-width: 1024px) {
  .most-popular .wrapper {
    padding-top: 0;
  }
  .most-popular .wrapper:before {
    display: none;
  }
  .most-popular .wrapper .tabs {
    position: absolute;
    top: 25px;
    right: 0;
    width: 320px;
    text-align: left;
    z-index: 3;
  }
  .most-popular .wrapper .tabs ul li {
    padding: 0 30px;
  }
  .most-popular .wrapper h2 {
    position: absolute;
    top: 70px;
    right: 0;
    width: 300px;
    text-align: left;
    padding-bottom: 20px;
    margin-bottom: 0;
    z-index: 3;
  }
  .most-popular .wrapper h2:before {
    background: #000;
    content: "";
    width: 60px;
    height: 3px;
    position: absolute;
    bottom: 0;
    left: 0;
  }
  .most-popular .wrapper .tabs-content .tabs-content-wrapper {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: -ms-flex;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
  }
  .most-popular .wrapper .tabs-content .flexslider {
    padding: 25px 0 0;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    z-index: 2;
  }
  .most-popular .wrapper .tabs-content .item h3 {
    padding: 0 80px;
  }
  .most-popular .wrapper .tabs-content .navigation {
    background: none;
    width: 360px;
    color: #000;
    margin: 0;
    padding: 0;
    position: relative;
    z-index: 1;
  }
  .most-popular .wrapper .tabs-content .navigation ul {
    background: #f3efea;
    margin: 0;
    margin-left: -45px;
    padding: 140px 0 20px;
    display: block;
  }
  .most-popular .wrapper .tabs-content .navigation ul li {
    border: 0;
    border-right: 4px solid #f3efea;
    padding: 15px 20px 15px 70px;
    margin-left: 0;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: -ms-flex;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
  }
  .most-popular .wrapper .tabs-content .navigation ul li .num {
    width: 35px;
    line-height: 24px;
  }
  .most-popular .wrapper .tabs-content .navigation ul li h3 {
    display: block;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    font: 20px/24px 'poynterosdisplay_semiboldRg';
    margin-bottom: 0;
  }
  .most-popular .wrapper .tabs-content .navigation ul li.flex-active {
    background: #fff;
    border-color: #000;
  }
}
.page-header .page-title {
  padding-top: 70px;
  font: 50px/55px 'poynterosdisplaybold';
  text-align: center;
}
.page-header .page-subtitle {
  text-align: center;
  font: 15px/18px 'proxima_novasemibold';
  max-width: 420px;
  margin: 0 auto 90px;
}
.page-header.with-subtitle .page-title {
  margin-bottom: 15px;
}
#about .container {
  max-width: 960px;
}
#about .navigation {
  margin-top: 80px;
  margin-bottom: 60px;
}
#about .navigation ul {
  white-space: nowrap;
  margin-left: -25px;
  margin-right: -25px;
  overflow-x: auto;
  overflow-y: hidden;
}
#about .navigation ul li {
  display: inline-block;
  margin: 0 25px;
  font: 11px/1 'proxima_novasemibold';
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #000;
  padding-bottom: 12px;
  -moz-opacity: 0.2;
  -khtml-opacity: 0.2;
  -webkit-opacity: 0.2;
  opacity: 0.2;
  position: relative;
  cursor: pointer;
}
#about .navigation ul li:before,
#about .navigation ul li:after {
  background: #000;
  content: "";
  height: 3px;
  position: absolute;
  bottom: 0;
  width: 0;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
#about .navigation ul li:before {
  left: 50%;
}
#about .navigation ul li:after {
  right: 50%;
}
#about .navigation ul li:hover,
#about .navigation ul li.active {
  -moz-opacity: 1;
  -khtml-opacity: 1;
  -webkit-opacity: 1;
  opacity: 1;
}
#about .navigation ul li:hover:before,
#about .navigation ul li.active:before,
#about .navigation ul li:hover:after,
#about .navigation ul li.active:after {
  width: 50%;
}
@media (min-width: 768px) {
  #about .navigation ul {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: -ms-flex;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
  }
}
#about .blocks > div {
  display: none;
}
#about .blocks > div:first-child {
  display: block;
}
#about .manifesto .image {
  position: relative;
}
#about .manifesto .image .over {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
#about .manifesto .image h2 {
  text-align: center;
  margin-bottom: 0;
  font: 50px/55px 'poynterosdisplaybold';
  color: #fff;
}
#about .manifesto .text {
  margin-top: 80px;
  text-align: center;
  font: 24px/33px 'proxima_novalight';
}
#about .manifesto .bottom-text {
  margin-top: 40px;
  text-align: center;
  font: 24px/33px 'poynterosdisplaybold';
}
#about .company .top .images {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
}
#about .company .top .images .image {
  width: 50%;
  margin-left: 5px;
}
#about .company .top .images .image:first-child {
  margin-left: 0;
}
#about .company .top .logo {
  background: #f3efea;
  height: 0;
  padding-bottom: 68%;
  position: relative;
  margin-top: 5px;
  margin-bottom: 5px;
}
#about .company .top .logo .over {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
#about .company .top .logo span {
  background: url(../images/about-logo.png) 0 0 no-repeat;
  background-size: 204px 104px;
  display: block;
  width: 204px;
  height: 104px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  #about .company .top {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: -ms-flex;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
  }
  #about .company .top .images {
    width: 27%;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  #about .company .top .images .image {
    width: 100%;
    margin-left: 0;
    margin-top: 15px;
  }
  #about .company .top .images .image:first-child {
    margin-top: 0;
  }
  #about .company .top .logo {
    width: 46%;
    margin: 0 15px;
    height: auto;
    padding-bottom: 0;
  }
}
#about .company h2.title {
  margin-top: 60px;
  margin-bottom: 60px;
  text-align: center;
  font: 24px/1 'poynterosdisplaybold';
}
#about .company .center-image {
  margin-left: -25px;
  margin-right: -25px;
  margin-top: 60px;
  margin-bottom: 60px;
}
#about .company .text,
#about .company .bottom-text {
  font: 24px/33px 'proxima_novalight';
}
@media (min-width: 768px) {
  #about .company .center-image {
    margin-left: -30px;
    margin-right: -30px;
  }
}
@media (min-width: 1024px) {
  #about .company .text {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: -ms-flex;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
  }
  #about .company .text .col {
    width: 42%;
  }
  #about .company .center-image {
    margin-left: 0;
    margin-right: 0;
  }
  #about .company .bottom-text {
    background: url(../images/about-bottom-text-bg.png) 50% 50% no-repeat;
    background-size: contain;
    padding: 80px 0;
  }
}
#about .cofounder .items .item {
  margin-top: 55px;
}
#about .cofounder .items .item:first-child {
  margin-top: 0;
}
#about .cofounder .items .item .image {
  margin-bottom: 30px;
}
#about .cofounder .items .item h2 {
  font: 24px/30px 'poynterosdisplaybold';
  margin-bottom: 10px;
}
#about .cofounder .items .item .position {
  font: 11px/1 'proxima_novasemibold';
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #000;
  -moz-opacity: 0.2;
  -khtml-opacity: 0.2;
  -webkit-opacity: 0.2;
  opacity: 0.2;
  margin-bottom: 34px;
}
#about .cofounder .items .item .toggle {
  margin-top: 20px;
}
#about .cofounder .items .item .toggle span {
  font: 16px/1 'proxima_novasemibold';
  display: inline-block;
  padding-bottom: 10px;
  border-bottom: 1px solid #bbbdbd;
}
@media (min-width: 768px) {
  #about .cofounder .items {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: -ms-flex;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
  }
  #about .cofounder .items .item {
    width: 44%;
    margin-top: 0;
  }
  #about .cofounder .items .item:nth-child(n+3) {
    margin-top: 55px;
  }
}
#about .team .items .item {
  margin-top: 55px;
  text-align: center;
}
#about .team .items .item:first-child {
  margin-top: 0;
}
#about .team .items .item .image {
  width: 195px;
  margin: 0 auto 30px;
}
#about .team .items .item h2 {
  font: 24px/30px 'poynterosdisplaybold';
  margin-bottom: 10px;
}
#about .team .items .item .position {
  font: 11px/1 'proxima_novasemibold';
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #000;
  -moz-opacity: 0.2;
  -khtml-opacity: 0.2;
  -webkit-opacity: 0.2;
  opacity: 0.2;
  margin-bottom: 10px;
}
#about .team .items .item .social {
  margin-bottom: 40px;
}
#about .team .items .item .social ul {
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
}
#about .team .items .item .social ul li {
  margin: 0 10px;
}
@media (min-width: 768px) {
  #about .team .items {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: -ms-flex;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  #about .team .items .item {
    width: 44%;
    margin-top: 0;
  }
  #about .team .items .item:nth-child(n+3) {
    margin-top: 55px;
  }
}
#about .writers .items {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
#about .writers .items .item {
  width: 46%;
  text-align: center;
}
#about .writers .items .item:nth-child(n+3) {
  margin-top: 50px;
}
#about .writers .items .item .image {
  max-width: 175px;
  margin: 0 auto 30px;
}
#about .writers .items .item .image img {
  width: 100%;
}
#about .writers .items .item h2 {
  font: 22px/30px 'poynterosdisplaybold';
  margin-bottom: 10px;
}
#about .writers .items .item .position {
  font: 11px/1 'proxima_novasemibold';
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #000;
  -moz-opacity: 0.2;
  -khtml-opacity: 0.2;
  -webkit-opacity: 0.2;
  opacity: 0.2;
  margin-bottom: 10px;
}
#about .writers .items .item .social {
  margin-bottom: 40px;
}
#about .writers .items .item .social ul {
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
}
#about .writers .items .item .social ul li {
  margin: 0 10px;
}
@media (min-width: 768px) {
  #about .writers .items .item {
    width: 24%;
  }
  #about .writers .items .item:nth-child(n+3) {
    margin-top: 0;
  }
  #about .writers .items .item:nth-child(n+5) {
    margin-top: 50px;
  }
}
@media (min-width: 1024px) {
  #about .writers .items .item {
    width: 19%;
  }
  #about .writers .items .item:nth-child(n+5) {
    margin-top: 0;
  }
  #about .writers .items .item:nth-child(n+6) {
    margin-top: 50px;
  }
}
/* Contact Form
*******************************/
#contact-form {
  padding-top: 50px;
}
#contact-form .container {
  max-width: 920px;
}
#contact-form .back {
  text-align: center;
  font: 16px/1 'proxima_novasemibold';
  text-transform: lowercase;
  padding-bottom: 11px;
  position: relative;
}
#contact-form .back:before {
  background: #bbbdbd;
  content: "";
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 62px;
  margin-left: -31px;
}
#contact-form .left .image {
  margin-bottom: 50px;
}
#contact-form .left .title {
  text-align: center;
  font: 9px/1 'proxima_novasemibold';
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 29px;
}
#contact-form .left .social ul {
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
}
#contact-form .left .social ul li {
  margin: 0 10px;
}
#contact-form .form {
  margin-top: 50px;
}
#contact-form .form .inputs .input {
  margin-bottom: 21px;
  position: relative;
}
#contact-form .form .inputs .submit {
  position: relative;
}
#contact-form .form .inputs .submit .ajax-loader {
  position: absolute;
  top: 30px;
  right: -20px;
}
#contact-form .form span.wpcf7-form-control-wrap {
  display: block;
}
#contact-form .form span.wpcf7-form-control-wrap.message .wpcf7-not-valid-tip {
  top: auto;
  bottom: 10px;
}
#contact-form .form .wpcf7-not-valid-tip {
  padding: 0;
  border: 0;
  position: absolute;
  top: -17px;
  right: 0;
  font: 12px/18px Arial;
  color: red;
}
#contact-form .form .wpcf7-response-output {
  margin: 0;
  padding: 0;
  border: 0;
  margin-top: 10px;
  text-align: center;
  line-height: 24px;
}
@media (min-width: 768px) {
  #contact-form .wrapper {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: -ms-flex;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
  }
  #contact-form .wrapper .left {
    width: 46%;
  }
  #contact-form .wrapper .form {
    width: 46%;
    margin-top: 0;
  }
}
#contact .container {
  max-width: 920px;
}
#contact .top {
  padding: 0 25px;
}
#contact .top .item {
  background: #f7f7f7;
  padding: 0 18px 55px;
  position: relative;
  text-align: center;
  margin-top: 60px;
}
#contact .top .item:first-child {
  margin-top: 0;
}
#contact .top .item:before {
  background: #fff;
  content: "";
  position: absolute;
  top: 0;
  height: 50px;
  left: 0;
  right: 0;
}
#contact .top .item .image {
  position: relative;
  z-index: 1;
  margin-bottom: 50px;
}
#contact .top .item h2 {
  font: 28px/1 'poynterosdisplaybold';
}
#contact .top .item .text {
  font-size: 15px;
  line-height: 25px;
}
#contact .top .item .more a {
  font: 16px/1 'proxima_novasemibold';
  display: inline-block;
  padding-bottom: 10px;
  border-bottom: 1px solid #bbbdbd;
}
#contact .story {
  margin-top: 60px;
  background: #f3efea;
  position: relative;
  margin-left: -25px;
  margin-right: -25px;
  padding: 0 25px 50px;
}
#contact .story:before {
  background: #fff;
  content: "";
  position: absolute;
  top: 0;
  height: 50px;
  left: 0;
  right: 0;
}
#contact .story .image {
  position: relative;
  z-index: 1;
  margin-bottom: 50px;
}
#contact .story .info {
  text-align: center;
}
#contact .story .info h2 {
  font: 28px/1 'poynterosdisplaybold';
}
#contact .story .info .more a {
  font: 16px/1 'proxima_novasemibold';
  display: inline-block;
  padding-bottom: 10px;
  border-bottom: 1px solid #bbbdbd;
}
#contact .contact {
  margin-top: 100px;
}
#contact .contact .col {
  margin-top: 130px;
  text-align: center;
}
#contact .contact .col:first-child {
  margin-top: 0;
}
#contact .contact .col .title {
  font: 9px/1 'proxima_novasemibold';
  text-transform: uppercase;
  margin-bottom: 15px;
}
#contact .contact .col .value {
  font: 11px/19px 'proxima_novasemibold';
  text-transform: uppercase;
}
@media (min-width: 768px) {
  #contact .top {
    padding: 0;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: -ms-flex;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
  }
  #contact .top .item {
    width: 29%;
    margin-top: 0;
  }
  #contact .story {
    background: none;
    margin: 85px 0 0;
    padding: 0;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: -ms-flex;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
  }
  #contact .story:before {
    display: none;
  }
  #contact .story .image {
    width: 60%;
    margin-bottom: 0;
  }
  #contact .story .info {
    background: #f3efea;
    width: 40%;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: -ms-flex;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    position: relative;
  }
  #contact .story .info:before {
    background: #f3efea;
    content: "";
    position: absolute;
    top: -37px;
    right: 0;
    bottom: -37px;
    left: -56px;
  }
  #contact .story .info .wrapper {
    position: relative;
    z-index: 1;
  }
  #contact .contact {
    margin-top: 135px;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: -ms-flex;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
  }
  #contact .contact .col {
    width: 33.33%;
    border-left: 1px solid #e8e8e8;
    padding: 0;
    margin-top: 0;
  }
  #contact .contact .col:first-child {
    border-left: 0;
  }
}
/* Press
*******************************/
#press .grid {
  margin-left: -30px;
  margin-right: -30px;
}
#press .grid:before,
#press .grid:after {
  content: " ";
  display: table;
}
#press .grid:after {
  clear: both;
}
#press .grid .grid-sizer,
#press .grid .grid-item {
  width: 100%;
}
@media (min-width: 440px) {
  #press .grid .grid-sizer,
  #press .grid .grid-item {
    width: 50%;
  }
}
@media (min-width: 1024px) {
  #press .grid .grid-sizer,
  #press .grid .grid-item {
    width: 33.33%;
  }
}
#press .grid .grid-item {
  float: left;
  margin-bottom: 60px;
}
#press .press-item {
  padding: 0 30px;
  text-align: center;
}
#press .press-item .image {
  margin-bottom: 30px;
}
#press .press-item h2 {
  font: 20px/24px 'poynterosdisplaybold';
  position: relative;
  /*            &:before{
                background: #bbbdbd;
                content: "";
                height: 1px;
                width: 174px;
                position: absolute;
                bottom: 0;
                left: 50%;
                margin-left: -87px;
            }*/
}
#press .press-item .category,
#press .press-item .date {
  font: 9px/20px 'proxima_novasemibold';
  text-transform: uppercase;
  letter-spacing: 1px;
}
/* Products
*******************************/
#products .categories li {
  font-size: 12px;
  font-family: 'proxima_novasemibold';
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 5px;
  position: relative;
}
#products .categories li:first-child {
  margin-top: 0;
}
#products .categories li a {
  display: block;
}
#products .categories li.has_children:before {
  background: url(../images/shop-categories-arrow.png) 0 0 no-repeat;
  background-size: 6px 4px;
  content: "";
  width: 6px;
  height: 4px;
  position: absolute;
  top: 8px;
  right: 0;
}
#products .categories li ul {
  padding-left: 10px;
  display: none;
  margin-top: 10px;
}
#products .categories li ul li {
  font-size: 12px;
  text-transform: uppercase;
}
#products .categories li ul li a {
  color: #9e9e9e;
}
#products .categories li ul li a:hover {
  color: #231f20;
}
#products .categories li ul li.current-cat a {
  color: #231f20;
}
#products .categories li.current-cat ul,
#products .categories li.current-cat-parent ul {
  display: block;
}
#products .main {
  margin-top: 30px;
}
#products .items {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: -14px;
  margin-right: -14px;
}
#products .items .item {
  padding: 0 14px;
  text-align: center;
  width: 100%;
}
#products .items .item .image {
  position: relative;
}
#products .items .item .image ing {
  width: 100%;
}
#products .items .item .image a {
  background: rgba(255, 255, 255, 0.8);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 0 20px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -moz-opacity: 0;
  -khtml-opacity: 0;
  -webkit-opacity: 0;
  opacity: 0;
  -webkit-transition: opacity 0.2s easy-in-out;
  -moz-transition: opacity 0.2s easy-in-out;
  -ms-transition: opacity 0.2s easy-in-out;
  -o-transition: opacity 0.2s easy-in-out;
  transition: opacity 0.2s easy-in-out;
}
#products .items .item .image a:hover {
  color: #000;
  -moz-opacity: 1;
  -khtml-opacity: 1;
  -webkit-opacity: 1;
  opacity: 1;
}
#products .items .item .image h2 {
  font: 20px/24px 'poynterosdisplaybold';
  padding-top: 30px;
}
#products .items .item .image .price {
  font: 11px/1 'proxima_novasemibold';
  text-transform: uppercase;
  letter-spacing: 1px;
}
#products .items .item:nth-child(n+2) {
  margin-top: 28px;
}
#products .more {
  margin-top: 45px;
  text-align: center;
}
#products .more a {
  background: #000;
  border: 1px solid #000;
  font: 11px/34px 'proxima_novasemibold';
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  padding: 0 40px;
  color: #fff;
}
#products .more a.loading {
  background: #9a9a9a;
  border: 1px solid #9a9a9a;
  color: #fff;
  cursor: progress;
}
#products .more a:hover {
  background: #fff;
  color: #000;
}
@media (min-width: 768px) {
  #products .page-header {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: -ms-flex;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  #products .page-header .page-title {
    width: 220px;
    padding-right: 90px;
  }
  #products .page-header .page-subtitle {
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding-left: 66px;
    max-width: 100%;
    padding-top: 90px;
  }
  #products .content {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: -ms-flex;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  #products .content .categories {
    width: 220px;
    padding-right: 90px;
  }
  #products .content .main {
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding-left: 65px;
    border-left: 1px solid #ededed;
    margin-top: 0;
  }
  #products .items .item {
    width: 50%;
  }
  #products .items .item:nth-child(n+2) {
    margin-top: 0;
  }
  #products .items .item:nth-child(n+3) {
    margin-top: 28px;
  }
}
@media (min-width: 1024px) {
  #products .items .item {
    width: 33.33%;
  }
  #products .items .item:nth-child(n+3) {
    margin-top: 0;
  }
  #products .items .item:nth-child(n+4) {
    margin-top: 28px;
  }
}
/* Instagram Items
*******************************/
#instagram-items .main {
  margin-top: 30px;
}
#instagram-items .items {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: -14px;
  margin-right: -14px;
}
#instagram-items .items .item {
  padding: 0 14px;
  text-align: center;
  width: 100%;
}
#instagram-items .items .item .image {
  position: relative;
}
#instagram-items .items .item .image ing {
  width: 100%;
}
#instagram-items .items .item .image a {
  background: rgba(255, 255, 255, 0.8);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 0 20px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -moz-opacity: 0;
  -khtml-opacity: 0;
  -webkit-opacity: 0;
  opacity: 0;
  -webkit-transition: opacity 0.2s easy-in-out;
  -moz-transition: opacity 0.2s easy-in-out;
  -ms-transition: opacity 0.2s easy-in-out;
  -o-transition: opacity 0.2s easy-in-out;
  transition: opacity 0.2s easy-in-out;
}
#instagram-items .items .item .image a:hover {
  color: #000;
  -moz-opacity: 1;
  -khtml-opacity: 1;
  -webkit-opacity: 1;
  opacity: 1;
}
#instagram-items .items .item .image h2 {
  font: 20px/24px 'poynterosdisplaybold';
  padding-top: 30px;
}
#instagram-items .items .item .image .price {
  font: 11px/1 'proxima_novasemibold';
  text-transform: uppercase;
  letter-spacing: 1px;
}
#instagram-items .items .item:nth-child(n+2) {
  margin-top: 28px;
}
#instagram-items .more {
  margin-top: 45px;
  text-align: center;
}
#instagram-items .more a {
  background: #000;
  border: 1px solid #000;
  font: 11px/34px 'proxima_novasemibold';
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  padding: 0 40px;
  color: #fff;
}
#instagram-items .more a.loading {
  background: #9a9a9a;
  border: 1px solid #9a9a9a;
  color: #fff;
  cursor: progress;
}
#instagram-items .more a:hover {
  background: #fff;
  color: #000;
}
@media (min-width: 768px) {
  #instagram-items .page-header .page-subtitle {
    max-width: 100%;
  }
  #instagram-items .content .main {
    margin-top: 0;
  }
  #instagram-items .items .item {
    width: 50%;
  }
  #instagram-items .items .item:nth-child(n+2) {
    margin-top: 0;
  }
  #instagram-items .items .item:nth-child(n+3) {
    margin-top: 28px;
  }
}
@media (min-width: 1024px) {
  #instagram-items .items .item {
    width: 33.33%;
  }
  #instagram-items .items .item:nth-child(n+3) {
    margin-top: 0;
  }
  #instagram-items .items .item:nth-child(n+4) {
    margin-top: 28px;
  }
}
#advertise .featured-image {
  margin-left: -25px;
  margin-right: -25px;
}
@media (min-width: 768px) {
  #advertise .featured-image {
    margin-left: -30px;
    margin-right: -30px;
  }
}
@media (min-width: 1024px) {
  #advertise .featured-image {
    margin-left: 0;
    margin-right: 0;
  }
}
#advertise .main {
  text-align: center;
}
#advertise .main .page-title {
  margin-bottom: 40px;
}
#advertise .main .statistic-item {
  position: relative;
  min-height: 150px;
  text-align: center;
  padding-top: 35px;
  margin-top: 120px;
}
#advertise .main .statistic-item:before {
  background: #bfbfbf;
  content: "";
  width: 1px;
  position: absolute;
  top: -80px;
  left: 50%;
  height: 60px;
}
#advertise .main .statistic-item .number {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  font: 150px/1 'poynterosdisplaybold';
  color: #f3efea;
  -moz-opacity: 0.5;
  -khtml-opacity: 0.5;
  -webkit-opacity: 0.5;
  opacity: 0.5;
}
#advertise .main .statistic-item .info {
  position: relative;
  z-index: 1;
}
#advertise .main .statistic-item .info .named {
  font: 11px/1 'proxima_novasemibold';
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
#advertise .main .statistic-item .info .name {
  font: 25px/28px 'poynterosdisplaybold';
  margin-bottom: 20px;
}
#advertise .main .statistic-item .info .named_by {
  font: 11px/24px 'proxima_novasemibold';
  letter-spacing: 2px;
  text-transform: uppercase;
}
@media (min-width: 1024px) {
  #advertise .main .small-items {
    margin-top: 45px;
  }
  #advertise .main .small-items .rows .row {
    border-top: 1px solid #bfbfbf;
    margin-top: 70px;
    padding-top: 70px;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: -ms-flex;
    display: flex;
    -webkit-justify-content: flex-start;
    -ms-justify-content: flex-start;
    justify-content: flex-start;
  }
  #advertise .main .small-items .rows .row:first-child {
    border-top: 0;
    margin-top: 0;
    padding-top: 0;
  }
  #advertise .main .small-items .rows .row .col {
    width: 50%;
    border-left: 1px solid #bfbfbf;
  }
  #advertise .main .small-items .rows .row .col:first-child {
    border-left: 0;
  }
  #advertise .main .large-items {
    border-top: 1px solid #bfbfbf;
    margin-top: 70px;
    padding-top: 70px;
  }
  #advertise .main .statistic-item {
    margin-top: 0;
  }
  #advertise .main .statistic-item:before {
    display: none;
  }
  #advertise .main .statistic-item .info .name {
    max-width: 340px;
    margin: 0 auto 20px;
  }
}
#advertise .partnered {
  margin-top: 70px;
  position: relative;
}
#advertise .partnered .container {
  position: relative;
  z-index: 1;
}
#advertise .partnered .wrapper {
  border-top: 1px solid #bfbfbf;
  margin-left: -25px;
  margin-right: -25px;
  padding-top: 70px;
}
#advertise .partnered .wrapper .info {
  padding: 0 25px;
}
#advertise .partnered .wrapper .info h2 {
  font: 35px/44px 'poynterosdisplaybold';
}
#advertise .partnered .wrapper .items {
  background: #000;
  margin-top: 60px;
  padding: 50px 25px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
}
#advertise .partnered .wrapper .items .item {
  width: 48%;
  text-align: center;
  padding: 20px 0;
}
#advertise .partnered .image {
  margin-left: -25px;
  margin-right: -25px;
}
@media (min-width: 768px) {
  #advertise .partnered .wrapper,
  #advertise .partnered .image {
    margin-left: -30px;
    margin-right: -30px;
  }
  #advertise .partnered .wrapper .info {
    padding: 0 30px;
  }
}
@media (min-width: 1024px) {
  #advertise .partnered:before {
    background: #000;
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 200px;
    left: 50%;
  }
  #advertise .partnered .wrapper,
  #advertise .partnered .image {
    margin-left: 0;
    margin-right: 0;
  }
  #advertise .partnered .wrapper {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: -ms-flex;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
  }
  #advertise .partnered .wrapper .info {
    width: 50%;
    padding-left: 90px;
    padding-right: 50px;
  }
  #advertise .partnered .wrapper .items {
    background: none;
    width: 50%;
    margin-top: 0;
    padding: 0 0 70px 30px;
  }
}
#advertise .demographics {
  margin-top: 70px;
}
#advertise .demographics h2 {
  font: 35px/40px 'poynterosdisplaybold';
  text-align: center;
}
#advertise .demographics .text {
  font: 24px/32px 'proxima_novalight';
}
#advertise .demographics .left {
  text-align: center;
}
#advertise .demographics .left .num {
  font: 30px/1 'poynterosdisplaybold';
  margin: 30px 0 20px;
}
#advertise .demographics .left .desc {
  font-size: 20px;
  line-height: 24px;
  margin-bottom: 60px;
}
@media (min-width: 768px) {
  #advertise .demographics .wrapper {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: -ms-flex;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
  }
  #advertise .demographics .wrapper h2 {
    position: absolute;
    right: 0;
    width: 50%;
    top: 0;
    text-align: left;
  }
  #advertise .demographics .wrapper .left {
    width: 50%;
    padding-right: 40px;
  }
  #advertise .demographics .wrapper .text {
    width: 50%;
    padding-top: 100px;
  }
}
@media (min-width: 1024px) {
  #advertise .demographics .wrapper .text {
    padding-right: 136px;
  }
  #advertise .demographics .left .num,
  #advertise .demographics .left .desc,
  #advertise .demographics .left .second {
    width: 340px;
  }
}
#advertise .social-network {
  margin-top: 100px;
  text-align: center;
}
#advertise .social-network ul li {
  margin-top: 38px;
  padding-top: 85px;
  position: relative;
}
#advertise .social-network ul li:before {
  background: #bfbfbf;
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 60px;
}
#advertise .social-network ul li:first-child {
  margin-top: 0;
  padding-top: 0;
}
#advertise .social-network ul li:first-child:before {
  display: none;
}
#advertise .social-network ul li .network {
  font: 25px/1 'poynterosdisplayroman';
  margin-bottom: 30px;
}
#advertise .social-network ul li .num {
  font: 30px/1 'poynterosdisplaybold';
}
#advertise .social-network .text {
  margin: 100px auto 0;
  max-width: 800px;
}
#advertise .social-network .more {
  margin-top: 45px;
}
#advertise .social-network .more a {
  background: #000;
  border: 1px solid #000;
  font: 11px/34px 'proxima_novasemibold';
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  padding: 0 40px;
  color: #fff;
}
#advertise .social-network .more a:hover {
  background: #fff;
  color: #000;
}
@media (min-width: 768px) {
  #advertise .social-network ul {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: -ms-flex;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
    border-bottom: 1px solid #bfbfbf;
  }
  #advertise .social-network ul li {
    border-left: 1px solid #bfbfbf;
    width: 25%;
    margin-top: 0;
    padding: 10px 0 50px;
  }
  #advertise .social-network ul li:first-child {
    border-left: 0;
    padding-top: 10px;
  }
  #advertise .social-network ul li:before {
    display: none;
  }
}
#advertise .media-kit {
  border-top: 1px solid #bfbfbf;
  padding-top: 60px;
  margin-top: 40px;
}
#advertise .media-kit .title {
  font: 35px/1 'poynterosdisplaybold';
}
#advertise .media-kit .download {
  margin-top: 40px;
}
#advertise .media-kit .download a {
  background: #000000;
  border: 1px solid #000;
  color: #fff;
  display: inline-block;
  font: 16px/47px 'proxima_novasemibold';
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0 60px 0 35px;
  position: relative;
}
#advertise .media-kit .download a:before {
  background: url(../images/press-download-icon.png) 0 0 no-repeat;
  background-size: 21px 38px;
  content: "";
  width: 21px;
  height: 19px;
  position: absolute;
  top: 15px;
  right: 21px;
}
#advertise .media-kit .download a:hover {
  background: #fff;
  color: #000;
}
#advertise .media-kit .download a:hover:before {
  background-position: 0 100%;
}
@media (min-width: 1024px) {
  #advertise .media-kit .info {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: -ms-flex;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
  }
  #advertise .media-kit .info .text {
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding-right: 100px;
  }
  #advertise .media-kit .info .download {
    margin-top: 0;
  }
}
.post-video .image {
  position: relative;
}
.post-video .image span {
  background: url(../images/post-video-icon.png) 50% 50% no-repeat;
  background-size: 74px 74px;
  width: 74px;
  height: 74px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -37px;
  margin-left: -37px;
  cursor: pointer;
  -webkit-transition: opacity 0.2s ease-in-out;
  -moz-transition: opacity 0.2s ease-in-out;
  -ms-transition: opacity 0.2s ease-in-out;
  -o-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
}
.post-video .image span:hover {
  -moz-opacity: 0.7;
  -khtml-opacity: 0.7;
  -webkit-opacity: 0.7;
  opacity: 0.7;
}
.post-video .fluid-width-video-wrapper {
  display: none;
}
#blog .post-item .post-wrapper {
  padding-top: 50px;
}
#blog .sidebar {
  margin-top: 40px;
}
#blog .news-title {
  font: 15px/1 'FuturaPTHeavy';
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 50px;
}
#blog .post-navigation {
  display: none;
}
#blog .infinite-wrap {
  margin-top: 40px;
}
@media (min-width: 768px) {
  #blog .post-item .post-wrapper {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: -ms-flex;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
  }
  #blog .main {
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding-right: 45px;
  }
  #blog .sidebar {
    margin-top: 0;
    width: 315px;
  }
}
#blog .post {
  border-bottom: 1px solid #cfcfcf;
  padding-bottom: 27px;
}
#blog .post .entry-title {
  font: 40px/44px 'poynterosdisplaybold';
  margin-bottom: 25px;
}
#blog .post .entry-title .edit-link {
  font-size: 20px;
}
#blog .post .entry-title .edit-link a {
  text-decoration: underline;
}
#blog .post .entry-subtitle {
  font: 16px/20px 'proxima_novalight';
  margin-bottom: 25px;
}
#blog .post .entry-meta {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
  font: 9px/21px 'proxima_novasemibold';
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}
#blog .post .entry-meta .categories a {
  display: inline-block;
  background: #f3efea;
  padding: 0 10px;
}
#blog .post .entry-meta .categories a:hover {
  background: #000;
  color: #fff;
}
#blog .post .entry-meta .entry-date:before {
  content: "/";
  display: inline-block;
  margin: 0 29px;
}
#blog .post .post-credits {
  margin-bottom: 30px;
}
#blog .post .post-credits li {
  font: 18px/24px 'poynterosdisplaybold';
  margin-top: 15px;
}
#blog .post .post-credits li:first-child {
  margin-top: 0;
}
#blog .post .post-credits li span {
  display: block;
  font: 9px/15px 'proxima_novasemibold';
  letter-spacing: 1px;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  #blog .post .post-credits {
    display: none;
  }
}
#blog .post .image {
  margin-bottom: 30px;
}
#blog .post .image img {
  width: 100%;
}
#blog .post .gallery {
  margin-bottom: 30px;
}
#blog .post .gallery img {
  width: 100%;
}
#blog .post .gallery .flex-prev,
#blog .post .gallery .flex-next {
  background: url(../images/handbooks-products-arrows.png) 0 0 no-repeat;
  background-size: 14px 11px;
  width: 7px;
  height: 11px;
  text-indent: -9999px;
  position: absolute;
  top: 50%;
  margin-top: -5px;
  z-index: 100;
}
#blog .post .gallery .flex-prev.flex-disabled,
#blog .post .gallery .flex-next.flex-disabled {
  display: none;
}
#blog .post .gallery .flex-prev {
  left: -15px;
}
#blog .post .gallery .flex-next {
  background-position: 100% 0;
  right: -15px;
}
#blog .post .shop-items {
  margin-bottom: 40px;
}
#blog .post .shop-items .item {
  border-top: 1px solid #cfcfcf;
  margin-top: 70px;
  padding-top: 40px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
}
#blog .post .shop-items .item:first-child {
  border-top: 0;
  padding-top: 0;
}
#blog .post .shop-items .item .product-image {
  margin-bottom: 20px;
  width: 42%;
}
#blog .post .shop-items .item .info {
  width: 50%;
}
@media (min-width: 1024px) {
  #blog .post .shop-items .item:nth-child(even) .product-image {
    -webkit-order: 2;
    -ms-order: 2;
    order: 2;
  }
  #blog .post .shop-items .item:nth-child(even) .info {
    -webkit-order: 1;
    -ms-order: 1;
    order: 1;
    text-align: right;
  }
  #blog .post .shop-items .item:nth-child(even) .info h3 {
    text-align: right;
  }
  #blog .post .shop-items .item:nth-child(even) .shop-it {
    text-align: right;
  }
  #blog .post .shop-items .item:nth-child(even) .shop-it a:before {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    transform: rotate(180deg);
    left: auto;
    right: -35px;
  }
  #blog .post .shop-items .item:nth-child(even) .shop-it a:hover:before {
    left: auto;
    right: -27px;
  }
  #blog .post .shop-items .item:nth-child(even) .shop-it a:hover:after {
    left: auto;
    right: 8px;
  }
}
#blog .post .shop-items .item .brand {
  font: 11px/1 'proxima_novasemibold';
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}
#blog .post .shop-items .item h3 {
  font: 28px/41px 'poynterosdisplaybold';
  display: block;
  text-align: left;
}
#blog .post .shop-items .item h3:before,
#blog .post .shop-items .item h3:after {
  display: none;
}
#blog .post .shop-items .item h3 a {
  text-decoration: none;
}
#blog .post .shop-items .item .description {
  font-size: 15px;
}
#blog .post .shop-items .item .shop-it {
  margin-top: 35px;
}
#blog .post .shop-items .item .shop-it a {
  display: inline-block;
  font: 11px/14px 'proxima_novasemibold';
  letter-spacing: 1px;
  text-transform: uppercase;
  padding-bottom: 8px;
  text-decoration: none;
  position: relative;
}
#blog .post .shop-items .item .shop-it a:before {
  background: url(../images/shoppable-post-arrow.png) 0 0 no-repeat;
  background-size: 11px 9px;
  content: "";
  width: 11px;
  height: 9px;
  position: absolute;
  top: 0;
  left: -35px;
  -webkit-transition: all 0.1s linear;
  -moz-transition: all 0.1s linear;
  -ms-transition: all 0.1s linear;
  -o-transition: all 0.1s linear;
  transition: all 0.1s linear;
}
#blog .post .shop-items .item .shop-it a:after {
  background: #000000;
  height: 1px;
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  -webkit-transition: all 0.11s linear;
  -moz-transition: all 0.11s linear;
  -ms-transition: all 0.11s linear;
  -o-transition: all 0.11s linear;
  transition: all 0.11s linear;
}
#blog .post .shop-items .item .shop-it a:hover {
  color: #231f20;
}
#blog .post .shop-items .item .shop-it a:hover:before {
  left: -27px;
}
#blog .post .shop-items .item .shop-it a:hover:after {
  background: #bbbdbd;
  left: 8px;
}
#blog .post .actions {
  margin-top: 50px;
}
#blog .post .actions .share {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  margin-bottom: 22px;
}
#blog .post .actions .share li {
  margin: 0 7px;
}
#blog .post .actions .share li a {
  background: url(../images/post-share.png) 0 0 no-repeat;
  background-size: 96px 32px;
  display: block;
  width: 32px;
  height: 32px;
  text-indent: -9999px;
}
#blog .post .actions .share li a.twitter {
  background-position: -32px 0;
}
#blog .post .actions .share li a.pinterest {
  background-position: -64px 0;
}
#blog .post .actions .title {
  font: 15px/1 'proxima_novasemibold';
  text-align: center;
}
#blog .post .block-disqus .show-comments {
  text-align: center;
  margin-bottom: 20px;
}
#blog .post .block-disqus .show-comments span {
  background: #000 none repeat scroll 0 0;
  border: 1px solid #000;
  color: #fff;
  display: inline-block;
  font: 11px/34px "proxima_novasemibold";
  letter-spacing: 1px;
  padding: 0 40px;
  text-transform: uppercase;
  cursor: pointer;
}
#blog .post .block-disqus .show-comments span:hover {
  background: #fff;
  color: #000;
}
#blog .post .block-disqus #disqus_thread {
  display: none;
}
#search .page-header {
  position: relative;
  padding-bottom: 30px;
}
#search .page-header .page-title {
  font-size: 30px;
  line-height: 1;
  padding-top: 50px;
  margin-bottom: 20px;
  text-align: left;
}
#search .page-header .results {
  font: 10px/24px 'proxima_novasemibold';
  text-transform: uppercase;
  letter-spacing: 1px;
}
#search .items .post {
  margin-top: 30px;
  border-top: 1px solid #e7e7e7;
  padding-top: 30px;
}
#search .items .post:first-child {
  border-top: 0;
  margin-top: 0;
  padding-top: 0;
}
#search .items .post .entry-thumbnail {
  margin-bottom: 10px;
}
#search .items .post .entry-thumbnail img {
  width: 100%;
}
#search .items .post .entry-info h3 {
  font: 24px/30px "poynterosdisplaybold";
  margin-bottom: 40px;
}
#search .items .post .entry-info .entry-meta {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
  font: 9px/21px 'proxima_novasemibold';
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}
#search .items .post .entry-info .entry-meta .categories a {
  display: inline-block;
  background: #f3efea;
  padding: 0 10px;
}
#search .items .post .entry-info .entry-meta .categories a:hover {
  background: #000;
  color: #fff;
}
#search .items .post .entry-info .entry-meta .entry-date:before {
  content: "/";
  display: inline-block;
  margin: 0 29px;
}
#search .more {
  margin-top: 40px;
  text-align: center;
}
#search .more a {
  background: #000;
  border: 1px solid #000;
  display: inline-block;
  font: 11px/34px 'proxima_novasemibold';
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
  padding: 0 40px;
}
#search .more a:hover {
  background: #fff;
  color: #000;
}
@media (min-width: 768px) {
  #search .page-header .results {
    position: absolute;
    top: 54px;
    right: 0;
    margin-top: 0;
  }
  #search .items .post {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: -ms-flex;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
  }
  #search .items .post .entry-thumbnail {
    width: 40%;
    margin-bottom: 0;
  }
  #search .items .post .entry-info {
    width: 52%;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: -ms-flex;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
  }
}
.posts .grid {
  margin-left: -33px;
  margin-right: -33px;
}
.posts .grid:before,
.posts .grid:after {
  content: " ";
  display: table;
}
.posts .grid:after {
  clear: both;
}
.posts .grid .grid-sizer,
.posts .grid .grid-item {
  width: 100%;
}
@media (min-width: 440px) {
  .posts .grid .grid-sizer,
  .posts .grid .grid-item {
    width: 50%;
  }
}
@media (min-width: 1024px) {
  .posts .grid .grid-sizer,
  .posts .grid .grid-item {
    width: 33.33%;
  }
}
.posts .grid .grid-item {
  float: left;
}
.posts .grid .grid-item:nth-child(n+3) {
  margin-top: 30px;
}
@media (min-width: 440px) {
  .posts .grid .grid-item:nth-child(n+3) {
    margin-top: 0;
  }
  .posts .grid .grid-item:nth-child(n+4) {
    margin-top: 30px;
  }
}
@media (min-width: 1024px) {
  .posts .grid .grid-item:nth-child(n+4) {
    margin-top: 0;
  }
  .posts .grid .grid-item:nth-child(n+5) {
    margin-top: 30px;
  }
}
.posts .post {
  padding: 0 33px;
  text-align: center;
}
.posts .post .entry-thumbnail {
  margin-bottom: 30px;
}
.posts .post .entry-thumbnail img {
  -webkit-transition: opacity 0.2s ease-in-out;
  -moz-transition: opacity 0.2s ease-in-out;
  -ms-transition: opacity 0.2s ease-in-out;
  -o-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
}
.posts .post .entry-thumbnail img:hover {
  -moz-opacity: 0.7;
  -khtml-opacity: 0.7;
  -webkit-opacity: 0.7;
  opacity: 0.7;
}
.posts .post .entry-info {
  min-height: 165px;
}
.posts .post .entry-title {
  font: 20px/24px 'poynterosdisplay_semiboldRg';
  position: relative;
  padding-bottom: 17px;
}
.posts .post .entry-title:before {
  background: #bbbdbd;
  content: "";
  height: 1px;
  width: 174px;
  position: absolute;
  bottom: 0;
  left: 50%;
  margin-left: -87px;
}
.posts .post .entry-meta {
  font: 9px/1 'proxima_novasemibold';
  text-transform: uppercase;
  letter-spacing: 1px;
}
.posts .post .entry-meta .entry-date {
  display: block;
  margin-top: 13px;
}
.posts .more {
  margin-top: 20px;
  text-align: center;
}
.posts .more a {
  background: #000;
  border: 1px solid #000;
  display: inline-block;
  font: 11px/34px 'proxima_novasemibold';
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
  padding: 0 40px;
}
.posts .more a:hover {
  background: #fff;
  color: #000;
}
.posts .more a.loading {
  background: #9a9a9a;
  border: 1px solid #9a9a9a;
  color: #fff;
  cursor: progress;
}
#category .page-header .page-title {
  font-size: 30px;
  line-height: 1;
  padding-top: 50px;
  margin-bottom: 50px;
}
#category .featured-posts {
  background: #f7f7f7;
  margin-bottom: 100px;
  position: relative;
}
#category .featured-posts .wrapper {
  max-width: 1200px;
  margin: 0 auto;
}
#category .featured-posts .flexslider .slides li {
  background: #f7f7f7;
}
#category .featured-posts .bottom {
  position: absolute;
  bottom: -30px;
  left: 0;
  right: 0;
}
#category .featured-posts .navigation {
  background: #000;
  position: relative;
  z-index: 100;
}
#category .featured-posts .navigation .paging {
  font: 15px/60px 'proxima_novasemibold';
  color: #fff;
  padding-left: 50px;
}
#category .featured-posts .navigation .flex-prev,
#category .featured-posts .navigation .flex-next {
  background: url(../images/slider-white-arrows.png) 0 0 no-repeat;
  background-size: 50px 8px;
  width: 25px;
  height: 8px;
  text-indent: -9999px;
  position: absolute;
  top: 50%;
  margin-top: -4px;
  z-index: 101;
}
#category .featured-posts .navigation .flex-prev {
  right: 115px;
}
#category .featured-posts .navigation .flex-next {
  background-position: 100% 0;
  right: 50px;
}
#category .featured-posts .featured-item .info {
  padding: 20px 0 50px;
}
#category .featured-posts .featured-item .categories {
  margin-bottom: 30px;
}
#category .featured-posts .featured-item .categories a {
  display: inline-block;
  background: #f3efea;
  font: 9px/21px 'proxima_novasemibold';
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0 10px;
}
#category .featured-posts .featured-item .categories a:hover {
  background: #000;
  color: #fff;
}
#category .featured-posts .featured-item h2 {
  font: 24px/30px 'poynterosdisplaybold';
  margin-bottom: 30px;
}
#category .featured-posts .featured-item .summary {
  font-size: 15px;
  line-height: 25px;
}
#category .featured-posts .featured-item .read-more {
  font: 10px/24px 'proxima_novasemibold';
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #000;
}
@media (min-width: 768px) {
  #category .featured-posts .featured-item {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: -ms-flex;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
  }
  #category .featured-posts .featured-item .image {
    width: 50%;
  }
  #category .featured-posts .featured-item .info {
    width: 45%;
    padding-right: 150px;
    text-align: left;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: -ms-flex;
    display: flex;
    -webkit-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
#category .most-popular {
  position: relative;
  margin-bottom: 70px;
}
#category .most-popular h2 {
  font: 24px/1 'poynterosdisplaybold';
  text-align: center;
  margin-bottom: 37px;
}
#category .most-popular .items {
  margin-left: -20px;
  margin-right: -20px;
}
#category .most-popular .items .item {
  margin-top: 40px;
}
#category .most-popular .items .item:first-child {
  margin-top: 0;
}
#category .most-popular .items .item .image {
  margin-bottom: 20px;
}
#category .most-popular .items .item .image img {
  width: 100%;
  -webkit-transition: opacity 0.2s ease-in-out;
  -moz-transition: opacity 0.2s ease-in-out;
  -ms-transition: opacity 0.2s ease-in-out;
  -o-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
}
#category .most-popular .items .item .image img:hover {
  -moz-opacity: 0.7;
  -khtml-opacity: 0.7;
  -webkit-opacity: 0.7;
  opacity: 0.7;
}
#category .most-popular .items .item .category {
  margin-bottom: 20px;
}
#category .most-popular .items .item .category a {
  display: inline-block;
  background: #f3efea;
  font: 9px/21px 'proxima_novasemibold';
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0 10px;
  -webkit-transition: all 0.2s aese-in-out;
  -moz-transition: all 0.2s aese-in-out;
  -ms-transition: all 0.2s aese-in-out;
  -o-transition: all 0.2s aese-in-out;
  transition: all 0.2s aese-in-out;
}
#category .most-popular .items .item .category a:hover {
  background: #000;
  color: #fff;
}
#category .most-popular .items .item h3 {
  font: 25px/30px 'poynterosdisplaybold';
}
@media (min-width: 768px) {
  #category .most-popular .items {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: -ms-flex;
    display: flex;
    -webkit-justify-content: flex-start;
    -ms-justify-content: flex-start;
    justify-content: flex-start;
  }
  #category .most-popular .items .item {
    width: 33.33%;
    padding: 0 20px;
    margin-top: 0;
  }
}
#category .latest-posts h2 {
  border-top: 1px solid #000;
  padding-top: 50px;
  font: 24px/1 'poynterosdisplaybold';
  text-align: center;
  margin-bottom: 40px;
}
#category .latest-posts .navigation {
  margin-bottom: 50px;
}
#category .latest-posts .navigation ul {
  white-space: nowrap;
  margin-left: -25px;
  margin-right: -25px;
  overflow-x: auto;
  overflow-y: hidden;
}
#category .latest-posts .navigation ul li {
  display: inline-block;
  margin: 0 25px;
  font: 11px/1 'proxima_novasemibold';
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #000;
  position: relative;
  cursor: pointer;
}
#category .latest-posts .navigation ul li a {
  display: block;
  padding: 0 15px 11px;
  position: relative;
}
#category .latest-posts .navigation ul li a:before,
#category .latest-posts .navigation ul li a:after {
  background: #bbbdbd;
  content: "";
  height: 1px;
  position: absolute;
  bottom: 0;
  width: 0;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
#category .latest-posts .navigation ul li a:before {
  left: 50%;
}
#category .latest-posts .navigation ul li a:after {
  right: 50%;
}
#category .latest-posts .navigation ul li a:hover:before,
#category .latest-posts .navigation ul li a.active:before,
#category .latest-posts .navigation ul li a:hover:after,
#category .latest-posts .navigation ul li a.active:after {
  width: 50%;
}
@media (min-width: 1024px) {
  #category .latest-posts .navigation ul {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: -ms-flex;
    display: flex;
    -webkit-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
  }
}
#handbooks .page-header .page-title {
  font-size: 30px;
  line-height: 33px;
  margin-bottom: 60px;
}
#handbooks .navigation {
  margin-bottom: 50px;
}
#handbooks .navigation ul {
  white-space: nowrap;
  margin-left: -25px;
  margin-right: -25px;
  overflow-x: auto;
  overflow-y: hidden;
}
#handbooks .navigation ul li {
  display: inline-block;
  margin: 0 25px;
  font: 11px/1 'proxima_novasemibold';
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #000;
  position: relative;
  cursor: pointer;
}
#handbooks .navigation ul li a {
  display: block;
  padding: 0 15px 11px;
  position: relative;
}
#handbooks .navigation ul li a:before,
#handbooks .navigation ul li a:after {
  background: #bbbdbd;
  content: "";
  height: 1px;
  position: absolute;
  bottom: 0;
  width: 0;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
#handbooks .navigation ul li a:before {
  left: 50%;
}
#handbooks .navigation ul li a:after {
  right: 50%;
}
#handbooks .navigation ul li a:hover:before,
#handbooks .navigation ul li a.active:before,
#handbooks .navigation ul li a:hover:after,
#handbooks .navigation ul li a.active:after {
  width: 50%;
}
@media (min-width: 1024px) {
  #handbooks .navigation ul {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: -ms-flex;
    display: flex;
    -webkit-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
  }
}
#handbooks .grid {
  margin-left: -15px;
  margin-right: -15px;
}
#handbooks .grid:before,
#handbooks .grid:after {
  content: " ";
  display: table;
}
#handbooks .grid:after {
  clear: both;
}
#handbooks .grid .grid-sizer,
#handbooks .grid .grid-item {
  width: 100%;
}
@media (min-width: 440px) {
  #handbooks .grid .grid-sizer,
  #handbooks .grid .grid-item {
    width: 50%;
  }
}
@media (min-width: 1024px) {
  #handbooks .grid .grid-sizer,
  #handbooks .grid .grid-item {
    width: 25%;
  }
}
#handbooks .grid .grid-item {
  float: left;
  margin-bottom: 60px;
}
#handbooks .handbook {
  padding: 0 15px;
}
#handbooks .handbook .entry-thumbnail {
  margin-bottom: 20px;
}
#handbooks .handbook .entry-thumbnail img {
  -webkit-transition: opacity 0.2s ease-in-out;
  -moz-transition: opacity 0.2s ease-in-out;
  -ms-transition: opacity 0.2s ease-in-out;
  -o-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
}
#handbooks .handbook .entry-thumbnail img:hover {
  -moz-opacity: 0.7;
  -khtml-opacity: 0.7;
  -webkit-opacity: 0.7;
  opacity: 0.7;
}
#handbooks .handbook .entry-title {
  font: 25px/30px 'poynterosdisplaybold';
  margin-bottom: 0;
}
#handbooks .handbook .entry-meta {
  margin-bottom: 20px;
}
#handbooks .handbook .entry-meta a {
  display: inline-block;
  background: #f3efea;
  font: 9px/21px 'proxima_novasemibold';
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0 10px;
}
#handbooks .handbook .entry-meta a:hover {
  background: #000;
  color: #fff;
}
#handbooks .more {
  margin-top: 40px;
  text-align: center;
}
#handbooks .more a {
  border: 1px solid #000;
  display: inline-block;
  font: 11px/34px 'proxima_novasemibold';
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #000;
  padding: 0 40px;
}
#handbooks .more a:hover {
  background: #000;
  color: #fff;
}
#handbook .gallery {
  margin-bottom: 34px;
}
#handbook .gallery .owl-nav {
  background: #000;
  position: absolute;
  bottom: -30px;
  height: 60px;
  left: 0;
  right: 0;
}
#handbook .gallery .owl-nav .owl-prev,
#handbook .gallery .owl-nav .owl-next {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50%;
}
#handbook .gallery .owl-nav .owl-prev:before,
#handbook .gallery .owl-nav .owl-next:before {
  background: url(../images/slider-white-arrows.png) 0 0 no-repeat;
  background-size: 50px 8px;
  content: "";
  width: 25px;
  height: 8px;
  text-indent: -9999px;
  position: absolute;
  top: 26px;
}
#handbook .gallery .owl-nav .owl-prev.disabled:before,
#handbook .gallery .owl-nav .owl-next.disabled:before {
  -moz-opacity: 0.6;
  -khtml-opacity: 0.6;
  -webkit-opacity: 0.6;
  opacity: 0.6;
}
#handbook .gallery .owl-nav .owl-prev {
  left: 0;
}
#handbook .gallery .owl-nav .owl-prev:before {
  right: 10px;
}
#handbook .gallery .owl-nav .owl-next {
  right: 0;
}
#handbook .gallery .owl-nav .owl-next:before {
  background-position: 100% 0;
  left: 10px;
}
@media (min-width: 768px) {
  #handbook .gallery {
    margin-bottom: 4px;
  }
  #handbook .gallery .owl-nav {
    left: auto;
    right: -20px;
    width: 180px;
  }
}
#handbook .intro {
  background: #f8f8f8;
  text-align: center;
  padding: 40px 20px;
}
#handbook .intro h1 {
  font: 30px/1 'poynterosdisplaybold';
}
#handbook .intro .entry-content {
  font-size: 15px;
}
@media (min-width: 768px) {
  #handbook .intro {
    padding: 30px 125px;
  }
}
#handbook .main {
  margin-top: 70px;
}
#handbook .main .left {
  margin-bottom: 40px;
}
#handbook .main .sections .section {
  border-top: 1px solid #e5e5e5;
  margin-top: 40px;
  padding-top: 40px;
}
#handbook .main .sections .section:first-child {
  border-top: 0;
  margin-top: 0;
  padding-top: 0;
}
#handbook .main .sections .section .section-left {
  margin-bottom: 20px;
}
#handbook .main .sections .section h2 {
  font: 20px/1 'poynterosdisplaybold';
  margin-bottom: 35px;
}
#handbook .main .sections .section .sub-title {
  font: 11px/20px 'proxima_novasemibold';
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 35px;
}
#handbook .main .sections .section .text {
  font-size: 15px;
}
#handbook .main .sections .section .categories .cat-heading {
  font: 15px/20px 'proxima_novasemibold';
}
#handbook .main .sections .section .categories .items {
  font: 11px/15px 'proxima_novasemibold';
  text-transform: uppercase;
  letter-spacing: 2px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
#handbook .main .sections .section .categories .items li {
  width: 45%;
  padding-left: 22px;
  position: relative;
  cursor: pointer;
}
#handbook .main .sections .section .categories .items li:before {
  background: url(../images/handbook-categories-icon.png) 0 0 no-repeat;
  background-size: 12px 24px;
  content: "";
  width: 12px;
  height: 12px;
  position: absolute;
  top: 0;
  left: 0;
}
#handbook .main .sections .section .categories .items li.added:before {
  background-position: 0 100%;
}
#handbook .main .sections .section .categories .items li:nth-child(n+3) {
  margin-top: 15px;
}
@media (min-width: 440px) {
  #handbook .main .sections .section {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: -ms-flex;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
  }
  #handbook .main .sections .section .section-left {
    width: 32%;
    margin-bottom: 0;
  }
  #handbook .main .sections .section .section-right {
    width: 60%;
  }
}
#handbook .main .related-posts {
  border-left: 1px solid #000000;
  padding-left: 24px;
  padding-bottom: 35px;
}
#handbook .main .related-posts h2 {
  font-size: 15px;
  margin-bottom: 40px;
}
#handbook .main .related-posts .items .item {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  margin-top: 40px;
}
#handbook .main .related-posts .items .item:first-child {
  margin-top: 0;
}
#handbook .main .related-posts .items .item .info {
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding-right: 50px;
}
#handbook .main .related-posts .items .item .info .category {
  font: 9px/1 'proxima_novasemibold';
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}
#handbook .main .related-posts .items .item .info h3 {
  margin-bottom: 0;
  font: 15px/22px 'poynterosdisplaybold';
}
#handbook .main .related-posts .items .item .image {
  width: 80px;
}
@media (min-width: 768px) {
  #handbook .main {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: -ms-flex;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
  }
  #handbook .main .left {
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding-right: 50px;
    margin-bottom: 0;
  }
  #handbook .main .right {
    width: 300px;
  }
}
#handbook .products .section-title {
  border-top: 1px solid #000000;
  margin-top: 50px;
  padding-top: 30px;
  text-align: center;
  font: 30px/1 "poynterosdisplaybold";
  margin-bottom: 40px;
}
#handbook .products .category {
  border-top: 1px solid #e5e5e5;
  margin-top: 50px;
  padding-top: 50px;
}
#handbook .products .category:first-child {
  border-top: 0;
  margin-top: 0;
  padding-top: 0;
}
#handbook .products .category .category-title {
  text-align: center;
  font: 24px/1 'poynterosdisplaybold';
}
#handbook .products .category .category-description {
  text-align: center;
  font: 11px/15px 'proxima_novasemibold';
  letter-spacing: 2px;
  margin-bottom: 50px;
}
@media (min-width: 768px) {
  #handbook .products .category .category-description {
    max-width: 60%;
    margin: 0 auto 50px;
  }
}
#handbook .products .category .items {
  padding: 0 50px;
}
#handbook .products .category .items .owl-nav .owl-prev,
#handbook .products .category .items .owl-nav .owl-next {
  background: url(../images/handbooks-products-arrows.png) 0 0 no-repeat;
  background-size: 14px 11px;
  position: absolute;
  top: 50%;
  width: 7px;
  height: 11px;
  margin-top: -6px;
  text-indent: -9999px;
}
#handbook .products .category .items .owl-nav .owl-prev:hover,
#handbook .products .category .items .owl-nav .owl-next:hover {
  -moz-opacity: 0.5;
  -khtml-opacity: 0.5;
  -webkit-opacity: 0.5;
  opacity: 0.5;
}
#handbook .products .category .items .owl-nav .owl-prev.disabled,
#handbook .products .category .items .owl-nav .owl-next.disabled {
  -moz-opacity: 0.3;
  -khtml-opacity: 0.3;
  -webkit-opacity: 0.3;
  opacity: 0.3;
}
#handbook .products .category .items .owl-nav .owl-prev {
  left: 0;
}
#handbook .products .category .items .owl-nav .owl-next {
  background-position: 100% 0;
  right: 0;
}
#handbook .products .category .items .info {
  margin-top: 30px;
  position: relative;
}
#handbook .products .category .items .info .favorite {
  background: url(../images/handbook-favorite.png) 0 0 no-repeat;
  background-size: 14px 26px;
  position: absolute;
  top: 4px;
  right: 0;
  width: 14px;
  height: 13px;
  text-indent: -9999px;
}
#handbook .products .category .items .info .favorite.added {
  background-position: 0 100%;
}
#handbook .products .category .items .info .type {
  font: 11px/1 'proxima_novasemibold';
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
#handbook .products .category .items .info h3 {
  font: 16px/20px 'poynterosdisplaybold';
  margin-bottom: 2px;
  padding-right: 20px;
}
#handbook .products .category .items .info .bottom {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
}
#handbook .products .category .items .info .bottom .brand {
  font: 15px/1 'proxima_nova_rgregular';
}
#handbook .products .category .items .info .bottom .price {
  font: 14px/15px 'poynterosdisplaybold';
}
/* Cities
*******************************/
#cities {
  padding-top: 60px;
}
#cities .back {
  margin-bottom: 35px;
  text-align: center;
  font: 16px/1 'proxima_novasemibold';
  padding-bottom: 11px;
  position: relative;
}
#cities .back:before {
  background: #bbbdbd;
  content: "";
  width: 60px;
  height: 1px;
  position: absolute;
  left: 50%;
  bottom: 0;
  margin-left: -30px;
}
#cities .page-header .page-title {
  padding-top: 0;
}
#cities .city-title {
  font: 24px/40px 'poynterosdisplaybold';
  text-align: center;
}
#cities .city-title span {
  color: #ceb89d;
}
#cities .featured .items .item {
  margin-top: 20px;
}
#cities .featured .items .city-item {
  position: relative;
}
#cities .featured .items .city-item a {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
#cities .featured .items .city-item a span {
  text-align: center;
  font: 30px/1 'poynterosdisplaybold';
  color: #fff;
}
#cities .featured .items .city-item a:hover {
  background: rgba(0, 0, 0, 0.6);
}
@media (min-width: 440px) {
  #cities .featured .items {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: -ms-flex;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -20px;
    margin-right: -20px;
  }
  #cities .featured .items .item {
    width: 50%;
    padding: 0 20px;
    margin-top: 0;
  }
  #cities .featured .items .item:nth-child(n+3) {
    margin-top: 40px;
  }
}
@media (min-width: 768px) {
  #cities .featured .items .item {
    width: 25%;
    margin-top: 0;
  }
  #cities .featured .items .item:nth-child(n+3) {
    margin-top: 0;
  }
}
#cities .city-posts {
  margin-top: 30px;
  border-top: 1px solid #e5e5e5;
  padding-top: 40px;
}
#cities .city-posts h2 {
  text-align: center;
  font: 24px/1 'poynterosdisplaybold';
  margin-bottom: 50px;
}
#cities .city-posts .grid {
  margin-left: -20px;
  margin-right: -20px;
}
#cities .city-posts .grid:before,
#cities .city-posts .grid:after {
  content: " ";
  display: table;
}
#cities .city-posts .grid:after {
  clear: both;
}
#cities .city-posts .grid .grid-sizer,
#cities .city-posts .grid .grid-item {
  width: 100%;
}
@media (min-width: 440px) {
  #cities .city-posts .grid .grid-sizer,
  #cities .city-posts .grid .grid-item {
    width: 50%;
  }
}
@media (min-width: 1024px) {
  #cities .city-posts .grid .grid-sizer,
  #cities .city-posts .grid .grid-item {
    width: 33.33%;
  }
}
#cities .all-list {
  margin-top: 100px;
  border-top: 1px solid #e5e5e5;
  padding-top: 50px;
}
#cities .all-list h2 {
  text-align: center;
  font: 20px/1 'poynterosdisplaybold';
  margin-bottom: 50px;
}
#cities .all-list .items {
  font: 11px/30px 'proxima_novasemibold';
  text-transform: uppercase;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
#cities .all-list .items .col {
  width: 45%;
}
@media (min-width: 768px) {
  #cities .all-list .items .col {
    width: 22%;
  }
}
@media (min-width: 1024px) {
  #cities .all-list .items {
    padding: 0 135px;
  }
}
.widget {
  margin-top: 40px;
}
.widget:first-child {
  margin-top: 0;
}
.widget h3 {
  font: 24px/27px 'poynterosdisplaybold';
  margin-bottom: 26px;
}
.flo_contributors_widget {
  display: none;
}
.flo_contributors_widget h3 {
  font: 9px/15px 'proxima_novasemibold';
  letter-spacing: 1px;
  text-transform: uppercase;
}
.flo_contributors_widget .items {
  margin-bottom: 30px;
}
.flo_contributors_widget .items li {
  font: 18px/24px 'poynterosdisplaybold';
  margin-top: 15px;
}
.flo_contributors_widget .items li:first-child {
  margin-top: 0;
}
.flo_contributors_widget .items li span {
  display: block;
  font: 9px/15px 'proxima_novasemibold';
  letter-spacing: 1px;
  text-transform: uppercase;
}
.flo_contributors_widget .share-post {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
}
.flo_contributors_widget .share-post h3 {
  line-height: 32px;
  margin-right: 20px;
  margin-bottom: 0;
}
.flo_contributors_widget .share {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
  -webkit-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
}
.flo_contributors_widget .share li {
  margin-left: 14px;
  line-height: 32px;
}
.flo_contributors_widget .share li:first-child {
  margin-left: 0;
}
.flo_contributors_widget .share li a {
  background: url(../images/post-share.png) 0 0 no-repeat;
  background-size: 96px 32px;
  display: block;
  width: 32px;
  height: 32px;
  text-indent: -9999px;
}
.flo_contributors_widget .share li a.twitter {
  background-position: -32px 0;
}
.flo_contributors_widget .share li a.pinterest {
  background-position: -64px 0;
}
@media (min-width: 768px) {
  .flo_contributors_widget {
    display: block;
    border-left: 1px solid #000;
    padding-left: 24px;
    padding-bottom: 30px;
  }
  .flo_contributors_widget .items {
    margin-bottom: 60px;
  }
  .flo_contributors_widget .share-post {
    display: -webkit-block;
    display: -ms-blockbox;
    display: -ms-block;
    display: block;
  }
  .flo_contributors_widget .share-post h3 {
    margin-bottom: 26px;
    margin-right: 0;
  }
}
.flo_post_shop_widget {
  border: 1px solid #000;
  padding: 30px 25px;
}
.flo_post_shop_widget h3 {
  text-align: center;
}
.flo_post_shop_widget .items {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.flo_post_shop_widget .items .item {
  width: 43%;
  text-align: center;
}
.flo_post_shop_widget .items .item:nth-child(n+3) {
  margin-top: 20px;
}
.flo_post_shop_widget .items .item .image {
  margin-bottom: 20px;
}
.flo_post_shop_widget .items .item h3 {
  font: 9px/10px 'proxima_novasemibold';
  text-transform: uppercase;
  letter-spacing: 1px;
}
.flo_post_shop_widget .more {
  text-align: center;
  margin-top: 30px;
}
.flo_post_shop_widget .more a {
  font: 16px/1 'proxima_novasemibold';
  display: inline-block;
  padding-bottom: 10px;
  border-bottom: 1px solid #bbbdbd;
}
.widget_search form {
  position: relative;
}
.widget_search form .s {
  background: transparent;
  border: 1px solid #000000;
  padding: 10px 20px;
  height: 38px;
  line-height: 16px;
}
.widget_search form .searchsubmit {
  background: url(../images/search-button.png) 0 0 no-repeat;
  background-size: 12px 12px;
  width: 12px;
  height: 12px;
  text-indent: -9999px;
  position: absolute;
  top: 13px;
  right: 16px;
}
.widget_categories ul {
  font: 15px/21px 'DomaineDisplayRegular';
}
.widget_categories ul li {
  margin-top: 23px;
}
.widget_categories ul li:first-child {
  margin-top: 0;
}
.flo_related_widget ul {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.flo_related_widget ul li {
  width: 48%;
}
.flo_related_widget ul li:nth-child(n+3) {
  margin-top: 29px;
}
.flo_related_widget ul li .entry-thumb {
  margin-bottom: 10px;
}
.flo_related_widget ul li h4 {
  margin-bottom: 0;
  font: 15px/18px 'poynterosdisplaybold';
}
.flo_related_widget ul li .entry-subtitle {
  font: 13px/15px 'proxima_novalight';
  margin-top: 22px;
}
@media (min-width: 768px) {
  .flo_related_widget {
    border-left: 1px solid #000;
    padding-left: 24px;
  }
  .flo_related_widget ul li {
    width: 100%;
  }
  .flo_related_widget ul li:nth-child(n+2) {
    margin-top: 29px;
  }
}
.wp-pagenavi {
  margin-top: 100px;
  position: relative;
  font: 9px/1 'GothamHTFMedium';
  text-transform: uppercase;
  letter-spacing: 1px;
}
.wp-pagenavi a.page,
.wp-pagenavi span {
  display: inline-block;
  margin: 0 25px;
}
.wp-pagenavi .previouspostslink {
  display: inline-block;
  padding-right: 25px;
  margin-right: 25px;
  border-right: 1px solid #212121;
}
.wp-pagenavi .nextpostslink {
  display: inline-block;
  padding-left: 25px;
  margin-left: 25px;
  border-left: 1px solid #212121;
}
.flo-shcode-instgm-container {
  margin-left: -6px;
  margin-right: -6px;
}
.flo-shcode-instgm-container img {
  -webkit-transition: opacity 0.2s ease-in-out;
  -moz-transition: opacity 0.2s ease-in-out;
  -ms-transition: opacity 0.2s ease-in-out;
  -o-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
}
.flo-shcode-instgm-container img:hover {
  -moz-opacity: 0.7;
  -khtml-opacity: 0.7;
  -webkit-opacity: 0.7;
  opacity: 0.7;
}
#newsletter-subscribe .image {
  display: none;
}
#newsletter-subscribe .info {
  background: url(../images/newsletter-subscribe-logo.png) 50% 30px no-repeat;
  background-size: 140px 72px;
  padding: 150px 20px 30px;
  text-align: center;
}
#newsletter-subscribe .info h2 {
  font: 21px/1.1 'poynterosdisplaybold';
}
#newsletter-subscribe .info .text {
  font: 21px/1 'proxima_novalight';
  margin-bottom: 50px;
  text-decoration: underline;
}
#newsletter-subscribe .info .thanks {
  font: 9px/1 'proxima_novasemibold';
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 20px;
}
#newsletter-subscribe .info .thanks span {
  cursor: pointer;
}
@media (min-width: 768px) {
  #newsletter-subscribe {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: -ms-flex;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
  }
  #newsletter-subscribe .image {
    display: block;
    width: 50%;
  }
  #newsletter-subscribe .info {
    padding: 140px 85px 50px;
    width: 50%;
  }
  #newsletter-subscribe .info h2 {
    font-size: 30px;
  }
}
#my-account {
  background: #f7f7f7;
  padding: 80px 0 100px;
}
#my-account .toolbar h1 {
  font: 30px/1 'poynterosdisplaybold';
  padding-left: 38px;
  margin-bottom: 30px;
}
#my-account .toolbar nav {
  background: #000;
  padding: 38px;
  font: 11px/15px 'proxima_novasemibold';
  text-transform: uppercase;
  letter-spacing: 2px;
}
#my-account .toolbar nav a {
  display: inline-block;
  color: #dfdfdf;
}
#my-account .toolbar nav a:hover {
  color: #fff;
}
#my-account .toolbar nav ul li {
  margin-top: 18px;
}
#my-account .toolbar nav ul li:first-child {
  margin-top: 0;
}
#my-account .toolbar nav ul li.current-menu-item a {
  color: #fff;
  border-bottom: 1px solid #fff;
  padding-bottom: 6px;
}
#my-account .toolbar nav .logout {
  margin-top: 100px;
}
#my-account .main {
  background: #fff;
  padding: 38px;
  margin-top: 20px;
}
#my-account .main h2 {
  font: 24px/30px 'poynterosdisplaybold';
}
#my-account .main form label {
  display: inline-block;
  font: 15px/1 'proxima_nova_rgregular';
  color: #cbcbcb;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
#my-account .main form input[type="text"],
#my-account .main form input[type="number"],
#my-account .main form input[type="email"],
#my-account .main form input[type="url"],
#my-account .main form input[type="search"],
#my-account .main form input[type="password"],
#my-account .main form textarea {
  text-align: left;
  font-family: 'proxima_novasemibold';
  font-size: 15px;
}
#my-account .main .favorites {
  position: relative;
}
#my-account .main .favorites .filter {
  font: 11px/1 'proxima_novasemibold';
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}
#my-account .main .favorites .filter ul {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
}
#my-account .main .favorites .filter ul li span {
  color: #cbcbcb;
  cursor: pointer;
}
#my-account .main .favorites .filter ul li.active span,
#my-account .main .favorites .filter ul li span:hover {
  color: #000000;
}
@media (min-width: 768px) {
  #my-account .main .favorites .filter {
    position: absolute;
    top: 10px;
    right: 0;
  }
  #my-account .main .favorites .filter ul {
    -webkit-flex-direction: flex-end;
    -ms-flex-direction: flex-end;
    flex-direction: flex-end;
  }
  #my-account .main .favorites .filter ul li {
    margin-left: 40px;
  }
}
#my-account .main .favorites .favorite-items .item {
  border-top: 1px solid #e5e5e5;
  margin-top: 20px;
  padding-top: 20px;
}
#my-account .main .favorites .favorite-items .item:first-child {
  border-top: 0;
  margin-top: 0;
  padding-top: 0;
}
#my-account .main .favorites .favorite-items .item .info {
  margin-top: 30px;
  position: relative;
}
#my-account .main .favorites .favorite-items .item .info .type {
  font: 12px/1 'proxima_novasemibold';
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
#my-account .main .favorites .favorite-items .item .info .favorite {
  background: url(../images/handbook-favorite.png) 0 0 no-repeat;
  background-size: 14px 26px;
  position: absolute;
  top: 0;
  right: 0;
  width: 14px;
  height: 13px;
  text-indent: -9999px;
}
#my-account .main .favorites .favorite-items .item .info .favorite.added {
  background-position: 0 100%;
}
#my-account .main .favorites .favorite-items .item .info h3 {
  font: 15px/20px 'proxima_novasemibold';
  margin-bottom: 5px;
}
#my-account .main .favorites .favorite-items .item .info .bottom {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
}
#my-account .main .favorites .favorite-items .item .info .bottom .brand {
  font: 15px/1 'proxima_nova_rgregular';
}
#my-account .main .favorites .favorite-items .item .info .bottom .price {
  font: 14px/15px 'poynterosdisplaybold';
}
@media (min-width: 768px) {
  #my-account .main .favorites .favorite-items .item {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: -ms-flex;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
  }
  #my-account .main .favorites .favorite-items .item .image {
    width: 36%;
  }
  #my-account .main .favorites .favorite-items .item .info {
    width: 54%;
  }
}
@media (min-width: 768px) {
  #my-account .container {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: -ms-flex;
    display: flex;
  }
  #my-account .toolbar {
    width: 250px;
    padding-top: 50px;
  }
  #my-account .toolbar h1 {
    margin-bottom: 70px;
  }
  #my-account .toolbar nav {
    position: relative;
    margin-right: -43px;
    z-index: 100;
  }
  #my-account .main {
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding: 50px 60px 60px 100px;
    margin-top: 0;
  }
}
body.my-account #instagram {
  margin-top: 0;
}
body.my-account #instagram .wrapper {
  border-top: 0;
}
#login-register {
  padding: 20px;
  width: 100%;
}
#login-register h2 {
  text-align: center;
  font: 35px/1 'poynterosdisplaybold';
  margin-bottom: 25px;
}
#login-register .desc {
  font-size: 15px;
  text-align: center;
  margin-bottom: 35px;
}
#login-register .form .error {
  font-size: 14px;
  color: red;
  margin-bottom: 20px;
}
#login-register .form .input {
  margin-bottom: 18px;
}
#login-register .register {
  display: none;
}
#login-register .bottom {
  padding: 0 36px;
  margin-top: 40px;
  text-align: center;
  font: 10px/1 'proxima_novasemibold';
  text-transform: uppercase;
  letter-spacing: 1px;
}
@media (min-width: 768px) {
  #login-register {
    padding: 65px 110px;
  }
}
#contributor {
  padding-top: 60px;
}
#contributor .header {
  text-align: center;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #000000;
}
#contributor .header .image {
  max-width: 200px;
  margin: 0 auto 20px;
}
#contributor .header h1 {
  font: 30px/34px 'poynterosdisplaybold';
}
#contributor .header .position {
  font: 11px/1 'proxima_novasemibold';
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
}
#contributor .header .contributor-social ul li {
  display: inline-block;
  margin: 0 10px;
}
#contributor .header .contributor-social ul li a {
  background: url(../images/contributor-social-icons.png) 0 0 no-repeat;
  background-size: 41px 12px;
  display: block;
  height: 12px;
  text-indent: -9999px;
}
#contributor .header .contributor-social ul li a.facebook {
  width: 6px;
}
#contributor .header .contributor-social ul li a.twitter {
  background-position: -6px 0;
  width: 12px;
}
#contributor .header .contributor-social ul li a.instagram {
  background-position: -18px 0;
  width: 11px;
}
#contributor .header .contributor-social ul li a.website {
  background-position: -29px 0;
  width: 12px;
}
@media (min-width: 768px) {
  #contributor .header {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: -ms-flex;
    display: flex;
    -webkit-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
  }
  #contributor .header .image {
    margin: 0 40px 0 0;
  }
  #contributor .header .info {
    text-align: left;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: -ms-flex;
    display: flex;
    -webkit-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  #contributor .header .contributor-social ul li:first-child {
    margin-left: 0;
  }
}
.pibfi_pinterest {
  display: block;
}
.pibfi_pinterest .xc_pin {
  background: url(../images/pin-button.png) 0 0 no-repeat;
  background-size: 32px 32px;
  width: 32px;
  height: 32px;
  top: 25px;
  left: 25px;
}
/*!
Animate.css - http://daneden.me/animate
Licensed under the MIT license

Copyright (c) 2013 Daniel Eden

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.animated.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}
@-webkit-keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  60% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}
@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  60% {
    -webkit-transform: translateY(-15px);
    -ms-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}
.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
}
@-webkit-keyframes flash {
  0%,
  50%,
  100% {
    opacity: 1;
  }
  25%,
  75% {
    opacity: 0;
  }
}
@keyframes flash {
  0%,
  50%,
  100% {
    opacity: 1;
  }
  25%,
  75% {
    opacity: 0;
  }
}
.flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}
.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}
@-webkit-keyframes shake {
  0%,
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }
  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
}
@keyframes shake {
  0%,
  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translateX(-10px);
    -ms-transform: translateX(-10px);
    transform: translateX(-10px);
  }
  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translateX(10px);
    -ms-transform: translateX(10px);
    transform: translateX(10px);
  }
}
.shake {
  -webkit-animation-name: shake;
  animation-name: shake;
}
@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate(15deg);
    transform: rotate(15deg);
  }
  40% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  60% {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
  }
  80% {
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
@keyframes swing {
  20% {
    -webkit-transform: rotate(15deg);
    -ms-transform: rotate(15deg);
    transform: rotate(15deg);
  }
  40% {
    -webkit-transform: rotate(-10deg);
    -ms-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  60% {
    -webkit-transform: rotate(5deg);
    -ms-transform: rotate(5deg);
    transform: rotate(5deg);
  }
  80% {
    -webkit-transform: rotate(-5deg);
    -ms-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
.swing {
  -webkit-transform-origin: top center;
  -ms-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}
@-webkit-keyframes tada {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  10%,
  20% {
    -webkit-transform: scale(0.9) rotate(-3deg);
    transform: scale(0.9) rotate(-3deg);
  }
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale(1.1) rotate(3deg);
    transform: scale(1.1) rotate(3deg);
  }
  40%,
  60%,
  80% {
    -webkit-transform: scale(1.1) rotate(-3deg);
    transform: scale(1.1) rotate(-3deg);
  }
  100% {
    -webkit-transform: scale(1) rotate(0);
    transform: scale(1) rotate(0);
  }
}
@keyframes tada {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
  10%,
  20% {
    -webkit-transform: scale(0.9) rotate(-3deg);
    -ms-transform: scale(0.9) rotate(-3deg);
    transform: scale(0.9) rotate(-3deg);
  }
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale(1.1) rotate(3deg);
    -ms-transform: scale(1.1) rotate(3deg);
    transform: scale(1.1) rotate(3deg);
  }
  40%,
  60%,
  80% {
    -webkit-transform: scale(1.1) rotate(-3deg);
    -ms-transform: scale(1.1) rotate(-3deg);
    transform: scale(1.1) rotate(-3deg);
  }
  100% {
    -webkit-transform: scale(1) rotate(0);
    -ms-transform: scale(1) rotate(0);
    transform: scale(1) rotate(0);
  }
}
.tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes wobble {
  0% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
  15% {
    -webkit-transform: translateX(-25%) rotate(-5deg);
    transform: translateX(-25%) rotate(-5deg);
  }
  30% {
    -webkit-transform: translateX(20%) rotate(3deg);
    transform: translateX(20%) rotate(3deg);
  }
  45% {
    -webkit-transform: translateX(-15%) rotate(-3deg);
    transform: translateX(-15%) rotate(-3deg);
  }
  60% {
    -webkit-transform: translateX(10%) rotate(2deg);
    transform: translateX(10%) rotate(2deg);
  }
  75% {
    -webkit-transform: translateX(-5%) rotate(-1deg);
    transform: translateX(-5%) rotate(-1deg);
  }
  100% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
}
@keyframes wobble {
  0% {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
  }
  15% {
    -webkit-transform: translateX(-25%) rotate(-5deg);
    -ms-transform: translateX(-25%) rotate(-5deg);
    transform: translateX(-25%) rotate(-5deg);
  }
  30% {
    -webkit-transform: translateX(20%) rotate(3deg);
    -ms-transform: translateX(20%) rotate(3deg);
    transform: translateX(20%) rotate(3deg);
  }
  45% {
    -webkit-transform: translateX(-15%) rotate(-3deg);
    -ms-transform: translateX(-15%) rotate(-3deg);
    transform: translateX(-15%) rotate(-3deg);
  }
  60% {
    -webkit-transform: translateX(10%) rotate(2deg);
    -ms-transform: translateX(10%) rotate(2deg);
    transform: translateX(10%) rotate(2deg);
  }
  75% {
    -webkit-transform: translateX(-5%) rotate(-1deg);
    -ms-transform: translateX(-5%) rotate(-1deg);
    transform: translateX(-5%) rotate(-1deg);
  }
  100% {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
  }
}
.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}
@-webkit-keyframes bounceIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.3);
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }
  70% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes bounceIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.3);
    -ms-transform: scale(0.3);
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
  }
  70% {
    -webkit-transform: scale(0.9);
    -ms-transform: scale(0.9);
    transform: scale(0.9);
  }
  100% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}
.bounceIn {
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}
@-webkit-keyframes bounceInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }
  80% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes bounceInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateY(30px);
    -ms-transform: translateY(30px);
    transform: translateY(30px);
  }
  80% {
    -webkit-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}
@-webkit-keyframes bounceInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
  80% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes bounceInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateX(30px);
    -ms-transform: translateX(30px);
    transform: translateX(30px);
  }
  80% {
    -webkit-transform: translateX(-10px);
    -ms-transform: translateX(-10px);
    transform: translateX(-10px);
  }
  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}
@-webkit-keyframes bounceInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateX(-30px);
    transform: translateX(-30px);
  }
  80% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes bounceInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateX(-30px);
    -ms-transform: translateX(-30px);
    transform: translateX(-30px);
  }
  80% {
    -webkit-transform: translateX(10px);
    -ms-transform: translateX(10px);
    transform: translateX(10px);
  }
  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}
@-webkit-keyframes bounceInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  80% {
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes bounceInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  80% {
    -webkit-transform: translateY(10px);
    -ms-transform: translateY(10px);
    transform: translateY(10px);
  }
  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}
@-webkit-keyframes bounceOut {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  25% {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.3);
    transform: scale(0.3);
  }
}
@keyframes bounceOut {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
  25% {
    -webkit-transform: scale(0.95);
    -ms-transform: scale(0.95);
    transform: scale(0.95);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.3);
    -ms-transform: scale(0.3);
    transform: scale(0.3);
  }
}
.bounceOut {
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}
@-webkit-keyframes bounceOutDown {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}
@keyframes bounceOutDown {
  0% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}
.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}
@-webkit-keyframes bounceOutLeft {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}
@keyframes bounceOutLeft {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}
.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}
@-webkit-keyframes bounceOutRight {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}
@keyframes bounceOutRight {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}
.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}
@-webkit-keyframes bounceOutUp {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}
@keyframes bounceOutUp {
  0% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}
.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}
@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}
@-webkit-keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}
@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}
@-webkit-keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}
@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}
@-webkit-keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}
@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(55px);
    transform: translateY(55px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(55px);
    -ms-transform: translateY(55px);
    transform: translateY(55px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}
@-webkit-keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}
@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}
@-webkit-keyframes fadeOutDown {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
}
@keyframes fadeOutDown {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }
}
.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}
@-webkit-keyframes fadeOutDownBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}
@keyframes fadeOutDownBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}
.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}
@-webkit-keyframes fadeOutLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }
}
@keyframes fadeOutLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
  }
}
.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}
@-webkit-keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}
@keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}
.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}
@-webkit-keyframes fadeOutRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }
}
@keyframes fadeOutRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }
}
.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}
@-webkit-keyframes fadeOutRightBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}
@keyframes fadeOutRightBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}
.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}
@-webkit-keyframes fadeOutUp {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}
@keyframes fadeOutUp {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}
.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}
@-webkit-keyframes fadeOutUpBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}
@keyframes fadeOutUpBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}
.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}
@-webkit-keyframes flip {
  0% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  100% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
@keyframes flip {
  0% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    -ms-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    -ms-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -ms-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
    -ms-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  100% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    -ms-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
.animated.flip {
  -webkit-backface-visibility: visible;
  -ms-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
}
@-webkit-keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotateX(-10deg);
    transform: perspective(400px) rotateX(-10deg);
  }
  70% {
    -webkit-transform: perspective(400px) rotateX(10deg);
    transform: perspective(400px) rotateX(10deg);
  }
  100% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
}
@keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    -ms-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotateX(-10deg);
    -ms-transform: perspective(400px) rotateX(-10deg);
    transform: perspective(400px) rotateX(-10deg);
  }
  70% {
    -webkit-transform: perspective(400px) rotateX(10deg);
    -ms-transform: perspective(400px) rotateX(10deg);
    transform: perspective(400px) rotateX(10deg);
  }
  100% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    -ms-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
}
.flipInX {
  -webkit-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}
@-webkit-keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotateY(-10deg);
    transform: perspective(400px) rotateY(-10deg);
  }
  70% {
    -webkit-transform: perspective(400px) rotateY(10deg);
    transform: perspective(400px) rotateY(10deg);
  }
  100% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
}
@keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    -ms-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotateY(-10deg);
    -ms-transform: perspective(400px) rotateY(-10deg);
    transform: perspective(400px) rotateY(-10deg);
  }
  70% {
    -webkit-transform: perspective(400px) rotateY(10deg);
    -ms-transform: perspective(400px) rotateY(10deg);
    transform: perspective(400px) rotateY(10deg);
  }
  100% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    -ms-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
}
.flipInY {
  -webkit-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}
@-webkit-keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}
@keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    -ms-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    -ms-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}
.flipOutX {
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  backface-visibility: visible !important;
}
@-webkit-keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}
@keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    -ms-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    -ms-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}
.flipOutY {
  -webkit-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}
@-webkit-keyframes lightSpeedIn {
  0% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: translateX(-20%) skewX(30deg);
    transform: translateX(-20%) skewX(30deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: translateX(0%) skewX(-15deg);
    transform: translateX(0%) skewX(-15deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
}
@keyframes lightSpeedIn {
  0% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    -ms-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: translateX(-20%) skewX(30deg);
    -ms-transform: translateX(-20%) skewX(30deg);
    transform: translateX(-20%) skewX(30deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: translateX(0%) skewX(-15deg);
    -ms-transform: translateX(0%) skewX(-15deg);
    transform: translateX(0%) skewX(-15deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(0%) skewX(0deg);
    -ms-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
}
.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}
@-webkit-keyframes lightSpeedOut {
  0% {
    -webkit-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedOut {
  0% {
    -webkit-transform: translateX(0%) skewX(0deg);
    -ms-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    -ms-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
}
.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
  animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}
@-webkit-keyframes rotateIn {
  0% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(-200deg);
    transform: rotate(-200deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}
@keyframes rotateIn {
  0% {
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(-200deg);
    -ms-transform: rotate(-200deg);
    transform: rotate(-200deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}
.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
}
@-webkit-keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}
@keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}
.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
}
@-webkit-keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}
@keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}
.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
}
@-webkit-keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}
@keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}
.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
}
@-webkit-keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}
@keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}
.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
}
@-webkit-keyframes rotateOut {
  0% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(200deg);
    transform: rotate(200deg);
    opacity: 0;
  }
}
@keyframes rotateOut {
  0% {
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(200deg);
    -ms-transform: rotate(200deg);
    transform: rotate(200deg);
    opacity: 0;
  }
}
.rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
}
@-webkit-keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}
.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
}
@-webkit-keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
}
.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
}
@-webkit-keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
}
.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
}
@-webkit-keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}
.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
}
@-webkit-keyframes slideInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes slideInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}
@-webkit-keyframes slideInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes slideInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}
@-webkit-keyframes slideInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes slideInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }
  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}
@-webkit-keyframes slideOutLeft {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}
@keyframes slideOutLeft {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}
.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}
@-webkit-keyframes slideOutRight {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}
@keyframes slideOutRight {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}
.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}
@-webkit-keyframes slideOutUp {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}
@keyframes slideOutUp {
  0% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}
.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}
@-webkit-keyframes hinge {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%,
  60% {
    -webkit-transform: rotate(80deg);
    transform: rotate(80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40% {
    -webkit-transform: rotate(60deg);
    transform: rotate(60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  80% {
    -webkit-transform: rotate(60deg) translateY(0);
    transform: rotate(60deg) translateY(0);
    opacity: 1;
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  100% {
    -webkit-transform: translateY(700px);
    transform: translateY(700px);
    opacity: 0;
  }
}
@keyframes hinge {
  0% {
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%,
  60% {
    -webkit-transform: rotate(80deg);
    -ms-transform: rotate(80deg);
    transform: rotate(80deg);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40% {
    -webkit-transform: rotate(60deg);
    -ms-transform: rotate(60deg);
    transform: rotate(60deg);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  80% {
    -webkit-transform: rotate(60deg) translateY(0);
    -ms-transform: rotate(60deg) translateY(0);
    transform: rotate(60deg) translateY(0);
    opacity: 1;
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  100% {
    -webkit-transform: translateY(700px);
    -ms-transform: translateY(700px);
    transform: translateY(700px);
    opacity: 0;
  }
}
.hinge {
  -webkit-animation-name: hinge;
  animation-name: hinge;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%) rotate(-120deg);
    transform: translateX(-100%) rotate(-120deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg);
  }
}
@keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%) rotate(-120deg);
    -ms-transform: translateX(-100%) rotate(-120deg);
    transform: translateX(-100%) rotate(-120deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    -ms-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg);
  }
}
.rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollOut {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(100%) rotate(120deg);
    transform: translateX(100%) rotate(120deg);
  }
}
@keyframes rollOut {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    -ms-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(100%) rotate(120deg);
    -ms-transform: translateX(100%) rotate(120deg);
    transform: translateX(100%) rotate(120deg);
  }
}
.rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}
@-webkit-keyframes promoIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes promoIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.promoIn {
  -webkit-animation-name: promoIn;
  animation-name: promoIn;
}
