/*
Theme Name: Moment
Theme URI: https://www.cssigniter.com/themes/moment/
Author: CSSIgniter
Author URI: https://www.cssigniter.com/
Description: Blogging theme for WordPress
Version: 1.4.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ci_theme
Domain Path: /lang
*/

/* -----------------------------------------
	Table of Contents
--------------------------------------------

.. 01. General
.. 02. Main Navigation
.. 03. Header
.. 04. Homepage Specific Styles
.. 05. Footer
.. 06. Comments
.. 07. Widgets Styling
.. 08. WordPress defaults
.. 09. External Plugins
.. 10. Global Mediaqueries

*/

/* -----------------------------------------
	01. General
----------------------------------------- */

/* Basic Typography
=================================== */

body {
  line-height: 1.75;
  font-size: 16px;
  color: #444;
  font-family:  sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #FFF;
}

h1,
h2,
h3,
.widget-title,
h4,
h5,
h6 {
  line-height: normal;
  margin: 0 0 15px 0;
  -ms-word-wrap: break-word;
  word-wrap: break-word;
  font-weight: normal;
  font-family: serif;
}

h1 {
  font-size: 36px;
}

h2 {
  font-size: 30px;
}

h3,
.widget-title {
  font-size: 26px;
}

h4 {
  font-size: 22px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 16px;
}

p {
  margin: 0 0 15px 0;
}

img {
  display: inline-block;
  vertical-align: middle;
  max-width: 100%;
  height: auto;
}

a {
  -webkit-transition: color 0.18s ease, background-color 0.18s ease, border-color 0.18s ease;
  transition: color 0.18s ease, background-color 0.18s ease, border-color 0.18s ease;
  outline: none;
  color: #444;
  text-decoration: none;
}

a:hover,
a:focus {
  color: #919191;
  outline: none;
  text-decoration: none;
}

a:active {
  outline: none;
}

.group:before,
.group:after {
  content: " ";
  /* 1 */
  display: table;
  /* 2 */
}

.group:after {
  clear: both;
}

/* General Element Styling
=================================== */

/* Reset figure margin from normalize.css */

figure {
  margin: 0;
}

/* Lists */

ul,
ol {
  padding-left: 20px;
}

ul {
  list-style: disc;
}

ol {
  list-style: decimal;
}

dl {
  margin: 0 0 20px;
}

dt {
  font-weight: bold;
}

dd {
  margin: 0 0 15px;
}

/* Blockquotes */

blockquote {
  margin: 20px 0;
  padding-left: 15px;
  border-left: 3px solid #ccc;
  font-size: 17px;
  font-weight: 300;
}

blockquote cite {
  display: block;
  font-weight: bold;
  font-style: italic;
  margin: 10px 0 0;
  color: rgba(68, 68, 68, 0.8);
  font-size: 14px;
}

/* Tables */

table {
  border-collapse: separate;
  border-spacing: 0;
  width: 100%;
}

.entry-content table {
  border-width: 1px 0 0 1px;
  margin-bottom: 24px;
}

.entry-content th:first-child,
.entry-content td:first-child {
  padding-left: 0;
}

.entry-content th,
.entry-content td {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.entry-content caption,
.entry-content th,
.entry-content td {
  font-weight: normal;
  text-align: left;
  padding: 5px;
  vertical-align: middle;
}

.entry-content th {
  border-width: 0 1px 1px 0;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 85%;
}

.entry-content td {
  border-width: 0 1px 1px 0;
}

/* Code */

code,
kbd,
tt,
var,
samp,
pre {
  font-family: monospace, serif;
  -webkit-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
  font-style: normal;
}

pre {
  padding: 15px;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

/* Various */

address {
  margin: 0 0 15px;
}

.sr-only,
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Embeds and iframes
=================================== */

embed,
iframe,
object,
video,
audio {
  margin-bottom: 15px;
  max-width: 100%;
}

p > embed,
p > iframe,
p > object,
p > audio,
span > embed,
span > iframe,
span > object,
span > audio {
  margin-bottom: 0;
}

#map * {
  max-width: none !important;
}

/* General Form Styling
=================================== */

label {
  display: block;
  margin: 0 0 2px;
  font-weight: normal;
}

input,
textarea {
  display: inline-block;
  font-size: inherit;
  width: 100%;
  max-width: 100%;
  height: 47px;
  padding: 6px 12px;
  box-shadow: none;
  line-height: normal;
  border: 1px solid #ccc;
  background-color: #FFF;
  background-image: none;
  border-radius: 0;
}

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

input[type="search"] {
  /* Restoring box-sizing */
  box-sizing: border-box;
}

textarea {
  height: auto;
}

select {
  max-width: 100%;
}

input[type="checkbox"],
input[type="radio"] {
  margin: 4px 0 0;
  margin-top: 1px \9;
  line-height: normal;
  width: auto;
  height: auto;
}

fieldset {
  margin: 0 0 15px;
  padding: 0;
  border: none;
  min-width: 0;
}

/* Placeholder text color */

::-webkit-input-placeholder {
  color: rgba(68, 68, 68, 0.5);
  font-weight: normal;
  opacity: 1;
}

:-moz-placeholder {
  color: rgba(68, 68, 68, 0.5);
  font-weight: normal;
  opacity: 1;
}

::-moz-placeholder {
  color: rgba(68, 68, 68, 0.5);
  font-weight: normal;
  opacity: 1;
}

:-ms-input-placeholder {
  color: rgba(68, 68, 68, 0.5);
  font-weight: normal;
  opacity: 1;
}

/* Buttons
=================================== */

.btn,
.comment-reply-link,
input[type="button"],
input[type="submit"],
input[type="reset"],
button {
  display: inline-block;
  font-weight: normal;
  font-size: 14px;
  margin: 0;
  width: auto;
  height: auto;
  line-height: normal;
  border: none;
  box-shadow: none;
  border-radius: 0;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  background-image: none;
  white-space: nowrap;
  padding: 11px 12px 10px;
  background-color: #FFF200;
  color: #2e2e2e;
  -webkit-transition: 0.18s background-color ease, color 0.18s ease,  0.18s border-color ease;
  transition: 0.18s background-color ease, color 0.18s ease,  0.18s border-color ease;
  -webkit-user-selsect: none;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.btn:active,
.comment-reply-link:active,
input[type="button"]:active,
input[type="submit"]:active,
input[type="reset"]:active,
button:active {
  outline: none;
}

.btn:hover,
.comment-reply-link:hover,
input[type="button"]:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
button:hover {
  background: #222;
  color: #FFF;
  text-decoration: none;
}

.btn:focus,
.comment-reply-link:focus,
input[type="button"]:focus,
input[type="submit"]:focus,
input[type="reset"]:focus,
button:focus {
  outline: none;
}



@-webkit-keyframes scaleout {
  0% {
    -webkit-transform: scale(0);
  }

  100% {
    -webkit-transform: scale(1);
    opacity: 0;
  }
}

@keyframes scaleout {
  0% {
    transform: scale(0);
    -webkit-transform: scale(0);
  }

  100% {
    transform: scale(1);
    -webkit-transform: scale(1);
    opacity: 0;
  }
}

.flex-direction-nav a {
  width: 40px;
  height: 40px;
  top: 50%;
  margin: -20px 0 0 0;
  opacity: 0.7;
  color: #FFF;
  line-height: normal;
}

.flex-direction-nav a:hover {
  color: #FFF;
  opacity: 1;
}

.flex-direction-nav a:before {
  font-family: FontAwesome;
  content: '\f053';
  font-size: 34px;
}

.flex-direction-nav a.flex-next:before {
  content: '\f054';
}

.flex-direction-nav a.flex-next {
  right: 10px;
}

.flex-direction-nav a.flex-prev {
  left: 10px;
}

.flexslider .slides > li:first-child {
  display: block;
  /* Display flexslider's first item no matter if its loading or not */
  -webkit-backface-visibility: visible;
}

.flexslider.loading .slides > li:first-child {
  opacity: 1 !important;
  /* Remove the fade in/out animation when the slider loads */
}

/* -----------------------------------------
	02. Main Navigation
----------------------------------------- */

#mobilemenu {
  display: none;
}

#mobilemenu.mm-menu.mm-opened {
  display: block;
}

.mm-listview {
  font-size: 20px;
}

.mm-listview > li > a,
.mm-listview > li > span {
  padding: 20px 10px 20px 20px;
}

/* -----------------------------------------
	03. Header
----------------------------------------- */

.logo {
  margin: 0;
  background-color: #FFF200;
  display: inline-block;
  font-size: 18px;
  text-transform: uppercase;
  padding: 14px 60px 14px 15px;
  height: 51px;
}

.logo a {
  color: #2e2e2e;
}

.logo.imglogo {
  height: auto;
}

.tagline {
  font-size: 0.9em;
  padding: 0 0 0 10px;
}

.trigger-nav {
  float: right;
  color: #2e2e2e;
  background-color: #FFF200;
  height: 51px;
  width: 51px;
  font-size: 24px;
  display: inline-block;
  text-align: center;
  line-height: 2.1;
}

.trigger-nav:hover,
.trigger-nav:focus,
.trigger-nav:active {
  color: #2e2e2e;
}

/* Fullwidth Article Styles */

.full .header {
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 2;
}

/* -----------------------------------------
	04. Modules
----------------------------------------- */

.page-title {
  margin: 40px 0;
  text-transform: uppercase;
  font-size: 20px;
}

#page {
  padding: 50px 0;
}

#page.full {
  padding-top: 0;
}

/* General Entry Styles */

.entry {
  position: relative;
}

.entry-title {
  line-height: 1.111111111;
}

.entry-item {
  margin: 0;
  padding: 0;
}

.entry-item.half {
  width: 50%;
}

.entry-item.quarter {
  width: 25%;
}

.entry-item .entry-title {
  max-width: 480px;
}

.entry-item .entry-title a {
  color: #FFF;
}

.entry-item.quarter .entry-title {
  font-size: 24px;
}

.entry-item > a {
  position: relative;
  display: block;
}

.entry-item > a:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 300px;
  background-color: transparent;
  /* Fallback Color */
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.72)), to(transparent));
  /* Saf4+, Chrome */
  background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.72), transparent);
  /* Chrome 10+, Saf5.1+, iOS 5+ */
  /* FF3.6 */
  /* IE10 */
  /* Opera 11.10+ */
  background-image: linear-gradient(top, rgba(0, 0, 0, 0.72), transparent);
}

.entry-item .entry-meta {
  margin: 0;
}

.related .entry-item .entry-item-content {
  padding: 25px;
}

.related .entry-item .entry-meta {
  font-size: 11px;
  margin: 0 0 5px;
}

.related .entry-item .entry-title {
  font-size: 18px;
  line-height: 1.2;
}

.related .entry-item > a:after {
  height: 100%;
}

.entry-meta {
  font-size: 14px;
  text-transform: uppercase;
  margin: 40px 0 0;
}

.entry-item .entry-meta {
  color: #FFF;
}

.entry-categories {
  position: relative;
  /*top: -1px;*/
}

.entry-categories a {
  color: #151515 !important;
  display: inline-block;
  padding: 1px 4px;
  line-height: normal;
  margin: 0 5px 0 0;
  font-weight: bold;
  font-size: 11px;
  background-color: #FFF200;
}

.entry-item-content {
  position: absolute;
  top: 0;
  left: 0;
  padding: 50px;
}

/* Infinite Loading */

.load-more {
  display: block;
  height: 50px;
  text-align: center;
  background-color: #FFF200;
  color: #2e2e2e;
  font-size: 14px;
  text-transform: uppercase;
  padding-top: 12px;
}

.load-more:hover {
  color: #2e2e2e;
  background-color: #f5e800;
}

.load-more:focus,
.load-more:active {
  color: #2e2e2e;
}

/* Infinite Scrolling Loader */

#infscr-loading {
  font-size: 13px;
  text-align: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  opacity: 1;
  background: rgba(43, 43, 43, 0.5);
  padding: 0;
  margin: 0;
  font-style: normal;
  z-index: 10;
  line-height: 1.5;
}

#infscr-loading img {
  display: none;
}

#infscr-loading em {
  font-style: normal;
}

#infscr-loading > div {
  position: absolute;
  width: 266px;
  padding: 95px 30px 50px;
  top: 50%;
  left: 50%;
  margin-left: -133px;
  margin-top: -120px;
  border-radius: 2px;
  letter-spacing: 0.04em;
  background-color: #FFF200;
  color: #2e2e2e;
}

#infscr-loading > div:before {
  content: "";
  width: 32px;
  height: 31px;
  z-index: 5;
  position: absolute;
  top: 45px;
  left: 50%;
  margin-left: -19px;
  -webkit-animation: spin 1s linear infinite;
  animation: spin 1s linear infinite;
  background: url("images/ajax-load.png") no-repeat;
}

/* Single Article Styles & Variations */

.page-template-default .entry-title,
.error404 .entry-title {
  margin-top: 50px;
}

.page-template-default .entry-thumb,
.error404 .entry-thumb {
  margin: 0 0 -20px;
}

.entry-content:before,
.entry-content:after {
  content: " ";
  /* 1 */
  display: table;
  /* 2 */
}

.entry-content:after {
  clear: both;
}

.entry-content a {
  border-bottom: 2px solid #FFF200;
  padding-bottom: 2px;
}

.entry-content a:hover {
  color: #919191;
}

.entry-thumb {
  margin: 0 0 30px;
}

.wp-caption-text {
  color: #555;
}

/* Fullwidth Images */

.entry-split .entry-content .wp-caption.aligncenter,
.entry-split .entry-content img.aligncenter {
  width: calc(200% + 30px) !important;
  max-width: none;
  margin: 40px 0;
}

.entry-split .entry-content .wp-caption.aligncenter img,
.entry-split .entry-content img.aligncenter img {
  max-width: calc(200% + 30px);
  width: 100%;
}

.entry-content-right .entry-content .wp-caption.aligncenter,
.entry-content-right .entry-content img.aligncenter {
  margin-left: calc(-100% - 30px);
}

/* Videos */

.entry-content .fluid-width-video-wrapper {
  margin: 25px 0;
}

.entry-split .entry-content .fluid-width-video-wrapper {
  width: calc(200% + 30px);
  max-width: calc(200% + 30px);
  height: 640px;
}

.entry-content-right .entry-content .fluid-width-video-wrapper {
  margin-left: calc(-100% - 30px);
}

/* Quotes */

.entry-content blockquote {
  font-size: 36px;
  font-family: "PT Serif", serif;
  line-height: 1.111111111;
  border: none;
  padding: 0;
  margin: 40px 0;
  position: relative;
  width: 100%;
}

.entry-content blockquote:before {
  content: "\201C";
  color: #d2d2d2;
  font-size: 200px;
  position: absolute;
  top: -15px;
  left: -110px;
}

.entry-split .entry-content blockquote {
  position: absolute;
  max-width: 80%;
  margin: 0 0 0 -100%;
}

.entry-content-left .entry-content blockquote {
  margin: 0 0 0 120%;
}

.related {
  margin-top: 80px;
}

.related .entry-item img {
  width: 100%;
  height: auto;
}

.related h3,
.related .widget-title {
  font-size: 18px;
  text-transform: uppercase;
  margin-bottom: 60px;
  letter-spacing: 0.2em;
}

/* Pagination */

#paging {
  margin: 70px 0 0;
}

#paging a,
#paging > span {
  background-color: #FFF200;
  color: #2e2e2e;
  display: inline-block;
  position: relative;
  font-size: 13px;
  padding: 4px 12px;
}

#paging a:hover {
  background-color: #000;
  color: #fff;
}

#paging a:active {
  outline: none;
  top: 1px;
  border-bottom-color: transparent;
}

#paging .current {
  background-color: #000;
  color: #FFF;
}


/* -----------------------------------------
	05. Footer
----------------------------------------- */

/* -----------------------------------------
   06. Comments
----------------------------------------- */

#comments {
  margin: 70px 0 0;
}

#comments h3,
#comments .widget-title {
  font-size: 18px;
  text-transform: uppercase;
  margin-bottom: 40px;
  letter-spacing: 0.2em;
}

#comment-list {
  margin: 0;
  list-style: none;
  padding: 0;
}

#comment-list ol {
  list-style: none;
}

#comment-list .comment-body {
  margin-bottom: 20px;
  padding-top: 20px;
}

#comment-list > .comment:first-child > .comment-body {
  border-top: none;
  padding-top: 0;
}

.post-comments {
  margin: 0 0 45px;
}

.comment-author .avatar {
  width: 64px;
  height: 64px;
  float: left;
  margin: 0 15px 15px 0;
  overflow: visible;
}

.comment-content {
  overflow: hidden;
  zoom: 1;
  font-size: 13px;
}

.comment-metadata {
  font-size: 12px;
  margin: 0 0 5px;
}

.comment-reply-link {
  font-size: 10px;
  text-transform: uppercase;
  padding: 4px 10px;
  margin-left: 80px;
  height: auto;
}

.bypostauthor > article .fn:before {
  font-family: FontAwesome;
  content: "\f005";
  margin: 0 2px 0 -2px;
  position: relative;
  top: -1px;
  font-size: 11px;
}

#cancel-comment-reply-link {
  font-size: 13px;
  font-weight: normal;
  margin-left: 5px;
}

.form-allowed-tags,
.comment-notes {
  font-size: 12px;
  line-height: 1.5;
  color: rgba(68, 68, 68, 0.8);
}

/* -----------------------------------------
	07. Widgets Styling
----------------------------------------- */

.widget {
  margin: 0 0 25px;
}

.sidebar .widget:last-child,
.widget p:last-child {
  /* Nullify bottom margin for last elements in widgets and sidebars */
  margin-bottom: 0;
}

/* WIDGET: #List Widgets
========================================= */

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

.widget ul li {
  padding: 5px 0;
  border-bottom: 1px dotted rgba(0, 0, 0, 0.1);
  display: block;
  margin: 0;
}

.widget ul ul.children li:first-child {
  border-top: 1px dotted rgba(0, 0, 0, 0.1);
  margin-top: 6px;
}

.widget ul li:last-of-type {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

.widget ul.children li {
  padding-left: 15px;
}

.widget .current-cat > a,
.widget .current-cat-parent > a {
  font-weight: bold;
}

/* WIDGET: #Ads125
========================================= */

#ads125,
.ads125 {
  margin: 0;
  padding: 0;
  list-style: none;
}

#ads125 li,
.ads125 li {
  background: none;
  border: none;
  float: left;
  margin: 0 15px 10px 0;
  padding: 0;
  max-width: 125px;
  height: auto;
}

/* WIDGET: #Search
========================================= */

.searchform > div {
  position: relative;
}

.searchform .searchsubmit {
  position: absolute;
  top: 0;
  right: 0;
  width: 45px;
  height: 100%;
}

/* WIDGET: #Flickr
========================================= */

.flickr_badge_image {
  float: left;
  margin: 0 15px 15px 0;
}

.flickr_badge_image a {
  display: block;
  line-height: 0;
}

/* WIDGET: #About
========================================= */

.widget_about {
  margin-top: -5px;
}

.widget_about img {
  max-width: 100px;
  height: auto;
}

.widget_about .alignleft {
  float: left;
  margin: 5px 15px 6px 0;
}

.widget_about .alignright {
  float: right;
  margin: 5px 0 6px 15px;
}

/* WIDGET: #Text Widget
========================================= */

.widget_text p:last-child {
  margin-bottom: 0;
}

/* WIDGET: #Twitter
========================================= */

.widget_ci_twitter_widget ul li {
  margin-bottom: 12px;
}

.widget_ci_twitter_widget ul li:first-child {
  padding-top: 0;
}

.widget_ci_twitter_widget .twitter-time {
  display: block;
  font-size: 0.85em;
}

/* WIDGET: #Calendar
================================================== */

#wp-calendar {
  width: 100%;
}

#wp-calendar a {
  font-weight: bold;
  font-style: italic;
}

#wp-calendar caption {
  text-align: left;
  margin-top: 10px;
  background: none repeat scroll 0 0 rgba(0, 0, 0, 0.03);
  padding: 9px;
}

#wp-calendar thead {
  font-size: 10px;
}

#wp-calendar thead th {
  background: rgba(0, 0, 0, 0.1);
  font-weight: bold;
  padding: 8px;
}

#wp-calendar tbody td {
  background: none;
  border: 1px solid rgba(0, 0, 0, 0.1);
  text-align: center;
  padding: 3px;
}

#wp-calendar tbody td:hover {
  background: rgba(0, 0, 0, 0.1);
}

#wp-calendar tbody .pad {
  background: none;
}

#wp-calendar tfoot #next {
  font-size: 10px;
  text-transform: uppercase;
  text-align: right;
}

#wp-calendar tfoot #prev {
  font-size: 10px;
  text-transform: uppercase;
  padding-top: 10px;
}

/* WIDGET: #Social Icons (HTML only)
========================================= */

.social-icon i {
  width: 36px;
  height: 36px;
  line-height: 36px;
  background-color: #333;
  color: #FFF;
  border: 1px solid #333;
  font-size: 24px;
  border-radius: 36px;
  text-align: center;
  display: inline-block;
}

.social-icon:hover i {
  background-color: #575757;
}

/* -----------------------------------------
	08. WordPress Defaults
----------------------------------------- */

/* WordPress Galleries
=================================== */

.gallery {
  margin-left: -5px;
  margin-right: -5px;
  margin-bottom: 15px;
}

.gallery:before,
.gallery:after {
  content: " ";
  /* 1 */
  display: table;
  /* 2 */
}

.gallery:after {
  clear: both;
}

.gallery-item {
  margin-bottom: 10px;
}

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

.gallery-columns-1 .gallery-item {
  position: relative;
  min-height: 1px;
  padding-left: 5px;
  padding-right: 5px;
  position: relative;
  float: left;
  min-height: 1px;
  padding-left: 5px;
  padding-right: 5px;
  width: 50%;
}

.gallery-columns-2 .gallery-item {
  position: relative;
  min-height: 1px;
  padding-left: 5px;
  padding-right: 5px;
  position: relative;
  float: left;
  min-height: 1px;
  padding-left: 5px;
  padding-right: 5px;
  width: 50%;
}

.gallery-columns-3 .gallery-item {
  position: relative;
  min-height: 1px;
  padding-left: 5px;
  padding-right: 5px;
  position: relative;
  float: left;
  min-height: 1px;
  padding-left: 5px;
  padding-right: 5px;
  width: 50%;
}

.gallery-columns-4 .gallery-item {
  position: relative;
  min-height: 1px;
  padding-left: 5px;
  padding-right: 5px;
  position: relative;
  float: left;
  min-height: 1px;
  padding-left: 5px;
  padding-right: 5px;
  width: 50%;
}

.gallery-columns-5 .gallery-item {
  position: relative;
  min-height: 1px;
  padding-left: 5px;
  padding-right: 5px;
  position: relative;
  float: left;
  min-height: 1px;
  padding-left: 5px;
  padding-right: 5px;
  width: 50%;
}

.gallery-columns-6 .gallery-item {
  position: relative;
  min-height: 1px;
  padding-left: 5px;
  padding-right: 5px;
  position: relative;
  float: left;
  min-height: 1px;
  padding-left: 5px;
  padding-right: 5px;
  width: 50%;
}

.gallery-columns-7 .gallery-item {
  position: relative;
  min-height: 1px;
  padding-left: 5px;
  padding-right: 5px;
  position: relative;
  float: left;
  min-height: 1px;
  padding-left: 5px;
  padding-right: 5px;
  width: 50%;
}

.gallery-columns-8 .gallery-item {
  position: relative;
  min-height: 1px;
  padding-left: 5px;
  padding-right: 5px;
  position: relative;
  float: left;
  min-height: 1px;
  padding-left: 5px;
  padding-right: 5px;
  width: 50%;
}

.gallery-columns-9 .gallery-item {
  position: relative;
  min-height: 1px;
  padding-left: 5px;
  padding-right: 5px;
  position: relative;
  float: left;
  min-height: 1px;
  padding-left: 5px;
  padding-right: 5px;
  width: 50%;
}

.gallery-caption {
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
  font-size: 12px;
  line-height: 1.5;
  margin: 0 0 0 5px;
  max-height: 50%;
  opacity: 0;
  padding: 6px 8px;
  position: absolute;
  bottom: 0;
  left: 0;
  text-align: left;
  width: calc(100% - 10px);
  -webkit-transition: opacity 0.18s ease;
  transition: opacity 0.18s ease;
}

.gallery-caption:before {
  content: "";
  height: 100%;
  min-height: 49px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.gallery-item:hover .gallery-caption {
  opacity: 1;
}

.gallery-columns-6 .gallery-caption,
.gallery-columns-7 .gallery-caption,
.gallery-columns-8 .gallery-caption,
.gallery-columns-9 .gallery-caption {
  display: none;
}

/* WordPress Classes
=================================== */

/* Alignment */

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

p .alignnone {
  margin-bottom: 0;
}

.aligncenter {
  display: block;
  margin: 7px auto 7px auto;
}

.alignright {
  float: right;
  margin: 7px 0 7px 24px;
}

.alignleft {
  float: left;
  margin: 7px 24px 7px 0;
}

/* Captions */

.wp-caption {
  max-width: 100%;
  margin-bottom: 15px;
}

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

.wp-caption .wp-caption-text {
  font-size: 12px;
  line-height: 17px;
  margin: 3px 0 5px;
  padding: 5px 0 0 0;
  text-align: left;
  font-style: italic;
}

/* -----------------------------------------
	09. External Plugins
----------------------------------------- */

/* Fancybox Overrides */

.fancybox-overlay {
  background: #FFF;
}

/* Jetpack Sharing */

.sharedaddy {
  margin-top: 30px;
}

/* WP Instagram */

.null-instagram-feed p {
  padding-top: 10px;
}

.widget .instagram-pics:before,
.widget .instagram-pics:after {
  content: " ";
  /* 1 */
  display: table;
  /* 2 */
}

.widget .instagram-pics:after {
  clear: both;
}

.widget .instagram-pics li {
  border-bottom: 0;
  padding: 0;
  float: left;
  width: 33.33333333333%;
}

.widget .instagram-pics li a {
  display: block;
}

/* -----------------------------------------
	10. Global Mediaqueries
----------------------------------------- */

@media (min-width: 768px) {
  .gallery-columns-1 .gallery-item {
    float: left;
    width: 100%;
  }

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

  .gallery-columns-3 .gallery-item {
    float: left;
    width: 33.33333%;
  }

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

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

  .gallery-columns-6 .gallery-item {
    float: left;
    width: 16.66667%;
  }

  .gallery-columns-7 .gallery-item {
    float: left;
    width: 14.28571%;
  }

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

  .gallery-columns-9 .gallery-item {
    float: left;
    width: 11.11111%;
  }
}

@media (min-width: 1650px) {
  .container-xl {
    width: 1630px;
  }
}

@media (max-width: 1650px) {
  .entry-item-content {
    padding: 30px;
  }
}

@media (max-width: 1199px) {
  .entry-split .entry-content .fluid-width-video-wrapper {
    height: 530px;
  }

  .entry-item .entry-meta {
    font-size: 11px;
    margin: 0 0 4px;
  }

  .entry-item .entry-title {
    font-size: 32px;
  }

  .entry-item.quarter .entry-title {
    font-size: 20px;
  }

  .entry-item > a:after {
    height: 200px;
  }
}

@media (max-width: 991px) {
  .entry-split .entry-content .fluid-width-video-wrapper {
    height: 410px;
  }

  .entry-item.quarter {
    width: 50%;
  }

  .entry-item .entry-title {
    font-size: 20px;
  }

  .logo.imglogo {
    max-width: 210px;
  }
}

@media (max-width: 767px) {
  input,
  textarea {
    width: 100%;
  }

  .entry-split .entry-content .fluid-width-video-wrapper {
    width: auto;
    max-width: none;
    height: auto;
  }

  .entry-content-right .entry-content .fluid-width-video-wrapper {
    margin-left: auto;
  }

  #comment-list ol {
    margin: 0;
    padding: 0;
  }

  .comment-author .avatar {
    display: none;
  }

  .comment-reply-link {
    margin: 0;
  }

  #page.full {
    padding-top: 51px;
  }

  .full .header {
    position: static;
  }

  .tagline {
    display: none;
  }

  .entry-title {
    font-size: 26px;
  }

  .entry-item {
    max-height: 420px;
    overflow: hidden;
  }

  .entry-item.half,
  .entry-item.quarter {
    width: 100%;
  }

  .entry-item.half img,
  .entry-item.quarter img {
    width: 100%;
  }

  .entry-split .entry-content .wp-caption.aligncenter,
  .entry-split .entry-content img.aligncenter {
    width: auto;
    max-width: 100%;
    margin: 20px auto;
  }

  .entry-split .entry-content .wp-caption.aligncenter img,
  .entry-split .entry-content img.aligncenter img {
    max-width: 100%;
    width: auto;
  }

  .entry-content-right .entry-content .wp-caption.aligncenter,
  .entry-content-right .entry-content img.aligncenter {
    margin-left: auto;
  }

  .entry-content blockquote {
    font-size: 22px;
    padding-left: 45px;
    line-height: 1.2;
  }

  .entry-content blockquote:before {
    top: -7px;
    left: 0;
    font-size: 80px;
  }

  .entry-split .entry-content blockquote {
    position: relative;
    max-width: none;
    margin: 25px 0;
  }

  .entry-content-left .entry-content blockquote {
    margin: 25px 0;
  }

  .entry-split .entry-content .fluid-width-video-wrapper {
    width: auto;
    max-width: none;
    height: auto;
  }

  .entry-content-right .entry-content .fluid-width-video-wrapper {
    margin-left: auto;
  }
}
