@charset "UTF-8";
/**
 * Base Elements
 */
body {
  font-family: "AvenirNextMedium", Arial, sans-serif;
  font-size: 16px;
  line-height: 22px;
  color: #333;
  background: #fff;
  box-sizing: border-box;
  margin: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

*, *:before, *:after {
  box-sizing: inherit;
}

::selection {
  background: #ce0d1c;
  color: #fff;
}

h1, h2, h3, h4, strong {
  font-family: "AvenirNextDemi", Arial, sans-serif, Arial, sans-serif;
}

h1 {
  font-size: 46px;
  line-height: 46px;
  margin-top: 0;
}

h2 {
  font-size: 34px;
  line-height: 40px;
  margin-top: 0;
  margin-bottom: 20px;
}

h3 {
  font-size: 22px;
  line-height: 28px;
  margin-bottom: 20px;
  margin-top: 0;
}

h4 {
  font-size: 18px;
  line-height: 24px;
  margin: 0 0 15px;
}

p {
  line-height: 26px;
  margin: 0;
  padding-bottom: 30px;
}

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

a {
  color: #7ea7cc;
  text-decoration: none;
}

.content-wrap {
  margin-bottom: 40px;
  clear: both;
}
.content-wrap p:last-child {
  padding-bottom: 0;
}

a:hover {
  color: #b5cce2;
}

ul, ol {
  margin: 0 0 40px;
  padding: 0 0 0 20px;
}

ul ul {
  list-style: circle;
}

img {
  max-width: 100%;
  height: auto;
}

.caps {
  text-transform: uppercase;
}

abbr {
  background: #fcf9bc;
  cursor: help;
  text-decoration: none !important;
}

/**
 * Global Classes
 */
.float-right {
  float: right;
}

.float-left {
  float: left;
}

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

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

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

.container:after,
.group:after {
  content: "";
  display: table;
  clear: both;
}

.caption {
  display: block;
  margin-bottom: 20px;
  font-size: 14px;
}

.full {
  width: 100%;
}

.hide {
  display: none !important;
}

.red {
  color: #d1132a;
}

.bottom {
  margin-bottom: 0;
  padding-bottom: 0;
}

.clear {
  clear: both;
}

/**
 * Universal elements
 */
.page-title {
  margin-bottom: 25px;
  clear: both;
}

.page-title + hr {
  margin: 0 0 40px;
  width: 40px;
  border: 1px solid #333;
  display: block;
  clear: both;
  text-align: left;
}

.post .content hr {
  border: 0;
  height: 1px;
  background-color: #333;
  margin: 0 0 30px;
}

.post .content img + hr {
  margin: 30px 0;
}

.overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
  filter: alpha(opacity=70);
  opacity: 0.7;
  z-index: 10;
  top: 0;
  left: 0;
}

.overlay.blue {
  background: #7ea7cc;
}

.overlay.purple {
  background: #9492c8;
}

.overlay.green {
  background: #2cac87;
}

.overlay.orange {
  background: #e15b1f;
}

/*** Wordpress Image Classes ***/
.alignleft {
  float: left;
  margin: 0 20px 20px 0;
}

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

.aligncenter {
  display: block;
  margin: 0 auto 20px;
}

/*** Videos ***/
.brightcove-container {
  max-width: 800px;
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}

.video-wrapper {
  margin: 0 auto 20px;
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
}
.video-wrapper iframe, .video-wrapper .video-js, .video-wrapper .bc-player-default_default {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 1023px) {
  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 30px;
  }
}
@media screen and (max-width: 640px) {
  h1 {
    font-size: 34px;
  }

  h2 {
    font-size: 26px;
  }

  .page-title {
    margin-bottom: 5px;
    width: 88%;
  }

  .page-title + hr {
    margin: 0 0 20px;
  }

  .content-wrap img {
    width: 100%;
  }
}
/*** Main Imports ***/
.container {
  max-width: 1200px;
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}

.half {
  width: 50%;
  float: left;
}

.half:first-child {
  padding-right: 10px;
}

.half:first-child + .half {
  padding-left: 10px;
}

.thirds {
  width: 33.3333%;
  float: left;
}

.thirds:first-child {
  padding-right: 10px;
}

.thirds:first-child + .thirds {
  padding: 0 10px;
}

.thirds:first-child + .thirds + .thirds {
  padding-left: 10px;
}

.col70 {
  width: 68%;
  float: left;
  padding-right: 20px;
}

.col30 {
  width: 32%;
  float: left;
}

/**
 * Responsive
 */
.show-tablet, .show-mobile {
  display: none;
}

@media screen and (max-width: 1024px) {
  .hide-tablet {
    display: none;
  }

  .container {
    width: 100%;
    padding: 0 20px;
  }

  .half,
.col70,
.col30 {
    width: 100%;
    padding-bottom: 40px;
    padding-right: 0;
    clear: both;
  }

  .half:first-child {
    padding-right: 0;
  }

  .half:first-child + .half {
    padding-left: 0;
  }
}
@media screen and (max-width: 480px) {
  .hide-phone {
    display: none;
  }
}
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

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

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

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

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

.site-header .navbar {
  background: #e4e4e4;
  padding: 20px 0 0;
}
.site-header .branding {
  text-align: center;
  padding: 30px 0;
}
.site-header .brand {
  margin: 0;
}
.site-header .brand a {
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: 500px 93px;
  width: 500px;
  height: 93px;
  display: block;
  text-indent: -9999px;
  overflow: hidden;
  margin: 0 auto 5px;
  transition: opacity 0.15s ease;
}
.site-header .brand a:hover {
  opacity: 0.7;
}
.site-header .site-description {
  color: #950018;
  text-transform: uppercase;
  display: block;
  font-family: "AvenirNextDemi", Arial, sans-serif, Arial, sans-serif;
  font-size: 18px;
}
.site-header .site-description strong {
  color: #d1132a;
}
.site-header nav {
  float: left;
}
.site-header nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-header nav li, .site-header nav a {
  display: inline-block;
}
.site-header nav a {
  text-transform: uppercase;
  font-size: 14px;
  color: #333333;
  padding: 15px;
  line-height: 1;
  position: relative;
  z-index: 1;
  transition: color 0.15s 0.05s ease;
}
.site-header nav a:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: #ce0d1c;
  transition: all 0.2s ease;
  z-index: -1;
}
.site-header nav li + li a {
  margin-left: 10px;
}
.site-header nav .videos a:after {
  background: #e15b1f;
}
.site-header nav .company a:after {
  background: #2cac87;
}
.site-header nav .community a:after {
  background: #9492c8;
}
.site-header nav .products a:after {
  background: #eba75c;
}
.site-header nav .cookies a:after {
  background: #7ea7cc;
}
.site-header nav .podcasts a:after {
  background: #665540;
}
.site-header nav .guidelines, .site-header nav .submit {
  display: none;
}
.site-header nav .guidelines a:after, .site-header nav .submit a:after {
  background: #a7a7aa;
}
.site-header nav a:hover, .site-header nav .current-menu-item a {
  color: #fff;
}
.site-header nav a:hover:after, .site-header nav .current-menu-item a:after {
  height: 100%;
  bottom: 0;
}
.site-header .actions {
  float: right;
}
.site-header .actions a {
  display: inline-block;
  text-transform: uppercase;
  font-size: 14px;
  line-height: 1;
  color: #fff;
  background: #a7a7aa;
  padding: 15px;
  font-family: "AvenirNextMedium", Arial, sans-serif;
  transition: background 0.15s ease;
}
.site-header .actions a + a {
  margin-left: 5px;
}
.site-header .actions .menu-toggle {
  display: none;
}
.site-header .actions .search {
  text-indent: -9999px;
  background: #a7a7aa url(img/icn/icn-search.png) center center no-repeat;
  background-size: 20px 20px;
  min-width: 50px;
}
.site-header .actions a:hover, .site-header .actions .search:hover {
  background-color: #333333;
}
.site-header .social {
  text-align: right;
  margin-bottom: 20px;
}
.site-header .social a {
  width: 40px;
  height: 40px;
  display: inline-block;
  text-indent: -9999px;
  text-align: left;
  transition: all 0.15s ease;
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: 40px auto;
}
.site-header .social a:first-child {
  margin-left: 0;
}
.site-header .social a:hover {
  opacity: 0.6;
}
.site-header .social a + a {
  margin-left: 10px;
}
.site-header .social .instagram {
  background-image: url(img/social/instagram.png);
}
.site-header .social .twitter {
  background-image: url(img/social/twitter.png);
}
.site-header .social .facebook {
  background-image: url(img/social/facebook.png);
}

@media screen and (max-width: 1199px) {
  .navbar .container {
    display: flex;
    flex-direction: column;
  }

  .site-header .social, .site-header .actions, .site-header nav {
    float: none;
    width: 100%;
  }
  .site-header .social {
    order: 1;
  }
  .site-header .actions {
    order: 2;
  }
  .site-header nav {
    order: 3;
  }
  .site-header nav a:after {
    height: 0;
  }

  .navbar .actions {
    text-align: right;
  }
  .navbar .actions a {
    text-align: center;
    padding: 15px;
  }
  .navbar .actions .guidelines, .navbar .actions .submit {
    display: none;
  }
  .navbar .actions .menu-toggle, .navbar .actions .search {
    min-width: 44px;
  }
  .navbar .actions .menu-toggle {
    display: inline-block;
    text-indent: -9999px;
    background: #a7a7aa url(img/icn/icn-menu.png) center center no-repeat;
    background-size: 20px 20px;
    float: left;
  }
  .navbar .actions .menu-toggle.open {
    background-color: #333333;
  }

  .site-header nav {
    width: calc(100% + 40px);
    margin-left: -20px;
    pointer-events: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.28s ease;
    background: #333333;
  }
  .site-header nav.active {
    height: inherit;
    pointer-events: inherit;
  }
  .site-header nav li, .site-header nav a {
    display: block;
  }
  .site-header nav li a, .site-header nav li + li a {
    margin-left: 0;
    color: #fff;
  }
  .site-header nav .guidelines, .site-header nav .submit {
    display: block;
  }
}
@media screen and (max-width: 959px) {
  .site-header .brand a {
    width: 400px;
    height: 74px;
    background-size: 400px 74px;
  }
}
@media screen and (max-width: 640px) {
  .site-header .brand a {
    width: 260px;
    height: 48px;
    background-size: 260px 48px;
  }

  .site-header .site-description strong {
    display: block;
  }
}
.site-footer {
  padding: 80px 0;
}
.site-footer p {
  padding-bottom: 0;
  margin-bottom: 0;
}
.site-footer p + p {
  margin-top: 10px;
}
.site-footer .container {
  overflow: hidden;
}
.site-footer .footer-info {
  float: left;
}
.site-footer .footer-version {
  float: right;
}

@media screen and (max-width: 640px) {
  .site-footer .footer-info, .site-footer .footer-version {
    float: none;
  }
  .site-footer .footer-info {
    margin-bottom: 20px;
  }
}
.alert {
  width: 100%;
  padding: 20px;
  margin-bottom: 20px;
}
.alert p.alert-title {
  position: relative;
  top: 3px;
}
.alert p.alert-title:last-child, .alert p:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
}

.alert > .svg-group {
  float: left;
  margin-right: 10px;
}

.alert > .icn-bg-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
}
.alert > .icn-bg-circle svg {
  margin: 8px 0 0 8px;
}

/**
 * Variations: Colors
 */
.alert.success, .alert.alert-green, div.alert.wpcf7-mail-sent-ok {
  background: #e2e6d4;
  color: #6d8428;
  fill: #e2e6d4;
}
.alert.success .icn-bg-circle, .alert.alert-green .icn-bg-circle, div.alert.wpcf7-mail-sent-ok .icn-bg-circle {
  background: #6d8428;
}

.alert.error, .alert.alert-red, div.alert.wpcf7-validation-errors {
  background: #f8dcdf;
  color: #950018;
  fill: #f8dcdf;
}
.alert.error > .icn-bg-circle, .alert.alert-red > .icn-bg-circle, div.alert.wpcf7-validation-errors > .icn-bg-circle {
  background: #950018;
}

.alert.warning, .alert.alert-orange {
  background: #fbe1c3;
  color: #e48b16;
  fill: #fbe1c3;
}
.alert.warning .icn-bg-circle, .alert.alert-orange .icn-bg-circle {
  background: #e48b16;
}

.alert.disclaimer p {
  text-align: center;
}

.alert.disclaimer, .alert.alert-gray {
  background: #e4e4e4;
  color: #363636;
  fill: #a7a7aa;
}
.alert.disclaimer .icn-bg-circle, .alert.alert-gray .icn-bg-circle {
  background: #363636;
}

.btn {
  background-color: #7ea7cc;
  transition: all 0.15s ease;
  color: #fff;
  font-family: "AvenirNextMedium", Arial, sans-serif;
  text-decoration: none;
  text-transform: uppercase;
  border-radius: 3px;
  padding: 5px 20px 5px 38px;
  display: inline-block;
  cursor: pointer;
  border: none;
  font-size: 0.9em;
  line-height: 22px;
  outline: none;
}
.btn.gray {
  background-color: #c4c5c5;
}
.btn.no-label {
  text-indent: -9999px;
  padding: 5px 20px;
}
.btn.fullwidth {
  width: 100%;
  text-align: center;
}
.btn.fullwidth.icn-chevron-down {
  padding: 6px 20px;
  line-height: 20px;
}
.btn.fullwidth.icn-chevron-down span {
  display: inline-block;
  vertical-align: middle;
}
.btn.fullwidth.icn-chevron-down:before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  vertical-align: middle;
  margin-right: 8px;
  background-image: url(img/btn/icn-btn-chevron-down.png);
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: 20px 20px;
}
.btn.icn-chevron-right {
  background-image: url(img/btn/icn-btn-chevron-right.png);
  background-position: 10px center;
  background-repeat: no-repeat;
  background-size: 20px 20px;
}
.btn.icn-chevron-left {
  background-image: url(img/btn/icn-btn-chevron-left.png);
  background-position: 10px center;
  background-repeat: no-repeat;
  background-size: 20px 20px;
}
.btn.icn-arrow-right {
  background-image: url(img/btn/icn-btn-arrow-right.png);
  background-position: 10px center;
  background-repeat: no-repeat;
  background-size: 20px 20px;
}
.btn.icn-arrow-left {
  background-image: url(img/btn/icn-btn-arrow-left.png);
  background-position: 10px center;
  background-repeat: no-repeat;
  background-size: 20px 20px;
}
.btn.gray, .btn.disabled {
  cursor: default;
}
.btn.gray.icn-chevron-right, .btn.disabled.icn-chevron-right {
  background-image: url(img/btn/icn-btn-chevron-right-disabled.png);
}
.btn.gray.icn-chevron-left, .btn.disabled.icn-chevron-left {
  background-image: url(img/btn/icn-btn-chevron-left-disabled.png);
}
.btn.gray.icn-arrow-right, .btn.disabled.icn-arrow-right {
  background-image: url(img/btn/icn-btn-arrow-right-disabled.png);
}
.btn.gray.icn-arrow-left, .btn.disabled.icn-arrow-left {
  background-image: url(img/btn/icn-btn-arrow-left-disabled.png);
}
.btn.icn-search {
  background-image: url(img/btn/icn-btn-search.png);
  background-position: 10px center;
  background-repeat: no-repeat;
  background-size: 20px 20px;
}

.btn:hover {
  color: #fff;
  opacity: 0.8;
}

.form-field {
  margin-bottom: 20px;
}

input[type=text],
input[type=email],
input[type=search],
input[type=tel],
input[type=url],
textarea {
  font-size: 14px;
  font-family: "AvenirNextRegular", Arial, sans-serif;
  color: #333;
  width: 100%;
  background: #fff;
  border-radius: 3px;
  border: none;
  appearance: none;
}
input[type=text]:focus,
input[type=email]:focus,
input[type=search]:focus,
input[type=tel]:focus,
input[type=url]:focus,
textarea:focus {
  outline: none;
  box-shadow: 0px 0px 0px 2px #7ea7cc inset;
}

input[type=text],
input[type=email],
input[type=search],
input[type=tel],
input[type=url],
textarea {
  padding: 5px 10px;
  height: 32px;
}

textarea {
  padding: 8px 10px;
}

label {
  clear: both;
  display: block;
  margin-bottom: 3px;
  text-transform: uppercase;
  font-size: 14px;
}
label.red {
  color: #d1132a;
}
label.placeholder {
  display: none;
}

fieldset {
  border: none;
  padding: 0 0 30px;
}

select {
  width: 100%;
}

.appearance select {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  font-size: 14px;
  font-family: "AvenirNextRegular", Arial, sans-serif;
  color: #333;
  width: 100%;
  background: #fff;
  border: 1px solid #7ea7cc;
  border-radius: 3px;
  padding: 1px 24px 1px 8px;
  background: #fff url(../img/select-input-bg.svg) 100.5% 0% no-repeat;
  height: 32px;
}
.appearance select:focus {
  outline: none;
  box-shadow: 0px 0px 0px 2px #7ea7cc inset;
}

.product-icon {
  padding-left: 38px !important;
  background: #fff url(../img/magnifying-glass.svg) 0% 0% no-repeat !important;
  height: auto !important;
}

.btn-chevron {
  background: #7ea7cc url(../img/btn-form-arrow-right.svg) no-repeat 12%;
  padding-left: 37px;
}
.btn-chevron:hover {
  background: #7ea7cc url(../img/btn-form-arrow-right.svg) no-repeat 12%;
  opacity: 0.9;
}

textarea {
  width: 100%;
  min-height: 140px;
  max-height: 360px;
  resize: vertical;
}

.input-group.btn-right .btn {
  float: right;
  border-radius: 0 3px 3px 0;
}
.input-group.btn-right input {
  border-radius: 3px 0 0 3px;
}
.input-group.btn-left .btn {
  float: left;
  border-radius: 3px 0 0 3px;
}
.input-group.btn-left input {
  border-radius: 0 3px 3px 0;
}
.input-group .input-inline {
  overflow: hidden;
}
.input-group .input-inline input {
  float: left;
}

.input-group-addon {
  padding: 8px 10px 2px 10px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.25;
  color: #464a4c;
  text-align: center;
  background-color: #fff;
  border-top: 1px solid #7ea7cc;
  border-left: 1px solid #7ea7cc;
  border-bottom: 1px solid #7ea7cc;
  border-bottom-left-radius: 0.25rem;
  border-top-left-radius: 0.25rem;
}

.field-group {
  padding-bottom: 20px;
}

.wpcf7-not-valid-tip {
  font-size: 0.85em !important;
  margin-top: 5px;
  color: #ce0d1c !important;
}

.wpcf7-validation-errors,
.wpcf7-mail-sent-ok {
  padding: 20px !important;
  margin: 0 0 20px 0 !important;
  border: none !important;
}

/*** CF7 Overrides ***/
.full .wpcf7-list-item {
  display: block;
  margin: 0 0 5px;
}

@media screen and (max-width: 1024px) {
  .form .half {
    padding-bottom: 0;
  }
}
.preventscroll {
  overflow-y: hidden;
  overflow-x: hidden;
}

.preventscroll form {
  overflow-y: hidden;
  overflow-x: hidden;
}

blockquote {
  padding-left: 84px;
  position: relative;
  background: url(img/icn/icn-blockquote.png) 0 center no-repeat;
  background-size: 64px 64px;
  margin: 0 0 40px;
  min-height: 64px;
  font-family: "AvenirNextDemi", Arial, sans-serif;
  font-size: 18px;
}
blockquote p:last-child {
  padding-bottom: 0;
}

blockquote.featured {
  padding: 0;
  background: transparent;
  text-align: center;
  font-size: 18px;
  font-family: "AvenirNextRegular", Arial, sans-serif;
  clear: both;
}
blockquote.featured:before {
  content: "";
  display: block;
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: url(img/icn/icn-blockquote.png) 0 center no-repeat;
  background-size: 80px 80px;
}
blockquote.featured hr {
  width: 40px;
  height: 0;
  margin: 20px auto;
  border: none;
  border-top: 1px solid #333;
}
blockquote.featured cite {
  font-family: "AvenirNextDemi", Arial, sans-serif;
  font-style: normal;
}
blockquote.featured p {
  padding: 40px 0 0;
}
blockquote.featured p:first-child {
  padding-top: 0;
}

.content-wrap blockquote:last-child {
  margin-bottom: 0;
}

figure figcaption {
  font-size: 14px;
  line-height: 18px;
  text-align: center;
  margin-top: 10px;
}

.posts .post h3 {
  margin-bottom: 10px;
}
.posts .post h3 a {
  color: #333333;
}
.posts .post .meta {
  margin-bottom: 20px;
}
.posts .post .meta span {
  line-height: 21px;
  position: relative;
  color: #a7a7aa;
  margin-left: 15px;
  text-transform: uppercase;
}
.posts .post .meta span:first-of-type {
  margin-left: 0;
}
.posts .post .meta span:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -11px;
  height: 21px;
}
.posts .post .meta .date {
  padding-left: 26px;
}
.posts .post .meta .date:before {
  width: 21px;
  background: url(img/icn/icn-time.png) 0 0 no-repeat;
  background-size: 21px 21px;
}
.posts .post .meta .comments {
  padding-left: 29px;
}
.posts .post .meta .comments:before {
  width: 24px;
  background: url(img/icn/icn-comments.png) 0 0 no-repeat;
  background-size: 24px 21px;
}
.posts .post .meta .views {
  padding-left: 33px;
}
.posts .post .meta .views:before {
  width: 28px;
  background: url(img/icn/icn-views.png) 0 0 no-repeat;
  background-size: 28px 21px;
}
.posts .post .content {
  overflow: hidden;
}
.posts .post figure {
  width: 160px;
  height: 160px;
  margin: 0;
  float: left;
  position: relative;
  overflow: hidden;
  margin-right: 20px;
  background-color: #e4e4e4;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.posts .post figure img {
  position: absolute;
  opacity: 0;
}
.posts .post .excerpt {
  float: left;
  width: calc(100% - 180px);
}
.posts .post .excerpt p {
  margin-bottom: 20px;
  padding-bottom: 0;
}
.posts .post:before {
  content: "";
  width: 60px;
  height: 1px;
  display: block;
  background: #333333;
  margin: 40px 0;
}
.posts .post:first-of-type:before {
  display: none;
}

.posts .blog-group + .blog-group .post:first-of-type:before {
  content: "";
  width: 60px;
  height: 1px;
  display: block;
  background: #333333;
  margin: 40px 0;
}

.posts .load-more {
  margin-top: 40px;
}

@media screen and (max-width: 640px) {
  .posts .post figure, .posts .post .excerpt {
    float: none;
  }
  .posts .post figure {
    width: 100%;
    height: auto;
    padding-top: 100%;
    margin: 0 auto 20px;
  }
  .posts .post .meta span {
    font-size: 14px;
    margin-left: 10px;
    line-height: 16px;
  }
  .posts .post .meta span:first-of-type {
    margin-left: 0;
  }
  .posts .post .meta span:before {
    height: 16px;
    margin-top: -8px;
  }
  .posts .post .meta .date {
    padding-left: 21px;
  }
  .posts .post .meta .date:before {
    width: 16px;
    background-size: 16px 16px;
  }
  .posts .post .meta .comments {
    padding-left: 23px;
  }
  .posts .post .meta .comments:before {
    width: 18px;
    background-size: 18px 16px;
  }
  .posts .post .meta .views {
    padding-left: 26px;
  }
  .posts .post .meta .views:before {
    width: 21px;
    background-size: 21px 16px;
  }
  .posts .post .excerpt {
    width: 100%;
    margin: 0;
  }
}
.single .post .tags {
  width: 100%;
  margin-left: 0;
}
.single .post .tags .tag:first-of-type {
  margin-left: 0;
}
.single .post .meta {
  margin-bottom: 40px;
}
.single .post .meta span {
  line-height: 21px;
  position: relative;
  color: #a7a7aa;
  margin-left: 15px;
  text-transform: uppercase;
}
.single .post .meta span:first-of-type {
  margin-left: 0;
}
.single .post .meta span:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -11px;
  height: 21px;
}
.single .post .meta .date {
  padding-left: 26px;
}
.single .post .meta .date:before {
  width: 21px;
  background: url(img/icn/icn-time.png) 0 0 no-repeat;
  background-size: 21px 21px;
}
.single .post .meta .author {
  padding-left: 30px;
}
.single .post .meta .author:before {
  width: 25px;
  background: url(img/icn/icn-users.png) 0 0 no-repeat;
  background-size: 25px 19px;
}
.single .post .meta .comments {
  padding-left: 29px;
}
.single .post .meta .comments:before {
  width: 24px;
  background: url(img/icn/icn-comments.png) 0 0 no-repeat;
  background-size: 24px 21px;
}
.single .post .meta .views {
  padding-left: 33px;
}
.single .post .meta .views:before {
  width: 28px;
  background: url(img/icn/icn-views.png) 0 0 no-repeat;
  background-size: 28px 21px;
}

.single .powerpress_player {
  margin-bottom: 20px;
}

.single .post header {
  text-align: center;
}
.single .post .pagination {
  overflow: hidden;
  margin-bottom: 40px;
}
.single .post .author-meta {
  text-align: center;
  margin-bottom: 40px;
  padding: 30px;
  background: url(img/bg-information.png) center center no-repeat;
  background-size: cover;
  color: #fff;
  position: relative;
}
.single .post .author-meta .content {
  position: relative;
  z-index: 11;
}
.single .post .author-meta .author {
  font-size: 22px;
  font-family: "AvenirNextDemi", Arial, sans-serif, Arial, sans-serif;
  display: block;
}
.single .post .author-meta .description {
  display: block;
  margin-top: 10px;
}
.single .post .author-meta .overlay {
  background: #000;
}
.single .post .attachment {
  text-align: center;
}
.single .post .content a {
  color: #0000EE;
}

.single .post .post-footer {
  clear: both;
}

@media screen and (max-width: 640px) {
  .single .post .page-title {
    margin: 0 auto 10px;
  }
  .single .post .content figure {
    max-width: 100%;
  }
  .single .post .meta span {
    font-size: 14px;
    margin-left: 10px;
    line-height: 16px;
  }
  .single .post .meta span:first-of-type {
    margin-left: 0;
  }
  .single .post .meta span:before {
    height: 16px;
    margin-top: -8px;
  }
  .single .post .meta .date {
    padding-left: 21px;
    margin-left: 0;
  }
  .single .post .meta .date:before {
    width: 16px;
    background-size: 16px 16px;
  }
  .single .post .meta .author {
    padding-left: 23px;
  }
  .single .post .meta .author:before {
    width: 18px;
    background-size: 18px 14px;
  }
  .single .post .meta .author:after {
    content: "\a";
    white-space: pre;
    display: block;
    height: 5px;
  }
  .single .post .meta .comments {
    padding-left: 23px;
  }
  .single .post .meta .comments:before {
    width: 18px;
    background-size: 18px 16px;
  }
  .single .post .meta .views {
    padding-left: 26px;
  }
  .single .post .meta .views:before {
    width: 21px;
    background-size: 21px 16px;
  }
}
.tags {
  margin-bottom: 15px;
  width: calc(100% + 5px);
  margin-left: -5px;
}

.tags .tag {
  display: inline-block;
  text-transform: uppercase;
  color: #fff;
  font-size: 12px;
  line-height: 1;
  padding: 5px 10px;
  margin: 0 0 5px 5px;
  background: #e4e4e4;
}
.tags .tag.mission {
  background: #2cac87;
}
.tags .tag.community {
  background: #9492c8;
}
.tags .tag.videos {
  background: #e15b1f;
}
.tags .tag.products {
  background: #eba75c;
}
.tags .tag.cookies {
  background: #7ea7cc;
}
.tags .tag.podcasts {
  background: #665540;
}

.tags a.tag {
  transition: opacity 0.15s ease;
}
.tags a.tag:hover {
  opacity: 0.7;
}

@media screen and (max-width: 640px) {
  .tags .tag {
    padding: 4px 8px;
    font-size: 11px;
  }
}
.feature {
  margin-bottom: 40px;
  overflow: hidden;
}
.feature .post {
  width: calc(33.3333333333% - 6.6666666667px);
  height: 356px;
  margin-left: 10px;
  float: left;
  position: relative;
  overflow: hidden;
  display: block;
  background-color: #e4e4e4;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.feature .post .content {
  position: absolute;
  bottom: 20px;
  left: 20px;
  width: calc(100% - 40px);
  z-index: 2;
  padding-right: 68px;
}
.feature .post h2 {
  font-size: 24px;
  line-height: 1.2;
  color: #fff;
}
.feature .post .tags {
  margin-bottom: 10px;
}
.feature .post:first-of-type {
  margin-left: 0;
}
.feature .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: url("img/bg-features-shadow.png") bottom left repeat-x;
  background-size: contain;
  transition: opacity 0.2s ease;
  opacity: 0.9;
}
.feature .post:hover .overlay {
  opacity: 0.5;
}
.feature .arrow {
  position: absolute;
  bottom: 20px;
  right: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  transition: all 0.2s ease-in-out;
  background-color: rgba(255, 255, 255, 0.2);
  background-image: url(img/icn/icn-chevron-right@3x.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 22px 22px;
}
.feature .post:hover .arrow {
  background-color: rgba(255, 255, 255, 0.1);
  transform: scale(1.2);
}

@media screen and (max-width: 959px) {
  .feature {
    width: calc(100% + 40px);
    margin-left: -20px;
  }

  .feature .post {
    width: calc(33.3333333333% - 3.3333333333px);
    height: 320px;
    margin-left: 5px;
  }
  .feature .post:first-of-type {
    margin-left: 0;
  }
  .feature .post h2 {
    font-size: 22px;
  }
  .feature .post .content {
    padding-right: 52px;
  }
  .feature .post .arrow {
    width: 32px;
    height: 32px;
    background-size: 15px 15px;
  }
}
@media screen and (max-width: 640px) {
  .feature .post {
    width: 100%;
    margin: 0;
    height: 220px;
    border-bottom: 5px solid #fff;
  }
  .feature .post h2 {
    font-size: 22px;
  }
}
.searchbar {
  background: #e4e4e4;
  padding: 30px 20px;
  margin-bottom: 30px;
}
.searchbar span {
  display: none;
}
.searchbar .btn {
  margin: 0;
}
.searchbar.not-found {
  background: transparent;
  padding: 0;
  margin: 0;
  width: 50%;
}

.search .results {
  margin-bottom: 40px;
}

.search-pagination {
  text-align: right;
}
.search-pagination .paging {
  display: inline-block;
  float: left;
  line-height: 31px;
}
.search-pagination a {
  text-align: left;
  margin-left: 5px;
}
.search-pagination a:first-of-type {
  margin-left: 0;
}

@media screen and (max-width: 767px) {
  .searchbar.not-found {
    width: 100%;
  }
}
@media screen and (max-width: 640px) {
  .searchbar {
    width: calc(100% + 40px);
    margin-left: -20px;
  }
  .searchbar .btn {
    text-indent: -9999px;
    padding: 5px 20px;
  }

  .search-pagination {
    display: flex;
    flex-direction: column;
  }
  .search-pagination .controls {
    order: 1;
    text-align: center;
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
  }
  .search-pagination .paging {
    display: block;
    float: none;
    text-align: center;
    line-height: 1.2;
    order: 2;
  }
}
.comments .comments-counter {
  background: #c4c5c5;
  text-transform: uppercase;
  color: #fff;
  padding: 8px 20px;
  font-size: 14px;
  margin-bottom: 30px;
  display: inline-block;
}
.comments ol, .comments ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.comments ol.comment-list {
  margin-bottom: 40px;
}
.comments ol.comment-list > li:after {
  content: "";
  width: 60px;
  height: 1px;
  display: block;
  background: #333333;
  margin: 40px 0;
}
.comments ol.comment-list > li:last-of-type:after {
  display: none;
}
.comments ol.comment-list > li > ol {
  margin-top: 40px;
}
.comments ol.children .reply {
  display: none;
}
.comments ol.children .comment-body {
  margin-bottom: 40px;
}
.comments .comment-list .comment {
  padding-left: 100px;
  position: relative;
}
.comments .says {
  display: none;
}
.comments .comment-body .comment-author b {
  font-size: 18px;
  display: block;
}
.comments .comment-body .comment-metadata {
  margin: 5px 0 10px;
}
.comments .comment-body .comment-edit-link {
  display: inline-block;
  margin-left: 20px;
}
.comments .comment-body .comment-reply-link:after {
  content: "»";
  display: inline-block;
  margin-left: 2px;
}
.comments .comment-body time {
  line-height: 21px;
  position: relative;
  color: #a7a7aa;
  text-transform: uppercase;
  padding-left: 26px;
}
.comments .comment-body time:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -11px;
  width: 21px;
  height: 21px;
  background: url(img/icn/icn-time.png) 0 0 no-repeat;
  background-size: 21px 21px;
}
.comments .comment-body .avatar {
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
}
.comments .comment-body .comment-content p {
  padding: 0;
  margin-bottom: 20px;
}
.comments .comment-list .comment-respond {
  margin-top: 20px;
  padding: 20px;
}
.comments .comment-list .comment-respond h3 {
  font-size: 22px;
}
.comments .comment-list .comment-respond h3 small {
  font-size: 16px;
  font-family: "AvenirNextMedium", Arial, sans-serif;
  font-weight: normal;
}
.comments .comment-list .comment-respond h3 small a {
  color: #ce0d1c;
}
.comments .comment-list .comment-respond textarea {
  min-height: 100px;
}

.comments .comment-respond {
  background: #e4e4e4;
  padding: 30px 20px;
}
.comments .comment-respond h3 {
  font-size: 34px;
}
.comments .comment-respond .comment-form {
  position: relative;
}
.comments .comment-respond .logged-in-as {
  position: absolute;
  padding-bottom: 0;
  bottom: 5px;
  right: 0;
}
.comments .comment-respond .comment-form-comment {
  padding: 0;
  margin-bottom: 20px;
}
.comments .comment-respond .form-submit {
  padding-bottom: 0;
}

/** Unapproved comments **/
.comment-awaiting-moderation {
  width: 100%;
  padding: 20px;
  margin-bottom: 20px;
  background: #fbe1c3;
  color: #e48b16;
  fill: #fbe1c3;
  text-align: center;
}

.comments-area .alert.warning {
  text-align: center;
}

@media screen and (max-width: 960px) {
  .comments .comment-list .comment {
    padding-left: 63px;
  }

  .comments .comment-body .avatar {
    width: 48px;
    height: 48px;
  }
}
@media screen and (max-width: 640px) {
  .comments .comment-list .comment {
    padding-left: 42px;
  }

  .comments .comment-body .avatar {
    width: 32px;
    height: 32px;
  }
  .comments .comment-body .comment-author b {
    font-size: 16px;
  }
  .comments .comment-body time {
    font-size: 12px;
    line-height: 16px;
    padding-left: 21px;
  }
  .comments .comment-body time:before {
    width: 16px;
    height: 16px;
    background-size: 16px 16px;
    margin-top: -8px;
  }
  .comments .comment-body .comment-content {
    word-wrap: break-word;
  }

  .comments .comment-respond .logged-in-as {
    position: relative;
    margin-bottom: 20px;
  }
}
.gallery.preload .gallery-item, .gallery.preload .gallery-nav {
  display: none;
}
.gallery.preload .gallery-item:first-of-type {
  display: inline-block;
}

.gallery {
  text-align: center;
  background: #333;
  margin-bottom: 30px;
}
.gallery .title {
  font-family: "AvenirNextDemi", Arial, sans-serif;
  display: block;
  padding: 30px 20px 0;
  color: #a7a7aa;
  font-size: 18px;
  line-height: 1.2;
  margin-bottom: -10px;
}
.gallery .slick-slide {
  overflow: hidden;
  padding: 20px;
}
.gallery .slick-arrow {
  position: absolute;
  top: 50%;
  margin-top: -16px;
  z-index: 3;
  outline: none;
  border: none;
  text-indent: -9999px;
  width: 20px;
  height: 32px;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.3s ease;
}
.gallery .slick-arrow:hover {
  opacity: 1;
}
.gallery .slick-prev {
  left: 20px;
  background: url(img/icn/icn-chevron-left-white.png) 0 0 no-repeat;
  background-size: 20px 32px;
}
.gallery .slick-next {
  right: 20px;
  background: url(img/icn/icn-chevron-right-white.png) 0 0 no-repeat;
  background-size: 20px 32px;
}

.gallery-main {
  padding: 20px 40px;
}
.gallery-main .gallery-item {
  outline: none;
}
.gallery-main .gallery-item figure {
  text-align: center;
  position: relative;
  display: inline-block;
  margin: 0;
}
.gallery-main .gallery-item img {
  max-width: 100%;
  max-height: 480px;
  margin: 0 auto;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}
.gallery-main .gallery-item figcaption {
  color: #fff;
  font-family: "AvenirNextDemi", Arial, sans-serif;
  margin: 20px auto 0;
  max-width: 600px;
  width: 100%;
}

.gallery-nav {
  padding: 10px;
  background: #4f4f4f;
}
.gallery-nav .gallery-nav-item {
  padding: 10px;
}
.gallery-nav .gallery-nav-item, .gallery-nav a {
  outline: none;
}
.gallery-nav a {
  width: 100%;
  overflow: hidden;
  opacity: 0.45;
  padding-top: 70%;
  display: block;
  text-indent: -9999px;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  transition: all 0.2s ease;
}
.gallery-nav a:hover {
  transform: scale(1.05);
  opacity: 1;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}
.gallery-nav .gallery-nav-item.slick-current a {
  opacity: 1;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}

@media screen and (max-width: 767px) {
  .gallery .slick-arrow {
    width: 15px;
    height: 24px;
    margin-top: -12px;
  }
  .gallery .slick-prev, .gallery .slick-next {
    background-size: 15px 24px;
  }
}